summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/KoPartSelectAction.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
commitf008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch)
tree8e9244c4d4957c36be81e15b566b4aa5ea26c982 /lib/kofficeui/KoPartSelectAction.h
parent1210f27b660efb7b37ff43ec68763e85a403471f (diff)
downloadkoffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz
koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/kofficeui/KoPartSelectAction.h')
-rw-r--r--lib/kofficeui/KoPartSelectAction.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/kofficeui/KoPartSelectAction.h b/lib/kofficeui/KoPartSelectAction.h
index 4926dd9e..f6a69e73 100644
--- a/lib/kofficeui/KoPartSelectAction.h
+++ b/lib/kofficeui/KoPartSelectAction.h
@@ -30,17 +30,18 @@
class KOFFICEUI_EXPORT KoPartSelectAction : public KActionMenu
{
Q_OBJECT
+ TQ_OBJECT
public:
- KoPartSelectAction( const QString& text, QObject* parent = 0, const char* name = 0 );
- KoPartSelectAction( const QString& text, const QString& icon,
- QObject* parent = 0, const char* name = 0 );
- KoPartSelectAction( const QString& text, const QString& icon,
- QObject* receiver, const char* slot, QObject* parent, const char* name = 0 );
+ KoPartSelectAction( const TQString& text, TQObject* tqparent = 0, const char* name = 0 );
+ KoPartSelectAction( const TQString& text, const TQString& icon,
+ TQObject* tqparent = 0, const char* name = 0 );
+ KoPartSelectAction( const TQString& text, const TQString& icon,
+ TQObject* receiver, const char* slot, TQObject* tqparent, const char* name = 0 );
KoDocumentEntry documentEntry() const { return m_documentEntry; }
- //virtual void plug(QWidget* widget, int index);
+ //virtual void plug(TQWidget* widget, int index);
protected:
void init();
@@ -50,7 +51,7 @@ protected slots:
void slotActionActivated();
private:
- QValueList<KoDocumentEntry> m_lstEntries;
+ TQValueList<KoDocumentEntry> m_lstEntries;
KoDocumentEntry m_documentEntry;
};