Additional k => tde renaming and fixes

pull/1/head
Slávek Banko 11 years ago
parent 412ffbefdd
commit 5cc26ceed3

@ -65,7 +65,7 @@ option( BUILD_KPROFILEMETHOD "Build kprofilemethod" ${BUILD_ALL} )
option( BUILD_KSPY "Build kspy" ${BUILD_ALL} ) option( BUILD_KSPY "Build kspy" ${BUILD_ALL} )
option( BUILD_KSTARTPERF "Build kstartperf" ${BUILD_ALL} ) option( BUILD_KSTARTPERF "Build kstartperf" ${BUILD_ALL} )
option( BUILD_KUIVIEWER "Build kuiviewer" ${BUILD_ALL} ) option( BUILD_KUIVIEWER "Build kuiviewer" ${BUILD_ALL} )
option( BUILD_KUNITTEST "Build tdeunittest" ${BUILD_ALL} ) option( BUILD_TDEUNITTEST "Build tdeunittest" ${BUILD_ALL} )
option( BUILD_POXML "Build poxml" ${BUILD_ALL} ) option( BUILD_POXML "Build poxml" ${BUILD_ALL} )
option( BUILD_SCHECK "Build scheck" ${BUILD_ALL} ) option( BUILD_SCHECK "Build scheck" ${BUILD_ALL} )
option( BUILD_SCRIPTS "Build scripts" ${BUILD_ALL} ) option( BUILD_SCRIPTS "Build scripts" ${BUILD_ALL} )
@ -105,7 +105,7 @@ tde_conditional_add_subdirectory( BUILD_KPROFILEMETHOD kprofilemethod )
tde_conditional_add_subdirectory( BUILD_KSPY kspy ) tde_conditional_add_subdirectory( BUILD_KSPY kspy )
tde_conditional_add_subdirectory( BUILD_KSTARTPERF kstartperf ) tde_conditional_add_subdirectory( BUILD_KSTARTPERF kstartperf )
tde_conditional_add_subdirectory( BUILD_KUIVIEWER kuiviewer ) tde_conditional_add_subdirectory( BUILD_KUIVIEWER kuiviewer )
tde_conditional_add_subdirectory( BUILD_KUNITTEST tdeunittest ) tde_conditional_add_subdirectory( BUILD_TDEUNITTEST tdeunittest )
tde_conditional_add_subdirectory( BUILD_POXML poxml ) tde_conditional_add_subdirectory( BUILD_POXML poxml )
tde_conditional_add_subdirectory( BUILD_SCHECK scheck ) tde_conditional_add_subdirectory( BUILD_SCHECK scheck )
tde_conditional_add_subdirectory( BUILD_SCRIPTS scripts ) tde_conditional_add_subdirectory( BUILD_SCRIPTS scripts )

@ -25,13 +25,13 @@ libcervisiapart_la_SOURCES = updateview.cpp protocolview.cpp protocolview.skel \
entry_status.cpp stringmatcher.cpp cvsinitdlg.cpp ignorelistbase.cpp dirignorelist.cpp \ entry_status.cpp stringmatcher.cpp cvsinitdlg.cpp ignorelistbase.cpp dirignorelist.cpp \
globalignorelist.cpp editwithmenu.cpp logmessageedit.cpp globalignorelist.cpp editwithmenu.cpp logmessageedit.cpp
libcervisiapart_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) libcervisiapart_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
libcervisiapart_la_LIBADD = $(LIB_TDEFILE) $(LIB_KPARTS) $(LIB_KUTILS) \ libcervisiapart_la_LIBADD = $(LIB_TDEFILE) $(LIB_TDEPARTS) $(LIB_TDEUTILS) \
cvsservice/libcvsservice.la libcervisia.la cvsservice/libcvsservice.la libcervisia.la
libcervisiapart_la_COMPILE_FIRST = cvsservice/cvsservice_stub.h cervisiasettings.h libcervisiapart_la_COMPILE_FIRST = cvsservice/cvsservice_stub.h cervisiasettings.h
cervisia_la_SOURCES = main.cpp cervisiashell.cpp cervisia_la_SOURCES = main.cpp cervisiashell.cpp
cervisia_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) -module $(KDE_PLUGIN) cervisia_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) -module $(KDE_PLUGIN)
cervisia_la_LIBADD = $(LIB_KPARTS) $(LIB_KUTILS) cvsservice/libcvsservice.la libcervisia.la cervisia_la_LIBADD = $(LIB_TDEPARTS) $(LIB_TDEUTILS) cvsservice/libcvsservice.la libcervisia.la
cervisia_la_COMPILE_FIRST = cvsservice/cvsservice_stub.h cervisiasettings.h cervisia_la_COMPILE_FIRST = cvsservice/cvsservice_stub.h cervisiasettings.h
man_MANS = cervisia.1 man_MANS = cervisia.1

@ -12,7 +12,7 @@ bin_PROGRAMS =
tdeinit_LTLIBRARIES = cvsservice.la cvsaskpass.la tdeinit_LTLIBRARIES = cvsservice.la cvsaskpass.la
cvsservice_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module cvsservice_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
cvsservice_la_LIBADD = $(LIB_KIO) cvsservice_la_LIBADD = $(LIB_TDEIO)
cvsservice_la_SOURCES = main.cpp cvsservice.cpp cvsjob.cpp \ cvsservice_la_SOURCES = main.cpp cvsservice.cpp cvsjob.cpp \
cvsservice.skel cvsservice.stub cvsjob.skel cvsjob.stub \ cvsservice.skel cvsservice.stub cvsjob.skel cvsjob.stub \
repository.cpp repository.skel repository.stub sshagent.cpp \ repository.cpp repository.skel repository.stub sshagent.cpp \

@ -1,4 +1,4 @@
#cmakedefine VERSION "@version@" #cmakedefine VERSION "@version@"
// kcachegrind // tdecachegrind
#cmakedefine HAVE_MMAP 1 #cmakedefine HAVE_MMAP 1

