diff options
Diffstat (limited to 'lib')
66 files changed, 74 insertions, 74 deletions
diff --git a/lib/cppparser/driver.cpp b/lib/cppparser/driver.cpp index c08f0c1c..3dc8569c 100644 --- a/lib/cppparser/driver.cpp +++ b/lib/cppparser/driver.cpp @@ -597,7 +597,7 @@ void Driver::setupLexer( Lexer * lexer ) {    lexer->addSkipWord( "KDE_DEPRECATED" );    // qt -  lexer->addSkipWord( "Q_OBJECT" ); +  lexer->addSkipWord( "TQ_OBJECT" );    lexer->addSkipWord( "" );    lexer->addSkipWord( "TQ_OVERRIDE", SkipWordAndArguments );    lexer->addSkipWord( "TQ_ENUMS", SkipWordAndArguments ); diff --git a/lib/cppparser/keywords.h b/lib/cppparser/keywords.h index 5c48324d..385342fe 100644 --- a/lib/cppparser/keywords.h +++ b/lib/cppparser/keywords.h @@ -9,7 +9,7 @@ INSERT( "k_dcop", Token_k_dcop );  INSERT( "k_dcop_signals", Token_k_dcop_signals );  // TQt Keywords -INSERT( "Q_OBJECT", Token_Q_OBJECT ); +INSERT( "TQ_OBJECT", Token_TQ_OBJECT );  INSERT( "", Token_ );  INSERT( "signals", Token_signals );  INSERT( "slots", Token_slots ); diff --git a/lib/cppparser/lexer.h b/lib/cppparser/lexer.h index 576c0cfa..b496afda 100644 --- a/lib/cppparser/lexer.h +++ b/lib/cppparser/lexer.h @@ -60,7 +60,7 @@ enum Type {      Token_k_dcop,      Token_k_dcop_signals, -    Token_Q_OBJECT, +    Token_TQ_OBJECT,      Token_,      Token_signals,      Token_slots, diff --git a/lib/cppparser/parser.cpp b/lib/cppparser/parser.cpp index 9c1b58b4..c4eccfd3 100644 --- a/lib/cppparser/parser.cpp +++ b/lib/cppparser/parser.cpp @@ -2005,7 +2005,7 @@ bool Parser::parseMemberSpecification( DeclarationAST::Node& node )      if( lex->lookAhead(0) == ';' ){  	nextToken();  	return true; -    } else if( lex->lookAhead(0) == Token_Q_OBJECT || lex->lookAhead(0) == Token_ || lex->lookAhead(0) == Token_K_DCOP ){ +    } else if( lex->lookAhead(0) == Token_TQ_OBJECT || lex->lookAhead(0) == Token_ || lex->lookAhead(0) == Token_K_DCOP ){  	nextToken();  	return true;      } else if( lex->lookAhead(0) == Token_signals || lex->lookAhead(0) == Token_k_dcop || lex->lookAhead(0) == Token_k_dcop_signals ){ diff --git a/lib/interfaces/KDevCoreIface.h b/lib/interfaces/KDevCoreIface.h index 612c8457..7a985931 100644 --- a/lib/interfaces/KDevCoreIface.h +++ b/lib/interfaces/KDevCoreIface.h @@ -29,7 +29,7 @@ class KDevCore;  class KDevCoreIface : public TQObject, public DCOPObject  { -    Q_OBJECT +    TQ_OBJECT  //          K_DCOP diff --git a/lib/interfaces/KDevPartControllerIface.h b/lib/interfaces/KDevPartControllerIface.h index 8c3647ea..b37bf1df 100644 --- a/lib/interfaces/KDevPartControllerIface.h +++ b/lib/interfaces/KDevPartControllerIface.h @@ -27,7 +27,7 @@ class KDevPartController;  class KDevPartControllerIface : public TQObject, public DCOPObject  { -  Q_OBJECT +  TQ_OBJECT  //      K_DCOP diff --git a/lib/interfaces/extensions/codebrowserfrontend.h b/lib/interfaces/extensions/codebrowserfrontend.h index 49dd95a8..eddad758 100644 --- a/lib/interfaces/extensions/codebrowserfrontend.h +++ b/lib/interfaces/extensions/codebrowserfrontend.h @@ -26,7 +26,7 @@  namespace Extensions {  class KDevCodeBrowserFrontend  : public KDevPlugin { -    Q_OBJECT +    TQ_OBJECT      public: diff --git a/lib/interfaces/extensions/kdevappfrontend.h b/lib/interfaces/extensions/kdevappfrontend.h index 76952f35..f175ee92 100644 --- a/lib/interfaces/extensions/kdevappfrontend.h +++ b/lib/interfaces/extensions/kdevappfrontend.h @@ -56,7 +56,7 @@ if (apf) {  */  class KDevAppFrontend : public KDevPlugin  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/interfaces/extensions/kdevmakefrontend.h b/lib/interfaces/extensions/kdevmakefrontend.h index 52afa3d3..ea869e30 100644 --- a/lib/interfaces/extensions/kdevmakefrontend.h +++ b/lib/interfaces/extensions/kdevmakefrontend.h @@ -52,7 +52,7 @@ if (mf) {  */  class KDevMakeFrontend : public KDevPlugin  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/interfaces/extensions/kdevversioncontrol.h b/lib/interfaces/extensions/kdevversioncontrol.h index a19c6275..ede2cf91 100644 --- a/lib/interfaces/extensions/kdevversioncontrol.h +++ b/lib/interfaces/extensions/kdevversioncontrol.h @@ -134,7 +134,7 @@ if (vcs) {  */  class KDevVersionControl: public KDevPlugin  { -    Q_OBJECT +    TQ_OBJECT  public: @@ -184,7 +184,7 @@ Basic interface for providing info on file registered in a version control repos  */  class KDevVCSFileInfoProvider: public TQObject  { -    Q_OBJECT +    TQ_OBJECT  public:      /**Constructor. diff --git a/lib/interfaces/external/designer.h b/lib/interfaces/external/designer.h index b84e2268..73420496 100644 --- a/lib/interfaces/external/designer.h +++ b/lib/interfaces/external/designer.h @@ -64,7 +64,7 @@ implements this interface and sets itself as a default handler for that  mimetype then it becomes automatically integrated into TDevelop IDE.  */  class Designer: public KParts::ReadWritePart{ -    Q_OBJECT +    TQ_OBJECT  public:      Designer(TQObject *parent, const char *name); diff --git a/lib/interfaces/extras/kdevcompileroptions.h b/lib/interfaces/extras/kdevcompileroptions.h index 6544c5d0..c6719e27 100644 --- a/lib/interfaces/extras/kdevcompileroptions.h +++ b/lib/interfaces/extras/kdevcompileroptions.h @@ -71,7 +71,7 @@ if ( plugin )  */  class KDevCompilerOptions : public TQObject  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/interfaces/extras/kdevvcsintegrator.h b/lib/interfaces/extras/kdevvcsintegrator.h index 793070b3..41faf993 100644 --- a/lib/interfaces/extras/kdevvcsintegrator.h +++ b/lib/interfaces/extras/kdevvcsintegrator.h @@ -63,7 +63,7 @@ VCS integrator takes care about setting up VCS for new and existing projects.  It can, for example, perform checkout or import operations.  */  class KDevVCSIntegrator: public TQObject { -    Q_OBJECT +    TQ_OBJECT  public:      KDevVCSIntegrator(TQObject *parent = 0, const char *name = 0); diff --git a/lib/interfaces/katedocumentmanagerinterface.h b/lib/interfaces/katedocumentmanagerinterface.h index 8bdbdf8f..edc6d0af 100644 --- a/lib/interfaces/katedocumentmanagerinterface.h +++ b/lib/interfaces/katedocumentmanagerinterface.h @@ -32,7 +32,7 @@ This is an emulated interface to provide compatibility with Kate scripts.  */  class KateDocumentManagerInterface : public TQObject, public DCOPObject { -    Q_OBJECT +    TQ_OBJECT  //          K_DCOP  public: diff --git a/lib/interfaces/kdevapi.h b/lib/interfaces/kdevapi.h index d1f4f5cc..ef756b69 100644 --- a/lib/interfaces/kdevapi.h +++ b/lib/interfaces/kdevapi.h @@ -46,7 +46,7 @@ class because @ref KDevPlugin already provides API convenience methods.  */  class KDevApi: public TQObject  { -    Q_OBJECT +    TQ_OBJECT  public:      /**Constructor.*/ diff --git a/lib/interfaces/kdevcoderepository.h b/lib/interfaces/kdevcoderepository.h index 4e1dd765..fca20f32 100644 --- a/lib/interfaces/kdevcoderepository.h +++ b/lib/interfaces/kdevcoderepository.h @@ -47,7 +47,7 @@ symbol store like @ref CodeModel.  */  class KDevCodeRepository : public TQObject  { -    Q_OBJECT +    TQ_OBJECT  public:      /**Constructor.*/ diff --git a/lib/interfaces/kdevcore.h b/lib/interfaces/kdevcore.h index fad2891a..282906db 100644 --- a/lib/interfaces/kdevcore.h +++ b/lib/interfaces/kdevcore.h @@ -299,7 +299,7 @@ It defines:  */  class KDevCore: public TQObject  { -    Q_OBJECT +    TQ_OBJECT  public:      /**Constructor diff --git a/lib/interfaces/kdevdesignerintegration.h b/lib/interfaces/kdevdesignerintegration.h index 528926cb..d8658b48 100644 --- a/lib/interfaces/kdevdesignerintegration.h +++ b/lib/interfaces/kdevdesignerintegration.h @@ -50,7 +50,7 @@ and reimplement slots defined in the form.  */  class KDevDesignerIntegration : public TQObject  { -Q_OBJECT +TQ_OBJECT  public:      /**Constructor. diff --git a/lib/interfaces/kdevlanguagesupport.h b/lib/interfaces/kdevlanguagesupport.h index 42221868..f65dcefe 100644 --- a/lib/interfaces/kdevlanguagesupport.h +++ b/lib/interfaces/kdevlanguagesupport.h @@ -60,7 +60,7 @@ formatted name).  */  class KDevLanguageSupport: public KDevPlugin  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/interfaces/kdevpartcontroller.h b/lib/interfaces/kdevpartcontroller.h index fd8e6830..0229c7e7 100644 --- a/lib/interfaces/kdevpartcontroller.h +++ b/lib/interfaces/kdevpartcontroller.h @@ -55,7 +55,7 @@ GUI designers, etc.  */  class KDevPartController: public KParts::PartManager  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/interfaces/kdevplugin.h b/lib/interfaces/kdevplugin.h index 5bdcaaf6..e2058fa8 100644 --- a/lib/interfaces/kdevplugin.h +++ b/lib/interfaces/kdevplugin.h @@ -106,7 +106,7 @@ from shell applications.  */  class KDevPlugin: public TQObject, public KXMLGUIClient  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/interfaces/kdevplugincontroller.h b/lib/interfaces/kdevplugincontroller.h index d72563d5..c21cf58a 100644 --- a/lib/interfaces/kdevplugincontroller.h +++ b/lib/interfaces/kdevplugincontroller.h @@ -38,7 +38,7 @@ Plugin controller is responsible for quering, loading and unloading available pl  */  class KDevPluginController: public TQObject  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/interfaces/kdevproject.h b/lib/interfaces/kdevproject.h index 256b0c0c..3fc6cf87 100644 --- a/lib/interfaces/kdevproject.h +++ b/lib/interfaces/kdevproject.h @@ -47,7 +47,7 @@ as a way of providing support for a build system (like it is done in TDevelop ID  */  class KDevProject: public KDevPlugin  { -    Q_OBJECT +    TQ_OBJECT  public:      /**Constructs a project plugin. diff --git a/lib/interfaces/kdevprojectiface.h b/lib/interfaces/kdevprojectiface.h index e30cd6cc..4908f9f2 100644 --- a/lib/interfaces/kdevprojectiface.h +++ b/lib/interfaces/kdevprojectiface.h @@ -33,7 +33,7 @@ DCOP Interface for the @ref KDevProject object.  */  class KDevProjectIface : public TQObject, public DCOPObject  { -  Q_OBJECT +  TQ_OBJECT  //          K_DCOP  public: diff --git a/lib/util/blockingkprocess.h b/lib/util/blockingkprocess.h index 8d164bef..b5a7e71e 100644 --- a/lib/util/blockingkprocess.h +++ b/lib/util/blockingkprocess.h @@ -30,7 +30,7 @@  class TQTimer;  class BlockingTDEProcess : public TDEProcess  { -  Q_OBJECT +  TQ_OBJECT  public: diff --git a/lib/util/configwidgetproxy.h b/lib/util/configwidgetproxy.h index ffbbca15..34cadce9 100644 --- a/lib/util/configwidgetproxy.h +++ b/lib/util/configwidgetproxy.h @@ -70,7 +70,7 @@ KDevCore::projectConfigWidget() slots.  */  class ConfigWidgetProxy : public TQObject  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/lib/util/execcommand.h b/lib/util/execcommand.h index 7ea1ef5c..cc546e11 100644 --- a/lib/util/execcommand.h +++ b/lib/util/execcommand.h @@ -44,7 +44,7 @@ Command execution facilities.   */  class ExecCommand : public TQObject  { -    Q_OBJECT +    TQ_OBJECT  public:      ExecCommand( const TQString& executable, const TQStringList& args, diff --git a/lib/util/kdevjobtimer.h b/lib/util/kdevjobtimer.h index b0fa829e..ed50e08d 100644 --- a/lib/util/kdevjobtimer.h +++ b/lib/util/kdevjobtimer.h @@ -16,7 +16,7 @@  class KDevJobTimer : public TQTimer  { -Q_OBJECT +TQ_OBJECT  public:  	static void singleShot( int msec, TQObject * receiver, const char * member, void * payload ); diff --git a/lib/util/kdevshellwidget.h b/lib/util/kdevshellwidget.h index 9ba21e2e..88a6c563 100644 --- a/lib/util/kdevshellwidget.h +++ b/lib/util/kdevshellwidget.h @@ -26,7 +26,7 @@ namespace KParts  class KDevShellWidget : public TQVBox  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/lib/util/tdescriptactionmanager.h b/lib/util/tdescriptactionmanager.h index 20133310..9a610845 100644 --- a/lib/util/tdescriptactionmanager.h +++ b/lib/util/tdescriptactionmanager.h @@ -36,7 +36,7 @@ class TQTimer;  * @author ian geiser geiseri@sourcextreme.com  */  class KScriptAction : public TQObject, public KScriptClientInterface { -    Q_OBJECT +    TQ_OBJECT  public: @@ -92,7 +92,7 @@ private:   * @author ian geiser <geiseri@sourcextreme.com>   */  class KScriptActionManager : public TQObject { -Q_OBJECT +TQ_OBJECT  public: diff --git a/lib/widgets/flagboxes.h b/lib/widgets/flagboxes.h index 79c77fa7..89de805a 100644 --- a/lib/widgets/flagboxes.h +++ b/lib/widgets/flagboxes.h @@ -67,7 +67,7 @@ private:  /**List box item holding a compiler flag.*/  class FlagListBox : public TQListView  { -    Q_OBJECT +    TQ_OBJECT  public:      FlagListBox( TQWidget *parent=0, const char *name=0 ); @@ -82,7 +82,7 @@ public:  /**Check box item holding a compiler flag.*/  class FlagCheckBox : public TQCheckBox  { -    Q_OBJECT +    TQ_OBJECT  public:      FlagCheckBox(TQWidget *parent, FlagCheckBoxController *controller, @@ -109,7 +109,7 @@ private:  /**Radiobutton item holding an option of a compiler flag.*/  class FlagRadioButton : public TQRadioButton  { -    Q_OBJECT +    TQ_OBJECT  public:      FlagRadioButton(TQWidget *parent, FlagRadioButtonController *controller, @@ -125,7 +125,7 @@ private:  /**Path editor if path is a compiler flag.*/  class FlagPathEdit: public TQWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      /**If the pathDelimiter is not empty then path edit can contain a list of paths*/ @@ -155,7 +155,7 @@ private:  /**List editor if list is a compiler flag.*/  class FlagListEdit: public TQWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      /**If the listDelimiter is not empty then list edit can contain a list of entries*/ diff --git a/lib/widgets/kcomboview.h b/lib/widgets/kcomboview.h index f808c29c..2e52a216 100644 --- a/lib/widgets/kcomboview.h +++ b/lib/widgets/kcomboview.h @@ -54,7 +54,7 @@ class CustomCompleter : public TDECompletion {  class KComboView: public QComboView  { -    Q_OBJECT +    TQ_OBJECT  public:      ///The combo-view takes the ownership of the completer and deletes it on destruction diff --git a/lib/widgets/kdevhtmlpart.h b/lib/widgets/kdevhtmlpart.h index 6c8f7dc3..080c66ca 100644 --- a/lib/widgets/kdevhtmlpart.h +++ b/lib/widgets/kdevhtmlpart.h @@ -43,7 +43,7 @@ It has it's own popup menu and font/zoom settings.  */  class KDevHTMLPart : public TDEHTMLPart  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/widgets/ksavealldialog.h b/lib/widgets/ksavealldialog.h index fcd63fc0..59a16f87 100644 --- a/lib/widgets/ksavealldialog.h +++ b/lib/widgets/ksavealldialog.h @@ -35,7 +35,7 @@ Dialog to save selected files.  */  class KSaveSelectDialog : public KDialogBase  { -	Q_OBJECT +	TQ_OBJECT  public: @@ -61,7 +61,7 @@ Dialog to save all files.  */  class KSaveAllDialog : public KDialogBase  { -  Q_OBJECT +  TQ_OBJECT  public: diff --git a/lib/widgets/processlinemaker.h b/lib/widgets/processlinemaker.h index 7126b322..c438e84e 100644 --- a/lib/widgets/processlinemaker.h +++ b/lib/widgets/processlinemaker.h @@ -34,7 +34,7 @@ Convenience class to catch output of TDEProcess.  */  class ProcessLineMaker : public TQObject  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/lib/widgets/processwidget.h b/lib/widgets/processwidget.h index a8279477..a80f3deb 100644 --- a/lib/widgets/processwidget.h +++ b/lib/widgets/processwidget.h @@ -57,7 +57,7 @@ private:   */  class ProcessWidget : public TDEListBox  { -    Q_OBJECT +    TQ_OBJECT  public: diff --git a/lib/widgets/propeditor/pcheckbox.h b/lib/widgets/propeditor/pcheckbox.h index ed2aea39..0131cf82 100644 --- a/lib/widgets/propeditor/pcheckbox.h +++ b/lib/widgets/propeditor/pcheckbox.h @@ -30,7 +30,7 @@ namespace PropertyLib{  @short %Property editor with checkbox.  */  class PCheckBox: public PropertyWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      PCheckBox(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/pcolorbutton.h b/lib/widgets/propeditor/pcolorbutton.h index ab17b449..61f96fc4 100644 --- a/lib/widgets/propeditor/pcolorbutton.h +++ b/lib/widgets/propeditor/pcolorbutton.h @@ -35,7 +35,7 @@ namespace PropertyLib{  */  class PColorButton: public PropertyWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      PColorButton(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/pcolorcombo.h b/lib/widgets/propeditor/pcolorcombo.h index 052c287d..31588b7d 100644 --- a/lib/widgets/propeditor/pcolorcombo.h +++ b/lib/widgets/propeditor/pcolorcombo.h @@ -30,7 +30,7 @@ namespace PropertyLib{  @short %Property editor with color combobox.  */  class PColorCombo: public PropertyWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      PColorCombo(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/pcombobox.h b/lib/widgets/propeditor/pcombobox.h index c9da1ad9..fc246ea5 100644 --- a/lib/widgets/propeditor/pcombobox.h +++ b/lib/widgets/propeditor/pcombobox.h @@ -34,7 +34,7 @@ namespace PropertyLib{  @short %Property editor with combobox.  */  class PComboBox: public PropertyWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      /**This constructor is used for read-only selection combo. It provides a value from valueList*/ diff --git a/lib/widgets/propeditor/pcursoredit.h b/lib/widgets/propeditor/pcursoredit.h index 5ff9fbf3..9ff8320f 100644 --- a/lib/widgets/propeditor/pcursoredit.h +++ b/lib/widgets/propeditor/pcursoredit.h @@ -29,7 +29,7 @@ namespace PropertyLib{  */  class PCursorEdit: public PComboBox  { -    Q_OBJECT +    TQ_OBJECT  public:      PCursorEdit(MultiProperty* property, const TQStringVariantMap &spValues, diff --git a/lib/widgets/propeditor/pdateedit.h b/lib/widgets/propeditor/pdateedit.h index 126a4023..edfe69ff 100644 --- a/lib/widgets/propeditor/pdateedit.h +++ b/lib/widgets/propeditor/pdateedit.h @@ -31,7 +31,7 @@ namespace PropertyLib{  */  class PDateEdit : public PropertyWidget  { -Q_OBJECT +TQ_OBJECT  public:      PDateEdit(MultiProperty* property, TQWidget* parent=0, const char* name=0); diff --git a/lib/widgets/propeditor/pdatetimeedit.h b/lib/widgets/propeditor/pdatetimeedit.h index 4b54714b..86affb59 100644 --- a/lib/widgets/propeditor/pdatetimeedit.h +++ b/lib/widgets/propeditor/pdatetimeedit.h @@ -31,7 +31,7 @@ namespace PropertyLib{  */  class PDateTimeEdit : public PropertyWidget  { -Q_OBJECT +TQ_OBJECT  public:      PDateTimeEdit(MultiProperty* property, TQWidget* parent=0, const char* name=0); diff --git a/lib/widgets/propeditor/pdoublenuminput.h b/lib/widgets/propeditor/pdoublenuminput.h index a398c498..65665ddc 100644 --- a/lib/widgets/propeditor/pdoublenuminput.h +++ b/lib/widgets/propeditor/pdoublenuminput.h @@ -35,7 +35,7 @@ namespace PropertyLib{  */  class PDoubleNumInput: public PropertyWidget  { -Q_OBJECT +TQ_OBJECT  public:      PDoubleNumInput(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/pdummywidget.h b/lib/widgets/propeditor/pdummywidget.h index dad94591..514af868 100644 --- a/lib/widgets/propeditor/pdummywidget.h +++ b/lib/widgets/propeditor/pdummywidget.h @@ -39,7 +39,7 @@ like TQValueList's or TQMap's stored in a variant.  */  class PDummyWidget: public PropertyWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      PDummyWidget(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/pfontbutton.h b/lib/widgets/propeditor/pfontbutton.h index 3f7d54c6..818b5779 100644 --- a/lib/widgets/propeditor/pfontbutton.h +++ b/lib/widgets/propeditor/pfontbutton.h @@ -31,7 +31,7 @@ namespace PropertyLib{  */  class PFontButton : public PropertyWidget  { -Q_OBJECT +TQ_OBJECT  public:      PFontButton(MultiProperty* property, TQWidget* parent = 0, const char* name = 0); diff --git a/lib/widgets/propeditor/pfontcombo.h b/lib/widgets/propeditor/pfontcombo.h index e1a90b69..f208e18a 100644 --- a/lib/widgets/propeditor/pfontcombo.h +++ b/lib/widgets/propeditor/pfontcombo.h @@ -34,7 +34,7 @@ namespace PropertyLib{  @short %Property editor with font combo box.  */  class PFontCombo: public PropertyWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      PFontCombo(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/plineedit.h b/lib/widgets/propeditor/plineedit.h index 4730a5c7..a5d57b98 100644 --- a/lib/widgets/propeditor/plineedit.h +++ b/lib/widgets/propeditor/plineedit.h @@ -30,7 +30,7 @@ namespace PropertyLib{  @short %Property editor with line edit.  */  class PLineEdit: public PropertyWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      PLineEdit(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/plinestyleedit.h b/lib/widgets/propeditor/plinestyleedit.h index 2df5f3be..2c91e04a 100644 --- a/lib/widgets/propeditor/plinestyleedit.h +++ b/lib/widgets/propeditor/plinestyleedit.h @@ -30,7 +30,7 @@ namespace PropertyLib {  @short Line style editor  */  class PLineStyleEdit : public PropertyWidget { -    Q_OBJECT +    TQ_OBJECT  public:      PLineStyleEdit(MultiProperty* property, TQWidget* parent = 0, const char* name = 0); diff --git a/lib/widgets/propeditor/ppixmapedit.h b/lib/widgets/propeditor/ppixmapedit.h index 1d95b6b5..5fdfebed 100644 --- a/lib/widgets/propeditor/ppixmapedit.h +++ b/lib/widgets/propeditor/ppixmapedit.h @@ -32,7 +32,7 @@ namespace PropertyLib{  */  class PPixmapEdit : public PropertyWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      PPixmapEdit(MultiProperty* property, TQWidget* parent = 0, const char* name = 0); diff --git a/lib/widgets/propeditor/ppointedit.h b/lib/widgets/propeditor/ppointedit.h index b6f9f9ad..8ed1e7ae 100644 --- a/lib/widgets/propeditor/ppointedit.h +++ b/lib/widgets/propeditor/ppointedit.h @@ -31,7 +31,7 @@ namespace PropertyLib{  */  class PPointEdit : public PropertyWidget  { -Q_OBJECT +TQ_OBJECT  public:      PPointEdit(MultiProperty* property, TQWidget* parent=0, const char* name=0); diff --git a/lib/widgets/propeditor/prectedit.h b/lib/widgets/propeditor/prectedit.h index 82abcda1..cd360ad0 100644 --- a/lib/widgets/propeditor/prectedit.h +++ b/lib/widgets/propeditor/prectedit.h @@ -31,7 +31,7 @@ namespace PropertyLib{  */  class PRectEdit : public PropertyWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      PRectEdit(MultiProperty* property, TQWidget* parent=0, const char* name=0); diff --git a/lib/widgets/propeditor/propertyeditor.h b/lib/widgets/propeditor/propertyeditor.h index 852d795a..ad5d722c 100644 --- a/lib/widgets/propeditor/propertyeditor.h +++ b/lib/widgets/propeditor/propertyeditor.h @@ -56,7 +56,7 @@ creation of property widgets from the machine factory.  @see PropertyMachineFactory  */  class PropertyEditor: public TDEListView{ -   Q_OBJECT +   TQ_OBJECT  public:      /**Constructs the property editor.*/ diff --git a/lib/widgets/propeditor/propertylist.h b/lib/widgets/propeditor/propertylist.h index 9cee76f8..1561b04d 100644 --- a/lib/widgets/propeditor/propertylist.h +++ b/lib/widgets/propeditor/propertylist.h @@ -54,7 +54,7 @@ alphabetically sorted list of properties or both at the same time.  */  class PropertyList: public TQObject  { -    Q_OBJECT +    TQ_OBJECT  public: @@ -181,7 +181,7 @@ buf->intersect(list3);  /endcode  */  class PropertyBuffer: public PropertyList{ -    Q_OBJECT +    TQ_OBJECT  public:      /**Constructs a buffer from given property list.*/ diff --git a/lib/widgets/propeditor/propertywidget.h b/lib/widgets/propeditor/propertywidget.h index 5071190b..857805da 100644 --- a/lib/widgets/propeditor/propertywidget.h +++ b/lib/widgets/propeditor/propertywidget.h @@ -47,7 +47,7 @@ A set of predefined widgets for predefined property types are available  in the library.  */  class PropertyWidget: public TQWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      /**Constructs widget for property with name "propertyName".*/ diff --git a/lib/widgets/propeditor/propertywidgetproxy.h b/lib/widgets/propeditor/propertywidgetproxy.h index 37bbadb8..fdbcfffb 100644 --- a/lib/widgets/propeditor/propertywidgetproxy.h +++ b/lib/widgets/propeditor/propertywidgetproxy.h @@ -41,7 +41,7 @@ depending on the property type.  */  class PropertyWidgetProxy: public TQWidget  { -Q_OBJECT +TQ_OBJECT  TQ_PROPERTY( int propertyType READ propertyType WRITE setPropertyType DESIGNABLE true )  TQ_PROPERTY( PropertyType propertyType2 READ propertyType2 WRITE setPropertyType2 DESIGNABLE false ) diff --git a/lib/widgets/propeditor/psizeedit.h b/lib/widgets/propeditor/psizeedit.h index 34acbb41..c4dba926 100644 --- a/lib/widgets/propeditor/psizeedit.h +++ b/lib/widgets/propeditor/psizeedit.h @@ -33,7 +33,7 @@ namespace PropertyLib{  */  class PSizeEdit: public PropertyWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      PSizeEdit(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/psizepolicyedit.h b/lib/widgets/propeditor/psizepolicyedit.h index 45ad5414..eb30bd64 100644 --- a/lib/widgets/propeditor/psizepolicyedit.h +++ b/lib/widgets/propeditor/psizepolicyedit.h @@ -33,7 +33,7 @@ namespace PropertyLib{  */  class PSizePolicyEdit : public PropertyWidget  { -Q_OBJECT +TQ_OBJECT  public:      PSizePolicyEdit(MultiProperty* property, const TQStringVariantMap &spValues, TQWidget* parent=0, const char* name=0); diff --git a/lib/widgets/propeditor/pspinbox.h b/lib/widgets/propeditor/pspinbox.h index ecb73907..11e184ff 100644 --- a/lib/widgets/propeditor/pspinbox.h +++ b/lib/widgets/propeditor/pspinbox.h @@ -30,7 +30,7 @@ namespace PropertyLib{  @short %Property editor with integer num input box.  */  class PSpinBox: public PropertyWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      PSpinBox(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/pstringlistedit.h b/lib/widgets/propeditor/pstringlistedit.h index 85b2ecc7..9986010d 100644 --- a/lib/widgets/propeditor/pstringlistedit.h +++ b/lib/widgets/propeditor/pstringlistedit.h @@ -34,7 +34,7 @@ namespace PropertyLib{  */  class PStringListEdit: public PropertyWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      PStringListEdit(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/psymbolcombo.h b/lib/widgets/propeditor/psymbolcombo.h index 52750fa1..c55eba58 100644 --- a/lib/widgets/propeditor/psymbolcombo.h +++ b/lib/widgets/propeditor/psymbolcombo.h @@ -33,7 +33,7 @@ namespace PropertyLib{  @short %Property editor with char selector.  */  class PSymbolCombo: public PropertyWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      PSymbolCombo(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); diff --git a/lib/widgets/propeditor/purledit.h b/lib/widgets/propeditor/purledit.h index bed86853..027f3b7d 100644 --- a/lib/widgets/propeditor/purledit.h +++ b/lib/widgets/propeditor/purledit.h @@ -38,7 +38,7 @@ namespace PropertyLib{  */  class PUrlEdit : public PropertyWidget  { -Q_OBJECT +TQ_OBJECT  public:  #ifndef PURE_QT diff --git a/lib/widgets/propeditor/pyesnobutton.h b/lib/widgets/propeditor/pyesnobutton.h index bb899186..4e41da47 100644 --- a/lib/widgets/propeditor/pyesnobutton.h +++ b/lib/widgets/propeditor/pyesnobutton.h @@ -31,7 +31,7 @@ namespace PropertyLib{  */  class PYesNoButton : public PropertyWidget  { -    Q_OBJECT +    TQ_OBJECT  public:      PYesNoButton(MultiProperty* property, TQWidget* parent = 0, const char* name = 0); diff --git a/lib/widgets/propeditor/qeditlistbox.h b/lib/widgets/propeditor/qeditlistbox.h index b57c454e..91ef4c3c 100644 --- a/lib/widgets/propeditor/qeditlistbox.h +++ b/lib/widgets/propeditor/qeditlistbox.h @@ -44,7 +44,7 @@ class QEditListBoxPrivate;  class QEditListBox : public TQGroupBox  { -   Q_OBJECT +   TQ_OBJECT     TQ_PROPERTY( TQStringList items READ items WRITE setItems ) diff --git a/lib/widgets/qcomboview.h b/lib/widgets/qcomboview.h index 51d57eec..cff2ce68 100644 --- a/lib/widgets/qcomboview.h +++ b/lib/widgets/qcomboview.h @@ -40,7 +40,7 @@ in the same way as TQComboBox and have similar API.  */  class TQ_EXPORT QComboView : public TQWidget  { -    Q_OBJECT +    TQ_OBJECT      TQ_ENUMS( Policy )      TQ_PROPERTY( bool editable READ editable WRITE setEditable ) diff --git a/lib/widgets/resizablecombo.h b/lib/widgets/resizablecombo.h index 4852f3dc..1bb629a3 100644 --- a/lib/widgets/resizablecombo.h +++ b/lib/widgets/resizablecombo.h @@ -36,7 +36,7 @@ Resizable combo box.  Used to place resizable KComboBox onto toolbars.  */  class ResizableCombo: public TQWidget{ -    Q_OBJECT +    TQ_OBJECT  public:      ResizableCombo(KComboView *view, TQWidget *parent = 0, const char *name = 0);  | 
