Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/13/head
Michele Calgaro 8 months ago
parent 80b7eada49
commit 8ca8caba6f
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -76,7 +76,7 @@ KoolDock::KoolDock(TQWidget* parent, const char* name) :
lockSetTab= false; // disables changing opened tab in preferences window lockSetTab= false; // disables changing opened tab in preferences window
setupdlg = new SetupDialogPrg(); // create the setup dialog object. setupdlg = new SetupDialogPrg(); // create the setup dialog object.
connect(setupdlg, SIGNAL(apply()), SLOT(chkRestart())); connect(setupdlg, TQ_SIGNAL(apply()), TQ_SLOT(chkRestart()));
perf = new TQTime(); perf = new TQTime();
reloadIcons = true; reloadIcons = true;
@ -89,15 +89,15 @@ KoolDock::KoolDock(TQWidget* parent, const char* name) :
popup = new TDEPopupMenu; popup = new TDEPopupMenu;
advMenu = new TDEPopupMenu; advMenu = new TDEPopupMenu;
connect(popup, SIGNAL(aboutToShow()), SLOT(aboutToShow())); connect(popup, TQ_SIGNAL(aboutToShow()), TQ_SLOT(aboutToShow()));
connect(popup, SIGNAL(aboutToHide()), SLOT(aboutToHide())); connect(popup, TQ_SIGNAL(aboutToHide()), TQ_SLOT(aboutToHide()));
connect(appMenu, SIGNAL(aboutToShow()), SLOT(aboutToShow())); connect(appMenu, TQ_SIGNAL(aboutToShow()), TQ_SLOT(aboutToShow()));
connect(appMenu, SIGNAL(aboutToHide()), SLOT(aboutToHide())); connect(appMenu, TQ_SIGNAL(aboutToHide()), TQ_SLOT(aboutToHide()));
connect(deskpopup, SIGNAL(aboutToShow()), SLOT(menuShow())); connect(deskpopup, TQ_SIGNAL(aboutToShow()), TQ_SLOT(menuShow()));
connect(appMenu, SIGNAL(highlighted(int)), this, SLOT(menuX(int))); connect(appMenu, TQ_SIGNAL(highlighted(int)), this, TQ_SLOT(menuX(int)));
connect(godesk, SIGNAL(activated(int)), this, SLOT(goToDesktop(int))); connect(godesk, TQ_SIGNAL(activated(int)), this, TQ_SLOT(goToDesktop(int)));
connect(tasklist, SIGNAL(activated(int)), this, SLOT(goToWindow(int))); connect(tasklist, TQ_SIGNAL(activated(int)), this, TQ_SLOT(goToWindow(int)));
connect(deskpopup, SIGNAL(activated(int)), this, SLOT(sendToDesktop(int))); connect(deskpopup, TQ_SIGNAL(activated(int)), this, TQ_SLOT(sendToDesktop(int)));
menuCount = 0; menuCount = 0;
init(); //initialization init(); //initialization
} }
@ -203,7 +203,7 @@ void KoolDock::trackTimerEnd()
} }
if ((py + 2 >= dh) && (px > x0) && (px < x0 + w0)){ if ((py + 2 >= dh) && (px > x0) && (px < x0 + w0)){
if (track2active == false) { if (track2active == false) {
TQTimer::singleShot(hideTimer, this, SLOT(trackTimer2End())); TQTimer::singleShot(hideTimer, this, TQ_SLOT(trackTimer2End()));
} }
track2active = true; track2active = true;
} }
@ -593,7 +593,7 @@ void KoolDock::paintEvent(TQPaintEvent *)
if (iOnClick == i) { if (iOnClick == i) {
// Highlight the clicked icon // Highlight the clicked icon
KPixmapEffect::fade(*currentIcon, ((float) 50) * 0.01, TQColor("#FFFFFF")); KPixmapEffect::fade(*currentIcon, ((float) 50) * 0.01, TQColor("#FFFFFF"));
TQTimer::singleShot(10 * 60, this, SLOT(unhighlight())); // Unhighlight the icon in 1 second TQTimer::singleShot(10 * 60, this, TQ_SLOT(unhighlight())); // Unhighlight the icon in 1 second
} }
// Notify animation // Notify animation
@ -905,20 +905,20 @@ void KoolDock::mPress(int mx, int my, ButtonState srcButton)
// Right button. // Right button.
i = iClicked; i = iClicked;
advMenu->clear(); advMenu->clear();
advMenu->insertItem(SmallIconSet("go-up"), i18n("Keep &Above Others"), this, SLOT(toggleAlwaysOnTop()), 0, 1); advMenu->insertItem(SmallIconSet("go-up"), i18n("Keep &Above Others"), this, TQ_SLOT(toggleAlwaysOnTop()), 0, 1);
advMenu->insertItem(SmallIconSet("go-down"), i18n("Keep &Below Others"), this, SLOT(toggleKeptBelowOthers()), 0, 2); advMenu->insertItem(SmallIconSet("go-down"), i18n("Keep &Below Others"), this, TQ_SLOT(toggleKeptBelowOthers()), 0, 2);
advMenu->insertItem(SmallIconSet("view-fullscreen"), i18n("&Fullscreen"), this, SLOT(toggleFullScreen()), 0, 3); advMenu->insertItem(SmallIconSet("view-fullscreen"), i18n("&Fullscreen"), this, TQ_SLOT(toggleFullScreen()), 0, 3);
// Main KoolDock popup menu // Main KoolDock popup menu
popup->clear(); popup->clear();
popup->insertTitle(i18n("Main Menu")); popup->insertTitle(i18n("Main Menu"));
popup->insertItem(SmallIcon("configure"), i18n("Edit Quick Launch &Menu"), this, SLOT(edit())); popup->insertItem(SmallIcon("configure"), i18n("Edit Quick Launch &Menu"), this, TQ_SLOT(edit()));
popup->insertItem(SmallIcon("pencil"), i18n("Edit &Preferences"), this, SLOT(editPref())); popup->insertItem(SmallIcon("pencil"), i18n("Edit &Preferences"), this, TQ_SLOT(editPref()));
popup->insertItem(SmallIcon("edit-redo"), i18n("&Reload configuration"), this, SLOT(restart())); popup->insertItem(SmallIcon("edit-redo"), i18n("&Reload configuration"), this, TQ_SLOT(restart()));
popup->insertSeparator(); popup->insertSeparator();
popup->insertItem(SmallIcon("about_kde"), i18n("&About"), this, SLOT(about())); popup->insertItem(SmallIcon("about_kde"), i18n("&About"), this, TQ_SLOT(about()));
popup->insertSeparator(); popup->insertSeparator();
popup->insertItem(SmallIcon("system-log-out"), i18n("E&xit"), this, SLOT(endProg())); popup->insertItem(SmallIcon("system-log-out"), i18n("E&xit"), this, TQ_SLOT(endProg()));
// End Main KoolDock Menu // End Main KoolDock Menu
if (fShowNav == 1) { if (fShowNav == 1) {
@ -960,8 +960,8 @@ void KoolDock::mPress(int mx, int my, ButtonState srcButton)
appMenu->clear(); appMenu->clear();
appMenu->insertTitle(i18n("Item menu")); appMenu->insertTitle(i18n("Item menu"));
iFilename = items.at(i)->getFilename(); iFilename = items.at(i)->getFilename();
appMenu->insertItem(SmallIcon("configure"), i18n("&Edit item"), this, SLOT(editItem())); appMenu->insertItem(SmallIcon("configure"), i18n("&Edit item"), this, TQ_SLOT(editItem()));
appMenu->insertItem(SmallIcon("window-close"), i18n("&Delete item"), this, SLOT(removeItem())); appMenu->insertItem(SmallIcon("window-close"), i18n("&Delete item"), this, TQ_SLOT(removeItem()));
appMenu->insertSeparator(); appMenu->insertSeparator();
appMenu->insertItem(SmallIcon("forward"), "&KoolDock", popup); appMenu->insertItem(SmallIcon("forward"), "&KoolDock", popup);
appMenu->exec(TQCursor::pos()); appMenu->exec(TQCursor::pos());
@ -1014,7 +1014,7 @@ void KoolDock::mPress(int mx, int my, ButtonState srcButton)
if ((fMinimizedOnly == 0 || winfo.isMinimized()) && (fCurrent == 0 || winfo.isOnDesktop(KWin::currentDesktop()))) { if ((fMinimizedOnly == 0 || winfo.isMinimized()) && (fCurrent == 0 || winfo.isOnDesktop(KWin::currentDesktop()))) {
TDEPopupMenu *tmpMenu = new TDEPopupMenu; TDEPopupMenu *tmpMenu = new TDEPopupMenu;
createMenu(tmpMenu, &winfo); createMenu(tmpMenu, &winfo);
connect(tmpMenu, SIGNAL(aboutToShow()), SLOT(menuShow())); connect(tmpMenu, TQ_SIGNAL(aboutToShow()), TQ_SLOT(menuShow()));
popups.append(tmpMenu); popups.append(tmpMenu);
appMenu->setItemParameter(appMenu->insertItem(*item->getIcon(iwBig2), item->getName(), tmpMenu), item->getId()); appMenu->setItemParameter(appMenu->insertItem(*item->getIcon(iwBig2), item->getName(), tmpMenu), item->getId());
} }
@ -1022,10 +1022,10 @@ void KoolDock::mPress(int mx, int my, ButtonState srcButton)
} }
appMenu->insertSeparator(); appMenu->insertSeparator();
appMenu->insertItem(SmallIcon("forward"), "&Move to Desktop", deskpopup); appMenu->insertItem(SmallIcon("forward"), "&Move to Desktop", deskpopup);
appMenu->insertItem(i18n("Mi&nimize all"), this, SLOT(minAllApps())); appMenu->insertItem(i18n("Mi&nimize all"), this, TQ_SLOT(minAllApps()));
appMenu->insertItem(i18n("Ma&ximize all"), this, SLOT(maxAllApps())); appMenu->insertItem(i18n("Ma&ximize all"), this, TQ_SLOT(maxAllApps()));
appMenu->insertItem(i18n("&Restore all"), this, SLOT(restAllApps())); appMenu->insertItem(i18n("&Restore all"), this, TQ_SLOT(restAllApps()));
appMenu->insertItem(SmallIcon("window-close"), i18n("&Close all"), this, SLOT(closeAllApps())); appMenu->insertItem(SmallIcon("window-close"), i18n("&Close all"), this, TQ_SLOT(closeAllApps()));
} }
else { else {
iGroup = false; iGroup = false;
@ -1730,7 +1730,7 @@ void KoolDock::windowChanged(WId id, unsigned int properties)
item->anim(true); item->anim(true);
if (onChangeTimer == NULL) { if (onChangeTimer == NULL) {
onChangeTimer = new TQTimer(this); onChangeTimer = new TQTimer(this);
connect(onChangeTimer, SIGNAL(timeout()), this, SLOT(onChangeTimerTicked())); connect(onChangeTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(onChangeTimerTicked()));
onChangeTimer->start(ON_CHANGE_ANIM_INTERVAL, false); onChangeTimer->start(ON_CHANGE_ANIM_INTERVAL, false);
} }
} }
@ -2677,7 +2677,7 @@ void KoolDock::minApp()
KWin::iconifyWindow(cId, true); KWin::iconifyWindow(cId, true);
} }
hide(); hide();
TQTimer::singleShot(100, this, SLOT(refreshBackground())); TQTimer::singleShot(100, this, TQ_SLOT(refreshBackground()));
} }
void KoolDock::maxApp() void KoolDock::maxApp()
@ -2707,7 +2707,7 @@ void KoolDock::maxApp()
} }
KWin::activateWindow(cId); KWin::activateWindow(cId);
hide(); hide();
TQTimer::singleShot(100, this, SLOT(refreshBackground())); TQTimer::singleShot(100, this, TQ_SLOT(refreshBackground()));
} }
void KoolDock::restApp() void KoolDock::restApp()
@ -2729,7 +2729,7 @@ void KoolDock::restApp()
KWin::deIconifyWindow(cId, true); KWin::deIconifyWindow(cId, true);
KWin::activateWindow(cId); KWin::activateWindow(cId);
hide(); hide();
TQTimer::singleShot(100, this, SLOT(refreshBackground())); TQTimer::singleShot(100, this, TQ_SLOT(refreshBackground()));
} }
void KoolDock::minAllApps() void KoolDock::minAllApps()
@ -2818,7 +2818,7 @@ void KoolDock::shadeApp()
KWin::setState(cId, NET::Shaded); KWin::setState(cId, NET::Shaded);
} }
hide(); hide();
TQTimer::singleShot(100, this, SLOT(refreshBackground())); TQTimer::singleShot(100, this, TQ_SLOT(refreshBackground()));
} }
void KoolDock::activateApp() void KoolDock::activateApp()
@ -2844,7 +2844,7 @@ void KoolDock::activateApp()
} }
KWin::activateWindow(cId); KWin::activateWindow(cId);
hide(); hide();
TQTimer::singleShot(100, this, SLOT(refreshBackground())); TQTimer::singleShot(100, this, TQ_SLOT(refreshBackground()));
} }
void KoolDock::closeApp() void KoolDock::closeApp()
@ -3387,15 +3387,15 @@ void KoolDock::init()
// Show task bar // Show task bar
if (fShowTaskbar) { if (fShowTaskbar) {
connect(wm, SIGNAL(activeWindowChanged(WId)), SLOT(activeWindowChanged(WId))); connect(wm, TQ_SIGNAL(activeWindowChanged(WId)), TQ_SLOT(activeWindowChanged(WId)));
} }
connect(wm, SIGNAL(windowAdded(WId)), SLOT(windowAdded(WId))); connect(wm, TQ_SIGNAL(windowAdded(WId)), TQ_SLOT(windowAdded(WId)));
connect(wm, SIGNAL(windowRemoved(WId)), SLOT(windowRemoved(WId))); connect(wm, TQ_SIGNAL(windowRemoved(WId)), TQ_SLOT(windowRemoved(WId)));
connect(wm, SIGNAL(windowChanged(WId, unsigned int)), SLOT(windowChanged(WId, unsigned int))); connect(wm, TQ_SIGNAL(windowChanged(WId, unsigned int)), TQ_SLOT(windowChanged(WId, unsigned int)));
if (fSystray) { if (fSystray) {
/* System Tray implementation (hope this works - Francisco) */ /* System Tray implementation (hope this works - Francisco) */
connect(wm, SIGNAL(systemTrayWindowAdded(WId)), SLOT(systemTrayWindowAdded(WId))); connect(wm, TQ_SIGNAL(systemTrayWindowAdded(WId)), TQ_SLOT(systemTrayWindowAdded(WId)));
connect(wm, SIGNAL(systemTrayWindowRemoved(WId)), SLOT(systemTrayWindowRemoved(WId))); connect(wm, TQ_SIGNAL(systemTrayWindowRemoved(WId)), TQ_SLOT(systemTrayWindowRemoved(WId)));
TQCString screenstr; TQCString screenstr;
screenstr.setNum(tqt_xscreen()); screenstr.setNum(tqt_xscreen());
@ -3409,14 +3409,14 @@ void KoolDock::init()
// Acquire system tray // Acquire system tray
XSetSelectionOwner(display, net_system_tray_selection, winId(), CurrentTime); XSetSelectionOwner(display, net_system_tray_selection, winId(), CurrentTime);
} }
connect(wm, SIGNAL(numberOfDesktopsChanged(int)), SLOT(numberOfDesktopsChanged(int))); connect(wm, TQ_SIGNAL(numberOfDesktopsChanged(int)), TQ_SLOT(numberOfDesktopsChanged(int)));
connect(wm, SIGNAL(currentDesktopChanged(int)), SLOT(currentDesktopChanged(int))); connect(wm, TQ_SIGNAL(currentDesktopChanged(int)), TQ_SLOT(currentDesktopChanged(int)));
connect(wm, SIGNAL(workAreaChanged()), SLOT(workAreaChanged())); connect(wm, TQ_SIGNAL(workAreaChanged()), TQ_SLOT(workAreaChanged()));
// Pseudo-Transparency code // Pseudo-Transparency code
rootpix = new KRootPixmap(this); rootpix = new KRootPixmap(this);
rootpix->setCustomPainting(true); rootpix->setCustomPainting(true);
connect(rootpix, SIGNAL(backgroundUpdated(const TQPixmap &)), SLOT(updateBackground(const TQPixmap &))); connect(rootpix, TQ_SIGNAL(backgroundUpdated(const TQPixmap &)), TQ_SLOT(updateBackground(const TQPixmap &)));
rootpix->start(); rootpix->start();
debug(TQString("Items loaded: %1").arg(items.count())); debug(TQString("Items loaded: %1").arg(items.count()));
@ -3461,7 +3461,7 @@ void KoolDock::init()
// When the mouse pointer reaches the bottom of the screen, the bar should popup in a userdefined time (int hideTimer) // When the mouse pointer reaches the bottom of the screen, the bar should popup in a userdefined time (int hideTimer)
track2active = false; track2active = false;
trackTimer = new TQTimer(this); trackTimer = new TQTimer(this);
connect(trackTimer, SIGNAL(timeout()), this, SLOT(trackTimerEnd())); connect(trackTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(trackTimerEnd()));
ii_first = 0; ii_first = 0;
ii_last = items.count() - 1; ii_last = items.count() - 1;
@ -3478,15 +3478,15 @@ void KoolDock::init()
aux = ""; aux = "";
mTimer = new TQTimer(this); mTimer = new TQTimer(this);
connect(mTimer, SIGNAL(timeout()), this, SLOT(mTimerEnd())); connect(mTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(mTimerEnd()));
_filterData = new KURIFilterData(); _filterData = new KURIFilterData();
mkbigTimer = new TQTimer(this); mkbigTimer = new TQTimer(this);
connect(mkbigTimer, SIGNAL(timeout()), this, SLOT(mkbigTimerDo())); connect(mkbigTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(mkbigTimerDo()));
mksmallTimer = new TQTimer(this); mksmallTimer = new TQTimer(this);
connect(mksmallTimer, SIGNAL(timeout()), this, SLOT(mksmallTimerDo())); connect(mksmallTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(mksmallTimerDo()));
TQWMatrix m; TQWMatrix m;
m.rotate(-90 * fOrientation); m.rotate(-90 * fOrientation);
@ -3779,32 +3779,32 @@ void KoolDock::createMenu(TDEPopupMenu* tmpMenu, KWin::WindowInfo* info)
tmpMenu->insertTitle(appTitle); tmpMenu->insertTitle(appTitle);
tmpMenu->insertItem(i18n("Ad&vanced"), advMenu); tmpMenu->insertItem(i18n("Ad&vanced"), advMenu);
menustate = tmpMenu->insertItem(SmallIcon("move"), i18n("&Move"), this, SLOT(moveApp())); menustate = tmpMenu->insertItem(SmallIcon("move"), i18n("&Move"), this, TQ_SLOT(moveApp()));
tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionMove)); tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionMove));
menustate = tmpMenu->insertItem(i18n("Re&size"), this, SLOT(resizeApp())); menustate = tmpMenu->insertItem(i18n("Re&size"), this, TQ_SLOT(resizeApp()));
tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionMove)); tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionMove));
menustate = tmpMenu->insertItem(i18n("Mi&nimize"), this, SLOT(minApp())); menustate = tmpMenu->insertItem(i18n("Mi&nimize"), this, TQ_SLOT(minApp()));
if (info->isMinimized()) { if (info->isMinimized()) {
tmpMenu->setItemChecked(menustate, true); tmpMenu->setItemChecked(menustate, true);
} }
tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionMinimize)); tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionMinimize));
menustate = tmpMenu->insertItem(i18n("Ma&ximize"), this, SLOT(maxApp())); menustate = tmpMenu->insertItem(i18n("Ma&ximize"), this, TQ_SLOT(maxApp()));
if ((info->state() & NET::Max) && !info->isMinimized()) { if ((info->state() & NET::Max) && !info->isMinimized()) {
tmpMenu->setItemChecked(menustate, true); tmpMenu->setItemChecked(menustate, true);
} }
tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionMax)); tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionMax));
menustate = tmpMenu->insertItem(i18n("&Shade"), this, SLOT(shadeApp())); menustate = tmpMenu->insertItem(i18n("&Shade"), this, TQ_SLOT(shadeApp()));
if (info->state() & NET::Shaded) { if (info->state() & NET::Shaded) {
tmpMenu->setItemChecked(menustate, true); tmpMenu->setItemChecked(menustate, true);
} }
tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionShade)); tmpMenu->setItemEnabled(menustate, info->actionSupported(NET::ActionShade));
tmpMenu->insertItem(SmallIcon("forward"), i18n("&Move to Desktop"), deskpopup); tmpMenu->insertItem(SmallIcon("forward"), i18n("&Move to Desktop"), deskpopup);
tmpMenu->insertSeparator(); tmpMenu->insertSeparator();
tmpMenu->insertItem(SmallIcon("window-close"), i18n("&Close"), this, SLOT(closeApp())); tmpMenu->insertItem(SmallIcon("window-close"), i18n("&Close"), this, TQ_SLOT(closeApp()));
} }
void KoolDock::updTaskList() void KoolDock::updTaskList()

