diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:37:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:37:04 +0900 |
commit | cb59219281a9666896ee96b02a487bbc0206082d (patch) | |
tree | 75f3ebf2b90d7d8d2dc4b3c7af59601acede5ebb /kivio | |
parent | a34711af5e9f617dbf46f5c0383ad8f3fa04cd6d (diff) | |
download | koffice-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')
49 files changed, 50 insertions, 50 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); diff --git a/kivio/plugins/kivioconnectortool/plugin.h b/kivio/plugins/kivioconnectortool/plugin.h index cc09afcf..15b98203 100644 --- a/kivio/plugins/kivioconnectortool/plugin.h +++ b/kivio/plugins/kivioconnectortool/plugin.h @@ -27,7 +27,7 @@ class TDEInstance; class ConnectorToolFactory : public KLibFactory -{ Q_OBJECT +{ TQ_OBJECT public: ConnectorToolFactory( TQObject* parent = 0, const char* name = 0 ); diff --git a/kivio/plugins/kivioconnectortool/straight_connector/straight_connector.h b/kivio/plugins/kivioconnectortool/straight_connector/straight_connector.h index f2ac1fe5..d1929ac3 100644 --- a/kivio/plugins/kivioconnectortool/straight_connector/straight_connector.h +++ b/kivio/plugins/kivioconnectortool/straight_connector/straight_connector.h @@ -82,7 +82,7 @@ class KivioStraightConnector : public Kivio1DStencil class KIVIOPLUGINS_EXPORT KivioConnectorFactory : public KivioStencilFactory { - Q_OBJECT + TQ_OBJECT public: KivioConnectorFactory(TQObject *parent=0, const char* name=0, const TQStringList& args = TQStringList()); diff --git a/kivio/plugins/kivioconnectortool/tool_connector.h b/kivio/plugins/kivioconnectortool/tool_connector.h index 02dcb145..7c39511b 100644 --- a/kivio/plugins/kivioconnectortool/tool_connector.h +++ b/kivio/plugins/kivioconnectortool/tool_connector.h @@ -37,7 +37,7 @@ class KivioCustomDragData; class ConnectorTool : public Kivio::MouseTool { - Q_OBJECT + TQ_OBJECT public: ConnectorTool( KivioView* parent ); diff --git a/kivio/plugins/kivioselecttool/plugin.h b/kivio/plugins/kivioselecttool/plugin.h index c4e612c1..202f3b78 100644 --- a/kivio/plugins/kivioselecttool/plugin.h +++ b/kivio/plugins/kivioselecttool/plugin.h @@ -27,7 +27,7 @@ class TDEInstance; class SelectToolFactory : public KLibFactory -{ Q_OBJECT +{ TQ_OBJECT public: SelectToolFactory( TQObject* parent = 0, const char* name = 0 ); diff --git a/kivio/plugins/kivioselecttool/tool_select.h b/kivio/plugins/kivioselecttool/tool_select.h index 07d4a25b..72c85957 100644 --- a/kivio/plugins/kivioselecttool/tool_select.h +++ b/kivio/plugins/kivioselecttool/tool_select.h @@ -53,7 +53,7 @@ enum { class SelectTool : public Kivio::MouseTool { - Q_OBJECT + TQ_OBJECT public: SelectTool( KivioView* parent ); diff --git a/kivio/plugins/kiviosmlconnector/plugin.h b/kivio/plugins/kiviosmlconnector/plugin.h index 5ac52f5e..515fa424 100644 --- a/kivio/plugins/kiviosmlconnector/plugin.h +++ b/kivio/plugins/kiviosmlconnector/plugin.h @@ -27,7 +27,7 @@ class TDEInstance; class SMLConnectorFactory : public KLibFactory -{ Q_OBJECT +{ TQ_OBJECT public: SMLConnectorFactory( TQObject* parent = 0, const char* name = 0 ); diff --git a/kivio/plugins/kiviosmlconnector/sml_connector/sml_connector.h b/kivio/plugins/kiviosmlconnector/sml_connector/sml_connector.h index 3e6c3daf..277a6e91 100644 --- a/kivio/plugins/kiviosmlconnector/sml_connector/sml_connector.h +++ b/kivio/plugins/kiviosmlconnector/sml_connector/sml_connector.h @@ -92,7 +92,7 @@ public: class KivioSMLConnectorFactory : public KivioStencilFactory { - Q_OBJECT + TQ_OBJECT public: KivioSMLConnectorFactory(TQObject *parent=0, const char* name=0, const TQStringList& args = TQStringList()); diff --git a/kivio/plugins/kiviosmlconnector/tool_connector.h b/kivio/plugins/kiviosmlconnector/tool_connector.h index 87ef56c4..f446832e 100644 --- a/kivio/plugins/kiviosmlconnector/tool_connector.h +++ b/kivio/plugins/kiviosmlconnector/tool_connector.h @@ -33,7 +33,7 @@ class KivioSMLConnector; class KivioCustomDragData; class SMLConnector : public Kivio::MouseTool -{ Q_OBJECT +{ TQ_OBJECT public: SMLConnector( KivioView* view ); diff --git a/kivio/plugins/kiviotargettool/kiviotargettool.h b/kivio/plugins/kiviotargettool/kiviotargettool.h index e9014d85..9107ed12 100644 --- a/kivio/plugins/kiviotargettool/kiviotargettool.h +++ b/kivio/plugins/kiviotargettool/kiviotargettool.h @@ -35,7 +35,7 @@ class KivioView; namespace Kivio { class TargetTool : public MouseTool { - Q_OBJECT + TQ_OBJECT public: TargetTool(KivioView* parent); diff --git a/kivio/plugins/kiviotargettool/kiviotargettoolfactory.h b/kivio/plugins/kiviotargettool/kiviotargettoolfactory.h index e6ead8aa..cd63ff51 100644 --- a/kivio/plugins/kiviotargettool/kiviotargettoolfactory.h +++ b/kivio/plugins/kiviotargettool/kiviotargettoolfactory.h @@ -28,7 +28,7 @@ class TDEInstance; class KivioTargetToolFactory : public KLibFactory { - Q_OBJECT + TQ_OBJECT public: KivioTargetToolFactory(TQObject *parent = 0, const char *name = 0); diff --git a/kivio/plugins/kiviotexttool/plugin.h b/kivio/plugins/kiviotexttool/plugin.h index 681f40d7..5d54947e 100644 --- a/kivio/plugins/kiviotexttool/plugin.h +++ b/kivio/plugins/kiviotexttool/plugin.h @@ -27,7 +27,7 @@ class TDEInstance; class TextToolFactory : public KLibFactory -{ Q_OBJECT +{ TQ_OBJECT public: TextToolFactory( TQObject* parent = 0, const char* name = 0 ); diff --git a/kivio/plugins/kiviotexttool/stenciltexteditor.h b/kivio/plugins/kiviotexttool/stenciltexteditor.h index cfe427b7..83366054 100644 --- a/kivio/plugins/kiviotexttool/stenciltexteditor.h +++ b/kivio/plugins/kiviotexttool/stenciltexteditor.h @@ -33,7 +33,7 @@ class StencilTextEditorUI; */ class StencilTextEditor : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: StencilTextEditor(const TQString& caption, TQWidget *parent = 0, const char *name = 0); diff --git a/kivio/plugins/kiviotexttool/tool_text.h b/kivio/plugins/kiviotexttool/tool_text.h index aa6e1d4d..9fc1d847 100644 --- a/kivio/plugins/kiviotexttool/tool_text.h +++ b/kivio/plugins/kiviotexttool/tool_text.h @@ -35,7 +35,7 @@ class KoPoint; class KIVIO_EXPORT TextTool : public Kivio::MouseTool { - Q_OBJECT + TQ_OBJECT public: TextTool( KivioView* parent ); diff --git a/kivio/plugins/kiviozoomtool/plugin.h b/kivio/plugins/kiviozoomtool/plugin.h index 8db8e531..01fe1a2c 100644 --- a/kivio/plugins/kiviozoomtool/plugin.h +++ b/kivio/plugins/kiviozoomtool/plugin.h @@ -27,7 +27,7 @@ class TDEInstance; class ZoomToolFactory : public KLibFactory -{ Q_OBJECT +{ TQ_OBJECT public: ZoomToolFactory( TQObject* parent = 0, const char* name = 0 ); diff --git a/kivio/plugins/kiviozoomtool/tool_zoom.h b/kivio/plugins/kiviozoomtool/tool_zoom.h index 7e2ce69d..dc0397a0 100644 --- a/kivio/plugins/kiviozoomtool/tool_zoom.h +++ b/kivio/plugins/kiviozoomtool/tool_zoom.h @@ -33,7 +33,7 @@ class TQCursor; class ZoomTool : public Kivio::MouseTool { - Q_OBJECT + TQ_OBJECT public: ZoomTool(KivioView* parent); |