Additional kde to tde renaming

pull/1/head
Timothy Pearson 13 years ago
parent 8a9ab45627
commit 28ccd51885

@ -45,7 +45,7 @@ tde_add_executable( rssservice AUTOMOC
tde_add_executable( rssclient tde_add_executable( rssclient
SOURCES SOURCES
client.cpp client.cpp
LINK kdecore-shared LINK tdecore-shared
DESTINATION ${BIN_INSTALL_DIR} DESTINATION ${BIN_INSTALL_DIR}
) )
@ -55,6 +55,6 @@ tde_add_executable( rssclient
tde_add_executable( feedbrowser AUTOMOC tde_add_executable( feedbrowser AUTOMOC
SOURCES SOURCES
feedbrowser.skel feedbrowser.cpp feedbrowser.skel feedbrowser.cpp
LINK kdeui-shared LINK tdeui-shared
DESTINATION ${BIN_INSTALL_DIR} DESTINATION ${BIN_INSTALL_DIR}
) )

@ -204,7 +204,7 @@
results will always be empty. If you are not the root user, the list may be incomplete results will always be empty. If you are not the root user, the list may be incomplete
or outdated. </para> or outdated. </para>
<para> In order to receive a reliable, current list of access points you will need to <para> In order to receive a reliable, current list of access points you will need to
start the scan with root privileges, for example by using the &kdesu; utility to start the scan with root privileges, for example by using the &tdesu; utility to
start &kwifimanager;</para> start &kwifimanager;</para>
<para> If at least one network was found, you are presented with a table showing details <para> If at least one network was found, you are presented with a table showing details
of the network. It has four columns that inform you about <itemizedlist> of the network. It has four columns that inform you about <itemizedlist>
@ -374,7 +374,7 @@
if you want to start an X application in the script and the X server belongs to someone if you want to start an X application in the script and the X server belongs to someone
else than root. You can make such scripts work correctly if you execute the X application else than root. You can make such scripts work correctly if you execute the X application
via<userinput> via<userinput>
<command>kdesu</command> <command>tdesu</command>
<option>-u</option> <option>-u</option>
<replaceable>USERNAME</replaceable> <replaceable>USERNAME</replaceable>
<option>-c</option> <option>-c</option>

@ -46,6 +46,6 @@ tde_add_kpart( kcm_kcmsambaconf AUTOMOC
SOURCES SOURCES
kcminterface.ui kcmprinterdlg.ui printerdlgimpl.cpp kcmsambaconf.cpp kcminterface.ui kcmprinterdlg.ui printerdlgimpl.cpp kcmsambaconf.cpp
joindomaindlg.ui joindomaindlg.ui
LINK filesharesamba-static kdeprint-shared LINK filesharesamba-static tdeprint-shared
DESTINATION ${PLUGIN_INSTALL_DIR} DESTINATION ${PLUGIN_INSTALL_DIR}
) )

@ -15,7 +15,7 @@ kcm_kcmsambaconf_la_COMPILE_FIRST = usertab.h share.h
kcm_kcmsambaconf_la_LIBADD = \ kcm_kcmsambaconf_la_LIBADD = \
-lkdeprint \ -ltdeprint \
libfilesharesamba.la libfilesharesamba.la
kcm_kcmsambaconf_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) kcm_kcmsambaconf_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)

@ -46,8 +46,8 @@
#include <kurlrequester.h> #include <kurlrequester.h>
#include <knuminput.h> #include <knuminput.h>
#include <kdebug.h> #include <kdebug.h>
#include <kdeprint/kmmanager.h> #include <tdeprint/kmmanager.h>
#include <kdeprint/kmprinter.h> #include <tdeprint/kmprinter.h>
#include <kcombobox.h> #include <kcombobox.h>
#include <kiconloader.h> #include <kiconloader.h>
#include <klocale.h> #include <klocale.h>

