summaryrefslogtreecommitdiffstats
path: root/tdeabc/sound.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:26:45 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:26:45 -0600
commit45f3927b0ffec2599bc0e1ce361c5386474a85f4 (patch)
tree29e1842fe4d93f4e99481385a771e8bef061158b /tdeabc/sound.cpp
parent04105ef07304a9358e87eff0cb1a6d6f2a725192 (diff)
downloadtdelibs-45f3927b0ffec2599bc0e1ce361c5386474a85f4.tar.gz
tdelibs-45f3927b0ffec2599bc0e1ce361c5386474a85f4.zip
Rename KABC namespace
Diffstat (limited to 'tdeabc/sound.cpp')
-rw-r--r--tdeabc/sound.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeabc/sound.cpp b/tdeabc/sound.cpp
index cf645be83..fbdadd2d2 100644
--- a/tdeabc/sound.cpp
+++ b/tdeabc/sound.cpp
@@ -22,7 +22,7 @@
#include <tqdatastream.h>
-using namespace KABC;
+using namespace TDEABC;
Sound::Sound()
: mIntern( false )
@@ -104,13 +104,13 @@ TQString Sound::asString() const
return mUrl;
}
-TQDataStream &KABC::operator<<( TQDataStream &s, const Sound &sound )
+TQDataStream &TDEABC::operator<<( TQDataStream &s, const Sound &sound )
{
return s << sound.mIntern << sound.mUrl;
// return s << sound.mIntern << sound.mUrl << sound.mData;
}
-TQDataStream &KABC::operator>>( TQDataStream &s, Sound &sound )
+TQDataStream &TDEABC::operator>>( TQDataStream &s, Sound &sound )
{
s >> sound.mIntern >> sound.mUrl;
// s >> sound.mIntern >> sound.mUrl >> sound.mData;