diff options
author | Pascal Viandier <[email protected]> | 2015-10-01 19:38:38 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-10-01 19:38:38 +0200 |
commit | 1e0e72fceb542e4eb984b50f747c38314f055b8f (patch) | |
tree | 40d35ec3682c465348f8d8d73509aeda4729a8bb /src/setupdialogprg.h | |
parent | c9e33e7d3fcd5b21a00e13dcbb5742a6c8da6106 (diff) | |
download | kooldock-1e0e72fceb542e4eb984b50f747c38314f055b8f.tar.gz kooldock-1e0e72fceb542e4eb984b50f747c38314f055b8f.zip |
Fix remaining issues and build warnings
Cleanup code
Signed-off-by: Pascal Viandier <[email protected]>
Diffstat (limited to 'src/setupdialogprg.h')
-rw-r--r-- | src/setupdialogprg.h | 99 |
1 files changed, 50 insertions, 49 deletions
diff --git a/src/setupdialogprg.h b/src/setupdialogprg.h index 222273e..4d5b308 100644 --- a/src/setupdialogprg.h +++ b/src/setupdialogprg.h @@ -46,57 +46,58 @@ class KoolDock; class SetupDialogPrg : public SetupDialog { -Q_OBJECT - public: - SetupDialogPrg(TQWidget *parent = 0, const char *name = 0); - ~SetupDialogPrg(); - appProp *appdlg; - TQString progPath; - TQString menuPath; - KWinModule *gwm; - KLineEdit *in; - TQPushButton *up; - TQPushButton *down; - int grabbing; - int oldPos; - TQString fileName; - TQStringList fileList; - TQString filepath; + Q_OBJECT + public: + SetupDialogPrg(TQWidget* parent = 0, const char* name = 0); + ~SetupDialogPrg(); + appProp* appdlg; + TQString progPath; + TQString menuPath; + KWinModule* gwm; + KLineEdit* in; + TQPushButton* up; + TQPushButton* down; + int grabbing; + int oldPos; + TQString fileName; + TQStringList fileList; + TQString filepath; - public slots: - void editItem(); - void iconsChanged(); - void configOK(); - void configApply(); - void configCancel(); - void chkHidden(); - void chkImgSlot(); - void chkSolidSlot(); - void chkFont(); - void chkTask(); - void applist_dropped(TQDropEvent*,const TQValueList<TQIconDragItem>&); - void buttonadd_clicked(); - void applist_clicked(TQIconViewItem *, const TQPoint&); - void appRestart(); - void appFill(); - void appClear(); - void grabWin_clicked(); - void activeWindowChanged(WId id); - void applist_contextMenuRequested(TQIconViewItem*,const TQPoint&); - void removeLauncher(); - void setnewpos(int); - void xrma_clicked(); - void left(); - void right(); + public slots: + void editItem(); + void iconsChanged(); + void configOK(); + void configApply(); + void configCancel(); + void chkHidden(); + void chkImgSlot(); + void chkSolidSlot(); + void chkFont(); + void chkTask(); + void applist_dropped(TQDropEvent*, const TQValueList<TQIconDragItem>&); + void buttonadd_clicked(); + void applist_clicked(TQIconViewItem*, const TQPoint&); + void appRestart(); + void appFill(); + void appClear(); + void grabWin_clicked(); + void activeWindowChanged(WId id); + void applist_contextMenuRequested(TQIconViewItem*, const TQPoint&); + void removeLauncher(); + void setnewpos(int); + void xrma_clicked(); + void left(); + void right(); signals: - void apply(); + void apply(); - private: - void computeNewPos(int); + private: + void computeNewPos(int); - protected: - void closeEvent( TQCloseEvent* ); - void showEvent ( TQShowEvent * ); - void hideEvent ( TQHideEvent * ); + protected: + void closeEvent(TQCloseEvent*); + void showEvent(TQShowEvent*); + void hideEvent(TQHideEvent*); }; -#endif + +#endif // SETUPDIALOGPRG_H |