diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 13:11:03 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 13:11:03 -0500 |
commit | 5d9a593c1fe4967f3636524cbef739d80b0d8cae (patch) | |
tree | a735cd56b419e4294919ad51b2e0e999cf3203da | |
parent | 481457e5859adea2b83aba47b6d5d724b4c7bf24 (diff) | |
download | tdelibs-5d9a593c1fe4967f3636524cbef739d80b0d8cae.tar.gz tdelibs-5d9a593c1fe4967f3636524cbef739d80b0d8cae.zip |
Fix inadvertent tqt changes.
-rw-r--r-- | dcop/testdcop.h | 2 | ||||
-rw-r--r-- | khtml/khtmlview.h | 2 | ||||
-rw-r--r-- | tdecore/kdebug.h | 2 | ||||
-rw-r--r-- | tdecore/tdelibs_export.h | 2 | ||||
-rw-r--r-- | tdeui/karrowbutton.h | 2 | ||||
-rw-r--r-- | tdeui/knuminput.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/dcop/testdcop.h b/dcop/testdcop.h index aede0f98e..7835ca311 100644 --- a/dcop/testdcop.h +++ b/dcop/testdcop.h @@ -35,7 +35,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include <stdio.h> /** - $QTDIR/bin/tqmoc testdcop.cpp -o testdcop.moc + $QTDIR/bin/moc testdcop.cpp -o testdcop.moc g++ -o testdcop testdcop.cpp -I$QTDIR/include -L$QTDIR/lib @internal diff --git a/khtml/khtmlview.h b/khtml/khtmlview.h index 65e432090..45d90b09f 100644 --- a/khtml/khtmlview.h +++ b/khtml/khtmlview.h @@ -231,7 +231,7 @@ protected slots: #ifndef NO_SMOOTH_SCROLL_HACK void scrollTick(); #else - void scrollTick() {}; // tqmoc cannot handle #if + void scrollTick() {}; // moc cannot handle #if #endif private slots: diff --git a/tdecore/kdebug.h b/tdecore/kdebug.h index 477e8e43f..1121d3679 100644 --- a/tdecore/kdebug.h +++ b/tdecore/kdebug.h @@ -281,7 +281,7 @@ class TDECORE_EXPORT kdbgstream { ; /** Operator to print out basic information about a TQWidget. - * Output of class names only works if the class is tqmoc'ified. + * Output of class names only works if the class is moc'ified. * @param widget the widget to print * @return this stream */ diff --git a/tdecore/tdelibs_export.h b/tdecore/tdelibs_export.h index b644985b5..767752689 100644 --- a/tdecore/tdelibs_export.h +++ b/tdecore/tdelibs_export.h @@ -67,7 +67,7 @@ #endif /*_KDELIBS_EXPORT_H*/ -/* workaround for tdecore: stupid tqmoc's grammar doesn't accept two macros +/* workaround for tdecore: stupid moc's grammar doesn't accept two macros between 'class' keyword and <classname>: */ #ifdef KDE_DEPRECATED # ifndef TDECORE_EXPORT_DEPRECATED diff --git a/tdeui/karrowbutton.h b/tdeui/karrowbutton.h index 0719f8bc1..503191d04 100644 --- a/tdeui/karrowbutton.h +++ b/tdeui/karrowbutton.h @@ -67,7 +67,7 @@ class TDEUI_EXPORT KArrowButton : public TQPushButton */ Qt::ArrowType arrowType() const; - // hacks for tqmoc braindamages with enums + // hacks for moc braindamages with enums int arrowTp() const { return (int) arrowType(); } void setArrowTp( int tp ) { setArrowType( (Qt::ArrowType) tp ); } public slots: diff --git a/tdeui/knuminput.h b/tdeui/knuminput.h index 1cff20520..dece720d2 100644 --- a/tdeui/knuminput.h +++ b/tdeui/knuminput.h @@ -876,7 +876,7 @@ public: int precision() const; /** Equivalent to setPrecision( @p precision, @p false ); Needed - since Qt's tqmoc doesn't ignore trailing parameters with default + since Qt's moc doesn't ignore trailing parameters with default args when searching for a property setter method. */ void setPrecision( int precision ); |