summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kscons_kmdi
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/kscons_kmdi')
-rw-r--r--languages/cpp/app_templates/kscons_kmdi/README2
-rw-r--r--languages/cpp/app_templates/kscons_kmdi/SConscript-src4
2 files changed, 3 insertions, 3 deletions
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' )
#############################