diff options
Diffstat (limited to 'kmix/mixdevice.cpp')
-rw-r--r-- | kmix/mixdevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmix/mixdevice.cpp b/kmix/mixdevice.cpp index d5c9f9c2..d647488f 100644 --- a/kmix/mixdevice.cpp +++ b/kmix/mixdevice.cpp @@ -71,7 +71,7 @@ MixDevice::MixDevice(const MixDevice &md) : TQObject() } MixDevice::~MixDevice() { - // Clear MixDevices enum Strings (switch on auto-delete, so the QString's inside will be cleared) + // Clear MixDevices enum Strings (switch on auto-delete, so the TQString's inside will be cleared) _enumValues.setAutoDelete(true); _enumValues.clear(); } @@ -123,7 +123,7 @@ TQString& MixDevice::getPK() { void MixDevice::setPK(TQString &PK) { _pk = PK; // The key is used in the config file. It should not contain spaces - _pk.replace(' ', '_'); + _pk.tqreplace(' ', '_'); } /** |