summaryrefslogtreecommitdiffstats
path: root/kmix/mixdevice.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 06:00:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 06:00:15 +0000
commitb1057f437bf65300831a0ccb45b920787c6b318d (patch)
treef8a73db06ca1180d0da0ba6dfbe786197b4f4bc3 /kmix/mixdevice.cpp
parent4ddfca384ced9ad654213aef9dc2c3973720b980 (diff)
downloadtdemultimedia-b1057f437bf65300831a0ccb45b920787c6b318d.tar.gz
tdemultimedia-b1057f437bf65300831a0ccb45b920787c6b318d.zip
TQt4 port kdemultimedia
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1236079 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmix/mixdevice.cpp')
-rw-r--r--kmix/mixdevice.cpp4
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(' ', '_');
}
/**