summaryrefslogtreecommitdiffstats
path: root/amor/amorbubble.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amor/amorbubble.cpp')
-rw-r--r--amor/amorbubble.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/amor/amorbubble.cpp b/amor/amorbubble.cpp
index fce5df8..dc2b383 100644
--- a/amor/amorbubble.cpp
+++ b/amor/amorbubble.cpp
@@ -29,7 +29,7 @@
#include <tqpainter.h>
#include <ktextbrowser.h>
#include <tqtooltip.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <X11/Xlib.h>
#include <X11/extensions/shape.h>
#include <tqtimer.h>
@@ -119,7 +119,7 @@ void AmorBubble::calcGeometry()
// The actual position of the bubble may change if it is too close to
// the desktop boundary.
- if (mOriginX + w > kapp->desktop()->width())
+ if (mOriginX + w > tdeApp->desktop()->width())
{
// source on right
xpos = mOriginX - w - BUBBLE_OFFSET;
@@ -127,7 +127,7 @@ void AmorBubble::calcGeometry()
mBound.moveBy( -ARROW_WIDTH, 0 );
}
- if (mOriginY + h > kapp->desktop()->height())
+ if (mOriginY + h > tdeApp->desktop()->height())
{
// source at bottom
ypos = mOriginY - h + BORDER_SIZE + ARROW_HEIGHT / 2;