[Libreoffice-commits] core.git: sc/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Sun Apr 17 17:35:43 UTC 2016
sc/source/ui/dbgui/filtdlg.cxx | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
New commits:
commit 92ddd584f1b8777932d86e26120977b9b66af8a4
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Sun Apr 17 19:01:37 2016 +0200
remove define for ERRORBOX
Change-Id: I6b5695fb36143b36d72b4c7a4b072d41d94f6501
Reviewed-on: https://gerrit.libreoffice.org/24167
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
diff --git a/sc/source/ui/dbgui/filtdlg.cxx b/sc/source/ui/dbgui/filtdlg.cxx
index b34041a..01b29e6 100644
--- a/sc/source/ui/dbgui/filtdlg.cxx
+++ b/sc/source/ui/dbgui/filtdlg.cxx
@@ -43,8 +43,6 @@
#include <limits>
-#define ERRORBOX(rid) ScopedVclPtrInstance<MessageDialog>::Create(this, ScGlobal::GetRscString(rid))->Execute()
-
#define QUERY_ENTRY_COUNT 4
#define INVALID_HEADER_POS std::numeric_limits<size_t>::max()
@@ -719,7 +717,7 @@ IMPL_LINK_TYPED( ScFilterDlg, EndDlgHdl, Button*, pBtn, void )
if (!pExpander->get_expanded())
pExpander->set_expanded(true);
- ERRORBOX( STR_INVALID_TABREF );
+ ScopedVclPtrInstance<MessageDialog>::Create(this, ScGlobal::GetRscString(STR_INVALID_TABREF))->Execute();
pEdCopyArea->GrabFocus();
bAreaInputOk = false;
}
More information about the Libreoffice-commits
mailing list