lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / oovbaapi / ooo / vba / VbMsgBoxResult.idl
blob70778fc7bdd3da2d736dace75f5b310cb2261157
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo { module vba {
3 constants VbMsgBoxResult {
4 const long vbAbort = 3;
5 const long vbCancel = 2;
6 const long vbIgnore = 5;
7 const long vbNo = 7;
8 const long vbOK = 1;
9 const long vbRetry = 4;
10 const long vbYes = 6;
12 }; };
14 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */