[gnome-boxes] unattended-file: Correct spacing



commit 198eadd60e71828eb308e48f0666fd0925d4bfe4
Author: Lasse Schuirmann <lasse schuirmann gmail com>
Date:   Tue Jul 29 12:18:21 2014 +0200

    unattended-file: Correct spacing
    
    https://bugzilla.gnome.org/show_bug.cgi?id=730640

 src/unattended-file.vala |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/src/unattended-file.vala b/src/unattended-file.vala
index 5395c11..f3b9a6d 100644
--- a/src/unattended-file.vala
+++ b/src/unattended-file.vala
@@ -11,7 +11,7 @@ private interface Boxes.UnattendedFile : GLib.Object {
             return installer.disk_file.get_path ();
         }
     }
-    protected abstract UnattendedInstaller installer  { get; set; }
+    protected abstract UnattendedInstaller installer { get; set; }
 
     public async void copy (Cancellable? cancellable) throws GLib.Error {
         var source_file = yield get_source_file (cancellable);
@@ -32,12 +32,12 @@ private class Boxes.UnattendedRawFile : GLib.Object, Boxes.UnattendedFile {
     public string dest_name { get; set; }
     public string src_path { get; set; }
 
-    protected UnattendedInstaller installer  { get; set; }
+    protected UnattendedInstaller installer { get; set; }
 
     public UnattendedRawFile (UnattendedInstaller installer, string src_path, string dest_name) {
-       this.installer = installer;
-       this.src_path = src_path;
-       this.dest_name = dest_name;
+        this.installer = installer;
+        this.src_path = src_path;
+        this.dest_name = dest_name;
     }
 
     protected async File get_source_file (Cancellable? cancellable)  throws GLib.Error {
@@ -55,9 +55,9 @@ private class Boxes.UnattendedScriptFile : GLib.Object, Boxes.UnattendedFile {
     private File unattended_tmp;
 
     public UnattendedScriptFile (UnattendedInstaller installer, InstallScript script, string dest_name) {
-       this.installer = installer;
-       this.script = script;
-       this.dest_name = dest_name;
+        this.installer = installer;
+        this.script = script;
+        this.dest_name = dest_name;
     }
 
     ~UnattendedScriptFile () {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]