diff --git a/amarok/src/analyzers/analyzerbase.h b/amarok/src/analyzers/analyzerbase.h index 50b1b624..5fc7a938 100644 --- a/amarok/src/analyzers/analyzerbase.h +++ b/amarok/src/analyzers/analyzerbase.h @@ -27,7 +27,7 @@ #include //included for convenience #endif //#else -////this is a workaround for compile problems due to tqmoc +////this is a workaround for compile problems due to moc //#define TQGLWidget TQWidget //#endif @@ -106,12 +106,12 @@ private: -//This mess is because tqmoc generates an entry for this class despite the #if block +//This mess is because moc generates an entry for this class despite the #if block //1. the Q_OBJECT macro must be exposed //2. we have to define the class //3. we have to declare a ctor (to satisfy the inheritance) //4. the slot must also by visible (!) -//TODO find out how to stop tqmoc generating a metaobject for this class +//TODO find out how to stop moc generating a metaobject for this class class Base3D : public Base { Q_OBJECT diff --git a/amarok/src/mediadevice/daap/daapclient.h b/amarok/src/mediadevice/daap/daapclient.h index 5354423c..1eb4d123 100644 --- a/amarok/src/mediadevice/daap/daapclient.h +++ b/amarok/src/mediadevice/daap/daapclient.h @@ -29,7 +29,7 @@ #else namespace DNSSD { namespace RemoteService { - class Ptr {}; //HACK Dummy class, so that daapclient.tqmoc compiles + class Ptr {}; //HACK Dummy class, so that daapclient.moc compiles } } #endif diff --git a/amarok/src/playlistloader.h b/amarok/src/playlistloader.h index 0f95f5ee..40432e9e 100644 --- a/amarok/src/playlistloader.h +++ b/amarok/src/playlistloader.h @@ -199,7 +199,7 @@ private slots: void abort() { delete this; } }; -// PRIVATE -- should be in the .cpp, but fucking tqmoc. +// PRIVATE -- should be in the .cpp, but fucking moc. class MyXmlLoader: public MetaBundle::XmlLoader { diff --git a/amarok/src/threadmanager.h b/amarok/src/threadmanager.h index d96bca79..2c5c8153 100644 --- a/amarok/src/threadmanager.h +++ b/amarok/src/threadmanager.h @@ -76,7 +76,7 @@ */ -/// This class is because tqmoc "is really good" (no nested Q_OBJECT classes) +/// This class is because moc "is really good" (no nested Q_OBJECT classes) class JobBase : public TQObject { Q_OBJECT diff --git a/amarok/src/xmlloader.h b/amarok/src/xmlloader.h index 4a6f1d76..f9bdfcd6 100644 --- a/amarok/src/xmlloader.h +++ b/amarok/src/xmlloader.h @@ -172,7 +172,7 @@ class MetaBundle::XmlLoader: public TQObject, public TQXmlDefaultHandler virtual bool endDocument(); virtual bool fatalError( const TQXmlParseException &exception ); - public: //fucking tqmoc, these should be private + public: //fucking moc, these should be private class ThreadedLoader; class SimpleLoader; };