summaryrefslogtreecommitdiffstats
path: root/tdeparts/part.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:13:01 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:13:01 -0600
commitdeac2ca49faed824fe83066080714eb6d653615b (patch)
tree8b5bf97c5acaaf5285985b87fa76dbea0f35e4fa /tdeparts/part.h
parent0c9d97065a3d6ceb12d687555a1a33d90db96238 (diff)
downloadtdelibs-deac2ca49faed824fe83066080714eb6d653615b.tar.gz
tdelibs-deac2ca49faed824fe83066080714eb6d653615b.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'tdeparts/part.h')
-rw-r--r--tdeparts/part.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tdeparts/part.h b/tdeparts/part.h
index 530da61c3..7550bce38 100644
--- a/tdeparts/part.h
+++ b/tdeparts/part.h
@@ -29,8 +29,8 @@
class TDEInstance;
class TQWidget;
-class KAction;
-class KActionCollection;
+class TDEAction;
+class TDEActionCollection;
class TQEvent;
struct QUnknownInterface;
@@ -554,7 +554,7 @@ public:
* Destructor.
* Applications using a ReadWritePart should make sure, before
* destroying it, to call closeURL().
- * In KMainWindow::queryClose(), for instance, they should allow
+ * In TDEMainWindow::queryClose(), for instance, they should allow
* closing only if the return value of closeURL() was true.
* This allows to cancel.
*/
@@ -578,7 +578,7 @@ public:
/**
* If the document has been modified, ask the user to save changes.
- * This method is meant to be called from KMainWindow::queryClose().
+ * This method is meant to be called from TDEMainWindow::queryClose().
* It will also be called from closeURL().
*
* @return true if closeURL() can be called without the user losing
@@ -605,7 +605,7 @@ public:
/**
* Call this method instead of the above if you need control if
* the save prompt is shown. For example, if you call queryClose()
- * from KMainWindow::queryClose(), you would not want to prompt
+ * from TDEMainWindow::queryClose(), you would not want to prompt
* again when closing the url.
*
* Equivalent to promptToSave ? closeURL() : ReadOnlyPart::closeURL()