diff --git a/COPYING b/COPYING index ef0eb42..62fd5e3 100644 --- a/COPYING +++ b/COPYING @@ -113,9 +113,9 @@ above, provided that you also meet all of these conditions: these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on - the Program is not retquired to print an announcement.) + the Program is not required to print an announcement.) -These retquirements apply to the modified work as a whole. If +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those @@ -181,7 +181,7 @@ However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - 5. You are not retquired to accept this License, since you have not + 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by diff --git a/configure.py b/configure.py index ac9dd28..d75cd0f 100644 --- a/configure.py +++ b/configure.py @@ -199,7 +199,7 @@ def init_and_check_sanity (): minv = sip_min_v4_version if minv: - sipcfg.error("This version of PyKDE retquires SIP v%s or later" % sipcfg.version_to_string(minv)) + sipcfg.error("This version of PyKDE requires SIP v%s or later" % sipcfg.version_to_string(minv)) # Check SIP has TQt support enabled and check version if pyqtcfg.qt_version == 0: @@ -210,11 +210,11 @@ def init_and_check_sanity (): # Check PyTQt built with libtqt-mt if pyqtcfg.qt_threaded == 0: - sipconfig.error ("PyKDE retquires a threaded TQt version (libtqt-mt)") + sipconfig.error ("PyKDE requires a threaded TQt version (libtqt-mt)") # Check PyTQt version if pyqtcfg.pyqt_version < pyqt_min_version: - sipcfg.error("This version of PyKDE retquires PyTQt v%s or later"\ + sipcfg.error("This version of PyKDE requires PyTQt v%s or later"\ % pyqtcfg.version_to_string(pyqtcfg.pyqt_version)) # find the libs, includes, and version info diff --git a/doc/classref/tdecore/KCmdLineArgs.html b/doc/classref/tdecore/KCmdLineArgs.html index 8cb2bbf..005040e 100644 --- a/doc/classref/tdecore/KCmdLineArgs.html +++ b/doc/classref/tdecore/KCmdLineArgs.html @@ -54,7 +54,7 @@
A Pytbon list of tuples (name, description, default) is the first parameter instead of a KCmdLineOptions object (KCmdLineOptions is not used); -NULL (or None) parameters to mark the end of the list are not retquired +NULL (or None) parameters to mark the end of the list are not required

  • addTempFileOption ()
    diff --git a/doc/dcopext.html b/doc/dcopext.html index a22fa6f..f2786e9 100644 --- a/doc/dcopext.html +++ b/doc/dcopext.html @@ -48,7 +48,7 @@ Python classes, and the method being called looks to the programmer like a Pytho
    DCOP Enabling (Export) Extensions
    Another set of extensions makes it trivial to expose an application's methods via DCOP to -other applications. All that is retquired is to subclass a pre-written Python class and +other applications. All that is required is to subclass a pre-written Python class and provide a list of the methods to expose, along with a method signature listing the name of the method, it's return type, and the the types of its arguments.
    @@ -61,14 +61,14 @@ are two Python modules that are included and installed as part of PyKDE.

    Calling DCOP Methods

    -Accessing a DCOP method in another application retquires 3 pieces of information: the name of +Accessing a DCOP method in another application requires 3 pieces of information: the name of the application to be accessed, the name of the DCOP object which holds the method to be called, and the name of the method itself.

    Collection the Information

    -The easiest way to collect the retquired information is to use the kdcop application that +The easiest way to collect the required information is to use the kdcop application that comes with PyKDE. kdcop is graphical application that looks like the image shown.

    @@ -174,14 +174,14 @@ The DCOP extensions will support any of the following C++ data types:

    Data conversion between C++ and Python types is done transparently. The integer types map to Python int or Python long, the decimal types to Python double. A Python string -can be used for any argument that retquires a TQString or TQCString (return types will +can be used for any argument that requires a TQString or TQCString (return types will always be the TQt object type). The TQValueList types take or return a Python list of the indicated object. The TQMap types take or return a Python dict with the first type as the key and the second type as data. All other types use the same object type in Python and TQt (for instance, TQPoint or TQStringList).

    -It's possible to add support for more types in the future. To be added, a type retquires +It's possible to add support for more types in the future. To be added, a type requires a pair of overloaded TQDataStream operators ("<<" and ">>"). Types must also exist in the libs that PyTQt and PyKDE support - types specific to applications (like konqueror) cannot be supported at this time. diff --git a/doc/examples.html b/doc/examples.html index 8a02747..8b409a9 100644 --- a/doc/examples.html +++ b/doc/examples.html @@ -89,7 +89,7 @@ pyKHTMLPart.py demonstrates importing KHTMLPart as a KPart.

    -The program is hard-coded to display the KDE website's main page, and retquires +The program is hard-coded to display the KDE website's main page, and requires an active internet connection to do the display (it will be blank if no internet connection is active).

    diff --git a/doc/install.html b/doc/install.html index 71fe7f0..a2dff56 100644 --- a/doc/install.html +++ b/doc/install.html @@ -26,7 +26,7 @@ Before reporting bugs, please read the Troubleshooting

    System Retquirements

    PyKDE only runs on Linux or other Unix-based systems. The usual tools (compiler, -linker, make, etc) are retquired. In addition you need: +linker, make, etc) are required. In addition you need:

    sip
    @@ -60,7 +60,7 @@ are in the same location as the PyTQt files (usually python/site-packages). Thes files are generated automatically if you build/compile sip and PyTQt from source.

    -PyKDE also retquires the PyTQt sip files to build and compile. If you installed PyTQt from an +PyKDE also requires the PyTQt sip files to build and compile. If you installed PyTQt from an RPM, you also need to have installed the corresponding "PyTQt-devel" RPM, which contains the PyTQt sip files.

    diff --git a/doc/libpythonize.html b/doc/libpythonize.html index 84a3e22..0aae9a2 100644 --- a/doc/libpythonize.html +++ b/doc/libpythonize.html @@ -32,7 +32,7 @@ The method descriptions here apply to both C and C++ versions unless noted.

    Although libpythonize is used with (and installed with) PyKDE, it has no dependencies itself on -PyKDE/KDE, PyTQt/TQt or sip. It does retquire qmake from TrollTech (part of TQt) to build. +PyKDE/KDE, PyTQt/TQt or sip. It does require qmake from TrollTech (part of TQt) to build.

    Initialization and Finalization

    @@ -153,7 +153,7 @@ Runs an arbitrary script in the interpreter and returns Python's result.

    bool runString (char *str);

    -Runs an arbitrary string in the interpreter (indentation retquired for mulit-line +Runs an arbitrary string in the interpreter (indentation required for mulit-line strings) and returns Python's result.


    @@ -186,7 +186,7 @@ not affect the global interpreter lock.

    Using libpythonize in an application

    -Include the pythonize.h header file (retquires Python.h) and link to libpythonize.so - that's pretty much it. There are unit tests +Include the pythonize.h header file (requires Python.h) and link to libpythonize.so - that's pretty much it. There are unit tests in both C and C++ in the pythonize/tests/ subdirectory. An example of libpythonize usage is in pykpanelapplet.cpp in the PyKDE distribution (pykpanelapplet/ directory).

    @@ -197,7 +197,7 @@ At present only the C++/C wrapper versions are available, and they're distribute

    The build process for libpythonize uses TrollTech's qmake (available as part of TQt), but is simple enough to be included in most make files. See the pythonize.pro file for more information - most of the additional -libs retquired are retquired by libpython, and may vary by platform. +libs required are required by libpython, and may vary by platform.

    You can contact me at this address: Jim Bublitz <jbublitz@nwinternet.com> diff --git a/doc/limits.html b/doc/limits.html index 9fb6107..71aef72 100644 --- a/doc/limits.html +++ b/doc/limits.html @@ -360,7 +360,7 @@ KSocks

    Most of their functionality already exists in the Python socket class or in the KSocket class (tdecore module). These classes may be implemented at a future date -(they retquire support for C socket structures and careful handling to avoid buffer +(they require support for C socket structures and careful handling to avoid buffer overflow problems/exploits)

    diff --git a/doc/signal.html b/doc/signal.html index 76599e6..51fa7b6 100644 --- a/doc/signal.html +++ b/doc/signal.html @@ -171,7 +171,7 @@ a.emit(PYSIGNAL("pySig"),("Hello","World"))
    returns nothing

    TQt allows a signal to be connected to a slot that retquires fewer arguments than +>TQt allows a signal to be connected to a slot that requires fewer arguments than the signal passes. The extra arguments are tquietly discarded. Python slots can be used in the same way.

    configure.py Default: python/site-packages/
    -Normally, the PyKDE modules are installed in python/site-packages. Writing to this directory retquires +Normally, the PyKDE modules are installed in python/site-packages. Writing to this directory requires root access. RPM builders sometimes need to build the modules to a different directory, or you may want to install the modules in a different location (for example, in a subdirectory of site-packages/). For this option to be useful, you need to ensure that Python can still locate and import the PyKDE modules from @@ -162,7 +162,7 @@ The path to KDE's library files (libtdecore.so, etc). configure.py Default: trinity/include -The path to KDE's h files. (May retquire installation of tdelibs3-devel rpm package) +The path to KDE's h files. (May require installation of tdelibs3-devel rpm package) configure.py. PyKDE will locate h files in subdirectories of this path automatically (eg trinity/include/kio/*.h)
    @@ -203,7 +203,7 @@ them on. configure.py Default: none -If your site retquires the use of more than one or two option switches, you can place all of the options +If your site requires the use of more than one or two option switches, you can place all of the options in a text file and then reference only the text file's path and name on the command line. The options are placed in the text file just as they would be on the command line, with one option per line. For example, the options file for the command "python configure.py -c- -v /usr/local/PyTQt/sip" would look diff --git a/examples/pytde-sampler/HOWTO.samples b/examples/pytde-sampler/HOWTO.samples index 2b20c52..3c13704 100644 --- a/examples/pytde-sampler/HOWTO.samples +++ b/examples/pytde-sampler/HOWTO.samples @@ -38,7 +38,7 @@ In side the module, add the following: the sample. -- one of buildWidget, buildDialog, buildApp, MainFrame - callable (retquired) +- one of buildWidget, buildDialog, buildApp, MainFrame - callable (required) default: None example: MainFrame(TQFrame): ... diff --git a/examples/xmlmenudemo.py b/examples/xmlmenudemo.py index 1ef5ef7..ad12f7e 100644 --- a/examples/xmlmenudemo.py +++ b/examples/xmlmenudemo.py @@ -271,7 +271,7 @@ class MainWin (KMainWindow): description = "A basic application template" version = "1.0" -# The appName (xmlmenudemo - first argument) is retquired +# The appName (xmlmenudemo - first argument) is required # if the program is to automatically locate it *ui.rc file aboutData = KAboutData ("xmlmenudemo", "xmlmenudemo",\ version, description, KAboutData.License_GPL,\ diff --git a/extensions/dcopexport.py b/extensions/dcopexport.py index 7347be6..fc4aaa9 100644 --- a/extensions/dcopexport.py +++ b/extensions/dcopexport.py @@ -44,7 +44,7 @@ return value to be returned to the caller. DCOPExMeth is basically a data structure to hold the parsed method info (name, arg list, return type, signature) -This module retquires the dcopext module, but only for the numericTypes and +This module requires the dcopext module, but only for the numericTypes and stringTypes lists """ diff --git a/extensions/dcopext.py b/extensions/dcopext.py index bf63e96..c1b3a6c 100644 --- a/extensions/dcopext.py +++ b/extensions/dcopext.py @@ -122,11 +122,11 @@ failure = False). ok = d.Panel.addURLButton (TQString ("http://www.kde.org")) -would call addURLButton with the retquired argument, and return nothing but the DCOP call +would call addURLButton with the required argument, and return nothing but the DCOP call status(since its return type is 'void'). Note that to instantiate a DCOPObj directly, you need to have a valid DCOPApp -to pass to DCOPObj's __init__ method. Similarly, DCOPMeth retquires a valid DCOPOBject. +to pass to DCOPObj's __init__ method. Similarly, DCOPMeth requires a valid DCOPOBject. For example: d = DCOPApp ("kicker", dcop) diff --git a/extra/kde300/kicontheme.h b/extra/kde300/kicontheme.h index 4624c23..9269f09 100644 --- a/extra/kde300/kicontheme.h +++ b/extra/kde300/kicontheme.h @@ -148,7 +148,7 @@ public: bool isValid() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. */ int depth() const { return mDepth; } diff --git a/extra/kde300/kurifilter.h b/extra/kde300/kurifilter.h index d82786a..26e564e 100644 --- a/extra/kde300/kurifilter.h +++ b/extra/kde300/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde301/kicontheme.h b/extra/kde301/kicontheme.h index 4624c23..9269f09 100644 --- a/extra/kde301/kicontheme.h +++ b/extra/kde301/kicontheme.h @@ -148,7 +148,7 @@ public: bool isValid() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. */ int depth() const { return mDepth; } diff --git a/extra/kde301/kurifilter.h b/extra/kde301/kurifilter.h index d82786a..26e564e 100644 --- a/extra/kde301/kurifilter.h +++ b/extra/kde301/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde303/kicontheme.h b/extra/kde303/kicontheme.h index 4624c23..9269f09 100644 --- a/extra/kde303/kicontheme.h +++ b/extra/kde303/kicontheme.h @@ -148,7 +148,7 @@ public: bool isValid() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. */ int depth() const { return mDepth; } diff --git a/extra/kde303/kurifilter.h b/extra/kde303/kurifilter.h index d82786a..26e564e 100644 --- a/extra/kde303/kurifilter.h +++ b/extra/kde303/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde310/kicontheme.h b/extra/kde310/kicontheme.h index ce2d3ec..542e535 100644 --- a/extra/kde310/kicontheme.h +++ b/extra/kde310/kicontheme.h @@ -241,7 +241,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde310/kkeyserver_x11.h b/extra/kde310/kkeyserver_x11.h index b006a7a..4169273 100644 --- a/extra/kde310/kkeyserver_x11.h +++ b/extra/kde310/kkeyserver_x11.h @@ -81,10 +81,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed @ref KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed @ref KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired @ref KKey::ModFlag's + * @return the required @ref KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde310/kurifilter.h b/extra/kde310/kurifilter.h index 299cf66..ad800b9 100644 --- a/extra/kde310/kurifilter.h +++ b/extra/kde310/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde311/kicontheme.h b/extra/kde311/kicontheme.h index ce2d3ec..542e535 100644 --- a/extra/kde311/kicontheme.h +++ b/extra/kde311/kicontheme.h @@ -241,7 +241,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde311/kkeyserver_x11.h b/extra/kde311/kkeyserver_x11.h index b006a7a..4169273 100644 --- a/extra/kde311/kkeyserver_x11.h +++ b/extra/kde311/kkeyserver_x11.h @@ -81,10 +81,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed @ref KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed @ref KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired @ref KKey::ModFlag's + * @return the required @ref KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde311/kurifilter.h b/extra/kde311/kurifilter.h index 299cf66..ad800b9 100644 --- a/extra/kde311/kurifilter.h +++ b/extra/kde311/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde312/kicontheme.h b/extra/kde312/kicontheme.h index ce2d3ec..542e535 100644 --- a/extra/kde312/kicontheme.h +++ b/extra/kde312/kicontheme.h @@ -241,7 +241,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde312/kkeyserver_x11.h b/extra/kde312/kkeyserver_x11.h index b006a7a..4169273 100644 --- a/extra/kde312/kkeyserver_x11.h +++ b/extra/kde312/kkeyserver_x11.h @@ -81,10 +81,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed @ref KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed @ref KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired @ref KKey::ModFlag's + * @return the required @ref KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde312/kurifilter.h b/extra/kde312/kurifilter.h index 299cf66..ad800b9 100644 --- a/extra/kde312/kurifilter.h +++ b/extra/kde312/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde313/kicontheme.h b/extra/kde313/kicontheme.h index ce2d3ec..542e535 100644 --- a/extra/kde313/kicontheme.h +++ b/extra/kde313/kicontheme.h @@ -241,7 +241,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde313/kkeyserver_x11.h b/extra/kde313/kkeyserver_x11.h index b006a7a..4169273 100644 --- a/extra/kde313/kkeyserver_x11.h +++ b/extra/kde313/kkeyserver_x11.h @@ -81,10 +81,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed @ref KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed @ref KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired @ref KKey::ModFlag's + * @return the required @ref KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde313/kurifilter.h b/extra/kde313/kurifilter.h index 299cf66..ad800b9 100644 --- a/extra/kde313/kurifilter.h +++ b/extra/kde313/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde314/kicontheme.h b/extra/kde314/kicontheme.h index ce2d3ec..542e535 100644 --- a/extra/kde314/kicontheme.h +++ b/extra/kde314/kicontheme.h @@ -241,7 +241,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde314/kkeyserver_x11.h b/extra/kde314/kkeyserver_x11.h index 9f37821..a7fa366 100644 --- a/extra/kde314/kkeyserver_x11.h +++ b/extra/kde314/kkeyserver_x11.h @@ -81,10 +81,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed @ref KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed @ref KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired @ref KKey::ModFlag's + * @return the required @ref KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde314/kurifilter.h b/extra/kde314/kurifilter.h index 75c0153..98c760f 100644 --- a/extra/kde314/kurifilter.h +++ b/extra/kde314/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde315/kicontheme.h b/extra/kde315/kicontheme.h index d332d81..72325f9 100644 --- a/extra/kde315/kicontheme.h +++ b/extra/kde315/kicontheme.h @@ -241,7 +241,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde315/kkeyserver_x11.h b/extra/kde315/kkeyserver_x11.h index 9f37821..a7fa366 100644 --- a/extra/kde315/kkeyserver_x11.h +++ b/extra/kde315/kkeyserver_x11.h @@ -81,10 +81,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed @ref KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed @ref KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired @ref KKey::ModFlag's + * @return the required @ref KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde315/kurifilter.h b/extra/kde315/kurifilter.h index 75c0153..98c760f 100644 --- a/extra/kde315/kurifilter.h +++ b/extra/kde315/kurifilter.h @@ -35,7 +35,7 @@ class KCModule; /** * This is a basic message object used for exchanging filtering * information between the filter plugins and the application -* whenever the application retquires more information about the +* whenever the application requires more information about the * URI than just a filtered version of it. Any application can * create an instance of this class and send it to @ref KURIFilter * to have the filter plugins fill the necessary information. diff --git a/extra/kde320/kicontheme.h b/extra/kde320/kicontheme.h index 5bf5b0d..28f0b52 100644 --- a/extra/kde320/kicontheme.h +++ b/extra/kde320/kicontheme.h @@ -244,7 +244,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde320/kkeyserver_x11.h b/extra/kde320/kkeyserver_x11.h index dea4ff0..c2e11b7 100644 --- a/extra/kde320/kkeyserver_x11.h +++ b/extra/kde320/kkeyserver_x11.h @@ -79,10 +79,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde320/kurifilter.h b/extra/kde320/kurifilter.h index ef89095..d4bacb8 100644 --- a/extra/kde320/kurifilter.h +++ b/extra/kde320/kurifilter.h @@ -42,7 +42,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde321/kicontheme.h b/extra/kde321/kicontheme.h index 5bf5b0d..28f0b52 100644 --- a/extra/kde321/kicontheme.h +++ b/extra/kde321/kicontheme.h @@ -244,7 +244,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde321/kkeyserver_x11.h b/extra/kde321/kkeyserver_x11.h index dea4ff0..c2e11b7 100644 --- a/extra/kde321/kkeyserver_x11.h +++ b/extra/kde321/kkeyserver_x11.h @@ -79,10 +79,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde321/kurifilter.h b/extra/kde321/kurifilter.h index ef89095..d4bacb8 100644 --- a/extra/kde321/kurifilter.h +++ b/extra/kde321/kurifilter.h @@ -42,7 +42,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde322/kicontheme.h b/extra/kde322/kicontheme.h index 5bf5b0d..28f0b52 100644 --- a/extra/kde322/kicontheme.h +++ b/extra/kde322/kicontheme.h @@ -244,7 +244,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde322/kkeyserver_x11.h b/extra/kde322/kkeyserver_x11.h index dea4ff0..c2e11b7 100644 --- a/extra/kde322/kkeyserver_x11.h +++ b/extra/kde322/kkeyserver_x11.h @@ -79,10 +79,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde322/kurifilter.h b/extra/kde322/kurifilter.h index ef89095..d4bacb8 100644 --- a/extra/kde322/kurifilter.h +++ b/extra/kde322/kurifilter.h @@ -42,7 +42,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde323/kicontheme.h b/extra/kde323/kicontheme.h index 5bf5b0d..28f0b52 100644 --- a/extra/kde323/kicontheme.h +++ b/extra/kde323/kicontheme.h @@ -244,7 +244,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde323/kkeyserver_x11.h b/extra/kde323/kkeyserver_x11.h index dea4ff0..c2e11b7 100644 --- a/extra/kde323/kkeyserver_x11.h +++ b/extra/kde323/kkeyserver_x11.h @@ -79,10 +79,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde323/kurifilter.h b/extra/kde323/kurifilter.h index ef89095..d4bacb8 100644 --- a/extra/kde323/kurifilter.h +++ b/extra/kde323/kurifilter.h @@ -42,7 +42,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde330/kicontheme.h b/extra/kde330/kicontheme.h index 885c704..dca4650 100644 --- a/extra/kde330/kicontheme.h +++ b/extra/kde330/kicontheme.h @@ -246,7 +246,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde330/kkeyserver_x11.h b/extra/kde330/kkeyserver_x11.h index dea4ff0..c2e11b7 100644 --- a/extra/kde330/kkeyserver_x11.h +++ b/extra/kde330/kkeyserver_x11.h @@ -79,10 +79,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde330/kurifilter.h b/extra/kde330/kurifilter.h index ef89095..d4bacb8 100644 --- a/extra/kde330/kurifilter.h +++ b/extra/kde330/kurifilter.h @@ -42,7 +42,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde331/kicontheme.h b/extra/kde331/kicontheme.h index d664ffe..07b219c 100644 --- a/extra/kde331/kicontheme.h +++ b/extra/kde331/kicontheme.h @@ -248,7 +248,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde331/kkeyserver_x11.h b/extra/kde331/kkeyserver_x11.h index dea4ff0..c2e11b7 100644 --- a/extra/kde331/kkeyserver_x11.h +++ b/extra/kde331/kkeyserver_x11.h @@ -79,10 +79,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde331/kurifilter.h b/extra/kde331/kurifilter.h index ef89095..d4bacb8 100644 --- a/extra/kde331/kurifilter.h +++ b/extra/kde331/kurifilter.h @@ -42,7 +42,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde332/kicontheme.h b/extra/kde332/kicontheme.h index db683c8..fb149e5 100644 --- a/extra/kde332/kicontheme.h +++ b/extra/kde332/kicontheme.h @@ -248,7 +248,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde332/kkeyserver_x11.h b/extra/kde332/kkeyserver_x11.h index dea4ff0..c2e11b7 100644 --- a/extra/kde332/kkeyserver_x11.h +++ b/extra/kde332/kkeyserver_x11.h @@ -79,10 +79,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde332/kurifilter.h b/extra/kde332/kurifilter.h index ef89095..d4bacb8 100644 --- a/extra/kde332/kurifilter.h +++ b/extra/kde332/kurifilter.h @@ -42,7 +42,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde340/kicontheme.h b/extra/kde340/kicontheme.h index e12ffc7..d2fe7cf 100644 --- a/extra/kde340/kicontheme.h +++ b/extra/kde340/kicontheme.h @@ -265,7 +265,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde340/kkeyserver_x11.h b/extra/kde340/kkeyserver_x11.h index e1810fb..0251007 100644 --- a/extra/kde340/kkeyserver_x11.h +++ b/extra/kde340/kkeyserver_x11.h @@ -101,10 +101,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde340/kurifilter.h b/extra/kde340/kurifilter.h index c69657c..0363dc8 100644 --- a/extra/kde340/kurifilter.h +++ b/extra/kde340/kurifilter.h @@ -45,7 +45,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde341/kicontheme.h b/extra/kde341/kicontheme.h index e12ffc7..d2fe7cf 100644 --- a/extra/kde341/kicontheme.h +++ b/extra/kde341/kicontheme.h @@ -265,7 +265,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde341/kkeyserver_x11.h b/extra/kde341/kkeyserver_x11.h index e1810fb..0251007 100644 --- a/extra/kde341/kkeyserver_x11.h +++ b/extra/kde341/kkeyserver_x11.h @@ -101,10 +101,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde341/kurifilter.h b/extra/kde341/kurifilter.h index c69657c..0363dc8 100644 --- a/extra/kde341/kurifilter.h +++ b/extra/kde341/kurifilter.h @@ -45,7 +45,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde342/kicontheme.h b/extra/kde342/kicontheme.h index c484443..89f0f0d 100644 --- a/extra/kde342/kicontheme.h +++ b/extra/kde342/kicontheme.h @@ -265,7 +265,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde342/kkeyserver_x11.h b/extra/kde342/kkeyserver_x11.h index b5ebb1c..0dae410 100644 --- a/extra/kde342/kkeyserver_x11.h +++ b/extra/kde342/kkeyserver_x11.h @@ -101,10 +101,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde342/kurifilter.h b/extra/kde342/kurifilter.h index c69657c..0363dc8 100644 --- a/extra/kde342/kurifilter.h +++ b/extra/kde342/kurifilter.h @@ -45,7 +45,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde343/kicontheme.h b/extra/kde343/kicontheme.h index c484443..89f0f0d 100644 --- a/extra/kde343/kicontheme.h +++ b/extra/kde343/kicontheme.h @@ -265,7 +265,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde343/kkeyserver_x11.h b/extra/kde343/kkeyserver_x11.h index b5ebb1c..0dae410 100644 --- a/extra/kde343/kkeyserver_x11.h +++ b/extra/kde343/kkeyserver_x11.h @@ -101,10 +101,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde343/kurifilter.h b/extra/kde343/kurifilter.h index c69657c..0363dc8 100644 --- a/extra/kde343/kurifilter.h +++ b/extra/kde343/kurifilter.h @@ -45,7 +45,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde350/kicontheme.h b/extra/kde350/kicontheme.h index e82d85a..b40ac8f 100644 --- a/extra/kde350/kicontheme.h +++ b/extra/kde350/kicontheme.h @@ -265,7 +265,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde350/kkeyserver_x11.h b/extra/kde350/kkeyserver_x11.h index 3c00729..2b48047 100644 --- a/extra/kde350/kkeyserver_x11.h +++ b/extra/kde350/kkeyserver_x11.h @@ -101,10 +101,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde350/kurifilter.h b/extra/kde350/kurifilter.h index 20999ad..773d8e0 100644 --- a/extra/kde350/kurifilter.h +++ b/extra/kde350/kurifilter.h @@ -45,7 +45,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde351/kicontheme.h b/extra/kde351/kicontheme.h index 0648d63..8d48855 100644 --- a/extra/kde351/kicontheme.h +++ b/extra/kde351/kicontheme.h @@ -265,7 +265,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde351/kkeyserver_x11.h b/extra/kde351/kkeyserver_x11.h index 3c00729..2b48047 100644 --- a/extra/kde351/kkeyserver_x11.h +++ b/extra/kde351/kkeyserver_x11.h @@ -101,10 +101,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde351/kurifilter.h b/extra/kde351/kurifilter.h index 20999ad..773d8e0 100644 --- a/extra/kde351/kurifilter.h +++ b/extra/kde351/kurifilter.h @@ -45,7 +45,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde352/kicontheme.h b/extra/kde352/kicontheme.h index 0648d63..8d48855 100644 --- a/extra/kde352/kicontheme.h +++ b/extra/kde352/kicontheme.h @@ -265,7 +265,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde352/kkeyserver_x11.h b/extra/kde352/kkeyserver_x11.h index 3c00729..2b48047 100644 --- a/extra/kde352/kkeyserver_x11.h +++ b/extra/kde352/kkeyserver_x11.h @@ -101,10 +101,10 @@ namespace KKeyServer TQString toString() const; /** - * Returns the mods that are retquired for this symbol as - * ORed KKey::ModFlag's. For example, Break retquires a + * Returns the mods that are required for this symbol as + * ORed KKey::ModFlag's. For example, Break requires a * Ctrl to be valid. - * @return the retquired KKey::ModFlag's + * @return the required KKey::ModFlag's * @see KKey::ModFlag */ uint getModsRequired() const; diff --git a/extra/kde352/kurifilter.h b/extra/kde352/kurifilter.h index 20999ad..773d8e0 100644 --- a/extra/kde352/kurifilter.h +++ b/extra/kde352/kurifilter.h @@ -45,7 +45,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/extra/kde353/kicontheme.h b/extra/kde353/kicontheme.h index 0648d63..8d48855 100644 --- a/extra/kde353/kicontheme.h +++ b/extra/kde353/kicontheme.h @@ -265,7 +265,7 @@ public: bool isHidden() const; /** - * The minimum display depth retquired for this theme. This can either + * The minimum display depth required for this theme. This can either * be 8 or 32. * @return the minimum bpp (8 or 32) */ diff --git a/extra/kde353/kurifilter.h b/extra/kde353/kurifilter.h index 20999ad..773d8e0 100644 --- a/extra/kde353/kurifilter.h +++ b/extra/kde353/kurifilter.h @@ -45,7 +45,7 @@ class KCModule; * information between the filter plugins and the application * requesting the filtering service. * -* Use this object if you retquire a more detailed information +* Use this object if you require a more detailed information * about the URI you want to filter. Any application can create * an instance of this class and send it to KURIFilter to * have the plugins fill out all possible information about the diff --git a/sip/tdecore/kcmdlineargs.sip b/sip/tdecore/kcmdlineargs.sip index e9e6a43..2a9399b 100644 --- a/sip/tdecore/kcmdlineargs.sip +++ b/sip/tdecore/kcmdlineargs.sip @@ -139,7 +139,7 @@ public: //doc // A Pytbon list of tuples (name, description, default) is the first parameter // instead of a KCmdLineOptions object (KCmdLineOptions is not used); -// NULL (or None) parameters to mark the end of the list are not retquired +// NULL (or None) parameters to mark the end of the list are not required //end int n; diff --git a/templates/annotated/basicapp.py b/templates/annotated/basicapp.py index 8af04b7..0a44593 100644 --- a/templates/annotated/basicapp.py +++ b/templates/annotated/basicapp.py @@ -77,7 +77,7 @@ aboutData.addAuthor ("author2", "they did something else", "another@email.addres # Pass the command line arguments and aboutData to # KCmdLineArgs - this is where KDE will look for # this information. The KApplication constructor -# used below *retquires* the args are processed +# used below *requires* the args are processed # *before* KApplication is instantiated. There # is an alternate constructor that takes sys.argv # as an argument (see minimal.py) diff --git a/templates/annotated/menuapp2.py b/templates/annotated/menuapp2.py index b3b3501..be0d100 100644 --- a/templates/annotated/menuapp2.py +++ b/templates/annotated/menuapp2.py @@ -67,7 +67,7 @@ class MainWin (KMainWindow): # Create the status bar self.initStatusBar () - # Usings actions, only a single line is retquired + # Usings actions, only a single line is required # to enable/disable both the menu item and corresponding # toolbar button from anywhere in the program self.saveAction.setEnabled (False) @@ -112,7 +112,7 @@ class MainWin (KMainWindow): # or you can use KAction.setIcon to set/change the icon. You # can also add a tooltip with KAction.setToolTip - # This KAction constructor retquires a TQString, an accelerator (0 + # This KAction constructor requires a TQString, an accelerator (0 # in this case), a slot, and a TQObject (None in this case) self.specialAction = KAction (i18n ("Special"), 0, self.slotSpecial, None)