summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/window
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-19 15:10:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-20 09:06:54 +0100
commitfe9d002ef55e30aa3629f4e1951beb18ebb692b0 (patch)
tree1c72b3d97c34801d23ab1d9509aa56081e4d401f /vcl/unx/generic/window
parentf6cfe99d22041061b8042cdab05e57180c0ab70a (diff)
Some more loplugin:cstylecast: vcl
Change-Id: I74d35630b9fcdaa97af0b1f1e6d1e5c72488964d
Diffstat (limited to 'vcl/unx/generic/window')
-rw-r--r--vcl/unx/generic/window/FWS.cxx8
-rw-r--r--vcl/unx/generic/window/salframe.cxx26
2 files changed, 17 insertions, 17 deletions
diff --git a/vcl/unx/generic/window/FWS.cxx b/vcl/unx/generic/window/FWS.cxx
index 97a089d0c4cf..5d4ffd5282f4 100644
--- a/vcl/unx/generic/window/FWS.cxx
+++ b/vcl/unx/generic/window/FWS.cxx
@@ -102,7 +102,7 @@ WMSupportsFWS (Display *display, int screen)
return False;
}
- fwsCommWindow = *(::Window *) propData;
+ fwsCommWindow = *reinterpret_cast< ::Window * >(propData);
#if OSL_DEBUG_LEVEL > 1
fprintf (stderr, "Using fwsCommWindow = 0x%lx.\n", fwsCommWindow);
#endif
@@ -129,7 +129,7 @@ WMSupportsFWS (Display *display, int screen)
for (i = 0; i < propItems; ++i)
{
- protocol = ((Atom *) propData)[i];
+ protocol = reinterpret_cast<Atom *>(propData)[i];
if (protocol == FWS_STACK_UNDER)
{
fwsStackUnder = True;
@@ -208,7 +208,7 @@ RegisterFwsWindow (Display *display, Window window)
oldHandler = XSetErrorHandler (newHandler);
XSendEvent (display, fwsCommWindow, False, NoEventMask,
- (XEvent *) &msg);
+ reinterpret_cast<XEvent *>(&msg));
XSync (display, False);
XSetErrorHandler (oldHandler);
@@ -235,7 +235,7 @@ AddFwsProtocols (Display *display, Window window)
fwsProtocols[ nProtos++ ] = FWS_PASS_ALL_INPUT;
XChangeProperty (display, window, WM_PROTOCOLS,
XA_ATOM, 32, PropModeAppend,
- (unsigned char *) fwsProtocols, nProtos);
+ reinterpret_cast<unsigned char *>(fwsProtocols), nProtos);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/unx/generic/window/salframe.cxx b/vcl/unx/generic/window/salframe.cxx
index 52e10567b298..a018b5bde8d9 100644
--- a/vcl/unx/generic/window/salframe.cxx
+++ b/vcl/unx/generic/window/salframe.cxx
@@ -676,7 +676,7 @@ void X11SalFrame::Init( sal_uLong nSalFrameStyle, SalX11Screen nXScreen, SystemP
XA_WINDOW,
32,
PropModeReplace,
- (unsigned char*)&aClientLeader,
+ reinterpret_cast<unsigned char*>(&aClientLeader),
1
);
}
@@ -739,7 +739,7 @@ void X11SalFrame::Init( sal_uLong nSalFrameStyle, SalX11Screen nXScreen, SystemP
if( !netwm_icon.empty() && GetDisplay()->getWMAdaptor()->getAtom( WMAdaptor::NET_WM_ICON ))
XChangeProperty( GetXDisplay(), mhWindow,
GetDisplay()->getWMAdaptor()->getAtom( WMAdaptor::NET_WM_ICON ),
- XA_CARDINAL, 32, PropModeReplace, (unsigned char*)&netwm_icon.front(), netwm_icon.size());
+ XA_CARDINAL, 32, PropModeReplace, reinterpret_cast<unsigned char*>(&netwm_icon.front()), netwm_icon.size());
}
m_nWorkArea = GetDisplay()->getWMAdaptor()->getCurrentWorkArea();
@@ -1094,7 +1094,7 @@ void X11SalFrame::SetIcon( sal_uInt16 nIcon )
if( !netwm_icon.empty() && GetDisplay()->getWMAdaptor()->getAtom( WMAdaptor::NET_WM_ICON ))
XChangeProperty( GetXDisplay(), mhWindow,
GetDisplay()->getWMAdaptor()->getAtom( WMAdaptor::NET_WM_ICON ),
- XA_CARDINAL, 32, PropModeReplace, (unsigned char*)&netwm_icon.front(), netwm_icon.size());
+ XA_CARDINAL, 32, PropModeReplace, reinterpret_cast<unsigned char*>(&netwm_icon.front()), netwm_icon.size());
}
}
}
@@ -1501,8 +1501,8 @@ void X11SalFrame::Center( )
pFrame->GetShellWindow(),
&aRoot,
&nScreenX, &nScreenY,
- (unsigned int*)&nScreenWidth,
- (unsigned int*)&nScreenHeight,
+ reinterpret_cast<unsigned int*>(&nScreenWidth),
+ reinterpret_cast<unsigned int*>(&nScreenHeight),
&bw, &depth );
}
else
@@ -2231,7 +2231,7 @@ IsRunningXAutoLock( Display *p_display, ::Window a_window )
// get pid of running xautolock
XGetWindowProperty (p_display, a_window, a_pidatom, 0L, 2L, False,
AnyPropertyType, &a_type, &n_format, &n_items, &n_bytes_after,
- (unsigned char**) &p_pid );
+ reinterpret_cast<unsigned char**>(&p_pid) );
n_pid = *p_pid;
XFree( p_pid );
@@ -2270,7 +2270,7 @@ MessageToXAutoLock( Display *p_display, int n_message )
a_messageatom = XInternAtom( p_display, p_atomname, False );
XChangeProperty (p_display, a_rootwindow, a_messageatom, XA_INTEGER,
- 8, PropModeReplace, (unsigned char*)&n_message, sizeof(n_message) );
+ 8, PropModeReplace, reinterpret_cast<unsigned char*>(&n_message), sizeof(n_message) );
return True;
}
@@ -3306,7 +3306,7 @@ long X11SalFrame::HandleKeyEvent( XKeyEvent *pEvent )
// convert to single byte text stream
nSize = rtl_convertTextToUnicode(
aConverter, aContext,
- (char*)pPrintable, nLen,
+ reinterpret_cast<char*>(pPrintable), nLen,
pBuffer, nBufferSize,
RTL_TEXTTOUNICODE_FLAGS_UNDEFINED_IGNORE |
RTL_TEXTTOUNICODE_FLAGS_INVALID_IGNORE,
@@ -3320,7 +3320,7 @@ long X11SalFrame::HandleKeyEvent( XKeyEvent *pEvent )
}
else if (nLen > 0 /* nEncoding == RTL_TEXTENCODING_UNICODE */)
{
- pString = (sal_Unicode*)pPrintable;
+ pString = reinterpret_cast<sal_Unicode*>(pPrintable);
nSize = nLen;
}
else
@@ -3894,9 +3894,9 @@ long X11SalFrame::HandleStateEvent( XPropertyEvent *pEvent )
&& 2 == nitems
&& 0 == bytes_after, "HandleStateEvent" );
- if( *(unsigned long*)prop == NormalState )
+ if( *reinterpret_cast<unsigned long*>(prop) == NormalState )
nShowState_ = SHOWSTATE_NORMAL;
- else if( *(unsigned long*)prop == IconicState )
+ else if( *reinterpret_cast<unsigned long*>(prop) == IconicState )
nShowState_ = SHOWSTATE_MINIMIZED;
XFree( prop );
@@ -3974,7 +3974,7 @@ Bool call_checkKeyReleaseForRepeat( Display* pDisplay, XEvent* pCheck, XPointer
Bool X11SalFrame::checkKeyReleaseForRepeat( Display*, XEvent* pCheck, XPointer pX11SalFrame )
{
- X11SalFrame* pThis = (X11SalFrame*)pX11SalFrame;
+ X11SalFrame* pThis = reinterpret_cast<X11SalFrame*>(pX11SalFrame);
return
pCheck->type == KeyPress &&
pCheck->xkey.state == pThis->nKeyState_ &&
@@ -4010,7 +4010,7 @@ long X11SalFrame::Dispatch( XEvent *pEvent )
{
nReleaseTime_ = pEvent->xkey.time;
XEvent aEvent;
- if( XCheckIfEvent( pEvent->xkey.display, &aEvent, call_checkKeyReleaseForRepeat, (XPointer)this ) )
+ if( XCheckIfEvent( pEvent->xkey.display, &aEvent, call_checkKeyReleaseForRepeat, reinterpret_cast<XPointer>(this) ) )
XPutBackEvent( pEvent->xkey.display, &aEvent );
else
nRet = HandleKeyEvent( &pEvent->xkey );