diff options
Diffstat (limited to 'languages/cpp/app_templates')
-rw-r--r-- | languages/cpp/app_templates/kconfig35/README | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kde4app/kde4app.kdevelop | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kmake/src.pro | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kofficepart/src-Makefile.am | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kscons_kmdi/README | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kscons_kmdi/SConscript-src | 4 | ||||
-rw-r--r-- | languages/cpp/app_templates/kscons_kxt/README | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kscons_kxt/SConscript-src | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kxt/README | 2 |
9 files changed, 10 insertions, 10 deletions
diff --git a/languages/cpp/app_templates/kconfig35/README b/languages/cpp/app_templates/kconfig35/README index 527ce518..6817ca20 100644 --- a/languages/cpp/app_templates/kconfig35/README +++ b/languages/cpp/app_templates/kconfig35/README @@ -54,7 +54,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0) into #MIN_CONFIG(3.2.0) -Take an example on the many apps found in the kdegames source package and consult : +Take an example on the many apps found in the tdegames source package and consult : http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html * With KParts, you can embed other kde components in your program, or make your program diff --git a/languages/cpp/app_templates/kde4app/kde4app.kdevelop b/languages/cpp/app_templates/kde4app/kde4app.kdevelop index d36a9536..9ae6fd6b 100644 --- a/languages/cpp/app_templates/kde4app/kde4app.kdevelop +++ b/languages/cpp/app_templates/kde4app/kde4app.kdevelop @@ -126,7 +126,7 @@ <envvar value="" name="QT_PLUGIN_PATH" /> </envvars> <autoinstall>false</autoinstall> - <autokdesu>false</autokdesu> + <autotdesu>false</autotdesu> <globaldebugarguments/> <useglobalprogram>true</useglobalprogram> <globalcwd>%{dest}</globalcwd> diff --git a/languages/cpp/app_templates/kmake/src.pro b/languages/cpp/app_templates/kmake/src.pro index a27a6b13..950d6a91 100644 --- a/languages/cpp/app_templates/kmake/src.pro +++ b/languages/cpp/app_templates/kmake/src.pro @@ -21,7 +21,7 @@ target.path = $$KDEBIN FORMS += mainview.ui HEADERS += mainviewimp.h SOURCES += %{APPNAMELC}.cpp mainviewimp.cpp -LIBS += -lkdeui -lkdecore +LIBS += -ltdeui -ltdecore INCLUDEPATH = $$KDEINCLUDE QMAKE_LIBDIR = $$KDELIB TARGET = %{APPNAMELC} diff --git a/languages/cpp/app_templates/kofficepart/src-Makefile.am b/languages/cpp/app_templates/kofficepart/src-Makefile.am index 19d38267..aad464bb 100644 --- a/languages/cpp/app_templates/kofficepart/src-Makefile.am +++ b/languages/cpp/app_templates/kofficepart/src-Makefile.am @@ -8,7 +8,7 @@ lib%{APPNAMELC}part_la_SOURCES = %{APPNAMELC}_part.cpp \ lib%{APPNAMELC}part_la_LDFLAGS = $(KDE_PLUGIN) lib%{APPNAMELC}part_la_LIBADD = -lkofficeui -## The kdeinit loadable module +## The tdeinit loadable module lib_LTLIBRARIES = %{APPNAMELC}.la %{APPNAMELC}_la_SOURCES = %{APPNAMELC}.cpp %{APPNAMELC}_la_LDFLAGS = -module -avoid-version -no-undefined $(all_libraries) diff --git a/languages/cpp/app_templates/kscons_kmdi/README b/languages/cpp/app_templates/kscons_kmdi/README index 28c9af22..351a39ac 100644 --- a/languages/cpp/app_templates/kscons_kmdi/README +++ b/languages/cpp/app_templates/kscons_kmdi/README @@ -75,7 +75,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0) into #MIN_CONFIG(3.2.0) -Take an example on the many apps found in the kdegames source package and consult : +Take an example on the many apps found in the tdegames source package and consult : http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html * With KParts, you can embed other kde components in your program, or make your program diff --git a/languages/cpp/app_templates/kscons_kmdi/SConscript-src b/languages/cpp/app_templates/kscons_kmdi/SConscript-src index 9850e2ae..8c6423b6 100644 --- a/languages/cpp/app_templates/kscons_kmdi/SConscript-src +++ b/languages/cpp/app_templates/kscons_kmdi/SConscript-src @@ -22,7 +22,7 @@ prefs.ui # Now that we have our list of sources we can build the program myenv.KDEprogram( '%{APPNAMELC}', %{APPNAMELC}_sources ) # main program myenv.KDEaddpaths_includes( './ ../' ) # additional paths -myenv.KDEaddlibs( 'qt-mt kdecore kio kparts kmdi' ) # additional libraries +myenv.KDEaddlibs( 'qt-mt tdecore kio kparts kmdi' ) # additional libraries ## Next, the kpart library ## using KDEshlib, the .so and .la are installed automatically when needed @@ -31,7 +31,7 @@ myenv2=env.Copy() %{APPNAMELC}part_sources = '%{APPNAMELC}_part.cpp' myenv2.KDEshlib( 'lib%{APPNAMELC}part', %{APPNAMELC}part_sources) myenv2.KDEaddpaths_includes( './ #/' ) # the '#' means the top-level directory -myenv2.KDEaddlibs( 'qt-mt kio kdecore kdeprint kparts' ) +myenv2.KDEaddlibs( 'qt-mt kio tdecore tdeprint kparts' ) # myenv2.KDEaddflags_link( '-DQT_THREAD_SUPPORT' ) ############################# diff --git a/languages/cpp/app_templates/kscons_kxt/README b/languages/cpp/app_templates/kscons_kxt/README index 28c9af22..351a39ac 100644 --- a/languages/cpp/app_templates/kscons_kxt/README +++ b/languages/cpp/app_templates/kscons_kxt/README @@ -75,7 +75,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0) into #MIN_CONFIG(3.2.0) -Take an example on the many apps found in the kdegames source package and consult : +Take an example on the many apps found in the tdegames source package and consult : http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html * With KParts, you can embed other kde components in your program, or make your program diff --git a/languages/cpp/app_templates/kscons_kxt/SConscript-src b/languages/cpp/app_templates/kscons_kxt/SConscript-src index bc91cc0b..17b45ad3 100644 --- a/languages/cpp/app_templates/kscons_kxt/SConscript-src +++ b/languages/cpp/app_templates/kscons_kxt/SConscript-src @@ -37,7 +37,7 @@ myenv.KDEprogram( "%{APPNAMELC}", %{APPNAMELC}_sources ) myenv.KDEaddpaths_includes( "./ ../" ) ## Necessary libraries to link against -myenv.KDEaddlibs( "qt-mt kio kdecore kdeprint" ) +myenv.KDEaddlibs( "qt-mt kio tdecore tdeprint" ) ## This shows how to add other link flags to the program # myenv.KDEaddflags_link('-export-dynamic') diff --git a/languages/cpp/app_templates/kxt/README b/languages/cpp/app_templates/kxt/README index 74e23296..9ff2c54d 100644 --- a/languages/cpp/app_templates/kxt/README +++ b/languages/cpp/app_templates/kxt/README @@ -50,7 +50,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0) into #MIN_CONFIG(3.2.0) -Take an example on the many apps found in the kdegames source package and consult : +Take an example on the many apps found in the tdegames source package and consult : http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html * With KParts, you can embed other kde components in your program, or make your program |