@ -39,7 +39,7 @@ SetupDialogPrg::SetupDialogPrg(TQWidget* parent, const char* name)
//Ignore list handlers //Ignore list handlers
grabbing = 0; grabbing = 0;
gwm = new KWinModule(); gwm = new KWinModule();
connect(gwm, SIGNAL(activeWindowChanged(WId)), SLOT(activeWindowChanged(WId))); connect(gwm, TQ_SIGNAL(activeWindowChanged(WId)), TQ_SLOT(activeWindowChanged(WId)));
gwm->blockSignals(true); gwm->blockSignals(true);
in = ignoreBox->lineEdit(); in = ignoreBox->lineEdit();
// Remove useless buttons from widget // Remove useless buttons from widget
@ -62,7 +62,7 @@ SetupDialogPrg::SetupDialogPrg(TQWidget* parent, const char* name)
appdlg->terminal->setChecked(false); appdlg->terminal->setChecked(false);
appdlg->tclose->setChecked(false); appdlg->tclose->setChecked(false);
appdlg->tclose->setEnabled(false); appdlg->tclose->setEnabled(false);
connect(appdlg, SIGNAL(apply()), SLOT(appRestart())); connect(appdlg, TQ_SIGNAL(apply()), TQ_SLOT(appRestart()));
// Load the theme List // Load the theme List
TDEStandardDirs sys; TDEStandardDirs sys;
@ -551,7 +551,7 @@ void SetupDialogPrg::applist_contextMenuRequested(TQIconViewItem* e,const TQPoin
fileName = e->text(); fileName = e->text();
oldPos = e->index(); oldPos = e->index();
connect(setpos, SIGNAL(activated(int)), this, SLOT(setnewpos(int))); connect(setpos, TQ_SIGNAL(activated(int)), this, TQ_SLOT(setnewpos(int)));
// Load desktop data // Load desktop data
KSimpleConfig* desktopfile; KSimpleConfig* desktopfile;
@ -576,8 +576,8 @@ void SetupDialogPrg::applist_contextMenuRequested(TQIconViewItem* e,const TQPoin
popup->insertTitle(e->text()); popup->insertTitle(e->text());
popup->insertItem(i18n("Swap with"), setpos); popup->insertItem(i18n("Swap with"), setpos);
popup->insertItem(i18n("&Edit item"), this, SLOT(editItem())); popup->insertItem(i18n("&Edit item"), this, TQ_SLOT(editItem()));
popup->insertItem(i18n("Remove"), this, SLOT(removeLauncher())); popup->insertItem(i18n("Remove"), this, TQ_SLOT(removeLauncher()));
popup->exec(TQCursor::pos()); popup->exec(TQCursor::pos());
if (popup) { if (popup) {
delete popup; delete popup;

Loading…
Cancel
Save