summaryrefslogtreecommitdiffstats
path: root/interfaces/ktexteditor/undointerface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/ktexteditor/undointerface.cpp')
-rw-r--r--interfaces/ktexteditor/undointerface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces/ktexteditor/undointerface.cpp b/interfaces/ktexteditor/undointerface.cpp
index d19a56deb..30a1dd292 100644
--- a/interfaces/ktexteditor/undointerface.cpp
+++ b/interfaces/ktexteditor/undointerface.cpp
@@ -70,5 +70,5 @@ UndoInterface *KTextEditor::undoInterface (Document *doc)
if (!doc)
return 0;
- return static_cast<UndoInterface*>(doc->qt_cast("KTextEditor::UndoInterface"));
+ return dynamic_cast<KTextEditor::UndoInterface*>(doc);
}