diff options
Diffstat (limited to 'fifteenapplet')
-rw-r--r-- | fifteenapplet/fifteenapplet.cpp | 4 | ||||
-rw-r--r-- | fifteenapplet/fifteenapplet.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fifteenapplet/fifteenapplet.cpp b/fifteenapplet/fifteenapplet.cpp index 490ed52..31dc572 100644 --- a/fifteenapplet/fifteenapplet.cpp +++ b/fifteenapplet/fifteenapplet.cpp @@ -75,12 +75,12 @@ int FifteenApplet::heightForWidth(int w) const void FifteenApplet::about() { if(!_aboutData) { - _aboutData = new KAboutData("kfifteenapplet", I18N_NOOP("KFifteenApplet"), "1.0", + _aboutData = new TDEAboutData("kfifteenapplet", I18N_NOOP("KFifteenApplet"), "1.0", I18N_NOOP("Fifteen pieces applet.\n\n" "The goal is to put the sliding pieces into numerical order.\n" "Select \"Randomize Pieces\" from the right mouse button menu\n" "to start a game."), - KAboutData::License_BSD, "(c) 2001, Matthias Elter"); + TDEAboutData::License_BSD, "(c) 2001, Matthias Elter"); _aboutData->addAuthor("Matthias Elter", 0, "elter@kde.org"); } diff --git a/fifteenapplet/fifteenapplet.h b/fifteenapplet/fifteenapplet.h index 6633fe0..1ef45c9 100644 --- a/fifteenapplet/fifteenapplet.h +++ b/fifteenapplet/fifteenapplet.h @@ -30,7 +30,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include <kpanelapplet.h> class TQPopupMenu; -class KAboutData; +class TDEAboutData; class PiecesTable : public QtTableView { @@ -80,7 +80,7 @@ public: private: PiecesTable *_table; - KAboutData *_aboutData; + TDEAboutData *_aboutData; }; #endif |