summaryrefslogtreecommitdiffstats
path: root/src/k3bservicemenuinstaller.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-27 19:21:21 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-27 19:21:21 +0000
commitd8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch)
treef295f1c545b319963d5357af79fe08991d8141d9 /src/k3bservicemenuinstaller.h
parent2a39a080579fb52a2599c02b2939795385b89093 (diff)
downloadk3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.tar.gz
k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.zip
TQt4 port k3b
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1233803 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k3bservicemenuinstaller.h')
-rw-r--r--src/k3bservicemenuinstaller.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/k3bservicemenuinstaller.h b/src/k3bservicemenuinstaller.h
index 6e06caf..271d314 100644
--- a/src/k3bservicemenuinstaller.h
+++ b/src/k3bservicemenuinstaller.h
@@ -16,9 +16,9 @@
#ifndef _K3B_SERVICE_MENU_INSTALLER_H_
#define _K3B_SERVICE_MENU_INSTALLER_H_
-#include <qstring.h>
+#include <tqstring.h>
-class QWidget;
+class TQWidget;
/**
@@ -29,7 +29,7 @@ class QWidget;
class K3bServiceInstaller
{
public:
- K3bServiceInstaller( const QString& appname = "k3b" );
+ K3bServiceInstaller( const TQString& appname = "k3b" );
~K3bServiceInstaller();
/**
@@ -38,14 +38,14 @@ class K3bServiceInstaller
bool allInstalled() const;
/**
- * If parent != 0 a messagebox will be shown in case of an error.
+ * If tqparent != 0 a messagebox will be shown in case of an error.
*/
- bool install( QWidget* parent = 0 );
+ bool install( TQWidget* tqparent = 0 );
/**
- * If parent != 0 a messagebox will be shown in case of an error.
+ * If tqparent != 0 a messagebox will be shown in case of an error.
*/
- bool remove( QWidget* parent = 0 );
+ bool remove( TQWidget* tqparent = 0 );
private:
class Private;