From b4e545384b42deff2db00ff815c4cacbeb5d1860 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 02:32:07 -0600 Subject: Additional kde to tde renaming --- languages/cpp/app_templates/kconfig35/README | 2 +- .../cpp/app_templates/kde4app/kde4app.kdevelop | 2 +- languages/cpp/app_templates/kmake/src.pro | 2 +- .../cpp/app_templates/kofficepart/src-Makefile.am | 2 +- languages/cpp/app_templates/kscons_kmdi/README | 2 +- .../cpp/app_templates/kscons_kmdi/SConscript-src | 4 +-- languages/cpp/app_templates/kscons_kxt/README | 2 +- .../cpp/app_templates/kscons_kxt/SConscript-src | 2 +- languages/cpp/app_templates/kxt/README | 2 +- languages/cpp/doc/kde2book.toc | 42 +++++++++++----------- languages/cpp/includepathresolver.cpp | 2 +- .../kdelibsimporter/kdevkdelibsimporter.cpp | 4 +-- 12 files changed, 34 insertions(+), 34 deletions(-) (limited to 'languages/cpp') 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 : .kcfg and a .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 @@ false - false + false true %{dest} 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 : .kcfg and a .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 : .kcfg and a .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 : .kcfg and a .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/doc/kde2book.toc b/languages/cpp/doc/kde2book.toc index f779695e..72e55d3c 100644 --- a/languages/cpp/doc/kde2book.toc +++ b/languages/cpp/doc/kde2book.toc @@ -87,8 +87,8 @@ - - + + @@ -754,9 +754,9 @@ - - - + + + @@ -1127,7 +1127,7 @@ - + @@ -1312,8 +1312,8 @@ - - + + @@ -1337,14 +1337,14 @@ - - + + - - - + + + @@ -1610,9 +1610,9 @@ - - - + + + @@ -1653,7 +1653,7 @@ - + @@ -1822,7 +1822,7 @@ - + @@ -2121,13 +2121,13 @@ - + - + @@ -2827,7 +2827,7 @@ - + diff --git a/languages/cpp/includepathresolver.cpp b/languages/cpp/includepathresolver.cpp index 1da45d76..39cceae0 100644 --- a/languages/cpp/includepathresolver.cpp +++ b/languages/cpp/includepathresolver.cpp @@ -550,7 +550,7 @@ void IncludePathResolver::setOutOfSourceBuildSystem( const TQString& source, con #ifdef TEST /** This can be used for testing and debugging the system. To compile it use - * gcc includepathresolver.cpp -I /usr/share/qt3/include -I /usr/include/kde -I ../../lib/util -DTEST -lkdecore -g -o includepathresolver + * gcc includepathresolver.cpp -I /usr/share/qt3/include -I /usr/include/kde -I ../../lib/util -DTEST -ltdecore -g -o includepathresolver * */ int main(int argc, char **argv) { diff --git a/languages/cpp/pcsimporter/kdelibsimporter/kdevkdelibsimporter.cpp b/languages/cpp/pcsimporter/kdelibsimporter/kdevkdelibsimporter.cpp index f85b4ded..4a853d77 100644 --- a/languages/cpp/pcsimporter/kdelibsimporter/kdevkdelibsimporter.cpp +++ b/languages/cpp/pcsimporter/kdelibsimporter/kdevkdelibsimporter.cpp @@ -58,8 +58,8 @@ TQStringList KDevKDELibsImporter::fileList() files += fileList( m_settings->kdeDir() + "/dcopc" ); files += fileList( m_settings->kdeDir() + "/dom" ); files += fileList( m_settings->kdeDir() + "/kabc" ); - files += fileList( m_settings->kdeDir() + "/kdeprint" ); - files += fileList( m_settings->kdeDir() + "/kdesu" ); + files += fileList( m_settings->kdeDir() + "/tdeprint" ); + files += fileList( m_settings->kdeDir() + "/tdesu" ); files += fileList( m_settings->kdeDir() + "/kio" ); files += fileList( m_settings->kdeDir() + "/kjs" ); files += fileList( m_settings->kdeDir() + "/kparts" ); -- cgit v1.2.1