summaryrefslogtreecommitdiffstats
path: root/kwin/killer
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-07 20:26:07 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-07 20:26:07 -0600
commit43d99cc2477266cb9072e179137f0e8485370b3d (patch)
tree0d4d47e5497a1a1465edf8263f57b72725577239 /kwin/killer
parent6354e6b3babad3ed0f5e314735bbbc01d1988eb2 (diff)
downloadtdebase-43d99cc2477266cb9072e179137f0e8485370b3d.tar.gz
tdebase-43d99cc2477266cb9072e179137f0e8485370b3d.zip
Rename kwin to twin (part 1 of 2)
Diffstat (limited to 'kwin/killer')
-rw-r--r--kwin/killer/CMakeLists.txt4
-rw-r--r--kwin/killer/Makefile.am8
-rw-r--r--kwin/killer/killer.cpp6
3 files changed, 9 insertions, 9 deletions
diff --git a/kwin/killer/CMakeLists.txt b/kwin/killer/CMakeLists.txt
index 4fd991d40..5a7b36918 100644
--- a/kwin/killer/CMakeLists.txt
+++ b/kwin/killer/CMakeLists.txt
@@ -19,9 +19,9 @@ link_directories(
)
-##### kwin_killer_helper (executable) ###########
+##### twin_killer_helper (executable) ###########
-tde_add_executable( kwin_killer_helper
+tde_add_executable( twin_killer_helper
SOURCES killer.cpp
LINK tdeui-shared
DESTINATION ${BIN_INSTALL_DIR}
diff --git a/kwin/killer/Makefile.am b/kwin/killer/Makefile.am
index b55ee7b8c..cd396bde7 100644
--- a/kwin/killer/Makefile.am
+++ b/kwin/killer/Makefile.am
@@ -1,9 +1,9 @@
INCLUDES = $(all_includes)
-bin_PROGRAMS = kwin_killer_helper
+bin_PROGRAMS = twin_killer_helper
-kwin_killer_helper_SOURCES = killer.cpp
-kwin_killer_helper_LDADD = $(LIB_TDEUI)
-kwin_killer_helper_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
+twin_killer_helper_SOURCES = killer.cpp
+twin_killer_helper_LDADD = $(LIB_TDEUI)
+twin_killer_helper_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
METASOURCES = AUTO
diff --git a/kwin/killer/killer.cpp b/kwin/killer/killer.cpp
index d348e48ff..716b829cc 100644
--- a/kwin/killer/killer.cpp
+++ b/kwin/killer/killer.cpp
@@ -28,7 +28,7 @@ DEALINGS IN THE SOFTWARE.
#include <kprocess.h>
#include <klocale.h>
#include <unistd.h>
-#include <kwin.h>
+#include <twin.h>
#include <X11/Xlib.h>
static const KCmdLineOptions options[] =
@@ -45,8 +45,8 @@ static const KCmdLineOptions options[] =
int main( int argc, char* argv[] )
{
- KLocale::setMainCatalogue( "kwin" ); // the messages are in kwin's .po file
- KCmdLineArgs::init( argc, argv, "kwin_killer_helper", I18N_NOOP( "KWin" ),
+ KLocale::setMainCatalogue( "twin" ); // the messages are in twin's .po file
+ KCmdLineArgs::init( argc, argv, "twin_killer_helper", I18N_NOOP( "KWin" ),
I18N_NOOP( "KWin helper utility" ), "1.0" );
KCmdLineArgs::addCmdLineOptions( options );
KApplication app;