Replace Q_OBJECT with TQ_OBJECT

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/2/head
Michele Calgaro 10 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
{
Q_OBJECT
TQ_OBJECT
public:
MainBase(Properties properties);

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

@ -14,7 +14,7 @@
class Synchronous : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
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
{
Q_OBJECT
TQ_OBJECT
public:
Base(TQObject *parent, const char *name);
@ -74,7 +74,7 @@ protected:
//----------------------------------------------------------------------------
class StringOutput : public Base
{
Q_OBJECT
TQ_OBJECT
public:
StringOutput(TQObject *parent = 0, const char *name = 0) : Base(parent, name) {}
@ -89,7 +89,7 @@ private slots:
//----------------------------------------------------------------------------
class LineBase : public Base
{
Q_OBJECT
TQ_OBJECT
public:
LineBase(TQObject *parent = 0, const char *name = 0) : Base(parent, name) {}
@ -106,7 +106,7 @@ private:
//----------------------------------------------------------------------------
class LineOutput : public LineBase
{
Q_OBJECT
TQ_OBJECT
public:
LineOutput(TQObject *parent = 0, const char *name = 0) : LineBase(parent, name) {}
@ -124,7 +124,7 @@ protected:
//----------------------------------------------------------------------------
class LineSignal : public LineBase
{
Q_OBJECT
TQ_OBJECT
public:
LineSignal(TQObject *parent = 0, const char *name = 0) : LineBase(parent, name) {}

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

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

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

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

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

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

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

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

@ -23,7 +23,7 @@ class ListViewToolTip;
class ListView : public TDEListView
{
Q_OBJECT
TQ_OBJECT
public:
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
{
Q_OBJECT
TQ_OBJECT
public:
PopupButton(TQWidget *parent = 0, const char *name = 0);
@ -87,7 +87,7 @@ private:
//-----------------------------------------------------------------------------
class Splitter : public TQSplitter
{
Q_OBJECT
TQ_OBJECT
public:
Splitter(const TQValueList<int> &defaultSizes, Qt::Orientation orientation,
@ -111,7 +111,7 @@ public:
//-----------------------------------------------------------------------------
class SeparatorWidget : public TQFrame
{
Q_OBJECT
TQ_OBJECT
public:
SeparatorWidget(TQWidget *parent) : TQFrame(parent, "separator") {
@ -124,7 +124,7 @@ public:
//-----------------------------------------------------------------------------
class TabBar : public KTabBar
{
Q_OBJECT
TQ_OBJECT
public:
TabBar(TQWidget *parent = 0, const char *name = 0);
@ -140,7 +140,7 @@ private:
class TabWidget : public KTabWidget
{
Q_OBJECT
TQ_OBJECT
public:
TabWidget(TQWidget *parent = 0, const char *name = 0);
@ -154,7 +154,7 @@ protected:
//-----------------------------------------------------------------------------
class ComboBox : public TQComboBox
{
Q_OBJECT
TQ_OBJECT
public:
ComboBox(TQWidget *parent = 0, const char *name = 0);

@ -25,7 +25,7 @@ extern TQValidator::State validateNumber(const TQString &s);
//-----------------------------------------------------------------------------
class NumberLineEdit : public KLineEdit
{
Q_OBJECT
TQ_OBJECT
public:
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
{
Q_OBJECT
TQ_OBJECT
public:
Label(const TQString &url, const TQString &text, TQWidget *parent = 0, const char *name = 0);
@ -46,7 +46,7 @@ private slots:
//-----------------------------------------------------------------------------
class BaseWidget : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
BaseWidget(TQWidget *parent = 0, const char *name = 0);
@ -69,7 +69,7 @@ protected:
//-----------------------------------------------------------------------------
class DirectoryWidget : public BaseWidget
{
Q_OBJECT
TQ_OBJECT
public:
DirectoryWidget(TQWidget *parent = 0, const char *name = 0) : BaseWidget(parent, name) {}
@ -84,7 +84,7 @@ protected slots:
//-----------------------------------------------------------------------------
class DirectoriesWidget : public TQVGroupBox
{
Q_OBJECT
TQ_OBJECT
public:
DirectoriesWidget(const TQString &title, TQWidget *parent = 0, const char *name = 0);
@ -103,7 +103,7 @@ private:
//-----------------------------------------------------------------------------
class UrlWidget : public BaseWidget
{
Q_OBJECT
TQ_OBJECT
public:
UrlWidget(const TQString &filter, TQWidget *parent = 0, const char *name = 0)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -35,7 +35,7 @@ class TDEAboutData;
*/
class LikeBack : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
enum Button { ILike = 0x01, IDoNotLike = 0x02, IFoundABug = 0x04, Configure = 0x10,
@ -102,7 +102,7 @@ class LikeBack : public TQWidget
class LikeBackDialog : public KDialog
{
Q_OBJECT
TQ_OBJECT
public:
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
{
Q_OBJECT
TQ_OBJECT
public:
Widget(TQWidget *parent = 0, const char *name = 0);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save