summaryrefslogtreecommitdiffstats
path: root/ksysguard/gui/Workspace.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /ksysguard/gui/Workspace.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksysguard/gui/Workspace.h')
-rw-r--r--ksysguard/gui/Workspace.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/ksysguard/gui/Workspace.h b/ksysguard/gui/Workspace.h
index af27f6303..3c0f8c523 100644
--- a/ksysguard/gui/Workspace.h
+++ b/ksysguard/gui/Workspace.h
@@ -24,8 +24,8 @@
#ifndef KSG_WORKSPACE_H
#define KSG_WORKSPACE_H
-#include <qptrlist.h>
-#include <qtabwidget.h>
+#include <tqptrlist.h>
+#include <tqtabwidget.h>
class KConfig;
class KURL;
@@ -37,7 +37,7 @@ class Workspace : public QTabWidget
Q_OBJECT
public:
- Workspace( QWidget* parent, const char* name = 0 );
+ Workspace( TQWidget* parent, const char* name = 0 );
~Workspace();
void saveProperties( KConfig* );
@@ -47,9 +47,9 @@ class Workspace : public QTabWidget
void showProcesses();
- WorkSheet *restoreWorkSheet( const QString &fileName,
- const QString &newName = QString::null );
- void deleteWorkSheet( const QString &fileName );
+ WorkSheet *restoreWorkSheet( const TQString &fileName,
+ const TQString &newName = TQString::null );
+ void deleteWorkSheet( const TQString &fileName );
public slots:
void newWorkSheet();
@@ -65,19 +65,19 @@ class Workspace : public QTabWidget
void copy();
void paste();
void configure();
- void updateCaption( QWidget* );
- void updateSheetTitle( QWidget* );
+ void updateCaption( TQWidget* );
+ void updateSheetTitle( TQWidget* );
void applyStyle();
signals:
void announceRecentURL( const KURL &url );
- void setCaption( const QString &text, bool modified );
+ void setCaption( const TQString &text, bool modified );
private:
- QPtrList<WorkSheet> mSheetList;
+ TQPtrList<WorkSheet> mSheetList;
// Directory that was used for the last load/save.
- QString mWorkDir;
+ TQString mWorkDir;
bool mAutoSave;
};