Replace Q_OBJECT with TQ_OBJECT

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/2/head
Michele Calgaro 11 months ago
parent df187122dc
commit e860f57ae8
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -57,7 +57,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MainBase : public TQObject, public Log::Base class MainBase : public TQObject, public Log::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
MainBase(Properties properties); MainBase(Properties properties);

@ -34,7 +34,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class GenericStorage : public TQObject class GenericStorage : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
GenericStorage(TQObject *parent = 0, const char *name = 0) : TQObject(parent, name), _dirty(false) {} GenericStorage(TQObject *parent = 0, const char *name = 0) : TQObject(parent, name), _dirty(false) {}
@ -58,7 +58,7 @@ class GenericView;
class GenericViewProxy : public TQObject class GenericViewProxy : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
GenericViewProxy(GenericView &view) : _view(view) {} GenericViewProxy(GenericView &view) : _view(view) {}

@ -14,7 +14,7 @@
class Synchronous : public TQObject class Synchronous : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
Synchronous(uint timeout = 0); // timeout is ms (0 == no timeout) Synchronous(uint timeout = 0); // timeout is ms (0 == no timeout)

@ -30,7 +30,7 @@ extern State runSynchronously(Base &process, RunActions actions, uint timeout);
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Base : public TQObject class Base : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
Base(TQObject *parent, const char *name); Base(TQObject *parent, const char *name);
@ -74,7 +74,7 @@ protected:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class StringOutput : public Base class StringOutput : public Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
StringOutput(TQObject *parent = 0, const char *name = 0) : Base(parent, name) {} StringOutput(TQObject *parent = 0, const char *name = 0) : Base(parent, name) {}
@ -89,7 +89,7 @@ private slots:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class LineBase : public Base class LineBase : public Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
LineBase(TQObject *parent = 0, const char *name = 0) : Base(parent, name) {} LineBase(TQObject *parent = 0, const char *name = 0) : Base(parent, name) {}
@ -106,7 +106,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class LineOutput : public LineBase class LineOutput : public LineBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
LineOutput(TQObject *parent = 0, const char *name = 0) : LineBase(parent, name) {} LineOutput(TQObject *parent = 0, const char *name = 0) : LineBase(parent, name) {}
@ -124,7 +124,7 @@ protected:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class LineSignal : public LineBase class LineSignal : public LineBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
LineSignal(TQObject *parent = 0, const char *name = 0) : LineBase(parent, name) {} LineSignal(TQObject *parent = 0, const char *name = 0) : LineBase(parent, name) {}

@ -13,7 +13,7 @@
class ProgressMonitor : public TQObject class ProgressMonitor : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgressMonitor(TQObject *parent = 0); ProgressMonitor(TQObject *parent = 0);

