summaryrefslogtreecommitdiffstats
path: root/konversation/src/theme_preferences.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/theme_preferences.cpp')
-rw-r--r--konversation/src/theme_preferences.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/konversation/src/theme_preferences.cpp b/konversation/src/theme_preferences.cpp
index b033155..34d56dc 100644
--- a/konversation/src/theme_preferences.cpp
+++ b/konversation/src/theme_preferences.cpp
@@ -55,11 +55,11 @@ Theme_Config::Theme_Config(TQWidget* parent, const char* name)
// load the current settings
loadSettings();
- connect(iconThemeIndex,TQT_SIGNAL(highlighted(int)),this,TQT_SLOT(updatePreview(int)));
- connect(iconThemeIndex,TQT_SIGNAL(selectionChanged()),this,TQT_SLOT(updateButtons()));
- connect(iconThemeIndex,TQT_SIGNAL(selectionChanged()),this,TQT_SIGNAL(modified()));
- connect(installButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(installTheme()));
- connect(removeButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(removeTheme()));
+ connect(iconThemeIndex,TQ_SIGNAL(highlighted(int)),this,TQ_SLOT(updatePreview(int)));
+ connect(iconThemeIndex,TQ_SIGNAL(selectionChanged()),this,TQ_SLOT(updateButtons()));
+ connect(iconThemeIndex,TQ_SIGNAL(selectionChanged()),this,TQ_SIGNAL(modified()));
+ connect(installButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(installTheme()));
+ connect(removeButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(removeTheme()));
}
Theme_Config::~Theme_Config()
@@ -255,7 +255,7 @@ void Theme_Config::removeTheme()
{
unlink(TQFile::encodeName(dir));
TDEIO::DeleteJob* job = TDEIO::del(KURL(dir.remove("index.desktop")));
- connect(job, TQT_SIGNAL(result(TDEIO::Job*)), this, TQT_SLOT(postRemoveTheme(TDEIO::Job*)));
+ connect(job, TQ_SIGNAL(result(TDEIO::Job*)), this, TQ_SLOT(postRemoveTheme(TDEIO::Job*)));
}
}