diff options
author | Timothy Pearson <[email protected]> | 2013-01-22 19:51:20 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-22 19:51:20 -0600 |
commit | 9c8d64b5e7f2552116b0dc9c3070dc7529118432 (patch) | |
tree | 7869ba3a44dd108ce44ecea2526a3dbffded9511 /src/gvdirpart | |
parent | 9be8a1a36d76dd6f4c5114fa51d4a5d18f98948b (diff) | |
download | gwenview-9c8d64b5e7f2552116b0dc9c3070dc7529118432.tar.gz gwenview-9c8d64b5e7f2552116b0dc9c3070dc7529118432.zip |
Rename KInstance and KAboutData to avoid conflicts with KDE4
Diffstat (limited to 'src/gvdirpart')
-rw-r--r-- | src/gvdirpart/gvdirpart.cpp | 6 | ||||
-rw-r--r-- | src/gvdirpart/gvdirpart.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/gvdirpart/gvdirpart.cpp b/src/gvdirpart/gvdirpart.cpp index 3f321e5..25d0a8a 100644 --- a/src/gvdirpart/gvdirpart.cpp +++ b/src/gvdirpart/gvdirpart.cpp @@ -140,10 +140,10 @@ void GVDirPart::partActivateEvent(KParts::PartActivateEvent* event) { } -KAboutData* GVDirPart::createAboutData() { - KAboutData* aboutData = new KAboutData( "gvdirpart", I18N_NOOP("GVDirPart"), +TDEAboutData* GVDirPart::createAboutData() { + TDEAboutData* aboutData = new TDEAboutData( "gvdirpart", I18N_NOOP("GVDirPart"), "0.1", I18N_NOOP("Image Browser"), - KAboutData::License_GPL, + TDEAboutData::License_GPL, "(c) 2004, Jonathan Riddell <[email protected]>"); return aboutData; } diff --git a/src/gvdirpart/gvdirpart.h b/src/gvdirpart/gvdirpart.h index 7bff76b..40401ff 100644 --- a/src/gvdirpart/gvdirpart.h +++ b/src/gvdirpart/gvdirpart.h @@ -25,7 +25,7 @@ Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA 02110-1301, USA. // Forward declarations class TQPoint; class TQSplitter; -class KAboutData; +class TDEAboutData; class KAction; class KToggleAction; @@ -79,7 +79,7 @@ public: /** * Return information about the part */ - static KAboutData* createAboutData(); + static TDEAboutData* createAboutData(); /** * Returns the name of the current file in the pixmap |