diff --git a/Mainpage.dox b/Mainpage.dox index 061abb9a..d9ef1071 100644 --- a/Mainpage.dox +++ b/Mainpage.dox @@ -2,7 +2,7 @@ This section contains the KDE online class reference for the current development version of KDE Games. -- libkdegames (classes) +- libtdegames (classes) */ diff --git a/Makefile.am.in b/Makefile.am.in index 2aa4523a..7c5c4367 100644 --- a/Makefile.am.in +++ b/Makefile.am.in @@ -1,5 +1,5 @@ AUTOMAKE_OPTIONS = foreign 1.6.1 -COMPILE_FIRST = libkdegames +COMPILE_FIRST = libtdegames COMPILE_AFTER_libksirtet = ksirtet kfouleggs klickety DISTCLEANFILES = inst-apps diff --git a/README b/README index 2bb4cf38..90224cc3 100644 --- a/README +++ b/README @@ -104,7 +104,7 @@ This is a compilation of various games * kwin4 Place 4 pieces in a row. -* libkdegames +* libtdegames TDE game library used by many of these programs, contains also images of card decks. diff --git a/atlantik/client/Makefile.am b/atlantik/client/Makefile.am index 717ad0e3..f0c00fa9 100644 --- a/atlantik/client/Makefile.am +++ b/atlantik/client/Makefile.am @@ -1,5 +1,5 @@ bin_PROGRAMS = atlantik -INCLUDES = -I$(top_srcdir)/libkdegames -I$(srcdir)/../libatlantic -I$(srcdir)/../libatlantikclient -I$(srcdir)/../libatlantikui $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(srcdir)/../libatlantic -I$(srcdir)/../libatlantikclient -I$(srcdir)/../libatlantikui $(all_includes) atlantik_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor -L../libatlantic/.libs -latlantic atlantik_LDADD = ../libatlantikui/libatlantikui.la ../libatlantikclient/libatlantikclient.la $(LIB_KDEGAMES) $(LIB_KIO) atlantik_DEPENDENCIES = $(LIB_KDEGAMES_DEP) diff --git a/atlantik/client/main.cpp b/atlantik/client/main.cpp index 5f0e2fc6..320788f1 100644 --- a/atlantik/client/main.cpp +++ b/atlantik/client/main.cpp @@ -62,7 +62,7 @@ int main(int argc, char *argv[]) KApplication::addCmdLineOptions(); KApplication kapplication; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if (kapplication.isRestored()) RESTORE(Atlantik) diff --git a/configure.in.in b/configure.in.in index 666fd760..ecd871ca 100644 --- a/configure.in.in +++ b/configure.in.in @@ -7,8 +7,8 @@ CXXFLAGS="$CXXFLAGS $KDE_DEFAULT_CXXFLAGS" KDE_INIT_DOXYGEN([KDE Games API Reference], [Version $VERSION]) # Allow for stand-alone releases of applications with cvs2pack -if test -d $srcdir/libkdegames ; then - AC_SUBST(LIB_KDEGAMES, "\$(top_builddir)/libkdegames/libkdegames.la") +if test -d $srcdir/libtdegames ; then + AC_SUBST(LIB_KDEGAMES, "\$(top_builddir)/libtdegames/libtdegames.la") AC_SUBST(LIB_KDEGAMES_DEP, '$(LIB_KDEGAMES)') else AC_SUBST(LIB_KDEGAMES, "-lkdegames") diff --git a/kasteroids/Makefile.am b/kasteroids/Makefile.am index c1eac9d9..d7c2de53 100644 --- a/kasteroids/Makefile.am +++ b/kasteroids/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = . sprites sounds -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) METASOURCES = AUTO bin_PROGRAMS = kasteroids diff --git a/kasteroids/main.cpp b/kasteroids/main.cpp index 361c9c77..290f7a6e 100644 --- a/kasteroids/main.cpp +++ b/kasteroids/main.cpp @@ -30,7 +30,7 @@ int main( int argc, char *argv[] ) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); KGlobal::dirs()->addResourceType("sprite", KStandardDirs::kde_default("data") + "kasteroids/sprites/"); KGlobal::dirs()->addResourceType("sounds", KStandardDirs::kde_default("data") + "kasteroids/sounds/"); diff --git a/katomic/Makefile.am b/katomic/Makefile.am index 3075bf71..b5c2dc52 100644 --- a/katomic/Makefile.am +++ b/katomic/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) katomic_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor katomic_LDADD = $(LIB_KDEGAMES) katomic_DEPENDENCIES = $(LIB_KDEGAMES_DEP) diff --git a/katomic/main.cpp b/katomic/main.cpp index 6d358bda..7f8274f5 100644 --- a/katomic/main.cpp +++ b/katomic/main.cpp @@ -54,7 +54,7 @@ int main(int argc, char **argv) TQApplication::setColorSpec(TQApplication::ManyColor); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if ( a.isRestored() ) RESTORE(AtomTopLevel) diff --git a/kbackgammon/Makefile.am b/kbackgammon/Makefile.am index eec1c9b3..aff7ff18 100644 --- a/kbackgammon/Makefile.am +++ b/kbackgammon/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = pics sounds icons engines -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/kgame/ -I$(srcdir)/engines $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/kgame/ -I$(srcdir)/engines $(all_includes) METASOURCES = AUTO bin_PROGRAMS = kbackgammon diff --git a/kbackgammon/engines/fibs/Makefile.am b/kbackgammon/engines/fibs/Makefile.am index e32522de..4840daa4 100644 --- a/kbackgammon/engines/fibs/Makefile.am +++ b/kbackgammon/engines/fibs/Makefile.am @@ -2,7 +2,7 @@ noinst_LTLIBRARIES = libkbgfibs.la libkbgfibs_la_SOURCES = kbgfibs.cpp kplayerlist.cpp kbginvite.cpp kbgfibschat.cpp -INCLUDES= -I$(top_srcdir)/kbackgammon/engines -I$(top_srcdir)/libkdegames \ +INCLUDES= -I$(top_srcdir)/kbackgammon/engines -I$(top_srcdir)/libtdegames \ -I$(top_srcdir)/kbackgammon $(all_includes) METASOURCES = AUTO diff --git a/kbackgammon/engines/nextgen/Makefile.am b/kbackgammon/engines/nextgen/Makefile.am index ed58d2f4..f7d719e2 100644 --- a/kbackgammon/engines/nextgen/Makefile.am +++ b/kbackgammon/engines/nextgen/Makefile.am @@ -3,7 +3,7 @@ noinst_LTLIBRARIES = libkbgnextgen.la libkbgnextgen_la_SOURCES = kbgng.cpp kbgplayer.cpp kbggame.cpp INCLUDES= -I$(top_srcdir)/kbackgammon -I$(top_srcdir)/kbackgammon/engines \ - -I$(top_srcdir)/libkdegames/kgame $(all_includes) + -I$(top_srcdir)/libtdegames/kgame $(all_includes) METASOURCES = AUTO diff --git a/kbackgammon/main.cpp b/kbackgammon/main.cpp index 5c942f70..b157412b 100644 --- a/kbackgammon/main.cpp +++ b/kbackgammon/main.cpp @@ -52,7 +52,7 @@ int main(int argc, char *argv[]) KCmdLineArgs::init(argc, argv, &about); KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if (app.isRestored()) RESTORE(KBg) diff --git a/kbattleship/kbattleship/Makefile.am b/kbattleship/kbattleship/Makefile.am index df83b449..55be2a45 100644 --- a/kbattleship/kbattleship/Makefile.am +++ b/kbattleship/kbattleship/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = dialogs . pictures sounds -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) METASOURCES = AUTO bin_PROGRAMS = kbattleship diff --git a/kbattleship/kbattleship/main.cpp b/kbattleship/kbattleship/main.cpp index 2ce685d8..f97f7d72 100644 --- a/kbattleship/kbattleship/main.cpp +++ b/kbattleship/kbattleship/main.cpp @@ -49,7 +49,7 @@ int main(int argc, char *argv[]) KCmdLineArgs::init(argc, argv, &aboutData); KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); TQString picDirCheck = locate("data", "kbattleship/pictures/"); TQString onePicCheck = locate("data", "kbattleship/pictures/hit.png"); diff --git a/kblackbox/Makefile.am b/kblackbox/Makefile.am index 0971069d..6a2a1320 100644 --- a/kblackbox/Makefile.am +++ b/kblackbox/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = pics -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) bin_PROGRAMS = kblackbox kblackbox_SOURCES = kbbgfx.cpp kbbgame.cpp util.cpp main.cpp diff --git a/kblackbox/main.cpp b/kblackbox/main.cpp index ba0db293..422dde44 100644 --- a/kblackbox/main.cpp +++ b/kblackbox/main.cpp @@ -33,7 +33,7 @@ int main( int argc, char **argv ) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if (a.isRestored()) RESTORE(KBBGame) diff --git a/kbounce/Makefile.am b/kbounce/Makefile.am index d0502def..19bebdbc 100644 --- a/kbounce/Makefile.am +++ b/kbounce/Makefile.am @@ -6,7 +6,7 @@ endif SUBDIRS = pics sounds -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) METASOURCES = AUTO KDE_CXXFLAGS = $(KDE_USE_FPIE) @@ -40,7 +40,7 @@ install-data-local: echo "" ;\ echo "If the system-wide highscore file does not exist, it is" ;\ echo "created with the correct ownership and permissions. See the" ;\ - echo "INSTALL file in \"kdegames/libkdegames/highscore\" for details." ;\ + echo "INSTALL file in \"kdegames/libtdegames/highscore\" for details." ;\ echo "" ;\ echo "********************************************************" ;\ fi diff --git a/kbounce/main.cpp b/kbounce/main.cpp index 41ed3a7b..8fe444a2 100644 --- a/kbounce/main.cpp +++ b/kbounce/main.cpp @@ -54,7 +54,7 @@ int main(int argc, char **argv) TQApplication::setColorSpec(TQApplication::ManyColor); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); ExtManager manager; diff --git a/kenolaba/Makefile.am b/kenolaba/Makefile.am index c4f71029..d53cccd7 100644 --- a/kenolaba/Makefile.am +++ b/kenolaba/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = toolbar bitmaps -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) METASOURCES = AUTO KDE_ICON = kenolaba diff --git a/kenolaba/kenolaba.cpp b/kenolaba/kenolaba.cpp index 821fb19e..754726c2 100644 --- a/kenolaba/kenolaba.cpp +++ b/kenolaba/kenolaba.cpp @@ -47,7 +47,7 @@ int main(int argc, char *argv[]) KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); /* command line handling */ KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); diff --git a/kfouleggs/Makefile.am b/kfouleggs/Makefile.am index a80ea7e6..762e8746 100644 --- a/kfouleggs/Makefile.am +++ b/kfouleggs/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_builddir)/libksirtet -I$(top_srcdir)/libksirtet -I$(top_srcdir)/libksirtet/base -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_builddir)/libksirtet -I$(top_srcdir)/libksirtet -I$(top_srcdir)/libksirtet/base -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) SUBDIRS = pics @@ -36,7 +36,7 @@ install-data-local: && echo "" \ && echo "If the system-wide highscore file does not exist, it is" \ && echo "created with the correct ownership and permissions. See the" \ - && echo "INSTALL file in \"kdegames/libkdegames/highscore\" for details." \ + && echo "INSTALL file in \"kdegames/libtdegames/highscore\" for details." \ && echo "" \ && echo "********************************************************" \ ) || true diff --git a/kgoldrunner/src/Makefile.am b/kgoldrunner/src/Makefile.am index 2318bbdd..d259cbe4 100644 --- a/kgoldrunner/src/Makefile.am +++ b/kgoldrunner/src/Makefile.am @@ -5,7 +5,7 @@ bin_PROGRAMS = kgoldrunner # set the include path for X, qt and KDE -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) # the library search path. kgoldrunner_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor diff --git a/kgoldrunner/src/kgoldrunner.cpp b/kgoldrunner/src/kgoldrunner.cpp index 01b9176f..e4a34721 100644 --- a/kgoldrunner/src/kgoldrunner.cpp +++ b/kgoldrunner/src/kgoldrunner.cpp @@ -76,7 +76,7 @@ KGoldrunner::KGoldrunner() /******************************************************************************/ // Get catalog for translation - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); // Tell the KMainWindow that this is the main widget setCentralWidget (view); diff --git a/kjumpingcube/Makefile.am b/kjumpingcube/Makefile.am index 18df6dc6..b6ae1ff7 100644 --- a/kjumpingcube/Makefile.am +++ b/kjumpingcube/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) METASOURCES = AUTO KDE_ICON = kjumpingcube diff --git a/kjumpingcube/main.cpp b/kjumpingcube/main.cpp index eda42342..b48c53a8 100644 --- a/kjumpingcube/main.cpp +++ b/kjumpingcube/main.cpp @@ -44,7 +44,7 @@ int main(int argc, char *argv[]) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); // All session management is handled in the RESTORE macro if (app.isRestored()) diff --git a/klickety/Makefile.am b/klickety/Makefile.am index 2c99a868..7b603aa9 100644 --- a/klickety/Makefile.am +++ b/klickety/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = pics -INCLUDES = -I$(top_builddir)/libksirtet -I$(top_srcdir)/libksirtet -I$(top_srcdir)/libkdegames/highscore -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_builddir)/libksirtet -I$(top_srcdir)/libksirtet -I$(top_srcdir)/libtdegames/highscore -I$(top_srcdir)/libtdegames $(all_includes) KDE_CXXFLAGS = $(KDE_USE_FPIE) @@ -36,7 +36,7 @@ install-data-local: && echo "" \ && echo "If the system-wide highscore file does not exist, it is" \ && echo "created with the correct ownership and permissions. See the" \ - && echo "INSTALL file in \"kdegames/libkdegames/highscore\" for details." \ + && echo "INSTALL file in \"kdegames/libtdegames/highscore\" for details." \ && echo "" \ && echo "********************************************************" \ ) || true diff --git a/klines/Makefile.am b/klines/Makefile.am index f662a0e4..7c979128 100644 --- a/klines/Makefile.am +++ b/klines/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES= -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES= -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) METASOURCES = AUTO bin_PROGRAMS = klines diff --git a/klines/main.cpp b/klines/main.cpp index 66f5959c..360a0432 100644 --- a/klines/main.cpp +++ b/klines/main.cpp @@ -43,7 +43,7 @@ int main( int argc, char **argv ) KCmdLineArgs::init(argc, argv, &aboutData); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if (a.isRestored()) RESTORE(KLines) diff --git a/kmahjongg/Makefile.am b/kmahjongg/Makefile.am index 93186bbb..0d93bc09 100644 --- a/kmahjongg/Makefile.am +++ b/kmahjongg/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = pics -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) KDE_ICON = kmahjongg bin_PROGRAMS = kmahjongg diff --git a/kmahjongg/main.cpp b/kmahjongg/main.cpp index 6564a842..eb84ff37 100644 --- a/kmahjongg/main.cpp +++ b/kmahjongg/main.cpp @@ -23,7 +23,7 @@ int main( int argc, char** argv ) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); KImageIO::registerFormats(); if (a.isRestored()) diff --git a/kmines/CHANGELOG b/kmines/CHANGELOG index a6d3aac0..dc8ef6b5 100644 --- a/kmines/CHANGELOG +++ b/kmines/CHANGELOG @@ -276,7 +276,7 @@ Mario Weilguni * "kexample 0.31" compliant 0.6.4 - * adapted to libkdecore 0.7 + * adapted to libtdecore 0.7 * hide/show menubar and popup * more compliant to the Style Guide diff --git a/kmines/Makefile.am b/kmines/Makefile.am index afa6e285..f552e25d 100644 --- a/kmines/Makefile.am +++ b/kmines/Makefile.am @@ -1,5 +1,5 @@ SUBDIRS = data bitmaps solver -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) KDE_CXXFLAGS = $(KDE_USE_FPIE) @@ -31,7 +31,7 @@ install-data-local: && echo "" \ && echo "If the system-wide highscore file does not exist, it is" \ && echo "created with the correct ownership and permissions. See the" \ - && echo "INSTALL file in \"kdegames/libkdegames/highscore\" for details." \ + && echo "INSTALL file in \"kdegames/libtdegames/highscore\" for details." \ && echo "" \ && echo "********************************************************" \ ) || true diff --git a/kmines/main.cpp b/kmines/main.cpp index cead0eab..d1453b3f 100644 --- a/kmines/main.cpp +++ b/kmines/main.cpp @@ -248,7 +248,7 @@ int main(int argc, char **argv) KCmdLineArgs::init(argc, argv, &aboutData); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); KExtHighscore::ExtManager manager; if ( a.isRestored() ) RESTORE(MainWidget) diff --git a/kmines/solver/Makefile.am b/kmines/solver/Makefile.am index 8a6696a7..a9b3e38d 100644 --- a/kmines/solver/Makefile.am +++ b/kmines/solver/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_srcdir)/kmines/generic -I$(top_srcdir)/kmines -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/kmines/generic -I$(top_srcdir)/kmines -I$(top_srcdir)/libtdegames $(all_includes) noinst_LTLIBRARIES = libsolver.la noinst_HEADERS = bfield.h solver.h headerP.h adviseFast.h adviseFull.h diff --git a/knetwalk/src/Makefile.am b/knetwalk/src/Makefile.am index 97e9b5c5..bf9d205b 100644 --- a/knetwalk/src/Makefile.am +++ b/knetwalk/src/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = pics sounds -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) bin_PROGRAMS = knetwalk @@ -35,7 +35,7 @@ install-data-local: echo "" ;\ echo "If the system-wide highscore file does not exist, it is" ;\ echo "created with the correct ownership and permissions. See the" ;\ - echo "INSTALL file in \"kdegames/libkdegames/highscore\" for details." ;\ + echo "INSTALL file in \"kdegames/libtdegames/highscore\" for details." ;\ echo "" ;\ echo "********************************************************" ;\ fi diff --git a/knetwalk/src/main.cpp b/knetwalk/src/main.cpp index 72aaa4f3..18815e3d 100644 --- a/knetwalk/src/main.cpp +++ b/knetwalk/src/main.cpp @@ -50,7 +50,7 @@ int main(int argc, char ** argv) KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); if (args->isSet("Novice")) Settings::setSkill(Settings::EnumSkill::Novice); diff --git a/kolf/Makefile.am b/kolf/Makefile.am index 95449e11..c44ace96 100644 --- a/kolf/Makefile.am +++ b/kolf/Makefile.am @@ -1,5 +1,5 @@ SUBDIRS = objects sounds courses pics graphics -INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) bin_PROGRAMS = lib_LTLIBRARIES = libkolf.la diff --git a/kolf/Makefile.am.fast b/kolf/Makefile.am.fast index 2d39a25e..6085f2d8 100644 --- a/kolf/Makefile.am.fast +++ b/kolf/Makefile.am.fast @@ -1,10 +1,10 @@ SUBDIRS=objects sounds courses pics graphics bin_PROGRAMS=kolf -INCLUDES=-I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES=-I$(top_srcdir)/libtdegames $(all_includes) kolf_SOURCES=main.cpp kolf.cpp game.cpp canvasitem.cpp ball.cpp newgame.cpp config.cpp scoreboard.cpp editor.cpp pluginloader.cpp object.cpp vector.cpp printdialogpage.cpp kcomboboxdialog.cpp kvolumecontrol.cpp floater.cpp slope.cpp kolf_LDFLAGS=$(all_libraries) $(KDE_RPATH) -export-dynamic -kolf_LDADD=$(top_builddir)/libkdegames/libkdegames.la $(LIB_KDEPRINT) $(LIB_KIO) -lartskde +kolf_LDADD=$(top_builddir)/libtdegames/libtdegames.la $(LIB_KDEPRINT) $(LIB_KIO) -lartskde EXTRA_DIST=kolf.desktop diff --git a/kolf/main.cpp b/kolf/main.cpp index 079178ee..137121c4 100644 --- a/kolf/main.cpp +++ b/kolf/main.cpp @@ -72,7 +72,7 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv) TQApplication::setColorSpec(TQApplication::ManyColor); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); Kolf *top = new Kolf; diff --git a/konquest/Konquest.cc b/konquest/Konquest.cc index da6275c4..cea227fe 100644 --- a/konquest/Konquest.cc +++ b/konquest/Konquest.cc @@ -20,7 +20,7 @@ main(int argc, char **argv) KApplication a; TQApplication::setGlobalMouseTracking( true ); - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if (a.isRestored()) RESTORE(MainWindow) diff --git a/konquest/Makefile.am b/konquest/Makefile.am index 2eb595e8..0ccd2302 100644 --- a/konquest/Makefile.am +++ b/konquest/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = pics -INCLUDES= -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES= -I$(top_srcdir)/libtdegames $(all_includes) KDE_ICON = konquest bin_PROGRAMS = konquest diff --git a/kpat/Makefile.am b/kpat/Makefile.am index 0b193859..43692e30 100644 --- a/kpat/Makefile.am +++ b/kpat/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) bin_PROGRAMS = kpat diff --git a/kpat/main.cpp b/kpat/main.cpp index 58ad8652..fcc213a8 100644 --- a/kpat/main.cpp +++ b/kpat/main.cpp @@ -58,7 +58,7 @@ int main( int argc, char **argv ) KCmdLineArgs* args = KCmdLineArgs::parsedArgs(); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if (a.isRestored()) RESTORE(pWidget) diff --git a/kpoker/Makefile.am b/kpoker/Makefile.am index fd2041f9..9579f903 100644 --- a/kpoker/Makefile.am +++ b/kpoker/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = sounds -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) METASOURCES = AUTO KDE_ICON = kpoker diff --git a/kpoker/main.cpp b/kpoker/main.cpp index b4a27509..c8f2d1b5 100644 --- a/kpoker/main.cpp +++ b/kpoker/main.cpp @@ -41,7 +41,7 @@ int main( int argc, char *argv[] ) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication myApp; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if (myApp.isRestored()) RESTORE(PokerWindow) diff --git a/kreversi/ChangeLog b/kreversi/ChangeLog index ad743814..086e05bb 100644 --- a/kreversi/ChangeLog +++ b/kreversi/ChangeLog @@ -436,13 +436,13 @@ * main.cpp * Position.h, Position.cpp - Step 2 in the plan to use KGame from libkdegames: + Step 2 in the plan to use KGame from libtdegames: * Code cleaning: Add some comments, reduce complexity, improve indentation * Add m_to_move to class Position. - Step 1 in the plan to use KGame from libkdegames: + Step 1 in the plan to use KGame from libtdegames: * Code cleaning: Change "enum Player" into "enum Color", since that is really what it describes. diff --git a/kreversi/Makefile.am b/kreversi/Makefile.am index 36066f88..3124c5f2 100644 --- a/kreversi/Makefile.am +++ b/kreversi/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) bin_PROGRAMS = kreversi @@ -65,7 +65,7 @@ install-data-local: echo "" ;\ echo "If the system-wide highscore file does not exist, it is" ;\ echo "created with the correct ownership and permissions. See the" ;\ - echo "INSTALL file in \"kdegames/libkdegames/highscore\" for details." ;\ + echo "INSTALL file in \"kdegames/libtdegames/highscore\" for details." ;\ echo "" ;\ echo "********************************************************" ;\ fi diff --git a/kreversi/main.cpp b/kreversi/main.cpp index 345e97da..90e11eae 100644 --- a/kreversi/main.cpp +++ b/kreversi/main.cpp @@ -67,7 +67,7 @@ int main(int argc, char **argv) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); // used for loading background pixmaps KImageIO::registerFormats(); diff --git a/ksame/Makefile.am b/ksame/Makefile.am index 6b81376d..95acdfb7 100644 --- a/ksame/Makefile.am +++ b/ksame/Makefile.am @@ -1,6 +1,6 @@ bin_PROGRAMS = ksame -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) ksame_SOURCES= main.cpp StoneField.cpp StoneWidget.cpp KSameWidget.cpp ksame_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor diff --git a/ksame/main.cpp b/ksame/main.cpp index 30423f16..91e87e75 100644 --- a/ksame/main.cpp +++ b/ksame/main.cpp @@ -41,7 +41,7 @@ int main( int argc, char **argv ) { KApplication::setColorSpec(TQApplication::ManyColor+TQApplication::CustomColor); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); KSameWidget *w = new KSameWidget; if (kapp->isRestored()) { diff --git a/kshisen/Makefile.am b/kshisen/Makefile.am index 0badeae5..a3b4eaa7 100644 --- a/kshisen/Makefile.am +++ b/kshisen/Makefile.am @@ -1,6 +1,6 @@ -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) PICDIR = $(kde_datadir)/kshisen/pics diff --git a/kshisen/main.cpp b/kshisen/main.cpp index 161cffec..4efd9747 100644 --- a/kshisen/main.cpp +++ b/kshisen/main.cpp @@ -63,7 +63,7 @@ int main(int argc, char **argv) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); App *app = new App(); app->show(); diff --git a/ksirtet/CHANGELOG b/ksirtet/CHANGELOG index 925a24d9..c69b2178 100644 --- a/ksirtet/CHANGELOG +++ b/ksirtet/CHANGELOG @@ -277,7 +277,7 @@ * "kexample 0.31" compliance 0.2.3 - * adapted for libkdecore 0.7 + * adapted for libtdecore 0.7 * hide/show menubar + popup menu (ala kvt) * more compliant to the Style Guide diff --git a/ksirtet/ksirtet/Makefile.am b/ksirtet/ksirtet/Makefile.am index bf32b764..fc33b60d 100644 --- a/ksirtet/ksirtet/Makefile.am +++ b/ksirtet/ksirtet/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_builddir)/libksirtet -I$(top_srcdir)/libksirtet -I$(top_srcdir)/libksirtet/base -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_builddir)/libksirtet -I$(top_srcdir)/libksirtet -I$(top_srcdir)/libksirtet/base -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) KDE_CXXFLAGS = $(KDE_USE_FPIE) @@ -42,7 +42,7 @@ install-data-local: && echo "" \ && echo "If the system-wide highscore file does not exist, it is" \ && echo "created with the correct ownership and permissions. See the" \ - && echo "INSTALL file in \"kdegames/libkdegames/highscore\" for details." \ + && echo "INSTALL file in \"kdegames/libtdegames/highscore\" for details." \ && echo "" \ && echo "********************************************************" \ ) || true diff --git a/ksmiletris/Makefile.am b/ksmiletris/Makefile.am index ebce1ee2..5d6a17be 100644 --- a/ksmiletris/Makefile.am +++ b/ksmiletris/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS= data wav -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) METASOURCES = AUTO bin_PROGRAMS = ksmiletris diff --git a/ksmiletris/main.cpp b/ksmiletris/main.cpp index ebb51ee2..f7fcd212 100644 --- a/ksmiletris/main.cpp +++ b/ksmiletris/main.cpp @@ -44,7 +44,7 @@ int main(int argc, char **argv) KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); GameWindow *w = new GameWindow; app.setMainWidget(w); diff --git a/ksnake/Makefile.am b/ksnake/Makefile.am index 12e66678..ee14c965 100644 --- a/ksnake/Makefile.am +++ b/ksnake/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore/ $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore/ $(all_includes) noinst_HEADERS = game.h rattler.h board.h bitmaps.h \ level.h ball.h snake.h basket.h startroom.h \ diff --git a/ksnake/main.cpp b/ksnake/main.cpp index 0ff21c66..abdafd73 100644 --- a/ksnake/main.cpp +++ b/ksnake/main.cpp @@ -44,7 +44,7 @@ int main( int argc, char **argv ) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); Game *ksnake = new Game(); app.setMainWidget( ksnake ); diff --git a/kspaceduel/Makefile.am b/kspaceduel/Makefile.am index bdf8c44d..b1fedca3 100644 --- a/kspaceduel/Makefile.am +++ b/kspaceduel/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES= -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES= -I$(top_srcdir)/libtdegames $(all_includes) SUBDIRS = sprites pics diff --git a/ktron/Makefile.am b/ktron/Makefile.am index 6959bc3f..967d2913 100644 --- a/ktron/Makefile.am +++ b/ktron/Makefile.am @@ -1,7 +1,7 @@ SUBDIRS=pics bin_PROGRAMS = ktron -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) ktron_SOURCES = ai.ui appearance.ui general.ui tron.cpp player.cpp ktron.cpp main.cpp settings.kcfgc ktron_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) $(LIB_KIO) diff --git a/ktron/main.cpp b/ktron/main.cpp index 17be8fe1..2ccd65ef 100644 --- a/ktron/main.cpp +++ b/ktron/main.cpp @@ -41,7 +41,7 @@ int main(int argc, char* argv[]) KCmdLineArgs::init( argc, argv, &aboutData ); KApplication a; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); // used for loading background pixmaps KImageIO::registerFormats(); diff --git a/ktuberling/Makefile.am b/ktuberling/Makefile.am index 64bedd78..aa203f35 100644 --- a/ktuberling/Makefile.am +++ b/ktuberling/Makefile.am @@ -11,7 +11,7 @@ # kde_toolbardir Where general toolbar icons should go to. # kde_wallpaperdir Where general wallpapers should go to. -INCLUDES= -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES= -I$(top_srcdir)/libtdegames $(all_includes) SUBDIRS = . museum sounds pics bin_PROGRAMS = ktuberling diff --git a/ktuberling/main.cpp b/ktuberling/main.cpp index 5e508e66..2b44867a 100644 --- a/ktuberling/main.cpp +++ b/ktuberling/main.cpp @@ -40,7 +40,7 @@ int main(int argc, char *argv[]) KCmdLineArgs::addCmdLineOptions(options); KApplication app; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); KImageIO::registerFormats(); TopLevel *toplevel=0; diff --git a/kwin4/kwin4/Makefile.am b/kwin4/kwin4/Makefile.am index eea0d124..fc2a9b01 100644 --- a/kwin4/kwin4/Makefile.am +++ b/kwin4/kwin4/Makefile.am @@ -11,7 +11,7 @@ kwin4proc_SOURCES = kwin4proc.cpp kwin4proc_LDADD = $(LIB_KFILE) $(LIB_KDEGAMES) kwin4proc_DEPENDENCIES = $(LIB_KDEGAMES_DEP) -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/kgame $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/kgame $(all_includes) METASOURCES = AUTO diff --git a/kwin4/kwin4/kwin4.cpp b/kwin4/kwin4/kwin4.cpp index dc4e85c0..98bfdb3d 100644 --- a/kwin4/kwin4/kwin4.cpp +++ b/kwin4/kwin4/kwin4.cpp @@ -61,7 +61,7 @@ /** * Constructor for the chat widget. This widget - * is derived from the libkdegames chat widget + * is derived from the libtdegames chat widget */ ChatDlg::ChatDlg(KGame *game,TQWidget *parent) : KDialogBase(Plain,i18n("Chat Dlg"),Ok,Ok,parent,0,false,true),mChat(0), mChatDlg(0) diff --git a/kwin4/kwin4/main.cpp b/kwin4/kwin4/main.cpp index acf2f551..32d2073d 100644 --- a/kwin4/kwin4/main.cpp +++ b/kwin4/kwin4/main.cpp @@ -57,7 +57,7 @@ int main(int argc, char *argv[]) } args->clear(); KApplication app(argc, argv); - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); if (app.isRestored()) { diff --git a/libkdegames/Makefile.am b/libkdegames/Makefile.am index 89477c44..aedac6ae 100644 --- a/libkdegames/Makefile.am +++ b/libkdegames/Makefile.am @@ -1,10 +1,10 @@ -lib_LTLIBRARIES = libkdegames.la -libkdegames_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) -no-undefined -version-info 3:0:2 -libkdegames_la_LIBADD = highscore/libkhighscore.la kgame/libkgame.la kgame/dialogs/libkgamedialogs.la \ +lib_LTLIBRARIES = libtdegames.la +libtdegames_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) -no-undefined -version-info 3:0:2 +libtdegames_la_LIBADD = highscore/libkhighscore.la kgame/libkgame.la kgame/dialogs/libkgamedialogs.la \ $(LIB_KSYCOCA) $(LIB_KDNSSD) -libkdegames_la_SOURCES = kcarddialog.cpp kstdgameaction.cpp \ +libtdegames_la_SOURCES = kcarddialog.cpp kstdgameaction.cpp \ kgamemisc.cpp kchatbase.cpp kchat.cpp \ kchatdialog.cpp kgameprogress.cpp \ kcanvasrootpixmap.cpp kgamelcd.cpp @@ -18,6 +18,6 @@ METASOURCES = AUTO SUBDIRS = carddecks highscore kgame pics messages: - $(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libkdegames.pot + $(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libtdegames.pot include ../admin/Doxyfile.am diff --git a/libkdegames/README b/libkdegames/README index fae0e7ee..ee7e8eb0 100644 --- a/libkdegames/README +++ b/libkdegames/README @@ -3,7 +3,7 @@ It is a collection of functions used by some games or which are useful for other games. Packagers note: it is recommended to put the directory "carddecks" into a separate -package, as not all games using libkdegames use the carddecks as well. +package, as not all games using libtdegames use the carddecks as well. Contents: kcarddialog: Access to carddeck selection and administration @@ -18,8 +18,8 @@ Contents: kgame: this is a complete network/game handling library. it constists of a lot of classes which are explained in the kgame docu (as soon as it is written) -if you use libkdegames in your game please also add -KGlobal::locale()->insertCatalogue("libkdegames"); +if you use libtdegames in your game please also add +KGlobal::locale()->insertCatalogue("libtdegames"); to main() -This will add libkdegames.pot to your game and therefore all libkdegames +This will add libtdegames.pot to your game and therefore all libtdegames strings get translated. diff --git a/libkdegames/carddecks/README b/libkdegames/carddecks/README index 9beb8a87..bfac9f0d 100644 --- a/libkdegames/carddecks/README +++ b/libkdegames/carddecks/README @@ -8,5 +8,5 @@ cards1,cards2,cards3,... where each directory contains 52 PNG images of the cards labels 1.png,2.png,...52.png Access to these cards works by using the kcardialog library -in libkdegames. See for documentation there. +in libtdegames. See for documentation there. diff --git a/libkdegames/highscore/INSTALL b/libkdegames/highscore/INSTALL index a16fa57d..5f9116cf 100644 --- a/libkdegames/highscore/INSTALL +++ b/libkdegames/highscore/INSTALL @@ -1,5 +1,5 @@ Installation notes for the highscore files ; this is only relevant if you -configured libkdegames with option --enable-highscore-dir=DIR (usually DIR is +configured libtdegames with option --enable-highscore-dir=DIR (usually DIR is /var/games) for using system-wide highscore files. For each game using the highscore system : diff --git a/libkdegames/kcarddialog.cpp b/libkdegames/kcarddialog.cpp index 9317c2a7..fc73de22 100644 --- a/libkdegames/kcarddialog.cpp +++ b/libkdegames/kcarddialog.cpp @@ -801,7 +801,7 @@ void KCardDialog::init() return; KGlobal::dirs()->addResourceType("cards", KStandardDirs::kde_default("data") + TQString::tqfromLatin1("carddecks/")); - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); _inited = true; } diff --git a/libkdegames/kgame/Makefile.am b/libkdegames/kgame/Makefile.am index e0117780..f49bc653 100644 --- a/libkdegames/kgame/Makefile.am +++ b/libkdegames/kgame/Makefile.am @@ -19,11 +19,11 @@ libkgame_la_SOURCES = $(KMESSAGE) $(KGAME) libkgameinclude_HEADERS = $(KMESSAGE_H) $(KGAME_H) -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) METASOURCES = AUTO SUBDIRS = . dialogs messages: -# $(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libkdegames.pot +# $(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libtdegames.pot diff --git a/libkdegames/kgame/dialogs/Makefile.am b/libkdegames/kgame/dialogs/Makefile.am index 1b9de53c..f3c1adbe 100644 --- a/libkdegames/kgame/dialogs/Makefile.am +++ b/libkdegames/kgame/dialogs/Makefile.am @@ -9,9 +9,9 @@ libkgamedialogs_la_SOURCES = kgamedialog.cpp kgameconnectdialog.cpp kgameerrordi libkgamedialogsincludedir=$(includedir)/kgame libkgamedialogsinclude_HEADERS = kgamedialog.h kgameconnectdialog.h kgameerrordialog.h kgamedebugdialog.h kgamedialogconfig.h -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/kgame $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/kgame $(all_includes) METASOURCES = AUTO messages: -# $(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libkdegames.pot +# $(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libtdegames.pot diff --git a/libkdegames/kgame/libkdegames.html b/libkdegames/kgame/libkdegames.html index 66206c47..8f189e60 100644 --- a/libkdegames/kgame/libkdegames.html +++ b/libkdegames/kgame/libkdegames.html @@ -1,11 +1,11 @@ - Documentation for libkdegames + Documentation for libtdegames -

