Additional renaming of kde to tde

pull/16/head
Timothy Pearson il y a 13 ans
Parent bd19c52fd4
révision 3b1405169d

@ -2,6 +2,6 @@ Look in the appropriate subdirectories or files to get more information
about the authors.
The package is maintained by Timothy Pearson <kb9vqf@pearsoncomputing.net>, however
numerous people, too many to count, have contributed to kdelibs as a
numerous people, too many to count, have contributed to tdelibs as a
whole. If you have a specific question, please ask on the Trinity project mailing
list at http://www.trinitydesktop.org/mailinglist.php

@ -14,9 +14,9 @@ cmake_minimum_required( VERSION 2.8 )
##### general package setup #####################
project( kdelibs )
project( tdelibs )
set( PACKAGE kdelibs )
set( PACKAGE tdelibs )
set( VERSION "3.5.13" )

@ -18,8 +18,8 @@ Make sure you get the following stuff from the repository:
qt-copy (This is qt-3.3.2)
arts
kdelibs
kdebase (strongly recommended but not strictly necessary)
tdelibs
tdebase (strongly recommended but not strictly necessary)
<any other package you are interested in>
It is important that you compile AND INSTALL the above packages in the
@ -91,7 +91,7 @@ file, "Makefile.in" as well as "Makefile" files. So it can be that after
some struggle to get QTDIR/KDEDIR setup correctly your setup is actually
correct, but old -incorrect- settings are still lying around.
The best thing to do in such a case is to do a "svn-clean" (from kdesdk/scripts).
The best thing to do in such a case is to do a "svn-clean" (from tdesdk/scripts).
This removes all files which aren't stored in the repository. You can then start all over
again with "makefile -f Makefile.cvs". Make sure you don't have any important
files lying around in your source tree any more, they will be deleted!
@ -102,20 +102,20 @@ Makefile.am but not a Makefile. If you try to compile such a directory
you will get an error like:
Making all in management
make[3]: Entering directory /home/gregturp/KDE/kdelibs/tdeprint/management'
make[3]: Entering directory /home/gregturp/KDE/tdelibs/tdeprint/management'
make[3]: *** No rule to make target all'. Stop.
make[3]: Leaving directory /home/gregturp/KDE/kdelibs/tdeprint/management'
make[3]: Leaving directory /home/gregturp/KDE/tdelibs/tdeprint/management'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory /home/gregturp/KDE/kdelibs/tdeprint'
make[2]: Leaving directory /home/gregturp/KDE/tdelibs/tdeprint'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory /home/gregturp/KDE/kdelibs'
make[1]: Leaving directory /home/gregturp/KDE/tdelibs'
make: *** [all-recursive-am] Error 2
The solution is to redo "make -f Makefile.cvs; ./configure".
You can create a single Makefile from a Makefile.am file with the
kdesdk/scripts/create_makefile script. Make sure to run it from the toplevel
directory. (E.g. /home/gregturp/KDE/kdelibs)
tdesdk/scripts/create_makefile script. Make sure to run it from the toplevel
directory. (E.g. /home/gregturp/KDE/tdelibs)
Problems?
=========
@ -131,7 +131,7 @@ a 'q', you probably have not setup your QTDIR correct or have the wrong
version of Qt.
If you encounter compile errors after updating from SVN, check whether you
need to update kdelibs as well. If the problems persists, wait a few hours,
need to update tdelibs as well. If the problems persists, wait a few hours,
usually compile errors are fixed shortly after they have been introduced.
If you still have problems read the kde-devel@kde.org mailinglist and/or

@ -13,8 +13,8 @@ should use "make distclean" instead of "make cvs-clean")
<p><ul><li>qt-copy (This is qt-3.3.2)
<li>arts
<li>kdelibs
<li>kdebase (strongly recommended but not strictly necessary)
<li>tdelibs
<li>tdebase (strongly recommended but not strictly necessary)
<li>any other package you are interested in
</ul>
@ -66,7 +66,7 @@ kde-common module.
<p>
Example:<br>
<pre>
cd kdelibs
cd tdelibs
ln -s ../kde-common/admin
</pre>
@ -113,7 +113,7 @@ a 'q', you probably have not setup your QTDIR correct or have the wrong
version of Qt.
<p>If you encounter compile errors after updating from CVS, check whether you
need to update kdelibs as well. If the problems persists, wait a few hours,
need to update tdelibs as well. If the problems persists, wait a few hours,
usually compile errors are fixed shortly after they have been introduced.
<p>If you still have problems read the kde-devel@kde.org mailinglist and/or

@ -70,9 +70,9 @@ or <a href="http://doc.trolltech.com/porting.html">this page online</a>.<P>
The first step to get your KDE application to compile under KDE 2.0,
is to detect KDE 2.0 and Qt 2.x at configure time. The easiest way to
get a working autoconf/automake framework, is to either use
<a href="http://www.kdevelop.org">KDevelop</a> or
<a href="http://www.tdevelop.org">KDevelop</a> or
<a href="http://home.earthlink.net/~granroth/kapptemplate/index.html">kapptemplate</a>
(available in CVS under the module "kdesdk"), to generate a new
(available in CVS under the module "tdesdk"), to generate a new
application template. Replace the generated source files by yours
and adapt Makefile.am accordingly.
@ -80,11 +80,11 @@ or <a href="http://doc.trolltech.com/porting.html">this page online</a>.<P>
<H3><A NAME="general">Global changes</A></H3>
We did our best to clean up the header files of kdelibs, so they do
We did our best to clean up the header files of tdelibs, so they do
not include unnecessary bloat for your application. As a consequence, you
may notice that some header files are missing from your source files as
they have been included before by kapp.h for example. There is a script
in kdesdk/scripts called "fixheaders" that takes care of most of these
in tdesdk/scripts called "fixheaders" that takes care of most of these
cases. Just call "make -k 2&gt;&amp;1 | perl .../fixheaders" and it will try
to look after the error messages and add includes as it recognize the
errors.<P>
@ -175,7 +175,7 @@ or <a href="http://doc.trolltech.com/porting.html">this page online</a>.<P>
certain option was specified on the command line and your application
now automatically supports --help and --version. It aborts with a
useful error message when the command line contains a syntax error.
See kdelibs/tdecore/kcmdlineargs.h for more info.<P>
See tdelibs/tdecore/kcmdlineargs.h for more info.<P>
<H4><P ALIGN="RIGHT"><A HREF="#TOC">Return to the Table of Contents</A></P></H4>
@ -505,14 +505,14 @@ are necessary to convert your old KDND-based stuff to Qt DND.<P>
<STRONG> Replacement table :</STRONG><P>
<TABLE BORDER="1">
<TR><TD>KFM::download </TD><TD>-&gt; KIO::NetAccess::download (kdelibs/kio/netaccess.h)</TD></TR>
<TR><TD>KFM::download </TD><TD>-&gt; KIO::NetAccess::download (tdelibs/kio/netaccess.h)</TD></TR>
<TR><TD>KFM::removeTempFile </TD><TD>-&gt; KIO::NetAccess::removeTempFile</TD></TR>
<TR><TD COLSPAN="2" ROWSPAN="0">refreshDesktop, sortDesktop, selectRootIcons : removed; kdesktop handles it</TD></TR>
<TR><TD>KFM::configure </TD><TD>-&gt; see konqueror DCOP interface</TD></TR>
<TR><TD>KFM::openURL </TD><TD>-&gt; "(void) new KRun (url)" (kdelibs/kio/krun.h)</TD></TR>
<TR><TD>KFM::openURL </TD><TD>-&gt; "(void) new KRun (url)" (tdelibs/kio/krun.h)</TD></TR>
<TR><TD>KFM::refreshDirectory </TD><TD>-&gt; not needed anymore since konqy/kdesktop use KDirWatch</TD></TR>
<TR><TD>KFM::openProperties </TD><TD>-&gt; "(void) new KPropertiesDialog (url)" (kdelibs/kfile/kpropsdlg.h)</TD></TR>
<TR><TD>KFM::exec </TD><TD>-&gt; "(void) new KRun (url)" (kdelibs/kio/krun.h)</TD></TR>
<TR><TD>KFM::openProperties </TD><TD>-&gt; "(void) new KPropertiesDialog (url)" (tdelibs/kfile/kpropsdlg.h)</TD></TR>
<TR><TD>KFM::exec </TD><TD>-&gt; "(void) new KRun (url)" (tdelibs/kio/krun.h)</TD></TR>
<TR><TD>KFM::copy, KFM::move </TD><TD>-&gt; KIO::Job (async, see kio/job.h)<BR>
or KIO::NetAccess (sync, see kio/netaccess.h)</TD></TR>
<TR><TD>DlgLocation </TD><TD>-&gt; Use KLineEditDlg (tdeui/klineeditdlg.h) instead</TD></TR>
@ -552,10 +552,10 @@ input font most closely, but can display the given charset.<P>
<H3><A NAME="KWizard">KWizard, KNoteBook</A></H3>
KWizard is based on TQWizard now. The API has changed. Consult Qt's
documentation and kdelibs/kdetest/kwizardtest.cpp for an example use.<P>
documentation and tdelibs/kdetest/kwizardtest.cpp for an example use.<P>
KNoteBook (deeply entwined with the former KWizard) has been removed until
someone is willing to port it to work with the new wizard. If you want to
use it you'll find the necessary files in kdegraphics/kiconedit.<P>
use it you'll find the necessary files in tdegraphics/kiconedit.<P>
<H4><P ALIGN="RIGHT"><A HREF="#TOC">Return to the Table of Contents</A></P></H4>
@ -674,7 +674,7 @@ KPixmapEffect::<BR></TD>
PipeCross,<BR>
Elliptic]</TD></TR></TABLE>
Gradients. See kdelibs/kdetest/kgradienttest &amp; kunbalancedgradienttest for
Gradients. See tdelibs/kdetest/kgradienttest &amp; kunbalancedgradienttest for
information on how they actually look.<P>
Look further in this document for other info about pixmap effect code
@ -778,7 +778,7 @@ The format for modules for the KDE Control Center has changed quite
a bit. If you want to port your module to the new schema, please
consult<P>
kdebase/kcontrol/README<P>
tdebase/kcontrol/README<P>
which explains what needs to be done.<P>
@ -805,9 +805,9 @@ provides some useful lists, like the list of all managed windows).
Use kdDebug, kdWarning, kdError, kdFatal to log debug output, warnings and
errors in a very flexible way. kdebug has been improved, and the API simplified.
kdesdk/scripts/kDebug2kdDebug.sh provides a script for automating the conversion.
tdesdk/scripts/kDebug2kdDebug.sh provides a script for automating the conversion.
Note that enabling/disabling debug output can now be done with kdebugdialog,
which can be found in kdebase. The hidden dialog on C+S+F12 no longer exists.
which can be found in tdebase. The hidden dialog on C+S+F12 no longer exists.
<P>
Also, note that qDebug and fprintf aren't disabled by -DNDEBUG, whereas kdDebug is.
One more reason to use kdDebug !

@ -33,9 +33,9 @@ or <a href="http://doc.trolltech.com/3.0/porting.html">this page online</a>.<P>
The first step to get your KDE application to compile under KDE 3.0,
is to detect KDE 3.0 and Qt 3.x at configure time. The easiest way to
get a working autoconf/automake framework, is to either use
<a href="http://www.kdevelop.org">KDevelop</a> or
<a href="http://www.tdevelop.org">KDevelop</a> or
<a href="http://home.earthlink.net/~granroth/kapptemplate/index.html">kapptemplate</a>
(available in CVS under the module "kdesdk"), to generate a new
(available in CVS under the module "tdesdk"), to generate a new
application template. Replace the generated source files by yours
and adapt Makefile.am accordingly.
<p>
@ -253,7 +253,7 @@ hardware accelerated alpha blending.
<H4>KAnimWidget</H4>
This class no longer supports reading a list of images, instead it uses a
single image-file that has been prepared with the kimage_concat tool.
See kdelibs/pics/hicolor/kde for an example of its use.
See tdelibs/pics/hicolor/kde for an example of its use.
<H4>KContainerLayout</H4>
This class has been removed, use Qt layouts instead.
@ -471,7 +471,7 @@ setURLArgs does the job.
<H3><A NAME="kspell">Changes in kspell</A></H3>
<H4>KSpell</H4>
The API has been cleaned up to be in line with the rest of kdelibs, in particular:
The API has been cleaned up to be in line with the rest of tdelibs, in particular:
<ul>
<li>suggestions() now returns a TQStringList instead of a pointer to a QStringList
<li>intermediateBuffer() now returns a TQString instead of a pointer to a QString

@ -56,13 +56,13 @@ messages:
echo ./tdecore/kde-config.cpp.in >> files ;\
$(EXTRACTRC) `find $$dirs -maxdepth 1 \( -name "*.rc" -o -name "*.ui" \) ` ./dnssd/kcm_kdnssd.kcfg > rc.cpp; \
: > kde.pot ;\
$(XGETTEXT) -ktranslate -x qt-messages.pot rc.cpp `cat files` && cat messages.po qt-messages.pot > $(podir)/kdelibs.pot
$(XGETTEXT) -ktranslate -x qt-messages.pot rc.cpp `cat files` && cat messages.po qt-messages.pot > $(podir)/tdelibs.pot
$(XGETTEXT) common_texts.cpp -o kde.pot
rm -f dirs
EXTRA_DIST = admin kde.pot \
COMPILING COMPILING.html COPYING.BSD DEBUG \
KDE2PORTING.html NAMING common_texts.cpp kdelibs.lsm kdoc.rules \
KDE2PORTING.html NAMING common_texts.cpp tdelibs.lsm kdoc.rules \
qt-messages.pot configure.in.in configure.in.mid configure.in.bot
MAINTAINERCLEANFILES = configure.files subdirs
@ -72,7 +72,7 @@ dist-hook:
# Rule for generating HTML documentation [you need kdoc installed]
# Don't forget to run qt2kdoc first (qt2kdoc $QTDIR/doc/html)
# The kdelibs docu will end up in ./srcdoc/
# The tdelibs docu will end up in ./srcdoc/
kdedoc:
cd $(top_srcdir) && \
makekdedoc -p'--skip-internal' --outputdir=$(top_builddir)/srcdoc
@ -87,30 +87,30 @@ qtmessages:
grep -v $$file list > list.new && mv list.new list ;\
done ;\
xgettext -C -ktr -kQT_TRANSLATE_NOOP `cat list` ;\
cd ../../kdelibs ;\
cd ../../tdelibs ;\
mv $$top_srcdir/../qt-copy/src/messages.po $$top_srcdir
echo "remove the header from messages.po and move to qt-messages.pot"
include admin/Doxyfile.am
include admin/deps.am
apidox-am-toplevel-yes: apidox-am-toplevel-kdelibs
apidox-am-toplevel-yes: apidox-am-toplevel-tdelibs
apidox-am-toplevel-kdelibs: $(top_builddir)/apidocs/qt/qt.tag
apidox-am-toplevel-tdelibs: $(top_builddir)/apidocs/qt/qt.tag
$(top_builddir)/apidocs/qt/qt.tag:
@echo "*** Creating a tag file for the Qt library:"; \
$(mkinstalldirs) $(top_builddir)/apidocs/qt; \
doxytag -t $(top_builddir)/apidocs/qt/qt.tag $(QTDOCDIR)
install-data-local: install-apidox-kdelibs
install-data-local: install-apidox-tdelibs
## install the tag file for the Qt documentation
install-apidox-kdelibs:
install-apidox-tdelibs:
if test -f $(top_builddir)/apidocs/qt/qt.tag; then \
$(mkinstalldirs) $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/qt ;\
echo $(INSTALL_DATA) $(top_builddir)/apidocs/qt/qt.tag $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/qt; \
$(INSTALL_DATA) $(top_builddir)/apidocs/qt/qt.tag $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/qt; \
fi
.PHONY: install-apidox-kdelibs apidox-am-toplevel-kdelibs apidox-am-toplevel-yes qtmessages
.PHONY: install-apidox-tdelibs apidox-am-toplevel-tdelibs apidox-am-toplevel-yes qtmessages

@ -1,6 +1,6 @@
In this file:
* About kdelibs
* About tdelibs
* Licensing
* Common Mistakes
* Upgrading
@ -8,7 +8,7 @@ In this file:
* More Info
About kdelibs
About tdelibs
-------------
This is version 3.5.13 of the Trinity Desktop Environment [TDE] libraries.
@ -165,7 +165,7 @@ See also the file DEBUG.
Upgrading
---------
If you have an kdebase older than 3.0 installed, just copy all your .k*rc
If you have an tdebase older than 3.0 installed, just copy all your .k*rc
files from $HOME to $HOME/.kde/share/config. In the other case, default
values are used for most apps.
@ -232,7 +232,7 @@ So, here are some tips on bug reporting:
Linux Distributor and his appropriate mailing list or bug reporting tool.
* The chance is high that your bug has already been dealt with ... so look
if there is a newer version of kdelibs available. Reporting bugs for
if there is a newer version of tdelibs available. Reporting bugs for
older, deprecated versions usually don't get that much attention :-)
* Also the chance is high that another one experienced your problem. The

@ -71,7 +71,7 @@ that we would like to make for the next binary incompatible release.
- Solve need for casting when using bitfield enums (e.g. KProcess::Communication),
if Simon's solution works.
- Merge kdelibs/tdecore/kuser.h and kdeadmin/kuser/kuser.h.
- Merge tdelibs/tdecore/kuser.h and tdeadmin/kuser/kuser.h.
- Simplify memory management with KParts. The part and the widget delete each other,
which in fact makes it more complex to handle. The part owns the widget so it

