summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorTobias Madl <tobias.madl.dev@gmail.com>2015-03-06 10:39:49 +0000
committerTobias Madl <tobias.madl.dev@gmail.com>2015-03-06 12:27:12 +0000
commit01f406bc28f53acc5a2734af637aa8074a5d1813 (patch)
tree43b42f4730a775e092a6ff809a006449f9f47975 /include/vcl
parentb6bb2e9315c9bc3338eaf066df40a969eb4774aa (diff)
adapted comments and variable names
Change-Id: I4f2c1d743ce2f30e8c24180b73f0716fc13b459e
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/timer.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/timer.hxx b/include/vcl/timer.hxx
index a999559d5ff6..004e78c9a7e4 100644
--- a/include/vcl/timer.hxx
+++ b/include/vcl/timer.hxx
@@ -40,10 +40,10 @@ public:
/// Make it possible to associate a callback with this timer handler
/// of course, you can also sub-class and override 'Invoke'
- void SetTimeout( sal_uLong nTimeoutMs );
- sal_uLong GetTimeout() const { return mnTimeout; }
void SetTimeoutHdl( const Link& rLink ) { maTimeoutHdl = rLink; }
const Link& GetTimeoutHdl() const { return maTimeoutHdl; }
+ void SetTimeout( sal_uLong nTimeoutMs );
+ sal_uLong GetTimeout() const { return mnTimeout; }
virtual void Invoke() SAL_OVERRIDE;
void Timeout() { Invoke(); }
Timer& operator=( const Timer& rTimer );