diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 11:13:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 11:13:01 -0600 |
commit | d86ed6c390d00cf5536c053d5f80fbcc1d41b773 (patch) | |
tree | 79fe50300cd20b60ca81d12306f22e6f69250f5a /kommander | |
parent | 051ae88012e0fd0ed56b862da0efa957f1a72957 (diff) | |
download | tdewebdev-d86ed6c390d00cf5536c053d5f80fbcc1d41b773.tar.gz tdewebdev-d86ed6c390d00cf5536c053d5f80fbcc1d41b773.zip |
Rename KAbout to avoid conflicts with KDE4
Diffstat (limited to 'kommander')
-rw-r--r-- | kommander/ChangeLog | 2 | ||||
-rw-r--r-- | kommander/Kommander-TODO.kno | 2 | ||||
-rw-r--r-- | kommander/widgets/aboutdialog.cpp | 4 | ||||
-rw-r--r-- | kommander/widgets/aboutdialog.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/kommander/ChangeLog b/kommander/ChangeLog index 4813f4d9..9998c15f 100644 --- a/kommander/ChangeLog +++ b/kommander/ChangeLog @@ -219,7 +219,7 @@ Sun 14 Nov 2004 22:39:38 CET - Michal Rudolf <mrudolf@tdewebdev.org> o massive cleanup and KDE-ification of Editor o most actions converted to TDEActions, some were standarized o some obsolete dialogs removed - o About dialog changed to use KAboutDialog + o About dialog changed to use TDEAboutDialog Wed 03 Nov 2004 14:28:39 CET - Michal Rudolf <mrudolf@tdewebdev.org> o fix some problems detected by kdetestsscripts diff --git a/kommander/Kommander-TODO.kno b/kommander/Kommander-TODO.kno index 9f5f352c..4207a210 100644 --- a/kommander/Kommander-TODO.kno +++ b/kommander/Kommander-TODO.kno @@ -206,7 +206,7 @@ <li><span style="color:#ffff00">Code completion? If easy to do, otherwise we recommend users try the Kate completion plugin</span></li> <li><span style="color:#ffff00">D&D of text/selection data</span></li> <li>simple DCOP functions in editor to enable Kommander based tools to call the editor and open a dialog to edit - otherwise any interfaces can at least make use of D&D from file manager (KPart) views</li> -<li><span style="color:#ff0000">Additional XML fields in dialog for author name, version of Kommander required, etc... - not required as KAbout would be better</span></li></ul> +<li><span style="color:#ff0000">Additional XML fields in dialog for author name, version of Kommander required, etc... - not required as TDEAbout would be better</span></li></ul> </body></html> \NewEntry 1 Bugs to squish diff --git a/kommander/widgets/aboutdialog.cpp b/kommander/widgets/aboutdialog.cpp index 66056c90..f345806e 100644 --- a/kommander/widgets/aboutdialog.cpp +++ b/kommander/widgets/aboutdialog.cpp @@ -228,7 +228,7 @@ void AboutDialog::execute() { if (m_aboutData) { - KAboutApplication dialog(m_aboutData, this); + TDEAboutApplication dialog(m_aboutData, this); dialog.exec(); } } @@ -281,7 +281,7 @@ TQString AboutDialog::handleDCOP(int function, const TQStringList& args) { if (m_aboutData) { - KAboutApplication dialog(m_aboutData, this); + TDEAboutApplication dialog(m_aboutData, this); dialog.exec(); } break; diff --git a/kommander/widgets/aboutdialog.h b/kommander/widgets/aboutdialog.h index 079ef849..d22771ea 100644 --- a/kommander/widgets/aboutdialog.h +++ b/kommander/widgets/aboutdialog.h @@ -15,7 +15,7 @@ #include <tqlabel.h> #include <kommanderwidget.h> -class KAboutApplication; +class TDEAboutApplication; class TDEAboutData; /** |