Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 251439
Collapse All | Expand All

(-)serlookb/src/khexedit/hexbuffer.h (-3 / +3 lines)
Lines 26-32 Link Here
26
#include <config.h>
26
#include <config.h>
27
#endif 
27
#endif 
28
28
29
#include <iostream.h>
29
#include <iostream>
30
#include <time.h>
30
#include <time.h>
31
31
32
#include <qbitarray.h> 
32
#include <qbitarray.h> 
Lines 433-440 struct SCursorSpec Link Here
433
433
434
  void dump( void )
434
  void dump( void )
435
  {
435
  {
436
    cout << "offset: " << offset << " y: " << y << " x1: " << x1 << endl;
436
    std::cout << "offset: " << offset << " y: " << y << " x1: " << x1 << std::endl;
437
    cout << "x2: " << x2 << " cell: " << cell << endl;
437
    std::cout << "x2: " << x2 << " cell: " << cell << std::endl;
438
  }
438
  }
439
439
440
  bool inside( uint min, uint max )
440
  bool inside( uint min, uint max )
(-)serlookb/src/sldumpview.cpp (-1 / +1 lines)
Lines 24-30 Link Here
24
24
25
static char* cvs_id = "$Id: sldumpview.cpp,v 1.12 2005/01/21 08:40:58 gbertani Exp $";
25
static char* cvs_id = "$Id: sldumpview.cpp,v 1.12 2005/01/21 08:40:58 gbertani Exp $";
26
26
27
#include <iostream.h>
27
#include <iostream>
28
28
29
#include "slsession.h"
29
#include "slsession.h"
30
#include "slview.h"
30
#include "slview.h"

Return to bug 251439