@ -29,7 +29,7 @@ bin_PROGRAMS = ${APP_NAME_LC}
# the application source, library search path, and link libraries # the application source, library search path, and link libraries
${APP_NAME_LC}_SOURCES = main.cpp ${APP_NAME_LC}.cpp ${APP_NAME_LC}_SOURCES = main.cpp ${APP_NAME_LC}.cpp
${APP_NAME_LC}_LDFLAGS = \$(KDE_RPATH) \$(all_libraries) ${APP_NAME_LC}_LDFLAGS = \$(KDE_RPATH) \$(all_libraries)
${APP_NAME_LC}_LDADD = \$(LIB_KPARTS) ${APP_NAME_LC}_LDADD = \$(LIB_TDEPARTS)
# this is where the desktop file will go # this is where the desktop file will go
xdg_apps_DATA = ${APP_NAME_LC}.desktop xdg_apps_DATA = ${APP_NAME_LC}.desktop
@ -46,7 +46,7 @@ kde_module_LTLIBRARIES = lib${APP_NAME_LC}part.la
# the Part's source, library search path, and link libraries # the Part's source, library search path, and link libraries
lib${APP_NAME_LC}part_la_SOURCES = ${APP_NAME_LC}_part.cpp lib${APP_NAME_LC}part_la_SOURCES = ${APP_NAME_LC}_part.cpp
lib${APP_NAME_LC}part_la_LDFLAGS = -module \$(KDE_PLUGIN) \$(all_libraries) lib${APP_NAME_LC}part_la_LDFLAGS = -module \$(KDE_PLUGIN) \$(all_libraries)
lib${APP_NAME_LC}part_la_LIBADD = \$(LIB_KPARTS) \$(LIB_TDEFILE) lib${APP_NAME_LC}part_la_LIBADD = \$(LIB_TDEPARTS) \$(LIB_TDEFILE)
# this is where the desktop file will go # this is where the desktop file will go
partdesktopdir = \$(kde_servicesdir) partdesktopdir = \$(kde_servicesdir)

@ -11,7 +11,7 @@ kde_module_LTLIBRARIES = lib${APP_NAME_LC}plugin.la
# This is all standard. Remove the LIB_TDEHTML reference if you are not # This is all standard. Remove the LIB_TDEHTML reference if you are not
# using the TDEHTML Part # using the TDEHTML Part
lib${APP_NAME_LC}plugin_la_SOURCES = plugin_${APP_NAME_LC}.cpp lib${APP_NAME_LC}plugin_la_SOURCES = plugin_${APP_NAME_LC}.cpp
lib${APP_NAME_LC}plugin_la_LIBADD = \$(LIB_KPARTS) \$(LIB_TDEHTML) lib${APP_NAME_LC}plugin_la_LIBADD = \$(LIB_TDEPARTS) \$(LIB_TDEHTML)
lib${APP_NAME_LC}plugin_la_LDFLAGS = -module \$(KDE_PLUGIN) \$(all_libraries) lib${APP_NAME_LC}plugin_la_LDFLAGS = -module \$(KDE_PLUGIN) \$(all_libraries)
# Install the .rc file in the Part's directory (in this case, the part # Install the .rc file in the Part's directory (in this case, the part

@ -10,7 +10,7 @@ kde_module_LTLIBRARIES = tdefile_po.la
tdefile_po_la_SOURCES = tdefile_po.cpp tdefile_po_la_SOURCES = tdefile_po.cpp
tdefile_po_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) tdefile_po_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
tdefile_po_la_LIBADD = ../../common/libkbabelcommon.la $(LIB_KIO) tdefile_po_la_LIBADD = ../../common/libkbabelcommon.la $(LIB_TDEIO)
# let automoc handle all of the meta source files (moc) # let automoc handle all of the meta source files (moc)
METASOURCES = AUTO METASOURCES = AUTO

@ -26,15 +26,15 @@ libcatalogmanager_la_SOURCES = catalogmanageriface.skel \
libcatalogmanager_la_LIBADD = ../commonui/libkbabelcommonui.la \ libcatalogmanager_la_LIBADD = ../commonui/libkbabelcommonui.la \
../kbabeldict/libkbabeldict.la ./libcvs/libcatalogmanagercvs.la \ ../kbabeldict/libkbabeldict.la ./libcvs/libcatalogmanagercvs.la \
./libsvn/libcatalogmanagersvn.la $(LIB_KIO) ./libsvn/libcatalogmanagersvn.la $(LIB_TDEIO)
libcatalogmanager_la_LDFLAGS = $(all_libraries) -no-undefined $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor $(LIB_KPARTS) libcatalogmanager_la_LDFLAGS = $(all_libraries) -no-undefined $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor $(LIB_TDEPARTS)
catalogmanager_SOURCES = main.cpp catalogmanager_SOURCES = main.cpp
# the libraries to link against. # the libraries to link against.
catalogmanager_LDADD = libcatalogmanager.la catalogmanager_LDADD = libcatalogmanager.la
catalogmanager_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor $(LIB_KPARTS) catalogmanager_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor $(LIB_TDEPARTS)
# these are the headers for your project # these are the headers for your project
noinst_HEADERS = catalogmanageriface.h catalogmanager.h \ noinst_HEADERS = catalogmanageriface.h catalogmanager.h \

@ -524,7 +524,7 @@ void CatalogManagerView::saveMarks()
} }
#if KDE_IS_VERSION( 3, 4, 92 ) #if KDE_IS_VERSION( 3, 4, 92 )
// Support for partially remote KIO slave like media: // Support for partially remote TDEIO slave like media:
const KURL url ( TDEIO::NetAccess::mostLocalURL( url2, this ) ); const KURL url ( TDEIO::NetAccess::mostLocalURL( url2, this ) );
#else #else
const KURL url ( url2 ); const KURL url ( url2 );

@ -25,7 +25,7 @@ libkbabelcommon_la_SOURCES = catalog.cpp catalogitem.cpp editcmd.cpp\
projectsettings.cpp \ projectsettings.cpp \
stringdistance.cpp stringdistance.cpp
libkbabelcommon_la_LIBADD = $(LIB_KIO) libgettext/libgettext.la libkbabelcommon_la_LIBADD = $(LIB_TDEIO) libgettext/libgettext.la
libkbabelcommon_la_LDFLAGS = $(all_libraries) -version-info 5:0:2 -no-undefined libkbabelcommon_la_LDFLAGS = $(all_libraries) -version-info 5:0:2 -no-undefined
# these are the headers for your project # these are the headers for your project

@ -19,7 +19,7 @@ libkbabelcommonui_la_SOURCES = tdelisteditor.ui context.cpp tdeactionselector.cp
cmdedit.cpp \ cmdedit.cpp \
diffpreferences.ui diffpreferences.ui
libkbabelcommonui_la_LIBADD = $(LIB_KIO) -ltdetexteditor ../common/libkbabelcommon.la ../kbabeldict/libkbabeldict.la libkbabelcommonui_la_LIBADD = $(LIB_TDEIO) -ltdetexteditor ../common/libkbabelcommon.la ../kbabeldict/libkbabeldict.la
libkbabelcommonui_la_LDFLAGS = $(all_libraries) libkbabelcommonui_la_LDFLAGS = $(all_libraries)

