OSDN Git Service

Wed Oct 22 19:03:57 UTC 2003 Brendan Conoboy <blc@redhat.com>
authorblc <blc>
Thu, 23 Oct 2003 18:16:32 +0000 (18:16 +0000)
committerblc <blc>
Thu, 23 Oct 2003 18:16:32 +0000 (18:16 +0000)
        * lcd-char-display.cxx: Prefix std:: to cout and endl.

sid/component/lcd/ChangeLog
sid/component/lcd/lcd-char-display.cxx

index 72e4397..f44d62d 100644 (file)
@@ -1,3 +1,7 @@
+Wed Oct 22 19:03:57 UTC 2003  Brendan Conoboy  <blc@redhat.com>
+
+        * lcd-char-display.cxx: Prefix std:: to cout and endl.
+
 2002-11-11  Frank Ch. Eigler  <fche@redhat.com>
 
        * lcd-char-display.cxx: #include "/usr/include/curses.h" if
index 130411b..27bbc44 100644 (file)
@@ -147,7 +147,7 @@ lcd_char_display::set_pixel (host_int_4 val)
     return;
   mvwaddch( w, row, col, '*' );
 #else
-  cout << '[' << row << ',' << col << ']';
+  std::cout << '[' << row << ',' << col << ']';
 #endif // HAVE_CURSES_H
 
   trigger_mgr.check_and_dispatch();
@@ -165,7 +165,7 @@ lcd_char_display::new_frame (host_int_4 val)
   else
     wrefresh (w);
 #else
-  cout << endl;
+  std::cout << std::endl;
 #endif
 
   trigger_mgr.check_and_dispatch();