Changeset 20932

Show
Ignore:
Timestamp:
11/18/07 13:18:04 (1 year ago)
Author:
patrick
Message:

Removed unneded casts. No functional changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/modules/gadgeteer/gadget/Devices/KeyboardMouseDevice/InputWindowXWin.cpp

    r20931 r20932  
    220220         << "Waiting for (thread::self() != NULL)\n" << vprDEBUG_FLUSH; 
    221221   } 
    222    mThread = (vpr::Thread*) vpr::Thread::self(); 
     222   mThread = vpr::Thread::self(); 
    223223 
    224224   // Open the local X window 
     
    256256   // Exit, cleanup code 
    257257   XDestroyWindow(mXDisplay, mXWindow); 
    258    XCloseDisplay((::Display*) mXDisplay); 
     258   XCloseDisplay(mXDisplay); 
    259259} 
    260260