@ -27,8 +27,8 @@
* your version. * * your version. *
***************************************************************************/ ***************************************************************************/
#ifndef _KACTION_SELECTOR_H_ #ifndef _TDEACTION_SELECTOR_H_
#define _KACTION_SELECTOR_H_ #define _TDEACTION_SELECTOR_H_
#include <tqwidget.h> #include <tqwidget.h>
@ -408,4 +408,4 @@ private:
TDEActionSelectorPrivate *d; TDEActionSelectorPrivate *d;
}; };
#endif // _KACTION_SELECTOR_H_ #endif // _TDEACTION_SELECTOR_H_

@ -17,7 +17,7 @@ INCLUDES = $(all_includes)
# which sources should be compiled for kbabeldict # which sources should be compiled for kbabeldict
#libkbabeltools_la_SOURCES = toolaction.cpp tdeactionselector.cpp toolselectionwidget.cpp #libkbabeltools_la_SOURCES = toolaction.cpp tdeactionselector.cpp toolselectionwidget.cpp
#libkbabeltools_la_LIBADD = $(LIB_TDECORE) $(LIB_KIO) #libkbabeltools_la_LIBADD = $(LIB_TDECORE) $(LIB_TDEIO)
#libkbabeltools_la_LDFLAGS = $(all_libraries) -module -version-info 1:0:0 -no-undefined #libkbabeltools_la_LDFLAGS = $(all_libraries) -module -version-info 1:0:0 -no-undefined
# these are the headers for your project # these are the headers for your project

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_accelstool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_accelstool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_argstool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_argstool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_contexttool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_contexttool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_equationstool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_equationstool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_lengthtool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_lengthtool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_nottranslatedtool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_nottranslatedtool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_pluraltool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_pluraltool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_punctuationtool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_punctuationtool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_regexptool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_regexptool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_whitespacetool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_whitespacetool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -1,6 +1,6 @@
INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes) INCLUDES = -I$(srcdir)/../../common -I../../common $(all_includes)
kbabel_xmltool_la_LIBADD = $(LIB_KIO) ../../common/libkbabelcommon.la kbabel_xmltool_la_LIBADD = $(LIB_TDEIO) ../../common/libkbabelcommon.la
####### Files ####### Files

@ -37,15 +37,15 @@ libkbabel_la_SOURCES = kbbookmarkhandler.cpp \
kde_kcfg_DATA=kbabel.kcfg kde_kcfg_DATA=kbabel.kcfg
libkbabel_la_LIBADD = ../commonui/libkbabelcommonui.la ../kbabeldict/libkbabeldict.la $(LIB_KIO) $(LIB_KSPELL) libkbabel_la_LIBADD = ../commonui/libkbabelcommonui.la ../kbabeldict/libkbabeldict.la $(LIB_TDEIO) $(LIB_TDESPELL)
libkbabel_la_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor $(LIB_KPARTS) libkbabel_la_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor $(LIB_TDEPARTS)
kbabel_SOURCES = main.cpp kbabel_SOURCES = main.cpp
# the libraries to link against. # the libraries to link against.
kbabel_LDADD = libkbabel.la kbabel_LDADD = libkbabel.la
kbabel_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor $(LIB_KPARTS) kbabel_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor $(LIB_TDEPARTS)
# these are the headers for your project # these are the headers for your project
noinst_HEADERS = kbabel.h kbabelview.h \ noinst_HEADERS = kbabel.h kbabelview.h \

@ -19,20 +19,20 @@ INCLUDES = -I$(srcdir)/../common -I$(top_builddir)/kbabel/common $(all_i
lib_LTLIBRARIES = libkbabeldictplugin.la lib_LTLIBRARIES = libkbabeldictplugin.la
libkbabeldictplugin_la_SOURCES = searchengine.cpp libkbabeldictplugin_la_SOURCES = searchengine.cpp
libkbabeldictplugin_la_LIBADD = $(LIB_TDECORE) libkbabeldictplugin_la_LIBADD = $(LIB_TDECORE)
libkbabeldictplugin_la_LDFLAGS = -version-info 3:0:2 $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor libkbabeldictplugin_la_LDFLAGS = -version-info 3:0:2 $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
libkbabeldict_la_SOURCES = kbabeldictbox.cpp \ libkbabeldict_la_SOURCES = kbabeldictbox.cpp \
kbabeldictiface.skel dictionarymenu.cpp dictchooser.cpp \ kbabeldictiface.skel dictionarymenu.cpp dictchooser.cpp \
aboutmoduledlg.cpp aboutmoduledlg.cpp
libkbabeldict_la_LIBADD = ../common/libkbabelcommon.la libkbabeldictplugin.la $(LIB_TDEUI) libkbabeldict_la_LIBADD = ../common/libkbabelcommon.la libkbabeldictplugin.la $(LIB_TDEUI)
libkbabeldict_la_LDFLAGS = $(all_libraries) -no-undefined $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor libkbabeldict_la_LDFLAGS = $(all_libraries) -no-undefined $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
kbabeldict_SOURCES = main.cpp kbabeldictview.cpp kbabeldict.cpp kbabelsplash.cpp kbabeldict_SOURCES = main.cpp kbabeldictview.cpp kbabeldict.cpp kbabelsplash.cpp
# the libraries to link against. # the libraries to link against.
kbabeldict_LDADD = libkbabeldict.la $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor kbabeldict_LDADD = libkbabeldict.la $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
kbabeldict_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor kbabeldict_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
# these are the headers for your project # these are the headers for your project
noinst_HEADERS = kbabeldict.h kbabeldictview.h kbabelsplash.h aboutmoduledlg.h noinst_HEADERS = kbabeldict.h kbabeldictview.h kbabelsplash.h aboutmoduledlg.h

@ -16,7 +16,7 @@ INCLUDES = -I$(srcdir)/../.. -I../../../common -I$(srcdir)/../../../comm
kbabeldict_dbsearchengine_la_SOURCES = KDBSearchEngine.cpp preferenceswidget.cpp \ kbabeldict_dbsearchengine_la_SOURCES = KDBSearchEngine.cpp preferenceswidget.cpp \
dbse_factory.cpp dbseprefwidget.ui database.cpp dbscan.cpp dbse_factory.cpp dbseprefwidget.ui database.cpp dbscan.cpp
#database.cpp dbscan.cpp #database.cpp dbscan.cpp
kbabeldict_dbsearchengine_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_KIO) $(LIB_DBIV) kbabeldict_dbsearchengine_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_TDEIO) $(LIB_DBIV)
kbabeldict_dbsearchengine_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined \ kbabeldict_dbsearchengine_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined \
$(DBIV_LDFLAGS) $(DBIV_LDFLAGS)

