Remove leftover debug spew
authorJavier Jardón <javier.jardon@codethink.co.uk>
Wed, 1 Feb 2012 16:36:32 +0000 (16:36 +0000)
committerJavier Jardón <javier.jardon@codethink.co.uk>
Wed, 1 Feb 2012 16:36:32 +0000 (16:36 +0000)
src/moonshot-identity-manager-app.vala
src/moonshot-utils.vala

index 9d22ad6..3681159 100644 (file)
@@ -95,9 +95,6 @@ class IdentityManagerApp {
 
 public static int main(string[] args){
         Gtk.init(ref args);
-               stdout.printf("Hello\n");
-        foreach (string arg in args)
-                       stdout.printf("arg %s\n", arg);
 
 #if OS_WIN32
         // Force specific theme settings on Windows without requiring a gtkrc file
index daca9a2..b6e4410 100644 (file)
@@ -19,7 +19,6 @@ public Gdk.Pixbuf? find_icon (string name, int size)
     try
     {
 #if OS_WIN32
-print("Windows\n");
         string? base_path = g_win32_get_package_installation_directory_of_module (null);
 
         // Hack to allow running within the source tree
@@ -31,7 +30,6 @@ print("Windows\n");
         return new Gdk.Pixbuf.from_file_at_size (filename, size, size);
 
 #else
-print("Linux\n");
         var icon_theme = Gtk.IconTheme.get_default ();
         return icon_theme.load_icon (name, size, Gtk.IconLookupFlags.FORCE_SIZE);
 #endif