diff options
author | Timothy Pearson <[email protected]> | 2015-09-04 01:34:34 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2015-09-04 01:35:03 -0500 |
commit | c54c4e700377b9853371c0c3809885d9b0830877 (patch) | |
tree | 159eb53581df22f33ba9dfd996d06fe49389d3ea /kdesktop/lock/querydlg.h | |
parent | b45b9ed9b12d8f05237f52b00a8d61cff1d53806 (diff) | |
download | tdebase-c54c4e700377b9853371c0c3809885d9b0830877.tar.gz tdebase-c54c4e700377b9853371c0c3809885d9b0830877.zip |
Fix the most egregious style guide violations in the kdesktoplock plugin sources
No functional changes were made to the source
Diffstat (limited to 'kdesktop/lock/querydlg.h')
-rw-r--r-- | kdesktop/lock/querydlg.h | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/kdesktop/lock/querydlg.h b/kdesktop/lock/querydlg.h index 0da557caf..71f73f9ab 100644 --- a/kdesktop/lock/querydlg.h +++ b/kdesktop/lock/querydlg.h @@ -1,8 +1,8 @@ //=========================================================================== // -// This file is part of the KDE project +// This file is part of the TDE project // -// Copyright (c) 2010 Timothy Pearson <[email protected]> +// Copyright (c) 2010 - 2015 Timothy Pearson <[email protected]> // #ifndef __QUERYDLG_H__ @@ -28,33 +28,33 @@ class TQListView; // class QueryDlg : public TQDialog { - Q_OBJECT - -public: - QueryDlg(LockProcess *parent); - ~QueryDlg(); - virtual void show(); - - void updateLabel( TQString &txt ); - void setUnlockIcon(); - void setWarningIcon(); - const char * getEntry(); - -private slots: - void slotOK(); - -private: - TQFrame *frame; - TQGridLayout *frameLayout; - TQLabel *mStatusLabel; - TQLabel *mpixLabel; - int mCapsLocked; - bool mUnlockingFailed; - TQStringList layoutsList; - TQStringList::iterator currLayout; - int sPid, sFd; - KPushButton *ok; - KPasswordEdit *pin_box; + Q_OBJECT + + public: + QueryDlg(LockProcess *parent); + ~QueryDlg(); + virtual void show(); + + void updateLabel( TQString &txt ); + void setUnlockIcon(); + void setWarningIcon(); + const char * getEntry(); + + private slots: + void slotOK(); + + private: + TQFrame *frame; + TQGridLayout *frameLayout; + TQLabel *mStatusLabel; + TQLabel *mpixLabel; + int mCapsLocked; + bool mUnlockingFailed; + TQStringList layoutsList; + TQStringList::iterator currLayout; + int sPid, sFd; + KPushButton *ok; + KPasswordEdit *pin_box; }; #endif |