diff options
Diffstat (limited to 'wifi/locator.cpp')
-rw-r--r-- | wifi/locator.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/wifi/locator.cpp b/wifi/locator.cpp index ad4e7945..859b7d73 100644 --- a/wifi/locator.cpp +++ b/wifi/locator.cpp @@ -21,7 +21,7 @@ extern TQStringList APs; -Locator::Locator (TQWidget * parent, Interface_wireless * device):TQWidget (parent, +Locator::Locator (TQWidget * tqparent, Interface_wireless * device):TQWidget (tqparent, "KwiFiManager") { this->device = device; @@ -34,13 +34,13 @@ Locator::generateLocWidget () device->get_AP_info (mac, ip); sentence = new TQLabel (i18n ("AccessPoint: ") + whois (mac.local8Bit (), APs), this); - setFixedSize (QSize - (sentence->sizeHint ().width () + 2, - sentence->sizeHint ().height ())); + setFixedSize (TQSize + (sentence->tqsizeHint ().width () + 2, + sentence->tqsizeHint ().height ())); sentence-> - setFixedSize (QSize - (sentence->sizeHint ().width () + 2, - sentence->sizeHint ().height ())); + setFixedSize (TQSize + (sentence->tqsizeHint ().width () + 2, + sentence->tqsizeHint ().height ())); sentence->show (); widgetbild = TQPixmap::grabWidget (sentence); delete sentence; |