@ -46,7 +46,7 @@ else
Please reinstall aRts in the same prefix as KDE, different prefixes are not
supported right now.
(kdelibs prefix is $prefix, aRts prefix is $ARTS_HAVE_PREFIX)
(tdelibs prefix is $prefix, aRts prefix is $ARTS_HAVE_PREFIX)
])
fi
fi
@ -57,11 +57,11 @@ supported right now.
AC_MSG_ERROR([aRts $ARTS_WANT_VERSION_MAJOR.$ARTS_WANT_VERSION_MINOR not found.
You'll need to install a suitable version of aRts in the same prefix as KDE
before you build kdelibs.
before you build tdelibs.
(found
* artsc-config: $ARTSCCONFIG
* kdelibs prefix: $prefix
* tdelibs prefix: $prefix
* aRts prefix: $ARTS_HAVE_PREFIX
* aRts version: $ARTS_HAVE_VERSION (required: $ARTS_WANT_VERSION_MAJOR.$ARTS_WANT_VERSION_MINOR)
)

@ -24,7 +24,7 @@
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace Arts
{

@ -24,7 +24,7 @@
#include "kmedia2.h"
#include <tqobject.h>
#include "soundserver.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* KArtsServer is a wrapper to conveniently get a reference to a SoundServer,

@ -22,7 +22,7 @@
#include <artsflow.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KArtsServer;
class TQString;

@ -25,7 +25,7 @@
#include <tqcstring.h>
#include <stdsynthmodule.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KArtsServer;
namespace Arts { class StereoEffectStack; }

@ -27,7 +27,7 @@
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KArtsServer;
namespace Arts { class StereoEffectStack; }

@ -23,7 +23,7 @@
#define KPLAYOBJECTFACTORY_H
#include <kurl.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include "soundserver.h"
#include "kplayobject.h"

@ -57,7 +57,7 @@ KAboutData aboutData("artsmessage", I18N_NOOP("artsmessage"), "0.1",
int main(int argc, char **argv) {
aboutData.addAuthor("Jeff Tranter", 0, "tranter@kde.org");
KGlobal::locale()->setMainCatalogue("kdelibs");
KGlobal::locale()->setMainCatalogue("tdelibs");
KCmdLineArgs::init(argc, argv, &aboutData);
KCmdLineArgs::addCmdLineOptions(options);
KApplication app;

@ -8,7 +8,7 @@ AC_INIT(acinclude.m4) dnl a source file from your sub dir
dnl This is so we can use kde-common
AC_CONFIG_AUX_DIR(admin)
dnl Setting the prefix for kdelibs uses a special version of KDE_SET_PREFIX
dnl Setting the prefix for tdelibs uses a special version of KDE_SET_PREFIX
dnl (since that one normally looks for existing kde installations)
KDE_SET_PREFIX_CORE
@ -102,7 +102,7 @@ KCONFIG_COMPILER="compiled"
MAKEKDEWIDGETS="compiled"
dnl Checks for libraries etc
AC_BASE_PATH_KDE([don't test]) dnl kdelibs is a special case
AC_BASE_PATH_KDE([don't test]) dnl tdelibs is a special case
KDE_ENABLE_HIDDEN_VISIBILITY
AC_CREATE_KFSSTND(default)

@ -1,4 +1,4 @@
# This Makefile.am was taken from the kdelibs distribution and
# This Makefile.am was taken from the tdelibs distribution and
# modified for DCOP. Preston Brown (Oct 10, 1999)
#
# Copyright (c) 1999 Preston Brown <pbrown@kde.org>

@ -28,7 +28,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <tqvaluelist.h>
#include <tqstring.h>
#include <kdatastream.h> // needed for proper bool marshalling
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class DCOPObjectProxy;
class DCOPClientPrivate;

@ -1,4 +1,4 @@
#!/usr/bin/perl -I/Users/duke/src/kde/kdebindings/kalyptus
#!/usr/bin/perl -I/Users/duke/src/kde/tdebindings/kalyptus
# -*- indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
# KDOC -- C++ and CORBA IDL interface documentation tool.

@ -29,7 +29,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <tqptrlist.h>
#include <tqvaluelist.h>
#include <kdatastream.h> // needed for proper bool marshalling
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class DCOPClient;
typedef TQValueList<TQCString> QCStringList;

@ -26,7 +26,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <tqcstring.h>
#include <dcoptypes.h>
#include <kdatastream.h> // needed for proper bool marshalling
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQDataStream;
class DCOPObject;

@ -26,7 +26,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <tqasciidict.h>
#include <tqptrlist.h>
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class DCOPConnection;

@ -30,7 +30,7 @@ class DCOPStubPrivate;
#include <stdlib.h>
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* Abstract base class for dcop stubs as created by the

@ -1,7 +1,7 @@
Checklist to ensure that zeroconf will work:
1) Install Avahi, at least version 0.3
2) compile kdnssd-avahi and install it to replace 'stub' libkdnssd.so provided by kdelibs
2) compile kdnssd-avahi and install it to replace 'stub' libkdnssd.so provided by tdelibs
3) check /etc/nsswitch.conf and ensure that there is 'mdns' before 'dns' in
line starting with 'host:'. It should be something like:
host: files mdns dns

@ -1,3 +1,3 @@
SUBDIRS = common kspell kdelibs
SUBDIRS = common kspell tdelibs

@ -55,7 +55,7 @@ doxygen.sh [--recurse] [--modulename] [--doxdatadir=<dir>] [--installdir=<dir>]
a subdirectory apidocs/ . Modulename is the last part of
the <top_srcdir> (usually a KDE SVN module name).
--doxdatadir=<dir> Locate the HTML header files and support graphics.
In kdelibs, the subdirectory doc/common/ contains these
In tdelibs, the subdirectory doc/common/ contains these
files (and this README). In an installed KDE system,
$KDEDIR/share/doc/HTML/en/common/ contains a copy.
This argument is mandatory if doxygen.sh can't guess where
@ -84,7 +84,7 @@ Differences with current dox: <TODO>
#
# sh /mnt/src/tdepim/doc/api/doxygen.sh /mnt/src/tdepim kpilot/lib
#
# When generating dox for kdelibs, a tag file for Qt is also created.
# When generating dox for tdelibs, a tag file for Qt is also created.
# The location of Qt is specified indirectly through $QTDOCDIR or,
# if that is not set, $QTDIR, or otherwise guessed. You may explicitly
# set the location of a pre-generated tag file with $QTDOCTAG. One

@ -174,7 +174,7 @@ inline BytesEditInterface *bytesEditInterface( T *t )
* ...
*
* TQWidget *BytesEditWidget = KHE::createBytesEditWidget( this, "BytesEditWidget" );
* // is e.g. kdeutils (incl. khexedit2) installed, so a widget could be found and created?
* // is e.g. tdeutils (incl. khexedit2) installed, so a widget could be found and created?
* if( BytesEditWidget )
* {
* <EFBFBD> // fetch the editor interface

@ -217,7 +217,7 @@ bool KIMProxy::initialize()
if ( !m_initialized )
{
m_initialized = true; // we should only do this once, as registeredToDCOP() will catch any new starts
// So there is no error from a failed query when using kdelibs 3.2, which don't have this servicetype
// So there is no error from a failed query when using tdelibs 3.2, which don't have this servicetype
if ( KServiceType::serviceType( IM_SERVICE_TYPE ) )
{
//kdDebug( 790 ) << k_funcinfo << endl;

@ -25,7 +25,7 @@
#define KMEDIAPLAYERVIEW_H
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KMediaPlayer
{

@ -8,11 +8,11 @@
*
* @author Jesper K. Pedersen blackie@kde.org
*
* The actual editor is located in kdeutils, with an interface in
* kdelibs. This means that it is a bit more complicated to create an
* The actual editor is located in tdeutils, with an interface in
* tdelibs. This means that it is a bit more complicated to create an
* instance of the editor, but only a little bit more complicated.
*
* To check if kregexpeditor in kdeutils is installed and available use this line:
* To check if kregexpeditor in tdeutils is installed and available use this line:
*
* \code
* bool installed=!KTrader::self()->query("KRegExpEditor/KRegExpEditor").isEmpty();
@ -24,7 +24,7 @@
* \code
* TQDialog *editorDialog = KParts::ComponentFactory::createInstanceFromQuery<TQDialog>( "KRegExpEditor/KRegExpEditor" );
* if ( editorDialog ) {
* // kdeutils was installed, so the dialog was found fetch the editor interface
* // tdeutils was installed, so the dialog was found fetch the editor interface
* KRegExpEditorInterface *editor = ::tqqt_cast<KRegExpEditorInterface *>( editorDialog );
* Q_ASSERT( editor ); // This should not fail!
*
@ -52,7 +52,7 @@
* KParts::ComponentFactory::createInstanceFromQuery<TQWidget>(
* "KRegExpEditor/KRegExpEditor", TQString::null, parent );
* if ( editorWidget ) {
* // kdeutils was installed, so the widget was found fetch the editor interface
* // tdeutils was installed, so the widget was found fetch the editor interface
* KRegExpEditorInterface *editor = ::tqqt_cast<KRegExpEditorInterface *>( editorWidget );
* Q_ASSERT( editor ); // This should not fail!
*

@ -25,7 +25,7 @@
#include <tqdict.h>
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class ScriptInfo;
//namespace KScriptInterface

@ -57,8 +57,8 @@
*
* @section Requirements
*
* You may build any KDE application to use KSpeech, since the interface is in kdelibs, but
* the kdeaccessibility package must be installed for KTTS to function.
* You may build any KDE application to use KSpeech, since the interface is in tdelibs, but
* the tdeaccessibility package must be installed for KTTS to function.
*
* You will need a speech synthesis engine, such as Festival. See the KTTS Handbook
* for the latest information on installing and configuring speech engines and voices
@ -105,7 +105,7 @@
speech engine
@endverbatim
*
* The %KTTSD Plugin API is documented in PluginConf in the kdeaccessibility module.
* The %KTTSD Plugin API is documented in PluginConf in the tdeaccessibility module.
*
* There is a separate GUI application, called kttsmgr, for providing %KTTSD
* configuration and job management.
@ -186,11 +186,11 @@
*
* There are two methods of making DCOP calls from your application to %KTTSD.
*
* - Manually code them using dcopClient object. See kdebase/konqueror/kttsplugin/khtmlkttsd.cpp
* - Manually code them using dcopClient object. See tdebase/konqueror/kttsplugin/khtmlkttsd.cpp
* for an example. This method is recommended if you want to make a few simple calls to KTTSD.
* - Use kspeech_stub as described below. This method generates the marshalling code for you
* and is recommended for a more complex speech-enabled applications. kcmkttsmgr in the
* kdeaccessibility module is an example that uses this method.
* tdeaccessibility module is an example that uses this method.
*
* To make DCOP calls from your program using kspeech_stub, follow these steps:
*

@ -19,7 +19,7 @@
#ifndef __ktexteditor_blockselectioninterface_h__
#define __ktexteditor_blockselectioninterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -19,7 +19,7 @@
#ifndef __ktexteditor_clipboardinterface_h__
#define __ktexteditor_clipboardinterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -19,7 +19,7 @@
#ifndef __ktexteditor_configinterface_h__
#define __ktexteditor_configinterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;
class KConfig;

@ -22,7 +22,7 @@
#include <tqptrlist.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -22,7 +22,7 @@
class TQString;
class TQCString;
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -20,7 +20,7 @@
#ifndef __ktexteditor_dynwordwrapinterface_h__
#define __ktexteditor_dynwordwrapinterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -21,7 +21,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -19,7 +19,7 @@
#ifndef __ktexteditor_encodinginterface_h__
#define __ktexteditor_encodinginterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQString;
class TQCString;

@ -20,7 +20,7 @@
#ifndef __ktexteditor_highlightinginterface_h__
#define __ktexteditor_highlightinginterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQString;
class TQCString;

@ -22,7 +22,7 @@
#include <tqptrlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -21,7 +21,7 @@
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -19,7 +19,7 @@
#ifndef __ktexteditor_popupmenuinterface_h__
#define __ktexteditor_popupmenuinterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;
class TQPopupMenu;

@ -20,7 +20,7 @@
#ifndef __ktexteditor_printinterface_h__
#define __ktexteditor_printinterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -20,7 +20,7 @@
#ifndef __ktexteditor_searchinterface_h__
#define __ktexteditor_searchinterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQRegExp;
class TQString;

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -22,7 +22,7 @@
#ifndef __ktexteditor_selectioninterface_ext_h__
#define __ktexteditor_selectioninterface_ext_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -19,7 +19,7 @@
#ifndef __ktexteditor_sessionconfiginterface_h__
#define __ktexteditor_sessionconfiginterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;
class KConfig;

@ -23,7 +23,7 @@
#include <tqmap.h>
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KTextEditor
{

@ -19,7 +19,7 @@
#ifndef __ktexteditor_undointerface_h__
#define __ktexteditor_undointerface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -19,7 +19,7 @@
#ifndef _KTEXTEDITOR_VARIABLE_INTERFACE_H_
#define _KTEXTEDITOR_VARIABLE_INTERFACE_H_
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQString;

@ -20,7 +20,7 @@
#ifndef __ktexteditor_viewcursorinterface_h__
#define __ktexteditor_viewcursorinterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -19,7 +19,7 @@
#ifndef __ktexteditor_viewstatusmsginterface_h__
#define __ktexteditor_viewstatusmsginterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQString;
class TQCString;

@ -20,7 +20,7 @@
#ifndef __ktexteditor_wordwrapinterface_h__
#define __ktexteditor_wordwrapinterface_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;

@ -1,4 +1,4 @@
Note: libkab is now obsolete. Please use libkabc in kdelibs/kabc. libkab is
Note: libkab is now obsolete. Please use libkabc in tdelibs/kabc. libkab is
no longer installed. It's only needed for the conversion tool converting
libkab data to libkabc data.
@ -28,7 +28,7 @@ compile the sources using optimization level 6 (-O6). Stick to -O2, and
it should work. Note: This seems to be solved since gcc 2.95.
Since this directory provides only the kab library, you will have to
install the kdeutils package, that contains the sources for kab's binary,
install the tdeutils package, that contains the sources for kab's binary,
also.
Mirko Boehm, March 2000.

@ -9,7 +9,7 @@ include directory into your sources.
The documentation of the kab API is contained in the header file
(kabapi.h), you can extract it by parsing the file with kdoc. The kab
binary source directory in the kdeutils package contains a sample program
binary source directory in the tdeutils package contains a sample program
that tries to explain some basic functions of the API. It is important
that you report any bugs you find in the API or in the rest of kab to

@ -7,7 +7,7 @@ Thanks.
PS: I am still looking for volunteers who try writing the import filters.
Most often I do not have the different other addressbook programs myselfes.
PS1: This TODO list deals with tasks to add to the KDE addressbook
library. If you want the application to be extended, read kdeutils/kab/TODO.
library. If you want the application to be extended, read tdeutils/kab/TODO.
--------------------------------------------------------------------------------
° [done] change mail addresses to an unlimited list with selection before
sending an email

@ -4,7 +4,7 @@ PURPOSE:
libkabc provides an API for address book data. This can be used by all KDE
application using data of this type, e.g. KAddressBook, KMail, KOrganizer,
KPilot etc. It is meant as replacement for libkab (in kdebase/kab).
KPilot etc. It is meant as replacement for libkab (in tdebase/kab).
FEATURES:

@ -25,7 +25,7 @@
#include <tqstring.h>
#include <tqvaluelist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
// template tags for address formatting localization
#define KABC_FMTTAG_realname TQString("%n")

@ -25,7 +25,7 @@ class TQDataStream;
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -24,7 +24,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQWidget;

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -23,7 +23,7 @@
#include <tqvaluelist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -25,7 +25,7 @@
#include <tqcstring.h>
#include <tqmemarray.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -24,7 +24,7 @@
#include <tqstring.h>
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -24,7 +24,7 @@
#include <tqvaluelist.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -23,7 +23,7 @@
#include <tqimage.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -1,7 +1,7 @@
#!/usr/bin/perl
#
# Create a translation table countryname->iso-code from the entry.desktop
# files in kdebase/l10n/*/
# files in tdebase/l10n/*/
#
# USAGE EXAMPLE:
# ./createisomap.pl $KDEDIR/share/locale/l10n > countrytransl.map

@ -23,7 +23,7 @@
#include <tqvaluelist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -21,7 +21,7 @@
#ifndef KABC_SORTMODE_H
#define KABC_SORTMODE_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <kabc/addressee.h>

@ -24,7 +24,7 @@
#include <tqcstring.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KABC {

@ -25,7 +25,7 @@
#define ENTITY_H
#include <tqcstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace VCARD
{

@ -26,7 +26,7 @@
#include <tqcstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace VCARD
{

@ -27,7 +27,7 @@
#include <tqstrlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace VCARD
{

@ -42,7 +42,7 @@
by using run length encoding for the attributes if they are
dumped into the bytearray
2002-06-01 Christian Couder <christian@kdevelop.org>
2002-06-01 Christian Couder <christian@tdevelop.org>
* Move view stuff from katedocument to kateviewinternal.
2002-05-20 Christoph Cullmann <cullmann@kde.org>
@ -51,11 +51,11 @@
(mem leak, KateUndo is now only for internal use in KateUndoGroup)
* start of convertion my*** to m_*** and add m_ to any other private stuff
2002-05-17 Christian Couder <christian@kdevelop.org>
2002-05-17 Christian Couder <christian@tdevelop.org>
* Move font stuff from katedocument into new katefont.h and
katefont.cpp files, and clean up katedocument font stuff.
2002-05-14 Christian Couder <christian@kdevelop.org>
2002-05-14 Christian Couder <christian@tdevelop.org>
* Big clean up in katedocument using new katecursor stuff.
2002-05-12 Bernd Gehrmann <bernd@mail.berlios.de>
@ -63,17 +63,17 @@
* If servicetype in the browser extension specifies an encoding,
use that instead of user's local encoding
2002-05-11 Christian Couder <christian@kdevelop.org>
2002-05-11 Christian Couder <christian@tdevelop.org>
* implement the KTextEditor::Cursor in the KateCursor class
2002-05-04 Christoph Cullmann <cullmann@kde.org>
* first KTextEditor::ViewPlugin which works
drop the helloworld plugin, as it is really no good example (bad code, ..)
2002-05-04 Christian Couder <christian@kdevelop.org>
2002-05-04 Christian Couder <christian@tdevelop.org>
* fix undo for comment and uncomment
2002-05-01 Christian Couder <christian@kdevelop.org>
2002-05-01 Christian Couder <christian@tdevelop.org>
* cleanups related to the uncomment feature in katetextline and katedocument
2002-01-04 Christoph Cullmann <cullmann@kde.org>
@ -101,7 +101,7 @@
2001-11-29 Joseph Wenninger <jowenn@kde.org>
* KWrite/Kate use different font settings for printing and viewing now
* Fixed a small crash in my kdevelop->kate port of the codecompletion interface
* Fixed a small crash in my tdevelop->kate port of the codecompletion interface
2001-11-26 Christoph Cullmann <cullmann@kde.org>
* backspace bug fixed
@ -166,21 +166,21 @@
* myself back again ;)
* now kate is clean (only qt3), no backports ;)
2001-08-24 christian@kdevelop.org
2001-08-24 christian@tdevelop.org
* reimplement the commenting of selections on some languages
2001-08-19 christian@kdevelop.org
2001-08-19 christian@tdevelop.org
* added back Sather highlighting support
* improved Eiffel language syntax highlighting support
* added Eiffel language comment directive in eiffel.xml
* added Ada language comment directive in ada.xml
2001-08-15 christian@kdevelop.org
2001-08-15 christian@tdevelop.org
* committed Eiffel language syntax highlighting support
2001-08-08 rokrau@yahoo.com
* committed changes to Kate's API necessary for integration of kate as
a kpart into kdevelop
a kpart into tdevelop
2001-05-13 Christoph Cullmann <cullmann@kde.org>
* after some time of learning for my "Abitur" now again some fixes ;):
@ -313,7 +313,7 @@
Soon to come
2001-02-26 Christoph Cullmann <cullmann@kde.org>
* Kate is a part of kdebase :)
* Kate is a part of tdebase :)
sourceforge.net CVS won't be used in the future
2001-02-24 Phlip <phlip_cpp@my-deja.com>

@ -22,7 +22,7 @@
2002-01-10
Kate Part is now in Kdelibs ;)
Old news of kate part/app in kdebase:
Old news of kate part/app in tdebase:
2002-01-03
Kate App and Part separated

@ -56,7 +56,7 @@ TODO:
switch between short / detailed descriptions)
* Whatever else is needed for multiuser editing (and perhaps put most of it
inside the part, so eg. kate, kdevelop, quanta etc. could all use it)
inside the part, so eg. kate, tdevelop, quanta etc. could all use it)
* Scripting (we don't have any yet do we?)

@ -13,7 +13,7 @@
<!-- (c) 2004 by Wilbert Berendsen (wilbert@kde.nl)
Changes by Matthew Woehlke (mw_triad@users.sourceforge.net)
Changes by Sebastian Pipping (webmaster@hartwork.org)
Released under the LGPL, part of kdelibs/kate -->
Released under the LGPL, part of tdelibs/kate -->
<highlighting>
<list name="keywords">

@ -10,7 +10,7 @@
Copyright (C) 2007 - Jari-Matti Mäkelä <jmjm@iki.fi>
Copyright (C) 2004 - Simon J Mackenzie <project.katedxml@smackoz.fastmail.fm>
This code is released under the LGPL as part of kdelibs/kate.
This code is released under the LGPL as part of tdelibs/kate.
========================================================================

@ -17,7 +17,7 @@
<!DOCTYPE language SYSTEM "language.dtd">
You can validate your syntax files using checkXML from the development
package of kdelibs:
package of tdelibs:
checkXML yourSyntax.xml
If you see any 'validity error' lines, you should fix them. If you get
a lot of 'No template matches' lines, everything's just fine. You've

@ -6,7 +6,7 @@
LEX.XML supports syntax highlighting for Lex/Flex source under Kate.
Copyright (C) 2004 - Jan Villat <jan.villat@net2000.ch>
This code is released under the LGPL as part of kdelibs/kate.
This code is released under the LGPL as part of tdelibs/kate.
========================================================================

@ -6,7 +6,7 @@
YACC.XML supports syntax highlighting for Yacc/Bison source under Kate.
Copyright (C) 2004 - Jan Villat <jan.villat@net2000.ch>
This code is released under the LGPL as part of kdelibs/kate.
This code is released under the LGPL as part of tdelibs/kate.
========================================================================

@ -118,7 +118,7 @@ const TQString KateCmd::fromHistory( uint index ) const
//BEGIN KateCmdShellCompletion
/*
A lot of the code in the below class is copied from
kdelibs/kio/kio/kshellcompletion.cpp
tdelibs/kio/kio/kshellcompletion.cpp
Copyright (C) 2000 David Smith <dsmith@algonet.se>
Copyright (C) 2004 Anders Lund <anders@alweb.dk>
*/

@ -2,7 +2,7 @@
Copyright (C) 2001 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 2002 John Firebaugh <jfirebaugh@kde.org>
Copyright (C) 2001 by Victor Röder <Victor_Roeder@GMX.de>
Copyright (C) 2002 by Roberto Raggi <roberto@kdevelop.org>
Copyright (C) 2002 by Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public

@ -3,7 +3,7 @@
Copyright (C) 2001 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 2002 John Firebaugh <jfirebaugh@kde.org>
Copyright (C) 2001 by Victor Röder <Victor_Roeder@GMX.de>
Copyright (C) 2002 by Roberto Raggi <roberto@kdevelop.org>
Copyright (C) 2002 by Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public

@ -1,5 +1,5 @@
/* This file is part of the KDE libraries
Copyright (C) 2002 Christian Couder <christian@kdevelop.org>
Copyright (C) 2002 Christian Couder <christian@tdevelop.org>
Copyright (C) 2001, 2003 Christoph Cullmann <cullmann@kde.org>
Copyright (C) 2001 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 1999 Jochen Wilhelmy <digisnap@cs.tu-berlin.de>

@ -1,5 +1,5 @@
/* This file is part of the KDE libraries
Copyright (C) 2002 Christian Couder <christian@kdevelop.org>
Copyright (C) 2002 Christian Couder <christian@tdevelop.org>
Copyright (C) 2001, 2003 Christoph Cullmann <cullmann@kde.org>
Copyright (C) 2001 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 1999 Jochen Wilhelmy <digisnap@cs.tu-berlin.de>

@ -1,5 +1,5 @@
/* This file is part of the KDE libraries
Copyright (C) 2002 Christian Couder <christian@kdevelop.org>
Copyright (C) 2002 Christian Couder <christian@tdevelop.org>
Copyright (C) 2001 Christoph Cullmann <cullmann@kde.org>
Copyright (C) 2001 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 1999 Jochen Wilhelmy <digisnap@cs.tu-berlin.de>

@ -1,5 +1,5 @@
/* This file is part of the KDE libraries
Copyright (C) 2002 Christian Couder <christian@kdevelop.org>
Copyright (C) 2002 Christian Couder <christian@tdevelop.org>
Copyright (C) 2001 Christoph Cullmann <cullmann@kde.org>
Copyright (C) 2001 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 1999 Jochen Wilhelmy <digisnap@cs.tu-berlin.de>

@ -296,7 +296,7 @@ KateSchemaConfigColorTab::KateSchemaConfigColorTab( TQWidget *parent, const char
label->tqsetAlignment( AlignLeft|AlignVCenter);
m_current = new KColorButton(b);
// Markers from kdelibs/interfaces/ktextinterface/markinterface.h
// Markers from tdelibs/interfaces/ktextinterface/markinterface.h
b = new TQHBox (gbTextArea);
b->setSpacing(KDialog::spacingHint());
m_combobox = new KComboBox(b, "color_combo_box");

@ -8,7 +8,7 @@ msgstr ""
"POT-Creation-Date: 2005-06-13 01:26+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language-Team: LANGUAGE <tde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

@ -15,4 +15,4 @@ the name of the DCOP object that is implemented by the module.
The desktop file needs to define the library in which the module is
implemented. The name of the library always starts with kded_.
The kdelibs/kded/test/ directory contains a sample implementation.
The tdelibs/kded/test/ directory contains a sample implementation.

@ -5,7 +5,7 @@ of these tasks are built in, others are started on demand.
<p>
The chances are you are looking here because you want to write a
TrinityD module. For that, see TrinityDModule in tdecore and the
<a href="http://websvn.kde.org/trunk/Trinity/kdelibs/kded/README.kded?view=markup">TrinityD
<a href="http://websvn.kde.org/trunk/Trinity/tdelibs/kded/README.kded?view=markup">TrinityD
README</a>.

@ -41,7 +41,7 @@
<Directory>kde-development.directory</Directory>
<Menu>
<Name>X-KDE-KDevelopIDE</Name>
<Directory>kde-development-kdevelop.directory</Directory>
<Directory>kde-development-tdevelop.directory</Directory>
<Include>
<And>
<Category>Development</Category>

@ -717,7 +717,7 @@ public:
extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KAboutData d(appName, I18N_NOOP("KBuildSycoca"), appVersion,
I18N_NOOP("Rebuilds the system configuration cache."),
KAboutData::License_GPL, "(c) 1999-2002 KDE Developers");
@ -763,8 +763,8 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
KCrash::setEmergencySaveFunction(crashHandler);
KCrash::setApplicationName(TQString(appName));
// this program is in kdelibs so it uses kdelibs as catalog
KLocale::setMainCatalogue("kdelibs");
// this program is in tdelibs so it uses tdelibs as catalog
KLocale::setMainCatalogue("tdelibs");
// force generating of KLocale object. if not, the database will get
// be translated
KGlobal::locale();

@ -107,7 +107,7 @@ static void findMenuEntry(KServiceGroup::Ptr parent, const TQString &name, const
int main(int argc, char **argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
const char *description = I18N_NOOP("KDE Menu query tool.\n"
"This tool can be used to find in which menu a specific application is shown.\n"
"The --highlight option can be used to visually indicate to the user where\n"
@ -125,8 +125,8 @@ int main(int argc, char **argv)
KApplication k(false);
k.disableSessionManagement();
// this program is in kdelibs so it uses kdelibs as catalog
KLocale::setMainCatalogue("kdelibs");
// this program is in tdelibs so it uses tdelibs as catalog
KLocale::setMainCatalogue("tdelibs");
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
if (args->count() != 1)

@ -884,8 +884,8 @@ extern "C" KDE_EXPORT int kdemain(int argc, char *argv[])
KCmdLineArgs::addCmdLineOptions( options );
// this program is in kdelibs so it uses kdelibs as catalog
KLocale::setMainCatalogue("kdelibs");
// this program is in tdelibs so it uses tdelibs as catalog
KLocale::setMainCatalogue("tdelibs");
// WABA: Make sure not to enable session management.
putenv(strdup("SESSION_MANAGER="));

@ -47,7 +47,7 @@ class Kded;
* }
* \endcode
*
* See kdelibs/kded/HOWTO for more detailed documentation.
* See tdelibs/kded/HOWTO for more detailed documentation.
*
* @author Waldo Bastian <bastian@kde.org>
*/

@ -365,7 +365,7 @@ void KHostName::changeSessionManager()
int main(int argc, char **argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KAboutData d(appName, I18N_NOOP("KDontChangeTheHostName"), appVersion,
I18N_NOOP("Informs KDE about a change in hostname"),
KAboutData::License_GPL, "(c) 2001 Waldo Bastian");

@ -1,5 +1,5 @@
Begin4
Title: kdelibs
Title: tdelibs
Version: Trinity 3.5.11
Entered-date: 2008-08-26
Description: libraries for the K Desktop Environment (KDE)

@ -50,7 +50,7 @@ PUBLIC "-//KDE//ENTITIES DocBook XML Localisation Entity Declarations V1.0//EN"
-- Various external files --
-- only DocBook XML files are in entities, the others are in
kdelibs/doc/common or in kdelibs/licenses --
tdelibs/doc/common or in tdelibs/licenses --
PUBLIC "-//GNU//DOCUMENT GNU General Public License V2//EN"
"entities/gpl-license"

@ -90,7 +90,7 @@
<xsl:if test="@targetdocent">
<xsl:value-of select="unparsed-entity-uri(string($targetdocent))"/>
</xsl:if>
<xsl:for-each select="document('/home/fouvry/kdeutils/doc/kedit/index.docbook')">
<xsl:for-each select="document('/home/fouvry/tdeutils/doc/kedit/index.docbook')">
<xsl:value-of select=".//*[@id=$localinfo]"/>
</xsl:for-each>
<xsl:text>#</xsl:text>

@ -110,7 +110,7 @@ set toc,title
<xsl:if test="@targetdocent">
<xsl:value-of select="unparsed-entity-uri(string($targetdocent))"/>
</xsl:if>
<xsl:for-each select="document('/home/fouvry/kdeutils/doc/kedit/index.docbook')">
<xsl:for-each select="document('/home/fouvry/tdeutils/doc/kedit/index.docbook')">
<xsl:value-of select=".//*[@id=$localinfo]"/>
</xsl:for-each>
<xsl:text>#</xsl:text>

@ -68,7 +68,7 @@
<xsl:if test="@targetdocent">
<xsl:value-of select="unparsed-entity-uri(string($targetdocent))"/>
</xsl:if>
<xsl:for-each select="document('/home/fouvry/kdeutils/doc/kedit/index.docbook')">
<xsl:for-each select="document('/home/fouvry/tdeutils/doc/kedit/index.docbook')">
<xsl:value-of select=".//*[@id=$localinfo]"/>
</xsl:for-each>
<xsl:text>#</xsl:text>

@ -89,7 +89,7 @@
<xsl:if test="@targetdocent">
<xsl:value-of select="unparsed-entity-uri(string($targetdocent))"/>
</xsl:if>
<xsl:for-each select="document('/home/fouvry/kdeutils/doc/kedit/index.docbook')">
<xsl:for-each select="document('/home/fouvry/tdeutils/doc/kedit/index.docbook')">
<xsl:value-of select=".//*[@id=$localinfo]"/>
</xsl:for-each>
<xsl:text>#</xsl:text>

@ -5,4 +5,4 @@
Please keep the entities sorted on the name: it will avoid duplicate
names (which if they occur will cost you a _lot_ of time)
-->
<!ENTITY KdeKoTeam "KDE 번역 한국말 모임<email>kde-i18n@kldp.org</email>">
<!ENTITY KdeKoTeam "KDE 번역 한국말 모임<email>tde-i18n@kldp.org</email>">

@ -207,28 +207,28 @@
<!ENTITY kde-nju "<acronym>КДЕ</acronym>" >
<!ENTITY kde-nmu "<acronym>КДЕ</acronym>" >
<!ENTITY kde-nmz "<acronym>КДЕ</acronym>" >
<!ENTITY kdeaddons-n "<acronym>КДЕ</acronym>-додаци" >
<!ENTITY kdeadmin-n "<acronym>КДЕ</acronym>-администрација" >
<!ENTITY kdeartwork-n "<acronym>КДЕ</acronym>-уметност" >
<!ENTITY kdebase-g "<acronym>КДЕ</acronym>-основе" >
<!ENTITY kdebase-n "<acronym>КДЕ</acronym>-основа" >
<!ENTITY kdebindings-n "<acronym>КДЕ</acronym>-везе" >
<!ENTITY tdeaddons-n "<acronym>КДЕ</acronym>-додаци" >
<!ENTITY tdeadmin-n "<acronym>КДЕ</acronym>-администрација" >
<!ENTITY tdeartwork-n "<acronym>КДЕ</acronym>-уметност" >
<!ENTITY tdebase-g "<acronym>КДЕ</acronym>-основе" >
<!ENTITY tdebase-n "<acronym>КДЕ</acronym>-основа" >
<!ENTITY tdebindings-n "<acronym>КДЕ</acronym>-везе" >
<!ENTITY kdecc-a "<application>К контролни центар</application>" >
<!ENTITY kdecc-g "<application>К контролног центра</application>" >
<!ENTITY kdecc-l "<application>К контролном центру</application>" >
<!ENTITY kdecc-n "<application>К контролни центар</application>" >
<!ENTITY kdeedu-n "<acronym>КДЕ</acronym>-образовање" >
<!ENTITY tdeedu-n "<acronym>КДЕ</acronym>-образовање" >
<!ENTITY kdeexp-g "К радног окружења" >
<!ENTITY kdeexp-n "К радно окружење" >
<!ENTITY tdegames-n "<acronym>КДЕ</acronym>-игре" >
<!ENTITY kdegraphics-n "<acronym>КДЕ</acronym>-графика" >
<!ENTITY kdelibs-n "<acronym>КДЕ</acronym>-библиотеке" >
<!ENTITY kdemultimedia-n "<acronym>КДЕ</acronym>-мултимедија" >
<!ENTITY kdenetwork-n "<acronym>КДЕ</acronym>-мрежа" >
<!ENTITY tdegraphics-n "<acronym>КДЕ</acronym>-графика" >
<!ENTITY tdelibs-n "<acronym>КДЕ</acronym>-библиотеке" >
<!ENTITY tdemultimedia-n "<acronym>КДЕ</acronym>-мултимедија" >
<!ENTITY tdenetwork-n "<acronym>КДЕ</acronym>-мрежа" >
<!ENTITY kdesktop-n "<application>К радна површина</application>" >
<!ENTITY kdetoys-n "<acronym>КДЕ</acronym>-играчке" >
<!ENTITY kdeutils-n "<acronym>КДЕ</acronym>-алати" >
<!ENTITY kdevelop-n "<acronym>КДЕ</acronym>-развој" >
<!ENTITY tdetoys-n "<acronym>КДЕ</acronym>-играчке" >
<!ENTITY tdeutils-n "<acronym>КДЕ</acronym>-алати" >
<!ENTITY tdevelop-n "<acronym>КДЕ</acronym>-развој" >
<!ENTITY kdm-a "<application>Кдм</application>" >
<!ENTITY kdm-g "<application>Кдма</application>" >
<!ENTITY kdm-n "<application>Кдм</application>" >

@ -1,4 +1,4 @@
README file for kdebase/kioslave/help/docbook
README file for tdebase/kioslave/help/docbook
=============================================
This are copies of

@ -78,7 +78,7 @@ static KCmdLineOptions options[] =
{ "htdig", I18N_NOOP( "Create a ht://dig compatible index" ), 0 },
{ "check", I18N_NOOP( "Check the document for validity" ), 0 },
{ "cache <file>", I18N_NOOP( "Create a cache file for the document" ), 0},
{ "srcdir <dir>", I18N_NOOP( "Set the srcdir, for kdelibs" ), 0},
{ "srcdir <dir>", I18N_NOOP( "Set the srcdir, for tdelibs" ), 0},
{ "param <key>=<value>", I18N_NOOP( "Parameters to pass to the stylesheet" ), 0},
{ "+xml", I18N_NOOP("The file to transform"), 0},
KCmdLineLastOption // End of options.

@ -5,7 +5,7 @@
<!ENTITY kmyapplication "<application>KMyApp</application>">
<!ENTITY kappname "&kmyapplication;"><!-- replace kmyapplication here
do *not* replace kappname-->
<!ENTITY package "kde-module"><!-- kdebase, kdeadmin, etc. Leave
<!ENTITY package "kde-module"><!-- tdebase, tdeadmin, etc. Leave
this unchanged if your
application is not maintained in KDE CVS -->
<!ENTITY % addindex "IGNORE">
@ -107,7 +107,7 @@ Please at least include KDE, the KDE package it is in, the name
<keywordset>
<keyword>KDE</keyword>
<keyword>kdeutils</keyword>
<keyword>tdeutils</keyword>
<keyword>Kapp</keyword>
<keyword>nothing</keyword>
<keyword>nothing else</keyword>
@ -503,7 +503,7 @@ application -->
<!--
List any special requirements for your application here. This should include:
.Libraries or other software that is not included in tdesupport,
kdelibs, or kdebase.
tdelibs, or tdebase.
.Hardware requirements like amount of RAM, disk space, graphics card
capabilities, screen resolution, special expansion cards, etc.
.Operating systems the app will run on. If your app is designed only for a

@ -103,7 +103,7 @@ set( ${target}_SRCS
)
file( WRITE ${CMAKE_CURRENT_BINARY_DIR}/dummy.cpp
"#include <kdelibs_export.h>
"#include <tdelibs_export.h>
extern \"C\" KDE_EXPORT void* init_libkhtml();
extern \"C\" KDE_EXPORT void* init_libkhtmlpart() { return init_libkhtml(); }
" )
@ -125,7 +125,7 @@ set( ${target}_SRCS
file( WRITE ${CMAKE_CURRENT_BINARY_DIR}/imgdummy.cpp
"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
extern \"C\" KDE_EXPORT void* init_khtmlimagefactory();
extern \"C\" KDE_EXPORT void* init_khtmlimagepart() { return init_khtmlimagefactory(); }
" )

@ -61,7 +61,7 @@ libkhtml_la_LIBADD = ./xml/libkhtmlxml.la ./html/libkhtmlhtml.la \
# init_libkhtml is in libkhtml.so; init_libkhtmlpart needs to be in the part
dummy.cpp: $(srcdir)/Makefile.am
echo '#include <kdelibs_export.h>' > $@
echo '#include <tdelibs_export.h>' > $@
echo 'extern "C" KDE_EXPORT void* init_libkhtml();' >> $@
echo 'extern "C" KDE_EXPORT void* init_libkhtmlpart() { return init_libkhtml(); } ' >> $@
@ -71,7 +71,7 @@ libkhtmlpart_la_LIBADD = libkhtml.la $(LIB_QT)
# init_khtmlimagefactory is in libkhtml.so; init_khtmlimagepart needs to be in the part
imgdummy.cpp: $(srcdir)/Makefile.am
echo '#include <kdelibs_export.h>' > $@
echo '#include <tdelibs_export.h>' > $@
echo 'extern "C" KDE_EXPORT void* init_khtmlimagefactory();' >> $@
echo 'extern "C" KDE_EXPORT void* init_khtmlimagepart() { return init_khtmlimagefactory(); } ' >> $@
@ -97,7 +97,7 @@ service_DATA = khtml.desktop khtmlimage.desktop
rcdir = $(kde_datadir)/khtml
rc_DATA = khtml.rc khtml_browser.rc khtml_popupmenu.rc
SRCDOC_DEST=$(kde_htmldir)/en/kdelibs/khtml
SRCDOC_DEST=$(kde_htmldir)/en/tdelibs/khtml
## generate lib documentation
srcdoc:

@ -44,7 +44,7 @@ INCLUDES = -I$(top_srcdir)/kimgio -I$(top_srcdir)/kio -I$(top_srcdir)/dcop \
cssdir = $(kde_datadir)/khtml/css
css_DATA = html4.css quirks.css
SRCDOC_DEST=$(kde_htmldir)/en/kdelibs/khtml
SRCDOC_DEST=$(kde_htmldir)/en/tdelibs/khtml
EXTRA_DIST = parser.y

@ -49,7 +49,7 @@ myinclude_HEADERS = \
INCLUDES = -I$(top_srcdir)/kimgio -I$(top_srcdir)/kio -I$(top_srcdir)/dcop \
-I$(top_srcdir)/khtml -I$(top_srcdir) $(all_includes)
SRCDOC_DEST=$(kde_htmldir)/en/kdelibs/khtml
SRCDOC_DEST=$(kde_htmldir)/en/tdelibs/khtml
## generate lib documentation
srcdoc:

@ -31,7 +31,7 @@
#include <dom/dom_node.h>
#include <dom/dom_misc.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -29,7 +29,7 @@
#include <dom/dom_node.h>
#include <dom/dom_misc.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {
class Node;

@ -23,7 +23,7 @@
#ifndef _DOM_Views_h_
#define _DOM_Views_h_
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {
class Document;

@ -32,7 +32,7 @@
#include <dom/dom_node.h>
#include <dom/css_value.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -22,7 +22,7 @@
#ifndef _DOM_RefCountImpl_h_
#define _DOM_RefCountImpl_h_
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -34,7 +34,7 @@
#define _DOM_Node_h_
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQRect;

@ -25,7 +25,7 @@
#include <kdebug.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -32,7 +32,7 @@
#include <dom/html_element.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -34,7 +34,7 @@
#include <dom/html_element.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -33,7 +33,7 @@
#include <dom/dom_doc.h>
#include <dom/dom_string.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KHTMLView;
class KHTMLPart;

@ -30,7 +30,7 @@
#define HTML_ELEMENT_H
#include <dom/dom_element.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KHTMLView;

@ -31,7 +31,7 @@
#include <dom/html_element.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {
class HTMLGenericElementImpl;

@ -30,7 +30,7 @@
#define HTML_LIST_H
#include <dom/html_element.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -30,7 +30,7 @@
#define HTML_MISC_H
#include <dom/html_element.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -31,7 +31,7 @@
// --------------------------------------------------------------------------
#include <dom/html_element.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace DOM {

@ -1,5 +1,5 @@
/* ANSI-C code produced by gperf version 3.0.1 */
/* Command-line: gperf -CEot -L ANSI-C -k '*' -N findDoctypeEntry -F ,PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards /opt/src/kde/kdelibs/khtml/html/doctypes.gperf */
/* Command-line: gperf -CEot -L ANSI-C -k '*' -N findDoctypeEntry -F ,PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards /opt/src/kde/tdelibs/khtml/html/doctypes.gperf */
#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \
&& ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \
@ -28,7 +28,7 @@
#error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>."
#endif
#line 1 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 1 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
struct PubIDInfo {
enum eMode {
eQuirks, /* always quirks mode, unless there's an internal subset */
@ -351,7 +351,7 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 91 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 91 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"html", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -461,7 +461,7 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 81 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 81 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd w3 html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -480,148 +480,148 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 48 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 48 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 28 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 28 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 3//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 73 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 73 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 3.2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 45 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 45 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 35 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 35 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html level 3//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 33 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 33 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html level 2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 43 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 43 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict level 3//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 29 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 29 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html level 0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 41 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 41 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict level 2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 27 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 27 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 3.2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 37 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 37 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict level 0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 69 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 69 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w30//dtd w3 html 2.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 24 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 24 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 3.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 50 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 50 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html//en//3.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 25 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 25 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 3.0//en//", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 31 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 31 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html level 1//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 22 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 22 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 2.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 49 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 49 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 47 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 47 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict//en//3.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 36 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 36 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html level 3//en//3.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 39 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 39 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict level 1//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 21 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 21 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 2.0 strict//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 46 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 46 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 44 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 44 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict level 3//en//3.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 18 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 18 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 2.0 level 2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 34 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 34 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html level 2//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 72 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 72 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 3.2 final//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 23 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 23 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 2.1e//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 75 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 75 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 4.0 frameset//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks},
#line 30 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 30 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html level 0//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 20 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 20 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 2.0 strict level 2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 42 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 42 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict level 2//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 85 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 85 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3o//dtd w3 html 3.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 89 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 89 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//webtechs//dtd mozilla html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 86 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 86 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3o//dtd w3 html 3.0//en//", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 84 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 84 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd xhtml 1.1//en", PubIDInfo::eAlmostStandards, PubIDInfo::eAlmostStandards},
#line 38 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 38 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict level 0//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 70 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 70 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 3 1995-03-24//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 87 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 87 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3o//dtd w3 html strict 3.0//en//", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 17 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 17 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 2.0 level 1//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 32 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 32 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html level 1//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 26 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 26 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 3.2 final//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 19 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 19 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html 2.0 strict level 1//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 40 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 40 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//ietf//dtd html strict level 1//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 77 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 77 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 4.01 frameset//en", PubIDInfo::eQuirks, PubIDInfo::eAlmostStandards},
#line 71 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 71 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 3.2 draft//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 74 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 74 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 3.2s draft//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 82 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 82 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd xhtml 1.0 frameset//en", PubIDInfo::eAlmostStandards, PubIDInfo::eAlmostStandards},
#line 80 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 80 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html experimental 970421//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 51 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 51 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//metrius//dtd metrius presentational//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 88 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 88 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//webtechs//dtd mozilla html 2.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -639,17 +639,17 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 90 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 90 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-/w3c/dtd html 4.0 transitional/en", PubIDInfo::eQuirks, PubIDInfo::eQuirks},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 76 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 76 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 4.0 transitional//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 79 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 79 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html experimental 19960712//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -670,22 +670,22 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 58 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 58 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//netscape comm. corp.//dtd html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 78 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 78 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd html 4.01 transitional//en", PubIDInfo::eQuirks, PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 83 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 83 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//w3c//dtd xhtml 1.0 transitional//en", PubIDInfo::eAlmostStandards, PubIDInfo::eAlmostStandards},
#line 59 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 59 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//netscape comm. corp.//dtd strict html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 65 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 65 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//spyglass//dtd html 2.0 extended//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -702,9 +702,9 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 16 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 16 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//as//dtd html 3.0 aswedit + extensions//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 66 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 66 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//sq//dtd html 2.0 hotmetal + extensions//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -727,7 +727,7 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 67 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 67 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//sun microsystems corp.//dtd hotjava html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -735,7 +735,7 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 68 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 68 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//sun microsystems corp.//dtd hotjava strict html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -746,7 +746,7 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 60 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 60 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//o'reilly and associates//dtd html 2.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -761,35 +761,35 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 56 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 56 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//microsoft//dtd internet explorer 3.0 html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 53 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 53 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//microsoft//dtd internet explorer 2.0 html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 55 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 55 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//microsoft//dtd internet explorer 3.0 html strict//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 14 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 14 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"+//silmaril//dtd html pro v0r11 19970101//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
#line 52 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 52 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//microsoft//dtd internet explorer 2.0 html strict//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 57 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 57 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//microsoft//dtd internet explorer 3.0 tables//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 54 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 54 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//microsoft//dtd internet explorer 2.0 tables//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -879,12 +879,12 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 15 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 15 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//advasoft ltd//dtd html 3.0 aswedit + extensions//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 61 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 61 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//o'reilly and associates//dtd html extended 1.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -953,7 +953,7 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 62 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 62 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//o'reilly and associates//dtd html extended relaxed 1.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -1089,7 +1089,7 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 64 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 64 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
@ -1154,7 +1154,7 @@ findDoctypeEntry (register const char *str, register unsigned int len)
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
{"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards},
#line 63 "/opt/src/kde/kdelibs/khtml/html/doctypes.gperf"
#line 63 "/opt/src/kde/tdelibs/khtml/html/doctypes.gperf"
{"-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks}
};

@ -11,7 +11,7 @@
static KCmdLineOptions options[] =
{
{ "+[kdelibs_path]", "path to kdelibs directory", 0 },
{ "+[tdelibs_path]", "path to tdelibs directory", 0 },
KCmdLineLastOption
};
@ -23,13 +23,13 @@ int main(int argc, char **argv)
KApplication app;
TQString path_to_kdelibs = "/build/wynnw/kde-src";
TQString path_to_tdelibs = "/build/wynnw/kde-src";
KJavaAppletWidget *a = new KJavaAppletWidget;
a->show();
a->applet()->setBaseURL( "file:" + path_to_kdelibs + "/kdelibs/khtml/test/" );
a->applet()->setBaseURL( "file:" + path_to_tdelibs + "/tdelibs/khtml/test/" );
a->applet()->setAppletName( "Lake" );
a->applet()->setAppletClass( "lake.class" );
a->applet()->setParameter( "image", "konqi.gif" );

@ -1,6 +1,6 @@
# This file defines handy gdb macros for KHTML
# To use it, add this line to your ~/.gdbinit :
# source /path/to/kde/sources/kdelibs/khtml/khtml-devel-gdb
# source /path/to/kde/sources/tdelibs/khtml/khtml-devel-gdb
define printdomstring
printdomstringimpl $arg0.impl

@ -459,7 +459,7 @@ void KHTMLPart::init( KHTMLView *view, GUIProfile prof )
//if ( prof == BrowserViewGUI && !parentPart() )
// loadPlugins( partObject(), this, instance() );
// "khtml" catalog does not exist, our translations are in kdelibs.
// "khtml" catalog does not exist, our translations are in tdelibs.
// removing this catalog from KGlobal::locale() prevents problems
// with changing the language in applications at runtime -Thomas Reitelbach
KGlobal::locale()->removeCatalogue("khtml");

@ -27,7 +27,7 @@ class KConfig;
#include <tqfont.h>
#include <tqmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
struct KPerDomainSettings;
class KHTMLSettingsPrivate;

@ -28,7 +28,7 @@
// qt includes and classes
#include <tqscrollview.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQPainter;
class TQRect;

@ -181,7 +181,7 @@ bool KMultiPart::openURL( const KURL &url )
return true;
}
// Yes, libkdenetwork's has such a parser already (MultiPart),
// Yes, libtdenetwork's has such a parser already (MultiPart),
// but it works on the complete string, expecting the whole data to be available....
// The version here is asynchronous.
void KMultiPart::slotData( KIO::Job *job, const TQByteArray &data )

@ -34,7 +34,7 @@ noinst_HEADERS = \
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/dcop -I$(top_srcdir)/kio -I$(top_srcdir)/libltdl \
-I$(top_srcdir)/khtml -I$(top_srcdir)/kutils $(all_includes)
SRCDOC_DEST=$(kde_htmldir)/en/kdelibs/khtml
SRCDOC_DEST=$(kde_htmldir)/en/tdelibs/khtml
## generate lib documentation
srcdoc:

@ -44,7 +44,7 @@ noinst_HEADERS = \
INCLUDES = -I$(top_srcdir)/kimgio -I$(top_srcdir)/kio -I$(top_srcdir)/dcop \
-I$(top_srcdir)/kfile -I$(top_srcdir)/khtml -I$(top_srcdir)/kutils -I$(top_srcdir) $(all_includes)
SRCDOC_DEST=$(kde_htmldir)/en/kdelibs/khtml
SRCDOC_DEST=$(kde_htmldir)/en/tdelibs/khtml
## generate lib documentation
srcdoc:

@ -39,7 +39,7 @@ INCLUDES = -I$(top_srcdir)/kimgio -I$(top_srcdir)/kio -I$(top_srcdir)/dcop \
-I$(top_srcdir)/khtml -I$(top_srcdir) -I$(top_srcdir)/kwallet/client \
-I$(top_srcdir)/kutils -I$(top_builddir)/kjs $(all_includes)
SRCDOC_DEST=$(kde_htmldir)/en/kdelibs/khtml
SRCDOC_DEST=$(kde_htmldir)/en/tdelibs/khtml
## generate lib documentation
srcdoc:

@ -19,7 +19,7 @@
#include <tqmemarray.h>
#include <tqpaintdevicemetrics.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include "ico.h"

@ -8,7 +8,7 @@
#include <tqimage.h>
#include <tqfile.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <assert.h>

@ -10,7 +10,7 @@
#include <stdlib.h>
#include <tqimage.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include "xview.h"

@ -79,6 +79,6 @@ Disadvantages
The process name of applications started via tdeinit is "tdeinit". This problem
can be corrected to a degree by changing the application name as shown
by 'ps'. However, applications like "killall" will only see "tdeinit" as
process name. To workaround this, use "kdekillall", from kdesdk/scripts,
process name. To workaround this, use "kdekillall", from tdesdk/scripts,
for applications started via tdeinit.

@ -71,7 +71,7 @@
#include <kstartupinfo.h> // schroder
#endif
#include <kdeversion.h>
#include <tdeversion.h>
#include "ltdl.h"
#include "klauncher_cmds.h"
@ -1619,7 +1619,7 @@ static void setupX()
XSetErrorHandler(tdeinit_x_errhandler);
}
// Borrowed from kdebase/kaudio/kaudioserver.cpp
// Borrowed from tdebase/kaudio/kaudioserver.cpp
static int initXconnection()
{
X11display = XOpenDisplay(NULL);

@ -72,7 +72,7 @@ extern "C" KDE_EXPORT int kdemain( int argc, char**argv )
putenv(strdup("SESSION_MANAGER="));
// Allow the locale to initialize properly
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();

@ -44,7 +44,7 @@
* <title>My own bookmarks</title>
* <bookmark href="http://www.koffice.org"><title>KOffice Web Site</title></bookmark>
* <separator/>
* <bookmark href="http://www.kdevelop.org"><title>KDevelop Web Site</title></bookmark>
* <bookmark href="http://www.tdevelop.org"><title>KDevelop Web Site</title></bookmark>
* </folder>
* </folder>
* </xbel>

@ -29,7 +29,7 @@
#include <tqobject.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KProcess;

@ -20,7 +20,7 @@
#include <tqdir.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* KFile is a class which provides a namespace for some enumerated

@ -24,7 +24,7 @@
#include <tqptrdict.h>
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KURL;

@ -30,7 +30,7 @@
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* The goal of this class is to make sure that, when the user needs to

@ -5,7 +5,7 @@
int main(int argc, char** argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KApplication app(argc, argv, "KCustomMenuEditorTest");
KCustomMenuEditor editor(0);
KConfig *cfg = new KConfig("kdesktop_custom_menu2");

@ -143,7 +143,7 @@ int main(int argc, char **argv)
TQString::tqfromLatin1("*|All Files\n"
"*.lo *.o *.la|All libtool Files"),
0, 0, true);
// dlg.setFilter( "*.kdevelop" );
// dlg.setFilter( "*.tdevelop" );
dlg.setMode( (KFile::Mode) (KFile::Files |
KFile::Directory |
KFile::ExistingOnly |

@ -22,7 +22,7 @@
#ifndef __connection_h__
#define __connection_h__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <sys/types.h>

@ -29,7 +29,7 @@
#include <tqstringlist.h>
#include <tqdict.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KArchiveDirectory;
class KArchiveFile;

@ -22,7 +22,7 @@
#include <tqobject.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_MOC_RUN
#define Q_OS_UNIX

@ -177,7 +177,7 @@ TQValueList<KDataToolInfo> KDataToolInfo::query( const TQString& datatype, const
else
constr = constr + " and " + tmp;
}
/* Bug in KTrader ? Test with HEAD-kdelibs!
/* Bug in KTrader ? Test with HEAD-tdelibs!
if ( instance )
{
TQString tmp = TQString::tqfromLatin1( "not ('%1' in ExcludeFrom)" ).arg( instance->instanceName() );

@ -22,7 +22,7 @@
#include <tqdatetime.h>
#include <tqmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#define kdirwatch KDirWatch::self()

@ -31,7 +31,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KEMailSettingsPrivate;

@ -28,7 +28,7 @@
#include <sys/stat.h>
#include <unistd.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQRegExp;
class KFileItem;

@ -21,7 +21,7 @@
#define kfileshare_h
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KDirWatch;

@ -22,7 +22,7 @@
#include <tqobject.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_WS_WIN
#undef ERROR //avoid conflicts

@ -20,7 +20,7 @@
#include <tqiodevice.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQFile;
class KFilterBase;

@ -10,7 +10,7 @@
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Interface to the KDE Image IO plugin architecture.

@ -31,7 +31,7 @@
#define KMIMEMAGIC_H
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KMimeMagic; // see below (read this one first)

@ -122,7 +122,7 @@ void KMimeTypeChooser::loadMimeTypes( const TQStringList &_selectedMimeTypes )
d->lvMimeTypes->clear();
TQMap<TQString,TQListViewItem*> groups;
// thanks to kdebase/kcontrol/filetypes/filetypesview
// thanks to tdebase/kcontrol/filetypes/filetypesview
KMimeType::List mimetypes = KMimeType::allMimeTypes();
TQValueListIterator<KMimeType::Ptr> it(mimetypes.begin());

@ -21,7 +21,7 @@
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KNFSSharePrivate;

@ -21,7 +21,7 @@
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KSambaSharePrivate;

@ -29,7 +29,7 @@ class TQImage;
/**
* This is a base class for scanning dialogs. You can derive from this class
* and implement your own dialog. An implementation is available in
* kdegraphics/libkscan.
* tdegraphics/libkscan.
*
* Application developers that wish to add scanning support to their program
* can use the static method @p KScanDialog::getScanDialog() to get an instance

@ -124,7 +124,7 @@ public:
* a number
*
* @return A list of services that satisfy the query
* @see http://developer.kde.org/documentation/library/3.5-api/kdelibs-apidocs/kio/kio/html/tradersyntax.html
* @see http://developer.kde.org/documentation/library/3.5-api/tdelibs-apidocs/kio/kio/html/tradersyntax.html
*/
virtual OfferList query( const TQString& servicetype,
const TQString& constraint = TQString::null,
@ -288,7 +288,7 @@ protected:
* - <tt>('KParts/ReadOnlyPart' in ServiceTypes) and ('text/plain' in ServiceTypes)</tt>@n
* All read-only KParts that handle the mime type 'text/plain'.
*
* @author Bernd Gehrmann <a href="mailto:bernd@kdevelop.org">bernd@kdevelop.org</a>
* @author Bernd Gehrmann <a href="mailto:bernd@tdevelop.org">bernd@tdevelop.org</a>
*/

@ -19,7 +19,7 @@
#ifndef __kio_skip_dlg__
#define __kio_skip_dlg__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <kdialog.h>
class TQPushButton;

@ -28,7 +28,7 @@ class TQImage;
* This is the baseclass for "thumbnail-plugins" in KDE. Using the class
* KIO::PreviewJob allows you to generate small images (thumbnails)
* for any kind of file, where a "ThumbCreator" is available. Have a look
* at kdebase/kioslave/thumbnail/ for existing ThumbCreators.
* at tdebase/kioslave/thumbnail/ for existing ThumbCreators.
*
* What you need to do to create and register a ThumbCreator:
* @li Inherit from this class and reimplement the create() method to

@ -1,5 +1,5 @@
# $Id$
# Makefile.am of kdebase/kioslave/http
# Makefile.am of tdebase/kioslave/http
INCLUDES= -I$(top_srcdir)/kwallet/client $(all_includes)

@ -24,7 +24,7 @@ maintainer (currently bradh@kde.org) with full details.
To add local files:
1) Create the .pem file and check it into cvs in kdelibs/kio/kssl/kssl.
1) Create the .pem file and check it into cvs in tdelibs/kio/kssl/kssl.
2) List the pem file name as a single line in 'localcerts'.

@ -47,7 +47,7 @@ class TQDateTime;
class KSSLCertChain;
class KSSLX509V3;
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_WS_WIN
#include "ksslconfig_win.h"

@ -26,7 +26,7 @@ class KSSLCertificate;
#include <tqstringlist.h>
#include <tqdatetime.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KIO_EXPORT KSSLCertificateCache {
public:

@ -23,7 +23,7 @@
#ifndef _KSSLCERTIFICATEFACTORY_H
#define _KSSLCERTIFICATEFACTORY_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KSSLCertificate;

@ -26,7 +26,7 @@ class KSSLPKCS12;
#include <tqstring.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KIO_EXPORT KSSLCertificateHome {

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KSSL;

@ -21,7 +21,7 @@
#ifndef __KSSLCSESSIONCACHE_H
#define __KSSLCSESSIONCACHE_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KURL;
class TQString;

@ -21,7 +21,7 @@
#ifndef _kde_ksslpemcallback_h
#define _kde_ksslpemcallback_h
#include <kdelibs_export.h>
#include <tdelibs_export.h>
int KIO_EXPORT KSSLPemCallback(char *buf, int size, int rwflag, void *userdata);

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KSSL;

@ -27,7 +27,7 @@ class DCOPClient;
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
// ### KDE4 - Fix constness
/**

@ -24,7 +24,7 @@
#include <tqmap.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* X.509 Map Parsing Class

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
// ### KDE4: fix constness of methods
/**

@ -28,7 +28,7 @@ static const KCmdLineOptions options[] =
int main( int argc, char **argv )
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KCmdLineArgs::init( argc, argv, "kmailservice", I18N_NOOP("KMailService"), I18N_NOOP("Mail service"), "unknown" );
KCmdLineArgs::addCmdLineOptions( options );

@ -24,7 +24,7 @@
#include <tqcstring.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short KNTLM class implements the NTLM authentication protocol.

@ -58,7 +58,7 @@ void BugMailer::slotSend() {
int main(int argc, char **argv) {
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KAboutData d("ksendbugmail", I18N_NOOP("KSendBugMail"), "1.0",
I18N_NOOP("Sends a short bug report to submit@bugs.kde.org"),
KAboutData::License_GPL, "(c) 2000 Stephan Kulow");

@ -37,7 +37,7 @@ static const KCmdLineOptions options[] =
int main(int argc, char **argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KCmdLineArgs::init(argc, argv, "ktelnetservice", I18N_NOOP("telnet service"),
I18N_NOOP("telnet protocol handler"), "unknown");
KCmdLineArgs::addCmdLineOptions(options);

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KURL;
class TQStrIList;

@ -1377,7 +1377,7 @@ UIServer* UIServer::createInstance()
extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
// GS 5/2001 - I changed the name to "TDE" to make it look better
// in the titles of dialogs which are displayed.
KAboutData aboutdata("kio_uiserver", I18N_NOOP("TDE"),

@ -44,7 +44,7 @@
#include <time.h>
#include <utime.h>
// The code comes partly from kdebase/kioslave/trash/testtrash.cpp
// The code comes partly from tdebase/kioslave/trash/testtrash.cpp
static bool check(const TQString& txt, TQString a, TQString b)
{

@ -34,7 +34,7 @@
#include <assert.h>
#include <tqdir.h>
// The code comes partly from kdebase/kioslave/trash/testtrash.cpp
// The code comes partly from tdebase/kioslave/trash/testtrash.cpp
static bool check(const TQString& txt, TQString a, TQString b)
{

@ -292,7 +292,7 @@ int main(int argc, char **argv)
TQCString home = getenv("HOME");
TQCString kdehome = getenv("KDEHOME");
filter( "$SOMEVAR/kdelibs/kio", 0, KURIFilterData::ERROR ); // note: this dir doesn't exist...
filter( "$SOMEVAR/tdelibs/kio", 0, KURIFilterData::ERROR ); // note: this dir doesn't exist...
filter( "$ETC/passwd", "/etc/passwd", KURIFilterData::LOCAL_FILE );
filter( "$QTDIR/doc/html/functions.html#s", TQCString("file://")+qtdir+"/doc/html/functions.html#s", KURIFilterData::LOCAL_FILE );
filter( "http://www.kde.org/$USER", "http://www.kde.org/$USER", KURIFilterData::NET_PROTOCOL ); // no expansion
@ -325,7 +325,7 @@ int main(int argc, char **argv)
KStandardDirs::makeDir( kdehome+"/share/Dir[Bracket" );
filter( "$KDEHOME/share/Dir[Bracket", kdehome+"/share/Dir[Bracket", KURIFilterData::LOCAL_DIR );
filter( "$HOME/$KDEDIR/kdebase/kcontrol/ebrowsing", 0, KURIFilterData::ERROR );
filter( "$HOME/$KDEDIR/tdebase/kcontrol/ebrowsing", 0, KURIFilterData::ERROR );
filter( "$1/$2/$3", "http://www.google.com/search?q=$1/$2/$3&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL ); // can be used as bogus or valid test. Currently triggers default search, i.e. google
filter( "$$$$", "http://www.google.com/search?q=$$$$&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL ); // worst case scenarios.

@ -1,4 +1,4 @@
## Makefile.am of kdebase/kioslave/file
## Makefile.am of tdebase/kioslave/file
AM_CPPFLAGS = -D_LARGEFILE64_SOURCE

@ -112,7 +112,7 @@ extern "C" { KDE_EXPORT int kdemain(int argc, char **argv); }
int kdemain( int argc, char **argv )
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KInstance instance( "kio_file" );
( void ) KGlobal::locale();

@ -139,7 +139,7 @@ extern "C" { KDE_EXPORT int kdemain(int argc, char **argv); }
int kdemain( int argc, char **argv )
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KInstance instance( "kio_ftp" );
( void ) KGlobal::locale();

@ -1,5 +1,5 @@
# $Id$
# Makefile.am of kdebase/kioslave/http
# Makefile.am of tdebase/kioslave/http
SUBDIRS = kcookiejar

@ -20,13 +20,13 @@ features such as locking.
This might involve an external program to parse the labels, and something to
configure access accordingly. There is only some basic things that need to be
added to kio_http to support this. The majority of the work has to be done at the
application level. A khtml plugin in kdeaddons to do this might be a nice idea.
application level. A khtml plugin in tdeaddons to do this might be a nice idea.
- P3P support:
This can also be implemented as a plugin to konqueror and does
not need any speical support in HTTP except perhaps sending a
flag that indicates that the web page provides some P3P information.
This is something that can be added as a plugin to kdeaddons.
This is something that can be added as a plugin to tdeaddons.
Things that do not require programming

@ -97,7 +97,7 @@ extern "C" {
int kdemain( int argc, char **argv )
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KInstance instance( "kio_http" );
( void ) KGlobal::locale();

@ -189,7 +189,7 @@ void scanDirectory(FileInfoList &fileEntries, const TQString &name, const TQStri
extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KCmdLineArgs::init( argc, argv, appName,
I18N_NOOP("KDE HTTP cache maintenance tool"),
description, version, true);

@ -1,4 +1,4 @@
# Makefile.am of kdebase/kioslave/http
# Makefile.am of tdebase/kioslave/http
SUBDIRS=tests
INCLUDES= $(all_includes)

@ -42,7 +42,7 @@ static const KCmdLineOptions options[] =
extern "C" KDE_EXPORT int kdemain(int argc, char *argv[])
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KCmdLineArgs::init(argc, argv, "kcookiejar", I18N_NOOP("HTTP cookie daemon"),
description, version);

@ -1,5 +1,5 @@
# $Id$
# Makefile.am of kdebase/kioslave/http
# Makefile.am of tdebase/kioslave/http
INCLUDES= $(all_includes)

@ -58,7 +58,7 @@ uninstall-local:
# make messages.po. Move this one to ../po/ and "make merge" in po
# the -x is for skipping messages already translated in kdelibs
# the -x is for skipping messages already translated in tdelibs
messages:
LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name \*.cxx -o -name \*.ecpp -o -name \*.C`; \
if test -n "$$LIST"; then \

@ -15,7 +15,7 @@
* *
***************************************************************************/
/* This file is heavily based on tar.cc from kdebase
/* This file is heavily based on tar.cc from tdebase
* (c) David Faure <faure@kde.org>
*/

@ -15,7 +15,7 @@
* *
***************************************************************************/
/* This file is heavily based on tar.h from kdebase
/* This file is heavily based on tar.h from tdebase
* (c) David Faure <faure@kde.org>
*/

@ -15,7 +15,7 @@
* *
***************************************************************************/
/* This file is heavily based on ktar.cpp from kdelibs (c) David Faure */
/* This file is heavily based on ktar.cpp from tdelibs (c) David Faure */
#include <stdio.h>
#include <stdlib.h>

@ -15,7 +15,7 @@
* *
***************************************************************************/
/* This file is heavily based on ktar.h from kdelibs
/* This file is heavily based on ktar.h from tdelibs
* (c) Torben Weis <weis@kde.org>, David Faure <faure@kde.org>
*/

@ -1,5 +1,5 @@
## $Id$
## Makefile.am of kdebase/kioslave/metainfo
## Makefile.am of tdebase/kioslave/metainfo
INCLUDES = $(all_includes)
AM_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor

@ -1,6 +1,6 @@
# This file defines handy gdb macros
# To use it, add this line to your ~/.gdbinit :
# source /path/to/kde/sources/kdelibs/kjs/kjs-devel-gdb
# source /path/to/kde/sources/tdelibs/kjs/kjs-devel-gdb
define printucharstar
set $i=0

@ -35,7 +35,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
*/

@ -35,7 +35,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
*/
@ -54,7 +54,7 @@
#include <kmenubar.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kdeversion.h>
#include <tdeversion.h>
#include <tqtabwidget.h>
#include <klocale.h>

@ -35,7 +35,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
*/

@ -35,7 +35,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
*/

@ -35,7 +35,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
*/

@ -13,7 +13,7 @@
// copyright : (C) 1999-2003 by Szymon Stefanek (stefanek@tin.it)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -13,7 +13,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -15,7 +15,7 @@
// copyright : (C) 1999-2003 by Szymon Stefanek (stefanek@tin.it)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -14,7 +14,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -13,7 +13,7 @@
// copyright : (C) 1999-2003 by Szymon Stefanek (stefanek@tin.it)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -13,7 +13,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -17,7 +17,7 @@
// copyright : (C) 1999-2003 by Szymon Stefanek (stefanek@tin.it)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -17,7 +17,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -13,7 +13,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------
@ -27,7 +27,7 @@
#ifndef _KMDI_DEFINES_H_
#define _KMDI_DEFINES_H_
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#define KMDI_CHILDFRM_SEPARATOR 2
#define KMDI_CHILDFRM_BORDER 4

@ -21,7 +21,7 @@
#include <tqobject.h>
#include <tqmap.h>
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KMDI_EXPORT KMdiFocusList: public TQObject
{

@ -31,7 +31,7 @@
#include <assert.h>
#include <kdebug.h>
#include <kdockwidget.h>
#include <kdeversion.h>
#include <tdeversion.h>
#include "kmdimainfrm.h"
#include "kmditoolviewaccessor.h"
#include "kmditoolviewaccessor_p.h"

@ -12,7 +12,7 @@
// copyright : (C) 1999-2003 by Massimo Morin (mmorin@schedsys.com)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -12,7 +12,7 @@
// copyright : (C) 1999-2003 by Massimo Morin (mmorin@schedsys.com)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -16,7 +16,7 @@
// copyright : (C) 1999-2003 by Szymon Stefanek (stefanek@tin.it)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------
@ -46,7 +46,7 @@
#include <kmenubar.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kdeversion.h>
#include <tdeversion.h>
#include <tqtabwidget.h>
#include <klocale.h>
#include <kstdaccel.h>

@ -16,7 +16,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -12,7 +12,7 @@
// copyright : (C) 1999-2003 by Massimo Morin (mmorin@schedsys.com)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -14,7 +14,7 @@
// copyright : (C) 1999-2003 by Szymon Stefanek (stefanek@tin.it)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -13,7 +13,7 @@
// copyright : (C) 1999-2003 by Falk Brettschneider
// and
// Szymon Stefanek (stefanek@tin.it)
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -13,7 +13,7 @@
// copyright : (C) 1999-2000 by Szymon Stefanek (stefanek@tin.it)
// and
// Falk Brettschneider
// email : falkbr@kdevelop.org (Falk Brettschneider)
// email : falkbr@tdevelop.org (Falk Brettschneider)
//----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------

@ -3,7 +3,7 @@
-------------------
begin : Mon Nov 8 1999
copyright : (C) 1999 by Falk Brettschneider
email : falkbr@kdevelop.org
email : falkbr@tdevelop.org
***************************************************************************/
/***************************************************************************

@ -3,7 +3,7 @@
-------------------
begin : Mon Nov 8 1999
copyright : (C) 1999 by Falk Brettschneider
email : falkbr@kdevelop.org
email : falkbr@tdevelop.org
***************************************************************************/
/***************************************************************************

@ -28,7 +28,7 @@ In this case, yes, that could be saved in the part.
--------------
4) Perhaps a part wants to know if it got activated, so we might want to
re-introduce that PartActivateEvent from kdelibs/kparts.
re-introduce that PartActivateEvent from tdelibs/kparts.
Question: Shall this event be sent when the GUI of the part is activated
or shall it be sent when the part "really" got activated (via KPartManager)?
@ -90,7 +90,7 @@ it is embedded (with or without GUI items). Hmmm..
Loading and saving in that case would mean save/load the view profile.
(David) Hmmm... somebody wanting to embed a full konqy ? Component technology allows
you to avoid duplicate code by embedding a component that does what you want. Like kdevelop
you to avoid duplicate code by embedding a component that does what you want. Like tdevelop
embeds a kedit component. Which app would want to embed a huge component containing
a file maneger + a web browser + a generic viewer + ... ? I think this is not a component,
but an application. Views are components...
@ -140,7 +140,7 @@ the whole, at other places).
(David) Depends how we want to handle the popupmenu in KonqHTMLView, for
instance.
At the moment it's missing, and it will be a problem when that view is moved to
kdelibs : no more libkonq for it. But anyway I agree : the part should
tdelibs : no more libkonq for it. But anyway I agree : the part should
generally take care of its own menu (I'm thinking of KNotePadPart for instance)
Perhaps this would remain in KBrowserPart though (we need it in konqueror).
@ -331,7 +331,7 @@ changes.
<dfaure> well I think _yes_ you would expect its actions to become available to the user, no ?
<weis> dfaure: Imagine you write a report generator that shows database queries using the browser view. Would you as a programmer want to have menu entries like "OpenURL" and "History" in your report generator? I would not.
<dfaure> hmmm ... then it's the HTML widget you're using, not the part...
<dfaure> when kdevelop embeds kwrite, it wants the actions from kwrite...
<dfaure> when tdevelop embeds kwrite, it wants the actions from kwrite...
<dfaure> open file, save file, ...
<weis> dfaure: Well,. why not load a HTML widget at runtime as a part ...
<dfaure> sure, why not :-)

@ -4,7 +4,7 @@
#include <tqobject.h>
#include <tqvariant.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KParts
{

@ -300,7 +300,7 @@ static TQString makeQuestion( const KURL& url, const TQString& mimeType, const T
BrowserRun::AskSaveResult BrowserRun::askSave( const KURL & url, KService::Ptr offer, const TQString& mimeType, const TQString & suggestedFilename )
{
// SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC
// NOTE: Keep this function in sync with kdebase/kcontrol/filetypes/filetypedetails.cpp
// NOTE: Keep this function in sync with tdebase/kcontrol/filetypes/filetypedetails.cpp
// FileTypeDetails::updateAskSave()
TQString question = makeQuestion( url, mimeType, suggestedFilename );
@ -323,7 +323,7 @@ BrowserRun::AskSaveResult BrowserRun::askSave( const KURL & url, KService::Ptr o
BrowserRun::AskSaveResult BrowserRun::askEmbedOrSave( const KURL & url, const TQString& mimeType, const TQString & suggestedFilename, int flags )
{
// SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC
// NOTE: Keep this funcion in sync with kdebase/kcontrol/filetypes/filetypedetails.cpp
// NOTE: Keep this funcion in sync with tdebase/kcontrol/filetypes/filetypedetails.cpp
// FileTypeDetails::updateAskSave()
KMimeType::Ptr mime = KMimeType::mimeType( mimeType );

@ -22,7 +22,7 @@
#include <tqevent.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQWidget;

@ -23,7 +23,7 @@
#include <tqdict.h>
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KParts {

@ -25,7 +25,7 @@
#include <tqwidget.h>
#include <tqptrlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KInstance;

@ -26,7 +26,7 @@
#include <kstatusbar.h>
#include <kmainwindow.h>
#include <kdebug.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <kparts/part.h>
#include <kparts/event.h>

@ -24,7 +24,7 @@
#include <tqwidget.h>
#include <tqvaluelist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KStatusBar;
class KMainWindow;

@ -26,7 +26,7 @@ Shell::Shell()
// We can do this "switch active part" because we have a splitter with
// two items in it.
// I wonder what kdevelop uses/will use to embed kedit, BTW.
// I wonder what tdevelop uses/will use to embed kedit, BTW.
m_splitter = new TQSplitter( this );
m_part1 = new Part1(this, m_splitter);

@ -20,7 +20,7 @@ Shell::Shell()
{
// We can do this "switch active part" because we have a splitter with
// two items in it.
// I wonder what kdevelop uses/will use to embed kedit, BTW.
// I wonder what tdevelop uses/will use to embed kedit, BTW.
m_splitter = new TQSplitter( this );
m_part1 = new Part1(this, m_splitter);

@ -33,7 +33,7 @@
#include <kconfig.h>
#include <ksimpleconfig.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Simple API covering most of the uses of libkrandr.

@ -197,7 +197,7 @@ bool RandRScreen::applyProposedAndConfirm()
bool RandRScreen::confirm()
{
// uncomment the line below and edit out the KTimerDialog stuff to get
// a version which works on today's kdelibs (no accept dialog is presented)
// a version which works on today's tdelibs (no accept dialog is presented)
// FIXME remember to put the dialog on the right screen
@ -780,7 +780,7 @@ bool RandRDisplay::showTestConfigurationDialog()
bool RandRScreen::showTestConfigurationDialog()
{
// uncomment the line below and edit out the KTimerDialog stuff to get
// a version which works on today's kdelibs (no accept dialog is presented)
// a version which works on today's tdelibs (no accept dialog is presented)
// FIXME remember to put the dialog on the right screen

@ -5,7 +5,7 @@ KDE RESOURCES
-------------
The KDE Resource framework can be used to manage resources of
different types, organized in families. The Resource framework is
currently used for addressbook resources in kdelibs/kabc and for
currently used for addressbook resources in tdelibs/kabc and for
calendar resources in libkcal.
A resource family represents stores of information of a certain kind
(appointments, contacts). A resource type class represents a way in

@ -26,7 +26,7 @@
#include <tqstringlist.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KSpell2
{

@ -24,7 +24,7 @@
#define KSPELL_FILTER_H
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KSpell2
{

@ -24,7 +24,7 @@
#include <tqstringlist.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KSharedConfig;

@ -105,9 +105,9 @@ seems sensible.\
Building \
========\
\
This code needs to live in a subdir off the khtml directory in kdelibs. The\
This code needs to live in a subdir off the khtml directory in tdelibs. The\
subdir should be called 'xpath'. The easiest way to regenerate the makefiles\
is to go to the root of the kdelibs tree and run: \
is to go to the root of the tdelibs tree and run: \
create_makefiles khtml/xpath\
\
This code is intended to compile, but not to work.\

@ -22,7 +22,7 @@
#define KSPELL_CONFIGWIDGET_H
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KSpell2
{

@ -40,7 +40,7 @@ using namespace std;
#include <tqasciidict.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include "tester.h"

@ -27,7 +27,7 @@
#define SAMPLETESTMODULE_H
#include "tester.h"
// Outside of kdelibs you would use: #include <kunittest/tester.h>
// Outside of tdelibs you would use: #include <kunittest/tester.h>
class SampleTester : public KUnitTest::Tester
{

@ -53,9 +53,9 @@
* You are responsible for what you do with it though. It
* is licensed under a BSD license - read the top of each file.
*
* All the GUI related stuff is in kdesdk/kunittest, the core libraries are in kdelibs/kunittest.
* All the GUI related stuff is in tdesdk/kunittest, the core libraries are in tdelibs/kunittest.
* A simple example modules is in kdelisbs/kunittest/samplemodule.{h,cpp}, however more examples
* can be found in kdesdk/kunittest/example.
* can be found in tdesdk/kunittest/example.
*
* There are roughly two ways to use the KUnitTest library. Either you create dynamically
* loadable modules and use the kunittestmodrunner or kunittestguimodrunner programs to run
@ -67,7 +67,7 @@
* them.
* @li runnergui.{h,cpp} - the GUI wrapper around the runner. The GUI neatly organizes the
* test results. With the kunittest helper script it can even add the debug output
* to the test results. For this you need to have the kdesdk module installed.
* to the test results. For this you need to have the tdesdk module installed.
* @li tester.h - which holds the base of a pure test object (Tester).
* @li module.h - defines macros to create a dynamically loadable module.
*
@ -314,7 +314,7 @@ SampleTest - 1 test passed, 1 test failed
* @li kunittestmod --folder [folder] --query [query] : Loads and runs all modules in the folder matching the query. Use a GUI.
* @li kunittest_debughelper [dcopobject] : A PERL script that is able to redirect debug output to a RunnerGUI instance.
*
* These scripts are part of the kdesdk/kunittest module.
* These scripts are part of the tdesdk/kunittest module.
*/
/*!
@ -329,7 +329,7 @@ using namespace std;
#include <tqstringlist.h>
#include <tqasciidict.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/*! @def CHECK(x,y)
* Use this macro to perform an equality check. For example

@ -125,7 +125,7 @@ void KCModuleContainer::addModule( const TQString& module )
{
/* In case it doesn't exist we just silently drop it.
* This allows people to easily extend containers.
* For example, KCM monitor gamma can be in kdegraphics.
* For example, KCM monitor gamma can be in tdegraphics.
*/
if ( !KService::serviceByDesktopName( module ) )
{

@ -25,7 +25,7 @@
#include <tqstringlist.h>
#include <kservice.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KAboutData;
class KCModule;

@ -33,7 +33,7 @@
#include <tqptrlist.h>
#include <tqpushbutton.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQPixmap;
class TQPainter;

@ -23,7 +23,7 @@
#include <tqwidget.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KInstance;
class KPluginInfo;

@ -22,7 +22,7 @@
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KConfigGroup;
class TQListViewItem;

@ -22,7 +22,7 @@
#include <tqobject.h>
#include <tqmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCString;
class TQSignal;

@ -21,7 +21,7 @@
#define KSETTINGS_PLUGINPAGE_H
#include <kcmodule.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KPluginSelector;

@ -22,7 +22,7 @@
#include "kwallet.h"
#include <kconfig.h>
#include <kdebug.h>
#include <kdeversion.h>
#include <tdeversion.h>
#include <dcopclient.h>
#include <dcopref.h>
#include <tqpopupmenu.h>

@ -24,7 +24,7 @@
#define DEVICEMAN_H
#include <libkmid/dattypes.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class MidiOut;
class MidiMapper;

@ -27,7 +27,7 @@
#ifdef __cplusplus
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Simple API covering most of the uses of libkmid.

@ -27,7 +27,7 @@
#include <libkmid/dattypes.h>
#include <libkmid/track.h>
#include <stdio.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Contains all the information about a MIDI file.

@ -26,7 +26,7 @@
#include <stdio.h>
#include <libkmid/dattypes.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#define KM_NAME_SIZE 30

@ -24,7 +24,7 @@
#ifndef _MT32TOGM_H
#define _MT32TOGM_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
extern int KMID_EXPORT MT32toGM[128];

@ -25,7 +25,7 @@
#define NOTEARRAY_H
#include <libkmid/dattypes.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Holds a resizeable array of note on/off and patch change events. It can

@ -23,7 +23,7 @@
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQTimer;
class KScreenSaverPrivate;

@ -33,7 +33,7 @@
#include "serviceifaceimpl.h"
#include "network.h"
#include <kdeversion.h>
#include <tdeversion.h>
#include <kdemacros.h>
#if KDE_IS_VERSION( 3,3,90 )

@ -1,5 +1,5 @@
<?xml version = '1.0'?>
<kdevelop>
<tdevelop>
<general>
<author>Will Stephenson</author>
<email>wstephenson@suse.de</email>
@ -105,4 +105,4 @@
<headerCompletionDelay>250</headerCompletionDelay>
</codecompletion>
</kdevcppsupport>
</kdevelop>
</tdevelop>

@ -47,7 +47,7 @@ install( FILES
kconfigdialogmanager.h kconfigbase.h kdesktopfile.h
kurl.h ksock.h kaboutdata.h kcmdlineargs.h kconfigbackend.h
kapp.h kapplication.h kuniqueapp.h kuniqueapplication.h
kcharsets.h kdeversion.h kpty.h kprocess.h kprocctrl.h
kcharsets.h tdeversion.h kpty.h kprocess.h kprocctrl.h
klocale.h kicontheme.h kiconloader.h kdebug.h twinmodule.h
twin.h krootprop.h kshortcut.h kkeynative.h kaccel.h
kglobalaccel.h kstdaccel.h kshortcutlist.h kcatalogue.h
@ -66,7 +66,7 @@ install( FILES
kcalendarsystem.h kcalendarsystemfactory.h kmacroexpander.h
kmanagerselection.h kmountpoint.h kuser.h klockfile.h
kidna.h ktempdir.h kshell.h fixx11h.h kxerrorhandler.h
kdelibs_export.h kde_file.h ktimezones.h
tdelibs_export.h kde_file.h ktimezones.h
${CMAKE_CURRENT_BINARY_DIR}/kdemacros.h
DESTINATION ${INCLUDE_INSTALL_DIR} )
@ -115,7 +115,7 @@ set( ${target}_SRCS
ksycocafactory.cpp kxmessages.cpp kstartupinfo.cpp
kcatalogue.cpp kasyncio.cpp kmultipledrag.cpp kstaticdeleter.cpp
kappdcopiface.cpp kappdcopiface.skel kclipboard.cpp
kcheckaccelerators.cpp kdeversion.cpp kdebugdcopiface.cpp
kcheckaccelerators.cpp tdeversion.cpp kdebugdcopiface.cpp
kdebugdcopiface.skel kcalendarsystem.cpp kcalendarsystemgregorian.cpp
kcalendarsystemhijri.cpp kcalendarsystemhebrew.cpp
kcalendarsystemfactory.cpp kmacroexpander.cpp kidna.cpp

@ -97,7 +97,7 @@ kclipboard.cpp Carsten Pfeiffer <pfeiffer@kde.org> (copyright)
kconfigdialogmanager.cpp
kconfigskeleton.cpp
kdebugdcopiface.cpp Andreas Beckermann (b_mann@gmx.de) (copyright)
kdeversion.cpp
tdeversion.cpp
kglobalaccel_win.cpp Ellis Whitehead <ellis@kde.org> (copyright)
kkeyserver_x11.cpp
klockfile.cpp Waldo Bastian <bastian@kde.org> (copyright)

@ -40,7 +40,7 @@ include_HEADERS = kconfig.h kconfigskeleton.h \
kconfigdata.h ksimpleconfig.h kconfigdialogmanager.h \
kconfigbase.h kdesktopfile.h kurl.h ksock.h kaboutdata.h \
kcmdlineargs.h kconfigbackend.h kapp.h kapplication.h kuniqueapp.h \
kuniqueapplication.h kcharsets.h kdeversion.h kpty.h kprocess.h \
kuniqueapplication.h kcharsets.h tdeversion.h kpty.h kprocess.h \
kprocctrl.h klocale.h kicontheme.h kiconloader.h kdebug.h \
twinmodule.h twin.h krootprop.h kshortcut.h kkeynative.h kaccel.h \
kglobalaccel.h kstdaccel.h kshortcutlist.h kcatalogue.h \
@ -58,7 +58,7 @@ include_HEADERS = kconfig.h kconfigskeleton.h \
ktypelist.h ksortablevaluelist.h kdebugclasses.h kclipboard.h \
kcalendarsystem.h kcalendarsystemfactory.h kmacroexpander.h \
kmanagerselection.h kmountpoint.h kuser.h klockfile.h \
kidna.h ktempdir.h kshell.h fixx11h.h kxerrorhandler.h kdelibs_export.h \
kidna.h ktempdir.h kshell.h fixx11h.h kxerrorhandler.h tdelibs_export.h \
kdemacros.h kde_file.h ktimezones.h
libtdefakes_la_SOURCES = fakes.c vsnprintf.c
@ -112,7 +112,7 @@ libtdecore_la_SOURCES = libintl.cpp kapplication.cpp \
kxmessages.cpp kstartupinfo.cpp kcatalogue.cpp kasyncio.cpp \
kmultipledrag.cpp kstaticdeleter.cpp kappdcopiface.cpp \
kappdcopiface.skel kclipboard.cpp kcheckaccelerators.cpp \
kdeversion.cpp kdebugdcopiface.cpp kdebugdcopiface.skel \
tdeversion.cpp kdebugdcopiface.cpp kdebugdcopiface.skel \
kcalendarsystem.cpp kcalendarsystemgregorian.cpp \
kcalendarsystemhijri.cpp kcalendarsystemhebrew.cpp \
kcalendarsystemfactory.cpp kmacroexpander.cpp kidna.cpp \
@ -130,7 +130,7 @@ libtdecore_la_NMCHECKWEAK = $(srcdir)/libtdecore_weak.nmcheck $(srcdir)/libqt-mt
libtdecore_la_METASOURCES = AUTO
SRCDOC_DEST=$(kde_htmldir)/en/kdelibs/tdecore
SRCDOC_DEST=$(kde_htmldir)/en/tdelibs/tdecore
kdebugdir = $(kde_confdir)
kdebug_DATA = kdebug.areas kdebugrc language.codes
@ -154,7 +154,7 @@ install-data-local:
uninstall-local:
-rm -f $(DESTDIR)$(includedir)/kio/kmdcodec.h
# If you add a color palette file here, please change kdelibs/tdeui/kcolordialog.cpp too to allow to translate the name
# If you add a color palette file here, please change tdelibs/tdeui/kcolordialog.cpp too to allow to translate the name
colors_DATA = 40.colors Web.colors Royal.colors Rainbow.colors
colorsdir = $(kde_confdir)/colors

@ -68,7 +68,7 @@ MapNotify=<bool>
- this key is obsolete
- true is equivalent to X-KDE-StartupNotify=true and no X-KDE-WMClass set
- false is equivalent to X-KDE-StartupNotify=true and X-KDE-WMClass=0
- many .desktop files in KDE ( especially in kdebase/kappfinder )
- many .desktop files in KDE ( especially in tdebase/kappfinder )
seem to have MapNotify=false even though it's not needed, this
needs to be checked and replaced by the needed X-KDE-* values,
often just X-KDE-StartupNotify=true should be enough
@ -88,7 +88,7 @@ The KStartupInfo classes :
--------------------------
In some cases, or if you are interested in getting the ASN information, you
have to use the KStartupInfo classes in kdelibs/tdecore.
have to use the KStartupInfo classes in tdelibs/tdecore.
Receiving the application startup notification information :
------------------------------------------------------------
@ -147,7 +147,7 @@ update the ASN info when necessary, e.g. when KUniqueApplication
forks into background, it sends the PID change. That's how compliant
applications should work, and this support for ASN should be provided
by toolkits. All KDE application should be compliant by now, since
kdelibs do all the necessary things. The KDE_STARTUP_ENV variable
tdelibs do all the necessary things. The KDE_STARTUP_ENV variable
is read and unset in KApplication constructor, and _KDE_STARTUP_ID
is set on every toplevel window in KApplication::setTopWidget().
However, majority of applications aren't compliant now, and even

@ -19,7 +19,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#include <config.h>

@ -572,7 +572,7 @@ bool KAccel::insertItem( const TQString& sLabel, const TQString& sAction,
return pAction != 0;
}
// Used in kdeutils/kjots
// Used in tdeutils/kjots
bool KAccel::insertStdItem( KStdAccel::StdAccel id, const TQString& sLabel )
{
KAccelAction* pAction = d->insert( KStdAccel::name( id ), sLabel, TQString::null,

@ -23,7 +23,7 @@
#include <tqaccel.h>
#include <kshortcut.h>
#include <kstdaccel.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQPopupMenu; // for obsolete insertItem() methods below
class TQWidget;

@ -25,7 +25,7 @@
class TQWidget;
class TQString;
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* KDE Accelerator manager.

@ -27,7 +27,7 @@
#define KALLOCATOR_H
#include <tqvaluelist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KZoneAllocatorPrivate;

@ -24,7 +24,7 @@
#include <tqstringlist.h>
#include <tqcstring.h>
#include <dcopref.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KApplication;

@ -22,8 +22,8 @@
#define _KAPP_H
// Version macros. Never put this further down.
#include "kdeversion.h"
#include "kdelibs_export.h"
#include "tdeversion.h"
#include "tdelibs_export.h"
class KConfig;
class KCharsets;
@ -1078,7 +1078,7 @@ public:
/**
* Updates the last user action timestamp to the given time, or to the current time,
* if 0 is given. Do not use unless you're really sure what you're doing.
* Consult focus stealing prevention section in kdebase/twin/README.
* Consult focus stealing prevention section in tdebase/twin/README.
* @since 3.2
*/
void updateUserTimestamp( unsigned long time = 0 );
@ -1095,7 +1095,7 @@ public:
* to the given time, or to this application's user time, if 0 is given.
* Use before causing user interaction in the remote application, e.g. invoking a dialog
* in the application using a DCOP call.
* Consult focus stealing prevention section in kdebase/twin/README.
* Consult focus stealing prevention section in tdebase/twin/README.
* @since 3.3
*/
void updateRemoteUserTimestamp( const TQCString& dcopId, unsigned long time = 0 );

@ -23,7 +23,7 @@
#include <tqobject.h>
#include <tqiodevice.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#ifdef Q_MOC_RUN
#define USE_QT4

@ -24,7 +24,7 @@
#define __KAUDIOPLAYER_H__
#include <tqobject.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KAudioPlayerPrivate;
/**

@ -23,7 +23,7 @@
#include <tqdatetime.h>
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KLocale;

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KCalendarSystem;
class KLocale;

@ -58,7 +58,7 @@ KCatalogue::KCatalogue(const TQString & name, const TQString & language )
d->name = name;
d->language = language;
// at the moment we do not know more. To find out the plural type we first have to look into
// kdelibs.mo for the language. And for this we already need a catalog object. So this data
// tdelibs.mo for the language. And for this we already need a catalog object. So this data
// has to be set after we have the first catalog objects.
d->pluralType = -1;

@ -21,7 +21,7 @@
#define KCATALOGUE_H
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
struct kde_loaded_l10nfile;
@ -83,7 +83,7 @@ public:
int pluralType() const;
/**
* Sets the plural type for the catalog. The caller has probably looked it up in a kdelibs.mo-catalog
* Sets the plural type for the catalog. The caller has probably looked it up in a tdelibs.mo-catalog
* for the appropriate language
*
* @return The plural type for the catalog

@ -23,7 +23,7 @@
#include <tqfont.h>
#include <tqstringlist.h>
#include <tqptrlist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KGlobal;
class KCharsetsPrivate;

@ -31,7 +31,7 @@
class TQMenuData;
class TQTextView;
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
@internal

@ -23,7 +23,7 @@
#include <tqmime.h>
#include <tqobject.h>
#include <tqstrlist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* This class is only for internal use.

@ -19,7 +19,7 @@
#ifndef _KCMDLINEARGS_H_
#define _KCMDLINEARGS_H_
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#include <kurl.h>
#include <tqptrlist.h>

@ -27,7 +27,7 @@
#include <tqstringlist.h>
#include <tqguardedptr.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#include <kglobalsettings.h>
#include <ksortablevaluelist.h>
#include <kshortcut.h>

@ -22,6 +22,6 @@ METASOURCES = AUTO
CLEANFILES = exampleprefs_base.h exampleprefs_base.cpp
## The example's messages should not go into kdelibs.pot
## The example's messages should not go into tdelibs.pot
messages: rc.cpp
true

@ -26,7 +26,7 @@
#include <kconfigbase.h>
#include <klockfile.h>
#include <klocale.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQFile;
class KConfigBackEndPrivate;

@ -33,7 +33,7 @@
#include <tqmap.h>
#include "kconfigdata.h"
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KConfigBackEnd;
class KConfigBasePrivate;

@ -23,7 +23,7 @@
#define _KCONFIGDATA_H
#include <tqmap.h> // generic red-black tree class
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* map/dict/list config node entry.

@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
* Copyright (C) 2003 Benjamin C Meyer (ben+kdelibs at meyerhome dot net)
* Copyright (C) 2003 Benjamin C Meyer (ben+tdelibs at meyerhome dot net)
* Copyright (C) 2003 Waldo Bastian <bastian@kde.org>
*
* This library is free software; you can redistribute it and/or

@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
* Copyright (C) 2003 Benjamin C Meyer (ben+kdelibs at meyerhome dot net)
* Copyright (C) 2003 Benjamin C Meyer (ben+tdelibs at meyerhome dot net)
* Copyright (C) 2003 Waldo Bastian <bastian@kde.org>
*
* This library is free software; you can redistribute it and/or
@ -23,7 +23,7 @@
#include <tqobject.h>
#include <tqptrlist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KConfigSkeleton;
class KConfigSkeletonItem;
@ -72,7 +72,7 @@ class TQSqlPropertyMap;
* it is modified you should add its signal using addWidgetChangedSignal().
* @since 3.2
* @author Benjamin C Meyer <ben+kdelibs at meyerhome dot net>
* @author Benjamin C Meyer <ben+tdelibs at meyerhome dot net>
* @author Waldo Bastian <bastian@kde.org>
*/
class TDECORE_EXPORT KConfigDialogManager : public TQObject {

@ -23,7 +23,7 @@
#define __KCRASH_H
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* This class handles segmentation-faults.

@ -22,7 +22,7 @@
#include <tqobject.h>
#include <tqcstring.h>
#include <tqvaluelist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KDCOPPropertyProxyPrivate;
/**

@ -113,7 +113,7 @@ void printResult(const TQString &s)
int main(int argc, char **argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KAboutData about("kde-config", "kde-config", "1.0", description, KAboutData::License_GPL, "(C) 2000 Stephan Kulow");
KCmdLineArgs::init( argc, argv, &about);

@ -113,7 +113,7 @@ void printResult(const TQString &s)
int main(int argc, char **argv)
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KAboutData about("kde-config", "kde-config", "1.0", description, KAboutData::License_GPL, "(C) 2000 Stephan Kulow");
KCmdLineArgs::init( argc, argv, &about);

@ -24,12 +24,12 @@
177 tdecore (KConfigSkeleton)
178 tdecore (KConfigDialogManager)
179 tdecore (KNetwork resolver)
180 tdecore (kdelibs)
180 tdecore (tdelibs)
200 tdeui (KMainWindow)
220 tdeui (KToolBar)
230 tdeui (KCommand)
240 tdeui (kdelibs)
250 kfile (kdelibs)
240 tdeui (tdelibs)
250 kfile (tdelibs)
264 tdecore (KIconLoader)
265 tdecore (KIconEffect)
270 tdeui (KRootPixmap)
@ -56,20 +56,20 @@
711 kutils (KCModuleProxy)
712 kutils (KCModuleInfo)
713 kutils (KCModuleContainer)
750 kspell (kdelibs)
750 kspell (tdelibs)
760 kmdi
780 kcmshell (kdelibs)
790 kimproxy (kdelibs)
800 kabapi (kdelibs)
900 tdesu (kdelibs)
912 ksmartcard (kdelibs)
780 kcmshell (tdelibs)
790 kimproxy (tdelibs)
800 kabapi (tdelibs)
900 tdesu (tdelibs)
912 ksmartcard (tdelibs)
1000 kparts
1001 kparts (mainwindow)
1002 kparts (factory)
# kdebase
# tdebase
1201 konqtree
1202 konqueror
1203 libkonq
@ -90,7 +90,7 @@
1219 media kioslave
1220 remote kioslave
1400 khelpcenter (kdebase)
1400 khelpcenter (tdebase)
1401 kcmhelpcenter
1402 khc_indexbuilder
@ -102,11 +102,11 @@
1432 nspluginviewer (part)
1433 nspluginscan
# kdeutils
1501 khexedit (kdeutils)
1511 kdessh (kdeutils)
1512 kdepasswd (kdeutils)
1601 ark (kdeutils)
# tdeutils
1501 khexedit (tdeutils)
1511 kdessh (tdeutils)
1512 kdepasswd (tdeutils)
1601 ark (tdeutils)
1901 kfind
1902 kfind (KfindWindow::updateResults)
1903 kfind (KfindTabDialog::createQuery)
@ -120,21 +120,21 @@
# 2500-2999 Reserved for private use
# kdeadmin
# tdeadmin
3000 ksysv
3100 ksysv (model)
# kdegraphics
4300 kdvi (kdegraphics)
4400 kpaint (kdegraphics)
4500 kghostview (kdegraphics)
# tdegraphics
4300 kdvi (tdegraphics)
4400 kpaint (tdegraphics)
4500 kghostview (tdegraphics)
4600 kview
4610 kviewviewer
4620 kviewcanvas
4630 kview_plugin
4640 kiconedit
# kdenetwork
# tdenetwork
5001 kget
5002 kppp
5003 knode
@ -147,7 +147,7 @@
5050 libkmime
5051 libkmime (Codecs)
5052 libkmime (Plugin Loader)
5100 libkdenetwork
5100 libtdenetwork
5150 libkleopatra
@ -290,7 +290,7 @@
7127 kio_fish
7128 kio_svn
# kdesdk
# tdesdk
8100 kompare
8101 kompare (libs)
8102 kompare (shell)
@ -304,44 +304,44 @@
8050 cervisia
8051 cervisia (cvsservice)
# kdevelop
9000 kdevelop (core)
9001 kdevelop (grep view)
9002 kdevelop (doc tree view)
9003 kdevelop (class view)
9004 kdevelop (output views)
9005 kdevelop (class store)
9006 kdevelop (cvs interface)
9007 kdevelop (cpp support)
9008 kdevelop (gcc options)
9009 kdevelop (astyle)
9010 kdevelop (appwizard)
9011 kdevelop (python scripting)
9012 kdevelop (debugger)
9013 kdevelop (java support)
9014 kdevelop (python support)
9015 kdevelop (script project)
9016 kdevelop (perl support)
9017 kdevelop (file view)
9018 kdevelop (php support)
9019 kdevelop (fortran support)
9020 kdevelop (auto project)
9021 kdevelop (pgi options)
9022 kdevelop (ctags)
9023 kdevelop (regexptest)
9024 kdevelop (trollproject)
9025 kdevelop (customproject)
9026 kdevelop (doxygen)
9027 kdevelop (cvs)
9028 kdevelop (abbrev)
9029 kdevelop (filter)
9030 kdevelop (texttools)
9031 kdevelop (history)
# tdevelop
9000 tdevelop (core)
9001 tdevelop (grep view)
9002 tdevelop (doc tree view)
9003 tdevelop (class view)
9004 tdevelop (output views)
9005 tdevelop (class store)
9006 tdevelop (cvs interface)
9007 tdevelop (cpp support)
9008 tdevelop (gcc options)
9009 tdevelop (astyle)
9010 tdevelop (appwizard)
9011 tdevelop (python scripting)
9012 tdevelop (debugger)
9013 tdevelop (java support)
9014 tdevelop (python support)
9015 tdevelop (script project)
9016 tdevelop (perl support)
9017 tdevelop (file view)
9018 tdevelop (php support)
9019 tdevelop (fortran support)
9020 tdevelop (auto project)
9021 tdevelop (pgi options)
9022 tdevelop (ctags)
9023 tdevelop (regexptest)
9024 tdevelop (trollproject)
9025 tdevelop (customproject)
9026 tdevelop (doxygen)
9027 tdevelop (cvs)
9028 tdevelop (abbrev)
9029 tdevelop (filter)
9030 tdevelop (texttools)
9031 tdevelop (history)
9032 qeditor
9033 kdevelop (diff frontend)
9034 kdevelop (filecreate part)
9035 kdevelop (konsole part)
9036 kdevelop (subversion part)
9033 tdevelop (diff frontend)
9034 tdevelop (filecreate part)
9035 tdevelop (konsole part)
9036 tdevelop (subversion part)
# toys and games
10000 amor
@ -547,7 +547,7 @@
51000 KIPI (general)
51001 KIPI (loading)
# kdemultimedia
# tdemultimedia
60001 kreatecd
60002 kaudiocreator
60005 krec
@ -558,11 +558,11 @@
67100 kmix
67200 kmid
# kdebindings
# tdebindings
70001 dcoppython
80001 kjsembed
# kdeaddons
# tdeaddons
90000 vimpart
90010 noatun-plugins (dub)
90020 noatun-plugins (lyrics)

@ -23,7 +23,7 @@
#define _KDEBUG_H_
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQWidget;
class TQDateTime;

@ -22,7 +22,7 @@
#include <dcopobject.h>
#include <dcopref.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* @short DCOP interface to KDebug.

@ -27,7 +27,7 @@
#include <tqglobal.h>
#ifdef Q_WS_WIN
#include <kdelibs_export_win.h>
#include <tdelibs_export_win.h>
#else /* Q_OS_UNIX */

@ -20,7 +20,7 @@
#define _KDESKTOPFILE_H
#include "kconfig.h"
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KDesktopFilePrivate;

@ -17,7 +17,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kdeversion.h"
#include "tdeversion.h"
unsigned int KDE::version()
{

@ -20,7 +20,7 @@
#ifndef _TDE_VERSION_H_
#define _TDE_VERSION_H_
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/*
R <ABI VERSION> . <BUGFIX REVISION> . <SECURITY PATCHLEVEL>

@ -20,7 +20,7 @@
#ifndef KEXTSOCK_H
#define KEXTSOCK_H
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#ifdef Q_MOC_RUN
#define Q_OS_UNIX

@ -18,7 +18,7 @@
#ifndef _KGLOBAL_H
#define _KGLOBAL_H
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#include <kinstance.h> // KDE4: class KInstance is enough here
class KCharsets;

@ -115,7 +115,7 @@ bool KGlobalAccel::setActionEnabled( const TQString& sAction, bool bEnable )
const TQString& KGlobalAccel::configGroup() const
{ return d->configGroup(); }
// for kdemultimedia/kmix
// for tdemultimedia/kmix
void KGlobalAccel::setConfigGroup( const TQString& s )
{ d->setConfigGroup( s ); }

@ -356,7 +356,7 @@ TQFont KGlobalSettings::generalFont()
if (_generalFont)
return *_generalFont;
// Sync default with kdebase/kcontrol/fonts/fonts.cpp
// Sync default with tdebase/kcontrol/fonts/fonts.cpp
_generalFont = new TQFont("Sans Serif", 10);
_generalFont->setPointSize(10);
_generalFont->setStyleHint(TQFont::SansSerif);
@ -372,7 +372,7 @@ TQFont KGlobalSettings::fixedFont()
if (_fixedFont)
return *_fixedFont;
// Sync default with kdebase/kcontrol/fonts/fonts.cpp
// Sync default with tdebase/kcontrol/fonts/fonts.cpp
_fixedFont = new TQFont("Monospace", 10);
_fixedFont->setPointSize(10);
_fixedFont->setStyleHint(TQFont::TypeWriter);
@ -388,7 +388,7 @@ TQFont KGlobalSettings::toolBarFont()
if(_toolBarFont)
return *_toolBarFont;
// Sync default with kdebase/kcontrol/fonts/fonts.cpp
// Sync default with tdebase/kcontrol/fonts/fonts.cpp
_toolBarFont = new TQFont("Sans Serif", 10);
_toolBarFont->setPointSize(10);
_toolBarFont->setStyleHint(TQFont::SansSerif);
@ -404,7 +404,7 @@ TQFont KGlobalSettings::menuFont()
if(_menuFont)
return *_menuFont;
// Sync default with kdebase/kcontrol/fonts/fonts.cpp
// Sync default with tdebase/kcontrol/fonts/fonts.cpp
_menuFont = new TQFont("Sans Serif", 10);
_menuFont->setPointSize(10);
_menuFont->setStyleHint(TQFont::SansSerif);
@ -420,7 +420,7 @@ TQFont KGlobalSettings::windowTitleFont()
if(_windowTitleFont)
return *_windowTitleFont;
// Sync default with kdebase/kcontrol/fonts/fonts.cpp
// Sync default with tdebase/kcontrol/fonts/fonts.cpp
_windowTitleFont = new TQFont("Sans Serif", 9, TQFont::Bold);
_windowTitleFont->setPointSize(10);
_windowTitleFont->setStyleHint(TQFont::SansSerif);
@ -436,7 +436,7 @@ TQFont KGlobalSettings::taskbarFont()
if(_taskbarFont)
return *_taskbarFont;
// Sync default with kdebase/kcontrol/fonts/fonts.cpp
// Sync default with tdebase/kcontrol/fonts/fonts.cpp
_taskbarFont = new TQFont("Sans Serif", 10);
_taskbarFont->setPointSize(10);
_taskbarFont->setStyleHint(TQFont::SansSerif);

@ -21,7 +21,7 @@
#include <tqstring.h>
#include <tqcolor.h>
#include <tqfont.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#define KDE_DEFAULT_SINGLECLICK false
#define KDE_DEFAULT_ICONTEXTROUNDED true

@ -17,7 +17,7 @@
#include <tqpixmap.h>
#include <tqcolor.h>
#include <tqrect.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQWidget;

@ -17,7 +17,7 @@
#include <tqstringlist.h>
#include <tqptrlist.h>
#include <tqvaluelist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KConfig;
class KIconThemeDir;

@ -22,7 +22,7 @@
#define _KIDNA_H
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
namespace KIDNA {
/**

@ -29,7 +29,7 @@ class KMimeSourceFactory;
class KSharedConfig;
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**

@ -23,7 +23,7 @@
#define __KIPC_h_Included__
#include <tqwindowdefs.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* This class implements a very simple IPC mechanism for KDE. You can send

@ -47,7 +47,7 @@
#include <windows.h>
#endif
static const char * const SYSTEM_MESSAGES = "kdelibs";
static const char * const SYSTEM_MESSAGES = "tdelibs";
static const char *maincatalogue = 0;
@ -136,7 +136,7 @@ void KLocale::initMainCatalogues(const TQString & catalog)
// do not use insertCatalogue here, that would already trigger updateCatalogs
d->catalogNames.append( mainCatalogue ); // application catalog
if (mainCatalogue.contains("desktop") == 0 || mainCatalogue.contains("kdesktop") == 1) { //don't bother if we're looking up desktop translations
d->catalogNames.append( SYSTEM_MESSAGES ); // always include kdelibs.mo
d->catalogNames.append( SYSTEM_MESSAGES ); // always include tdelibs.mo
d->catalogNames.append( "kio" ); // always include kio.mo
d->catalogNames.append( "xdg-user-dirs" );
}
@ -216,7 +216,7 @@ int KLocale::pluralType( const TQString & language )
return pluralType( *it );
}
}
// kdelibs.mo does not seem to exist for this language
// tdelibs.mo does not seem to exist for this language
return -1;
}
@ -229,7 +229,7 @@ int KLocale::pluralType( const KCatalogue& catalog )
"thd@kde.org and coolo@kde.org, they will tell you. "
"Better leave that out if unsure, the programs will "
"crash!!\nDefinition of PluralForm - to be set by the "
"translator of kdelibs.po");
"translator of tdelibs.po");
TQString pf (catalog.translate( pluralFormString));
if ( pf.isEmpty() ) {
return -1;
@ -440,10 +440,10 @@ bool KLocale::setLanguage(const TQStringList & languages)
// 1) some empty strings that we have to eliminate
// 2) duplicate entries like in de:fr:de, where we have to keep the first occurrance of a language in order
// to preserve the order of precenence of the user => iterate backwards
// 3) languages into which the application is not translated. For those languages we should not even load kdelibs.mo or kio.po.
// 3) languages into which the application is not translated. For those languages we should not even load tdelibs.mo or kio.po.
// these langugage have to be dropped. Otherwise we get strange side effects, e.g. with Hebrew:
// the right/left switch for languages that write from
// right to left (like Hebrew or Arabic) is set in kdelibs.mo. If you only have kdelibs.mo
// right to left (like Hebrew or Arabic) is set in tdelibs.mo. If you only have tdelibs.mo
// but nothing from appname.mo, you get a mostly English app with layout from right to left.
// That was considered to be a bug by the Hebrew translators.
for( TQStringList::Iterator it = languageList.fromLast();
@ -672,8 +672,8 @@ void KLocale::updateCatalogues( )
}
// now iterate over all languages and all wanted catalog names and append or create them in the right order
// the sequence must be e.g. nds/appname nds/kdelibs nds/kio de/appname de/kdelibs de/kio etc.
// and not nds/appname de/appname nds/kdelibs de/kdelibs etc. Otherwise we would be in trouble with a language
// the sequence must be e.g. nds/appname nds/tdelibs nds/kio de/appname de/tdelibs de/kio etc.
// and not nds/appname de/appname nds/tdelibs de/tdelibs etc. Otherwise we would be in trouble with a language
// sequende nds,en_US, de. In this case en_US must hide everything below in the language list.
for ( TQStringList::ConstIterator itLangs = d->languageList.begin();
itLangs != d->languageList.end(); ++itLangs)

@ -23,7 +23,7 @@
#define _KLOCALE_H
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQStringList;
class TQTextCodec;
@ -1188,7 +1188,7 @@ private:
void initFormat(KConfig *config);
/**
* @internal Initializes the catalogs appname, kdelibs and kio for all chosen languages.
* @internal Initializes the catalogs appname, tdelibs and kio for all chosen languages.
*
* @param config The configuration object used for init
* @param useEnv True if we should use environment variables
@ -1283,14 +1283,14 @@ private:
*/
void initPluralTypes( );
/**
* @internal Find the plural type for a language. Look this up in the corresponding kdelibs.po.
* @internal Find the plural type for a language. Look this up in the corresponding tdelibs.po.
*
* @param language The language to examine
*/
int pluralType( const TQString & language );
/**
* @internal Find the plural type information for a given catalog. This catalog will be a kdelibs.mo. Method
* @internal Find the plural type information for a given catalog. This catalog will be a tdelibs.mo. Method
* just exists to make code more readable.
*
* @param language The language to examine

@ -25,7 +25,7 @@
#include <tqstringlist.h>
#include <tqstring.h>
#include <tqmap.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* Abstract base class for the worker classes behind the KMacroExpander namespace

@ -26,7 +26,7 @@ DEALINGS IN THE SOFTWARE.
#define __KMANAGERSELECTION_H
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_MOC_RUN
#define Q_WS_X11

@ -39,7 +39,7 @@
#include <tqglobal.h>
#include <tqstring.h>
#include <tqiodevice.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* A wrapper class for the most commonly used encoding and

@ -24,7 +24,7 @@
#include <tqdragobject.h>
#include <tqvaluelist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KMultipleDragPrivate;
/**

@ -18,7 +18,7 @@
#ifndef _KNOTIFY_CLIENT
#define _KNOTIFY_CLIENT
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KInstance;
#undef None // X11 headers...

@ -26,7 +26,7 @@
#include <tqptrlist.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KPalettePrivate;

@ -22,7 +22,7 @@
#define KPIXMAPPROVIDER_H
#include <tqpixmap.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* A tiny abstract class with just one method:

@ -27,7 +27,7 @@
#include <tqvaluelist.h>
#include <tqcstring.h>
#include <tqobject.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQSocketNotifier;
class KProcessPrivate;

@ -21,7 +21,7 @@
#include <tqstring.h>
#include <kprocess.h>
#include <tqstrlist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KProcIOPrivate;
class TQTextCodec;

@ -24,7 +24,7 @@
#define __kpty_h__
#include <tqglobal.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_OS_UNIX

@ -18,7 +18,7 @@
#ifndef K_RANDOM_SEQUENCE_H
#define K_RANDOM_SEQUENCE_H
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KRandomSequencePrivate;
class TQGList;

@ -18,7 +18,7 @@
#ifndef __kregexp_h__
#define __kregexp_h__
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KRegExpPrivate;

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <time.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* The KRFCDate class contains functions related to the parsing of dates.

@ -26,7 +26,7 @@ typedef unsigned long Atom;
#include <tqmap.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KRootPropPrivate;

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H
#define KSharedPTR_H
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* Reference counting for shared objects. If you derive your object

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* \namespace KShell

@ -22,7 +22,7 @@
#include <tqkeysequence.h>
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQKeyEvent;
class KKeyNative;

@ -22,7 +22,7 @@
#include <tqglobal.h> // For uint
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQVariant;
class KConfigBase;

@ -20,7 +20,7 @@
#ifndef KSOCK_H
#define KSOCK_H
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#ifdef Q_MOC_RUN
#define Q_OS_UNIX

@ -23,7 +23,7 @@
#include <tqobject.h>
#include <tqcstring.h>
#include <tqstring.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/*
* This file defines a class that envelopes most, if not all, socket addresses

@ -110,7 +110,7 @@ KSocksTable::~KSocksTable() {
* libraries differently. Expect .so, .sl, .a (!) (AIX does this).
* 3) Find a unique symbol in the library that we can use to identify that
* library and write out the test case in the constructor
* 4) Make necessary changes to the KControl module in kdebase/kcontrol/....
* 4) Make necessary changes to the KControl module in tdebase/kcontrol/....
* 5) TEST!
*
*/

@ -22,7 +22,7 @@
#include <sys/types.h>
#include <sys/time.h>
#include <kstaticdeleter.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_OS_UNIX

@ -22,7 +22,7 @@
#include <tqpair.h>
#include <tqvaluelist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* KSortableItem is a TQPair that provides several operators

@ -35,7 +35,7 @@ class KStandardDirsPrivate;
* @short Site-independent access to standard KDE directories.
* @author Stephan Kulow <coolo@kde.org> and Sirtaj Singh Kang <taj@kde.org>
*
* This is one of the most central classes in kdelibs as
* This is one of the most central classes in tdelibs as
* it provides a basic service: It knows where the files
* reside on the user's hard disk. And it's meant to be the
* only one that knows -- to make the real location as
@ -52,7 +52,7 @@ class KStandardDirsPrivate;
*
* The main idea behind KStandardDirs is that there are several
* toplevel prefixes below which the files lie. One of these prefixes is
* the one where the user installed kdelibs, one is where the
* the one where the user installed tdelibs, one is where the
* application was installed, and one is $HOME/.kde, but there
* may be even more. Under these prefixes there are several well
* defined suffixes where specific resource types are to be found.
@ -66,7 +66,7 @@ class KStandardDirsPrivate;
* specific directories that aren't in his $HOME/.kde directory for,
* for example, icons.
*
* <b>Standard resources that kdelibs allocates are:</b>\n
* <b>Standard resources that tdelibs allocates are:</b>\n
*
* @li apps - Applications menu (.desktop files).
* @li cache - Cached information (e.g. favicons, web-pages)
@ -138,7 +138,7 @@ public:
/**
* Adds another search dir to front of the @p fsstnd list.
*
* @li When compiling kdelibs, the prefix is added to this.
* @li When compiling tdelibs, the prefix is added to this.
* @li KDEDIRS or KDEDIR is taking into account
* @li Additional dirs may be loaded from kdeglobals.
*

@ -66,7 +66,7 @@ DEALINGS IN THE SOFTWARE.
static const char* const NET_STARTUP_MSG = "_NET_STARTUP_INFO";
static const char* const NET_STARTUP_WINDOW = "_NET_STARTUP_ID";
// DESKTOP_STARTUP_ID is used also in kinit/wrapper.c ,
// tdesu in both kdelibs and kdebase and who knows where else
// tdesu in both tdelibs and tdebase and who knows where else
static const char* const NET_STARTUP_ENV = "DESKTOP_STARTUP_ID";
static bool auto_app_started_sending = true;

@ -37,7 +37,7 @@ DEALINGS IN THE SOFTWARE.
#include <tqcstring.h>
#include <tqstring.h>
#include <tqvaluelist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KStartupInfoId;
class KStartupInfoData;
@ -49,7 +49,7 @@ class KStartupInfoPrivate;
*
* This class can be used to send information about started application,
* change the information and receive this information. For detailed
* description, see kdelibs/tdecore/README.kstartupinfo.
* description, see tdelibs/tdecore/README.kstartupinfo.
*
* You usually don't need to use this class for sending the notification
* information, as KDE libraries should do this when an application is

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <kshortcut.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQKeyEvent;
class KAccelActions;

@ -23,7 +23,7 @@
#include <tqstringlist.h>
#include <tqregexp.h> // for the word ranges
#include <tqfontmetrics.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
/**
* This class contains utility functions for handling strings.

@ -23,7 +23,7 @@
#include <tqobject.h>
#include <tqstringlist.h>
#include "ksycocatype.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQDataStream;
class KSycocaPrivate;

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <tqvaluelist.h>
#include <tqdatastream.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KSycocaEntry;
class KSycocaDictStringList;

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <stdio.h>
#include <errno.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQDir;
class KTempDirPrivate;

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <stdio.h>
#include <errno.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQFile;
class TQTextStream;

@ -20,7 +20,7 @@
#ifndef _KTIMEZONES_H
#define _KTIMEZONES_H
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#include <tqdatetime.h>
#include <tqnamespace.h>
#include <tqmap.h>

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <tqvaluelist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQUrl;
class TQStringList;
@ -749,7 +749,7 @@ public:
* @brief Tests if the URL has a reference part
*
* @return @c true if the URL has a reference part. In a URL like
* <tt>"http://www.kde.org/kdebase.tar#tar:/README"</tt> it would
* <tt>"http://www.kde.org/tdebase.tar#tar:/README"</tt> it would
* return @c true as well
*
* @see ref()
@ -1493,7 +1493,7 @@ public:
*
* Example for a nested URL:
* @code
* file:///home/weis/kde.tgz#gzip:/#tar:/kdebase
* file:///home/weis/kde.tgz#gzip:/#tar:/tdebase
* @endcode
* A URL like <tt>"http://www.kde.org#tar:/kde/README.hml#ref1"</tt> will be
* split in <tt>"http://www.kde.org#ref1"</tt> and
@ -1521,7 +1521,7 @@ public:
*
* Example for a nested URL:
* @code
* file:///home/weis/kde.tgz#gzip:/#tar:/kdebase
* file:///home/weis/kde.tgz#gzip:/#tar:/tdebase
* @endcode
* A URL like <tt>"http://www.kde.org#tar:/kde/README.hml#ref1"</tt> will be
* split in <tt>"http://www.kde.org#ref1"</tt> and

@ -23,7 +23,7 @@
#include <tqfont.h>
#include <unistd.h>
#include <kdeversion.h>
#include <tdeversion.h>
#include <kglobal.h>
#include <klocale.h>
#include <kdebug.h>

@ -23,7 +23,7 @@
#include <tqstringlist.h>
#include <tqdragobject.h>
#include <kurl.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class TQMimeSource;
class KURLDragPrivate;

@ -26,7 +26,7 @@
#define KVMALLOCATOR_H
#include <sys/types.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
class KVMAllocatorPrivate;

@ -27,7 +27,7 @@
#include <tqvaluelist.h>
#include <tqwindowdefs.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <X11/Xlib.h>
/**

@ -28,7 +28,7 @@ DEALINGS IN THE SOFTWARE.
#include <tqwidget.h>
#include <tqcstring.h>
#include <tqmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_MOC_RUN
#define Q_WS_X11

@ -47,7 +47,7 @@ License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#include "kde_file.h"
#include <config.h>

@ -1,6 +1,6 @@
# KDE namespace check file
# kdelibs classes
# tdelibs classes
KApplication::*
# these should preferably go in some namespace in KDE4

@ -21,7 +21,7 @@
#ifndef _NETSUPP_H_
#define _NETSUPP_H_
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#ifdef HAVE_CONFIG_H
#include <config.h>

@ -27,7 +27,7 @@
#ifndef __net_wm_h
#define __net_wm_h
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#include <tqwidget.h>
#ifdef Q_WS_X11
#include <X11/Xlib.h>

@ -26,7 +26,7 @@
#ifndef __netwm_def_h
#define __netwm_def_h
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
Simple point class for NET classes.

@ -29,7 +29,7 @@
#include <tqcstring.h>
#include <tqvaluelist.h>
#include "kstreamsocket.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KIOBufferBase;

@ -30,7 +30,7 @@
#include "ksocketbase.h"
#include "kresolver.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_MOC_RUN
#define USE_QT4

@ -27,7 +27,7 @@
#include <tqcstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQIODevice;

@ -24,7 +24,7 @@
#ifndef KNETWORKINTERFACE_H
#define KNETWORKINTERFACE_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
namespace KNetwork {
@ -32,7 +32,7 @@ namespace KNetwork {
* A place-holder class for a future network interface class.
* This class is to be replaced with a more powerful version, inspired
* by:
* - KInetInterface (kdenetwork/krfb/srvloc)
* - KInetInterface (tdenetwork/krfb/srvloc)
* - NWInterface (kdenonbeta/knot/lib)
* - java.net.NetworkInterface
*/

@ -28,7 +28,7 @@
#include <tqstring.h>
#include <tqcstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
struct sockaddr;
struct sockaddr_in;

@ -60,7 +60,7 @@
#include <tqstring.h>
#include "ksocketaddress.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/*
* This is extending QIODevice's error codes

@ -21,7 +21,7 @@
#ifndef KSVGIconEngine_H
#define KSVGIconEngine_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/** \internal DO NOT USE! */

@ -24,7 +24,7 @@ static KCmdLineOptions options[] =
int
main(int argc, char *argv[])
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KCmdLineArgs::init( argc, argv, "testapp", description, version);
KCmdLineArgs::addCmdLineOptions( options ); // Add my own options.

@ -99,7 +99,7 @@ void Test::createFields()
int main( int argc, char ** argv )
{
KLocale::setMainCatalogue("kdelibs");
KLocale::setMainCatalogue("tdelibs");
KApplication a( argc, argv, "klocaletest" );
KGlobal::locale()->setLanguage(TQString::tqfromLatin1("en_US"));

@ -125,8 +125,8 @@ int main(int argc, char *argv[])
baseURL = "http://www.foo.bar/top//test2/file2.html";
check( "KURL::url()", baseURL.url(), "http://www.foo.bar/top//test2/file2.html" );
baseURL = "file:/usr/local/src/kde2/////kdelibs/kio";
check( "KURL::url()", baseURL.url(), "file:///usr/local/src/kde2/////kdelibs/kio" );
baseURL = "file:/usr/local/src/kde2/////tdelibs/kio";
check( "KURL::url()", baseURL.url(), "file:///usr/local/src/kde2/////tdelibs/kio" );
baseURL = "http://www.foo.bar";
KURL rel_url2( baseURL, "mailto:bastian@kde.org" );
@ -135,9 +135,9 @@ int main(int argc, char *argv[])
baseURL = "mailto:bastian@kde.org?subject=hello";
check( "KURL::url()", baseURL.url(), "mailto:bastian@kde.org?subject=hello" );
baseURL = "file:/usr/local/src/kde2/kdelibs/kio/";
KURL url2( baseURL, "../../////kdebase/konqueror" );
check( "KURL::url()", url2.url(), "file:///usr/local/src/kde2/////kdebase/konqueror" );
baseURL = "file:/usr/local/src/kde2/tdelibs/kio/";
KURL url2( baseURL, "../../////tdebase/konqueror" );
check( "KURL::url()", url2.url(), "file:///usr/local/src/kde2/////tdebase/konqueror" );
TQString u1 = "file:/home/dfaure/my#myref";
url1 = u1;
@ -318,8 +318,8 @@ int main(int argc, char *argv[])
"http://www.google.com/foo%20%20%20%20%20%20 bar/");
KURL carsten;
carsten.setPath("/home/gis/src/kde/kdelibs/kfile/.#kfiledetailview.cpp.1.18");
check("KURL::path()", carsten.path(), "/home/gis/src/kde/kdelibs/kfile/.#kfiledetailview.cpp.1.18");
carsten.setPath("/home/gis/src/kde/tdelibs/kfile/.#kfiledetailview.cpp.1.18");
check("KURL::path()", carsten.path(), "/home/gis/src/kde/tdelibs/kfile/.#kfiledetailview.cpp.1.18");
KURL charles;
charles.setPath( "/home/charles/foo%20moo" );

@ -37,7 +37,7 @@ application palette (light and dark shades are\ncalculated)."), 0},
it looks for "background" instead of "-background" so never find the arg.
Software: g++ 2.95, kdelibs from CVS Jan 28, Qt 3.01
Software: g++ 2.95, tdelibs from CVS Jan 28, Qt 3.01
OS: Debian GNU/Linux 3.0 (sid)

@ -23,7 +23,7 @@
#include <tqwindowdefs.h>
#include <tqstring.h>
#include <tqpixmap.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#ifdef Q_OS_UNIX
@ -80,8 +80,8 @@ public:
* Except for rare cases, this request will be always honored,
* and normal applications are forbidden to use it.
*
* In case of problems, consult the KWin README in the kdebase
* package (kdebase/twin/README), or ask on the twin@kde.org
* In case of problems, consult the KWin README in the tdebase
* package (tdebase/twin/README), or ask on the twin@kde.org
* mailing list.
*
* @param win the id of the window to make active

@ -25,7 +25,7 @@
#include <tqobject.h>
#include <tqvaluelist.h>
#include "kdelibs_export.h"
#include "tdelibs_export.h"
#ifdef Q_MOC_RUN
#define Q_OS_UNIX

@ -27,7 +27,7 @@
#ifndef __KCPUINFO_H
#define __KCPUINFO_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* This class provides a means for applications to obtain information at

@ -23,7 +23,7 @@
#include <tqbitmap.h>
#include <tqpalette.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/*
* Various drawing routines. Also see Qt's tqdrawutil.h for some more routines

@ -31,7 +31,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef __KIMAGE_EFFECT_H
#define __KIMAGE_EFFECT_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQImage;
class TQSize;

@ -26,7 +26,7 @@
#include <tqpixmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
const int KColorMode_Mask = 0x00000300;
const int WebOnly = 0x00000200;

@ -10,7 +10,7 @@
#ifndef __KPIXMAP_EFFECT_H
#define __KPIXMAP_EFFECT_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <tqsize.h>
class KPixmap;

@ -25,7 +25,7 @@
#include <tqsize.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KPixmapSplitterPrivate;
/**

@ -541,7 +541,7 @@ int KStyle::kPixelMetric( KStylePixelMetric kpm, const TQWidget* /* widget */) c
// -----------------------------------------------------------------------------
// #ifdef USE_QT4 // kdebindings / smoke needs this function declaration available at all times. Furthermore I don't think it would hurt to have the declaration available at all times...so leave these commented out for now
// #ifdef USE_QT4 // tdebindings / smoke needs this function declaration available at all times. Furthermore I don't think it would hurt to have the declaration available at all times...so leave these commented out for now
//void KStyle::tqdrawPrimitive( TQ_ControlElement pe,
// TQPainter* p,

@ -34,7 +34,7 @@
#include <tqcommonstyle.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KPixmap;
@ -282,7 +282,7 @@ class TDEFX_EXPORT KStyle: public TQCommonStyle
SFlags flags = Style_Default,
const TQStyleOption& = TQStyleOption::SO_Default ) const;
// #ifdef USE_QT4 // kdebindings / smoke needs this function declaration available at all times. Furthermore I don't think it would hurt to have the declaration available at all times...so leave these commented out for now
// #ifdef USE_QT4 // tdebindings / smoke needs this function declaration available at all times. Furthermore I don't think it would hurt to have the declaration available at all times...so leave these commented out for now
// void tqdrawPrimitive( TQ_ControlElement pe,
// TQPainter* p,

@ -32,7 +32,7 @@
#include <tqrect.h>
#include <tqsize.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class DriverItem;
class TQListView;

@ -25,7 +25,7 @@
#include <klistview.h>
#include <tqmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class DrOptionView;
class DrMain;

@ -23,7 +23,7 @@
#include <tqmap.h>
#include <tqvariant.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class DrBase;
class DrMain;

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <tqptrlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
struct TDEPRINT_EXPORT KMDBEntry
{

@ -28,7 +28,7 @@
#include <tqstring.h>
#include <tqvaluevector.h>
#include <tdeprint/kmobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @internal

@ -29,7 +29,7 @@
#include <tqdict.h>
#include <tqvaluelist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KMJob;
class KMThreadJob;

@ -24,7 +24,7 @@
#include <tqptrlist.h>
#include <tqdatetime.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include "kpreloadobject.h"

@ -23,7 +23,7 @@
#include <tqfile.h>
#include <stdio.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TDEPRINT_EXPORT KPipeProcess : public TQFile
{

@ -22,7 +22,7 @@
#include "kprintdialogpage.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQButtonGroup;
class TQComboBox;

@ -20,7 +20,7 @@
#ifndef KPRELOADOBJECT_H
#define KPRELOADOBJECT_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TDEPRINT_EXPORT KPReloadObject
{

@ -24,7 +24,7 @@
#include <tqwidget.h>
#include <tqmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KMPrinter;
class DrMain;

@ -28,7 +28,7 @@
#include <tqstringlist.h>
#include <tqvaluelist.h>
#include <kdemacros.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <tdeprint/kpreloadobject.h>

@ -26,7 +26,7 @@
#include <tqmap.h>
#include <tqptrlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KPrinter;
class KMPrinter;

@ -24,7 +24,7 @@
#include <tqmap.h>
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class DrMain;
class DrGroup;

@ -19,7 +19,7 @@ extern "C" KDE_EXPORT int kdemain(int argc, char *argv[])
"0.1");
KCmdLineArgs::addCmdLineOptions(options);
KGlobal::locale()->setMainCatalogue("kdelibs");
KGlobal::locale()->setMainCatalogue("tdelibs");
KApplication app;
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();

@ -22,7 +22,7 @@
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KConfig;

@ -22,7 +22,7 @@
#include "kmpropwidget.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQLabel;

@ -22,7 +22,7 @@
#include "kmpropwidget.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQLabel;

@ -23,7 +23,7 @@
#include "cjanuswidget.h"
#include "kmprinterpage.h"
#include <tdeprint/kpreloadobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <tqptrlist.h>
class KMPropWidget;

@ -22,7 +22,7 @@
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KMPrinter;
class KMWizard;

@ -25,7 +25,7 @@
#endif
#include <tqtimer.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @internal

@ -21,7 +21,7 @@
#define KMWBACKEND_H
#include "kmwizardpage.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <tqmap.h>
class TQButtonGroup;

@ -24,7 +24,7 @@
#include <tqintdict.h>
#include <tqvaluestack.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQWidgetStack;
class TQLabel;

@ -22,7 +22,7 @@
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KMPrinter;

@ -23,7 +23,7 @@
#include <tqwidget.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQComboBox;
class TQLineEdit;

@ -23,7 +23,7 @@
#include <tqframe.h>
#include <tqpixmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TDEPRINT_EXPORT SidePixmap : public TQFrame
{

@ -23,7 +23,7 @@
#include <tqwidget.h>
#include <tqvaluevector.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class MarginValueWidget;
class MarginPreview;

@ -23,7 +23,7 @@
#include <tqwidget.h>
#include <tqptrdict.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQLabel;

@ -26,7 +26,7 @@
#include <tqvariant.h>
#include <tqdict.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class DrGroup;
class DrBase;

@ -16,7 +16,7 @@
#define __KDE_su_Client_h_Included__
#include <tqglobal.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifdef Q_OS_UNIX

@ -20,7 +20,7 @@
#include <tqstringlist.h>
#include <tqvaluelist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class PTY;
typedef TQValueList<TQCString> QCStringList;

@ -17,7 +17,7 @@
#include "stub.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Executes a remote command, using ssh.

@ -19,7 +19,7 @@
#include "process.h"
#include "kcookie.h"
#include <kdelibs_export.h>
#include <tdelibs_export.h>
typedef TQValueList<TQCString> QCStringList;

@ -15,7 +15,7 @@
#include <tqcstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include "stub.h"

@ -20,7 +20,7 @@
#include <tqcstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TDESU_EXPORT PTY {

@ -5,6 +5,6 @@ messages:
for i in $$list; do \
echo "i18n(\"color\", \"$$i\");" | sed -e "s#!# #g" >> colors.cpp ;\
done
$(XGETTEXT) colors.cpp -o $(podir)/kdelibs_colors.pot
$(XGETTEXT) colors.cpp -o $(podir)/tdelibs_colors.pot
-rm -f colors.cpp

@ -24,7 +24,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Provides functions that, given a collection of QStrings, will

@ -930,7 +930,7 @@ public:
const char* name = 0 );
// The ctors with fontListCriteria were added after 3.3-beta1.
// This define is used in koffice. Remove when koffice has a dependency on kdelibs-3.3 or more.
// This define is used in koffice. Remove when koffice has a dependency on tdelibs-3.3 or more.
#define KFONTACTION_HAS_CRITERIA_ARG
KFontAction( uint fontListCriteria, const TQString& text,
const KShortcut& cut = KShortcut(), TQObject* parent = 0,

@ -21,7 +21,7 @@
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQListBox;
class TQListBoxItem;

@ -21,7 +21,7 @@
#include <tqtextbrowser.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
// ### inherit KTextBrowser in KDE4

@ -20,7 +20,7 @@
#include <tqframe.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQStringList;
class TQPainter;

@ -21,7 +21,7 @@
#include <tqpushbutton.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KArrowButtonPrivate;
/**

@ -23,7 +23,7 @@
#include <tqstring.h>
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQHBoxLayout;
class TQLabel;

@ -20,7 +20,7 @@
#ifndef __KBUTTONBOX__H__
#define __KBUTTONBOX__H__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <tqwidget.h>
class TQPushButton;

@ -29,7 +29,7 @@
#include <tqpoint.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQFont;
class TQFontDatabase;

@ -26,7 +26,7 @@
#include <tqptrdict.h>
#include <tqkeysequence.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQWidget;
class TQPopupMenu;

@ -25,7 +25,7 @@
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQStringList;

@ -22,7 +22,7 @@
#include <tqpushbutton.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KColorButtonPrivate;
/**

@ -645,7 +645,7 @@ KPaletteTable::readNamedColor( void )
return; // Strings already present
}
KGlobal::locale()->insertCatalogue("kdelibs_colors");
KGlobal::locale()->insertCatalogue("tdelibs_colors");
//
// Code somewhat inspired by KPalette.

@ -24,7 +24,7 @@
#include <tqdragobject.h>
#include <tqcolor.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KColorDragPrivate;
/**

@ -24,7 +24,7 @@
#include <tqptrlist.h>
#include <tqstring.h>
#include <tqobject.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KAction;
class KActionCollection;

@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
* Copyright (C) 2003 Benjamin C Meyer (ben+kdelibs at meyerhome dot net)
* Copyright (C) 2003 Benjamin C Meyer (ben+tdelibs at meyerhome dot net)
* Copyright (C) 2003 Waldo Bastian <bastian@kde.org>
* Copyright (C) 2004 Michael Brade <brade@kde.org>
*

@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
* Copyright (C) 2003 Benjamin C Meyer (ben+kdelibs at meyerhome dot net)
* Copyright (C) 2003 Benjamin C Meyer (ben+tdelibs at meyerhome dot net)
* Copyright (C) 2003 Waldo Bastian <bastian@kde.org>
*
* This library is free software; you can redistribute it and/or

@ -24,7 +24,7 @@
#define _KCURSOR_H
#include <tqcursor.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQWidget;

@ -21,7 +21,7 @@
#define KDATEPICKER_H
#include <tqdatetime.h>
#include <tqframe.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQLineEdit;
class TQToolButton;

@ -28,7 +28,7 @@
#include <tqdatetime.h>
#include <tqcolor.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KPopupMenu;

@ -22,7 +22,7 @@
#include <tqwidget.h>
#include <tqdatetime.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A combination of a date and a time selection widget.

@ -22,7 +22,7 @@
#include <tqwidget.h>
#include <tqdatetime.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A pushbutton to display or allow user selection of a date.

@ -21,7 +21,7 @@
#include <dcopobject.h>
#include <dcopref.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KActionCollection;
class KAction;

@ -401,41 +401,41 @@ const char * const packages[] = {
"kde/clipboard",
"kde/dualhead",
"kde/xinerama",
"kdeaddons",
"kdeaddons/dirfilter-plugin",
"kdeaddons/kate-cppsymbolviewer",
"kdeaddons/kate-filelistloader",
"kdeaddons/kate-filetemplates",
"kdeaddons/kate-insertcommand",
"kdeaddons/kate-xmltools",
"kdeaddons/khtmlsettings-plugin",
"kdeaddons/useragent-plugin",
"tdeaddons",
"tdeaddons/dirfilter-plugin",
"tdeaddons/kate-cppsymbolviewer",
"tdeaddons/kate-filelistloader",
"tdeaddons/kate-filetemplates",
"tdeaddons/kate-insertcommand",
"tdeaddons/kate-xmltools",
"tdeaddons/khtmlsettings-plugin",
"tdeaddons/useragent-plugin",
"kdebugdialog",
"kdelibs",
"kdelibs/kbugreport",
"kdelibs/kcertpart",
"kdelibs/tdecore",
"kdelibs/kded",
"kdelibs/tdeinit",
"kdelibs/tdesasl",
"kdelibs/tdeui",
"kdelibs/kedittoolbar",
"kdelibs/kimgio",
"kdelibs/klauncher",
"kdelibs/klocale",
"kdelibs/kmdi",
"kdelibs/knetwork",
"kdelibs/knewstuff",
"kdelibs/knotify",
"kdelibs/kspell",
"kdelibs/kstyle",
"kdelibs/ksycoca",
"kdelibs/kwallet",
"kdelibs/qt",
"tdelibs",
"tdelibs/kbugreport",
"tdelibs/kcertpart",
"tdelibs/tdecore",
"tdelibs/kded",
"tdelibs/tdeinit",
"tdelibs/tdesasl",
"tdelibs/tdeui",
"tdelibs/kedittoolbar",
"tdelibs/kimgio",
"tdelibs/klauncher",
"tdelibs/klocale",
"tdelibs/kmdi",
"tdelibs/knetwork",
"tdelibs/knewstuff",
"tdelibs/knotify",
"tdelibs/kspell",
"tdelibs/kstyle",
"tdelibs/ksycoca",
"tdelibs/kwallet",
"tdelibs/qt",
"kdelirc",
"kdelirc/irkick",
"kdelirc/kcmlirc",
"kdemultimedia",
"tdemultimedia",
"kdepasswd",
"tdepimlibs",
"tdepimlibs/gpgme++",
@ -451,10 +451,10 @@ const char * const packages[] = {
"tdeprint",
"tdeprint/tdeprintfax",
"tdeprint/kjobviewer",
"kdesdk-scripts",
"kdesdk-scripts/Miscellaneous",
"kdesdk-scripts/cmake",
"kdesdk-scripts/source_control",
"tdesdk-scripts",
"tdesdk-scripts/Miscellaneous",
"tdesdk-scripts/cmake",
"tdesdk-scripts/source_control",
"kdesktop",
"kdesktop/icons",
"kdesktop/minicli",
@ -463,66 +463,66 @@ const char * const packages[] = {
"tdesu",
"tdesu/tdesu",
"tdesu/tdesud",
"kdesvn-build",
"tdesvn-build",
"kdetv",
"kdevelop",
"kdevelop/Appwizard Templates",
"kdevelop/Build tools: ANT",
"kdevelop/Build tools: Automake",
"kdevelop/Build tools: Custom Makefiles",
"kdevelop/Build tools: QMake",
"kdevelop/Buildtools: Make",
"kdevelop/CPP Debugger",
"kdevelop/CTags",
"kdevelop/Language Support: Ada",
"kdevelop/Language Support: CPP",
"kdevelop/Language Support: Java",
"kdevelop/Language Support: PHP",
"kdevelop/Language Support: Pascal",
"kdevelop/Language Support: Perl",
"kdevelop/Language Support: Python",
"kdevelop/Language Support: Ruby",
"kdevelop/Output Views",
"kdevelop/Profiles",
"kdevelop/Qt Designer Integration",
"kdevelop/UI: IDEAl",
"kdevelop/UI: all modes",
"kdevelop/UI: childframe window",
"kdevelop/UI: tabbed pages",
"kdevelop/UI: toplevel window",
"kdevelop/VCS: CVS",
"kdevelop/VCS: CVSService",
"kdevelop/VCS: Clearcase",
"kdevelop/VCS: Perforce",
"kdevelop/VCS: SVN",
"kdevelop/abbreviation plugin",
"kdevelop/all build tools",
"kdevelop/all editors",
"kdevelop/appwizard",
"kdevelop/astyle",
"kdevelop/bookmarks part",
"kdevelop/classview",
"kdevelop/code completion",
"kdevelop/cpp-parser",
"kdevelop/distpart",
"kdevelop/doctreeview",
"kdevelop/documentation viewer",
"kdevelop/doxygen integration",
"kdevelop/file create",
"kdevelop/file groups",
"kdevelop/file selector",
"kdevelop/file tree",
"kdevelop/grep frontend",
"kdevelop/kate integration",
"kdevelop/kdevelop 2.x (obsolete)",
"kdevelop/konsole part",
"kdevelop/partexplorer",
"kdevelop/php support",
"kdevelop/problem reporter",
"kdevelop/qeditor",
"kdevelop/replace part",
"kdevelop/scriptproject",
"kdevelop/valgrind integration",
"tdevelop",
"tdevelop/Appwizard Templates",
"tdevelop/Build tools: ANT",
"tdevelop/Build tools: Automake",
"tdevelop/Build tools: Custom Makefiles",
"tdevelop/Build tools: QMake",
"tdevelop/Buildtools: Make",
"tdevelop/CPP Debugger",
"tdevelop/CTags",
"tdevelop/Language Support: Ada",
"tdevelop/Language Support: CPP",
"tdevelop/Language Support: Java",
"tdevelop/Language Support: PHP",
"tdevelop/Language Support: Pascal",
"tdevelop/Language Support: Perl",
"tdevelop/Language Support: Python",
"tdevelop/Language Support: Ruby",
"tdevelop/Output Views",
"tdevelop/Profiles",
"tdevelop/Qt Designer Integration",
"tdevelop/UI: IDEAl",
"tdevelop/UI: all modes",
"tdevelop/UI: childframe window",
"tdevelop/UI: tabbed pages",
"tdevelop/UI: toplevel window",
"tdevelop/VCS: CVS",
"tdevelop/VCS: CVSService",
"tdevelop/VCS: Clearcase",
"tdevelop/VCS: Perforce",
"tdevelop/VCS: SVN",
"tdevelop/abbreviation plugin",
"tdevelop/all build tools",
"tdevelop/all editors",
"tdevelop/appwizard",
"tdevelop/astyle",
"tdevelop/bookmarks part",
"tdevelop/classview",
"tdevelop/code completion",
"tdevelop/cpp-parser",
"tdevelop/distpart",
"tdevelop/doctreeview",
"tdevelop/documentation viewer",
"tdevelop/doxygen integration",
"tdevelop/file create",
"tdevelop/file groups",
"tdevelop/file selector",
"tdevelop/file tree",
"tdevelop/grep frontend",
"tdevelop/kate integration",
"tdevelop/tdevelop 2.x (obsolete)",
"tdevelop/konsole part",
"tdevelop/partexplorer",
"tdevelop/php support",
"tdevelop/problem reporter",
"tdevelop/qeditor",
"tdevelop/replace part",
"tdevelop/scriptproject",
"tdevelop/valgrind integration",
"kdevplatform",
"kdevplatform/classbrowser",
"kdevplatform/contextbrowser",

@ -23,7 +23,7 @@
#define _KDIALOG_H_
#include <tqdialog.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQLayoutItem;

@ -1,6 +1,6 @@
/* This file is part of the KDE libraries
Copyright (C) 2000 Max Judin <novaprint@mtu-net.ru>
Copyright (C) 2000 Falk Brettschneider <falk@kdevelop.org>
Copyright (C) 2000 Falk Brettschneider <falk@tdevelop.org>
Copyright (C) 2002,2003 Joseph Wenninger <jowenn@kde.org>
This library is free software; you can redistribute it and/or
@ -23,7 +23,7 @@
-----------
05/2001 - : useful patches, bugfixes by Christoph Cullmann <crossfire@babylon2k.de>,
Joseph Wenninger <jowenn@bigfoot.com> and Falk Brettschneider
03/2001 - 05/2001 : maintained and enhanced by Falk Brettschneider <falk@kdevelop.org>
03/2001 - 05/2001 : maintained and enhanced by Falk Brettschneider <falk@tdevelop.org>
03/2000 : class documentation added by Falk Brettschneider <gigafalk@yahoo.com>
10/1999 - 03/2000 : programmed by Max Judin <novaprint@mtu-net.ru>

@ -22,7 +22,7 @@ class TQBitmap;
#include <tqbrush.h>
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A widget for selecting two related colors.

@ -23,7 +23,7 @@
#include <tqgroupbox.h>
#include <tqlistbox.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KLineEdit;
class KComboBox;

@ -24,7 +24,7 @@
#include <tqfont.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQLabel;
class TQPushButton;

@ -25,7 +25,7 @@
#include <tqobject.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KActionCollection;
class KPopupMenu;

@ -21,7 +21,7 @@
#include <tqcursor.h>
#include <tqiconview.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A variant of TQIconView that honors KDE's system-wide settings.

@ -29,7 +29,7 @@
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KLanguageButtonPrivate;
class TQIconSet;

@ -24,7 +24,7 @@
#define _KLED_H_
#include <tqwidget.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQColor;
/**

@ -20,7 +20,7 @@
#include <tqlistbox.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A variant of TQListBox that honors KDE's system-wide settings.

@ -23,7 +23,7 @@
#include <tqlistview.h>
#include <tqptrlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQDragObject;
class KConfig;

@ -27,7 +27,7 @@
#include <tqmenubar.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* %KDE Style-able menubar.

@ -29,7 +29,7 @@
#include <tqwidget.h>
#include <tqspinbox.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQLabel;
class TQSlider;

@ -26,7 +26,7 @@
#include <tqvalidator.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQWidget;
class TQString;

@ -25,7 +25,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define __kpanelextension_h__
#include <tqframe.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQPopupMenu;
class KConfig;

@ -13,7 +13,7 @@
#include <tqframe.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQBoxLayout;
class TQTimer;

@ -11,7 +11,7 @@
#ifndef __KPixmapIO_h_Included__
#define __KPixmapIO_h_Included__
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQPixmap;
class TQImage;

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

@ -27,14 +27,14 @@
class KPopupMenu;
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* KPixmapRegionSelectorWidget is a widget that shows a picture and provides the
* 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.
* One copy is in kdelibs/tdeui, and the other copy is in tdepim/libtdepim
* One copy is in tdelibs/tdeui, and the other copy is in tdepim/libtdepim
* This is because tdepim has to remain backwards compatible. Any changes
* to either file should be made to the other.
*

@ -23,7 +23,7 @@
#include <tqpopupmenu.h>
#include <kpixmapeffect.h>
#include <kpixmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short KPopupMenu title widget.
*

@ -13,7 +13,7 @@
#include <tqobject.h>
#include <tqcolor.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#ifndef Q_WS_QWS //FIXME

@ -23,7 +23,7 @@
#include <tqframe.h>
#include <tqrangecontrol.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* A ruler widget.

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQCheckBox;
class TQComboBox;

@ -20,7 +20,7 @@
#include <tqscrollview.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A variant of TQScrollView that supports smooth scrolling.

@ -27,7 +27,7 @@
#include <tqrangecontrol.h>
#include <tqpixmap.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* KXYSelector is the base class for other widgets which

@ -22,7 +22,7 @@
#include <tqframe.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Standard horizontal or vertical separator.

@ -40,7 +40,7 @@ class KSharedPixmapPrivate;
*
* The server part of shared pixmaps is not implemented here.
* That part is provided by KPixmapServer, in the source file:
* kdebase/kdesktop/pixmapserver.cc.
* tdebase/kdesktop/pixmapserver.cc.
*
* An example: copy from a shared pixmap:
* \code

@ -24,7 +24,7 @@
#include <tqobject.h>
#include <tqstringlist.h>
#include <tqstring.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQTextCodec;
class KProcIO;

@ -22,7 +22,7 @@
#include <tqsplashscreen.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQPixmap;

@ -21,7 +21,7 @@
#include <tqlabel.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A replacement for TQLabel that squeezes its text

@ -24,7 +24,7 @@
#include <tqstatusbar.h>
#include <tqintdict.h>
#include <tqlabel.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KStatusBar;

@ -30,7 +30,7 @@ class KToggleFullScreenAction;
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Convenience methods to access all standard KDE actions.

@ -25,7 +25,7 @@
#include <tqvalidator.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A TQValidator to (dis)allow certain strings

@ -29,7 +29,7 @@
#include <tqcolor.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQAccel;
class TQTimer;

@ -23,7 +23,7 @@
#include <tqtabbar.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class TQTimer;
class TQPushButton;

@ -27,7 +27,7 @@
#include <tqtabbar.h>
#include <tqmemarray.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* Tabbed dialog with extended features.

@ -24,7 +24,7 @@
#include <tqtabwidget.h>
#include <tqstringlist.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KTabWidgetPrivate;

@ -22,7 +22,7 @@
#include <tqtextbrowser.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short Extended TQTextBrowser.

@ -22,7 +22,7 @@
#include <tqtextedit.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
class KSpell;

@ -22,7 +22,7 @@
#include <tqwidget.h>
#include <tqdatetime.h>
#include <kdelibs_export.h>
#include <tdelibs_export.h>
/**
* @short A time selection widget.

@ -20,7 +20,7 @@
#ifndef KTIMEZONEWIDGET_H
#define KTIMEZONEWIDGET_H
#include <kdelibs_export.h>
#include <tdelibs_export.h>
#include <klistview.h>
#include <tqstring.h>

Some files were not shown because too many files have changed in this diff Show More

Chargement…
Annuler
Enregistrer