diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:07:56 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:07:56 -0600 |
commit | 3c84b2ad06487bb97c944f1a75e6bb06edb6d763 (patch) | |
tree | 4337a4ba3ceb8a532b3dc294ca5dd283e96207be /src/kile/kilejscript.h | |
parent | fc49aab70dd400cb8cb77406926c49ca91b0ca5e (diff) | |
download | kile-3c84b2ad06487bb97c944f1a75e6bb06edb6d763.tar.gz kile-3c84b2ad06487bb97c944f1a75e6bb06edb6d763.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/kile/kilejscript.h')
-rw-r--r-- | src/kile/kilejscript.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kile/kilejscript.h b/src/kile/kilejscript.h index 9593176..66232e4 100644 --- a/src/kile/kilejscript.h +++ b/src/kile/kilejscript.h @@ -125,7 +125,7 @@ class Manager : public TQObject { /** * Constructs a new Manager object. **/ - Manager(KileInfo *info, KConfig *config, KActionCollection *actionCollection, TQObject *parent = 0, const char *name = 0); + Manager(KileInfo *info, TDEConfig *config, KActionCollection *actionCollection, TQObject *parent = 0, const char *name = 0); virtual ~Manager(); /** @@ -146,7 +146,7 @@ class Manager : public TQObject { TQValueList<JScript*> getJScripts(); /** - * Writes the key sequence-to-script bindings to the KConfig object that has + * Writes the key sequence-to-script bindings to the TDEConfig object that has * passed in the constructor. **/ void writeConfig(); @@ -194,7 +194,7 @@ class Manager : public TQObject { void scanJScriptDirectories(); /** - * Reads and assigns the key sequence-to-script bindings from the KConfig + * Reads and assigns the key sequence-to-script bindings from the TDEConfig * object that has been passed in the constructor. **/ void readConfig(); @@ -206,7 +206,7 @@ class Manager : public TQObject { KDirWatch *m_jScriptDirWatch; KileInfo *m_kileInfo; - KConfig *m_config; + TDEConfig *m_config; KActionCollection *m_actionCollection; /** @@ -226,14 +226,14 @@ class Manager : public TQObject { void deleteJScripts(); /** - * Reads an 'unsigned int' list as value for a specific key from the local KConfig + * Reads an 'unsigned int' list as value for a specific key from the local TDEConfig * object. * @param key the considered entry key **/ TQValueList<unsigned int> readUnsignedIntListEntry(const TQString& key); /** - * Writes a key - value pair to the local KConfig object for the case that the + * Writes a key - value pair to the local TDEConfig object for the case that the * value is an 'unsigned int' list. * @param key the considered entry key * @param l the 'unsigned int' list that is used as value @@ -250,7 +250,7 @@ class Manager : public TQObject { /** * Writes the ID to file name mappings that are currently in use to the local - * KConfig object. + * TDEConfig object. **/ void writeIDs(); |