[Uml-devel] KDE/kdesdk/umbrello/umbrello
Laurent Montel
montel at kde.org
Wed Oct 11 16:29:37 UTC 2006
SVN commit 594577 by mlaurent:
Q3CString--
M +1 -3 plugin.cpp
M +2 -4 plugin.h
--- trunk/KDE/kdesdk/umbrello/umbrello/plugin.cpp #594576:594577
@@ -23,8 +23,6 @@
// U2 includes
#include "pluginloader.h"
#include "plugin.h"
-//Added by qt3to4:
-#include <Q3CString>
using namespace Umbrello;
@@ -106,7 +104,7 @@
return true;
}
-Q3CString
+QByteArray
Plugin::instanceName() const
{
return _instanceName;
--- trunk/KDE/kdesdk/umbrello/umbrello/plugin.h #594576:594577
@@ -21,8 +21,6 @@
// Qt includes
#include <qobject.h>
-//Added by qt3to4:
-#include <Q3CString>
// KDE includes
#include <kgenericfactory.h>
@@ -97,7 +95,7 @@
virtual ~Plugin();
/** Return the instance name of the plugin */
- Q3CString instanceName() const;
+ QByteArray instanceName() const;
/** Return the configuration record for the plugin */
KConfig *config();
@@ -157,7 +155,7 @@
protected:
uint _ref; ///< Reference counter
- Q3CString _instanceName; ///< Instance name of the plugin
+ QByteArray _instanceName; ///< Instance name of the plugin
KConfig *_config; ///< Configuration record
};
}
More information about the umbrello-devel
mailing list