diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-11-11 20:06:32 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-11-11 23:36:17 +0100 |
commit | b73c66597884f03443ee8888cb6c204b78bb6cda (patch) | |
tree | ceb85c76e960bcc8009361d143129767d6b9fe99 /vcl/android | |
parent | 0e5fd59f220e8ea2073435d8cac4c8566accf488 (diff) |
Replace list by vector for ShowNativeDialog (vcl)
Change-Id: I1101c5b5426507ce8e5fd1ed34930f385f527775
Reviewed-on: https://gerrit.libreoffice.org/44639
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/android')
-rw-r--r-- | vcl/android/androidinst.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index 7bf18338a3fe..ae0399518c56 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -82,7 +82,7 @@ public: virtual ~AndroidSalSystem() {} virtual int ShowNativeDialog( const OUString& rTitle, const OUString& rMessage, - const std::list< OUString >& rButtons ); + const std::vector< OUString >& rButtons ); }; SalSystem *AndroidSalInstance::CreateSalSystem() @@ -203,7 +203,7 @@ void DestroySalInstance( SalInstance *pInst ) int AndroidSalSystem::ShowNativeDialog( const OUString& rTitle, const OUString& rMessage, - const std::list< OUString >& rButtons ) + const std::vector< OUString >& rButtons ) { (void)rButtons; LOGI("LibreOffice native dialog '%s': '%s'", |