diff options
Diffstat (limited to 'buildtools/lib/parsers/autotools/tests')
-rw-r--r-- | buildtools/lib/parsers/autotools/tests/viewer.cpp | 4 | ||||
-rw-r--r-- | buildtools/lib/parsers/autotools/tests/viewer.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/lib/parsers/autotools/tests/viewer.cpp b/buildtools/lib/parsers/autotools/tests/viewer.cpp index 293c5817..0625ae11 100644 --- a/buildtools/lib/parsers/autotools/tests/viewer.cpp +++ b/buildtools/lib/parsers/autotools/tests/viewer.cpp @@ -34,8 +34,8 @@ using namespace AutoTools; -Viewer::Viewer(TQWidget *tqparent, const char *name) - :ViewerBase(tqparent, name) +Viewer::Viewer(TQWidget *parent, const char *name) + :ViewerBase(parent, name) { if (TQFile::exists(TQDir::currentDirPath() + "/" + "qtlist")) { diff --git a/buildtools/lib/parsers/autotools/tests/viewer.h b/buildtools/lib/parsers/autotools/tests/viewer.h index 7665368e..1e0b7b0f 100644 --- a/buildtools/lib/parsers/autotools/tests/viewer.h +++ b/buildtools/lib/parsers/autotools/tests/viewer.h @@ -32,7 +32,7 @@ class Viewer: public ViewerBase { Q_OBJECT TQ_OBJECT public: - Viewer(TQWidget *tqparent = 0, const char *name = 0); + Viewer(TQWidget *parent = 0, const char *name = 0); void processAST(AutoTools::ProjectAST *projectAST, TQListViewItem *globAfter = 0); public slots: virtual void tabWidget2_selected(const TQString&); |