diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-02-13 17:41:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-02-16 00:35:34 +0100 |
commit | 6a3f9de585fc0e8e6191db5210729ae6b3730e7d (patch) | |
tree | 5d053ebe13d08608812c2321dd60a6c9c23ffc70 /desktop | |
parent | 7faa218231b7a807412feada3aa1223b43b5626e (diff) |
native dialog initial basis
Change-Id: I392be563e38257390f748c70bb71c67a66778ddd
Reviewed-on: https://gerrit.libreoffice.org/49677
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/app.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index d00adb195ac0..936671f07e58 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1995,7 +1995,7 @@ void Desktop::OpenClients() #elif defined WNT aHelpURL += "&System=WIN"; #endif - Application::GetHelp()->Start(aHelpURL, nullptr); + Application::GetHelp()->Start(aHelpURL, static_cast<const vcl::Window*>(nullptr)); return; } } @@ -2361,7 +2361,7 @@ void Desktop::HandleAppEvent( const ApplicationEvent& rAppEvent ) break; case ApplicationEvent::Type::OpenHelpUrl: // start help for a specific URL - Application::GetHelp()->Start(rAppEvent.GetStringData(), nullptr); + Application::GetHelp()->Start(rAppEvent.GetStringData(), static_cast<vcl::Window*>(nullptr)); break; case ApplicationEvent::Type::Print: { |