diff options
author | Szymon Kłos <eszkadev@gmail.com> | 2015-06-26 17:54:11 +0200 |
---|---|---|
committer | Szymon Kłos <eszkadev@gmail.com> | 2015-07-16 09:53:15 +0200 |
commit | 0b2ec9b1b32eac9d99c4ea7aa9401168a8cd5da2 (patch) | |
tree | 6f56d428173970a243aaf98943cdeeeb33aa4965 /svtools | |
parent | 3daae54d268d8770508f61cd7545f96a9df1ce49 (diff) |
PlaceEditDialog: temporary error box (showing when auth failed)
Change-Id: I614c62df60e4da4f6bb36438cbd3360484cd518c
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/dialogs/ServerDetailsControls.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/svtools/source/dialogs/ServerDetailsControls.cxx b/svtools/source/dialogs/ServerDetailsControls.cxx index c30b53ba739f..08460cb74f6d 100644 --- a/svtools/source/dialogs/ServerDetailsControls.cxx +++ b/svtools/source/dialogs/ServerDetailsControls.cxx @@ -411,6 +411,10 @@ IMPL_LINK_NOARG( CmisDetailsContainer, RefreshReposHdl ) } catch ( const Exception& ) { + ScopedVclPtrInstance< ErrorBox > pErrorBox( static_cast< vcl::Window* >( NULL ), + WB_OK, + "Auth failed!" ); + pErrorBox->Execute( ); } // Auto-select the first one |