@ -19,7 +19,7 @@ namespace PURL
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Http : public TQHttp class Http : public TQHttp
{ {
Q_OBJECT TQ_OBJECT
public: public:
Http(const TQString &hostname); Http(const TQString &hostname);

@ -20,7 +20,7 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ConfigWidget : public Container class ConfigWidget : public Container
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(TQWidget *parent = 0) : Container(parent) {} ConfigWidget(TQWidget *parent = 0) : Container(parent) {}

@ -19,7 +19,7 @@ class PopupButton;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Container : public TQFrame class Container : public TQFrame
{ {
Q_OBJECT TQ_OBJECT
public: public:
enum Type { Flat, Sunken }; enum Type { Flat, Sunken };
@ -47,7 +47,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ButtonContainer : public Container class ButtonContainer : public Container
{ {
Q_OBJECT TQ_OBJECT
public: public:
ButtonContainer(const TQString &title, TQWidget *parent); ButtonContainer(const TQString &title, TQWidget *parent);

@ -16,7 +16,7 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Dialog : public KDialogBase class Dialog : public KDialogBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Dialog(TQWidget *parent, const char *name, bool modal, Dialog(TQWidget *parent, const char *name, bool modal,
@ -37,7 +37,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class TreeListDialog : public Dialog class TreeListDialog : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
TreeListDialog(TQWidget *parent, const char *name, bool modal, TreeListDialog(TQWidget *parent, const char *name, bool modal,
@ -70,7 +70,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class TextEditorDialog : public Dialog class TextEditorDialog : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
TextEditorDialog(const TQString &text, const TQString &caption, TextEditorDialog(const TQString &text, const TQString &caption,

@ -34,7 +34,7 @@
// * use TDEListView // * use TDEListView
class EditListBox : public TQFrame class EditListBox : public TQFrame
{ {
Q_OBJECT TQ_OBJECT
public: public:
enum Mode { DuplicatesDisallowed, DuplicatesAllowed, DuplicatesCheckedAtEntering }; enum Mode { DuplicatesDisallowed, DuplicatesAllowed, DuplicatesCheckedAtEntering };

@ -18,7 +18,7 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class HexValueValidator : public TQValidator class HexValueValidator : public TQValidator
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexValueValidator(uint nbChars, TQObject *parent); HexValueValidator(uint nbChars, TQObject *parent);
@ -31,7 +31,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class GenericHexWordEditor : public KLineEdit class GenericHexWordEditor : public KLineEdit
{ {
Q_OBJECT TQ_OBJECT
public: public:
GenericHexWordEditor(uint nbChars, bool hasBlankValue, TQWidget *parent); GenericHexWordEditor(uint nbChars, bool hasBlankValue, TQWidget *parent);
@ -70,7 +70,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class HexWordEditor : public GenericHexWordEditor class HexWordEditor : public GenericHexWordEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexWordEditor(uint nbChars, TQWidget *parent) : GenericHexWordEditor(nbChars, false, parent) {} HexWordEditor(uint nbChars, TQWidget *parent) : GenericHexWordEditor(nbChars, false, parent) {}

@ -26,7 +26,7 @@ public:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class PopupContainer : public TDEPopupMenu, public ListContainer class PopupContainer : public TDEPopupMenu, public ListContainer
{ {
Q_OBJECT TQ_OBJECT
public: public:
PopupContainer(const TQString &title, TQWidget *parent = 0, const char *name = 0); PopupContainer(const TQString &title, TQWidget *parent = 0, const char *name = 0);

@ -23,7 +23,7 @@ class ListViewToolTip;
class ListView : public TDEListView class ListView : public TDEListView
{ {
Q_OBJECT TQ_OBJECT
public: public:
ListView(TQWidget *parent = 0, const char *name = 0); ListView(TQWidget *parent = 0, const char *name = 0);

@ -62,7 +62,7 @@ extern void text(const TQString &text, Log::ShowMode show);
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class PopupButton : public KPushButton class PopupButton : public KPushButton
{ {
Q_OBJECT TQ_OBJECT
public: public:
PopupButton(TQWidget *parent = 0, const char *name = 0); PopupButton(TQWidget *parent = 0, const char *name = 0);
@ -87,7 +87,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Splitter : public TQSplitter class Splitter : public TQSplitter
{ {
Q_OBJECT TQ_OBJECT
public: public:
Splitter(const TQValueList<int> &defaultSizes, Qt::Orientation orientation, Splitter(const TQValueList<int> &defaultSizes, Qt::Orientation orientation,
@ -111,7 +111,7 @@ public:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class SeparatorWidget : public TQFrame class SeparatorWidget : public TQFrame
{ {
Q_OBJECT TQ_OBJECT
public: public:
SeparatorWidget(TQWidget *parent) : TQFrame(parent, "separator") { SeparatorWidget(TQWidget *parent) : TQFrame(parent, "separator") {
@ -124,7 +124,7 @@ public:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class TabBar : public KTabBar class TabBar : public KTabBar
{ {
Q_OBJECT TQ_OBJECT
public: public:
TabBar(TQWidget *parent = 0, const char *name = 0); TabBar(TQWidget *parent = 0, const char *name = 0);
@ -140,7 +140,7 @@ private:
class TabWidget : public KTabWidget class TabWidget : public KTabWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
TabWidget(TQWidget *parent = 0, const char *name = 0); TabWidget(TQWidget *parent = 0, const char *name = 0);
@ -154,7 +154,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ComboBox : public TQComboBox class ComboBox : public TQComboBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
ComboBox(TQWidget *parent = 0, const char *name = 0); ComboBox(TQWidget *parent = 0, const char *name = 0);

@ -25,7 +25,7 @@ extern TQValidator::State validateNumber(const TQString &s);
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class NumberLineEdit : public KLineEdit class NumberLineEdit : public KLineEdit
{ {
Q_OBJECT TQ_OBJECT
public: public:
NumberLineEdit(TQWidget *parent = 0, const char *name = 0); NumberLineEdit(TQWidget *parent = 0, const char *name = 0);

@ -34,7 +34,7 @@ extern Url getSaveUrl(const TQString &startDir, const TQString &filter, TQWidget
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Label : public KURLLabel class Label : public KURLLabel
{ {
Q_OBJECT TQ_OBJECT
public: public:
Label(const TQString &url, const TQString &text, TQWidget *parent = 0, const char *name = 0); Label(const TQString &url, const TQString &text, TQWidget *parent = 0, const char *name = 0);
@ -46,7 +46,7 @@ private slots:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class BaseWidget : public TQWidget class BaseWidget : public TQWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
BaseWidget(TQWidget *parent = 0, const char *name = 0); BaseWidget(TQWidget *parent = 0, const char *name = 0);
@ -69,7 +69,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class DirectoryWidget : public BaseWidget class DirectoryWidget : public BaseWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
DirectoryWidget(TQWidget *parent = 0, const char *name = 0) : BaseWidget(parent, name) {} DirectoryWidget(TQWidget *parent = 0, const char *name = 0) : BaseWidget(parent, name) {}
@ -84,7 +84,7 @@ protected slots:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class DirectoriesWidget : public TQVGroupBox class DirectoriesWidget : public TQVGroupBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
DirectoriesWidget(const TQString &title, TQWidget *parent = 0, const char *name = 0); DirectoriesWidget(const TQString &title, TQWidget *parent = 0, const char *name = 0);
@ -103,7 +103,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class UrlWidget : public BaseWidget class UrlWidget : public BaseWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
UrlWidget(const TQString &filter, TQWidget *parent = 0, const char *name = 0) UrlWidget(const TQString &filter, TQWidget *parent = 0, const char *name = 0)

@ -12,7 +12,7 @@ class Q3Process;
class TDEProcess : public TQObject class TDEProcess : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
TDEProcess(TQObject *parent = 0, const char *name = 0); TDEProcess(TQObject *parent = 0, const char *name = 0);

@ -95,7 +95,7 @@ extern List &list();
class List : public GenericStorage class List : public GenericStorage
{ {
Q_OBJECT TQ_OBJECT
public: public:
List() : GenericStorage(0, "register_list") {} List() : GenericStorage(0, "register_list") {}

@ -18,7 +18,7 @@ namespace Device
class HexView : public MemoryEditorGroup class HexView : public MemoryEditorGroup
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexView(const HexEditor &editor, TQWidget *parent, const char *name); HexView(const HexEditor &editor, TQWidget *parent, const char *name);

@ -18,7 +18,7 @@ namespace Device
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class HexWordEditor : public GenericHexWordEditor class HexWordEditor : public GenericHexWordEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexWordEditor(Memory &memory, uint nbChars, TQWidget *parent); HexWordEditor(Memory &memory, uint nbChars, TQWidget *parent);
@ -40,7 +40,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class RegisterHexWordEditor : public GenericHexWordEditor class RegisterHexWordEditor : public GenericHexWordEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
RegisterHexWordEditor(TQWidget *parent, uint nbChars, BitValue mask); RegisterHexWordEditor(TQWidget *parent, uint nbChars, BitValue mask);

@ -41,7 +41,7 @@ extern const ActionData ACTION_DATA[Nb_Actions];
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class MemoryEditor : public TQFrame class MemoryEditor : public TQFrame
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryEditor(Device::Memory *memory, TQWidget *parent, const char *name); MemoryEditor(Device::Memory *memory, TQWidget *parent, const char *name);
@ -61,7 +61,7 @@ protected:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class MemoryRangeEditor : public MemoryEditor class MemoryRangeEditor : public MemoryEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryRangeEditor(Device::Memory &memory, uint nbLines, uint nbCols, MemoryRangeEditor(Device::Memory &memory, uint nbLines, uint nbCols,
@ -110,7 +110,7 @@ protected:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class MemoryEditorGroup : public MemoryEditor class MemoryEditorGroup : public MemoryEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryEditorGroup(Device::Memory *memory, TQWidget *parent, const char *name); MemoryEditorGroup(Device::Memory *memory, TQWidget *parent, const char *name);
@ -128,7 +128,7 @@ protected:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class MemoryTypeEditor : public MemoryEditorGroup class MemoryTypeEditor : public MemoryEditorGroup
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryTypeEditor(const HexView *hexview, Device::Memory &memory, TQWidget *parent, const char *name); MemoryTypeEditor(const HexView *hexview, Device::Memory &memory, TQWidget *parent, const char *name);

@ -65,7 +65,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LineEdit : public NumberLineEdit class LineEdit : public NumberLineEdit
{ {
Q_OBJECT TQ_OBJECT
public: public:
LineEdit(TQWidget *parent, const char *name = 0); LineEdit(TQWidget *parent, const char *name = 0);
@ -91,7 +91,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class View : public TQFrame, public GenericView class View : public TQFrame, public GenericView
{ {
Q_OBJECT TQ_OBJECT
public: public:
View(TQWidget *parent, const char *name); View(TQWidget *parent, const char *name);

@ -18,7 +18,7 @@ namespace Mem24
class HexView : public Device::HexView class HexView : public Device::HexView
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexView(const HexEditor &editor, TQWidget *parent); HexView(const HexEditor &editor, TQWidget *parent);

@ -33,7 +33,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class HexWordEditor : public Device::HexWordEditor, public MemoryCaster class HexWordEditor : public Device::HexWordEditor, public MemoryCaster
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexWordEditor(Memory &memory, TQWidget *parent) HexWordEditor(Memory &memory, TQWidget *parent)
@ -49,7 +49,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryRangeEditor(Memory &memory, TQWidget *parent); MemoryRangeEditor(Memory &memory, TQWidget *parent);
@ -65,7 +65,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryTypeEditor : public Device::MemoryTypeEditor, public MemoryCaster class MemoryTypeEditor : public Device::MemoryTypeEditor, public MemoryCaster
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryTypeEditor(const HexView *hexview, Memory &memory, TQWidget *parent); MemoryTypeEditor(const HexView *hexview, Memory &memory, TQWidget *parent);

@ -18,7 +18,7 @@ class HexView;
class MemoryConfigEditorWidget : public Device::MemoryEditorGroup, public MemoryCaster class MemoryConfigEditorWidget : public Device::MemoryEditorGroup, public MemoryCaster
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryConfigEditorWidget(Memory &memory, bool withWordEditor, TQWidget *parent); MemoryConfigEditorWidget(Memory &memory, bool withWordEditor, TQWidget *parent);
@ -27,7 +27,7 @@ public:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class MemoryConfigEditor : public MemoryTypeEditor class MemoryConfigEditor : public MemoryTypeEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryConfigEditor(const HexView *hexview, Memory &memory, TQWidget *parent); MemoryConfigEditor(const HexView *hexview, Memory &memory, TQWidget *parent);

@ -21,7 +21,7 @@ namespace Pic
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWordDialog : public Dialog class ConfigWordDialog : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWordDialog(const Memory &memory, uint index, TQWidget *parent); ConfigWordDialog(const Memory &memory, uint index, TQWidget *parent);
@ -30,7 +30,7 @@ public:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWordComboBox : public ComboBox class ConfigWordComboBox : public ComboBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWordComboBox(TQWidget *parent); ConfigWordComboBox(TQWidget *parent);
@ -49,7 +49,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWordEditor : public MemoryEditor class ConfigWordEditor : public MemoryEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWordEditor(Memory &memory, uint index, bool withWordEditor, TQWidget *parent); ConfigWordEditor(Memory &memory, uint index, bool withWordEditor, TQWidget *parent);

@ -20,7 +20,7 @@ namespace Pic
class HexView : public Device::HexView class HexView : public Device::HexView
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexView(const HexEditor &editor, TQWidget *parent); HexView(const HexEditor &editor, TQWidget *parent);

@ -41,7 +41,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryEditor : public Device::MemoryEditor, public MemoryCaster class MemoryEditor : public Device::MemoryEditor, public MemoryCaster
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryEditor(MemoryRangeType type, Memory &memory, TQWidget *parent, const char *name) MemoryEditor(MemoryRangeType type, Memory &memory, TQWidget *parent, const char *name)
@ -51,7 +51,7 @@ public:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryEditorLegend : public MemoryEditor class MemoryEditorLegend : public MemoryEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryEditorLegend(MemoryRangeType type, Memory &memory, TQWidget *parent); MemoryEditorLegend(MemoryRangeType type, Memory &memory, TQWidget *parent);
@ -92,7 +92,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class HexWordEditor : public Device::HexWordEditor, public MemoryCaster class HexWordEditor : public Device::HexWordEditor, public MemoryCaster
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexWordEditor(MemoryRangeType type, Memory &memory, TQWidget *parent); HexWordEditor(MemoryRangeType type, Memory &memory, TQWidget *parent);
@ -107,7 +107,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryRangeEditor(MemoryRangeType type, Memory &memory, MemoryRangeEditor(MemoryRangeType type, Memory &memory,
@ -134,7 +134,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryTypeEditor : public Device::MemoryTypeEditor, public MemoryCaster class MemoryTypeEditor : public Device::MemoryTypeEditor, public MemoryCaster
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryTypeEditor(const HexView *hexview, MemoryRangeType type, Memory &memory, TQWidget *parent, const char *name); MemoryTypeEditor(const HexView *hexview, MemoryRangeType type, Memory &memory, TQWidget *parent, const char *name);
@ -147,7 +147,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryTypeRangeEditor : public MemoryTypeEditor class MemoryTypeRangeEditor : public MemoryTypeEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryTypeRangeEditor(const HexView *hexview, MemoryRangeType type, Memory &memory, TQWidget *parent); MemoryTypeRangeEditor(const HexView *hexview, MemoryRangeType type, Memory &memory, TQWidget *parent);
@ -160,7 +160,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryUserIdEditor : public MemoryTypeRangeEditor class MemoryUserIdEditor : public MemoryTypeRangeEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryUserIdEditor(const HexView *hexview, Memory &memory, TQWidget *parent); MemoryUserIdEditor(const HexView *hexview, Memory &memory, TQWidget *parent);
@ -181,7 +181,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MemoryCalibrationEditor : public MemoryTypeEditor class MemoryCalibrationEditor : public MemoryTypeEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
MemoryCalibrationEditor(const HexView *hexview, Memory &memory, TQWidget *parent); MemoryCalibrationEditor(const HexView *hexview, Memory &memory, TQWidget *parent);

@ -16,7 +16,7 @@ namespace Programmer
{ {
class PicAdvancedDialog : public ::Programmer::AdvancedDialog class PicAdvancedDialog : public ::Programmer::AdvancedDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
PicAdvancedDialog(PicBase &base, TQWidget *parent, const char *name); PicAdvancedDialog(PicBase &base, TQWidget *parent, const char *name);

@ -26,7 +26,7 @@ namespace Pic
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class BankWidget : public TQFrame class BankWidget : public TQFrame
{ {
Q_OBJECT TQ_OBJECT
public: public:
BankWidget(uint bank, TQWidget *parent); BankWidget(uint bank, TQWidget *parent);
@ -60,7 +60,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class RegisterView : public Register::View class RegisterView : public Register::View
{ {
Q_OBJECT TQ_OBJECT
public: public:
RegisterView(TQWidget *parent); RegisterView(TQWidget *parent);

@ -28,7 +28,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class View : public TQWidget, public GenericView class View : public TQWidget, public GenericView
{ {
Q_OBJECT TQ_OBJECT
public: public:
View(TQWidget *parent); View(TQWidget *parent);

@ -28,7 +28,7 @@ END_DECLARE_CONFIG_WIDGET
class GlobalConfigWidget : public BaseGlobalConfigWidget class GlobalConfigWidget : public BaseGlobalConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
GlobalConfigWidget(); GlobalConfigWidget();
@ -47,7 +47,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class StandaloneConfigWidget : public ConfigWidget class StandaloneConfigWidget : public ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
StandaloneConfigWidget(); StandaloneConfigWidget();
@ -67,7 +67,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigCenter : public Dialog class ConfigCenter : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
enum Type { General = 0, ProgSelect, ProgOptions, DebugOptions, enum Type { General = 0, ProgSelect, ProgOptions, DebugOptions,

@ -25,7 +25,7 @@ class SimpleTextEditor;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class GeneratorDialog : public Dialog class GeneratorDialog : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
GeneratorDialog(const TQString &title, TQWidget *parent, const char *name); GeneratorDialog(const TQString &title, TQWidget *parent, const char *name);
@ -53,7 +53,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ConfigGenerator : public GeneratorDialog class ConfigGenerator : public GeneratorDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigGenerator(TQWidget *parent); ConfigGenerator(TQWidget *parent);
@ -73,7 +73,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class TemplateGenerator : public GeneratorDialog class TemplateGenerator : public GeneratorDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
TemplateGenerator(TQWidget *parent); TemplateGenerator(TQWidget *parent);

@ -13,7 +13,7 @@
class ConsoleView : public TQWidget class ConsoleView : public TQWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConsoleView(TQWidget *parent); ConsoleView(TQWidget *parent);

@ -14,7 +14,7 @@ namespace Device { class Data; }
class DeviceEditor : public Editor class DeviceEditor : public Editor
{ {
Q_OBJECT TQ_OBJECT
public: public:
DeviceEditor(const TQString &title, const TQString &tag, TQWidget *parent, const char *name); DeviceEditor(const TQString &title, const TQString &tag, TQWidget *parent, const char *name);

@ -85,7 +85,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Dialog : public ::Dialog class Dialog : public ::Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
Dialog(const TQString &device, Type type, TQWidget *parent); Dialog(const TQString &device, Type type, TQWidget *parent);
@ -118,7 +118,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ComboBox : public TQComboBox class ComboBox : public TQComboBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
ComboBox(bool withAuto, TQWidget *parent); ComboBox(bool withAuto, TQWidget *parent);
@ -133,7 +133,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Button : public TQWidget class Button : public TQWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
Button(bool withAuto, TQWidget *parent); Button(bool withAuto, TQWidget *parent);
@ -153,7 +153,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Browser : public KTextBrowser class Browser : public KTextBrowser
{ {
Q_OBJECT TQ_OBJECT
public: public:
Browser(TQWidget *parent); Browser(TQWidget *parent);
@ -168,7 +168,7 @@ public slots:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class View : public TabWidget class View : public TabWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
View(TQWidget *parent); View(TQWidget *parent);
@ -187,7 +187,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Editor : public DeviceEditor class Editor : public DeviceEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
Editor(const TQString &title, const TQString &tag, TQWidget *parent); Editor(const TQString &title, const TQString &tag, TQWidget *parent);

@ -20,7 +20,7 @@ class TDEPopupMenu;
class Editor : public TQWidget class Editor : public TQWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
Editor(const TQString &title, const TQString &tag, TQWidget *parent, const char *name); Editor(const TQString &title, const TQString &tag, TQWidget *parent, const char *name);

@ -22,7 +22,7 @@ class TQEvent;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class SwitchToDialog : public Dialog class SwitchToDialog : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
SwitchToDialog(const TQStringList &names, TQWidget *parent); SwitchToDialog(const TQStringList &names, TQWidget *parent);
@ -35,7 +35,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class EditorTabBar : public TabBar class EditorTabBar : public TabBar
{ {
Q_OBJECT TQ_OBJECT
public: public:
EditorTabBar(TQWidget *parent) : TabBar(parent, "editor_tab_bar") {} EditorTabBar(TQWidget *parent) : TabBar(parent, "editor_tab_bar") {}
@ -66,7 +66,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class EditorManager : public TabWidget class EditorManager : public TabWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
EditorManager(TQWidget *parent); EditorManager(TQWidget *parent);

@ -19,7 +19,7 @@ namespace Debugger
{ {
class GuiManager : public Manager class GuiManager : public Manager
{ {
Q_OBJECT TQ_OBJECT
public: public:
GuiManager() {} GuiManager() {}

@ -16,7 +16,7 @@ namespace Programmer
{ {
class GuiManager : public Manager class GuiManager : public Manager
{ {
Q_OBJECT TQ_OBJECT
public: public:
GuiManager(TQObject *parent) : Manager(parent) {} GuiManager(TQObject *parent) : Manager(parent) {}

@ -21,7 +21,7 @@ class HexEditor;
class HexEditorPart : public KParts::ReadWritePart class HexEditorPart : public KParts::ReadWritePart
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexEditorPart(HexEditor *editor); HexEditorPart(HexEditor *editor);
@ -35,7 +35,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class HexEditor : public DeviceEditor class HexEditor : public DeviceEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
HexEditor(const TQString &name, TQWidget *parent); HexEditor(const TQString &name, TQWidget *parent);

@ -35,7 +35,7 @@ class TDEAboutData;
*/ */
class LikeBack : public TQWidget class LikeBack : public TQWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
enum Button { ILike = 0x01, IDoNotLike = 0x02, IFoundABug = 0x04, Configure = 0x10, enum Button { ILike = 0x01, IDoNotLike = 0x02, IFoundABug = 0x04, Configure = 0x10,
@ -102,7 +102,7 @@ class LikeBack : public TQWidget
class LikeBackDialog : public KDialog class LikeBackDialog : public KDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
LikeBackDialog(LikeBack::Button reason, TQString windowName, TQString context); LikeBackDialog(LikeBack::Button reason, TQString windowName, TQString context);

@ -18,7 +18,7 @@ enum OutputType { GuiOnly = 0, GuiConsole, Nb_OutputTypes };
class Widget : public TQTextEdit, public View class Widget : public TQTextEdit, public View
{ {
Q_OBJECT TQ_OBJECT
public: public:
Widget(TQWidget *parent = 0, const char *name = 0); Widget(TQWidget *parent = 0, const char *name = 0);

@ -24,7 +24,7 @@ class Project;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class NewDialog : public Dialog class NewDialog : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
NewDialog(const TQString &caption, TQWidget *parent); NewDialog(const TQString &caption, TQWidget *parent);
@ -44,7 +44,7 @@ private slots:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class NewFileDialog : public NewDialog class NewFileDialog : public NewDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
NewFileDialog(Project *project, TQWidget *parent); NewFileDialog(Project *project, TQWidget *parent);

@ -23,7 +23,7 @@ class TextObject;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class BaseEditor : public SimpleTextEditor, public Log::Base class BaseEditor : public SimpleTextEditor, public Log::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
BaseEditor(const PURL::Url &source, const Device::Data *data, TQWidget *parent); BaseEditor(const PURL::Url &source, const Device::Data *data, TQWidget *parent);
@ -40,7 +40,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CoffEditor : public BaseEditor class CoffEditor : public BaseEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
CoffEditor(const PURL::Url &source, const Device::Data &data, TQWidget *parent); CoffEditor(const PURL::Url &source, const Device::Data &data, TQWidget *parent);
@ -55,7 +55,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ObjectEditor : public BaseEditor class ObjectEditor : public BaseEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
ObjectEditor(const PURL::Url &source, TQWidget *parent); ObjectEditor(const PURL::Url &source, TQWidget *parent);
@ -69,7 +69,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LibraryEditor : public BaseEditor class LibraryEditor : public BaseEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
LibraryEditor(const PURL::Url &source, TQWidget *parent); LibraryEditor(const PURL::Url &source, TQWidget *parent);
@ -85,7 +85,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class DisassemblyEditor : public SimpleTextEditor, public Log::Base class DisassemblyEditor : public SimpleTextEditor, public Log::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
DisassemblyEditor(const PURL::Url &hexUrl, const Device::Data &data, TQWidget *parent); DisassemblyEditor(const PURL::Url &hexUrl, const Device::Data &data, TQWidget *parent);

@ -29,7 +29,7 @@ namespace DeviceChooser { class Button; }
class ProjectEditor : public Dialog class ProjectEditor : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProjectEditor(Project &project, TQWidget *parent); ProjectEditor(Project &project, TQWidget *parent);

@ -23,7 +23,7 @@ namespace ProjectManager
class View : public ListView class View : public ListView
{ {
Q_OBJECT TQ_OBJECT
public: public:
View(TQWidget *parent); View(TQWidget *parent);

@ -19,7 +19,7 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class PopupMenu : public TDEPopupMenu class PopupMenu : public TDEPopupMenu
{ {
Q_OBJECT TQ_OBJECT
public: public:
PopupMenu() : _index(1) {} PopupMenu() : _index(1) {}

@ -42,7 +42,7 @@ private:
class FileListBox : public EditListBox class FileListBox : public EditListBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
FileListBox(TQWidget *parent); FileListBox(TQWidget *parent);
@ -63,7 +63,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ProjectWizard : public KWizard class ProjectWizard : public KWizard
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProjectWizard(TQWidget *parent); ProjectWizard(TQWidget *parent);

@ -19,7 +19,7 @@ class View;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class MainView : public DeviceEditor class MainView : public DeviceEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
MainView(const TQString &title, const TQString &tag, TQWidget *parent = 0); MainView(const TQString &title, const TQString &tag, TQWidget *parent = 0);

@ -24,7 +24,7 @@ class TQSplitter;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class TextEditor : public Editor class TextEditor : public Editor
{ {
Q_OBJECT TQ_OBJECT
public: public:
TextEditor(bool withDebugger, TQWidget *parent, const char *name = 0); TextEditor(bool withDebugger, TQWidget *parent, const char *name = 0);
@ -83,7 +83,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class SimpleTextEditor : public TextEditor class SimpleTextEditor : public TextEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
SimpleTextEditor(bool withDebugger, PURL::FileType type, TQWidget *parent, const char *name = 0); SimpleTextEditor(bool withDebugger, PURL::FileType type, TQWidget *parent, const char *name = 0);

@ -25,7 +25,7 @@ namespace Process { class Base; }
class MainWindow : public KDockMainWindow class MainWindow : public KDockMainWindow
{ {
Q_OBJECT TQ_OBJECT
public: public:
MainWindow(); MainWindow();

@ -20,7 +20,7 @@ namespace Tool { class Group; }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ProgrammerStatusWidget : public TQObject, public KeyPopupButton<TQString> class ProgrammerStatusWidget : public TQObject, public KeyPopupButton<TQString>
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgrammerStatusWidget(TQWidget *parent); ProgrammerStatusWidget(TQWidget *parent);
@ -36,7 +36,7 @@ private slots:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ToolStatusWidget : public TQObject, public KeyPopupButton<TQString> class ToolStatusWidget : public TQObject, public KeyPopupButton<TQString>
{ {
Q_OBJECT TQ_OBJECT
public: public:
ToolStatusWidget(TQWidget *parent); ToolStatusWidget(TQWidget *parent);
@ -53,7 +53,7 @@ private slots:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ViewMenuAction : public TDEToggleAction class ViewMenuAction : public TDEToggleAction
{ {
Q_OBJECT TQ_OBJECT
public: public:
ViewMenuAction(KDockWidget *widget); ViewMenuAction(KDockWidget *widget);
@ -71,7 +71,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class MenuBarButton : public TQToolButton class MenuBarButton : public TQToolButton
{ {
Q_OBJECT TQ_OBJECT
public: public:
MenuBarButton(const TQString &icon, TQWidget *parent); MenuBarButton(const TQString &icon, TQWidget *parent);

@ -21,7 +21,7 @@ namespace Register
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class BaseListView : public ListView class BaseListView : public ListView
{ {
Q_OBJECT TQ_OBJECT
public: public:
BaseListView(TQWidget *parent); BaseListView(TQWidget *parent);
@ -40,7 +40,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class RegisterListView : public BaseListView class RegisterListView : public BaseListView
{ {
Q_OBJECT TQ_OBJECT
public: public:
RegisterListView(TQWidget *parent); RegisterListView(TQWidget *parent);
@ -55,7 +55,7 @@ private slots:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class WatchedListView : public BaseListView class WatchedListView : public BaseListView
{ {
Q_OBJECT TQ_OBJECT
public: public:
WatchedListView(TQWidget *parent); WatchedListView(TQWidget *parent);
@ -78,7 +78,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class WatchView : public TQWidget, public GenericView class WatchView : public TQWidget, public GenericView
{ {
Q_OBJECT TQ_OBJECT
public: public:
WatchView(TQWidget *parent); WatchView(TQWidget *parent);

@ -25,7 +25,7 @@ TQ_DECLARE_OPERATORS_FOR_FLAGS(CommandProperties)
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Main : public MainBase class Main : public MainBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Main(); Main();

@ -36,7 +36,7 @@ extern const FillOptions FILL_OPTIONS[];
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Main : public MainBase class Main : public MainBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Main(); Main();

@ -16,7 +16,7 @@ namespace Debugger
{ {
class CliManager : public Manager class CliManager : public Manager
{ {
Q_OBJECT TQ_OBJECT
public: public:
CliManager() {} CliManager() {}

@ -26,7 +26,7 @@ TQ_DECLARE_OPERATORS_FOR_FLAGS(CommandProperties)
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Interactive : public TQObject, public Log::Base class Interactive : public TQObject, public Log::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
Interactive(TQObject *parent); Interactive(TQObject *parent);

@ -17,7 +17,7 @@ namespace Programmer
{ {
class CliManager : public Manager class CliManager : public Manager
{ {
Q_OBJECT TQ_OBJECT
public: public:
CliManager(TQObject *parent) : Manager(parent), _state(Idle) {} CliManager(TQObject *parent) : Manager(parent), _state(Idle) {}

@ -20,7 +20,7 @@ namespace CLI
{ {
class Main : public MainBase class Main : public MainBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Main(); Main();

@ -61,7 +61,7 @@ namespace Programmer
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Base : public TQObject, public Log::Base class Base : public TQObject, public Log::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
Base(const Group &group, const Device::Data *data, const char *name); Base(const Group &group, const Device::Data *data, const char *name);

@ -17,7 +17,7 @@ namespace Bootloader
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ProgrammerBase : public Programmer::PicBase class ProgrammerBase : public Programmer::PicBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgrammerBase(const Programmer::Group &group, const Pic::Data *data, const char *name); ProgrammerBase(const Programmer::Group &group, const Pic::Data *data, const char *name);

@ -23,7 +23,7 @@ namespace Direct
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class PicBase : public ::Programmer::PicBase class PicBase : public ::Programmer::PicBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
PicBase(const ::Programmer::Group &group, const Pic::Data *data) PicBase(const ::Programmer::Group &group, const Pic::Data *data)
@ -36,7 +36,7 @@ private:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Mem24Base : public ::Programmer::Mem24Base class Mem24Base : public ::Programmer::Mem24Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
Mem24Base(const ::Programmer::Group &group, const Mem24::Data *data) Mem24Base(const ::Programmer::Group &group, const Mem24::Data *data)

@ -30,7 +30,7 @@ public:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class HConfigWidget : public ::Hardware::HConfigWidget class HConfigWidget : public ::Hardware::HConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
HConfigWidget(::Programmer::Base &base, TQWidget *parent, bool edit); HConfigWidget(::Programmer::Base &base, TQWidget *parent, bool edit);
@ -64,7 +64,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ConfigWidget : public ::Hardware::ConfigWidget class ConfigWidget : public ::Hardware::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(const ::Programmer::Group &group, TQWidget *parent); ConfigWidget(const ::Programmer::Group &group, TQWidget *parent);

@ -19,7 +19,7 @@ namespace GPSim
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Process : public ::Process::LineOutput, public Log::Base class Process : public ::Process::LineOutput, public Log::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
Process(Log::Base *base); Process(Log::Base *base);

@ -18,7 +18,7 @@ namespace GPSim
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Programmer : public ::Programmer::PicBase class Programmer : public ::Programmer::PicBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Programmer(const ::Programmer::Group &group, const Pic::Data *data) Programmer(const ::Programmer::Group &group, const Pic::Data *data)

@ -17,7 +17,7 @@ namespace GPSim
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ::Programmer::ConfigWidget class ConfigWidget : public ::Programmer::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(const ::Programmer::Group &group, TQWidget *parent); ConfigWidget(const ::Programmer::Group &group, TQWidget *parent);

@ -26,7 +26,7 @@ namespace Hardware
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class HConfigWidget : public TQFrame class HConfigWidget : public TQFrame
{ {
Q_OBJECT TQ_OBJECT
public: public:
HConfigWidget(::Programmer::Base &base, TQWidget *parent, bool edit); HConfigWidget(::Programmer::Base &base, TQWidget *parent, bool edit);
@ -47,7 +47,7 @@ class ConfigWidget;
class EditDialog : public KDialogBase class EditDialog : public KDialogBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
EditDialog(ConfigWidget *parent, const TQString &name, const Port::Description &pd, Data *data); EditDialog(ConfigWidget *parent, const TQString &name, const Port::Description &pd, Data *data);
@ -68,7 +68,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ConfigWidget : public ::Programmer::ConfigWidget class ConfigWidget : public ::Programmer::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(::Programmer::Base *base, Config *config, TQWidget *parent); ConfigWidget(::Programmer::Base *base, Config *config, TQWidget *parent);

@ -20,7 +20,7 @@ namespace Programmer { class Group; }
class PortSelector : public TQFrame class PortSelector : public TQFrame
{ {
Q_OBJECT TQ_OBJECT
public: public:
PortSelector(TQWidget *parent); PortSelector(TQWidget *parent);

@ -28,7 +28,7 @@ END_DECLARE_CONFIG_WIDGET
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class SelectConfigWidget : public ::ConfigWidget class SelectConfigWidget : public ::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
SelectConfigWidget(); SelectConfigWidget();

@ -22,7 +22,7 @@ class HardwareDescription;
class ConfigWidget: public ::ConfigWidget class ConfigWidget: public ::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(const Group &group, TQWidget *parent); ConfigWidget(const Group &group, TQWidget *parent);

@ -26,7 +26,7 @@ class Group;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class StandaloneMemoryCalibrationEditor : public Pic::MemoryCalibrationEditor class StandaloneMemoryCalibrationEditor : public Pic::MemoryCalibrationEditor
{ {
Q_OBJECT TQ_OBJECT
public: public:
StandaloneMemoryCalibrationEditor(const Pic::Memory &memory, TQWidget *parent); StandaloneMemoryCalibrationEditor(const Pic::Memory &memory, TQWidget *parent);
@ -41,7 +41,7 @@ signals:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ButtonContainer : public ::ButtonContainer class ButtonContainer : public ::ButtonContainer
{ {
Q_OBJECT TQ_OBJECT
public: public:
ButtonContainer(const TQString &title, TQObject *receiver, const char *updateSlot, TQWidget *parent); ButtonContainer(const TQString &title, TQObject *receiver, const char *updateSlot, TQWidget *parent);
@ -50,7 +50,7 @@ public:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class AdvancedDialog : public Dialog class AdvancedDialog : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
AdvancedDialog(Base &base, TQWidget *parent, const char *name); AdvancedDialog(Base &base, TQWidget *parent, const char *name);

@ -21,7 +21,7 @@ class Hardware;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ProgrammerBase : public Icd::ProgrammerBase class ProgrammerBase : public Icd::ProgrammerBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgrammerBase(const Programmer::Group &group, const Pic::Data *data) ProgrammerBase(const Programmer::Group &group, const Pic::Data *data)

@ -19,7 +19,7 @@ class Group;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class AdvancedDialog : public ::Programmer::PicAdvancedDialog class AdvancedDialog : public ::Programmer::PicAdvancedDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
AdvancedDialog(ProgrammerBase &base, TQWidget *parent); AdvancedDialog(ProgrammerBase &base, TQWidget *parent);

@ -19,7 +19,7 @@ class DebuggerSpecific;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class DebugProgrammer : public ProgrammerBase class DebugProgrammer : public ProgrammerBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
DebugProgrammer(const ::Programmer::Group &group, const Pic::Data *data); DebugProgrammer(const ::Programmer::Group &group, const Pic::Data *data);

@ -21,7 +21,7 @@ class Hardware;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ProgrammerBase : public Icd::ProgrammerBase class ProgrammerBase : public Icd::ProgrammerBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgrammerBase(const Programmer::Group &group, const Pic::Data *data, const char *name) ProgrammerBase(const Programmer::Group &group, const Pic::Data *data, const char *name)
@ -48,7 +48,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Programmer : public ProgrammerBase class Programmer : public ProgrammerBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Programmer(const ::Programmer::Group &group, const Pic::Data *data); Programmer(const ::Programmer::Group &group, const Pic::Data *data);

@ -18,7 +18,7 @@ namespace Icd
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ProgrammerBase : public ::Programmer::PicBase class ProgrammerBase : public ::Programmer::PicBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgrammerBase(const Programmer::Group &group, const Pic::Data *data, const char *name) ProgrammerBase(const Programmer::Group &group, const Pic::Data *data, const char *name)

@ -20,7 +20,7 @@ class Group;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class AdvancedDialog : public ::Programmer::PicAdvancedDialog class AdvancedDialog : public ::Programmer::PicAdvancedDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
AdvancedDialog(ProgrammerBase &base, TQWidget *parent); AdvancedDialog(ProgrammerBase &base, TQWidget *parent);

@ -38,7 +38,7 @@ extern List &list();
class List : public GenericStorage class List : public GenericStorage
{ {
Q_OBJECT TQ_OBJECT
public: public:
List() {} List() {}

@ -26,7 +26,7 @@ namespace Debugger
{ {
class Manager : public TQObject, public Log::Base, public GenericView class Manager : public TQObject, public Log::Base, public GenericView
{ {
Q_OBJECT TQ_OBJECT
public: public:
Manager(); Manager();

@ -24,7 +24,7 @@ class HardwareDescription;
class Manager : public TQObject, public Log::Base class Manager : public TQObject, public Log::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
Manager(TQObject *parent); Manager(TQObject *parent);

@ -18,7 +18,7 @@ namespace PicdemBootloader
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ProgrammerBase : public Bootloader::ProgrammerBase class ProgrammerBase : public Bootloader::ProgrammerBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgrammerBase(const Programmer::Group &group, const Pic::Data *data); ProgrammerBase(const Programmer::Group &group, const Pic::Data *data);

@ -16,7 +16,7 @@ namespace PicdemBootloader
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget: public ::Programmer::ConfigWidget class ConfigWidget: public ::Programmer::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(const ::Programmer::Group &group, TQWidget *parent); ConfigWidget(const ::Programmer::Group &group, TQWidget *parent);

@ -16,7 +16,7 @@ namespace Pickit1
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Base : public Pickit::Base class Base : public Pickit::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
Base(const Programmer::Group &group, const Pic::Data *data) : Pickit::Base(group, data) {} Base(const Programmer::Group &group, const Pic::Data *data) : Pickit::Base(group, data) {}

@ -17,7 +17,7 @@ namespace Pickit2
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Base : public Pickit::Base class Base : public Pickit::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
Base(const Programmer::Group &group, const Pic::Data *data) : Pickit::Base(group, data) {} Base(const Programmer::Group &group, const Pic::Data *data) : Pickit::Base(group, data) {}

@ -21,7 +21,7 @@ class Hardware;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Base : public Programmer::PicBase class Base : public Programmer::PicBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Base(const Programmer::Group &group, const Pic::Data *data); Base(const Programmer::Group &group, const Pic::Data *data);

@ -17,7 +17,7 @@ namespace Pickit
{ {
class AdvancedDialog : public ::Programmer::PicAdvancedDialog class AdvancedDialog : public ::Programmer::PicAdvancedDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
AdvancedDialog(Base &base, TQWidget *parent, const char *name); AdvancedDialog(Base &base, TQWidget *parent, const char *name);

@ -18,7 +18,7 @@ namespace Pickit2Bootloader
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ProgrammerBase : public ::Bootloader::ProgrammerBase class ProgrammerBase : public ::Bootloader::ProgrammerBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgrammerBase(const Programmer::Group &group, const Pic::Data *data); ProgrammerBase(const Programmer::Group &group, const Pic::Data *data);

@ -16,7 +16,7 @@ namespace Pickit2Bootloader
{ {
class ConfigWidget: public ::Programmer::ConfigWidget class ConfigWidget: public ::Programmer::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(const::Programmer::Group &group, TQWidget *parent); ConfigWidget(const::Programmer::Group &group, TQWidget *parent);

@ -18,7 +18,7 @@ class Hardware;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Base : public Pickit2::Base class Base : public Pickit2::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
Base(const Programmer::Group &group, const Pic::Data *data); Base(const Programmer::Group &group, const Pic::Data *data);

@ -17,7 +17,7 @@ namespace Psp
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Base : public Programmer::PicBase class Base : public Programmer::PicBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Base(const Programmer::Group &group, const Pic::Data *data) Base(const Programmer::Group &group, const Pic::Data *data)

@ -18,7 +18,7 @@ namespace SDCDB
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Programmer : public ::Programmer::PicBase class Programmer : public ::Programmer::PicBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
Programmer(const ::Programmer::Group &group, const Pic::Data *data) Programmer(const ::Programmer::Group &group, const Pic::Data *data)

@ -17,7 +17,7 @@ namespace TinyBootloader
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class ProgrammerBase : public ::Bootloader::ProgrammerBase class ProgrammerBase : public ::Bootloader::ProgrammerBase
{ {
Q_OBJECT TQ_OBJECT
public: public:
ProgrammerBase(const Programmer::Group &group, const Pic::Data *data); ProgrammerBase(const Programmer::Group &group, const Pic::Data *data);

@ -19,7 +19,7 @@ namespace TinyBootloader
{ {
class ConfigWidget: public ::Programmer::ConfigWidget class ConfigWidget: public ::Programmer::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(const ::Programmer::Group &group, TQWidget *parent); ConfigWidget(const ::Programmer::Group &group, TQWidget *parent);

@ -16,7 +16,7 @@ namespace Boost
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Process : public Compile::Process class Process : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return "PIC" + _data.device; } virtual TQString deviceName() const { return "PIC" + _data.device; }
@ -26,7 +26,7 @@ protected:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class CompileFile : public Process class CompileFile : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -36,7 +36,7 @@ protected:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class Link : public Process class Link : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString objectExtension() const { return "obj"; } virtual TQString objectExtension() const { return "obj"; }

@ -17,7 +17,7 @@ namespace Boost
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace C18
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Process : public Compile::Process class Process : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return _data.device.lower(); } virtual TQString deviceName() const { return _data.device.lower(); }
@ -25,7 +25,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileFile : public Process class CompileFile : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -36,7 +36,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Link : public Process class Link : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;

@ -17,7 +17,7 @@ namespace C18
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace CC5X
class CompileFile : public Compile::Process class CompileFile : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return TQString(); } virtual TQString deviceName() const { return TQString(); }

@ -17,7 +17,7 @@ namespace CC5X
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace CCSC
class CompileFile : public Compile::Process class CompileFile : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return TQString(); } virtual TQString deviceName() const { return TQString(); }

@ -17,7 +17,7 @@ namespace CCSC
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace GPUtils
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Process : public Compile::Process class Process : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual TQString deviceName() const; virtual TQString deviceName() const;
@ -26,7 +26,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class AssembleFile : public Process class AssembleFile : public Process
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual void logStderrLine(const TQString &line); virtual void logStderrLine(const TQString &line);
@ -35,7 +35,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class AssembleStandaloneFile : public AssembleFile class AssembleStandaloneFile : public AssembleFile
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;
@ -45,7 +45,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class AssembleProjectFile : public AssembleFile class AssembleProjectFile : public AssembleFile
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;
@ -55,7 +55,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LinkProject : public Process class LinkProject : public Process
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;
@ -66,7 +66,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LibraryProject : public Process class LibraryProject : public Process
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;

@ -18,7 +18,7 @@ namespace GPUtils
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -26,7 +26,7 @@ namespace PURL { class DirectoriesWidget; }
class ToolConfigWidget : public ::ConfigWidget class ToolConfigWidget : public ::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ToolConfigWidget(Project *project); ToolConfigWidget(Project *project);

@ -21,7 +21,7 @@ class ToolchainConfigWidget;
class ToolchainsConfigCenter : public TreeListDialog class ToolchainsConfigCenter : public TreeListDialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
ToolchainsConfigCenter(const Tool::Group &group, TQWidget *parent); ToolchainsConfigCenter(const Tool::Group &group, TQWidget *parent);

@ -25,7 +25,7 @@ namespace Tool { class Group; }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ToolchainConfigWidget : public ::ConfigWidget class ToolchainConfigWidget : public ::ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ToolchainConfigWidget(const Tool::Group &group, TQWidget *parent); ToolchainConfigWidget(const Tool::Group &group, TQWidget *parent);

@ -17,7 +17,7 @@ namespace JAL
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace JAL
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileFile : public Compile::Process class CompileFile : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return _data.device; } virtual TQString deviceName() const { return _data.device; }

@ -17,7 +17,7 @@ namespace JALV2
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -15,7 +15,7 @@ namespace JALV2
{ {
class CompileFile : public Compile::Process class CompileFile : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return _data.device; } virtual TQString deviceName() const { return _data.device; }

@ -16,7 +16,7 @@ namespace Compile
class Manager : public TQObject, public Log::Base class Manager : public TQObject, public Log::Base
{ {
Q_OBJECT TQ_OBJECT
public: public:
enum Operation { NoOperation = 0, Clean = 1, CompileOnly = 2, Build = 4 }; enum Operation { NoOperation = 0, Clean = 1, CompileOnly = 2, Build = 4 };

@ -62,7 +62,7 @@ namespace Compile
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LogWidget : public Log::Widget class LogWidget : public Log::Widget
{ {
Q_OBJECT TQ_OBJECT
public: public:
LogWidget(TQWidget *parent); LogWidget(TQWidget *parent);
@ -87,7 +87,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class BaseProcess : public TQObject class BaseProcess : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
BaseProcess(); BaseProcess();
@ -120,7 +120,7 @@ protected slots:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Process : public BaseProcess class Process : public BaseProcess
{ {
Q_OBJECT TQ_OBJECT
public: public:
virtual ~Process(); virtual ~Process();
@ -161,7 +161,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CustomProcess : public BaseProcess class CustomProcess : public BaseProcess
{ {
Q_OBJECT TQ_OBJECT
public: public:
CustomProcess(const TQString &command) : _command(command) {} CustomProcess(const TQString &command) : _command(command) {}

@ -25,7 +25,7 @@ class ToolConfigWidget;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class HelpDialog : public Dialog class HelpDialog : public Dialog
{ {
Q_OBJECT TQ_OBJECT
public: public:
HelpDialog(TQWidget *parent); HelpDialog(TQWidget *parent);
@ -34,7 +34,7 @@ public:
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ToolsConfigWidget : public ConfigWidget class ToolsConfigWidget : public ConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ToolsConfigWidget(Project *project, TQWidget *parent); ToolsConfigWidget(Project *project, TQWidget *parent);

@ -17,7 +17,7 @@ namespace MPC
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace MPC
class CompileFile : public Compile::Process class CompileFile : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return TQString(); } virtual TQString deviceName() const { return TQString(); }

@ -18,7 +18,7 @@ namespace PIC30
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace PIC30
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Process : public Compile::Process class Process : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return _data.device; } virtual TQString deviceName() const { return _data.device; }
@ -25,7 +25,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileFile : public Process class CompileFile : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -36,7 +36,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileStandaloneFile : public CompileFile class CompileStandaloneFile : public CompileFile
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -46,7 +46,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileProjectFile : public CompileFile class CompileProjectFile : public CompileFile
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -55,7 +55,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class AssembleFile : public Process class AssembleFile : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString outputFilepath() const { return filepath(PURL::Object); } virtual TQString outputFilepath() const { return filepath(PURL::Object); }
@ -67,7 +67,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class AssembleStandaloneFile : public AssembleFile class AssembleStandaloneFile : public AssembleFile
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -76,7 +76,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class AssembleProjectFile : public AssembleFile class AssembleProjectFile : public AssembleFile
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -85,7 +85,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Link : public Process class Link : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString outputFilepath() const; virtual TQString outputFilepath() const;
@ -97,7 +97,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LinkStandalone : public Link class LinkStandalone : public Link
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -106,7 +106,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LinkProject : public Link class LinkProject : public Link
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -115,7 +115,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LibraryProject : public Process class LibraryProject : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -126,7 +126,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class BinToHex : public Process class BinToHex : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString inputFilepath(uint i) const; virtual TQString inputFilepath(uint i) const;

@ -17,7 +17,7 @@ namespace PICC
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace PICC
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Process : public Compile::Process class Process : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const { return _data.device; } virtual TQString deviceName() const { return _data.device; }
@ -28,7 +28,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileStandaloneFile : public Process class CompileStandaloneFile : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;
@ -38,7 +38,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileProjectFile : public Process class CompileProjectFile : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;
@ -48,7 +48,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class AssembleStandaloneFile : public Process class AssembleStandaloneFile : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;
@ -58,7 +58,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class AssembleProjectFile : public Process class AssembleProjectFile : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;
@ -68,7 +68,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LinkProject : public Process class LinkProject : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;
@ -78,7 +78,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LibraryProject : public Process class LibraryProject : public Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString outputFiles() const; virtual TQString outputFiles() const;

@ -17,7 +17,7 @@ namespace SDCC
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ConfigWidget : public ToolConfigWidget class ConfigWidget : public ToolConfigWidget
{ {
Q_OBJECT TQ_OBJECT
public: public:
ConfigWidget(Project *project); ConfigWidget(Project *project);

@ -16,7 +16,7 @@ namespace SDCC
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class Process : public Compile::Process class Process : public Compile::Process
{ {
Q_OBJECT TQ_OBJECT
protected: protected:
virtual TQString deviceName() const; virtual TQString deviceName() const;
@ -30,7 +30,7 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileStandaloneFile : public Process class CompileStandaloneFile : public Process
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -40,7 +40,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class CompileProjectFile : public Process class CompileProjectFile : public Process
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;
@ -49,7 +49,7 @@ private:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class LinkProjectFile : public Process class LinkProjectFile : public Process
{ {
Q_OBJECT TQ_OBJECT
private: private:
virtual TQStringList genericArguments(const Compile::Config &config) const; virtual TQStringList genericArguments(const Compile::Config &config) const;

Loading…
Cancel
Save