cid#1640468 Dereference after null check
[LibreOffice.git] / offapi / com / sun / star / sheet / ConditionFormatOperator.idl
blobbd93bbecefe9134aace8ab958f44ee0c516a07a5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 module com { module sun { module star { module sheet {
12 constants ConditionFormatOperator
14 const long EQUAL = 0;
16 const long LESS = 1;
18 const long GREATER = 2;
20 const long LESS_EQUAL = 3;
22 const long GREATER_EQUAL = 4;
24 const long NOT_EQUAL = 5;
26 const long BETWEEN = 6;
28 const long NOT_BETWEEN = 7;
30 const long DUPLICATE = 8;
32 const long UNIQUE = 9;
34 const long TOP_N_ELEMENTS = 10;
36 const long BOTTOM_N_ELEMENTS = 11;
38 const long TOP_N_PERCENT = 12;
40 const long BOTTOM_N_PERCENT = 13;
42 const long ABOVE_AVERAGE = 14;
44 const long BELOW_AVERAGE = 15;
46 const long ABOVE_EQUAL_AVERAGE = 16;
48 const long BELOW_EQUAL_AVERAGE = 17;
50 const long ERROR = 18;
52 const long NO_ERROR = 19;
54 const long BEGINS_WITH = 20;
56 const long ENDS_WITH = 21;
58 const long CONTAINS = 22;
60 const long NOT_CONTAINS = 23;
62 const long EXPRESSION = 24;
66 }; }; }; };
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */