]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
bikeshedding: better string syntax
authorThomas Debesse <dev@illwieckz.net>
Tue, 9 Nov 2021 02:16:00 +0000 (03:16 +0100)
committerThomas Debesse <dev@illwieckz.net>
Tue, 9 Nov 2021 09:59:02 +0000 (10:59 +0100)
radiant/xywindow.cpp

index 35d491701aa9a318ee3cfa822aa852a02b302f81..17141af554c832a5b012b91795061ee99bd3aa14 100644 (file)
@@ -1074,11 +1074,11 @@ void entitycreate_activated( ui::Widget item ){
                g_pParentWnd->ActiveXY()->OnEntityCreate( entity_name );
        }
        else {
-               GlobalRadiant().m_pfnMessageBox( MainFrame_getWindow(), "There's already a worldspawn in your map!"
-                                                                                                                                                         "",
-                                                                                "Info",
-                                                                                eMB_OK,
-                                                                                eMB_ICONDEFAULT );
+               GlobalRadiant().m_pfnMessageBox( MainFrame_getWindow(),
+                       "There's already a worldspawn in your map!",
+                       "Info",
+                       eMB_OK,
+                       eMB_ICONDEFAULT );
        }
 }