mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
make getter-setter private in QQmlPluginInterface
This commit is contained in:
parent
f9ac0727c5
commit
9d9766dc13
|
@ -41,20 +41,21 @@ public:
|
|||
void unload();
|
||||
bool testPlugin();
|
||||
|
||||
QString name();
|
||||
void setName(const QString &name);
|
||||
QJSValue jsInit();
|
||||
void setJsInit(const QJSValue &init);
|
||||
QJSValue jsUnload();
|
||||
void setJsUnload(const QJSValue &unload);
|
||||
QJSValue jsTestPlugin();
|
||||
void setJsTestPlugin(const QJSValue &testPlugin);
|
||||
|
||||
private:
|
||||
QString m_name;
|
||||
QJSValue m_jsInit;
|
||||
QJSValue m_jsUnload;
|
||||
QJSValue m_jsTestPlugin;
|
||||
|
||||
QString name();
|
||||
QJSValue jsInit();
|
||||
void setJsInit(const QJSValue &init);
|
||||
QJSValue jsUnload();
|
||||
void setJsUnload(const QJSValue &unload);
|
||||
QJSValue jsTestPlugin();
|
||||
void setJsTestPlugin(const QJSValue &testPlugin);
|
||||
};
|
||||
|
||||
#endif // QMLPLUGININTERFACE_H
|
||||
|
|
Loading…
Reference in New Issue
Block a user