[gnome-boxes] app,wizard-source: Minor coding-style fixes
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-boxes] app,wizard-source: Minor coding-style fixes
- Date: Tue, 19 Nov 2013 00:00:21 +0000 (UTC)
commit a2cdcaeb176d772e3923bd88c680505a8ab2bee2
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Wed Nov 13 19:20:13 2013 +0000
app,wizard-source: Minor coding-style fixes
src/app.vala | 2 +-
src/wizard-source.vala | 10 +++++-----
2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/app.vala b/src/app.vala
index 1092278..59d93c8 100644
--- a/src/app.vala
+++ b/src/app.vala
@@ -397,7 +397,7 @@ private class Boxes.App: Boxes.UI {
break;
default:
- Broker? broker = brokers.lookup(source.source_type);
+ Broker? broker = brokers.lookup (source.source_type);
if (broker != null) {
yield broker.add_source (source);
sources.insert (source.name, source);
diff --git a/src/wizard-source.vala b/src/wizard-source.vala
index 98f7466..ce58440 100644
--- a/src/wizard-source.vala
+++ b/src/wizard-source.vala
@@ -268,10 +268,10 @@ private class Boxes.WizardSource: GLib.Object {
}
private Gtk.Box add_entry (Gtk.Box box,
- owned ClickedFunc? clicked = null,
- int h_margin = 20,
- int v_margin = 10,
- string? media = null) {
+ owned ClickedFunc? clicked = null,
+ int h_margin = 20,
+ int v_margin = 10,
+ string? media = null) {
Gtk.Container row;
if (clicked != null) {
var button = new Gtk.Button ();
@@ -282,7 +282,7 @@ private class Boxes.WizardSource: GLib.Object {
row = button;
} else {
var bin = new Gtk.Alignment (0,0,1,1);
- draw_as_css_box (bin);
+ draw_as_css_box (bin);
row = bin;
}
var hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 20);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]