summaryrefslogtreecommitdiffstats
path: root/src/window-lib/inprocesswindow.h
diff options
context:
space:
mode:
authorDaniel d'Andrada <daniel.dandrada@luxoft.com>2018-04-23 13:21:26 +0200
committerRobert Griebl <robert.griebl@pelagicore.com>2018-05-14 11:25:23 +0000
commit9f2ec77fb1e4ee4ade34dc5cdcb6098ed128354a (patch)
treef7acaa6a3c49bf54f52f3ac032e3d32359957310 /src/window-lib/inprocesswindow.h
parente934ab365a521812838743801bb7df9d101c3600 (diff)
Refactor the Application object
Split the original Application object into two parts: the dynamic and the static one. The dynamic is called Application and lives in the manager lib The static is called ApplicationInfo and lives in the application lib On top of that make a clear distinction between aliases and real application objects, which solves some inconsistencies. Also removed all deprecated properties from the original Application object Task-number: AUTOSUITE-296 Change-Id: I8354c9d50f14d083cb85c19153dd19c933eae660 Reviewed-by: Robert Griebl <robert.griebl@pelagicore.com>
Diffstat (limited to 'src/window-lib/inprocesswindow.h')
-rw-r--r--src/window-lib/inprocesswindow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window-lib/inprocesswindow.h b/src/window-lib/inprocesswindow.h
index 6bddce89..e6ba09f6 100644
--- a/src/window-lib/inprocesswindow.h
+++ b/src/window-lib/inprocesswindow.h
@@ -53,7 +53,7 @@ class InProcessWindow : public Window
Q_OBJECT
public:
- InProcessWindow(const Application *app, QQuickItem *windowItem);
+ InProcessWindow(AbstractApplication *app, QQuickItem *windowItem);
bool isInProcess() const override { return true; }