Replace Q_OBJECT with TQ_OBJECT

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/12/head
Michele Calgaro 9 months ago
parent ec1a422d2f
commit 3f99eceeeb
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -33,7 +33,7 @@ class KFileItem;
class TQCString;
class tdeio_krarcProtocol : public TQObject, public TDEIO::SlaveBase {
Q_OBJECT
TQ_OBJECT
public:
tdeio_krarcProtocol(const TQCString &pool_socket, const TQCString &app_socket);
@ -105,7 +105,7 @@ private:
};
class KrShellProcess : public KShellProcess {
Q_OBJECT
TQ_OBJECT
public:
KrShellProcess() : KShellProcess(), errorMsg( TQString() ), outputMsg( TQString() ) {

@ -18,7 +18,7 @@
class UserActionPage;
class ActionMan : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
ActionMan( TQWidget* parent=0 );

@ -23,7 +23,7 @@ class TDEShortcut;
* @author Jonas Bähr (http://www.jonas-baehr.de)
*/
class ActionProperty : public ActionPropertyBase {
Q_OBJECT
TQ_OBJECT
public:
ActionProperty( TQWidget *parent=0, const char *name=0, KrAction *action=0 );

@ -112,7 +112,7 @@ private:
* used with default = "__placeholder"
*/
class ParameterPlaceholder : public ParameterBase {
Q_OBJECT
TQ_OBJECT
public:
ParameterPlaceholder( const exp_parameter& parameter, TQWidget* parent );
@ -162,7 +162,7 @@ private:
* used with default = "__file"
*/
class ParameterFile : public ParameterBase {
Q_OBJECT
TQ_OBJECT
public:
ParameterFile( const exp_parameter& parameter, TQWidget* parent );
@ -212,7 +212,7 @@ private:
* used with default = "__goto"
*/
class ParameterGoto : public ParameterBase {
Q_OBJECT
TQ_OBJECT
public:
ParameterGoto( const exp_parameter& parameter, TQWidget* parent );
@ -298,7 +298,7 @@ private:
* See Parameter-Classes for details
*/
class ParameterDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
ParameterDialog( const exp_placeholder* currentPlaceholder, TQWidget *parent );

@ -22,7 +22,7 @@ class TQToolButton;
* @author Jonas Bähr
*/
class UserActionPage : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
UserActionPage( TQWidget* parent );

@ -11,7 +11,7 @@
#include <tqtoolbutton.h>
class KrAddBookmarkDlg: public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
KrAddBookmarkDlg(TQWidget *parent, KURL url = 0);

@ -8,7 +8,7 @@
class TDEActionCollection;
class KrBookmark: public TDEAction {
Q_OBJECT
TQ_OBJECT
public:
KrBookmark(TQString name, KURL url, TDEActionCollection *parent, TQString icon = "", TQString actionName = TQString() );

@ -5,7 +5,7 @@
#include "krbookmarkhandler.h"
class KrBookmarkButton: public TQToolButton {
Q_OBJECT
TQ_OBJECT
public:
KrBookmarkButton(TQWidget *parent);

@ -15,7 +15,7 @@ class TDEActionCollection;
class KBookmarkManager;
class KrBookmarkHandler: public TQObject {
Q_OBJECT
TQ_OBJECT
friend class KrAddBookmarkDlg;
enum Actions { BookmarkCurrent=0, ManageBookmarks };

@ -74,7 +74,7 @@ public:
};
class KURLRequesterDlgForCopy : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
KURLRequesterDlgForCopy( const TQString& url, const TQString& text, bool presAttrs,
@ -99,7 +99,7 @@ private:
};
class KRGetDate : public KDialog {
Q_OBJECT
TQ_OBJECT
public:
KRGetDate(TQDate date=TQDate::currentDate(), TQWidget *parent = 0, const char *name = 0);

@ -20,7 +20,7 @@
*/
class KrKeyDialog : protected KKeyDialog
{
Q_OBJECT
TQ_OBJECT
public:
KrKeyDialog( TQWidget* parent = 0 );

@ -43,7 +43,7 @@ class TQPushButton;
class KRMaskChoice : public TQDialog
{
Q_OBJECT
TQ_OBJECT
public:

@ -40,7 +40,7 @@ class TDEProcess;
class KRPleaseWait;
class KRPleaseWaitHandler : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
@ -65,7 +65,7 @@ private:
class KRPleaseWait : public TQProgressDialog {
Q_OBJECT
TQ_OBJECT
public:
KRPleaseWait( TQString msg, int count = 0 ,bool cancel = false );

@ -33,7 +33,7 @@
#include <tqobject.h>
class KrProgress : public TDEIO::ProgressBase {
Q_OBJECT
TQ_OBJECT
public:

@ -43,7 +43,7 @@ A
class KRPieSlice;
class KRPie : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
KRPie( TDEIO::filesize_t _totalSize, TQWidget *parent = 0 );
@ -59,7 +59,7 @@ class KRPie : public TQWidget {
};
class KRFSDisplay : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
// this constructor is used for a mounted filesystem
@ -103,7 +103,7 @@ class KRPieSlice {
};
class KrQuickSearch: public KLineEdit {
Q_OBJECT
TQ_OBJECT
public:
KrQuickSearch(TQWidget *parent, const char * name = 0);

@ -15,7 +15,7 @@ NEW: a special setText() method allows to choose which part of the string should
be displayed (example: make sure that search results won't be cut out)
*/
class KrSqueezedTextLabel : public KSqueezedTextLabel {
Q_OBJECT
TQ_OBJECT
public:
KrSqueezedTextLabel(TQWidget *parent = 0, const char *name = 0);

@ -40,7 +40,7 @@
class KURLListRequester : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:

@ -22,7 +22,7 @@ class KComboBox;
class KHistoryCombo;
class newFTPGUI : public TQDialog {
Q_OBJECT
TQ_OBJECT
public:
newFTPGUI( TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );

@ -34,7 +34,7 @@
#include "packguibase.h"
class PackGUI : public PackGUIBase {
Q_OBJECT
TQ_OBJECT
public:
PackGUI(TQString defaultName, TQString defaultPath, int noOfFiles, TQString filename="");

@ -50,7 +50,7 @@ class KHistoryCombo;
class PackGUIBase : public TQDialog
{
Q_OBJECT
TQ_OBJECT
public:

@ -37,7 +37,7 @@
class PercentalSplitterToolTip;
class PercentalSplitter : public TQSplitter {
Q_OBJECT
TQ_OBJECT
public:

@ -27,7 +27,7 @@ typedef struct _UrlNode {
class PopularUrlsDlg;
class PopularUrls : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
PopularUrls(TQObject *parent = 0, const char *name = 0);
@ -63,7 +63,7 @@ class TDEListView;
class TDEListViewSearchLine;
class PopularUrlsDlg: public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
PopularUrlsDlg();

@ -62,7 +62,7 @@ class LoaderWidget;
class DiskUsage : public TQWidgetStack
{
Q_OBJECT
TQ_OBJECT
public:
@ -176,7 +176,7 @@ protected:
class LoaderWidget : public TQScrollView
{
Q_OBJECT
TQ_OBJECT
public:

@ -41,7 +41,7 @@
class DiskUsageGUI : public TQDialog
{
Q_OBJECT
TQ_OBJECT
public:

@ -37,7 +37,7 @@
class DUFilelight : public RadialMap::Widget
{
Q_OBJECT
TQ_OBJECT
public:

@ -39,7 +39,7 @@ class DULinesToolTip;
class DULines : public TQListView
{
Q_OBJECT
TQ_OBJECT
public:

@ -114,7 +114,7 @@ private:
class DUListView : public TQListView
{
Q_OBJECT
TQ_OBJECT
public:

@ -52,7 +52,7 @@ namespace RadialMap
class Widget : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:

@ -43,7 +43,7 @@
class AdvancedFilter : public TQWidget, public FilterBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -39,7 +39,7 @@ class GeneralFilter;
class FilterDialog : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -38,7 +38,7 @@
class FilterTabs : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:

@ -47,7 +47,7 @@
class GeneralFilter : public TQWidget, public FilterBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -30,7 +30,7 @@ class DirHistoryQueue;
*/
class DirHistoryButton : public TQToolButton {
Q_OBJECT
TQ_OBJECT
public:
DirHistoryButton(DirHistoryQueue* hQ, TQWidget *parent=0, const char *name=0);

@ -28,7 +28,7 @@ class ListPanel;
*/
class DirHistoryQueue : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
DirHistoryQueue(ListPanel* p);

@ -49,7 +49,7 @@
class KCMDModeButton;
class KrHistoryCombo: public KHistoryCombo {
Q_OBJECT
TQ_OBJECT
public:
@ -63,7 +63,7 @@ class KrHistoryCombo: public KHistoryCombo {
};
class KCMDLine : public TQWidget, KrActionBase {
Q_OBJECT
TQ_OBJECT
public:
KCMDLine( TQWidget *parent = 0, const char *name = 0 );

@ -35,7 +35,7 @@ class TDEActionMenu;
* containing the actions to actually switch the mode.
*/
class KCMDModeButton : public TQToolButton {
Q_OBJECT
TQ_OBJECT
public:
/** Constructor. Sets up the menu, and the icon */

@ -39,7 +39,7 @@
// Function Keys widget
///////////////////////
class KFnKeys : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:

@ -39,7 +39,7 @@
class KrRemoteEncodingMenu: public TDEActionMenu
{
Q_OBJECT
TQ_OBJECT
public:
KrRemoteEncodingMenu (const TQString &text, const TQString &icon, TQObject *parent=0, const char *name=0);

@ -43,7 +43,7 @@
#include <tdelocale.h>
class KrusaderStatus : public KStatusBar {
Q_OBJECT
TQ_OBJECT
public:
KrusaderStatus(TQWidget *parent=0, const char *name=0);

@ -47,7 +47,7 @@ class TQPopupMenu;
class KMountPoint;
class MediaButton : public TQToolButton {
Q_OBJECT
TQ_OBJECT
public:
MediaButton(TQWidget *parent=0, const char *name=0);

@ -36,7 +36,7 @@
class ProfileManager : public TQPushButton
{
Q_OBJECT
TQ_OBJECT
public:

@ -47,7 +47,7 @@ The current version only manages sync-browse and got no mode-switch options.
*/
class SyncBrowseButton : public TQToolButton {
Q_OBJECT
TQ_OBJECT
public:
SyncBrowseButton(TQWidget *parent=0, const char *name=0);

@ -38,7 +38,7 @@
class DiskUsageViewer : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:

@ -27,7 +27,7 @@ class KFileDialog;
class KFileItem;
class KrusaderImageFilePreview : public KPreviewWidgetBase {
Q_OBJECT
TQ_OBJECT
public:

@ -38,7 +38,7 @@ class TQPopupMenu;
class PanelViewerBase;
class KrViewer : public KParts::MainWindow {
Q_OBJECT
TQ_OBJECT
public:
virtual ~KrViewer();
@ -111,7 +111,7 @@ private:
};
class Invoker : public TQObject {
Q_OBJECT
TQ_OBJECT
public:

@ -14,7 +14,7 @@
class PanelViewerBase: public TQWidgetStack {
Q_OBJECT
TQ_OBJECT
public:
@ -46,7 +46,7 @@ protected:
};
class PanelViewer: public PanelViewerBase {
Q_OBJECT
TQ_OBJECT
public slots:
KParts::ReadOnlyPart* openURL( const KURL &url, KrViewer::Mode mode=KrViewer::Generic );
@ -65,7 +65,7 @@ protected:
};
class PanelEditor: public PanelViewerBase {
Q_OBJECT
TQ_OBJECT
public:
virtual bool isModified();

@ -35,7 +35,7 @@
class KgAdvanced : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -35,7 +35,7 @@
class KgArchives : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -39,7 +39,7 @@
class KgColors : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -38,7 +38,7 @@ class TQTabWidget;
class KgDependencies : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -35,7 +35,7 @@
class KgGeneral : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -37,7 +37,7 @@ class TQListView;
class KgLookFeel : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -38,7 +38,7 @@
class KgProtocols : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -35,7 +35,7 @@
class KgStartup : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -39,7 +39,7 @@ class UserActionListView;
class KgUserActions : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -35,7 +35,7 @@
class KgWelcome : public KonfiguratorPage
{
Q_OBJECT
TQ_OBJECT
public:

@ -44,7 +44,7 @@ class TQString;
class Konfigurator : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -54,7 +54,7 @@
class KonfiguratorExtension : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
@ -105,7 +105,7 @@ protected:
class KonfiguratorCheckBox : public TQCheckBox
{
Q_OBJECT
TQ_OBJECT
public:
@ -130,7 +130,7 @@ protected:
class KonfiguratorSpinBox : public TQSpinBox
{
Q_OBJECT
TQ_OBJECT
public:
@ -172,7 +172,7 @@ private:
class KonfiguratorRadioButtons : public TQButtonGroup
{
Q_OBJECT
TQ_OBJECT
public:
@ -210,7 +210,7 @@ protected:
class KonfiguratorEditBox : public TQLineEdit
{
Q_OBJECT
TQ_OBJECT
public:
@ -236,7 +236,7 @@ protected:
class KonfiguratorURLRequester : public KURLRequester
{
Q_OBJECT
TQ_OBJECT
public:
@ -261,7 +261,7 @@ protected:
class KonfiguratorFontChooser : public TQHBox
{
Q_OBJECT
TQ_OBJECT
public:
@ -312,7 +312,7 @@ struct KONFIGURATOR_NAME_VALUE_TIP
class KonfiguratorComboBox : public TQComboBox
{
Q_OBJECT
TQ_OBJECT
public:
@ -351,7 +351,7 @@ typedef struct
class KonfiguratorColorChooser : public TQComboBox
{
Q_OBJECT
TQ_OBJECT
public:
@ -397,7 +397,7 @@ protected:
class KonfiguratorListBox : public TQListBox
{
Q_OBJECT
TQ_OBJECT
public:

@ -50,7 +50,7 @@ struct KONFIGURATOR_NAME_VALUE_PAIR;
*/
class KonfiguratorPage : public TQFrame
{
Q_OBJECT
TQ_OBJECT
public:

@ -104,7 +104,7 @@ protected:
class KrArchiverResultTable : public KrResultTable
{
Q_OBJECT
TQ_OBJECT
public:
KrArchiverResultTable(TQWidget* parent);
@ -124,7 +124,7 @@ protected slots:
class KrToolResultTable : public KrResultTable
{
Q_OBJECT
TQ_OBJECT
public:
KrToolResultTable(TQWidget* parent);

@ -39,7 +39,7 @@
class LocateDlg : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:

@ -37,7 +37,7 @@ class TDEProcess;
* information for a given partition (mount point).
*/
class KDiskFreeSp : public TQObject
{ Q_OBJECT
{ TQ_OBJECT
public:
KDiskFreeSp( TQObject *parent=0, const char *name=0 );

@ -48,7 +48,7 @@ A
class KMountManGUI;
class KMountMan : public TQObject {
Q_OBJECT
TQ_OBJECT
friend class KMountManGUI;

@ -54,7 +54,7 @@ class KRdirWatch;
class fsData;
class KMountManGUI : public KDialogBase {
Q_OBJECT
TQ_OBJECT
enum Pages {

@ -55,7 +55,7 @@ class TQHeader;
*/
class KrBriefView: public TDEIconView, public KrView {
friend class KrBriefViewItem;
Q_OBJECT
TQ_OBJECT
public:
KrBriefView( TQHeader *header, TQWidget *parent, bool &left, TDEConfig *cfg = krConfig, const char *name = 0 );

@ -52,7 +52,7 @@ class KrView;
a different thread.
*/
class KrCalcSpaceDialog : public KDialogBase{
Q_OBJECT
TQ_OBJECT
/* Thread which does the actual calculation. Deletes itself, if no longer
needed. Creator must call finished(), if the thread is no longer needed.

@ -80,7 +80,7 @@ setColors should NEVER be called!
*/
class KrColorCache : public TQObject
{
Q_OBJECT
TQ_OBJECT
static KrColorCache * m_instance;
class KrColorCacheImpl * m_impl;

@ -70,7 +70,7 @@ class KrDetailedViewItem;
* information is necessery from it.
*/
class KrDetailedView : public TDEListView, public KrView {
Q_OBJECT
TQ_OBJECT
friend class KrDetailedViewItem;

@ -36,7 +36,7 @@ YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD
class KRDrag : public TQUriDrag
{
Q_OBJECT
TQ_OBJECT
public:
static KRDrag * newDrag( const KURL::List & urls, bool move, TQWidget * dragSource = 0, const char* name = 0 );

@ -14,7 +14,7 @@
// should be renamed to KrContextMenu or similar
class KrPopupMenu : public TDEPopupMenu {
Q_OBJECT
TQ_OBJECT
public:
static void run(const TQPoint &pos, ListPanel *panel);

@ -28,7 +28,7 @@
*/
class KrPreviewPopup : public TQPopupMenu {
Q_OBJECT
TQ_OBJECT
public:
KrPreviewPopup();

@ -74,7 +74,7 @@ public:
// this is done by specifying the view and the widget in the constructor,
// even if they are actually the same object (specify it twice in that case)
class KrViewOperator: public TQObject {
Q_OBJECT
TQ_OBJECT
public:
KrViewOperator(KrView *view, TQWidget *widget);

@ -78,7 +78,7 @@ class TQHeader;
class ListPanel : public TQWidget {
friend class ListPanelFunc;
Q_OBJECT
TQ_OBJECT
public:
#define ITEM2VFILE(PANEL_PTR, KRVIEWITEM) PANEL_PTR->func->files()->vfs_search(KRVIEWITEM->name())

@ -40,7 +40,7 @@
class ListPanelFunc : public TQObject{
friend class ListPanel;
Q_OBJECT
TQ_OBJECT
public slots:
inline vfile* getVFile(KrViewItem *item) { return files()->vfs_search(item->name()); }

@ -24,7 +24,7 @@ class PanelViewer;
class DiskUsageViewer;
class PanelPopup: public TQWidget {
Q_OBJECT
TQ_OBJECT
enum Parts { Tree, Preview, QuickPanel, View, DskUsage, Last=0xFF };
public:

@ -14,7 +14,7 @@
*/
class Queue: public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
Queue(const TQString& name);

@ -5,7 +5,7 @@
class QueueWidget: public KTabWidget
{
Q_OBJECT
TQ_OBJECT
public:
QueueWidget();

@ -37,7 +37,7 @@
#include <tqlistview.h>
class remoteMan : public remoteManBase {
Q_OBJECT
TQ_OBJECT
public:
remoteMan();

@ -26,7 +26,7 @@ class TQSpinBox;
class remoteManBase : public TQDialog
{
Q_OBJECT
TQ_OBJECT
public:

@ -53,7 +53,7 @@
#include <tdelocale.h>
class KrSearchDialog : public TQDialog {
Q_OBJECT
TQ_OBJECT
public:
KrSearchDialog(TQString profile = 0, TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 );

@ -48,7 +48,7 @@ class KRQuery;
class ftp_vfs;
class KRSearchMod : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
KRSearchMod(const KRQuery *q);

@ -39,7 +39,7 @@
class Combiner : public TQProgressDialog
{
Q_OBJECT
TQ_OBJECT
private:

@ -39,7 +39,7 @@
class Splitter : public TQProgressDialog
{
Q_OBJECT
TQ_OBJECT
private:

@ -49,7 +49,7 @@ struct PredefinedDevice
class SplitterSpinBox : public TQSpinBox
{
Q_OBJECT
TQ_OBJECT
private:
TDEIO::filesize_t division;
@ -142,7 +142,7 @@ struct PredefinedDevice
class SplitterGUI : TQDialog
{
Q_OBJECT
TQ_OBJECT
private:

@ -40,7 +40,7 @@ class TQComboBox;
class TQListView;
class FeedToListBoxDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:

@ -41,7 +41,7 @@
class SynchronizeDialog : TQDialog
{
Q_OBJECT
TQ_OBJECT
public:

@ -51,7 +51,7 @@ class vfile;
class Synchronizer : public TQObject
{
Q_OBJECT
TQ_OBJECT
private:

@ -39,7 +39,7 @@
class SynchronizerDirList : public TQObject, public TQDict<vfile>
{
Q_OBJECT
TQ_OBJECT
public:

@ -48,7 +48,7 @@ class TQSpinBox;
class SynchronizerGUI : TQDialog
{
Q_OBJECT
TQ_OBJECT
public:

@ -48,7 +48,7 @@ class TQFile;
#define ST_STATE_ERROR 4
class SynchronizerTask : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
@ -82,7 +82,7 @@ protected:
class CompareTask : public SynchronizerTask {
Q_OBJECT
TQ_OBJECT
public:
@ -128,7 +128,7 @@ private:
class CompareContentTask : public SynchronizerTask {
Q_OBJECT
TQ_OBJECT
public:

@ -29,7 +29,7 @@ class TQDomDocument;
* @author Jonas Bähr (http://www.jonas-baehr.de)
*/
class KrAction: public TDEAction, public KrActionBase {
Q_OBJECT
TQ_OBJECT
public:
KrAction( TDEActionCollection *parent, const char* name );
@ -121,7 +121,7 @@ class TQFont;
* @author Shie Erlich, Jonas Bähr
*/
class KrActionProcDlg: public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
KrActionProcDlg( TQString caption, bool enableStderr = false, TQWidget *parent = 0 );
@ -145,7 +145,7 @@ class KrActionProcDlg: public KDialogBase {
* @todo jonas: call a list of commands separately (I began it but it doesn't work)
*/
class KrActionProc: public TQObject {
Q_OBJECT
TQ_OBJECT
public:

@ -39,7 +39,7 @@
#include <tqprogressdialog.h>
class arc_vfs : public vfs {
Q_OBJECT
TQ_OBJECT
class arc_dir;
class extFile;

@ -38,7 +38,7 @@
#include "vfs.h"
class ftp_vfs : public vfs{
Q_OBJECT
TQ_OBJECT
public:
// the constructor simply uses the inherited constructor

@ -37,7 +37,7 @@
#include <tdewallet.h>
class KRarcHandler: public TQObject {
Q_OBJECT
TQ_OBJECT
public:
// return the number of files in the archive
@ -70,7 +70,7 @@ private:
};
class KrShellProcess : public KShellProcess {
Q_OBJECT
TQ_OBJECT
public:
KrShellProcess() : KShellProcess(), errorMsg( TQString() ), outputMsg( TQString() ) {
@ -107,7 +107,7 @@ private:
};
class Kr7zEncryptionChecker : public KrShellProcess {
Q_OBJECT
TQ_OBJECT
public:

@ -48,7 +48,7 @@ typedef struct krDirEntry_s{
} krDirEntry ;
class KRdirWatch : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
KRdirWatch(int msec = 250 , bool dirOnly = false );

@ -40,7 +40,7 @@
class KFileItem;
class KRQuery : public TQObject {
Q_OBJECT
TQ_OBJECT
public:

@ -45,7 +45,7 @@
* As this is the most common case, we try to make it as fast and efficent as possible.
*/
class normal_vfs : public vfs{
Q_OBJECT
TQ_OBJECT
public:
// the constructor simply uses the inherited constructor

@ -59,7 +59,7 @@ public:
class PreservingCopyJob : public TDEIO::CopyJob
{
Q_OBJECT
TQ_OBJECT
public:

@ -47,7 +47,7 @@
* allow the object to give out the needed details about the file.
*/
class vfile : public TQObject{
Q_OBJECT
TQ_OBJECT
public:

@ -49,7 +49,7 @@
* make it possible to use a consistent API for all types of VFSs.
*/
class vfs: public TQObject{
Q_OBJECT
TQ_OBJECT
public:
typedef TQDict<vfile> vfileDict;

@ -27,7 +27,7 @@
*/
class virt_vfs : public vfs {
Q_OBJECT
TQ_OBJECT
public:
virt_vfs(TQObject* panel, bool quiet=false);

@ -49,7 +49,7 @@ typedef enum {
class VirtualCopyJob : public TDEIO::Job
{
Q_OBJECT
TQ_OBJECT
public:

@ -57,7 +57,7 @@ private:
// note, that you still have to enable stdout,stderr in KEasyProcess::start() for buffering
// to happen (ie: start(KEasyProcess::Block, KEasyProcess::AllOutput);)
class KEasyProcess: public TDEProcess {
Q_OBJECT
TQ_OBJECT
public:
KEasyProcess(TQObject *parent, const char *name=0);

@ -48,7 +48,7 @@ class ListPanel;
class KURL;
class KRslots : public TQObject {
Q_OBJECT
TQ_OBJECT
public:

@ -72,7 +72,7 @@ class QueueManager;
#define krOut kdDebug(50010)
class Krusader : public KParts::MainWindow, public DCOPObject {
Q_OBJECT
TQ_OBJECT
public:
Krusader();

@ -6,7 +6,7 @@
// declare a dummy kapplication, just to get the X focusin focusout events
class KrusaderApp: public TDEApplication {
Q_OBJECT
TQ_OBJECT
public:
KrusaderApp(): TDEApplication() {}

@ -55,7 +55,7 @@ class KFnKeys;
class KCMDLine;
class KrusaderView : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:

@ -14,7 +14,7 @@ class TQToolButton;
* Implements tabbed-browsing by managing a list of tabs and corrosponding panels.
*/
class PanelManager: public TQWidget {
Q_OBJECT
TQ_OBJECT
public:

@ -43,7 +43,7 @@ public:
* to create a new tab, close the current tab and change a panel when a tab was clicked
*/
class PanelTabBar : public TQTabBar {
Q_OBJECT
TQ_OBJECT
public:
PanelTabBar( TQWidget *parent );

Loading…
Cancel
Save