Fix kmrml build for 14.1.x

Signed-off-by: Ray-V <ray-v@inbox.lv>
pull/70/head r14.1.1
Ray-V 8 months ago
parent f8a7bcd460
commit e44a99f0ad

@ -28,7 +28,7 @@ namespace KMrml
class AlgorithmCombo : public KComboBox class AlgorithmCombo : public KComboBox
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -31,7 +31,7 @@ namespace KMrml
class AlgorithmDialog : public KDialogBase class AlgorithmDialog : public KDialogBase
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -27,7 +27,7 @@ namespace KMrml
class Browser : public KParts::BrowserExtension class Browser : public KParts::BrowserExtension
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -28,7 +28,7 @@ namespace KMrml
class CollectionCombo : public KComboBox class CollectionCombo : public KComboBox
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -22,7 +22,7 @@ namespace KMrmlConfig
{ {
class IndexCleaner : public TQObject class IndexCleaner : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -30,7 +30,7 @@ namespace KMrmlConfig
{ {
class Indexer : public TQObject class Indexer : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -10,7 +10,7 @@
class IndexTest : public TQObject class IndexTest : public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -30,7 +30,7 @@ namespace KMrmlConfig
class KCMKMrml : public TDECModule class KCMKMrml : public TDECModule
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -45,7 +45,7 @@ namespace KMrmlConfig
class MainPage : public TQVBox class MainPage : public TQVBox
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -78,7 +78,7 @@ TQStringList Watcher_stub::runningDaemons()
TQByteArray data, replyData; TQByteArray data, replyData;
TQCString replyType; TQCString replyType;
if ( dcopClient()->call( app(), obj(), "runningDaemons()", data, replyType, replyData ) ) { if ( dcopClient()->call( app(), obj(), "runningDaemons()", data, replyType, replyData ) ) {
if ( replyType == TQSTRINGLIST_OBJECT_NAME_STRING ) { if ( replyType == "TQStringList" ) {
TQDataStream _reply_stream( replyData, IO_ReadOnly ); TQDataStream _reply_stream( replyData, IO_ReadOnly );
_reply_stream >> result; _reply_stream >> result;
setStatus( CallSucceeded ); setStatus( CallSucceeded );

@ -42,7 +42,7 @@ public:
class Loader : public TQObject class Loader : public TQObject
{ {
friend class gcc_sucks; friend class gcc_sucks;
Q_OBJECT TQ_OBJECT
public: public:

@ -53,7 +53,7 @@ class MrmlView;
class MrmlPart : public KParts::ReadOnlyPart class MrmlPart : public KParts::ReadOnlyPart
{ {
Q_OBJECT TQ_OBJECT
public: public:
@ -150,7 +150,7 @@ private:
class PartFactory : public KParts::Factory class PartFactory : public KParts::Factory
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -51,7 +51,7 @@ class MrmlView : public TQScrollView
{ {
friend class MrmlViewItem; friend class MrmlViewItem;
Q_OBJECT TQ_OBJECT
public: public:
@ -103,7 +103,7 @@ private:
class MrmlViewItem : public TQFrame class MrmlViewItem : public TQFrame
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -27,7 +27,7 @@ namespace KMrml
{ {
class IntegerWidget : public TQHBox class IntegerWidget : public TQHBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
@ -43,7 +43,7 @@ namespace KMrml
class ComboWidget : public TQHBox class ComboWidget : public TQHBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
@ -59,7 +59,7 @@ namespace KMrml
class CheckBoxWidget : public TQHBox class CheckBoxWidget : public TQHBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
@ -77,7 +77,7 @@ namespace KMrml
class LineEditWidget : public TQHBox class LineEditWidget : public TQHBox
{ {
Q_OBJECT TQ_OBJECT
public: public:
@ -93,7 +93,7 @@ namespace KMrml
class ListBoxWidget : public TQHBox class ListBoxWidget : public TQHBox
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -188,7 +188,7 @@ bool Watcher::startDaemon( DaemonData *daemon )
void Watcher::slotTimeout() void Watcher::slotTimeout()
{ {
TQTimer *timer = static_cast<TQTimer*>( TQT_TQOBJECT( const_cast<TQT_BASE_OBJECT_NAME*>(sender()) ) ); TQTimer *timer = const_cast<TQTimer *>(static_cast<const TQTimer *>(sender()));
DaemonData *daemon = findDaemonFromTimer( timer ); DaemonData *daemon = findDaemonFromTimer( timer );
if ( daemon ) if ( daemon )
{ {

@ -60,7 +60,7 @@ namespace KMrml
class Watcher : public KDEDModule class Watcher : public KDEDModule
{ {
Q_OBJECT TQ_OBJECT
// //
K_DCOP K_DCOP

Loading…
Cancel
Save