Replace Q_OBJECT with TQ_OBJECT

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/14/head
Michele Calgaro 9 months ago
parent 387cce9ec6
commit 416c6f3ee6
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -33,7 +33,7 @@ class CTHost;
*/
class KTApp : public TDEMainWindow
{
Q_OBJECT
TQ_OBJECT
friend class KTView;

@ -30,7 +30,7 @@ class TDEAccel;
class KTPrintOpt : public KPrintDialogPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -30,7 +30,7 @@ class CTTask;
*/
class KTTask : public KDialog
{
Q_OBJECT
TQ_OBJECT
public:

@ -32,7 +32,7 @@ class CTVariable;
*/
class KTVariable : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -33,7 +33,7 @@ class CTTask;
*/
class KTView : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:

@ -31,7 +31,7 @@ class Archive;
* @short Display/edit information about an archive index.
*/
class ArchiveInfoWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
Archive* _archive;
TQLineEdit* _archiveName;

@ -36,7 +36,7 @@ class TarParser;
* @short Status dialog for backing up files.
*/
class BackupDlg : public TQDialog {
Q_OBJECT
TQ_OBJECT
TDEProcess* _proc;
TarParser* _tarParser;

@ -28,7 +28,7 @@ class BackupProfileWidget;
* @short Display/edit the parameters for a backup operation.
*/
class BackupOptDlg : public TQDialog {
Q_OBJECT
TQ_OBJECT
BackupProfileWidget* _profile;
public:

@ -27,7 +27,7 @@ class BackupProfileWidget;
* @short Display/edit information about a backup profile.
*/
class BackupProfileInfoWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
BackupProfile* _backupProfile;
TQLineEdit* _name;

@ -38,7 +38,7 @@
* The BackupProfileManager follows the Singleton pattern.
*/
class BackupProfileManager : public TQObject {
Q_OBJECT
TQ_OBJECT
static BackupProfileManager* _instance;

@ -34,7 +34,7 @@ class BackupProfile;
* @short Display/edit the parameters for a backup operation.
*/
class BackupProfileWidget : public KTabCtl {
Q_OBJECT
TQ_OBJECT
TQLineEdit* _archiveName;
TQComboBox* _workingDir;

@ -27,7 +27,7 @@ class TQLabel;
* @short Display information about a local file.
*/
class FileInfoWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
TQLabel* _fileName;
TQLabel* _ctime;

@ -29,7 +29,7 @@ class TQLineEdit;
* @short Display/edit options for formatting a tape.
*/
class FormatOptDlg : public TQDialog {
Q_OBJECT
TQ_OBJECT
TQString _name;
int _size;

@ -37,7 +37,7 @@ class TarParser;
* @short Status dialog for recreating a tape index.
*/
class IndexDlg : public TQDialog {
Q_OBJECT
TQ_OBJECT
TarParser* _tarParser;
Tape* _tape;

@ -25,7 +25,7 @@
* @short A suitable parent for the info widgets.
*/
class InfoShellWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -52,7 +52,7 @@ class TapeInfoWidget;
* @short The KDat main window. Everything happens from here.
*/
class KDatMainWindow : public TDEMainWindow {
Q_OBJECT
TQ_OBJECT
private:

@ -27,7 +27,7 @@ class TQMultiLineEdit;
* @short A titled logging widget with a save option.
*/
class LoggerWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
TQMultiLineEdit* _mle;
public:

@ -816,7 +816,7 @@ public:
* @short This node represents a tape drive.
*/
class TapeDriveNode : public TQObject, public Node {
Q_OBJECT
TQ_OBJECT
MountedArchiveNode* findArchiveNode( Archive* archive );
@ -874,7 +874,7 @@ public slots:
* @short This node represents the root of the tape index subtree.
*/
class TapeIndexRootNode : public TQObject, public Node {
Q_OBJECT
TQ_OBJECT
TapeNode* findTapeNode( Tape* tape );
@ -981,7 +981,7 @@ public:
* @short This node represents the root of the backup profile subtree.
*/
class BackupProfileRootNode : public TQObject, public Node {
Q_OBJECT
TQ_OBJECT
BackupProfileNode* findBackupProfileNode( BackupProfile* backupProfile );

@ -27,7 +27,7 @@ class TDEConfig;
* @short The central repository for user preferences.
*/
class Options : public TQObject {
Q_OBJECT
TQ_OBJECT
TDEConfig* _config;
int _defaultTapeSize;

@ -28,7 +28,7 @@ class OptionsDlgWidget;
* @short Display/edit user preferences.
*/
class OptionsDlg : public KDialogBase {
Q_OBJECT
TQ_OBJECT
private slots:
void slotOK();

@ -27,7 +27,7 @@ class Tape;
* @short An OO interface to the tape drive.
*/
class TapeDrive : public TQObject {
Q_OBJECT
TQ_OBJECT
int _fd;
bool _readOnly;

@ -29,7 +29,7 @@ class File;
* @short Display information about a tape file.
*/
class TapeFileInfoWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
File* _file;
TQLabel* _fileName;

@ -32,7 +32,7 @@ class Tape;
* @short Display/edit information about a tape index.
*/
class TapeInfoWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
Tape* _tape;
TQLineEdit* _tapeName;

@ -42,7 +42,7 @@
* The TapeManager follows the Singleton pattern.
*/
class TapeManager : public TQObject {
Q_OBJECT
TQ_OBJECT
static TapeManager* _instance;

@ -167,7 +167,7 @@ union record
* @short A parser for GNU tar archives.
*/
class TarParser : public TQObject {
Q_OBJECT
TQ_OBJECT
char _buf[512];
int _bufIdx;

@ -36,7 +36,7 @@ class TapeDrive;
* @short Status dialog for verifying/restoring parts of an archive.
*/
class VerifyDlg : public TQDialog {
Q_OBJECT
TQ_OBJECT
bool _restore;
TDEProcess* _proc;

@ -31,7 +31,7 @@ class TQLineEdit;
* have been combined into a single dialog.
*/
class VerifyOptDlg : public TQDialog {
Q_OBJECT
TQ_OBJECT
bool _restore;
TQString _workingDir;

@ -398,7 +398,7 @@ typedef bool (*KForEvery)
class KTreeView : public TQGridView
{
friend class KTreeViewItem;
Q_OBJECT
TQ_OBJECT
public:
/**

@ -45,7 +45,7 @@ Network interface configuration dialog. This dialog contains the KAddDeviceDlg a
*/
class KAddDeviceContainer : public KDialog
{
Q_OBJECT
TQ_OBJECT
public:
KAddDeviceContainer(TQWidget *parent = 0, const char *name = 0);

@ -75,7 +75,7 @@
/** KNetworkConf is the base class of the project */
class KNetworkConf : public KNetworkConfDlg, public DCOPObject
{
Q_OBJECT
TQ_OBJECT
public:
/** construtor */

@ -58,7 +58,7 @@
*/
class KNetworkConfigParser : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
KNetworkConfigParser();

@ -24,7 +24,7 @@
class KNetworkConfModule : public TDECModule
{
Q_OBJECT
TQ_OBJECT
public:

@ -37,7 +37,7 @@
class DEBAPT: public DEB
{
Q_OBJECT
TQ_OBJECT
public:

@ -37,7 +37,7 @@ class cacheObj;
class DEBDPKG: public DEB
{
Q_OBJECT
TQ_OBJECT
public:

@ -53,7 +53,7 @@ class cacheObj;
class DEB: public pkgInterface
{
Q_OBJECT
TQ_OBJECT
public:

@ -46,7 +46,7 @@ class bsdPortsIndexItem;
class fbsdInterface : public pkgInterface
{
Q_OBJECT
TQ_OBJECT
public:

@ -51,7 +51,7 @@
class FindF : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -25,7 +25,7 @@
class Gentoo : public pkgInterface
{
Q_OBJECT
TQ_OBJECT
public:

@ -42,7 +42,7 @@ class cacheObj;
class KISS: public pkgInterface
{
Q_OBJECT
TQ_OBJECT
public:

@ -39,7 +39,7 @@
class kpKProcIO: public KProcIO
{
Q_OBJECT
TQ_OBJECT
public:
@ -53,7 +53,7 @@ public:
//////////////////////////////////////////////////////////////////////////////
class kpPty: public TQObject
{ Q_OBJECT
{ TQ_OBJECT
public:
kpPty();

@ -44,7 +44,7 @@
//////////////////////////////////////////////////////////////////////////////
class kpTerm: public TQTextEdit
{
Q_OBJECT
TQ_OBJECT
public:
@ -72,7 +72,7 @@ signals:
class kpRun: public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -62,7 +62,7 @@ class kpRun;
//////////////////////////////////////////////////////////////////////////////
class KPACKAGE : public TQWidget
{
Q_OBJECT
TQ_OBJECT
///////////// METHODS ------------------------------------------------------
@ -222,7 +222,7 @@ private:
class KPKG : public TDEMainWindow
{
Q_OBJECT
TQ_OBJECT
enum { Tback = 1,

@ -49,7 +49,7 @@ class packageDisplayWidget;
////////////////////////////////////////////////////////////////////////
class KpTreeList: public TDEListView
{
Q_OBJECT
TQ_OBJECT
public:

@ -70,7 +70,7 @@ class managementWidget;
class KpListViewSearchLine : public TDEListViewSearchLine
{
Q_OBJECT
TQ_OBJECT
public:
@ -89,7 +89,7 @@ private:
class managementWidget : public TQFrame
{
Q_OBJECT
TQ_OBJECT
///////////// METHODS ------------------------------------------------------

@ -61,7 +61,7 @@ class TQRadioButton;
//////////////////////////////////////////////////////////////////////////////
class Options : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -56,7 +56,7 @@ class TQTextEdit;
class packageDisplayWidget;
class kpFileList : public TDEListView
{
Q_OBJECT
TQ_OBJECT
public:
@ -85,7 +85,7 @@ public slots:
class packageDisplayWidget : public TQTabWidget
{
Q_OBJECT
TQ_OBJECT
friend class kpFileList;

@ -51,7 +51,7 @@ class packageInfo;
class packagePropertiesWidget : public KTextBrowser
{
Q_OBJECT
TQ_OBJECT
///////////// METHODS ------------------------------------------------------
public:

@ -68,7 +68,7 @@ public:
//////////////////////////////////////////////////////////////////////////////
class pkgInterface: public TQObject
{
Q_OBJECT
TQ_OBJECT
public:

@ -51,7 +51,7 @@ class KPushButton;
class pkgOptions : public KDialog
{
Q_OBJECT
TQ_OBJECT
public:
pkgOptions( pkgInterface *pki, TQWidget *parent=0, const TQString &caption=TQString());
@ -133,7 +133,7 @@ protected:
///////////////////////////////////////////////////////////////////////////
class pkgOptionsI: public pkgOptions
{
Q_OBJECT
TQ_OBJECT
public:
pkgOptionsI(pkgInterface *pkg, TQWidget *parent = 0);
@ -144,7 +144,7 @@ public:
///////////////////////////////////////////////////////////////////////////
class pkgOptionsU: public pkgOptions
{
Q_OBJECT
TQ_OBJECT
public:
pkgOptionsU(pkgInterface *pkg, TQWidget *parent = 0);

@ -36,7 +36,7 @@
#define PROCBUF
class Modal : public KDialog {
Q_OBJECT
TQ_OBJECT
public:
Modal(TQString msg, TQWidget *parent, const char * name );
@ -45,7 +45,7 @@ public:
class procbuf: public TQObject
{
Q_OBJECT
TQ_OBJECT
public:

@ -40,7 +40,7 @@ class cacheObj;
class RPM : public pkgInterface
{
Q_OBJECT
TQ_OBJECT
public:

@ -45,7 +45,7 @@ class TQCheckBox;
class Search : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -40,7 +40,7 @@ class cacheObj;
class SLACK: public pkgInterface
{
Q_OBJECT
TQ_OBJECT
public:

@ -39,7 +39,7 @@
class Kio: public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
@ -56,7 +56,7 @@ private slots:
class Kiod: public TQObject
{
Q_OBJECT
TQ_OBJECT
public:

@ -59,7 +59,7 @@ class KComboBox;
//////////////////////////////////////////////////////////////////////////////
class dpanel : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
@ -97,7 +97,7 @@ private:
//////////////////////////////////////////////////////////////////////////////
class apanel : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
@ -127,7 +127,7 @@ private:
//////////////////////////////////////////////////////////////////////////////
class updateLoc : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
@ -160,7 +160,7 @@ public:
//////////////////////////////////////////////////////////////////////////////
class aUpdateLoc : public updateLoc
{
Q_OBJECT
TQ_OBJECT
public:
@ -200,7 +200,7 @@ private:
//////////////////////////////////////////////////////////////////////////////
class pdUpdateLoc : public updateLoc
{
Q_OBJECT
TQ_OBJECT
public:
@ -242,7 +242,7 @@ private:
//////////////////////////////////////////////////////////////////////////////
class cUpdateLoc : public updateLoc
{
Q_OBJECT
TQ_OBJECT
public:
@ -284,7 +284,7 @@ private:
class Locations : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -105,7 +105,7 @@ private:
class ActionList : public TQObject, private TQPtrStack<KSVAction>
{
Q_OBJECT
TQ_OBJECT
public:

@ -46,7 +46,7 @@ class KSVTopLevel;
class KSVContent : public TQSplitter
{
Q_OBJECT
TQ_OBJECT
public:

@ -16,7 +16,7 @@ class KSVConfig;
class KSVPreferences : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -16,7 +16,7 @@ class KSVData;
class KSVServicePropertiesDialog : public KPropertiesDialog
{
Q_OBJECT
TQ_OBJECT
public:
@ -42,7 +42,7 @@ private:
class KSVEntryPropertiesDialog : public KPropertiesDialog
{
Q_OBJECT
TQ_OBJECT
public:
@ -67,7 +67,7 @@ private:
class KSVEntryPage : public KPropsDlgPlugin
{
Q_OBJECT
TQ_OBJECT
public:
@ -93,7 +93,7 @@ private:
class KSVServicesPage : public KPropsDlgPlugin
{
Q_OBJECT
TQ_OBJECT
public:

@ -9,7 +9,7 @@ class TQFileInfo;
class RunlevelAuthIcon : public KAuthIcon
{
Q_OBJECT
TQ_OBJECT
TQ_PROPERTY (int refreshInterval READ refreshInterval WRITE setRefreshInterval)

@ -25,7 +25,7 @@ class TQComboBox;
class ServiceDlg : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -9,7 +9,7 @@
class KSVSpinBox : public TQSpinBox, public TDECompletionBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -38,7 +38,7 @@ class RunlevelAuthIcon;
class KSVTopLevel : public TDEMainWindow
{
Q_OBJECT
TQ_OBJECT
public:

@ -15,7 +15,7 @@ class TQScrollBar;
*/
class KScroller : public TQFrame
{
Q_OBJECT
TQ_OBJECT
public:

@ -7,7 +7,7 @@
class KSVApplication : public KUniqueApplication
{
Q_OBJECT
TQ_OBJECT
public:

@ -31,7 +31,7 @@
class KSVConfigWizard : public ConfigWizard
{
Q_OBJECT
TQ_OBJECT
public:

@ -11,7 +11,7 @@ class TQWidget;
class KSVDrag : public TQDragObject
{
Q_OBJECT
TQ_OBJECT
public:

@ -151,7 +151,7 @@ private:
class KSVDragList : public TDEListView
{
Q_OBJECT
TQ_OBJECT
public:

@ -11,7 +11,7 @@
#include <tqfont.h>
class KSVLookAndFeel : public LookAndFeel
{
Q_OBJECT
TQ_OBJECT
public:

@ -29,7 +29,7 @@
class KSVMiscConfig : public MiscConfiguration
{
Q_OBJECT
TQ_OBJECT
public:

@ -29,7 +29,7 @@
class KSVPathConfig : public PathConfiguration
{
Q_OBJECT
TQ_OBJECT
public:

@ -27,7 +27,7 @@ class KSVAction;
class KSVTrash : public TQFrame
{
Q_OBJECT
TQ_OBJECT
public:

@ -25,7 +25,7 @@
#include "propdlg.h"
class addUser: public propdlg {
Q_OBJECT
TQ_OBJECT
public:
addUser(KU::KUser *AUser, bool useprivategroup,

@ -26,7 +26,7 @@
#include "kuser.h"
class delUser: public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
delUser(KU::KUser *AUser, TQWidget *parent = 0, const char *name = 0);

@ -38,7 +38,7 @@ struct SambaDomain {
};
class editDefaults : public TDEConfigDialog {
Q_OBJECT
TQ_OBJECT
public:
editDefaults( TDEConfigSkeleton *config, TQWidget* parent, const char * name = 0 );

@ -32,7 +32,7 @@
class editGroup : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -33,7 +33,7 @@
#include "kgroup.h"
class KGroupLDAP : public TQObject, public KU::KGroups {
Q_OBJECT
TQ_OBJECT
public:
KGroupLDAP( KUserPrefsBase *cfg );

@ -41,7 +41,7 @@ private:
class KGroupView : public TDEListView
{
Q_OBJECT
TQ_OBJECT
public:

@ -33,7 +33,7 @@
#include "kuser.h"
class KUserLDAP : public TQObject, public KU::KUsers {
Q_OBJECT
TQ_OBJECT
public:
KUserLDAP(KUserPrefsBase *cfg);

@ -42,7 +42,7 @@ private:
class KUserView : public TDEListView
{
Q_OBJECT
TQ_OBJECT
public:

@ -33,7 +33,7 @@
#include "kgroupvw.h"
class mainView : public TQTabWidget {
Q_OBJECT
TQ_OBJECT
public:
mainView(TQWidget *parent = 0);

@ -28,7 +28,7 @@ class mainView;
class TDEToggleAction;
class mainWidget : public TDEMainWindow {
Q_OBJECT
TQ_OBJECT
public:
mainWidget(const char *name = 0);

@ -41,7 +41,7 @@
class propdlg : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -26,7 +26,7 @@
#include <kdialogbase.h>
class pwddlg : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:

@ -23,7 +23,7 @@
#include <kcombobox.h>
class SelectConn : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
SelectConn( const TQString &selected, TQWidget* parent, const char * name);

@ -34,7 +34,7 @@
#include <tqpushbutton.h>
class EditWidget:public TQHBox
{
Q_OBJECT
TQ_OBJECT
public:
EditWidget(TQString const label="", TQString const text="", bool isFile=false, TQWidget *parent=0, const char *name=0, WFlags f=0, bool allowLines=true);

@ -34,7 +34,7 @@
#include <tqlayout.h>
class Expert:public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
Expert(liloconf *l=0, TQWidget *parent=0, const char *name=0);

@ -35,7 +35,7 @@
#include <tqcheckbox.h>
class General:public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
General(liloconf *l=0, TQWidget *parent=0, const char *name=0);

@ -38,7 +38,7 @@
#include "EditWidget.h"
class Images:public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
Images(liloconf *l=0, TQWidget *parent=0, const char *name=0);

@ -37,7 +37,7 @@
#include "expert.h"
class MainWidget: public TQTabWidget {
Q_OBJECT
TQ_OBJECT
public:
MainWidget(TQWidget *parent, const char *name=0);

@ -36,7 +36,7 @@
class Details:public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
Details(liloimage *lilo, TQWidget *parent=0, const char *name=0, WFlags f=0);

@ -38,7 +38,7 @@
#include <list>
class InputBox:public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
typedef struct { TQString label; TQString dflt; bool isFile; TQString help; } entry;

@ -37,7 +37,7 @@
class TDEAboutData;
class KControl: public TDECModule {
Q_OBJECT
TQ_OBJECT
public:
KControl(TQWidget *parent, const char *name);

@ -34,7 +34,7 @@
#include <tqpushbutton.h>
class Details:public TQDialog
{
Q_OBJECT
TQ_OBJECT
public:
Details(liloimage *lilo, TQWidget *parent=0, const char *name=0, WFlags f=0);

@ -35,7 +35,7 @@
#include <list>
class InputBox:public TQDialog
{
Q_OBJECT
TQ_OBJECT
public:
typedef struct { TQString label; TQString dflt; bool isFile; TQString help; } entry;

@ -34,7 +34,7 @@
#include "mainwidget.h"
class Standalone: public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
Standalone(TQWidget *parent=0, const char *name=0);

@ -32,7 +32,7 @@ class TQListView;
class PamView : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
PamView(TQWidget *parent = 0, const char *name = 0);

@ -26,7 +26,7 @@ class TQStringList;
class KDebPlugin: public KFilePlugin
{
Q_OBJECT
TQ_OBJECT
public:

@ -26,7 +26,7 @@ class TQStringList;
class KRpmPlugin: public KFilePlugin
{
Q_OBJECT
TQ_OBJECT
public:

Loading…
Cancel
Save