diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2015-04-17 13:06:36 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2015-04-17 13:11:05 +0200 |
| commit | 1eac0ebec1db39c74fdd998ce07246ed3f576cbe (patch) | |
| tree | 49b6afe21ac603eb6c0e5fd0927894e0e792b10c | |
| parent | 7cdadf09b4f3aa4e0bdac922b20b21ba6b34117c (diff) | |
Fixed AppJS loading
Fixes #49
| -rw-r--r-- | daemon/appinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/appinfo.cpp b/daemon/appinfo.cpp index 7c9a876..f806ec9 100644 --- a/daemon/appinfo.cpp +++ b/daemon/appinfo.cpp @@ -52,6 +52,7 @@ AppInfo::AppInfo(const Bundle &rhs) : Bundle(rhs), d(new AppInfoData) AppInfo &AppInfo::operator=(const AppInfo &rhs) { + Bundle::operator=(rhs); if (this != &rhs) d.operator=(rhs.d); return *this; @@ -185,7 +186,6 @@ QString AppInfo::getJSApp() const } return QString::fromUtf8(appJS->readAll()); - } AppInfo AppInfo::fromPath(const QString &path) |
