]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/url.cpp
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / radiant / url.cpp
index f49cb88664623315c2b08c51e9255d8e5f1fdd94..034fc4540a99d7de55274c1fb7112161f5b0728e 100644 (file)
 #include <gdk/gdkwin32.h>
 #include <shellapi.h>
 bool open_url( const char* url ){
-       return ShellExecute( (HWND)GDK_WINDOW_HWND( gtk_widget_get_window( MainFrame_getWindow() ) ), "open", url, 0, 0, SW_SHOW ) > (HINSTANCE)32;
+    return ShellExecute( (HWND)GDK_WINDOW_HWND( gtk_widget_get_window( MainFrame_getWindow() ) ), "open", url, 0, 0, SW_SHOW ) > (HINSTANCE)32;
 }
 #endif
 
 #if GDEF_OS_LINUX || GDEF_OS_BSD
+
 #include <stdlib.h>
-bool open_url( const char* url ){
-       char command[2 * PATH_MAX];
-       snprintf( command, sizeof( command ),
-                         "xdg-open \"%s\" &", url );
-       return system( command ) == 0;
+
+bool open_url(const char *url)
+{
+    char command[2 * PATH_MAX];
+    snprintf(command, sizeof(command),
+             "xdg-open \"%s\" &", url);
+    return system(command) == 0;
 }
+
 #endif
 
 #if GDEF_OS_MACOS
 #include <stdlib.h>
 bool open_url( const char* url ){
-       char command[2 * PATH_MAX];
-       snprintf( command, sizeof( command ), "open \"%s\" &", url );
-       return system( command ) == 0;
+    char command[2 * PATH_MAX];
+    snprintf( command, sizeof( command ), "open \"%s\" &", url );
+    return system( command ) == 0;
 }
 #endif
 
-void OpenURL( const char *url ){
-       // let's put a little comment
-       globalOutputStream() << "OpenURL: " << url << "\n";
-       if ( !open_url( url ) ) {
-               ui::alert( MainFrame_getWindow(), "Failed to launch browser!" );
-       }
+void OpenURL(const char *url)
+{
+    // let's put a little comment
+    globalOutputStream() << "OpenURL: " << url << "\n";
+    if (!open_url(url)) {
+        ui::alert(MainFrame_getWindow(), "Failed to launch browser!");
+    }
 }