@ -146,7 +146,7 @@ bool SambaFile::slotApply()
// we simply save the values to it // we simply save the values to it
// if not we have to save the results in // if not we have to save the results in
// a temporary file and copy it afterwards // a temporary file and copy it afterwards
// over the smb.conf file with kdesu. // over the smb.conf file with tdesu.
if (TQFileInfo(path).isWritable()) if (TQFileInfo(path).isWritable())
{ {
saveTo(path); saveTo(path);
@ -177,7 +177,7 @@ bool SambaFile::slotApply()
.tqarg(_tempFile->name()) .tqarg(_tempFile->name())
.tqarg(path) .tqarg(path)
.tqarg(_tempFile->name()); .tqarg(_tempFile->name());
proc << "kdesu" << "-d" << suCommand; proc << "tdesu" << "-d" << suCommand;
if (! proc.start(KProcess::Block)) { if (! proc.start(KProcess::Block)) {
kdDebug(5009) << "SambaFile::slotApply: saving to " << path << " failed!" << endl; kdDebug(5009) << "SambaFile::slotApply: saving to " << path << " failed!" << endl;

@ -248,7 +248,7 @@ bool NFSFile::save()
command +=";exportfs -ra"; command +=";exportfs -ra";
if (!TQFileInfo(_url.path()).isWritable() ) if (!TQFileInfo(_url.path()).isWritable() )
proc<<"kdesu" << "-d" << "-c"<<command; proc<<"tdesu" << "-d" << "-c"<<command;
if (!proc.start(KProcess::Block, true)) { if (!proc.start(KProcess::Block, true)) {
return false; return false;

@ -179,7 +179,7 @@ bool PropertiesPage::save(NFSFile* nfsFile, SambaFile* sambaFile, bool nfs, bool
nfsFile->saveTo(nfsFileName); nfsFile->saveTo(nfsFileName);
} else { } else {
nfsNeedsKDEsu = true; nfsNeedsKDEsu = true;
kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: nfs needs kdesu." << endl; kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: nfs needs tdesu." << endl;
} }
} else } else
kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: nfs has not changed." << endl; kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: nfs has not changed." << endl;
@ -192,7 +192,7 @@ bool PropertiesPage::save(NFSFile* nfsFile, SambaFile* sambaFile, bool nfs, bool
sambaFile->saveTo(sambaFileName); sambaFile->saveTo(sambaFileName);
} else { } else {
sambaNeedsKDEsu = true; sambaNeedsKDEsu = true;
kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: samba needs kdesu." << endl; kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: samba needs tdesu." << endl;
} }
} else } else
kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: samba has not changed." << endl; kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: samba has not changed." << endl;
@ -222,10 +222,10 @@ bool PropertiesPage::save(NFSFile* nfsFile, SambaFile* sambaFile, bool nfs, bool
.tqarg(KProcess::quote( sambaFileName )); .tqarg(KProcess::quote( sambaFileName ));
} }
proc<<"kdesu" << "-d" << "-c"<<command; proc<<"tdesu" << "-d" << "-c"<<command;
if (!proc.start(KProcess::Block, true)) { if (!proc.start(KProcess::Block, true)) {
kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: kdesu command failed" << endl; kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: tdesu command failed" << endl;
return false; return false;
} }
} }

