Change g_print to g_warning
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 11 Apr 2009 07:18:39 +0000 (15:18 +0800)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 11 Apr 2009 07:18:39 +0000 (15:18 +0800)
src/ui/gui/output-viewer.c

index 2b0c4af8094dbdd1668d7c6254d3f2e7f018ef18..641944d00445f34fc48bc70229141c6e1d45a6d9 100644 (file)
@@ -194,7 +194,7 @@ reload_the_viewer (void)
   reload_viewer (the_output_viewer);
 }
 
-#define OUTPUT_FILE_NAME "psppire.txt"
+
 
 void
 reload_viewer (struct output_viewer *ov)
@@ -224,10 +224,10 @@ reload_viewer (struct output_viewer *ov)
   */
   {
     GtkTextIter start_iter;
-    FILE *fp = fopen (OUTPUT_FILE_NAME, "r");
+    FILE *fp = fopen (output_file_name (), "r");
     if ( !fp)
       {
-       g_print ("Cannot open %s\n", OUTPUT_FILE_NAME);
+       g_warning ("Cannot open %s\n", output_file_name ());
        return;
       }
 
@@ -253,7 +253,7 @@ reload_viewer (struct output_viewer *ov)
        ov->fp = fopen (output_file_name (), "r");
        if ( ov->fp == NULL)
          {
-           g_print ("Cannot open %s\n", output_file_name ());
+           g_warning ("Cannot open %s\n", output_file_name ());
            return;
          }
       }
@@ -278,7 +278,7 @@ reload_viewer (struct output_viewer *ov)
 }
 
 
-
+#define OUTPUT_FILE_NAME "psppire.txt"
 
 const char *
 output_file_name (void)