summaryrefslogtreecommitdiffstats
path: root/src/server/Request.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-13 23:32:42 +0000
committerDavid Robillard <d@drobilla.net>2011-05-13 23:32:42 +0000
commit162308c36dadbc5384d9074f6542b6105b2b8c52 (patch)
tree4cc5f8ddf47d7556ad20428c1da8638b34650ed2 /src/server/Request.hpp
parent93947ee94eb79d76d31cd7ed3828135b9efa3781 (diff)
downloadingen-162308c36dadbc5384d9074f6542b6105b2b8c52.tar.gz
ingen-162308c36dadbc5384d9074f6542b6105b2b8c52.tar.bz2
ingen-162308c36dadbc5384d9074f6542b6105b2b8c52.zip
Apply 0002-Reformat-some-code-to-use-hard-tabs.patch from ticket #688, except with modifications to not add broken indentation.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3263 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/Request.hpp')
-rw-r--r--src/server/Request.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/Request.hpp b/src/server/Request.hpp
index 5b91798d..185c250c 100644
--- a/src/server/Request.hpp
+++ b/src/server/Request.hpp
@@ -42,7 +42,7 @@ public:
ClientInterface* client=0,
int32_t id=1)
: _source(source)
- , _client(client)
+ , _client(client)
, _id(id)
{}
@@ -53,10 +53,10 @@ public:
ClientInterface* client() const { return _client; }
void set_client(ClientInterface* client) { _client = client; }
- void unblock() {
- if (_source)
- _source->unblock();
- }
+ void unblock() {
+ if (_source)
+ _source->unblock();
+ }
void respond_ok() {
if (_client)
@@ -69,7 +69,7 @@ public:
}
private:
- EventSource* _source;
+ EventSource* _source;
ClientInterface* _client;
int32_t _id;
};