@ -101,7 +101,7 @@ PropsDlgSharePlugin::PropsDlgSharePlugin( KPropertiesDialog *dlg,
void PropsDlgSharePlugin::slotConfigureFileSharing() void PropsDlgSharePlugin::slotConfigureFileSharing()
{ {
KProcess proc; KProcess proc;
proc << KStandardDirs::findExe("kdesu") << locate("exe", "kcmshell") << "fileshare"; proc << KStandardDirs::findExe("tdesu") << locate("exe", "kcmshell") << "fileshare";
proc.start( KProcess::DontCare ); proc.start( KProcess::DontCare );
} }

@ -33,9 +33,9 @@ install( FILES kdict.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
install( FILES kdictui.rc DESTINATION ${DATA_INSTALL_DIR}/kdict ) install( FILES kdictui.rc DESTINATION ${DATA_INSTALL_DIR}/kdict )
##### kdict (kdeinit) ########################### ##### kdict (tdeinit) ###########################
tde_add_kdeinit_executable( kdict AUTOMOC tde_add_tdeinit_executable( kdict AUTOMOC
SOURCES SOURCES
dcopinterface.skel main.cpp actions.cpp dict.cpp options.cpp dcopinterface.skel main.cpp actions.cpp dict.cpp options.cpp
queryview.cpp toplevel.cpp sets.cpp matchview.cpp application.cpp queryview.cpp toplevel.cpp sets.cpp matchview.cpp application.cpp

@ -6,7 +6,7 @@ SUBDIRS = applet pics
bin_PROGRAMS = bin_PROGRAMS =
lib_LTLIBRARIES = lib_LTLIBRARIES =
kdeinit_LTLIBRARIES = kdict.la tdeinit_LTLIBRARIES = kdict.la
# set the include path for X, qt and KDE # set the include path for X, qt and KDE
AM_CPPFLAGS = $(all_includes) AM_CPPFLAGS = $(all_includes)

@ -31,6 +31,6 @@ install( FILES
tde_add_kpart( kdict_panelapplet AUTOMOC tde_add_kpart( kdict_panelapplet AUTOMOC
SOURCES kdictapplet.cpp SOURCES kdictapplet.cpp
LINK kdeui-shared LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR} DESTINATION ${PLUGIN_INSTALL_DIR}
) )

@ -29,6 +29,6 @@ install( FILES dnssdwatcher.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kded )
tde_add_kpart( kded_dnssdwatcher AUTOMOC tde_add_kpart( kded_dnssdwatcher AUTOMOC
SOURCES dnssdwatcher.cpp dnssdwatcher.skel watcher.cpp SOURCES dnssdwatcher.cpp dnssdwatcher.skel watcher.cpp
LINK kdnssd-shared kdeinit_kded-shared LINK kdnssd-shared tdeinit_kded-shared
DESTINATION ${PLUGIN_INSTALL_DIR} DESTINATION ${PLUGIN_INSTALL_DIR}
) )

@ -33,7 +33,7 @@ kopete_SOURCES = main.cpp kopeteapplication.cpp kopeteiface.cpp \
kimiface_DIR = $(kde_includes) kimiface_DIR = $(kde_includes)
kopete_LDFLAGS = -no-undefined $(all_libraries) $(KDE_RPATH) -lktexteditor $(LIB_QT) $(LIB_KDECORE) -lkdefx -lDCOP kopete_LDFLAGS = -no-undefined $(all_libraries) $(KDE_RPATH) -lktexteditor $(LIB_QT) $(LIB_KDECORE) -ltdefx -lDCOP
kopete_LDADD = \ kopete_LDADD = \
addcontactwizard/libkopeteaddcontactwizard.la \ addcontactwizard/libkopeteaddcontactwizard.la \
addaccountwizard/libkopeteaddaccountwizard.la \ addaccountwizard/libkopeteaddaccountwizard.la \

@ -18,7 +18,7 @@ libkopetecontactlist_la_SOURCES = kopetemetacontactlvi.cpp \
customnotificationprops.cpp kopetegrouplistaction.cpp kabcexport.cpp \ customnotificationprops.cpp kopetegrouplistaction.cpp kabcexport.cpp \
kabcexport_base.ui kabcexport_base.ui
libkopetecontactlist_la_LDFLAGS = $(all_libraries) -lkdefx libkopetecontactlist_la_LDFLAGS = $(all_libraries) -ltdefx
libkopetecontactlist_la_LIBADD = -lkabc ../../libkopete/libkopete.la ../addcontactwizard/libkopeteaddcontactwizard.la $(LIB_KDEUI) $(LIB_XRENDER) libkopetecontactlist_la_LIBADD = -lkabc ../../libkopete/libkopete.la ../addcontactwizard/libkopeteaddcontactwizard.la $(LIB_KDEUI) $(LIB_XRENDER)
noinst_HEADERS = kopeteaddrbookexport.h customnotificationprops.h kabcexport.h noinst_HEADERS = kopeteaddrbookexport.h customnotificationprops.h kabcexport.h

@ -1,6 +1,6 @@
dnl ----------------------------------------------------- dnl -----------------------------------------------------
dnl XRender check - stolen from kdelibs/kdefx dnl XRender check - stolen from kdelibs/tdefx
dnl ----------------------------------------------------- dnl -----------------------------------------------------
LIB_XRENDER= LIB_XRENDER=
if test "$kde_use_qt_emb" = "no" && test "$kde_use_qt_mac" = "no"; then if test "$kde_use_qt_emb" = "no" && test "$kde_use_qt_mac" = "no"; then

@ -59,6 +59,6 @@ tde_add_executable( kopete_pluginloader2_kconf_update
tde_add_executable( kopete_nameTracking_kconf_update tde_add_executable( kopete_nameTracking_kconf_update
SOURCES kopete-nameTracking.cpp SOURCES kopete-nameTracking.cpp
LINK kdecore-shared LINK tdecore-shared
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
) )

@ -17,15 +17,15 @@ kconf_PROGRAMS = kopete-account-kconf_update kopete-pluginloader2-kconf_update \
kconfdir = $(libdir)/kconf_update_bin kconfdir = $(libdir)/kconf_update_bin
kopete_account_kconf_update_SOURCES = kopete-account-kconf_update.cpp kopete_account_kconf_update_SOURCES = kopete-account-kconf_update.cpp
kopete_account_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor kopete_account_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kopete_account_kconf_update_LDADD = $(LIB_QT) kopete_account_kconf_update_LDADD = $(LIB_QT)
kopete_pluginloader2_kconf_update_SOURCES = kopete-pluginloader2.cpp kopete_pluginloader2_kconf_update_SOURCES = kopete-pluginloader2.cpp
kopete_pluginloader2_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor kopete_pluginloader2_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kopete_pluginloader2_kconf_update_LDADD = $(LIB_QT) kopete_pluginloader2_kconf_update_LDADD = $(LIB_QT)
kopete_nameTracking_kconf_update_SOURCES = kopete-nameTracking.cpp kopete_nameTracking_kconf_update_SOURCES = kopete-nameTracking.cpp
kopete_nameTracking_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor kopete_nameTracking_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kopete_nameTracking_kconf_update_LDADD = $(LIB_QT) $(LIB_KDECORE) kopete_nameTracking_kconf_update_LDADD = $(LIB_QT) $(LIB_KDECORE)
# vim: set noet: # vim: set noet:

@ -5,7 +5,7 @@ endif
include ../../admin/Doxyfile.am include ../../admin/Doxyfile.am
DOXYGEN_REFERENCES = kio kdecore kdeui DOXYGEN_REFERENCES = kio tdecore tdeui
DOXYGEN_EXCLUDE = compat DOXYGEN_EXCLUDE = compat
DOXYGEN_SET_PROJECT_NAME = libkopete DOXYGEN_SET_PROJECT_NAME = libkopete

@ -41,6 +41,6 @@ tde_add_library( kopete_videodevice SHARED AUTOMOC
videodevicepool.cpp videoinput.cpp bayer.cpp videodevicepool.cpp videoinput.cpp bayer.cpp
sonix_compress.cpp sonix_compress.cpp
VERSION 1.0.0 VERSION 1.0.0
LINK kdecore-shared LINK tdecore-shared
DESTINATION ${LIB_INSTALL_DIR} DESTINATION ${LIB_INSTALL_DIR}
) )

@ -5,7 +5,7 @@ AM_CPPFLAGS = -DKDE_NO_COMPAT -DQT_NO_COMPAT -DQT_NO_CAST_ASCII -DQT_NO_ASCII_CA
METASOURCES = AUTO METASOURCES = AUTO
lib_LTLIBRARIES = libkopete_videodevice.la lib_LTLIBRARIES = libkopete_videodevice.la
noinst_LTLIBRARIES = libkvideoio.la noinst_LTLIBRARIES = libkvideoio.la
libkopete_videodevice_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor libkopete_videodevice_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
noinst_HEADERS = kxv.h qvideo.h qvideostream.h videocontrol.h videodevice.h \ noinst_HEADERS = kxv.h qvideo.h qvideostream.h videocontrol.h videodevice.h \
videodevicemodelpool.h videodevicepool.h videoinput.h \ videodevicemodelpool.h videodevicepool.h videoinput.h \

@ -18,8 +18,8 @@
*/ */
/* NOTE: There are two copies of this .h and the .cpp file, with subtle differences. /* NOTE: There are two copies of this .h and the .cpp file, with subtle differences.
* One copy is in kdelibs/kdeui, and the other copy is in kdepim/libtdepim * One copy is in kdelibs/tdeui, and the other copy is in tdepim/libtdepim
* This is because kdepim has to remain backwards compatible. Any changes * This is because tdepim has to remain backwards compatible. Any changes
* to either file should be made to the other. * to either file should be made to the other.
*/ */

@ -34,8 +34,8 @@ class KPopupMenu;
* user with a friendly way to select a rectangular subregion of the pixmap. * user with a friendly way to select a rectangular subregion of the pixmap.
* *
* NOTE: There are two copies of this .h and the .cpp file, with subtle differences. * NOTE: There are two copies of this .h and the .cpp file, with subtle differences.
* One copy is in kdelibs/kdeui, and the other copy is in kdepim/libtdepim * One copy is in kdelibs/tdeui, and the other copy is in tdepim/libtdepim
* This is because kdepim has to remain backwards compatible. Any changes * This is because tdepim has to remain backwards compatible. Any changes
* to either file should be made to the other. * to either file should be made to the other.
* *
* @author Antonio Larrosa <larrosa@kde.org> * @author Antonio Larrosa <larrosa@kde.org>

@ -5,7 +5,7 @@ METASOURCES = AUTO
check_PROGRAMS = smpppdcstests check_PROGRAMS = smpppdcstests
smpppdcstests_SOURCES = main.cpp clienttest.cpp smpppdcstests_SOURCES = main.cpp clienttest.cpp
smpppdcstests_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor smpppdcstests_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
smpppdcstests_LDADD = ../libsmpppdclient/libsmpppdclient.la -lkunittestgui smpppdcstests_LDADD = ../libsmpppdclient/libsmpppdclient.la -lkunittestgui
noinst_HEADERS = clienttest.h noinst_HEADERS = clienttest.h

@ -56,7 +56,7 @@ void KCodecAction::setCodec( const TQTextCodec *codec )
/* Create a list of supported encodings, and keep only one of each encoding /* Create a list of supported encodings, and keep only one of each encoding
* mime name. * mime name.
* *
* This piece of code from kdepim/kmail/kmmsgbase.cpp * This piece of code from tdepim/kmail/kmmsgbase.cpp
*/ */
TQStringList KCodecAction::supportedEncodings(bool usAscii) TQStringList KCodecAction::supportedEncodings(bool usAscii)

@ -3,7 +3,7 @@ METASOURCES = AUTO
check_PROGRAMS = kunittest clientstream_test logintest userinfotest ssigrouptest redirecttest ipaddrtest check_PROGRAMS = kunittest clientstream_test logintest userinfotest ssigrouptest redirecttest ipaddrtest
kunittest_SOURCES = main.cpp kunittest.cpp chatnavtests.cpp kunittest_SOURCES = main.cpp kunittest.cpp chatnavtests.cpp
kunittest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor kunittest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kunittest_LDADD = $(LIB_KDECORE) ../liboscar.la kunittest_LDADD = $(LIB_KDECORE) ../liboscar.la
clientstream_test_SOURCES = clientstream_test.cpp clientstream_test_SOURCES = clientstream_test.cpp

@ -110,8 +110,8 @@ bool WinPopupLib::checkMessageDir()
"Should the directory be created? (May need root password)").tqarg(WP_POPUP_DIR), "Should the directory be created? (May need root password)").tqarg(WP_POPUP_DIR),
TQString::tqfromLatin1("Winpopup"), i18n("Create Directory"), i18n("Do Not Create")); TQString::tqfromLatin1("Winpopup"), i18n("Create Directory"), i18n("Do Not Create"));
if (tmpYesNo == KMessageBox::Yes) { if (tmpYesNo == KMessageBox::Yes) {
TQStringList kdesuArgs = TQStringList(TQString("-c mkdir -p -m 0777 " + WP_POPUP_DIR)); TQStringList tdesuArgs = TQStringList(TQString("-c mkdir -p -m 0777 " + WP_POPUP_DIR));
if (KApplication::kdeinitExecWait("kdesu", kdesuArgs) == 0) return true; if (KApplication::tdeinitExecWait("tdesu", tdesuArgs) == 0) return true;
} }
} else { } else {
KFileItem tmpFileItem = KFileItem(KFileItem::Unknown, KFileItem::Unknown, KURL::fromPathOrURL(WP_POPUP_DIR)); KFileItem tmpFileItem = KFileItem(KFileItem::Unknown, KFileItem::Unknown, KURL::fromPathOrURL(WP_POPUP_DIR));
@ -129,8 +129,8 @@ bool WinPopupLib::checkMessageDir()
"Fix? (May need root password)").tqarg(WP_POPUP_DIR), "Fix? (May need root password)").tqarg(WP_POPUP_DIR),
TQString::tqfromLatin1("Winpopup"), i18n("Fix"), i18n("Do Not Fix")); TQString::tqfromLatin1("Winpopup"), i18n("Fix"), i18n("Do Not Fix"));
if (tmpYesNo == KMessageBox::Yes) { if (tmpYesNo == KMessageBox::Yes) {
TQStringList kdesuArgs = TQStringList(TQString("-c chmod 0777 " + WP_POPUP_DIR)); TQStringList tdesuArgs = TQStringList(TQString("-c chmod 0777 " + WP_POPUP_DIR));
if (KApplication::kdeinitExecWait("kdesu", kdesuArgs) == 0) return true; if (KApplication::tdeinitExecWait("tdesu", tdesuArgs) == 0) return true;
} }
} else { } else {
return true; return true;
@ -305,8 +305,8 @@ void WinPopupLib::readMessages(const KFileItemList &items)
"Fix? (May need root password)"), "Fix? (May need root password)"),
TQString::tqfromLatin1("Winpopup"), i18n("Fix"), i18n("Do Not Fix")); TQString::tqfromLatin1("Winpopup"), i18n("Fix"), i18n("Do Not Fix"));
if (tmpYesNo == KMessageBox::Yes) { if (tmpYesNo == KMessageBox::Yes) {
TQStringList kdesuArgs = TQStringList(TQString("-c chmod 0666 " + tmpItem->url().path())); TQStringList tdesuArgs = TQStringList(TQString("-c chmod 0666 " + tmpItem->url().path()));
if (KApplication::kdeinitExecWait("kdesu", kdesuArgs) == 0) { if (KApplication::tdeinitExecWait("tdesu", tdesuArgs) == 0) {
if (!messageFile.remove()) if (!messageFile.remove())
KMessageBox::error(Kopete::UI::Global::mainWidget(), i18n("Still cannot remove it; please fix manually.")); KMessageBox::error(Kopete::UI::Global::mainWidget(), i18n("Still cannot remove it; please fix manually."));
} }

@ -140,7 +140,7 @@ void WPProtocol::installSamba()
TQStringList args; TQStringList args;
args += KStandardDirs::findExe("winpopup-install.sh"); args += KStandardDirs::findExe("winpopup-install.sh");
args += KStandardDirs::findExe("winpopup-send.sh"); args += KStandardDirs::findExe("winpopup-send.sh");
if (KApplication::kdeinitExecWait("kdesu", args) == 0) if (KApplication::tdeinitExecWait("tdesu", args) == 0)
KMessageBox::information(Kopete::UI::Global::mainWidget(), i18n("The Samba configuration file is modified."), i18n("Configuration Succeeded")); KMessageBox::information(Kopete::UI::Global::mainWidget(), i18n("The Samba configuration file is modified."), i18n("Configuration Succeeded"));
else else
KMessageBox::error(Kopete::UI::Global::mainWidget(), i18n("Updating the Samba configuration file failed."), i18n("Configuration Failed")); KMessageBox::error(Kopete::UI::Global::mainWidget(), i18n("Updating the Samba configuration file failed."), i18n("Configuration Failed"));

@ -316,7 +316,7 @@
* modem.cpp: dropped ISTRIP option and made everything else "8-bit * modem.cpp: dropped ISTRIP option and made everything else "8-bit
clean" by using unsigned char and removing 0x7F AND'ing. Characters clean" by using unsigned char and removing 0x7F AND'ing. Characters
like [§´°öäü] will work now. like [§´°öäü] will work now.
* modem.cpp: use usleep() replacement from kdecore/fakes.cpp * modem.cpp: use usleep() replacement from tdecore/fakes.cpp
1999-03-10 Harri Porten <porten@kde.org> 1999-03-10 Harri Porten <porten@kde.org>

@ -60,6 +60,6 @@ tde_add_executable( krdc AUTOMOC
maindialogbase.ui keycapturewidget.ui kservicelocator.cpp maindialogbase.ui keycapturewidget.ui kservicelocator.cpp
keycapturedialog.cpp kremoteview.cpp smartptr.cpp hostpreferences.cpp keycapturedialog.cpp kremoteview.cpp smartptr.cpp hostpreferences.cpp
preferencesdialog.cpp maindialogwidget.cpp maindialog.cpp preferencesdialog.cpp maindialogwidget.cpp maindialog.cpp
LINK vnc-static rdp-static kdeui-shared kdnssd-shared kwalletclient-shared jpeg Xext LINK vnc-static rdp-static tdeui-shared kdnssd-shared kwalletclient-shared jpeg Xext
DESTINATION ${BIN_INSTALL_DIR} DESTINATION ${BIN_INSTALL_DIR}
) )

@ -18,7 +18,7 @@
***************************************************************************/ ***************************************************************************/
// //
// based on key capture code from kdelibs/kdeui/kshortcutdialog.cpp // based on key capture code from kdelibs/tdeui/kshortcutdialog.cpp
// //
#include "keycapturedialog.h" #include "keycapturedialog.h"

@ -8,4 +8,4 @@ librdp_la_SOURCES = krdpview.cpp rdphostpref.cpp rdpprefs.ui
noinst_HEADERS = krdpview.h rdphostpref.h noinst_HEADERS = krdpview.h rdphostpref.h
librdp_la_LIBADD = $(LIB_KDEUI) $(LIBJPEG) librdp_la_LIBADD = $(LIB_KDEUI) $(LIBJPEG)
librdp_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor librdp_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor

@ -33,6 +33,6 @@ install( FILES eventsrc DESTINATION ${DATA_INSTALL_DIR}/kinetd )
tde_add_kpart( kded_kinetd AUTOMOC tde_add_kpart( kded_kinetd AUTOMOC
SOURCES kinetd.cpp kinetd.skel SOURCES kinetd.cpp kinetd.skel
LINK LINK
srvloc-static kdnssd-shared kdeinit_kded-shared srvloc-static kdnssd-shared tdeinit_kded-shared
DESTINATION ${PLUGIN_INSTALL_DIR} DESTINATION ${PLUGIN_INSTALL_DIR}
) )

@ -39,7 +39,7 @@ tde_add_executable( krfb AUTOMOC
rfbcontroller.cc xupdatescanner.cc main.cpp connectionwidget.ui rfbcontroller.cc xupdatescanner.cc main.cpp connectionwidget.ui
krfbifaceimpl.cc krfbiface.skel trayicon.cpp connectiondialog.cc krfbifaceimpl.cc krfbiface.skel trayicon.cpp connectiondialog.cc
LINK LINK
krfbconfig-static vncserver-static srvloc-static kdeui-shared kio-shared jpeg Xext pthread ${XTST_LIBRARIES} krfbconfig-static vncserver-static srvloc-static tdeui-shared kio-shared jpeg Xext pthread ${XTST_LIBRARIES}
DESTINATION ${BIN_INSTALL_DIR} DESTINATION ${BIN_INSTALL_DIR}
) )

