summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk/window/gtksalmenu.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/gtk/window/gtksalmenu.cxx')
-rw-r--r--vcl/unx/gtk/window/gtksalmenu.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/gtk/window/gtksalmenu.cxx b/vcl/unx/gtk/window/gtksalmenu.cxx
index 97727a727d54..73ca34b6ce69 100644
--- a/vcl/unx/gtk/window/gtksalmenu.cxx
+++ b/vcl/unx/gtk/window/gtksalmenu.cxx
@@ -483,11 +483,11 @@ static long RefreshMenusUnity(void*, void*)
return 0;
}
-static Link* getRefreshLinkInstance()
+static Link<>* getRefreshLinkInstance()
{
- static Link* pLink = NULL;
+ static Link<>* pLink = NULL;
if(!pLink) {
- pLink = new Link(NULL, &RefreshMenusUnity);
+ pLink = new Link<>(NULL, &RefreshMenusUnity);
}
return pLink;
}