diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2017-07-28 22:01:04 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2017-07-28 22:01:30 +0200 |
| commit | 0898066430e0f2908565a1b4588e50de2d41a256 (patch) | |
| tree | 14cdd602923c0989856faaeaf33352c24c80f440 /src/monitor-gui.cc | |
| parent | 6bdda0ebabcd8dc34edfc413de6d0424ccf1f6e6 (diff) | |
Break out Package read/write
Diffstat (limited to 'src/monitor-gui.cc')
| -rw-r--r-- | src/monitor-gui.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monitor-gui.cc b/src/monitor-gui.cc index 29c856f..3494855 100644 --- a/src/monitor-gui.cc +++ b/src/monitor-gui.cc @@ -145,7 +145,7 @@ public: listeners_.erase(listener); } - void package(Monitor::Package const& package) { + void package(::Package const& package) { auto const index = packages_.size(); open_.emplace(package.id, index); packages_.emplace_back(); @@ -924,7 +924,7 @@ public: assert(monitor == monitor_.get()); } - void package(Monitor* monitor, Monitor::Package const& package) override { + void package(Monitor* monitor, ::Package const& package) override { assert(monitor == monitor_.get()); packages_->package(package); } |
