diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 23:53:44 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 23:53:44 -0600 |
commit | 4d3c1787513cb6c17f4e087bcf5e25b801731d94 (patch) | |
tree | e82c7e7e03f7c760013daa37a4bc3c5129a39b84 /src/gvcore/imageviewcontroller.cpp | |
parent | 4ff6dfc573c9413a887afd35ec2d6825e60067bc (diff) | |
download | gwenview-4d3c1787513cb6c17f4e087bcf5e25b801731d94.tar.gz gwenview-4d3c1787513cb6c17f4e087bcf5e25b801731d94.zip |
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'src/gvcore/imageviewcontroller.cpp')
-rw-r--r-- | src/gvcore/imageviewcontroller.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gvcore/imageviewcontroller.cpp b/src/gvcore/imageviewcontroller.cpp index 3634146..8416224 100644 --- a/src/gvcore/imageviewcontroller.cpp +++ b/src/gvcore/imageviewcontroller.cpp @@ -285,7 +285,7 @@ ImageViewController::ImageViewController(TQWidget* parent, Document* document, K d->mImageView=new ImageView(d->mStack, document, actionCollection); d->mStack->addWidget(d->mImageView); - KApplication::kApplication()->installEventFilter(this); + TDEApplication::kApplication()->installEventFilter(this); d->mPlayerPart=0; d->mBuilder=new XMLGUIBuilder(d->mToolBar); @@ -395,7 +395,7 @@ void ImageViewController::slotAutoHide() { } // Only hide cursor if we are not over a dialog - TQWidget* widget = TQT_TQWIDGET(KApplication::kApplication()->activeWindow()); + TQWidget* widget = TQT_TQWIDGET(TDEApplication::kApplication()->activeWindow()); if (!widget || !widget->inherits(TQDIALOG_OBJECT_NAME_STRING)) { TQApplication::setOverrideCursor(blankCursor); d->mCursorHidden=true; |