summaryrefslogtreecommitdiffstats
path: root/katapult/plugins/catalogs/execcatalog
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:54 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:54 -0600
commit4946d97747eac03d3fbc7c624cd027990d85f0e4 (patch)
tree6879368be68593343f00b03e9ff8d590393df315 /katapult/plugins/catalogs/execcatalog
parenta935c1de6f952a489a96a27cb897144b5d225ebe (diff)
downloadkatapult-4946d97747eac03d3fbc7c624cd027990d85f0e4.tar.gz
katapult-4946d97747eac03d3fbc7c624cd027990d85f0e4.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'katapult/plugins/catalogs/execcatalog')
-rw-r--r--katapult/plugins/catalogs/execcatalog/execcatalog.cpp4
-rw-r--r--katapult/plugins/catalogs/execcatalog/execcatalog.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/katapult/plugins/catalogs/execcatalog/execcatalog.cpp b/katapult/plugins/catalogs/execcatalog/execcatalog.cpp
index 7915065..9aed4e8 100644
--- a/katapult/plugins/catalogs/execcatalog/execcatalog.cpp
+++ b/katapult/plugins/catalogs/execcatalog/execcatalog.cpp
@@ -82,12 +82,12 @@ bool ExecCatalog::accepts(const TQString& str) const
return str.left(length + 1) == _triggerWord + " ";
}
-void ExecCatalog::readSettings(KConfigBase* config)
+void ExecCatalog::readSettings(TDEConfigBase* config)
{
_triggerWord = config->readEntry("TriggerWord", i18n("Should be short, easy and quick to type", "exec"));
}
-void ExecCatalog::writeSettings(KConfigBase* config)
+void ExecCatalog::writeSettings(TDEConfigBase* config)
{
config->writeEntry("TriggerWord", _triggerWord);
}
diff --git a/katapult/plugins/catalogs/execcatalog/execcatalog.h b/katapult/plugins/catalogs/execcatalog/execcatalog.h
index fd27ab2..5c5c5f3 100644
--- a/katapult/plugins/catalogs/execcatalog/execcatalog.h
+++ b/katapult/plugins/catalogs/execcatalog/execcatalog.h
@@ -51,8 +51,8 @@ class ExecCatalog : public KatapultCatalog
ExecCatalog(TQObject*, const char*, const TQStringList&);
virtual ~ExecCatalog();
- virtual void readSettings(KConfigBase*);
- virtual void writeSettings(KConfigBase*);
+ virtual void readSettings(TDEConfigBase*);
+ virtual void writeSettings(TDEConfigBase*);
virtual TQWidget* configure();
int triggerWordLength();