From de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 27 Jan 2013 01:02:02 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- konsole/CMakeLists.txt | 4 ++-- konsole/Makefile.am | 2 +- konsole/konsole/CMakeLists.txt | 2 +- konsole/konsole/TEWidget.cpp | 2 +- konsole/konsole/konsole.cpp | 34 +++++++++++++++--------------- konsole/konsole/konsole.h | 2 +- konsole/konsole/konsole_part.cpp | 10 ++++----- konsole/konsole/konsole_part.h | 2 +- konsole/konsole/konsolebookmarkhandler.cpp | 8 +++---- konsole/konsole/konsolebookmarkhandler.h | 2 +- konsole/konsole/main.cpp | 2 +- konsole/konsole/schema.cpp | 2 +- 12 files changed, 36 insertions(+), 36 deletions(-) (limited to 'konsole') diff --git a/konsole/CMakeLists.txt b/konsole/CMakeLists.txt index 6f0900d3c..65f2e1715 100644 --- a/konsole/CMakeLists.txt +++ b/konsole/CMakeLists.txt @@ -34,12 +34,12 @@ install( FILES install( FILES konsole.upd - DESTINATION ${DATA_INSTALL_DIR}/kconf_update ) + DESTINATION ${DATA_INSTALL_DIR}/tdeconf_update ) install( PROGRAMS schemaStrip.pl - DESTINATION ${DATA_INSTALL_DIR}/kconf_update ) + DESTINATION ${DATA_INSTALL_DIR}/tdeconf_update ) install( FILES diff --git a/konsole/Makefile.am b/konsole/Makefile.am index 6abe0ad60..cb5fccb8e 100644 --- a/konsole/Makefile.am +++ b/konsole/Makefile.am @@ -7,7 +7,7 @@ kde_servicetypes_DATA = terminalemulator.desktop update_DATA = konsole.upd update_SCRIPTS = schemaStrip.pl -updatedir = $(kde_datadir)/kconf_update +updatedir = $(kde_datadir)/tdeconf_update servicesdir = $(kde_servicesdir)/kded services_DATA = kwrited.desktop diff --git a/konsole/konsole/CMakeLists.txt b/konsole/konsole/CMakeLists.txt index 4992cdc43..9473db291 100644 --- a/konsole/konsole/CMakeLists.txt +++ b/konsole/konsole/CMakeLists.txt @@ -74,5 +74,5 @@ set( ${target}_SRCS tde_add_tdeinit_executable( ${target} AUTOMOC SOURCES ${${target}_SRCS} - LINK tdeprint-shared kio-shared ${XRENDER_LIBRARIES} dl + LINK tdeprint-shared tdeio-shared ${XRENDER_LIBRARIES} dl ) diff --git a/konsole/konsole/TEWidget.cpp b/konsole/konsole/TEWidget.cpp index c00349022..32d9d9643 100644 --- a/konsole/konsole/TEWidget.cpp +++ b/konsole/konsole/TEWidget.cpp @@ -81,7 +81,7 @@ #include #include #include -#include +#include #include #include diff --git a/konsole/konsole/konsole.cpp b/konsole/konsole/konsole.cpp index 0e6265321..81449c514 100644 --- a/konsole/konsole/konsole.cpp +++ b/konsole/konsole/konsole.cpp @@ -94,7 +94,7 @@ Time to start a requirement list. #include #include -#include +#include #include #include @@ -138,7 +138,7 @@ Time to start a requirement list. #include #include #include -#include +#include #include "konsole.h" #include @@ -247,7 +247,7 @@ Konsole::Konsole(const char* name, int histon, bool menubaron, bool tabbaron, bo ,wallpaperSource(0) ,sessionIdCounter(0) ,monitorSilenceSeconds(10) -,s_kconfigSchema("") +,s_tdeconfigSchema("") ,m_tabViewMode(ShowIconAndText) ,b_dynamicTabHide(false) ,b_autoResizeTabs(false) @@ -1512,8 +1512,8 @@ void Konsole::saveProperties(TDEConfig* config) { } config->writeEntry("Fullscreen",b_fullscreen); config->writeEntry("defaultfont", (se->widget())->getVTFont()); - s_kconfigSchema = colors->find( se->schemaNo() )->relPath(); - config->writeEntry("schema",s_kconfigSchema); + s_tdeconfigSchema = colors->find( se->schemaNo() )->relPath(); + config->writeEntry("schema",s_tdeconfigSchema); config->writeEntry("scrollbar",n_scroll); config->writeEntry("tabbar",n_tabbar); config->writeEntry("bellmode",n_bell); @@ -1618,13 +1618,13 @@ void Konsole::readProperties(TDEConfig* config, const TQString &schema, bool glo defaultFont = config->readFontEntry("defaultfont", &tmpFont); //set the schema - s_kconfigSchema=config->readEntry("schema"); - ColorSchema* sch = colors->find(schema.isEmpty() ? s_kconfigSchema : schema); + s_tdeconfigSchema=config->readEntry("schema"); + ColorSchema* sch = colors->find(schema.isEmpty() ? s_tdeconfigSchema : schema); if (!sch) { sch = (ColorSchema*)colors->at(0); //the default one - kdWarning() << "Could not find schema named " <relPath()<relPath(); + kdWarning() << "Could not find schema named " <relPath()<relPath(); } if (sch->hasSchemaFileChanged()) sch->rereadSchemaFile(); s_schema = sch->relPath(); @@ -2073,7 +2073,7 @@ void Konsole::slotConfigure() { TQStringList args; args << "kcmkonsole"; - TDEApplication::tdeinitExec( "kcmshell", args ); + TDEApplication::tdeinitExec( "tdecmshell", args ); } void Konsole::reparseConfiguration() @@ -2125,13 +2125,13 @@ void Konsole::reparseConfiguration() m_shortcuts->readShortcutSettings(); // User may have changed Schema->Set as default schema - s_kconfigSchema = TDEGlobal::config()->readEntry("schema"); - ColorSchema* sch = colors->find(s_kconfigSchema); + s_tdeconfigSchema = TDEGlobal::config()->readEntry("schema"); + ColorSchema* sch = colors->find(s_tdeconfigSchema); if (!sch) { sch = (ColorSchema*)colors->at(0); //the default one - kdWarning() << "Could not find schema named " <relPath()<relPath(); + kdWarning() << "Could not find schema named " <relPath()<relPath(); } if (sch->hasSchemaFileChanged()) sch->rereadSchemaFile(); s_schema = sch->relPath(); @@ -2819,7 +2819,7 @@ TQString Konsole::newSession(KSimpleConfig *co, TQString program, const TQStrLis TQString emu = "xterm"; TQString icon = "konsole"; TQString key; - TQString sch = s_kconfigSchema; + TQString sch = s_tdeconfigSchema; TQString txt; TQString cwd; TQFont font = defaultFont; @@ -3572,7 +3572,7 @@ void Konsole::setSchema(int numb, TEWidget* tewidget) { s = (ColorSchema*)colors->at(0); kdWarning() << "No schema with serial #"<relPath()<<" (#"<numb()<<")." << endl; - s_kconfigSchema = s->relPath(); + s_tdeconfigSchema = s->relPath(); } if (s->hasSchemaFileChanged()) @@ -3589,7 +3589,7 @@ void Konsole::setSchema(const TQString & path) { s = (ColorSchema*)colors->at(0); //the default one kdWarning() << "No schema with the name " <relPath()<relPath(); + s_tdeconfigSchema = s->relPath(); } if (s->hasSchemaFileChanged()) { diff --git a/konsole/konsole/konsole.h b/konsole/konsole/konsole.h index f24f823ce..d64c30968 100644 --- a/konsole/konsole/konsole.h +++ b/konsole/konsole/konsole.h @@ -393,7 +393,7 @@ private: int monitorSilenceSeconds; TQString s_schema; - TQString s_kconfigSchema; + TQString s_tdeconfigSchema; TQString s_word_seps; // characters that are considered part of a word TQString pmPath; // pixmap path TQString dropText; diff --git a/konsole/konsole/konsole_part.cpp b/konsole/konsole/konsole_part.cpp index 6562ea0d9..c20982ba2 100644 --- a/konsole/konsole/konsole_part.cpp +++ b/konsole/konsole/konsole_part.cpp @@ -46,7 +46,7 @@ #include #include #include -#include +#include #include // We can't use the ARGB32 visual when embedded in another application @@ -574,8 +574,8 @@ void konsolePart::readProperties() TQString schema = config->readEntry("Schema"); - s_kconfigSchema=config->readEntry("schema"); - ColorSchema* sch = colors->find(schema.isEmpty() ? s_kconfigSchema : schema); + s_tdeconfigSchema=config->readEntry("schema"); + ColorSchema* sch = colors->find(schema.isEmpty() ? s_tdeconfigSchema : schema); if (!sch) { sch=(ColorSchema*)colors->at(0); //the default one } @@ -638,7 +638,7 @@ void konsolePart::saveProperties() config->writeEntry("keytab",n_keytab); config->writeEntry("has frame",b_framevis); config->writeEntry("LineSpacing", te->lineSpacing()); - config->writeEntry("schema",s_kconfigSchema); + config->writeEntry("schema",s_tdeconfigSchema); config->writeEntry("scrollbar",n_scroll); config->writeEntry("wordseps",s_word_seps); config->writeEntry("encoding",n_encoding); @@ -720,7 +720,7 @@ void konsolePart::keytab_menu_activated(int item) void konsolePart::schema_menu_activated(int item) { setSchema(item); - s_kconfigSchema = s_schema; // This is the new default + s_tdeconfigSchema = s_schema; // This is the new default } void konsolePart::schema_menu_check() diff --git a/konsole/konsole/konsole_part.h b/konsole/konsole/konsole_part.h index fc76b565b..a8dfde83a 100644 --- a/konsole/konsole/konsole_part.h +++ b/konsole/konsole/konsole_part.h @@ -170,7 +170,7 @@ signals: TQString pmPath; // pixmap path TQString s_schema; - TQString s_kconfigSchema; + TQString s_tdeconfigSchema; TQString s_word_seps; // characters that are considered part of a word bool b_framevis:1; diff --git a/konsole/konsole/konsolebookmarkhandler.cpp b/konsole/konsole/konsolebookmarkhandler.cpp index b5960727e..e348e440e 100644 --- a/konsole/konsole/konsolebookmarkhandler.cpp +++ b/konsole/konsole/konsolebookmarkhandler.cpp @@ -16,13 +16,13 @@ Boston, MA 02110-1301, USA. */ -// Born as tdelibs/kio/kfile/kfilebookmarkhandler.cpp +// Born as tdelibs/tdeio/tdefile/tdefilebookmarkhandler.cpp #include #include #include -#include -#include +#include +#include #include #include @@ -41,7 +41,7 @@ KonsoleBookmarkHandler::KonsoleBookmarkHandler( Konsole *konsole, bool toplevel // TODO: Consider removing for KDE4 TQString new_bm_file = locateLocal( "data", "konsole/bookmarks.xml" ); if ( !TQFile::exists( new_bm_file ) ) { - TQString old_bm_file = locateLocal( "data", "kfile/bookmarks.xml" ); + TQString old_bm_file = locateLocal( "data", "tdefile/bookmarks.xml" ); if ( TQFile::exists( old_bm_file ) ) // We want sync here... if ( !TDEIO::NetAccess::copy( KURL( old_bm_file ), diff --git a/konsole/konsole/konsolebookmarkhandler.h b/konsole/konsole/konsolebookmarkhandler.h index e8d2845bd..5f99dfb31 100644 --- a/konsole/konsole/konsolebookmarkhandler.h +++ b/konsole/konsole/konsolebookmarkhandler.h @@ -16,7 +16,7 @@ Boston, MA 02110-1301, USA. */ -// Born as tdelibs/kio/kfile/kfilebookmarkhandler.h +// Born as tdelibs/tdeio/tdefile/tdefilebookmarkhandler.h #ifndef KONSOLEBOOKMARKHANDLER_H #define KONSOLEBOOKMARKHANDLER_H diff --git a/konsole/konsole/main.cpp b/konsole/konsole/main.cpp index f3dba695a..9e12a340d 100644 --- a/konsole/konsole/main.cpp +++ b/konsole/konsole/main.cpp @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include diff --git a/konsole/konsole/schema.cpp b/konsole/konsole/schema.cpp index 2d3e3901f..638bc498f 100644 --- a/konsole/konsole/schema.cpp +++ b/konsole/konsole/schema.cpp @@ -57,7 +57,7 @@ #include #include #include -#include +#include #include -- cgit v1.2.3