@ -13,7 +13,7 @@ krfb_SOURCES = rfbcontroller.cc xupdatescanner.cc main.cpp \
connectionwidget.ui krfbifaceimpl.cc krfbiface.skel \ connectionwidget.ui krfbifaceimpl.cc krfbiface.skel \
trayicon.cpp connectiondialog.cc trayicon.cpp connectiondialog.cc
krfb_LDADD = libkrfbconfig.la ../libvncserver/libvncserver.la ../srvloc/libsrvloc.la -lXtst $(LIB_KDEUI) $(LIBJPEG) -lkio -lDCOP krfb_LDADD = libkrfbconfig.la ../libvncserver/libvncserver.la ../srvloc/libsrvloc.la -lXtst $(LIB_KDEUI) $(LIBJPEG) -lkio -lDCOP
krfb_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) -lkdefx krfb_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) -ltdefx
appdatadir = $(kde_datadir)/krfb/pics appdatadir = $(kde_datadir)/krfb/pics
appdata_DATA = eyes-open24.png eyes-closed24.png connection-side-image.png appdata_DATA = eyes-open24.png eyes-closed24.png connection-side-image.png

@ -51,9 +51,9 @@ install( FILES
DESTINATION ${XDG_APPS_INSTALL_DIR} ) DESTINATION ${XDG_APPS_INSTALL_DIR} )
##### ksirc (kdeinit) ########################### ##### ksirc (tdeinit) ###########################
tde_add_kdeinit_executable( ksirc AUTOMOC tde_add_tdeinit_executable( ksirc AUTOMOC
SOURCES SOURCES
toplevel.cpp charSelector.cpp chanButtons.cpp ksirc.cpp alistbox.cpp toplevel.cpp charSelector.cpp chanButtons.cpp ksirc.cpp alistbox.cpp
ahistlineedit.cpp iocontroller.cpp NewWindowDialog.cpp ahistlineedit.cpp iocontroller.cpp NewWindowDialog.cpp

@ -15,6 +15,6 @@ check_PROGRAMS = ksttest
ksttest_SOURCES = ksttest.cpp ksttest_SOURCES = ksttest.cpp
ksttest_LDADD = libksticker.la ../ksopts.lo ../nickColourMaker.lo $(LIB_KDEUI) ksttest_LDADD = libksticker.la ../ksopts.lo ../nickColourMaker.lo $(LIB_KDEUI)
ksttest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor ksttest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor

@ -13,15 +13,15 @@ check_PROGRAMS = testview dccMgrTest
testview_SOURCES = kstextviewtest.cpp testview_SOURCES = kstextviewtest.cpp
testview_LDADD = kstextview.lo dccNew.lo dccNewbase.lo alistbox.lo objFinder.lo ksopts.lo nickColourMaker.lo $(LIB_KUTILS) $(LIB_KDEUI) testview_LDADD = kstextview.lo dccNew.lo dccNewbase.lo alistbox.lo objFinder.lo ksopts.lo nickColourMaker.lo $(LIB_KUTILS) $(LIB_KDEUI)
testview_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor testview_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
dccMgrTest_SOURCES = dccMgrTest.cpp dccMgrTest_SOURCES = dccMgrTest.cpp
dccMgrTest_LDADD = dccManager.lo dccManagerbase.lo dccNew.lo dccNewbase.lo alistbox.lo objFinder.lo ksopts.lo nickColourMaker.lo $(LIB_KUTILS) $(LIB_KDEUI) dccMgrTest_LDADD = dccManager.lo dccManagerbase.lo dccNew.lo dccNewbase.lo alistbox.lo objFinder.lo ksopts.lo nickColourMaker.lo $(LIB_KUTILS) $(LIB_KDEUI)
dccMgrTest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor dccMgrTest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
bin_PROGRAMS = bin_PROGRAMS =
lib_LTLIBRARIES = lib_LTLIBRARIES =
kdeinit_LTLIBRARIES = ksirc.la tdeinit_LTLIBRARIES = ksirc.la
noinst_PROGRAMS = getdate noinst_PROGRAMS = getdate

@ -26,7 +26,7 @@
2000-01-26 David Faure <faure@kde.org> 2000-01-26 David Faure <faure@kde.org>
* readcfg++.cpp, announce.cpp : remove HAVE_FUNC_SETENV tests and * readcfg++.cpp, announce.cpp : remove HAVE_FUNC_SETENV tests and
putenv(), since ktalkd can now use kdecore's fake for setenv if setenv putenv(), since ktalkd can now use tdecore's fake for setenv if setenv
is not available. Thanks to Stefan.Becker@nokia.com. is not available. Thanks to Stefan.Becker@nokia.com.
2000-01-18 David Faure <faure@kde.org> 2000-01-18 David Faure <faure@kde.org>
@ -348,7 +348,7 @@
1998-04-20 David Faure <faure@kde.org> (0.5.3) 1998-04-20 David Faure <faure@kde.org> (0.5.3)
* Makefile.am: Removed -lkdeui, not needed. * Makefile.am: Removed -ltdeui, not needed.
* io.c: Corrected an awful bug * io.c: Corrected an awful bug
(NEUBanner displayed instead of OPTinvitelines) (NEUBanner displayed instead of OPTinvitelines)
* readcfg++.cpp: Added missing "/" before 'ktalkdrc' * readcfg++.cpp: Added missing "/" before 'ktalkdrc'

@ -17,5 +17,5 @@ and to Bert Haverkamp <b.r.j.haverkamp@its.tudelft.nl> for reporting bugs in thi
I know, the really good approach would be to include the missing I know, the really good approach would be to include the missing
automatically, which can be done. But for this I need to know if automatically, which can be done. But for this I need to know if
vsnprintf.c compiles on all architectures where snprintf is missing. vsnprintf.c compiles on all architectures where snprintf is missing.
If yes, I'll make the code in vsnprintf included automatically (in kdecore/fakes.cpp) If yes, I'll make the code in vsnprintf included automatically (in tdecore/fakes.cpp)

@ -36,6 +36,6 @@ tde_add_executable( ktalkd
SOURCES SOURCES
print.c repairs.c announce.cpp process.cpp readcfg++.cpp table.cpp print.c repairs.c announce.cpp process.cpp readcfg++.cpp table.cpp
talkd.cpp find_user.cpp threads.cpp options.cpp unixsock.cpp talkd.cpp find_user.cpp threads.cpp options.cpp unixsock.cpp
LINK mach-static kdecore-shared LINK mach-static tdecore-shared
DESTINATION ${BIN_INSTALL_DIR} DESTINATION ${BIN_INSTALL_DIR}
) )

@ -25,6 +25,6 @@ link_directories(
tde_add_executable( ktalkdlg AUTOMOC tde_add_executable( ktalkdlg AUTOMOC
SOURCES ktalkdlg.cpp SOURCES ktalkdlg.cpp
LINK kdeui-shared LINK tdeui-shared
DESTINATION ${BIN_INSTALL_DIR} DESTINATION ${BIN_INSTALL_DIR}
) )

@ -34,6 +34,6 @@ tde_add_kpart( kcm_lanbrowser AUTOMOC
SOURCES SOURCES
main.cpp setupwizard.cpp kcmlisa.cpp kcmreslisa.cpp kcmkiolan.cpp main.cpp setupwizard.cpp kcmlisa.cpp kcmreslisa.cpp kcmkiolan.cpp
portsettingsbar.cpp findnic.cpp portsettingsbar.cpp findnic.cpp
LINK kdeui-shared LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR} DESTINATION ${PLUGIN_INSTALL_DIR}
) )