@ -16,7 +16,7 @@ INCLUDES = -I$(srcdir)/../.. -I$(srcdir)/../../../common $(all_includes)
kbabeldict_dbsearchengine2_la_SOURCES = dbscan.cpp preferenceswidget.cpp dbse2.ui KDBSearchEngine2.cpp database.cpp dbentries.cpp dbse2_factory.cpp sourcedialog.ui algorithms.cpp chunk.cpp kbabeldict_dbsearchengine2_la_SOURCES = dbscan.cpp preferenceswidget.cpp dbse2.ui KDBSearchEngine2.cpp database.cpp dbentries.cpp dbse2_factory.cpp sourcedialog.ui algorithms.cpp chunk.cpp
#kbabeldict_dbsearchengine2_la_SOURCES = KDBSearchEngine2.cpp database.cpp dbentries.cpp dbse2_factory.cpp #kbabeldict_dbsearchengine2_la_SOURCES = KDBSearchEngine2.cpp database.cpp dbentries.cpp dbse2_factory.cpp
kbabeldict_dbsearchengine2_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_KIO) $(LIB_DBIV)_cxx kbabeldict_dbsearchengine2_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_TDEIO) $(LIB_DBIV)_cxx
kbabeldict_dbsearchengine2_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined -L$(DBIV_LDFLAGS) kbabeldict_dbsearchengine2_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined -L$(DBIV_LDFLAGS)

@ -15,7 +15,7 @@ INCLUDES = -I$(srcdir)/../.. -I../../../common -I$(srcdir)/../../../comm
kbabeldict_poauxiliary_la_SOURCES = poauxiliary.cpp preferenceswidget.cpp\ kbabeldict_poauxiliary_la_SOURCES = poauxiliary.cpp preferenceswidget.cpp\
pa_factory.cpp pwidget.ui pa_factory.cpp pwidget.ui
kbabeldict_poauxiliary_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_KIO) kbabeldict_poauxiliary_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_TDEIO)
kbabeldict_poauxiliary_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined kbabeldict_poauxiliary_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined

@ -17,7 +17,7 @@ INCLUDES = -I$(srcdir)/../.. -I../../../common -I$(srcdir)/../../../comm
kbabeldict_pocompendium_la_SOURCES = pocompendium.cpp preferenceswidget.cpp \ kbabeldict_pocompendium_la_SOURCES = pocompendium.cpp preferenceswidget.cpp \
pc_factory.cpp pwidget.ui compendiumdata.cpp pc_factory.cpp pwidget.ui compendiumdata.cpp
kbabeldict_pocompendium_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_KIO) kbabeldict_pocompendium_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_TDEIO)
kbabeldict_pocompendium_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined kbabeldict_pocompendium_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined

@ -17,7 +17,7 @@ INCLUDES = -I$(srcdir)/../.. -I../../../common -I$(srcdir)/../../../comm
kbabeldict_tmxcompendium_la_SOURCES = tmxcompendium.cpp preferenceswidget.cpp \ kbabeldict_tmxcompendium_la_SOURCES = tmxcompendium.cpp preferenceswidget.cpp \
pc_factory.cpp pwidget.ui tmxcompendiumdata.cpp pc_factory.cpp pwidget.ui tmxcompendiumdata.cpp
kbabeldict_tmxcompendium_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_KIO) kbabeldict_tmxcompendium_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_TDEIO)
kbabeldict_tmxcompendium_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined kbabeldict_tmxcompendium_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined

@ -11,8 +11,8 @@ bin_PROGRAMS = kbugbuster
kbugbuster_SOURCES = main.cpp kbugbuster_SOURCES = main.cpp
kbugbuster_LDADD = -ltdeutils gui/libkbbmainwindow.la \ kbugbuster_LDADD = -ltdeutils gui/libkbbmainwindow.la \
backend/libkbbbackend.la $(LIB_TDEHTML) $(LIB_KIO) -ltdefx $(LIB_KUTILS) backend/libkbbbackend.la $(LIB_TDEHTML) $(LIB_TDEIO) -ltdefx $(LIB_TDEUTILS)
kbugbuster_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor $(LIB_KUTILS) kbugbuster_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor $(LIB_TDEUTILS)
xdg_apps_DATA = kbugbuster.desktop xdg_apps_DATA = kbugbuster.desktop

