summaryrefslogtreecommitdiffstats
path: root/src/noteedit.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 13:35:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-24 20:32:23 +0900
commit0cb23300070f6984b4f976f1c92984399a8aaa10 (patch)
tree63f2bcf00415116ba1d3a137509e71a451d3c7aa /src/noteedit.h
parent7c310957e67e961743ac0e72ea12205b504cd7d9 (diff)
downloadbasket-0cb23300.tar.gz
basket-0cb23300.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit af97112a1a1c815e48080046e495510f41507206)
Diffstat (limited to 'src/noteedit.h')
-rw-r--r--src/noteedit.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/noteedit.h b/src/noteedit.h
index 3e88d3f..a422fd3 100644
--- a/src/noteedit.h
+++ b/src/noteedit.h
@@ -60,7 +60,7 @@ class FocusedColorCombo;
*/
class NoteEditor : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
NoteEditor(NoteContent *noteContent);
@@ -100,7 +100,7 @@ class NoteEditor : public TQObject
class TextEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
TextEditor(TextContent *textContent, TQWidget *parent);
@@ -113,7 +113,7 @@ class TextEditor : public NoteEditor
class HtmlEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
HtmlEditor(HtmlContent *htmlContent, TQWidget *parent);
@@ -139,7 +139,7 @@ class HtmlEditor : public NoteEditor
class ImageEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
ImageEditor(ImageContent *imageContent, TQWidget *parent);
@@ -147,7 +147,7 @@ class ImageEditor : public NoteEditor
class AnimationEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
AnimationEditor(AnimationContent *animationContent, TQWidget *parent);
@@ -155,7 +155,7 @@ class AnimationEditor : public NoteEditor
class FileEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
FileEditor(FileContent *fileContent, TQWidget *parent);
@@ -168,7 +168,7 @@ class FileEditor : public NoteEditor
class LinkEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
LinkEditor(LinkContent *linkContent, TQWidget *parent);
@@ -176,7 +176,7 @@ class LinkEditor : public NoteEditor
class LauncherEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
LauncherEditor(LauncherContent *launcherContent, TQWidget *parent);
@@ -184,7 +184,7 @@ class LauncherEditor : public NoteEditor
class ColorEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
ColorEditor(ColorContent *colorContent, TQWidget *parent);
@@ -192,7 +192,7 @@ class ColorEditor : public NoteEditor
class UnknownEditor : public NoteEditor
{
- Q_OBJECT
+ TQ_OBJECT
public:
UnknownEditor(UnknownContent *unknownContent, TQWidget *parent);
@@ -205,7 +205,7 @@ class UnknownEditor : public NoteEditor
*/
class DebuggedLineEdit : public TQLineEdit
{
- Q_OBJECT
+ TQ_OBJECT
public:
DebuggedLineEdit(const TQString &text, TQWidget *parent = 0);
@@ -219,7 +219,7 @@ class DebuggedLineEdit : public TQLineEdit
*/
class LinkEditDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
LinkEditDialog(LinkContent *contentNote, TQWidget *parent = 0);
@@ -248,7 +248,7 @@ class LinkEditDialog : public KDialogBase
*/
class LauncherEditDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
LauncherEditDialog(LauncherContent *contentNote, TQWidget *parent = 0);
@@ -271,7 +271,7 @@ class LauncherEditDialog : public KDialogBase
*/
class InlineEditors : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
InlineEditors();