@ -3,7 +3,7 @@ kde_module_LTLIBRARIES = kcm_lanbrowser.la
kcm_lanbrowser_la_SOURCES = main.cpp setupwizard.cpp kcmlisa.cpp kcmreslisa.cpp kcmkiolan.cpp portsettingsbar.cpp findnic.cpp kcm_lanbrowser_la_SOURCES = main.cpp setupwizard.cpp kcmlisa.cpp kcmreslisa.cpp kcmkiolan.cpp portsettingsbar.cpp findnic.cpp
kcm_lanbrowser_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module kcm_lanbrowser_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
kcm_lanbrowser_la_LIBADD = -lkdeui kcm_lanbrowser_la_LIBADD = -ltdeui
INCLUDES= $(all_includes) INCLUDES= $(all_includes)

@ -291,7 +291,7 @@ void LisaSettings::save()
TQString suCommand=TQString("cp '%1' '%2'; chmod 644 '%3'; rm -f '%4'").tqarg(m_tmpFilename).tqarg(m_configFilename).tqarg(m_configFilename).tqarg(m_tmpFilename); TQString suCommand=TQString("cp '%1' '%2'; chmod 644 '%3'; rm -f '%4'").tqarg(m_tmpFilename).tqarg(m_configFilename).tqarg(m_configFilename).tqarg(m_tmpFilename);
KProcess *proc = new KProcess(); KProcess *proc = new KProcess();
connect(proc, TQT_SIGNAL(processExited(KProcess *)), this, TQT_SLOT(saveDone(KProcess *))); connect(proc, TQT_SIGNAL(processExited(KProcess *)), this, TQT_SLOT(saveDone(KProcess *)));
*proc<<"kdesu"<<"-c"<<suCommand; *proc<<"tdesu"<<"-c"<<suCommand;
KApplication::setOverrideCursor(TQt::waitCursor); KApplication::setOverrideCursor(TQt::waitCursor);
setEnabled(false); setEnabled(false);
if ( !proc->start() ) if ( !proc->start() )

