diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:19:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:19:40 -0600 |
commit | 74f47aebb77b4744bf18960b81c3744106cf56e0 (patch) | |
tree | 98f808be7ee64f341ba893cfc4fc6a2db7ed5092 /kfax | |
parent | c705f8f0619865875d6247d9470dced55241bc79 (diff) | |
download | tdegraphics-74f47aebb77b4744bf18960b81c3744106cf56e0.tar.gz tdegraphics-74f47aebb77b4744bf18960b81c3744106cf56e0.zip |
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'kfax')
-rw-r--r-- | kfax/kfax.cpp | 2 | ||||
-rw-r--r-- | kfax/kfax.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kfax/kfax.cpp b/kfax/kfax.cpp index 17adf629..2cc4e0f5 100644 --- a/kfax/kfax.cpp +++ b/kfax/kfax.cpp @@ -160,7 +160,7 @@ bool buttondown; bool MyApp::x11EventFilter( XEvent * ev) { - if (KApplication::x11EventFilter(ev)) + if (TDEApplication::x11EventFilter(ev)) return TRUE; if (ev->type == ButtonRelease){ diff --git a/kfax/kfax.h b/kfax/kfax.h index 0eae301f..f7547a24 100644 --- a/kfax/kfax.h +++ b/kfax/kfax.h @@ -46,7 +46,7 @@ class TQScrollBar; typedef KToolBar::BarPosition BarPosition; -class MyApp:public KApplication { +class MyApp:public TDEApplication { public: virtual bool x11EventFilter( XEvent * ); }; |