summaryrefslogtreecommitdiffstats
path: root/kivio/kiviopart
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 13:37:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 13:37:04 +0900
commitcb59219281a9666896ee96b02a487bbc0206082d (patch)
tree75f3ebf2b90d7d8d2dc4b3c7af59601acede5ebb /kivio/kiviopart
parenta34711af5e9f617dbf46f5c0383ad8f3fa04cd6d (diff)
downloadkoffice-cb59219281a9666896ee96b02a487bbc0206082d.tar.gz
koffice-cb59219281a9666896ee96b02a487bbc0206082d.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kivio/kiviopart')
-rw-r--r--kivio/kiviopart/addstenciltool.h2
-rw-r--r--kivio/kiviopart/kivio_canvas.h2
-rw-r--r--kivio/kiviopart/kivio_dlg_pageshow.h2
-rw-r--r--kivio/kiviopart/kivio_doc.h2
-rw-r--r--kivio/kiviopart/kivio_factory.h2
-rw-r--r--kivio/kiviopart/kivio_icon_view.h2
-rw-r--r--kivio/kiviopart/kivio_page.h2
-rw-r--r--kivio/kiviopart/kivio_stackbar.h2
-rw-r--r--kivio/kiviopart/kivio_stencil_geometry_panel.h2
-rw-r--r--kivio/kiviopart/kivio_view.h2
-rw-r--r--kivio/kiviopart/kivio_zoomaction.h2
-rw-r--r--kivio/kiviopart/kivioarrowheadaction.h2
-rw-r--r--kivio/kiviopart/kiviodragobject.h2
-rw-r--r--kivio/kiviopart/kiviosdk/kiviostencilfactory.h2
-rw-r--r--kivio/kiviopart/kiviostencilsetaction.h2
-rw-r--r--kivio/kiviopart/kiviostencilsetinstaller.h2
-rw-r--r--kivio/kiviopart/stencilbarbutton.h2
-rw-r--r--kivio/kiviopart/stencilbardockmanager.h4
-rw-r--r--kivio/kiviopart/tools/kivio_mousetool.h2
-rw-r--r--kivio/kiviopart/tools/kivio_plugin.h2
-rw-r--r--kivio/kiviopart/tools/kivio_pluginmanager.h2
-rw-r--r--kivio/kiviopart/tools/mousetoolaction.h2
-rw-r--r--kivio/kiviopart/ui/addstencilsetdialog.h2
-rw-r--r--kivio/kiviopart/ui/export_page_dialog.h2
-rw-r--r--kivio/kiviopart/ui/kivio_birdeye_panel.h2
-rw-r--r--kivio/kiviopart/ui/kivio_layer_panel.h2
-rw-r--r--kivio/kiviopart/ui/kivio_protection_panel.h2
-rw-r--r--kivio/kiviopart/ui/kivioaddstencilsetpanel.h2
-rw-r--r--kivio/kiviopart/ui/kivioaligndialog.h2
-rw-r--r--kivio/kiviopart/ui/kivioarrowheadformatdlg.h2
-rw-r--r--kivio/kiviopart/ui/kiviooptionsdialog.h2
-rw-r--r--kivio/kiviopart/ui/kiviostencilformatdlg.h2
-rw-r--r--kivio/kiviopart/ui/kiviotextformatdlg.h2
-rw-r--r--kivio/kiviopart/ui/objectlistpalette.h2
34 files changed, 35 insertions, 35 deletions
diff --git a/kivio/kiviopart/addstenciltool.h b/kivio/kiviopart/addstenciltool.h
index 7b224b79..9be0a94e 100644
--- a/kivio/kiviopart/addstenciltool.h
+++ b/kivio/kiviopart/addstenciltool.h
@@ -33,7 +33,7 @@ namespace Kivio {
*/
class AddStencilTool : public MouseTool
{
- Q_OBJECT
+ TQ_OBJECT
public:
AddStencilTool(KivioView* parent);
diff --git a/kivio/kiviopart/kivio_canvas.h b/kivio/kiviopart/kivio_canvas.h
index 3da7c434..b0c11444 100644
--- a/kivio/kiviopart/kivio_canvas.h
+++ b/kivio/kiviopart/kivio_canvas.h
@@ -59,7 +59,7 @@ class KoRect;
class KIVIO_EXPORT KivioCanvas : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
friend class KivioView;
public:
diff --git a/kivio/kiviopart/kivio_dlg_pageshow.h b/kivio/kiviopart/kivio_dlg_pageshow.h
index 012af531..d3595096 100644
--- a/kivio/kiviopart/kivio_dlg_pageshow.h
+++ b/kivio/kiviopart/kivio_dlg_pageshow.h
@@ -29,7 +29,7 @@
class KivioView;
class KivioPageShow: public KDialogBase
-{ Q_OBJECT
+{ TQ_OBJECT
public:
KivioPageShow( KivioView* parent, const char* name );
diff --git a/kivio/kiviopart/kivio_doc.h b/kivio/kiviopart/kivio_doc.h
index 76cf5a87..d02a2e5b 100644
--- a/kivio/kiviopart/kivio_doc.h
+++ b/kivio/kiviopart/kivio_doc.h
@@ -64,7 +64,7 @@ using namespace Kivio;
class KIVIO_EXPORT KivioDoc : public KoDocument
{
- Q_OBJECT
+ TQ_OBJECT
friend class KivioPage;
public:
diff --git a/kivio/kiviopart/kivio_factory.h b/kivio/kiviopart/kivio_factory.h
index 5814d42d..31da76be 100644
--- a/kivio/kiviopart/kivio_factory.h
+++ b/kivio/kiviopart/kivio_factory.h
@@ -25,7 +25,7 @@ class TDEInstance;
class TDEAboutData;
class KIVIO_EXPORT KivioFactory : public KoFactory
-{ Q_OBJECT
+{ TQ_OBJECT
public:
KivioFactory( TQObject* parent = 0, const char* name = 0 );
diff --git a/kivio/kiviopart/kivio_icon_view.h b/kivio/kiviopart/kivio_icon_view.h
index 09cf8dd5..7223c7b1 100644
--- a/kivio/kiviopart/kivio_icon_view.h
+++ b/kivio/kiviopart/kivio_icon_view.h
@@ -32,7 +32,7 @@ class KivioStencilSpawner;
class KivioIconView : public TQIconView
{
- Q_OBJECT
+ TQ_OBJECT
protected:
KivioStencilSpawnerSet *m_pSpawnerSet;
diff --git a/kivio/kiviopart/kivio_page.h b/kivio/kiviopart/kivio_page.h
index 7d31d731..d6bdb02c 100644
--- a/kivio/kiviopart/kivio_page.h
+++ b/kivio/kiviopart/kivio_page.h
@@ -77,7 +77,7 @@ struct DistributeData
class KIVIO_EXPORT KivioPage : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioPage( KivioMap *_map, const TQString &pageName, const char *_name=0L );
diff --git a/kivio/kiviopart/kivio_stackbar.h b/kivio/kiviopart/kivio_stackbar.h
index bdf758a3..6535f0fb 100644
--- a/kivio/kiviopart/kivio_stackbar.h
+++ b/kivio/kiviopart/kivio_stackbar.h
@@ -32,7 +32,7 @@ using namespace Kivio;
class KivioStackBar : public TQDockWindow
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioStackBar(KivioView* view, TQWidget* parent=0, const char* name=0);
diff --git a/kivio/kiviopart/kivio_stencil_geometry_panel.h b/kivio/kiviopart/kivio_stencil_geometry_panel.h
index 56d5580c..9b64df06 100644
--- a/kivio/kiviopart/kivio_stencil_geometry_panel.h
+++ b/kivio/kiviopart/kivio_stencil_geometry_panel.h
@@ -10,7 +10,7 @@ class KIntSpinBox;
class KivioStencilGeometryPanel : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
protected:
KoUnitDoubleSpinBox *m_pX, *m_pY, *m_pW, *m_pH;
diff --git a/kivio/kiviopart/kivio_view.h b/kivio/kiviopart/kivio_view.h
index 18d1b329..1ad3ae2b 100644
--- a/kivio/kiviopart/kivio_view.h
+++ b/kivio/kiviopart/kivio_view.h
@@ -84,7 +84,7 @@ using namespace Kivio;
class KIVIO_EXPORT KivioView : public KoView
{
- Q_OBJECT
+ TQ_OBJECT
friend class KivioCanvas;
diff --git a/kivio/kiviopart/kivio_zoomaction.h b/kivio/kiviopart/kivio_zoomaction.h
index 6571aff1..b45890f7 100644
--- a/kivio/kiviopart/kivio_zoomaction.h
+++ b/kivio/kiviopart/kivio_zoomaction.h
@@ -24,7 +24,7 @@
namespace Kivio {
class ZoomAction : public TTDESelectAction
-{ Q_OBJECT
+{ TQ_OBJECT
public:
ZoomAction( TQObject* parent, const char* name );
diff --git a/kivio/kiviopart/kivioarrowheadaction.h b/kivio/kiviopart/kivioarrowheadaction.h
index b13b93bc..4526644f 100644
--- a/kivio/kiviopart/kivioarrowheadaction.h
+++ b/kivio/kiviopart/kivioarrowheadaction.h
@@ -28,7 +28,7 @@ class TDEPopupMenu;
class KivioArrowHeadAction : public TDEActionMenu
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioArrowHeadAction(const TQString &text, const TQString &pix,
diff --git a/kivio/kiviopart/kiviodragobject.h b/kivio/kiviopart/kiviodragobject.h
index b1f66757..219db3a7 100644
--- a/kivio/kiviopart/kiviodragobject.h
+++ b/kivio/kiviopart/kiviodragobject.h
@@ -30,7 +30,7 @@ class KivioPage;
class KivioDragObject : public TQDragObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioDragObject(TQWidget* dragSource = 0, const char* name = 0);
diff --git a/kivio/kiviopart/kiviosdk/kiviostencilfactory.h b/kivio/kiviopart/kiviosdk/kiviostencilfactory.h
index 0ec12f09..b409aa25 100644
--- a/kivio/kiviopart/kiviosdk/kiviostencilfactory.h
+++ b/kivio/kiviopart/kiviosdk/kiviostencilfactory.h
@@ -29,7 +29,7 @@ class TQPixmap;
#include <koffice_export.h>
class KIVIO_EXPORT KivioStencilFactory : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioStencilFactory(TQObject *parent=0, const char*name=0, const TQStringList& args = TQStringList())
diff --git a/kivio/kiviopart/kiviostencilsetaction.h b/kivio/kiviopart/kiviostencilsetaction.h
index 64f64acc..a89b46cf 100644
--- a/kivio/kiviopart/kiviostencilsetaction.h
+++ b/kivio/kiviopart/kiviostencilsetaction.h
@@ -33,7 +33,7 @@ class TQPixmap;
class KivioStencilSetAction : public TDEAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioStencilSetAction(const TQString &text, const TQString &pix,
diff --git a/kivio/kiviopart/kiviostencilsetinstaller.h b/kivio/kiviopart/kiviostencilsetinstaller.h
index 40395333..67242563 100644
--- a/kivio/kiviopart/kiviostencilsetinstaller.h
+++ b/kivio/kiviopart/kiviostencilsetinstaller.h
@@ -29,7 +29,7 @@ class KURLRequester;
namespace Kivio {
class StencilSetInstaller : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
StencilSetInstaller(TQWidget *parent = 0, const char *name = 0);
diff --git a/kivio/kiviopart/stencilbarbutton.h b/kivio/kiviopart/stencilbarbutton.h
index 3d7f6087..be4d36b1 100644
--- a/kivio/kiviopart/stencilbarbutton.h
+++ b/kivio/kiviopart/stencilbarbutton.h
@@ -26,7 +26,7 @@ namespace Kivio {
class DragBarButton : public TQPushButton
{
- Q_OBJECT
+ TQ_OBJECT
public:
DragBarButton( const TQString&, TQWidget* parent, const char* name = 0 );
diff --git a/kivio/kiviopart/stencilbardockmanager.h b/kivio/kiviopart/stencilbardockmanager.h
index 235aecde..32f5612c 100644
--- a/kivio/kiviopart/stencilbardockmanager.h
+++ b/kivio/kiviopart/stencilbardockmanager.h
@@ -44,7 +44,7 @@ class KivioView;
class StencilBarDockManager : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
enum BarPos {
@@ -93,7 +93,7 @@ class StencilBarDockManager : public TQWidget
*/
class KoToolDockMoveManager: public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kivio/kiviopart/tools/kivio_mousetool.h b/kivio/kiviopart/tools/kivio_mousetool.h
index e06f77af..ac80cd29 100644
--- a/kivio/kiviopart/tools/kivio_mousetool.h
+++ b/kivio/kiviopart/tools/kivio_mousetool.h
@@ -31,7 +31,7 @@ namespace Kivio {
Baseclass for mouse tools (like eg the select tool)*/
class KIVIO_EXPORT MouseTool : public Kivio::Plugin
{
- Q_OBJECT
+ TQ_OBJECT
public:
MouseTool(KivioView* parent = 0, const char* name = 0);
diff --git a/kivio/kiviopart/tools/kivio_plugin.h b/kivio/kiviopart/tools/kivio_plugin.h
index 430d08d6..0fa2327e 100644
--- a/kivio/kiviopart/tools/kivio_plugin.h
+++ b/kivio/kiviopart/tools/kivio_plugin.h
@@ -29,7 +29,7 @@ namespace Kivio {
*/
class KIVIO_EXPORT Plugin : public KParts::Plugin
{
- Q_OBJECT
+ TQ_OBJECT
public:
Plugin(KivioView* parent = 0, const char* name = 0);
diff --git a/kivio/kiviopart/tools/kivio_pluginmanager.h b/kivio/kiviopart/tools/kivio_pluginmanager.h
index 1a287beb..8a2791a6 100644
--- a/kivio/kiviopart/tools/kivio_pluginmanager.h
+++ b/kivio/kiviopart/tools/kivio_pluginmanager.h
@@ -29,7 +29,7 @@ namespace Kivio {
/**
This class manages the plugins*/
class KIVIO_EXPORT PluginManager : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
PluginManager(KivioView* parent, const char* name = 0);
diff --git a/kivio/kiviopart/tools/mousetoolaction.h b/kivio/kiviopart/tools/mousetoolaction.h
index 09102fae..41a59924 100644
--- a/kivio/kiviopart/tools/mousetoolaction.h
+++ b/kivio/kiviopart/tools/mousetoolaction.h
@@ -26,7 +26,7 @@ namespace Kivio {
class KIVIO_EXPORT MouseToolAction : public TDERadioAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
diff --git a/kivio/kiviopart/ui/addstencilsetdialog.h b/kivio/kiviopart/ui/addstencilsetdialog.h
index 169ef33a..f0e623d7 100644
--- a/kivio/kiviopart/ui/addstencilsetdialog.h
+++ b/kivio/kiviopart/ui/addstencilsetdialog.h
@@ -27,7 +27,7 @@ class AddStencilSetPanel;
class AddStencilSetDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
AddStencilSetDialog(TQWidget *parent = 0, const char *name = 0);
diff --git a/kivio/kiviopart/ui/export_page_dialog.h b/kivio/kiviopart/ui/export_page_dialog.h
index 16c805c5..6aed5ca7 100644
--- a/kivio/kiviopart/ui/export_page_dialog.h
+++ b/kivio/kiviopart/ui/export_page_dialog.h
@@ -7,7 +7,7 @@ class ExportPageDialogBase;
class ExportPageDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
ExportPageDialog(TQWidget* parent=0, const char* name=0);
diff --git a/kivio/kiviopart/ui/kivio_birdeye_panel.h b/kivio/kiviopart/ui/kivio_birdeye_panel.h
index d5a2ea41..ec77a7c9 100644
--- a/kivio/kiviopart/ui/kivio_birdeye_panel.h
+++ b/kivio/kiviopart/ui/kivio_birdeye_panel.h
@@ -31,7 +31,7 @@ class TDEAction;
class KoZoomHandler;
class KivioBirdEyePanel : public KivioBirdEyePanelBase
-{ Q_OBJECT
+{ TQ_OBJECT
public:
KivioBirdEyePanel(KivioView* view, TQWidget* parent=0, const char* name=0);
diff --git a/kivio/kiviopart/ui/kivio_layer_panel.h b/kivio/kiviopart/ui/kivio_layer_panel.h
index cfc24a94..4226d3ed 100644
--- a/kivio/kiviopart/ui/kivio_layer_panel.h
+++ b/kivio/kiviopart/ui/kivio_layer_panel.h
@@ -48,7 +48,7 @@ class KivioLayerItem: public TQListViewItem
/*********************************************************/
class KivioLayerPanel : public KivioLayerPanelBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioLayerPanel(KivioView* view, TQWidget* parent=0, const char* name=0);
diff --git a/kivio/kiviopart/ui/kivio_protection_panel.h b/kivio/kiviopart/ui/kivio_protection_panel.h
index d53f140d..6ee57008 100644
--- a/kivio/kiviopart/ui/kivio_protection_panel.h
+++ b/kivio/kiviopart/ui/kivio_protection_panel.h
@@ -27,7 +27,7 @@ class KivioLayer;
class KivioProtectionPanel : public KivioProtectionPanelBase
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/kivio/kiviopart/ui/kivioaddstencilsetpanel.h b/kivio/kiviopart/ui/kivioaddstencilsetpanel.h
index 81d6d913..7f2d8aa1 100644
--- a/kivio/kiviopart/ui/kivioaddstencilsetpanel.h
+++ b/kivio/kiviopart/ui/kivioaddstencilsetpanel.h
@@ -28,7 +28,7 @@ class TQListViewItem;
namespace Kivio {
class AddStencilSetPanel : public KivioStencilSetWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
AddStencilSetPanel(TQWidget *parent = 0, const char *name = 0);
diff --git a/kivio/kiviopart/ui/kivioaligndialog.h b/kivio/kiviopart/ui/kivioaligndialog.h
index 0be94822..13269c7b 100644
--- a/kivio/kiviopart/ui/kivioaligndialog.h
+++ b/kivio/kiviopart/ui/kivioaligndialog.h
@@ -28,7 +28,7 @@ struct DistributeData;
class KivioAlignDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioAlignDialog(TQWidget* parent = 0, const char* name = 0);
diff --git a/kivio/kiviopart/ui/kivioarrowheadformatdlg.h b/kivio/kiviopart/ui/kivioarrowheadformatdlg.h
index 84099d35..f0766079 100644
--- a/kivio/kiviopart/ui/kivioarrowheadformatdlg.h
+++ b/kivio/kiviopart/ui/kivioarrowheadformatdlg.h
@@ -30,7 +30,7 @@ class KivioView;
class KivioArrowHeadFormatDlg : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioArrowHeadFormatDlg(KivioView* parent, const char* name = 0);
diff --git a/kivio/kiviopart/ui/kiviooptionsdialog.h b/kivio/kiviopart/ui/kiviooptionsdialog.h
index 56ac0490..bdd2138a 100644
--- a/kivio/kiviopart/ui/kiviooptionsdialog.h
+++ b/kivio/kiviopart/ui/kiviooptionsdialog.h
@@ -56,7 +56,7 @@ class TQFont;
class KivioOptionsDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioOptionsDialog(KivioView* parent, const char* name = 0);
diff --git a/kivio/kiviopart/ui/kiviostencilformatdlg.h b/kivio/kiviopart/ui/kiviostencilformatdlg.h
index f5162e4a..d243cd3d 100644
--- a/kivio/kiviopart/ui/kiviostencilformatdlg.h
+++ b/kivio/kiviopart/ui/kiviostencilformatdlg.h
@@ -32,7 +32,7 @@ class TQColor;
class KivioStencilFormatDlg : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioStencilFormatDlg(KivioView* parent, const char* name = 0);
diff --git a/kivio/kiviopart/ui/kiviotextformatdlg.h b/kivio/kiviopart/ui/kiviotextformatdlg.h
index 39b76929..fb08b4c5 100644
--- a/kivio/kiviopart/ui/kiviotextformatdlg.h
+++ b/kivio/kiviopart/ui/kiviotextformatdlg.h
@@ -32,7 +32,7 @@ class TQColor;
class KivioTextFormatDlg : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KivioTextFormatDlg(KivioView* parent, const char* name = 0);
diff --git a/kivio/kiviopart/ui/objectlistpalette.h b/kivio/kiviopart/ui/objectlistpalette.h
index ed22bcc0..e2592ff7 100644
--- a/kivio/kiviopart/ui/objectlistpalette.h
+++ b/kivio/kiviopart/ui/objectlistpalette.h
@@ -31,7 +31,7 @@ namespace Kivio {
*/
class ObjectListPalette : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
ObjectListPalette(KivioView* parent = 0, const char* name = 0);