]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/gtkdlgs.cpp
forgot to check lightDeluxel for NULL here
[xonotic/netradiant.git] / radiant / gtkdlgs.cpp
index 929868631eb56d19e7422ea143d3b33a9909494d..57ed278d6e8c511e1390eb0c17ab3123d01aa552 100644 (file)
@@ -507,7 +507,7 @@ void DoAbout()
           "licensed under the GNU GPL.\n\n"
           "NetRadiant is unsupported, however\n"
           "you may report your problems at\n"
-          "http://www.alientrap.org/forum/" // FIXME real URL
+          "http://www.icculus.org/netradiant/"
         ));
                        
         gtk_widget_show(GTK_WIDGET(label));
@@ -1089,7 +1089,7 @@ void DoTextEditor (const char* filename, int cursorpos)
     
     globalOutputStream() << "Launching: " << strEditCommand.c_str() << "\n";
     // note: linux does not return false if the command failed so it will assume success
-    if (Q_Exec(0, const_cast<char*>(strEditCommand.c_str()), 0, true) == false)
+    if (Q_Exec(0, const_cast<char*>(strEditCommand.c_str()), 0, true, false) == false)
     {
       globalOutputStream() << "Failed to execute " << strEditCommand.c_str() << ", using default\n";
     }