summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-08 16:28:33 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-08 16:28:33 +0200
commit95f03f49940f88ebd49a02e1d133cf83259eef47 (patch)
treea9c91e5f9719f2b5668bd2ffda66eae691194888 /include
parent58f60b5108c584aa44f353f2fcbd07b81d474e48 (diff)
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: I0df3b3737e02e6467fc9d71bc948a58797582173
Diffstat (limited to 'include')
-rw-r--r--include/svtools/editbrowsebox.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/editbrowsebox.hxx b/include/svtools/editbrowsebox.hxx
index 27c249549251..d2dd6de07466 100644
--- a/include/svtools/editbrowsebox.hxx
+++ b/include/svtools/editbrowsebox.hxx
@@ -503,7 +503,7 @@ namespace svt
bool isGetCellFocusPending() const { return nStartEvent != 0; }
void cancelGetCellFocus() { if (nStartEvent) Application::RemoveUserEvent(nStartEvent); nStartEvent = 0; }
- void forceGetCellFocus() { cancelGetCellFocus(); LINK(this, EditBrowseBox, StartEditHdl).Call((void*)NULL); }
+ void forceGetCellFocus() { cancelGetCellFocus(); LINK(this, EditBrowseBox, StartEditHdl).Call(nullptr); }
BrowserMouseEventPtr& getMouseEvent() { return aMouseEvent; }