diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 7c71ab86d1f7e387fc3df63b48df07231f111862 (patch) | |
tree | 30ba2d2f840ff5fd458b6113e9c3f2e8a71d510d /kexi/main/keximainwindowimpl.h | |
parent | afbfdc507bfaafc8824a9808311d57a9ece87510 (diff) | |
download | koffice-7c71ab86d1f7e387fc3df63b48df07231f111862.tar.gz koffice-7c71ab86d1f7e387fc3df63b48df07231f111862.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/main/keximainwindowimpl.h')
-rw-r--r-- | kexi/main/keximainwindowimpl.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kexi/main/keximainwindowimpl.h b/kexi/main/keximainwindowimpl.h index a2d820e8..9dbedae3 100644 --- a/kexi/main/keximainwindowimpl.h +++ b/kexi/main/keximainwindowimpl.h @@ -113,7 +113,7 @@ class KEXIMAIN_EXPORT KexiMainWindowImpl : public KexiMainWindow, public KexiGUI public slots: /*! Inherited from KMdiMainFrm: we need to do some tasks before child is closed. Just calls closeDialog(). Use closeDialog() if you need, not this one. */ - virtual void closeWindow(KMdiChildView *pWnd, bool tqlayoutTaskBar = true); + virtual void closeWindow(KMdiChildView *pWnd, bool layoutTaskBar = true); /*! Reimplemented for internal reasons. */ virtual void addWindow( KMdiChildView* pView, int flags = KMdi::StandardAdd ); @@ -125,7 +125,7 @@ class KEXIMAIN_EXPORT KexiMainWindowImpl : public KexiMainWindow, public KexiGUI messages asking for saving the will be skipped and the changes will be dropped. This should not be usually used, maybe except for test suites (see kexi/tests/altertable/ directory). */ - tristate closeDialog(KexiDialogBase *dlg, bool tqlayoutTaskBar, bool doNotSaveChanges = false); + tristate closeDialog(KexiDialogBase *dlg, bool layoutTaskBar, bool doNotSaveChanges = false); virtual void detachWindow(KMdiChildView *pWnd,bool bShow=true); virtual void attachWindow(KMdiChildView *pWnd,bool bShow=true,bool bAutomaticResize=false); @@ -255,20 +255,20 @@ class KEXIMAIN_EXPORT KexiMainWindowImpl : public KexiMainWindow, public KexiGUI void storeSettings(); /*! Invalidates availability of all actions for current application state. */ - void tqinvalidateActions(); + void invalidateActions(); /*! Invalidates action availability for current application state. These actions are dependent on curently selected dialog. */ - virtual void tqinvalidateSharedActions(TQObject *o); + virtual void invalidateSharedActions(TQObject *o); /*! Invalidates action availability for current application state. These actions only depend on project availability, not on curently selected dialog. */ - void tqinvalidateProjectWideActions(); + void invalidateProjectWideActions(); /*! Invalidates action availability for current application state. These actions only depend on curently selected dialog and currently selected view (KexiViewBase derived object) within this dialog. */ - void tqinvalidateViewModeActions(); + void invalidateViewModeActions(); /*! Shows dialog for creating new blank project, and creates one. Dialog is not shown if option for automatic creation @@ -401,8 +401,8 @@ class KEXIMAIN_EXPORT KexiMainWindowImpl : public KexiMainWindow, public KexiGUI virtual void fillWindowMenu(); - void tqinvalidateSharedActions(); - void tqinvalidateSharedActionsLater(); + void invalidateSharedActions(); + void invalidateSharedActionsLater(); //! Updates the statusbar, navigator and "Insert->....." actions, dependent on read-only state. //! Only called on project opening and closing. |