diff options
Diffstat (limited to 'noatun')
-rw-r--r-- | noatun/Makefile.am | 2 | ||||
-rw-r--r-- | noatun/app/Makefile.am | 2 | ||||
-rw-r--r-- | noatun/library/engine.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/noatun/Makefile.am b/noatun/Makefile.am index 240c3225..3ab6112b 100644 --- a/noatun/Makefile.am +++ b/noatun/Makefile.am @@ -16,7 +16,7 @@ kconfdir = $(libdir)/kconf_update_bin kconf_PROGRAMS = noatun20update noatun20update_SOURCES = noatun20update.cpp -noatun20update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor +noatun20update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor noatun20update_LDADD = $(LIB_QT) messages: diff --git a/noatun/app/Makefile.am b/noatun/app/Makefile.am index 59d8dbd2..3750e4b8 100644 --- a/noatun/app/Makefile.am +++ b/noatun/app/Makefile.am @@ -1,6 +1,6 @@ INCLUDES = -I$(top_srcdir)/noatun/library -I$(kde_includes)/arts $(all_includes) -kdeinit_LTLIBRARIES = noatun.la +tdeinit_LTLIBRARIES = noatun.la noatun_la_SOURCES = main.cpp noatun_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) -module -avoid-version noatun_la_LIBADD = -lqtmcop -lkmedia2_idl -lsoundserver_idl $(top_builddir)/noatun/library/libnoatun.la diff --git a/noatun/library/engine.cpp b/noatun/library/engine.cpp index 36863a0c..9cd34e7d 100644 --- a/noatun/library/engine.cpp +++ b/noatun/library/engine.cpp @@ -482,7 +482,7 @@ bool Engine::initArts() X11CommConfig.sync(); } - cmdline = TQFile::encodeName(KStandardDirs::findExe(TQString::tqfromLatin1("kdeinit_wrapper"))); + cmdline = TQFile::encodeName(KStandardDirs::findExe(TQString::tqfromLatin1("tdeinit_wrapper"))); cmdline += " "; if (rt) @@ -502,7 +502,7 @@ bool Engine::initArts() // We could have a race-condition here. // The correct way to do it is to make artsd fork-and-exit // after starting to listen to connections (and running artsd - // directly instead of using kdeinit), but this is better + // directly instead of using tdeinit), but this is better // than nothing. int time = 0; do |