Small changes
Fix typo on API documentation Remove pointless debug output Remove unneeded loop
This commit is contained in:
parent
a12184e857
commit
5c88e300bd
@ -63,7 +63,7 @@ class DialogProxy : public QQuickWindow
|
||||
Q_PROPERTY(QObject *margins READ margins CONSTANT)
|
||||
|
||||
/**
|
||||
* Plasma Location of the dialog window. Useful if this dialog is apopup for a panel
|
||||
* Plasma Location of the dialog window. Useful if this dialog is a popup for a panel
|
||||
*/
|
||||
Q_PROPERTY(Plasma::Types::Location location READ location WRITE setLocation NOTIFY locationChanged)
|
||||
|
||||
|
@ -30,9 +30,7 @@ PackageUrlInterceptor::PackageUrlInterceptor(QQmlEngine *engine, const Plasma::P
|
||||
m_package(p),
|
||||
m_engine(engine)
|
||||
{
|
||||
foreach (const QString &import, m_engine->importPathList()) {
|
||||
m_allowedPaths << import;
|
||||
}
|
||||
m_allowedPaths << m_engine->importPathList();
|
||||
}
|
||||
|
||||
PackageUrlInterceptor::~PackageUrlInterceptor()
|
||||
|
@ -46,7 +46,6 @@ using namespace Plasma;
|
||||
WidgetAction::WidgetAction(QObject *parent)
|
||||
: QAction(parent)
|
||||
{
|
||||
qDebug() << "There we go.";
|
||||
}
|
||||
|
||||
WidgetAction::WidgetAction(const QIcon &icon, const QString &text, QObject *parent)
|
||||
|
Loading…
Reference in New Issue
Block a user