]> Dogcows Code - chaz/openbox/blobdiff - util/bsetroot.cc
add some const
[chaz/openbox] / util / bsetroot.cc
index 460dc350ac9891803a31452cee22b7526309ac89..e578cfa0580d5d02948170481a608cc930706e65 100644 (file)
@@ -43,15 +43,11 @@ extern "C" {
 #endif // HAVE_CTYPE_H
 }
 
-#include "../src/i18n.hh"
-#include "../src/GCCache.hh"
-#include "../src/Texture.hh"
-#include "../src/Util.hh"
+#include "gccache.hh"
+#include "texture.hh"
+#include "util.hh"
 #include "bsetroot.hh"
 
-
-I18n i18n;
-
 bsetroot::bsetroot(int argc, char **argv, char *dpy_name)
   : BaseDisplay(argv[0], dpy_name) {
 
@@ -106,8 +102,7 @@ bsetroot::bsetroot(int argc, char **argv, char *dpy_name)
 
   if ((mod + sol + grd) != True) {
     fprintf(stderr,
-           i18n(bsetrootSet, bsetrootMustSpecify,
-                "%s: error: must specify one of: -solid, -mod, -gradient\n"),
+           "%s: error: must specify one of: -solid, -mod, -gradient\n",
            getApplicationName());
 
     usage(2);
@@ -348,19 +343,18 @@ void bsetroot::gradient(void) {
 
 void bsetroot::usage(int exit_code) {
     fprintf(stderr,
-           i18n(bsetrootSet, bsetrootUsage,
-                "%s 2.0\n\n"
-                "Copyright (c) 1997-2000, 2002 Bradley T Hughes\n"
-                "Copyright (c) 2001-2002 Sean 'Shaleh' Perry\n\n"
-                "  -display <string>        use display connection\n"
-                "  -mod <x> <y>             modula pattern\n"
-                "  -foreground, -fg <color> modula foreground color\n"
-                "  -background, -bg <color> modula background color\n\n"
-                "  -gradient <texture>      gradient texture\n"
-                "  -from <color>            gradient start color\n"
-                "  -to <color>              gradient end color\n\n"
-                "  -solid <color>           solid color\n\n"
-                "  -help                    print this help text and exit\n"),
+           "%s 2.0\n\n"
+            "Copyright (c) 1997-2000, 2002 Bradley T Hughes\n"
+            "Copyright (c) 2001-2002 Sean 'Shaleh' Perry\n\n"
+            "  -display <string>        use display connection\n"
+            "  -mod <x> <y>             modula pattern\n"
+            "  -foreground, -fg <color> modula foreground color\n"
+            "  -background, -bg <color> modula background color\n\n"
+            "  -gradient <texture>      gradient texture\n"
+            "  -from <color>            gradient start color\n"
+            "  -to <color>              gradient end color\n\n"
+            "  -solid <color>           solid color\n\n"
+            "  -help                    print this help text and exit\n",
            getApplicationName());
 
     exit(exit_code);
@@ -369,15 +363,12 @@ void bsetroot::usage(int exit_code) {
 int main(int argc, char **argv) {
   char *display_name = (char *) 0;
 
-  i18n.openCatalog("openbox.cat");
-
   for (int i = 1; i < argc; i++) {
     if (! strcmp(argv[i], "-display")) {
       // check for -display option
 
       if ((++i) >= argc) {
-        fprintf(stderr, i18n(mainSet, mainDISPLAYRequiresArg,
-                            "error: '-display' requires an argument\n"));
+        fprintf(stderr, "error: '-display' requires an argument\n");
 
         ::exit(1);
       }
This page took 0.026234 seconds and 4 git commands to generate.