summaryrefslogtreecommitdiffstats
path: root/kmobile
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:14:12 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:14:12 -0600
commitfd5d099065a748cac49e20a13481f85666c53c71 (patch)
treea0f1672cd88eb0e69b9ddc2ed9b08ecd98538bd3 /kmobile
parentb440a9c608596cd88efdb3bfa4661c5e37efbe4b (diff)
downloadtdepim-fd5d099065a748cac49e20a13481f85666c53c71.tar.gz
tdepim-fd5d099065a748cac49e20a13481f85666c53c71.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kmobile')
-rw-r--r--kmobile/kmobile.cpp12
-rw-r--r--kmobile/kmobile.h8
-rw-r--r--kmobile/systemtray.cpp8
-rw-r--r--kmobile/systemtray.h10
4 files changed, 19 insertions, 19 deletions
diff --git a/kmobile/kmobile.cpp b/kmobile/kmobile.cpp
index 48d8d2983..3d867b3d7 100644
--- a/kmobile/kmobile.cpp
+++ b/kmobile/kmobile.cpp
@@ -53,13 +53,13 @@
#include "kmobile_selectiondialog.h"
KMobile::KMobile()
- : KMainWindow( 0, "kmobile" )
+ : TDEMainWindow( 0, "kmobile" )
{
m_config = new TDEConfig("kmobilerc");
m_view = new KMobileView(this, m_config);
- // tell the KMainWindow that this is indeed the main widget
+ // tell the TDEMainWindow that this is indeed the main widget
setCentralWidget(m_view);
// then, setup our actions
@@ -104,13 +104,13 @@ void KMobile::setupActions()
KStdAction::configureToolbars(TQT_TQOBJECT(this), TQT_SLOT(optionsConfigureToolbars()), actionCollection());
KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(optionsPreferences()), actionCollection());
- new KAction(i18n("&Add Device..."), "folder_new", 0,
+ new TDEAction(i18n("&Add Device..."), "folder_new", 0,
TQT_TQOBJECT(this), TQT_SLOT(addDevice()), actionCollection(), "device_add");
- new KAction( KGuiItem( i18n("&Remove Device"), "edittrash", i18n("Remove this device") ),
+ new TDEAction( KGuiItem( i18n("&Remove Device"), "edittrash", i18n("Remove this device") ),
"Delete", TQT_TQOBJECT(this), TQT_SLOT(removeDevice()), actionCollection(), "device_remove");
- new KAction(i18n("Re&name Device..."), 0, Key_F2,
+ new TDEAction(i18n("Re&name Device..."), 0, Key_F2,
TQT_TQOBJECT(this), TQT_SLOT(renameDevice()), actionCollection(), "device_rename");
- new KAction(i18n("&Configure Device..."), "configure", 0,
+ new TDEAction(i18n("&Configure Device..."), "configure", 0,
TQT_TQOBJECT(this), TQT_SLOT(configDevice()), actionCollection(), "device_configure");
createGUI();
diff --git a/kmobile/kmobile.h b/kmobile/kmobile.h
index 58d3f4c23..a91c4cce3 100644
--- a/kmobile/kmobile.h
+++ b/kmobile/kmobile.h
@@ -11,7 +11,7 @@
#include "kmobileview.h"
-class KToggleAction;
+class TDEToggleAction;
class SystemTray;
/**
@@ -20,7 +20,7 @@ class SystemTray;
*
* @short Main window class
*/
-class KMobile : public KMainWindow
+class KMobile : public TDEMainWindow
{
Q_OBJECT
@@ -92,8 +92,8 @@ private:
KMobileView *m_view;
SystemTray *m_systemTray;
- KToggleAction *m_toolbarAction;
- KToggleAction *m_statusbarAction;
+ TDEToggleAction *m_toolbarAction;
+ TDEToggleAction *m_statusbarAction;
};
#endif // _KMOBILE_H_
diff --git a/kmobile/systemtray.cpp b/kmobile/systemtray.cpp
index 9f15f0551..b18faa976 100644
--- a/kmobile/systemtray.cpp
+++ b/kmobile/systemtray.cpp
@@ -35,7 +35,7 @@
#include "kmobileview.h"
-SystemTray::SystemTray(KMainWindow *parent, const char *name) : KSystemTray(parent, name)
+SystemTray::SystemTray(TDEMainWindow *parent, const char *name) : KSystemTray(parent, name)
{
m_appPix = TDEGlobal::instance()->iconLoader()->loadIcon("kmobile", KIcon::Small);
@@ -44,9 +44,9 @@ SystemTray::SystemTray(KMainWindow *parent, const char *name) : KSystemTray(pare
setToolTip();
m_actionCollection = parent->actionCollection();
- KAction *addAction = m_actionCollection->action("device_add");
+ TDEAction *addAction = m_actionCollection->action("device_add");
- KPopupMenu* menu = contextMenu();
+ TDEPopupMenu* menu = contextMenu();
addAction->plug(menu);
menu->insertSeparator();
}
@@ -58,7 +58,7 @@ SystemTray::~SystemTray()
#define SYSTEMTRAY_STARTID 1000
-void SystemTray::contextMenuAboutToShow(KPopupMenu *menu)
+void SystemTray::contextMenuAboutToShow(TDEPopupMenu *menu)
{
KMobile *main = static_cast<KMobile *>(TQT_TQWIDGET(parent()));
diff --git a/kmobile/systemtray.h b/kmobile/systemtray.h
index 29e723c18..a64cabad1 100644
--- a/kmobile/systemtray.h
+++ b/kmobile/systemtray.h
@@ -22,8 +22,8 @@
#include <ksystemtray.h>
-class KMainWindow;
-class KAction;
+class TDEMainWindow;
+class TDEAction;
class SystemTray : public KSystemTray
{
@@ -31,7 +31,7 @@ class SystemTray : public KSystemTray
public:
- SystemTray(KMainWindow *parent = 0, const char *name = 0);
+ SystemTray(TDEMainWindow *parent = 0, const char *name = 0);
virtual ~SystemTray();
protected slots:
@@ -39,7 +39,7 @@ protected slots:
void menuItemSelected();
protected:
- void contextMenuAboutToShow( KPopupMenu* menu );
+ void contextMenuAboutToShow( TDEPopupMenu* menu );
private:
void setToolTip(const TQString &tip = TQString());
@@ -47,7 +47,7 @@ private:
TQPixmap m_appPix;
TQLabel *m_currentLabel;
- KActionCollection *m_actionCollection;
+ TDEActionCollection *m_actionCollection;
int m_menuID;
};