@ -25,9 +25,9 @@ install( FILES kdeaccountsplugin.desktop
DESTINATION ${DATA_INSTALL_DIR}/tdeabc/formats ) DESTINATION ${DATA_INSTALL_DIR}/tdeabc/formats )
##### kabcformat_kdeaccounts (module) ########### ##### tdeabcformat_kdeaccounts (module) ###########
tde_add_kpart( kabcformat_kdeaccounts tde_add_kpart( tdeabcformat_kdeaccounts
SOURCES kdeaccountsformat.cpp SOURCES kdeaccountsformat.cpp
LINK tdeabc-shared LINK tdeabc-shared
DESTINATION ${PLUGIN_INSTALL_DIR} DESTINATION ${PLUGIN_INSTALL_DIR}

@ -1,10 +1,10 @@
INCLUDES = $(all_includes) INCLUDES = $(all_includes)
noinst_HEADERS = kdeaccountsformat.h noinst_HEADERS = kdeaccountsformat.h
kde_module_LTLIBRARIES = kabcformat_kdeaccounts.la kde_module_LTLIBRARIES = tdeabcformat_kdeaccounts.la
kabcformat_kdeaccounts_la_SOURCES = kdeaccountsformat.cpp tdeabcformat_kdeaccounts_la_SOURCES = kdeaccountsformat.cpp
kabcformat_kdeaccounts_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) tdeabcformat_kdeaccounts_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
kabcformat_kdeaccounts_la_LIBADD = -ltdeabc tdeabcformat_kdeaccounts_la_LIBADD = -ltdeabc
# let automoc handle all of the meta source files (moc) # let automoc handle all of the meta source files (moc)
METASOURCES = AUTO METASOURCES = AUTO

@ -41,4 +41,4 @@ Name[zh_TW]=TDE 主目錄帳號
[Plugin] [Plugin]
Type=text Type=text
X-TDE-Library=kabcformat_kdeaccounts X-TDE-Library=tdeabcformat_kdeaccounts

@ -23,13 +23,13 @@ INCLUDES = $(all_includes)
bin_PROGRAMS = kmtrace demangle kmmatch bin_PROGRAMS = kmtrace demangle kmmatch
kmtrace_SOURCES = kmtrace.cpp kmtrace_SOURCES = kmtrace.cpp
kmtrace_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor kmtrace_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
demangle_SOURCES = demangle.cpp demangle_SOURCES = demangle.cpp
demangle_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor demangle_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
kmmatch_SOURCES = match.cpp kmmatch_SOURCES = match.cpp
kmmatch_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor kmmatch_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
bin_SCRIPTS = kminspector bin_SCRIPTS = kminspector

@ -26,8 +26,8 @@ bin_PROGRAMS = kompare
# the application source, library search path, and link libraries # the application source, library search path, and link libraries
kompare_SOURCES = main.cpp kompare_shell.cpp kompareurldialog.cpp kompare_SOURCES = main.cpp kompare_shell.cpp kompareurldialog.cpp
kompare_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor kompare_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
kompare_LDADD = $(LIB_KPARTS) \ kompare_LDADD = $(LIB_TDEPARTS) \
$(top_builddir)/kompare/interfaces/libkompareinterface.la \ $(top_builddir)/kompare/interfaces/libkompareinterface.la \
$(top_builddir)/kompare/libdialogpages/libdialogpages.la \ $(top_builddir)/kompare/libdialogpages/libdialogpages.la \
-ltdetexteditor -ltdetexteditor

@ -20,7 +20,7 @@ libkomparenavtreepart_la_SOURCES = \
komparenavtreepart.cpp komparenavtreepart.cpp
libkomparenavtreepart_la_LDFLAGS = $(KDE_PLUGIN) $(all_libraries) libkomparenavtreepart_la_LDFLAGS = $(KDE_PLUGIN) $(all_libraries)
libkomparenavtreepart_la_LIBADD = $(LIB_KPARTS) ../libdiff2/libdiff2.la libkomparenavtreepart_la_LIBADD = $(LIB_TDEPARTS) ../libdiff2/libdiff2.la
# this is where the desktop file will go # this is where the desktop file will go
partdesktopdir = $(kde_servicesdir) partdesktopdir = $(kde_servicesdir)

@ -34,7 +34,7 @@ libkomparepart_la_SOURCES = \
komparesaveoptionswidget.cpp komparesaveoptionswidget.cpp
libkomparepart_la_LDFLAGS = $(KDE_PLUGIN) $(all_libraries) libkomparepart_la_LDFLAGS = $(KDE_PLUGIN) $(all_libraries)
libkomparepart_la_LIBADD = $(LIB_KPARTS) $(LIB_TDEFILE) \ libkomparepart_la_LIBADD = $(LIB_TDEPARTS) $(LIB_TDEFILE) \
../libdialogpages/libdialogpages.la \ ../libdialogpages/libdialogpages.la \
../libdiff2/libdiff2.la \ ../libdiff2/libdiff2.la \
../interfaces/libkompareinterface.la ../interfaces/libkompareinterface.la

@ -1,11 +1,11 @@
INCLUDES = $(all_includes) INCLUDES = $(all_includes)
lib_LTLIBRARIES = libkstartperf.la lib_LTLIBRARIES = libkstartperf.la
libkstartperf_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ldl -version-info 1:0 -no-undefined libkstartperf_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ldl -version-info 1:0 -no-undefined
libkstartperf_la_SOURCES = libkstartperf.c libkstartperf_la_SOURCES = libkstartperf.c
bin_PROGRAMS = kstartperf bin_PROGRAMS = kstartperf
kstartperf_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) kstartperf_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO)
kstartperf_LDADD = $(LIB_TDECORE) kstartperf_LDADD = $(LIB_TDECORE)
kstartperf_SOURCES = kstartperf.cpp kstartperf_SOURCES = kstartperf.cpp

@ -25,8 +25,8 @@ bin_PROGRAMS = kuiviewer
# the application source, library search path, and link libraries # the application source, library search path, and link libraries
kuiviewer_SOURCES = main.cpp kuiviewer.cpp kuiviewer_SOURCES = main.cpp kuiviewer.cpp
kuiviewer_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor kuiviewer_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
kuiviewer_LDADD = $(LIB_KPARTS) kuiviewer_LDADD = $(LIB_TDEPARTS)
xdg_apps_DATA =kuiviewer.desktop xdg_apps_DATA =kuiviewer.desktop
@ -42,7 +42,7 @@ kde_module_LTLIBRARIES = libkuiviewerpart.la quithumbnail.la
# the Part's source, library search path, and link libraries # the Part's source, library search path, and link libraries
libkuiviewerpart_la_SOURCES = kuiviewer_part.cpp libkuiviewerpart_la_SOURCES = kuiviewer_part.cpp
libkuiviewerpart_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) libkuiviewerpart_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
libkuiviewerpart_la_LIBADD = $(LIB_KPARTS) $(LIB_TDEFILE) $(LIB_QUI) libkuiviewerpart_la_LIBADD = $(LIB_TDEPARTS) $(LIB_TDEFILE) $(LIB_QUI)
# this is where the desktop file will go # this is where the desktop file will go
partdesktopdir = $(kde_servicesdir) partdesktopdir = $(kde_servicesdir)

@ -7,23 +7,23 @@ KDE_CXXFLAGS = $(USE_EXCEPTIONS)
SUBDIRS = antlr SUBDIRS = antlr
split2po_SOURCES = split.cpp parser.cpp split2po_SOURCES = split.cpp parser.cpp
split2po_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor split2po_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
split2po_LDADD = $(LIB_QT) split2po_LDADD = $(LIB_QT)
xml2pot_SOURCES = xml2pot.cpp parser.cpp xml2pot_SOURCES = xml2pot.cpp parser.cpp
xml2pot_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor xml2pot_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
xml2pot_LDADD = $(LIB_QT) xml2pot_LDADD = $(LIB_QT)
po2xml_SOURCES = GettextLexer.cpp GettextParser.cpp po2xml.cpp parser.cpp po2xml_SOURCES = GettextLexer.cpp GettextParser.cpp po2xml.cpp parser.cpp
po2xml_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor po2xml_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
po2xml_LDADD = antlr/src/libantlr.la $(LIB_QT) po2xml_LDADD = antlr/src/libantlr.la $(LIB_QT)
swappo_SOURCES = GettextLexer.cpp GettextParser.cpp swappo.cpp parser.cpp swappo_SOURCES = GettextLexer.cpp GettextParser.cpp swappo.cpp parser.cpp
swappo_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor swappo_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
swappo_LDADD = antlr/src/libantlr.la $(LIB_QT) swappo_LDADD = antlr/src/libantlr.la $(LIB_QT)
transxx_SOURCES = GettextLexer.cpp GettextParser.cpp transxx.cpp parser.cpp transxx_SOURCES = GettextLexer.cpp GettextParser.cpp transxx.cpp parser.cpp
transxx_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor transxx_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
transxx_LDADD = antlr/src/libantlr.la $(LIB_QT) transxx_LDADD = antlr/src/libantlr.la $(LIB_QT)
parser: parser:

