summaryrefslogtreecommitdiffstats
path: root/kicker/menuext/konsole/konsole_mnu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker/menuext/konsole/konsole_mnu.cpp')
-rw-r--r--kicker/menuext/konsole/konsole_mnu.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kicker/menuext/konsole/konsole_mnu.cpp b/kicker/menuext/konsole/konsole_mnu.cpp
index c9439c8db..709cde6c7 100644
--- a/kicker/menuext/konsole/konsole_mnu.cpp
+++ b/kicker/menuext/konsole/konsole_mnu.cpp
@@ -37,8 +37,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <tdelocale.h>
#include <krun.h>
#include <kshell.h>
-#include <ksimpleconfig.h>
-#include <kstandarddirs.h>
+#include <tdesimpleconfig.h>
+#include <tdestandarddirs.h>
#include "konsole_mnu.h"
@@ -91,7 +91,7 @@ void KonsoleMenu::initialize()
}
else
{
- kapp->iconLoader()->addAppDir("konsole");
+ tdeApp->iconLoader()->addAppDir("konsole");
}
setInitialized(true);
@@ -113,7 +113,7 @@ void KonsoleMenu::initialize()
continue;
}
- KSimpleConfig conf(*it, true /* read only */);
+ TDESimpleConfig conf(*it, true /* read only */);
conf.setDesktopGroup();
TQString text = conf.readEntry("Name");
@@ -150,8 +150,8 @@ void KonsoleMenu::initialize()
insertItem(SmallIconSet("keditbookmarks"),
i18n("New Session at Bookmark"), m_bookmarksSession);
connect(m_bookmarkHandlerSession,
- TQT_SIGNAL(openURL(const TQString&, const TQString&)),
- TQT_SLOT(newSession(const TQString&, const TQString&)));
+ TQ_SIGNAL(openURL(const TQString&, const TQString&)),
+ TQ_SLOT(newSession(const TQString&, const TQString&)));
screenList.clear();
@@ -207,7 +207,7 @@ void KonsoleMenu::initialize()
TQFileInfo info(*pIt);
TQString profileName = TDEIO::decodeFileName(info.baseName());
TQString niceName = profileName;
- KSimpleConfig cfg(*pIt, true);
+ TDESimpleConfig cfg(*pIt, true);
if (cfg.hasGroup("Profile"))
{
cfg.setGroup("Profile");
@@ -229,11 +229,11 @@ void KonsoleMenu::initialize()
// we don't have any profiles, disable the menu
setItemEnabled(profileID, false);
}
- connect(m_profileMenu, TQT_SIGNAL(activated(int)), TQT_SLOT(launchProfile(int)));
+ connect(m_profileMenu, TQ_SIGNAL(activated(int)), TQ_SLOT(launchProfile(int)));
insertSeparator();
insertItem(SmallIconSet("reload"),
- i18n("Reload Sessions"), this, TQT_SLOT(reinitialize()));
+ i18n("Reload Sessions"), this, TQ_SLOT(reinitialize()));
}
void KonsoleMenu::slotExec(int id)
@@ -244,7 +244,7 @@ void KonsoleMenu::slotExec(int id)
}
--id;
- kapp->propagateSessionManager();
+ tdeApp->propagateSessionManager();
TQStringList args;
if (static_cast<unsigned int>(id) < sessionList.count())
{
@@ -273,7 +273,7 @@ void KonsoleMenu::launchProfile(int id)
// this is a session, not a bookmark, so execute that instead
TQStringList args;
args << "--profile" << m_profiles[id];
- kapp->tdeinitExec("konsole", args);
+ tdeApp->tdeinitExec("konsole", args);
}
KURL KonsoleMenu::baseURL() const