Replace Q_OBJECT with TQ_OBJECT

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save