summaryrefslogtreecommitdiffstats
path: root/kdialog/widgets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdialog/widgets.cpp')
-rw-r--r--kdialog/widgets.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdialog/widgets.cpp b/kdialog/widgets.cpp
index d663d1bc3..536ffadce 100644
--- a/kdialog/widgets.cpp
+++ b/kdialog/widgets.cpp
@@ -47,9 +47,9 @@ void Widgets::handleXGeometry(TQWidget * dlg)
int w, h;
int m = XParseGeometry( kapp->geometryArgument().latin1(), &x, &y, (unsigned int*)&w, (unsigned int*)&h);
if ( (m & XNegative) )
- x = KApplication::desktop()->width() + x - w;
+ x = TDEApplication::desktop()->width() + x - w;
if ( (m & YNegative) )
- y = KApplication::desktop()->height() + y - h;
+ y = TDEApplication::desktop()->height() + y - h;
dlg->setGeometry(x, y, w, h);
// kdDebug() << "x: " << x << " y: " << y << " w: " << w << " h: " << h << endl;
}