diff --git a/amarok/src/analyzers/analyzerbase.h b/amarok/src/analyzers/analyzerbase.h index 04f2f30d..2f9d7bca 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 4b111a76..545e97a5 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 a08c3beb..d110be42 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 0cd39a51..2f111eec 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 TQ_OBJECT diff --git a/amarok/src/xmlloader.h b/amarok/src/xmlloader.h index c832a468..5e9b2061 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; };