@ -8,7 +8,7 @@ msgstr ""
"POT-Creation-Date: 2001-02-09 01:25+0100\n" "POT-Creation-Date: 2001-02-09 01:25+0100\n"
"PO-Revision-Date: 2001-07-02 20:31MET\n" "PO-Revision-Date: 2001-07-02 20:31MET\n"
"Last-Translator: Stephan Kulow <coolo@kde.org>\n" "Last-Translator: Stephan Kulow <coolo@kde.org>\n"
"Language-Team: german <tde-i18n-de@kde.org>\n" "Language-Team: german <kde-i18n-de@kde.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"

@ -60,7 +60,7 @@ int main(int argc, char **argv)
projectId += fi.baseName( false ); projectId += fi.baseName( false );
headerLines.gres( TQRegExp( "^Project-Id-Version:.*" ), projectId ); headerLines.gres( TQRegExp( "^Project-Id-Version:.*" ), projectId );
headerLines.gres( TQRegExp( "^Last-Translator:.*" ), "Last-Translator: transxx program <null@kde.org>" ); headerLines.gres( TQRegExp( "^Last-Translator:.*" ), "Last-Translator: transxx program <null@kde.org>" );
headerLines.gres( TQRegExp( "^Language-Team:.*" ), "Language-Team: Test Language <tde-i18n-doc@kde.org>" ); headerLines.gres( TQRegExp( "^Language-Team:.*" ), "Language-Team: Test Language <kde-i18n-doc@kde.org>" );
TQString revisionDate ( "PO-Revision-Date: " ); TQString revisionDate ( "PO-Revision-Date: " );
const TQDateTime dt = TQDateTime::currentDateTime( Qt::UTC ); const TQDateTime dt = TQDateTime::currentDateTime( Qt::UTC );
revisionDate += dt.toString( "yyyy-MM-dd hh:mm+0000" ); revisionDate += dt.toString( "yyyy-MM-dd hh:mm+0000" );

@ -46,7 +46,7 @@ int main( int argc, char **argv )
cout << "\"POT-Creation-Date: " << now.toString("yyyy-MM-dd hh:mm").utf8().data() << "+0000\\n\"\n"; cout << "\"POT-Creation-Date: " << now.toString("yyyy-MM-dd hh:mm").utf8().data() << "+0000\\n\"\n";
cout << "\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\n"; cout << "\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\n";
cout << "\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n"; cout << "\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n";
cout << "\"Language-Team: LANGUAGE <tde-i18n-doc@kde.org>\\n\"\n"; cout << "\"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\\n\"\n";
cout << "\"MIME-Version: 1.0\\n\"\n"; cout << "\"MIME-Version: 1.0\\n\"\n";
cout << "\"Content-Type: application/x-xml2pot; charset=UTF-8\\n\"\n"; cout << "\"Content-Type: application/x-xml2pot; charset=UTF-8\\n\"\n";
cout << "\"Content-Transfer-Encoding: 8bit\\n\"\n"; cout << "\"Content-Transfer-Encoding: 8bit\\n\"\n";

@ -11,10 +11,10 @@
include( ConfigureChecks.cmake ) include( ConfigureChecks.cmake )
set( KCACHEGRIND_VERSION "0.4.6kde" ) set( TDECACHEGRIND_VERSION "0.4.6kde" )
configure_file( version.h.in version.h @ONLY ) configure_file( version.h.in version.h @ONLY )
configure_file( tdecachegrind.spec.in kcachegrind.spec @ONLY ) configure_file( tdecachegrind.spec.in tdecachegrind.spec @ONLY )
configure_file( tdecachegrind.lsm.in kcachegrind.lsm @ONLY ) configure_file( tdecachegrind.lsm.in tdecachegrind.lsm @ONLY )
add_subdirectory( tdecachegrind ) add_subdirectory( tdecachegrind )
add_subdirectory( pics ) add_subdirectory( pics )

@ -21,7 +21,7 @@ tdecachegrind_SOURCES = \
tdecachegrind_COMPILE_FIRST = ../version.h tdecachegrind_COMPILE_FIRST = ../version.h
tdecachegrind_LDADD = $(LIB_KIO) tdecachegrind_LDADD = $(LIB_TDEIO)
KDE_ICON = AUTO KDE_ICON = AUTO
@ -44,7 +44,7 @@ INCLUDES= $(all_includes)
METASOURCES = AUTO METASOURCES = AUTO
# the library search path. # the library search path.
tdecachegrind_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor tdecachegrind_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
rcdir = $(kde_datadir)/tdecachegrind rcdir = $(kde_datadir)/tdecachegrind
rc_DATA = tdecachegrindui.rc rc_DATA = tdecachegrindui.rc

@ -10,7 +10,7 @@ kde_module_LTLIBRARIES = tdefile_cpp.la
tdefile_cpp_la_SOURCES = tdefile_cpp.cpp tdefile_cpp_la_SOURCES = tdefile_cpp.cpp
tdefile_cpp_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) tdefile_cpp_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
tdefile_cpp_la_LIBADD = $(LIB_KIO) tdefile_cpp_la_LIBADD = $(LIB_TDEIO)
# let automoc handle all of the meta source files (moc) # let automoc handle all of the meta source files (moc)
METASOURCES = AUTO METASOURCES = AUTO

@ -10,7 +10,7 @@ kde_module_LTLIBRARIES = tdefile_diff.la
tdefile_diff_la_SOURCES = tdefile_diff.cpp tdefile_diff_la_SOURCES = tdefile_diff.cpp
tdefile_diff_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) tdefile_diff_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
tdefile_diff_la_LIBADD = $(LIB_KSYCOCA) tdefile_diff_la_LIBADD = $(LIB_TDESYCOCA)
# let automoc handle all of the meta source files (moc) # let automoc handle all of the meta source files (moc)
METASOURCES = AUTO METASOURCES = AUTO

@ -9,7 +9,7 @@ kde_module_LTLIBRARIES = tdefile_ts.la
tdefile_ts_la_SOURCES = tdefile_ts.cpp tdefile_ts_la_SOURCES = tdefile_ts.cpp
tdefile_ts_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) tdefile_ts_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
tdefile_ts_la_LIBADD = $(LIB_KIO) tdefile_ts_la_LIBADD = $(LIB_TDEIO)
# let automoc handle all of the meta source files (moc) # let automoc handle all of the meta source files (moc)
METASOURCES = AUTO METASOURCES = AUTO