Documentation for the classes in libkdegames

+

Documentation for the classes in libtdegames

Design Principles

The library kdegames contains a collection of classes that can be used diff --git a/libkdegames/kgame/messages.txt b/libkdegames/kgame/messages.txt index a2b58880..c42d2d91 100644 --- a/libkdegames/kgame/messages.txt +++ b/libkdegames/kgame/messages.txt @@ -1,4 +1,4 @@ -Message formats of libkdegames: +Message formats of libtdegames: ------------------------------- There are two different communication layers, using their own protocols: diff --git a/libksirtet/base/Makefile.am b/libksirtet/base/Makefile.am index bb8b2365..b7f2877b 100644 --- a/libksirtet/base/Makefile.am +++ b/libksirtet/base/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_srcdir)/libkdegames -I$(top_srcdir)/libkdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) # Don't compile with hidden symbols since we are a library. if disable_VISIBILITY diff --git a/libksirtet/base/factory.cpp b/libksirtet/base/factory.cpp index cb2f484b..b728dd25 100644 --- a/libksirtet/base/factory.cpp +++ b/libksirtet/base/factory.cpp @@ -29,7 +29,7 @@ void BaseFactory::init(int argc, char **argv) { KCmdLineArgs::init(argc, argv, _aboutData); (void)new KApplication; - KGlobal::locale()->insertCatalogue("libkdegames"); + KGlobal::locale()->insertCatalogue("libtdegames"); KGlobal::locale()->insertCatalogue("libksirtet"); } diff --git a/libksirtet/common/Makefile.am b/libksirtet/common/Makefile.am index 1c11265d..3453ec2c 100644 --- a/libksirtet/common/Makefile.am +++ b/libksirtet/common/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_builddir)/libksirtet -I$(top_srcdir)/libksirtet -I$(srcdir)/../base -I$(top_srcdir)/libkdegames/highscore -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_builddir)/libksirtet -I$(top_srcdir)/libksirtet -I$(srcdir)/../base -I$(top_srcdir)/libtdegames/highscore -I$(top_srcdir)/libtdegames $(all_includes) # Don't compile with hidden symbols since we are a library. if disable_VISIBILITY diff --git a/lskat/lskat/Makefile.am b/lskat/lskat/Makefile.am index 39006147..dbefbeba 100644 --- a/lskat/lskat/Makefile.am +++ b/lskat/lskat/Makefile.am @@ -6,7 +6,7 @@ lskat_SOURCES = msgdlg.cpp networkdlg.cpp namedlg.cpp KRemoteConnect.cpp KRSocke lskat_LDADD = $(LIB_KFILE) $(LIB_KDEGAMES) $(LIB_KDNSSD) lskat_DEPENDENCIES = $(LIB_KDEGAMES_DEP) -INCLUDES = -I$(top_srcdir)/libkdegames $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) METASOURCES = AUTO