diff options
Diffstat (limited to 'src/controller.cpp')
-rw-r--r-- | src/controller.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controller.cpp b/src/controller.cpp index 770ef79..1713047 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -50,8 +50,8 @@ using Tellico::Controller; Controller* Controller::s_self = 0; -Controller::Controller(MainWindow* tqparent_, const char* name_) - : TQObject(tqparent_, name_), m_mainWindow(tqparent_), m_working (false), m_widgetWithSelection(0) { +Controller::Controller(MainWindow* parent_, const char* name_) + : TQObject(parent_, name_), m_mainWindow(parent_), m_working (false), m_widgetWithSelection(0) { } void Controller::addObserver(Observer* obs) { |