diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-16 13:51:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-16 13:51:39 -0600 |
commit | 3b1405169d66e029912f53d10c2880c46f5ed159 (patch) | |
tree | 40c38835f7709885bf4a99d6d9cc64232397c4ba /interfaces/kregexpeditor | |
parent | bd19c52fd41735f3e488bbe3de6b243ac53e1527 (diff) | |
download | tdelibs-3b1405169d66e029912f53d10c2880c46f5ed159.tar.gz tdelibs-3b1405169d66e029912f53d10c2880c46f5ed159.zip |
Additional renaming of kde to tde
Diffstat (limited to 'interfaces/kregexpeditor')
-rw-r--r-- | interfaces/kregexpeditor/kregexpeditorinterface.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/interfaces/kregexpeditor/kregexpeditorinterface.h b/interfaces/kregexpeditor/kregexpeditorinterface.h index 6995c3982..3c96d8d93 100644 --- a/interfaces/kregexpeditor/kregexpeditorinterface.h +++ b/interfaces/kregexpeditor/kregexpeditorinterface.h @@ -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! * |