* Constructor. * * @param app parent application */
| 48 | * @param app parent application |
| 49 | */ |
| 50 | ScriptInterface::ScriptInterface(Kid3Application* app) |
| 51 | : QDBusAbstractAdaptor(app), m_app(app) |
| 52 | { |
| 53 | setObjectName(QLatin1String("ScriptInterface")); |
| 54 | setAutoRelaySignals(true); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Open file or directory. |
nothing calls this directly
no outgoing calls
no test coverage detected