diff options
author | Timothy Pearson <[email protected]> | 2015-09-04 03:08:22 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2015-09-04 03:08:22 -0500 |
commit | e89d9e5e16bf98525b26104218448bcd8e91bdc2 (patch) | |
tree | 9b0365fb10a518675509791310ba73e62038e4de /kdesktop/lock/main.h | |
parent | b5462e86f3378d0a720d11a9321bc74c45827feb (diff) | |
download | tdebase-e89d9e5e16bf98525b26104218448bcd8e91bdc2.tar.gz tdebase-e89d9e5e16bf98525b26104218448bcd8e91bdc2.zip |
Fix the most egregious style guide violations in the remaining kdesktop_lock source files
No functional changes were made to the source
Diffstat (limited to 'kdesktop/lock/main.h')
-rw-r--r-- | kdesktop/lock/main.h | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/kdesktop/lock/main.h b/kdesktop/lock/main.h index da3accda2..fd19c6183 100644 --- a/kdesktop/lock/main.h +++ b/kdesktop/lock/main.h @@ -1,4 +1,4 @@ -/* This file is part of the KDE project +/* This file is part of the TDE project Copyright (c) 2003 Oswald Buddenhagen <[email protected]> This library is free software; you can redistribute it and/or @@ -25,17 +25,20 @@ #include <time.h> class MyApp : public TDEApplication { - Q_OBJECT -public: - MyApp() : TDEApplication(), lastTick( 0 ) {} - MyApp(Display *display, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0, bool allowStyles=true) : TDEApplication(display, visual, colormap, allowStyles), lastTick( 0 ) {} -protected: - bool x11EventFilter( XEvent * ); -signals: - void activity(); - void mouseInteraction(XEvent *event); -private: - time_t lastTick; + Q_OBJECT + public: + MyApp() : TDEApplication(), lastTick( 0 ) {} + MyApp(Display *display, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0, bool allowStyles=true) : TDEApplication(display, visual, colormap, allowStyles), lastTick( 0 ) {} + + protected: + bool x11EventFilter( XEvent * ); + + signals: + void activity(); + void mouseInteraction(XEvent *event); + + private: + time_t lastTick; }; #endif |