summaryrefslogtreecommitdiffstats
path: root/include/svtools/editbrowsebox.hxx
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/svtools/editbrowsebox.hxx
parentloplugin:cstylecast: deal with remaining pointer casts (diff)
downloadcore-95f03f49940f88ebd49a02e1d133cf83259eef47.tar.gz
core-95f03f49940f88ebd49a02e1d133cf83259eef47.zip
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: I0df3b3737e02e6467fc9d71bc948a58797582173
Diffstat (limited to 'include/svtools/editbrowsebox.hxx')
-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; }