summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-08 00:05:53 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-08 00:05:53 -0600
commitde123eb5e3e3b2561b5836332456b4320ee3daf3 (patch)
tree231b2c8fd8bf4a93ad120de89704d0c774f058f7 /lib
parent2b1df858bf24b199a5d3e4fc537df3e9701f8daa (diff)
downloadkoffice-de123eb5e3e3b2561b5836332456b4320ee3daf3.tar.gz
koffice-de123eb5e3e3b2561b5836332456b4320ee3daf3.zip
Fix accidental conversion of dockwin
Diffstat (limited to 'lib')
-rw-r--r--lib/kofficecore/kkbdaccessextensions.cpp4
-rw-r--r--lib/kofficeui/KoContextCelp.h2
-rw-r--r--lib/kofficeui/KoToolBox.cpp2
-rw-r--r--lib/kopalette/kopalette.cc2
-rw-r--r--lib/kopalette/kopalette.h2
-rw-r--r--lib/kopalette/kopalettemanager.cc2
-rw-r--r--lib/kopalette/kopalettemanager.h4
-rw-r--r--lib/kopalette/kotabpalette.cc2
-rw-r--r--lib/kopalette/kotabpalette.h2
-rw-r--r--lib/kopalette/kotoolboxpalette.cc2
-rw-r--r--lib/kopalette/kotoolboxpalette.h2
11 files changed, 13 insertions, 13 deletions
diff --git a/lib/kofficecore/kkbdaccessextensions.cpp b/lib/kofficecore/kkbdaccessextensions.cpp
index 67f4c49b..9535c14a 100644
--- a/lib/kofficecore/kkbdaccessextensions.cpp
+++ b/lib/kofficecore/kkbdaccessextensions.cpp
@@ -19,7 +19,7 @@
// TQt includes
#include <tqsplitter.h>
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <tqdockarea.h>
#include <tqevent.h>
#include <tqcursor.h>
@@ -136,7 +136,7 @@ class KKbdAccessExtensionsPrivate
// Action that starts access keys.
KAction* accessKeysAction;
- // The splitter or doctwindow currently being sized. If 0, sizing is not in progress.
+ // The splitter or dockwindow currently being sized. If 0, sizing is not in progress.
TQWidget* panel;
// Index of current handle of the panel. When panel is a TQDockWindow:
diff --git a/lib/kofficeui/KoContextCelp.h b/lib/kofficeui/KoContextCelp.h
index 5f696fc8..889e006d 100644
--- a/lib/kofficeui/KoContextCelp.h
+++ b/lib/kofficeui/KoContextCelp.h
@@ -22,7 +22,7 @@
#include <tqwidget.h>
#include <tqbitmap.h>
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <kaction.h>
#include <koffice_export.h>
diff --git a/lib/kofficeui/KoToolBox.cpp b/lib/kofficeui/KoToolBox.cpp
index d6af0e97..db4d6467 100644
--- a/lib/kofficeui/KoToolBox.cpp
+++ b/lib/kofficeui/KoToolBox.cpp
@@ -25,7 +25,7 @@
#include <tqlayout.h>
#include <tqpixmap.h>
#include <tqtoolbar.h>
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <kdebug.h>
#include <kparts/event.h>
diff --git a/lib/kopalette/kopalette.cc b/lib/kopalette/kopalette.cc
index 415d8394..c9d6cb2b 100644
--- a/lib/kopalette/kopalette.cc
+++ b/lib/kopalette/kopalette.cc
@@ -16,7 +16,7 @@
*/
#include <tqwidget.h>
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <tqvariant.h>
#include <tqlabel.h>
#include <tqtoolbutton.h>
diff --git a/lib/kopalette/kopalette.h b/lib/kopalette/kopalette.h
index 0b668008..48d9cb3c 100644
--- a/lib/kopalette/kopalette.h
+++ b/lib/kopalette/kopalette.h
@@ -18,7 +18,7 @@
#ifndef _KO_PALETTE_
#define _KO_PALETTE_
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <tqwidget.h>
#include <tqlabel.h>
#include <tqtoolbutton.h>
diff --git a/lib/kopalette/kopalettemanager.cc b/lib/kopalette/kopalettemanager.cc
index d27c05fc..94ea8d4d 100644
--- a/lib/kopalette/kopalettemanager.cc
+++ b/lib/kopalette/kopalettemanager.cc
@@ -17,7 +17,7 @@
#include <tqapplication.h>
#include <tqdockarea.h>
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <tqdict.h>
#include <tqwidget.h>
#include <tqobject.h>
diff --git a/lib/kopalette/kopalettemanager.h b/lib/kopalette/kopalettemanager.h
index fe2d6ec1..be9e7126 100644
--- a/lib/kopalette/kopalettemanager.h
+++ b/lib/kopalette/kopalettemanager.h
@@ -19,7 +19,7 @@
#define _KO_PALETTE_MANAGER_
#include <tqobject.h>
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <tqstring.h>
#include <tqmap.h>
#include <tqdict.h>
@@ -61,7 +61,7 @@ namespace {
}
/**
- * Manages the set of doctwindow palettes and their widgets.
+ * Manages the set of dockwindow palettes and their widgets.
*
* You create one palette manager per view; then you can add widgets
* to your hearts content. Widgets are grouped into dock windows by
diff --git a/lib/kopalette/kotabpalette.cc b/lib/kopalette/kotabpalette.cc
index 7730b5f9..0e798842 100644
--- a/lib/kopalette/kotabpalette.cc
+++ b/lib/kopalette/kotabpalette.cc
@@ -16,7 +16,7 @@
*/
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <ktabwidget.h>
#include <kdebug.h>
diff --git a/lib/kopalette/kotabpalette.h b/lib/kopalette/kotabpalette.h
index 5a18c551..a33d58a2 100644
--- a/lib/kopalette/kotabpalette.h
+++ b/lib/kopalette/kotabpalette.h
@@ -18,7 +18,7 @@
#ifndef _KO_TAB_PALETTE_
#define _KO_TAB_PALETTE_
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <ktabwidget.h>
#include "kopalette.h"
diff --git a/lib/kopalette/kotoolboxpalette.cc b/lib/kopalette/kotoolboxpalette.cc
index 0f0166c2..e4c2bd63 100644
--- a/lib/kopalette/kotoolboxpalette.cc
+++ b/lib/kopalette/kotoolboxpalette.cc
@@ -17,7 +17,7 @@
*/
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <tqtoolbox.h>
#include <kopalette.h>
diff --git a/lib/kopalette/kotoolboxpalette.h b/lib/kopalette/kotoolboxpalette.h
index 56da2ad5..1d15ef62 100644
--- a/lib/kopalette/kotoolboxpalette.h
+++ b/lib/kopalette/kotoolboxpalette.h
@@ -18,7 +18,7 @@
#ifndef _KO_TOOLBOX_PALETTE_
#define _KO_TOOLBOX_PALETTE_
-#include <tqdoctwindow.h>
+#include <tqdockwindow.h>
#include <tqtoolbox.h>
#include <kopalettemanager.h>