summaryrefslogtreecommitdiffstats
path: root/quanta/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-22 20:24:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-22 20:24:21 -0600
commit8ba97103df12b002f6b2cf1d24a4b389a6379f61 (patch)
tree583bb7f0c8a54d0d497abec2f95a692cda8c7b30 /quanta/src
parent0111fdc2a40580d418d365006c52845c320558b0 (diff)
downloadtdewebdev-8ba97103df12b002f6b2cf1d24a4b389a6379f61.tar.gz
tdewebdev-8ba97103df12b002f6b2cf1d24a4b389a6379f61.zip
Rename KInstance and KAboutData to avoid conflicts with KDE4
Diffstat (limited to 'quanta/src')
-rw-r--r--quanta/src/main.cpp4
-rw-r--r--quanta/src/quanta.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/quanta/src/main.cpp b/quanta/src/main.cpp
index 52d4b07c..968ad81d 100644
--- a/quanta/src/main.cpp
+++ b/quanta/src/main.cpp
@@ -66,9 +66,9 @@ int main(int argc, char *argv[])
char *copyright = new char[200]; //this should be enough
strcpy(copyright, "(C) 2000-2006 - ");
strcat(copyright, developers);
- KAboutData
+ TDEAboutData
aboutData( QUANTA_PACKAGE, I18N_NOOP("Quanta"),
- QUANTA_VERSION, description, KAboutData::License_GPL_V2,
+ QUANTA_VERSION, description, TDEAboutData::License_GPL_V2,
copyright,
othertext,
"http://tdewebdev.org"
diff --git a/quanta/src/quanta.cpp b/quanta/src/quanta.cpp
index 81c04aff..82c81283 100644
--- a/quanta/src/quanta.cpp
+++ b/quanta/src/quanta.cpp
@@ -4084,7 +4084,7 @@ TQString QuantaApp::saveCurrentFile()
void QuantaApp::slotReportBug()
{
- KAboutData aboutData( "quanta", I18N_NOOP("Quanta"), QUANTA_VERSION);
+ TDEAboutData aboutData( "quanta", I18N_NOOP("Quanta"), QUANTA_VERSION);
KBugReport bugReportDlg(this, true, &aboutData);
bugReportDlg.exec();
}