@ -6,8 +6,8 @@ kde_module_LTLIBRARIES = kded_ksvnd.la
kded_ksvnd_la_SOURCES = commitdlg.ui ksvnd.cpp ksvnd.skel kded_ksvnd_la_SOURCES = commitdlg.ui ksvnd.cpp ksvnd.skel
kded_ksvnd_la_METASOURCES = AUTO kded_ksvnd_la_METASOURCES = AUTO
kded_ksvnd_la_LDFLAGS = $(all_libraries) -module -avoid-version kded_ksvnd_la_LDFLAGS = $(all_libraries) -module -avoid-version
#kded_ksvnd_la_LIBADD = $(top_builddir)/tdewallet/client/libtdewalletclient.la $(LIB_KIO) #kded_ksvnd_la_LIBADD = $(top_builddir)/tdewallet/client/libtdewalletclient.la $(LIB_TDEIO)
kded_ksvnd_la_LIBADD = $(LIB_KIO) kded_ksvnd_la_LIBADD = $(LIB_TDEIO)
kded_DATA = ksvnd.desktop kded_DATA = ksvnd.desktop
kdeddir = $(kde_servicesdir)/kded kdeddir = $(kde_servicesdir)/kded

@ -5,7 +5,7 @@ AM_LDFLAGS = $(all_libraries)
tdeio_svn_helper_SOURCES = tdeio_svn_helper.cpp subversioncheckout.ui subversionswitch.ui subversionlog.ui subversiondiff.ui tdeio_svn_helper_SOURCES = tdeio_svn_helper.cpp subversioncheckout.ui subversionswitch.ui subversionlog.ui subversiondiff.ui
tdeio_svn_helper_LDFLAGS = $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_KSYCOCA) $(LIB_KIO) $(all_libraries) tdeio_svn_helper_LDFLAGS = $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDESYCOCA) $(LIB_TDEIO) $(all_libraries)
servicemenudir = \ servicemenudir = \
$(kde_datadir)/konqueror/servicemenus $(kde_datadir)/konqueror/servicemenus

@ -17,8 +17,8 @@
Boston, MA 02110-1301, USA. Boston, MA 02110-1301, USA.
*/ */
#ifndef _KIO_SVN_HELPER_H_ #ifndef _TDEIO_SVN_HELPER_H_
#define _KIO_SVN_HELPER_H_ #define _TDEIO_SVN_HELPER_H_
#include <tdeapplication.h> #include <tdeapplication.h>
#include <tdeio/job.h> #include <tdeio/job.h>

@ -4,15 +4,15 @@ METASOURCES = AUTO
lib_LTLIBRARIES = libtdeunittestgui.la lib_LTLIBRARIES = libtdeunittestgui.la
libtdeunittestgui_la_SOURCES = testerwidget.ui runnergui.cpp dcopinterface.skel libtdeunittestgui_la_SOURCES = testerwidget.ui runnergui.cpp dcopinterface.skel
libtdeunittestgui_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -ltdeunittest libtdeunittestgui_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -ltdeunittest
libtdeunittestgui_la_LIBADD = -ltdeunittest $(LIB_TDECORE) libtdeunittestgui_la_LIBADD = -ltdeunittest $(LIB_TDECORE)
runnergui.lo : testerwidget.h runnergui.lo : testerwidget.h
bin_PROGRAMS = tdeunittestguimodrunner bin_PROGRAMS = tdeunittestguimodrunner
tdeunittestguimodrunner_SOURCES = guimodrunner.cpp tdeunittestguimodrunner_SOURCES = guimodrunner.cpp
tdeunittestguimodrunner_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -ltdeunittest tdeunittestguimodrunner_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -ltdeunittest
tdeunittestguimodrunner_LDADD = libtdeunittestgui.la $(LIB_TDECORE) $(LIB_KIO) tdeunittestguimodrunner_LDADD = libtdeunittestgui.la $(LIB_TDECORE) $(LIB_TDEIO)
noinst_HEADERS = dcopinterface.h noinst_HEADERS = dcopinterface.h
libtdeunittestinclude_HEADERS = runnergui.h libtdeunittestinclude_HEADERS = runnergui.h

@ -17,8 +17,8 @@
* Free Software Foundation, Inc., * * Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/ ***************************************************************************/
#ifndef KUNITTEST_DCOPINTERFACE_H #ifndef TDEUNITTEST_DCOPINTERFACE_H
#define KUNITTEST_DCOPINTERFACE_H #define TDEUNITTEST_DCOPINTERFACE_H
#include <dcopobject.h> #include <dcopobject.h>
#include <tqstring.h> #include <tqstring.h>

@ -31,7 +31,7 @@
using namespace KUnitTest; using namespace KUnitTest;
KUNITTEST_MODULE( tdeunittest_samplemodule, "Suite1" ) TDEUNITTEST_MODULE( tdeunittest_samplemodule, "Suite1" )
KUNITTEST_MODULE_REGISTER_TESTER( SlotSampleTester ) TDEUNITTEST_MODULE_REGISTER_TESTER( SlotSampleTester )
KUNITTEST_MODULE_REGISTER_TESTER( SomeSampleTester ) TDEUNITTEST_MODULE_REGISTER_TESTER( SomeSampleTester )
KUNITTEST_MODULE_REGISTER_TESTER( SomeExtraTester ) TDEUNITTEST_MODULE_REGISTER_TESTER( SomeExtraTester )

