summaryrefslogtreecommitdiffstats
path: root/fifteenapplet
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-22 20:22:52 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-22 20:22:52 -0600
commitd0de10e23a5ec604757cb03751d7a9a69215e194 (patch)
tree75b399122b7b2bf01b97faab7b2a08948c3a62e9 /fifteenapplet
parenta32e2961ee678e7826aa8d98cbccb5b92948649f (diff)
downloadtdetoys-d0de10e23a5ec604757cb03751d7a9a69215e194.tar.gz
tdetoys-d0de10e23a5ec604757cb03751d7a9a69215e194.zip
Rename KInstance and KAboutData to avoid conflicts with KDE4
Diffstat (limited to 'fifteenapplet')
-rw-r--r--fifteenapplet/fifteenapplet.cpp4
-rw-r--r--fifteenapplet/fifteenapplet.h4
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