summaryrefslogtreecommitdiffstats
path: root/chalk/ui
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-31 00:15:51 -0600
committerTimothy Pearson <[email protected]>2013-01-31 00:15:51 -0600
commitf7055674768fa7f0267da4a14b9061e60ebab3fc (patch)
tree9cf91b2040d16220234c24c945e950952c359832 /chalk/ui
parentaf2ab9c9888013e42237f71166eeafe5e988da0f (diff)
downloadkoffice-f7055674768fa7f0267da4a14b9061e60ebab3fc.tar.gz
koffice-f7055674768fa7f0267da4a14b9061e60ebab3fc.zip
Rename KShared
Diffstat (limited to 'chalk/ui')
-rw-r--r--chalk/ui/kis_opengl_image_context.h4
-rw-r--r--chalk/ui/kis_tool.h2
-rw-r--r--chalk/ui/kis_tool_factory.h2
-rw-r--r--chalk/ui/kis_tool_types.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/chalk/ui/kis_opengl_image_context.h b/chalk/ui/kis_opengl_image_context.h
index 84cbea45..6bdca958 100644
--- a/chalk/ui/kis_opengl_image_context.h
+++ b/chalk/ui/kis_opengl_image_context.h
@@ -37,10 +37,10 @@
class TQRegion;
class KisOpenGLImageContext;
-typedef KSharedPtr<KisOpenGLImageContext> KisOpenGLImageContextSP;
+typedef TDESharedPtr<KisOpenGLImageContext> KisOpenGLImageContextSP;
class KisColorSpace;
-class KRITACORE_EXPORT KisOpenGLImageContext : public TQObject , public KShared {
+class KRITACORE_EXPORT KisOpenGLImageContext : public TQObject , public TDEShared {
Q_OBJECT
diff --git a/chalk/ui/kis_tool.h b/chalk/ui/kis_tool.h
index fb79325a..cd9cc424 100644
--- a/chalk/ui/kis_tool.h
+++ b/chalk/ui/kis_tool.h
@@ -58,7 +58,7 @@ enum enumToolType {
const TQ_UINT8 NUMBER_OF_TOOLTYPES = 6;
-class KisTool : public TQObject, public KisCanvasObserver, public KShared {
+class KisTool : public TQObject, public KisCanvasObserver, public TDEShared {
Q_OBJECT
diff --git a/chalk/ui/kis_tool_factory.h b/chalk/ui/kis_tool_factory.h
index da1239e3..90240f0c 100644
--- a/chalk/ui/kis_tool_factory.h
+++ b/chalk/ui/kis_tool_factory.h
@@ -25,7 +25,7 @@
#include "kis_types.h"
#include "kactioncollection.h"
-class KisToolFactory : public KShared
+class KisToolFactory : public TDEShared
{
public:
diff --git a/chalk/ui/kis_tool_types.h b/chalk/ui/kis_tool_types.h
index 4811f75e..9dcb9e9f 100644
--- a/chalk/ui/kis_tool_types.h
+++ b/chalk/ui/kis_tool_types.h
@@ -23,12 +23,12 @@
class KisTool;
-typedef KSharedPtr<KisTool> KisToolSP;
+typedef TDESharedPtr<KisTool> KisToolSP;
typedef KisSharedPtrVector<KisTool> vKisTool;
typedef vKisTool::iterator vKisTool_it;
typedef vKisTool::const_iterator vKisTool_cit;
class KisToolFactory;
-typedef KSharedPtr<KisToolFactory> KisToolFactorySP;
+typedef TDESharedPtr<KisToolFactory> KisToolFactorySP;
#endif // KIS_TOOL_TYPES_H_