]> source.dussan.org Git - tigervnc.git/commitdiff
Use the same style for exception messages
authorPierre Ossman <ossman@cendio.se>
Fri, 10 Oct 2014 11:33:19 +0000 (13:33 +0200)
committerPierre Ossman <ossman@cendio.se>
Fri, 10 Oct 2014 11:33:19 +0000 (13:33 +0200)
vncviewer/OSXPixelBuffer.cxx
vncviewer/X11PixelBuffer.cxx

index df82c86fdd2c30ceb55c051efe4837c7c15f63c7..a3ee9d0ddb9b613a7609605d9e5d2febfe4155b4 100644 (file)
@@ -47,7 +47,7 @@ OSXPixelBuffer::OSXPixelBuffer(int width, int height) :
 
   data = new rdr::U8[width * height * format.bpp/8];
   if (data == NULL)
-    throw rfb::Exception(_("Error: Not enough memory for framebuffer"));
+    throw rfb::Exception(_("Not enough memory for framebuffer"));
 
   lut = CGColorSpaceCreateDeviceRGB();
   assert(lut);
index b729e800c5ee2b4c25fdd306b92003ca947783e0..d84357c42d5927fe7938c2d8bce70f3f03de0d9a 100644 (file)
@@ -57,7 +57,7 @@ static PixelFormat display_pf()
     if (format[i].depth == fl_visual->depth) break;
 
   if (i == nformats)
-    throw rfb::Exception(_("Error: display lacks pixmap format for default depth"));
+    throw rfb::Exception(_("Display lacks pixmap format for default depth"));
 
   switch (format[i].bits_per_pixel) {
   case 8:
@@ -66,7 +66,7 @@ static PixelFormat display_pf()
     bpp = format[i].bits_per_pixel;
     break;
   default:
-    throw rfb::Exception(_("Error: couldn't find suitable pixmap format"));
+    throw rfb::Exception(_("Couldn't find suitable pixmap format"));
   }
 
   XFree(format);
@@ -75,7 +75,7 @@ static PixelFormat display_pf()
   trueColour = (fl_visual->c_class == TrueColor);
 
   if (!trueColour)
-    throw rfb::Exception(_("Error: only true colour displays supported"));
+    throw rfb::Exception(_("Only true colour displays supported"));
 
   vlog.info(_("Using default colormap and visual, %sdepth %d."),
             (fl_visual->c_class == TrueColor) ? "TrueColor, " :