diff options
Diffstat (limited to 'twin-styles/riscos')
-rw-r--r-- | twin-styles/riscos/Manager.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/twin-styles/riscos/Manager.cpp b/twin-styles/riscos/Manager.cpp index 9eb26720..dafac2ff 100644 --- a/twin-styles/riscos/Manager.cpp +++ b/twin-styles/riscos/Manager.cpp @@ -593,9 +593,9 @@ void Manager::createTitle() { case 'S': // Sticky tb = new StickyButton(widget()); - connect(this, TQT_SIGNAL(stickyChanged(bool)), - tb, TQT_SLOT(setOn(bool))); - connect(tb, TQT_SIGNAL(toggleSticky()), this, TQT_SLOT(slotToggleSticky())); + connect(this, TQ_SIGNAL(stickyChanged(bool)), + tb, TQ_SLOT(setOn(bool))); + connect(tb, TQ_SIGNAL(toggleSticky()), this, TQ_SLOT(slotToggleSticky())); emit(stickyChanged(isOnAllDesktops())); break; @@ -603,7 +603,7 @@ void Manager::createTitle() if (providesContextHelp()) { tb = new HelpButton(widget()); - connect(tb, TQT_SIGNAL(help()), this, TQT_SLOT(showContextHelp())); + connect(tb, TQ_SIGNAL(help()), this, TQ_SLOT(showContextHelp())); } break; @@ -611,7 +611,7 @@ void Manager::createTitle() if (isMinimizable()) { tb = new IconifyButton(widget()); - connect(tb, TQT_SIGNAL(iconify()), this, TQT_SLOT(minimize())); + connect(tb, TQ_SIGNAL(iconify()), this, TQ_SLOT(minimize())); } break; @@ -619,29 +619,29 @@ void Manager::createTitle() if (isMaximizable()) { tb = new MaximiseButton(widget()); - connect(tb, TQT_SIGNAL(maximizeClicked(ButtonState)), - this, TQT_SLOT(slotMaximizeClicked(ButtonState))); - connect(this, TQT_SIGNAL(maximizeChanged(bool)), - tb, TQT_SLOT(setOn(bool))); + connect(tb, TQ_SIGNAL(maximizeClicked(ButtonState)), + this, TQ_SLOT(slotMaximizeClicked(ButtonState))); + connect(this, TQ_SIGNAL(maximizeChanged(bool)), + tb, TQ_SLOT(setOn(bool))); emit(maximizeChanged(maximizeMode() == MaximizeFull)); } break; case 'F': // Above tb = new AboveButton(widget()); - connect(tb, TQT_SIGNAL(above()), this, TQT_SLOT(slotAbove())); + connect(tb, TQ_SIGNAL(above()), this, TQ_SLOT(slotAbove())); break; case 'B': // Lower tb = new LowerButton(widget()); - connect(tb, TQT_SIGNAL(lower()), this, TQT_SLOT(slotLower())); + connect(tb, TQ_SIGNAL(lower()), this, TQ_SLOT(slotLower())); break; case 'X': // Close if (isCloseable()) { tb = new CloseButton(widget()); - connect(tb, TQT_SIGNAL(closeWindow()), this, TQT_SLOT(closeWindow())); + connect(tb, TQ_SIGNAL(closeWindow()), this, TQ_SLOT(closeWindow())); } break; @@ -652,7 +652,7 @@ void Manager::createTitle() if (tb != NULL) { - connect(this, TQT_SIGNAL(activeChanged(bool)), tb, TQT_SLOT(setActive(bool))); + connect(this, TQ_SIGNAL(activeChanged(bool)), tb, TQ_SLOT(setActive(bool))); buttonList->append(tb); } } |