@ -33,9 +33,9 @@
using namespace KUnitTest; using namespace KUnitTest;
KUNITTEST_MODULE( tdeunittest_samplemodule2, "Suite2::Sub" ) TDEUNITTEST_MODULE( tdeunittest_samplemodule2, "Suite2::Sub" )
KUNITTEST_MODULE_REGISTER_TESTER( SimpleSampleTester ) TDEUNITTEST_MODULE_REGISTER_TESTER( SimpleSampleTester )
KUNITTEST_MODULE_REGISTER_TESTER( SomeSampleTester ) TDEUNITTEST_MODULE_REGISTER_TESTER( SomeSampleTester )
void SimpleSampleTester::allTests() void SimpleSampleTester::allTests()
{ {

@ -4,11 +4,11 @@ METASOURCES = AUTO
check_PROGRAMS = sampletests sampletestsgui check_PROGRAMS = sampletests sampletestsgui
sampletests_SOURCES = main.cpp sampletest.cpp sampletests_SOURCES = main.cpp sampletest.cpp
sampletests_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor sampletests_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
sampletests_LDADD = -ltdeunittest sampletests_LDADD = -ltdeunittest
sampletestsgui_SOURCES = maingui.cpp sampletest.cpp sampletestsgui_SOURCES = maingui.cpp sampletest.cpp
sampletestsgui_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor sampletestsgui_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
# Normally you would write -ltdeunittestgui here, but since the examples # Normally you would write -ltdeunittestgui here, but since the examples
# are bundled with the library source code itself we don't want to # are bundled with the library source code itself we don't want to
# have you install the libraries before you can compile the examples. # have you install the libraries before you can compile the examples.

@ -32,9 +32,9 @@
using namespace KUnitTest; using namespace KUnitTest;
KUNITTEST_SUITE("SampleSuite"); TDEUNITTEST_SUITE("SampleSuite");
KUNITTEST_REGISTER_TESTER(SimpleSampleTester); TDEUNITTEST_REGISTER_TESTER(SimpleSampleTester);
KUNITTEST_REGISTER_TESTER(SomeSampleTester); TDEUNITTEST_REGISTER_TESTER(SomeSampleTester);
void SimpleSampleTester::allTests() void SimpleSampleTester::allTests()
{ {

@ -23,8 +23,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#ifndef _KUNITTEST_TESTER_H_ #ifndef _TDEUNITTEST_TESTER_H_
#define _KUNITTEST_TESTER_H_ #define _TDEUNITTEST_TESTER_H_
#include <tqlistview.h> #include <tqlistview.h>
#include <tqhbox.h> #include <tqhbox.h>

@ -113,8 +113,8 @@ widget_factory.cpp \
widget_utils.cpp \ widget_utils.cpp \
worktoolbar.cpp worktoolbar.cpp
#umbrello_LDADD = ./refactoring/librefactoring.la ./codeimport/libcodeimport.la ./codeimport/kdevcppparser/libkdevcppparser.la ./clipboard/libclipboard.la ./dialogs/libdialogs.la ./codegenerators/libcodegenerator.la $(AUTOLAYOUT_LIBS) $(LIB_TDEPRINT) $(LIB_KIO) #umbrello_LDADD = ./refactoring/librefactoring.la ./codeimport/libcodeimport.la ./codeimport/kdevcppparser/libkdevcppparser.la ./clipboard/libclipboard.la ./dialogs/libdialogs.la ./codegenerators/libcodegenerator.la $(AUTOLAYOUT_LIBS) $(LIB_TDEPRINT) $(LIB_TDEIO)
umbrello_LDADD = ./refactoring/librefactoring.la ./codeimport/libcodeimport.la ./codeimport/kdevcppparser/libkdevcppparser.la ./clipboard/libclipboard.la ./dialogs/libdialogs.la ./codegenerators/libcodegenerator.la ./docgenerators/libdocgenerators.la $(LIB_TDEPRINT) $(LIB_KIO) umbrello_LDADD = ./refactoring/librefactoring.la ./codeimport/libcodeimport.la ./codeimport/kdevcppparser/libkdevcppparser.la ./clipboard/libclipboard.la ./dialogs/libdialogs.la ./codegenerators/libcodegenerator.la ./docgenerators/libdocgenerators.la $(LIB_TDEPRINT) $(LIB_TDEIO)
## See section "dnl Not GPL compatible" in ../configure.in.in ## See section "dnl Not GPL compatible" in ../configure.in.in
# SUBDIRS = $(AUTOLAYOUT_DIR) codeimport dialogs clipboard pics codegenerators headings refactoring # SUBDIRS = $(AUTOLAYOUT_DIR) codeimport dialogs clipboard pics codegenerators headings refactoring

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* Copyright (C) 2002 by Roberto Raggi * * Copyright (C) 2002 by Roberto Raggi *
* roberto@tdevelop.org * * roberto@kdevelop.org *
* * * *
* This program is free software; you can redistribute it and/or modify * * This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by * * it under the terms of the GNU General Public License as published by *

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* Copyright (C) 2002 by Roberto Raggi * * Copyright (C) 2002 by Roberto Raggi *
* roberto@tdevelop.org * * roberto@kdevelop.org *
* * * *
* This program is free software; you can redistribute it and/or modify * * This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by * * it under the terms of the GNU General Public License as published by *

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -19,7 +19,7 @@
* *
*/ */
// adapted to tdevelop by Roberto Raggi <roberto@tdevelop.org> // adapted to tdevelop by Roberto Raggi <roberto@kdevelop.org>
#include "lookup.h" #include "lookup.h"

@ -19,7 +19,7 @@
* *
*/ */
// adapted to tdevelop by Roberto Raggi <roberto@tdevelop.org> // adapted to tdevelop by Roberto Raggi <roberto@kdevelop.org>
#ifndef _KJSLOOKUP_H_ #ifndef _KJSLOOKUP_H_
#define _KJSLOOKUP_H_ #define _KJSLOOKUP_H_

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of KDevelop /* This file is part of KDevelop
Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org> Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public

@ -2,7 +2,7 @@ INCLUDES = -I$(srcdir)/.. -I$(top_srcdir)/umbrello/docgenerators -I../../../umbr
METASOURCES = AUTO METASOURCES = AUTO
bin_PROGRAMS = umbodoc bin_PROGRAMS = umbodoc
AM_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor AM_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
umbodoc_COMPILE_FIRST = version.h umbodoc_COMPILE_FIRST = version.h
umbodoc_SOURCES = main.cpp umbodoc_SOURCES = main.cpp
umbodoc_LDADD = $(LIB_TDECORE) $(LIBXSLT_LIBS) $(LIBXML_LIBS) umbodoc_LDADD = $(LIB_TDECORE) $(LIBXSLT_LIBS) $(LIBXML_LIBS)

@ -29,8 +29,8 @@ class KURL;
* The methods in this class don't communicate with the user, so asking the format * The methods in this class don't communicate with the user, so asking the format
* to save the images in, checking if the target file exists and so on must be done before * to save the images in, checking if the target file exists and so on must be done before
* calling those methods, if needed. * calling those methods, if needed.
* The only exception is asking passwords for example when KIO slaves are used, as this * The only exception is asking passwords for example when TDEIO slaves are used, as this
* operation is made automatically by the KIO classes. * operation is made automatically by the TDEIO classes.
*/ */
class UMLViewImageExporterModel { class UMLViewImageExporterModel {
public: public:
@ -96,7 +96,7 @@ public:
* *
* This method creates the specified target directory if needed. If there was an * This method creates the specified target directory if needed. If there was an
* existing file with the same path as one to be created overwrites it without asking. * existing file with the same path as one to be created overwrites it without asking.
* The url used can be local or remote, using supported KIO slaves. * The url used can be local or remote, using supported TDEIO slaves.
* *
* @param imageType The type of the images the views will be exported to. * @param imageType The type of the images the views will be exported to.
* @param directory The url of the directory where the images will be saved. * @param directory The url of the directory where the images will be saved.
@ -112,7 +112,7 @@ public:
* *
* This method creates the needed directories, if any. If there was an existing * This method creates the needed directories, if any. If there was an existing
* file in the specified url overwrites it without asking. * file in the specified url overwrites it without asking.
* The url used can be local or remote, using supported KIO slaves. * The url used can be local or remote, using supported TDEIO slaves.
* *
* If some problem occurs when exporting, an error message is returned. * If some problem occurs when exporting, an error message is returned.
* *

Loading…
Cancel
Save