diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:27:15 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:27:15 -0600 |
commit | 5b6d393e0a2c88cce8f433607c091ae883ef54f9 (patch) | |
tree | 3c54f3e4a9d6fc2ac30a58e96c19ea878fa08459 /src/translators/griffithimporter.h | |
parent | eb52f16dcfba98b043537ea3da6a1b08b8d51b19 (diff) | |
download | tellico-5b6d393e0a2c88cce8f433607c091ae883ef54f9.tar.gz tellico-5b6d393e0a2c88cce8f433607c091ae883ef54f9.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/translators/griffithimporter.h')
-rw-r--r-- | src/translators/griffithimporter.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/translators/griffithimporter.h b/src/translators/griffithimporter.h index 39b5aa8..265a308 100644 --- a/src/translators/griffithimporter.h +++ b/src/translators/griffithimporter.h @@ -17,7 +17,7 @@ #include "importer.h" #include "../datavectors.h" -class KProcess; +class TDEProcess; namespace Tellico { namespace Import { @@ -48,14 +48,14 @@ public: virtual bool canImport(int type) const; private slots: - void slotData(KProcess* proc, char* buffer, int len); - void slotError(KProcess* proc, char* buffer, int len); - void slotProcessExited(KProcess* proc); + void slotData(TDEProcess* proc, char* buffer, int len); + void slotError(TDEProcess* proc, char* buffer, int len); + void slotProcessExited(TDEProcess* proc); private: Data::CollPtr m_coll; - KProcess* m_process; + TDEProcess* m_process; TQByteArray m_data; }; |