@ -48,7 +48,7 @@ class LisaSettings:public KCModule
protected slots: protected slots:
void slotChanged(); void slotChanged();
void autoSetup(); void autoSetup();
void saveDone(KProcess *); // called after the kdesud returns (on save) void saveDone(KProcess *); // called after the tdesud returns (on save)
void suggestSettings(); void suggestSettings();
protected: protected:
KConfig m_config; KConfig m_config;

@ -48,6 +48,6 @@ tde_add_executable( kwifimanager AUTOMOC
interface_dcop.skel networkscanning.cpp kwifimanager.cpp locator.cpp interface_dcop.skel networkscanning.cpp kwifimanager.cpp locator.cpp
main.cpp picture.cpp speed.cpp statistics.cpp status.cpp strength.cpp main.cpp picture.cpp speed.cpp statistics.cpp status.cpp strength.cpp
asusled.cpp asusled.cpp
LINK kdeui-shared ${ARTS_LIBRARIES} ${IW_LIBRARY} LINK tdeui-shared ${ARTS_LIBRARIES} ${IW_LIBRARY}
DESTINATION ${BIN_INSTALL_DIR} DESTINATION ${BIN_INSTALL_DIR}
) )

@ -457,9 +457,9 @@ KWiFiManagerApp::slotDisableRadio ()
// FIXME my Cisco Aironet 350 has two interfaces eth1 and wifi1, // FIXME my Cisco Aironet 350 has two interfaces eth1 and wifi1,
// kwifimanager works on wifi 1 where txpower does not work -- jriddell // kwifimanager works on wifi 1 where txpower does not work -- jriddell
//*disablePower << "kdesu" << "iwconfig" << "eth1" << "txpower" << onOrOff; //*disablePower << "tdesu" << "iwconfig" << "eth1" << "txpower" << onOrOff;
*disablePower << "kdesu" << "iwconfig" << interface << "txpower" << onOrOff; *disablePower << "tdesu" << "iwconfig" << interface << "txpower" << onOrOff;
connect( disablePower, TQT_SIGNAL(processExited(KProcess*)), this, TQT_SLOT(slotDisablePowerProcessExited()) ); connect( disablePower, TQT_SIGNAL(processExited(KProcess*)), this, TQT_SLOT(slotDisablePowerProcessExited()) );
disablePower->start(KProcess::NotifyOnExit); disablePower->start(KProcess::NotifyOnExit);
} }
@ -558,7 +558,7 @@ void
KWiFiManagerApp::slotStartConfigEditor () KWiFiManagerApp::slotStartConfigEditor ()
{ {
KProcess startConf; KProcess startConf;
startConf << "kdesu" << locate("exe", "kcmshell") << "kcmwifi"; startConf << "tdesu" << locate("exe", "kcmshell") << "kcmwifi";
startConf.start (KProcess::DontCare); startConf.start (KProcess::DontCare);
} }

@ -32,6 +32,6 @@ tde_add_kpart( libkwireless AUTOMOC
SOURCES SOURCES
kwireless.cpp kwirelesswidget.cpp linuxwirelesswidget.cpp kwireless.cpp kwirelesswidget.cpp linuxwirelesswidget.cpp
propertytablebase.ui propertytable.cpp propertytablebase.ui propertytable.cpp
LINK kdeui-shared ${IW_LIBRARY} LINK tdeui-shared ${IW_LIBRARY}
DESTINATION ${PLUGIN_INSTALL_DIR} DESTINATION ${PLUGIN_INSTALL_DIR}
) )

@ -144,7 +144,7 @@ NetworkScanning::switchToNetwork()
delete tempfile; // autoDeletion off, so the file remains on disk delete tempfile; // autoDeletion off, so the file remains on disk
KProcess switchProc; KProcess switchProc;
switchProc << "kdesu" << tempfilename; switchProc << "tdesu" << tempfilename;
switchProc.start( KProcess::Block ); switchProc.start( KProcess::Block );
remove(tempfilename.ascii()); remove(tempfilename.ascii());

Loading…
Cancel
Save