[gnome-boxes/wip/props-ui-files: 17/23] props-page-widget: Async constructor
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-boxes/wip/props-ui-files: 17/23] props-page-widget: Async constructor
- Date: Thu, 18 Aug 2016 16:21:14 +0000 (UTC)
commit 5853b47e4edfff945d7be0ae4ef119b4c7cee8c4
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Thu Jun 2 18:37:52 2016 +0100
props-page-widget: Async constructor
In a following patch we will be making
IPropertiesProvider.get_properties(), async so the calling method also
needs to be async.
src/properties-page-widget.vala | 2 +-
src/properties.vala | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/properties-page-widget.vala b/src/properties-page-widget.vala
index 82e19c0..3500dc6 100644
--- a/src/properties-page-widget.vala
+++ b/src/properties-page-widget.vala
@@ -32,7 +32,7 @@ private class Boxes.PropertiesPageWidget: Gtk.Box {
}
}
- public PropertiesPageWidget (PropertiesPage page, Machine machine) {
+ public async PropertiesPageWidget (PropertiesPage page, Machine machine) {
deferred_changes = new List<DeferredChange> ();
switch (page) {
diff --git a/src/properties.vala b/src/properties.vala
index 6e506ff..5c3e531 100644
--- a/src/properties.vala
+++ b/src/properties.vala
@@ -33,7 +33,7 @@ private class Boxes.Properties: Gtk.Notebook, Boxes.UI {
return;
for (var i = 0; i < PropertiesPage.LAST; i++) {
- var page = new PropertiesPageWidget (i, machine);
+ var page = yield new PropertiesPageWidget (i, machine);
if (page.empty)
continue;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]