lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / oovbaapi / ooo / vba / access / AcObjectType.idl
blob9b8d6e006c744d47bb38b2bbaf1b88e205117c80
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo { module vba { module access {
3 constants AcObjectType {
4 const long acDataAccessPage = 6;
5 const long acDefault = -1;
6 const long acDiagram = 8;
7 const long acForm = 2;
8 const long acFunction = 10;
9 const long acMacro = 4;
10 const long acModule = 5;
11 const long acQuery = 1;
12 const long acReport = 3;
13 const long acServerView = 7;
14 const long acStoredProcedure = 9;
15 const long acTable = 0;
17 }; }; };
19 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */