summaryrefslogtreecommitdiff
path: root/include/svx/xdef.hxx
blob: aa539648cad0ffeefb198e210b59c7f5720a0adb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef INCLUDED_SVX_XDEF_HXX
#define INCLUDED_SVX_XDEF_HXX


#include <svl/typedwhich.hxx>

/*************************************************************************
|*
|* Adding an attribute: Copy line, above which you want to add something,
|* change the label and add it at the end of the following line, too
|*
\************************************************************************/

class SfxMetricItem;
class XFillAttrSetItem;
class XFillBackgroundItem;
class XFillBitmapItem;
class XFillBmpPosItem;
class XFillBmpPosOffsetXItem;
class XFillBmpPosOffsetYItem;
class XFillBmpSizeLogItem;
class XFillBmpSizeYItem;
class XFillBmpStretchItem;
class XFillBmpTileItem;
class XFillBmpTileOffsetXItem;
class XFillBmpTileOffsetYItem;
class XFillColorItem;
class XFillFloatTransparenceItem;
class XFillGradientItem;
class XFillHatchItem;
class XFillStyleItem;
class XFillTransparenceItem;
class XFormTextAdjustItem;
class XFormTextDistanceItem;
class XFormTextHideFormItem;
class XFormTextMirrorItem;
class XFormTextOutlineItem;
class XFormTextShadowColorItem;
class XFormTextShadowItem;
class XFormTextShadowTranspItem;
class XFormTextShadowXValItem;
class XFormTextShadowYValItem;
class XFormTextStartItem;
class XFormTextStyleItem;
class XGradientStepCountItem;
class XLineAttrSetItem;
class XLineCapItem;
class XLineColorItem;
class XLineDashItem;
class XLineEndCenterItem;
class XLineEndItem;
class XLineEndWidthItem;
class XLineJointItem;
class XLineStartCenterItem;
class XLineStartItem;
class XLineStartWidthItem;
class XLineStyleItem;
class XLineTransparenceItem;
class XLineWidthItem;
class XSecondaryFillColorItem;

#define COL_DEFAULT_FONT          ::Color(0xC9211E)         // dark red 2
#define COL_DEFAULT_FRAMELINE     ::Color(0x2A6099)         // blue
#define COL_DEFAULT_HIGHLIGHT     ::Color(0xFFFF00)         // yellow
#define COL_DEFAULT_SHAPE_FILLING ::Color(0x729fcf)         // light blue 2
#define COL_DEFAULT_SHAPE_STROKE  ::Color(0x3465a4)         // dark blue 1

#define XATTR_START             1000

#define XATTR_LINE_FIRST        XATTR_START                     /* V3: 1000  V2: 1000 */
#define XATTR_LINESTYLE         TypedWhichId<XLineStyleItem>(XATTR_LINE_FIRST)
#define XATTR_LINEDASH          TypedWhichId<XLineDashItem>(XATTR_LINE_FIRST + 1)          /* V3: 1001  V2: 1001 */
#define XATTR_LINEWIDTH         TypedWhichId<XLineWidthItem>(XATTR_LINE_FIRST + 2)          /* V3: 1002  V2: 1002 */
#define XATTR_LINECOLOR         TypedWhichId<XLineColorItem>(XATTR_LINE_FIRST + 3)          /* V3: 1003  V2: 1003 */
#define XATTR_LINESTART         TypedWhichId<XLineStartItem>(XATTR_LINE_FIRST + 4)          /* V3: 1004  V2: 1004 */
#define XATTR_LINEEND           TypedWhichId<XLineEndItem>(XATTR_LINE_FIRST + 5)          /* V3: 1005  V2: 1005 */
#define XATTR_LINESTARTWIDTH    TypedWhichId<XLineStartWidthItem>(XATTR_LINE_FIRST + 6)          /* V3: 1006  V2: 1006 */
#define XATTR_LINEENDWIDTH      TypedWhichId<XLineEndWidthItem>(XATTR_LINE_FIRST + 7)          /* V3: 1007  V2: 1007 */
#define XATTR_LINESTARTCENTER   TypedWhichId<XLineStartCenterItem>(XATTR_LINE_FIRST + 8)          /* V3: 1008  V2: 1008 */
#define XATTR_LINEENDCENTER     TypedWhichId<XLineEndCenterItem>(XATTR_LINE_FIRST + 9)          /* V3: 1009  V2: 1009 */
#define XATTR_LINETRANSPARENCE  TypedWhichId<XLineTransparenceItem>(XATTR_LINE_FIRST + 10)         /* V3: 1010  V2: 1010 */
#define XATTR_LINEJOINT         TypedWhichId<XLineJointItem>(XATTR_LINE_FIRST + 11)         /* V3: 1011  V2: 1011 */
#define XATTR_LINECAP           TypedWhichId<XLineCapItem>(XATTR_LINE_FIRST + 12)         /* V3: 1012 */
#define XATTR_LINE_LAST         XATTR_LINECAP
#define XATTRSET_LINE           TypedWhichId<XLineAttrSetItem>(XATTR_LINE_LAST + 1)           /* V3: 1017  V2: 1017 */

#define XATTR_FILL_FIRST            sal_uInt16(XATTRSET_LINE + 1)         /* V3: 1018  V2: 1018 */
#define XATTR_FILLSTYLE             TypedWhichId<XFillStyleItem>(XATTR_FILL_FIRST)
#define XATTR_FILLCOLOR             TypedWhichId<XFillColorItem>(XATTR_FILL_FIRST + 1)      /* V3: 1019  V2: 1019 */
#define XATTR_FILLGRADIENT          TypedWhichId<XFillGradientItem>(XATTR_FILL_FIRST + 2)      /* V3: 1020  V2: 1020 */
#define XATTR_FILLHATCH             TypedWhichId<XFillHatchItem>(XATTR_FILL_FIRST + 3)      /* V3: 1021  V2: 1021 */
#define XATTR_FILLBITMAP            TypedWhichId<XFillBitmapItem>(XATTR_FILL_FIRST + 4)      /* V3: 1022  V2: 1022 */
#define XATTR_FILLTRANSPARENCE      TypedWhichId<XFillTransparenceItem>(XATTR_FILL_FIRST + 5)      /* V3: 1023  V2: 1023 */
#define XATTR_GRADIENTSTEPCOUNT     TypedWhichId<XGradientStepCountItem>(XATTR_FILL_FIRST + 6)      /* V3: 1024  V2: 1024 */
#define XATTR_FILLBMP_TILE          TypedWhichId<XFillBmpTileItem>(XATTR_FILL_FIRST + 7)      /* V3: 1025  V2: 1025 */
#define XATTR_FILLBMP_POS           TypedWhichId<XFillBmpPosItem>(XATTR_FILL_FIRST + 8)      /* V3: 1026  V2: 1026 */
#define XATTR_FILLBMP_SIZEX         TypedWhichId<SfxMetricItem>(XATTR_FILL_FIRST + 9)      /* V3: 1027  V2: 1027 */
#define XATTR_FILLBMP_SIZEY         TypedWhichId<XFillBmpSizeYItem>(XATTR_FILL_FIRST + 10)     /* V3: 1028  V2: 1028 */
#define XATTR_FILLFLOATTRANSPARENCE TypedWhichId<XFillFloatTransparenceItem>(XATTR_FILL_FIRST + 11)     /* V3: 1029  V2: 1029 */
#define XATTR_SECONDARYFILLCOLOR    TypedWhichId<XSecondaryFillColorItem>(XATTR_FILL_FIRST + 12)     /* V3: 1030 */
#define XATTR_FILLBMP_SIZELOG       TypedWhichId<XFillBmpSizeLogItem>(XATTR_FILL_FIRST + 13)     /* V3: 1031 */
#define XATTR_FILLBMP_TILEOFFSETX   TypedWhichId<XFillBmpTileOffsetXItem>(XATTR_FILL_FIRST + 14)     /* V3: 1032 */
#define XATTR_FILLBMP_TILEOFFSETY   TypedWhichId<XFillBmpTileOffsetYItem>(XATTR_FILL_FIRST + 15)     /* V3: 1033 */
#define XATTR_FILLBMP_STRETCH       TypedWhichId<XFillBmpStretchItem>(XATTR_FILL_FIRST + 16)     /* V3: 1034 */
#define XATTR_FILLBMP_POSOFFSETX    TypedWhichId<XFillBmpPosOffsetXItem>(XATTR_FILL_FIRST + 17)     /* V3: 1041 */
#define XATTR_FILLBMP_POSOFFSETY    TypedWhichId<XFillBmpPosOffsetYItem>(XATTR_FILL_FIRST + 18)     /* V3: 1042 */
#define XATTR_FILLBACKGROUND        TypedWhichId<XFillBackgroundItem>(XATTR_FILL_FIRST + 19)     /* V3: 1043 */
#define XATTR_FILL_LAST             sal_uInt16(XATTR_FILLBACKGROUND)
#define XATTRSET_FILL               TypedWhichId<XFillAttrSetItem>(XATTR_FILL_LAST + 1)           /* V3: 1047  V2: 1030 */

#define XATTR_TEXT_FIRST        (XATTRSET_FILL + 1)
#define XATTR_FORMTXTSTYLE      TypedWhichId<XFormTextStyleItem>(XATTR_TEXT_FIRST)                /* V3: 1048  V2: 1031 */
#define XATTR_FORMTXTADJUST     TypedWhichId<XFormTextAdjustItem>(XATTR_TEXT_FIRST + 1)          /* V3: 1049  V2: 1032 */
#define XATTR_FORMTXTDISTANCE   TypedWhichId<XFormTextDistanceItem>(XATTR_TEXT_FIRST + 2)          /* V3: 1050  V2: 1033 */
#define XATTR_FORMTXTSTART      TypedWhichId<XFormTextStartItem>(XATTR_TEXT_FIRST + 3)          /* V3: 1051  V2: 1034 */
#define XATTR_FORMTXTMIRROR     TypedWhichId<XFormTextMirrorItem>(XATTR_TEXT_FIRST + 4)          /* V3: 1052  V2: 1035 */
#define XATTR_FORMTXTOUTLINE    TypedWhichId<XFormTextOutlineItem>(XATTR_TEXT_FIRST + 5)          /* V3: 1053  V2: 1036 */
#define XATTR_FORMTXTSHADOW     TypedWhichId<XFormTextShadowItem>(XATTR_TEXT_FIRST + 6)          /* V3: 1054  V2: 1037 */
#define XATTR_FORMTXTSHDWCOLOR  TypedWhichId<XFormTextShadowColorItem>(XATTR_TEXT_FIRST + 7)          /* V3: 1055  V2: 1038 */
#define XATTR_FORMTXTSHDWXVAL   TypedWhichId<XFormTextShadowXValItem>(XATTR_TEXT_FIRST + 8)          /* V3: 1056  V2: 1039 */
#define XATTR_FORMTXTSHDWYVAL   TypedWhichId<XFormTextShadowYValItem>(XATTR_TEXT_FIRST + 9)          /* V3: 1057  V2: 1040 */
#define XATTR_FORMTXTHIDEFORM   TypedWhichId<XFormTextHideFormItem>(XATTR_TEXT_FIRST + 10)         /* V3: 1059  V2: 1042 */
#define XATTR_FORMTXTSHDWTRANSP TypedWhichId<XFormTextShadowTranspItem>(XATTR_TEXT_FIRST + 11)         /* V3: 1060  V2: 1043 */
#define XATTR_TEXT_LAST         XATTR_FORMTXTSHDWTRANSP

#define XATTR_END               XATTR_TEXT_LAST

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
table summary='file diffstat' width='100%'> -rw-r--r--UnoControls/source/inc/statusindicator.hxx416
-rwxr-xr-xaccessibility/bridge/org/openoffice/accessibility/AccessBridge.java28
-rwxr-xr-xaccessibility/bridge/org/openoffice/accessibility/KeyHandler.java44
-rw-r--r--accessibility/bridge/org/openoffice/accessibility/PopupWindow.java2
-rw-r--r--accessibility/bridge/org/openoffice/accessibility/WindowsAccessBridgeAdapter.java32
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AbstractButton.java38
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleActionImpl.java12
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleComponentImpl.java82
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleEditableTextImpl.java102
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleExtendedState.java8
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleHypertextImpl.java38
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleIconImpl.java16
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleKeyBinding.java32
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleObjectFactory.java98
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleRelationAdapter.java14
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleRoleAdapter.java20
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleSelectionImpl.java8
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleStateAdapter.java36
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleTextImpl.java40
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/AccessibleValueImpl.java16
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Alert.java16
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Application.java8
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Button.java26
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/CheckBox.java4
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/ComboBox.java4
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Component.java198
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Container.java226
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/DescendantManager.java2
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Dialog.java196
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/FocusTraversalPolicy.java16
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Frame.java200
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Icon.java2
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Label.java6
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/List.java116
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Menu.java8
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/MenuContainer.java18
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/MenuItem.java22
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/NativeFrame.java2
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Paragraph.java42
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/RadioButton.java2
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/ScrollBar.java36
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Separator.java2
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Table.java136
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/TextComponent.java46
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/ToggleButton.java2
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/ToolTip.java6
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Tree.java136
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/Window.java174
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleEventLog.java36
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleHypertextLog.java12
-rw-r--r--accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleTextLog.java8
-rw-r--r--accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx54
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx16
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx16
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxCheckBoxCell.hxx8
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderBar.hxx2
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderCell.hxx4
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxTable.hxx2
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableBase.hxx4
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableCell.hxx16
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControl.hxx14
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlBase.hxx16
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlHeader.hxx2
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlHeaderCell.hxx4
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleGridControlTable.hxx2
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlTableBase.hxx2
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleGridControlTableCell.hxx30
-rwxr-xr-xaccessibility/inc/accessibility/extended/AccessibleToolPanelDeck.hxx2
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleToolPanelDeckTabBar.hxx2
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleToolPanelDeckTabBarItem.hxx2
-rw-r--r--accessibility/inc/accessibility/extended/accessiblebrowseboxcell.hxx18
-rw-r--r--accessibility/inc/accessibility/extended/accessibleeditbrowseboxcell.hxx26
-rw-r--r--accessibility/inc/accessibility/extended/accessibleiconchoicectrl.hxx14
-rw-r--r--accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx44
-rw-r--r--accessibility/inc/accessibility/extended/accessiblelistbox.hxx20
-rw-r--r--accessibility/inc/accessibility/extended/accessiblelistboxentry.hxx36
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbar.hxx24
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbarbase.hxx2
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbarpage.hxx50
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbarpagelist.hxx42
-rw-r--r--accessibility/inc/accessibility/extended/accessibletablistbox.hxx6
-rw-r--r--accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx8
-rw-r--r--accessibility/inc/accessibility/extended/listboxaccessible.hxx16
-rw-r--r--accessibility/inc/accessibility/extended/textwindowaccessibility.hxx26
-rw-r--r--accessibility/inc/accessibility/helper/IComboListBoxHelper.hxx30
-rw-r--r--accessibility/inc/accessibility/helper/acc_factory.hxx2
-rw-r--r--accessibility/inc/accessibility/helper/accessiblestrings.hrc20
-rw-r--r--accessibility/inc/accessibility/helper/accresmgr.hxx4
-rw-r--r--accessibility/inc/accessibility/helper/characterattributeshelper.hxx4
-rw-r--r--accessibility/inc/accessibility/helper/listboxhelper.hxx32
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenubasecomponent.hxx80
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenucomponent.hxx22
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenuitemcomponent.hxx44
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblebox.hxx2
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblebutton.hxx8
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblecheckbox.hxx10
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblecombobox.hxx8
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibledropdowncombobox.hxx8
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibledropdownlistbox.hxx8
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibleedit.hxx22
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblefixedhyperlink.hxx6
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblefixedtext.hxx8
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx24
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistbox.hxx8
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistboxlist.hxx12
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistitem.hxx50
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenu.hxx14
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenubar.hxx18
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenuitem.hxx20
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenuseparator.hxx10
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblepopupmenu.hxx12
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibleradiobutton.hxx10
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblescrollbar.hxx8
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblestatusbar.hxx30
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblestatusbaritem.hxx54
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabcontrol.hxx38
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabpage.hxx48
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabpagewindow.hxx18
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletextcomponent.hxx28
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx4
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletoolbox.hxx38
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletoolboxitem.hxx50
-rw-r--r--accessibility/inc/pch/precompiled_accessibility.cxx2
-rw-r--r--accessibility/inc/pch/precompiled_accessibility.hxx2
-rw-r--r--accessibility/source/extended/AccessibleBrowseBox.cxx22
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxBase.cxx2
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxCheckBoxCell.cxx6
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx2
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxHeaderCell.cxx2
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTable.cxx2
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx2
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTableCell.cxx2
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControl.cxx20
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlBase.cxx2
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlHeader.cxx2
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlHeaderCell.cxx2
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlTable.cxx4
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlTableBase.cxx2
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlTableCell.cxx4
-rwxr-xr-xaccessibility/source/extended/AccessibleToolPanelDeck.cxx8
-rw-r--r--accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx2
-rw-r--r--accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx30
-rw-r--r--accessibility/source/extended/accessiblebrowseboxcell.cxx4
-rw-r--r--accessibility/source/extended/accessibleeditbrowseboxcell.cxx8
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrl.cxx4
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrlentry.cxx18
-rw-r--r--accessibility/source/extended/accessiblelistbox.cxx4
-rw-r--r--accessibility/source/extended/accessiblelistboxentry.cxx16
-rw-r--r--accessibility/source/extended/accessibletabbar.cxx24
-rw-r--r--accessibility/source/extended/accessibletabbarbase.cxx2
-rw-r--r--accessibility/source/extended/accessibletabbarpage.cxx30
-rw-r--r--accessibility/source/extended/accessibletabbarpagelist.cxx8
-rw-r--r--accessibility/source/extended/accessibletablistbox.cxx2
-rw-r--r--accessibility/source/extended/accessibletablistboxtable.cxx4
-rw-r--r--accessibility/source/extended/listboxaccessible.cxx4
-rw-r--r--accessibility/source/extended/textwindowaccessibility.cxx64
-rwxr-xr-xaccessibility/source/helper/acc_factory.cxx6
-rw-r--r--accessibility/source/helper/accessiblestrings.src2
-rw-r--r--accessibility/source/helper/accresmgr.cxx2
-rw-r--r--accessibility/source/helper/characterattributeshelper.cxx2
-rw-r--r--accessibility/source/inc/floatingwindowaccessible.hxx4
-rw-r--r--accessibility/source/standard/accessiblemenubasecomponent.cxx6
-rw-r--r--accessibility/source/standard/accessiblemenucomponent.cxx22
-rw-r--r--accessibility/source/standard/accessiblemenuitemcomponent.cxx34
-rw-r--r--accessibility/source/standard/floatingwindowaccessible.cxx2
-rw-r--r--accessibility/source/standard/vclxaccessiblebox.cxx2
-rw-r--r--accessibility/source/standard/vclxaccessiblebutton.cxx10
-rw-r--r--accessibility/source/standard/vclxaccessiblecheckbox.cxx16
-rw-r--r--accessibility/source/standard/vclxaccessiblecombobox.cxx8
-rw-r--r--accessibility/source/standard/vclxaccessibledropdowncombobox.cxx12
-rw-r--r--accessibility/source/standard/vclxaccessibledropdownlistbox.cxx10
-rw-r--r--accessibility/source/standard/vclxaccessibleedit.cxx12
-rw-r--r--accessibility/source/standard/vclxaccessiblefixedhyperlink.cxx2
-rw-r--r--accessibility/source/standard/vclxaccessiblefixedtext.cxx2
-rw-r--r--accessibility/source/standard/vclxaccessiblelist.cxx44
-rw-r--r--accessibility/source/standard/vclxaccessiblelistbox.cxx8
-rw-r--r--accessibility/source/standard/vclxaccessiblelistitem.cxx20
-rw-r--r--accessibility/source/standard/vclxaccessiblemenu.cxx12
-rw-r--r--accessibility/source/standard/vclxaccessiblemenubar.cxx2
-rw-r--r--accessibility/source/standard/vclxaccessiblemenuitem.cxx50
-rw-r--r--accessibility/source/standard/vclxaccessiblemenuseparator.cxx2
-rw-r--r--accessibility/source/standard/vclxaccessiblepopupmenu.cxx4
-rw-r--r--accessibility/source/standard/vclxaccessibleradiobutton.cxx14
-rw-r--r--accessibility/source/standard/vclxaccessiblescrollbar.cxx30
-rw-r--r--accessibility/source/standard/vclxaccessiblestatusbar.cxx28
-rw-r--r--accessibility/source/standard/vclxaccessiblestatusbaritem.cxx22
-rw-r--r--accessibility/source/standard/vclxaccessibletabcontrol.cxx18
-rw-r--r--accessibility/source/standard/vclxaccessibletabpage.cxx28
-rw-r--r--accessibility/source/standard/vclxaccessibletabpagewindow.cxx12
-rw-r--r--accessibility/source/standard/vclxaccessibletextcomponent.cxx40
-rw-r--r--accessibility/source/standard/vclxaccessibletextfield.cxx2
-rw-r--r--accessibility/source/standard/vclxaccessibletoolbox.cxx22
-rw-r--r--accessibility/source/standard/vclxaccessibletoolboxitem.cxx42
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java80
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/HelpWindow.java2
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java40
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java46
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/MouseObserver.java4
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/ShapeContainer.java12
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java26
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java28
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java12
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java10
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java22
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java8
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/ToolkitNode.java28
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java16
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java4
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java4
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java2
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java2
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java2
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ObjectView.java2
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java22
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ParentView.java6
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java14
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ServiceInterfaceView.java4
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/StateSetView.java6
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java6
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/TextView.java30
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ViewGridLayout.java4
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java6
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextActionDialog.java34
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java50
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java22
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java10
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java22
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/InformationWriter.java90
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/MessageArea.java2
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/NameProvider.java2
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/OfficeConnection.java24
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/Options.java4
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/SimpleOffice.java38
-rwxr-xr-xagg/inc/agg_alpha_mask_u8.h76
-rwxr-xr-xagg/inc/agg_arc.h18
-rwxr-xr-xagg/inc/agg_array.h96
-rwxr-xr-xagg/inc/agg_arrowhead.h8
-rwxr-xr-xagg/inc/agg_basics.h58
-rwxr-xr-xagg/inc/agg_bezier_arc.h54
-rwxr-xr-xagg/inc/agg_bitset_iterator.h6
-rwxr-xr-xagg/inc/agg_bounding_rect.h10
-rwxr-xr-xagg/inc/agg_bspline.h18
-rwxr-xr-xagg/inc/agg_clip_liang_barsky.h78
-rwxr-xr-xagg/inc/agg_color_gray.h8
-rwxr-xr-xagg/inc/agg_color_rgba.h70
-rwxr-xr-xagg/inc/agg_config.h6
-rwxr-xr-xagg/inc/agg_conv_adaptor_vcgen.h22
-rwxr-xr-xagg/inc/agg_conv_adaptor_vpgen.h16
-rwxr-xr-xagg/inc/agg_conv_bspline.h10
-rwxr-xr-xagg/inc/agg_conv_clip_polygon.h18
-rwxr-xr-xagg/inc/agg_conv_clip_polyline.h18
-rwxr-xr-xagg/inc/agg_conv_close_polygon.h12
-rwxr-xr-xagg/inc/agg_conv_concat.h10
-rwxr-xr-xagg/inc/agg_conv_contour.h10
-rwxr-xr-xagg/inc/agg_conv_curve.h66
-rwxr-xr-xagg/inc/agg_conv_dash.h28
-rwxr-xr-xagg/inc/agg_conv_gpc.h42
-rwxr-xr-xagg/inc/agg_conv_marker.h14
-rwxr-xr-xagg/inc/agg_conv_marker_adaptor.h10
-rwxr-xr-xagg/inc/agg_conv_segmentator.h10
-rwxr-xr-xagg/inc/agg_conv_shorten_path.h10
-rwxr-xr-xagg/inc/agg_conv_smooth_poly1.h18
-rwxr-xr-xagg/inc/agg_conv_stroke.h12
-rwxr-xr-xagg/inc/agg_conv_transform.h12
-rwxr-xr-xagg/inc/agg_conv_unclose_polygon.h6
-rwxr-xr-xagg/inc/agg_curves.h62
-rwxr-xr-xagg/inc/agg_dda_line.h12
-rwxr-xr-xagg/inc/agg_ellipse.h10
-rwxr-xr-xagg/inc/agg_ellipse_bresenham.h24
-rwxr-xr-xagg/inc/agg_embedded_raster_fonts.h4
-rwxr-xr-xagg/inc/agg_font_cache_manager.h38
-rwxr-xr-xagg/inc/agg_gamma_functions.h4
-rwxr-xr-xagg/inc/agg_gamma_lut.h28
-rwxr-xr-xagg/inc/agg_glyph_raster_bin.h10
-rwxr-xr-xagg/inc/agg_gsv_text.h20
-rwxr-xr-xagg/inc/agg_image_filters.h32
-rwxr-xr-xagg/inc/agg_line_aa_basics.h48
-rwxr-xr-xagg/inc/agg_math.h38
-rwxr-xr-xagg/inc/agg_math_stroke.h66
-rwxr-xr-xagg/inc/agg_path_storage.h72
-rwxr-xr-xagg/inc/agg_path_storage_integer.h30
-rwxr-xr-xagg/inc/agg_pattern_filters_rgba.h14
-rwxr-xr-xagg/inc/agg_pixfmt_amask_adaptor.h36
-rwxr-xr-xagg/inc/agg_pixfmt_gray.h92
-rwxr-xr-xagg/inc/agg_pixfmt_rgb.h136
-rwxr-xr-xagg/inc/agg_pixfmt_rgb_packed.h272
-rwxr-xr-xagg/inc/agg_pixfmt_rgba.h182
-rwxr-xr-xagg/inc/agg_rasterizer_outline.h20
-rwxr-xr-xagg/inc/agg_rasterizer_outline_aa.h90
-rwxr-xr-xagg/inc/agg_rasterizer_scanline_aa.h156
-rwxr-xr-xagg/inc/agg_render_scanlines.h14
-rwxr-xr-xagg/inc/agg_renderer_base.h80
-rwxr-xr-xagg/inc/agg_renderer_markers.h72
-rwxr-xr-xagg/inc/agg_renderer_mclip.h72
-rwxr-xr-xagg/inc/agg_renderer_outline_aa.h310
-rwxr-xr-xagg/inc/agg_renderer_outline_image.h230
-rwxr-xr-xagg/inc/agg_renderer_primitives.h16
-rwxr-xr-xagg/inc/agg_renderer_raster_text.h22
-rwxr-xr-xagg/inc/agg_renderer_scanline.h84
-rwxr-xr-xagg/inc/agg_rendering_buffer.h18
-rwxr-xr-xagg/inc/agg_rendering_buffer_dynarow.h14
-rwxr-xr-xagg/inc/agg_rounded_rect.h6
-rwxr-xr-xagg/inc/agg_scanline_bin.h22
-rwxr-xr-xagg/inc/agg_scanline_boolean_algebra.h498
-rwxr-xr-xagg/inc/agg_scanline_p.h24
-rwxr-xr-xagg/inc/agg_scanline_storage_aa.h22
-rwxr-xr-xagg/inc/agg_scanline_storage_bin.h8
-rwxr-xr-xagg/inc/agg_scanline_u.h54
-rwxr-xr-xagg/inc/agg_shorten_path.h6
-rwxr-xr-xagg/inc/agg_simul_eq.h10
-rwxr-xr-xagg/inc/agg_span_allocator.h8
-rwxr-xr-xagg/inc/agg_span_converter.h8
-rwxr-xr-xagg/inc/agg_span_generator.h6
-rwxr-xr-xagg/inc/agg_span_gouraud.h28
-rwxr-xr-xagg/inc/agg_span_gouraud_gray.h26
-rwxr-xr-xagg/inc/agg_span_gouraud_rgba.h34
-rwxr-xr-xagg/inc/agg_span_gradient.h88
-rwxr-xr-xagg/inc/agg_span_gradient_alpha.h14
-rwxr-xr-xagg/inc/agg_span_image_filter.h16
-rwxr-xr-xagg/inc/agg_span_image_filter_gray.h140
-rwxr-xr-xagg/inc/agg_span_image_filter_rgb.h160
-rwxr-xr-xagg/inc/agg_span_image_filter_rgba.h154
-rwxr-xr-xagg/inc/agg_span_image_resample.h24
-rwxr-xr-xagg/inc/agg_span_image_resample_gray.h62
-rwxr-xr-xagg/inc/agg_span_image_resample_rgb.h66
-rwxr-xr-xagg/inc/agg_span_image_resample_rgba.h66
-rwxr-xr-xagg/inc/agg_span_interpolator_adaptor.h8
-rwxr-xr-xagg/inc/agg_span_interpolator_linear.h16
-rwxr-xr-xagg/inc/agg_span_interpolator_persp.h60
-rwxr-xr-xagg/inc/agg_span_interpolator_trans.h6
-rwxr-xr-xagg/inc/agg_span_pattern.h50
-rwxr-xr-xagg/inc/agg_span_pattern_filter_gray.h98
-rwxr-xr-xagg/inc/agg_span_pattern_filter_rgb.h110
-rwxr-xr-xagg/inc/agg_span_pattern_filter_rgba.h120
-rwxr-xr-xagg/inc/agg_span_pattern_resample_gray.h62
-rwxr-xr-xagg/inc/agg_span_pattern_resample_rgb.h64
-rwxr-xr-xagg/inc/agg_span_pattern_resample_rgba.h64
-rwxr-xr-xagg/inc/agg_span_pattern_rgb.h34
-rwxr-xr-xagg/inc/agg_span_pattern_rgba.h26
-rwxr-xr-xagg/inc/agg_span_solid.h6
-rwxr-xr-xagg/inc/agg_span_subdiv_adaptor.h30
-rwxr-xr-xagg/inc/agg_trans_affine.h84
-rwxr-xr-xagg/inc/agg_trans_bilinear.h18
-rwxr-xr-xagg/inc/agg_trans_double_path.h20
-rwxr-xr-xagg/inc/agg_trans_lens.h6
-rwxr-xr-xagg/inc/agg_trans_perspective.h18
-rwxr-xr-xagg/inc/agg_trans_single_path.h10
-rwxr-xr-xagg/inc/agg_trans_viewport.h18
-rwxr-xr-xagg/inc/agg_trans_warp_magnifier.h6
-rwxr-xr-xagg/inc/agg_vcgen_bspline.h4
-rwxr-xr-xagg/inc/agg_vcgen_contour.h4
-rwxr-xr-xagg/inc/agg_vcgen_dash.h4
-rwxr-xr-xagg/inc/agg_vcgen_markers_term.h4
-rwxr-xr-xagg/inc/agg_vcgen_smooth_poly1.h10
-rwxr-xr-xagg/inc/agg_vcgen_stroke.h4
-rwxr-xr-xagg/inc/agg_vcgen_vertex_sequence.h10
-rwxr-xr-xagg/inc/agg_vertex_iterator.h20
-rwxr-xr-xagg/inc/agg_vertex_sequence.h28
-rwxr-xr-xagg/inc/agg_vpgen_clip_polygon.h6
-rwxr-xr-xagg/inc/agg_vpgen_clip_polyline.h8
-rwxr-xr-xagg/inc/agg_vpgen_segmentator.h6
-rwxr-xr-xagg/source/agg_arc.cpp22
-rwxr-xr-xagg/source/agg_arrowhead.cpp6
-rwxr-xr-xagg/source/agg_bezier_arc.cpp38
-rwxr-xr-xagg/source/agg_bspline.cpp48
-rwxr-xr-xagg/source/agg_curves.cpp42
-rwxr-xr-xagg/source/agg_embedded_raster_fonts.cpp72
-rwxr-xr-xagg/source/agg_gsv_text.cpp18
-rwxr-xr-xagg/source/agg_image_filters.cpp10
-rwxr-xr-xagg/source/agg_line_aa_basics.cpp18
-rwxr-xr-xagg/source/agg_line_profile_aa.cpp18
-rwxr-xr-xagg/source/agg_path_storage.cpp58
-rwxr-xr-xagg/source/agg_rasterizer_scanline_aa.cpp40
-rwxr-xr-xagg/source/agg_rounded_rect.cpp34
-rwxr-xr-xagg/source/agg_sqrt_tables.cpp10
-rwxr-xr-xagg/source/agg_trans_affine.cpp22
-rwxr-xr-xagg/source/agg_trans_double_path.cpp28
-rwxr-xr-xagg/source/agg_trans_single_path.cpp22
-rwxr-xr-xagg/source/agg_trans_warp_magnifier.cpp4
-rwxr-xr-xagg/source/agg_vcgen_bspline.cpp4
-rwxr-xr-xagg/source/agg_vcgen_contour.cpp22
-rwxr-xr-xagg/source/agg_vcgen_dash.cpp12
-rwxr-xr-xagg/source/agg_vcgen_markers_term.cpp6
-rwxr-xr-xagg/source/agg_vcgen_smooth_poly1.cpp16
-rwxr-xr-xagg/source/agg_vcgen_stroke.cpp34
-rwxr-xr-xagg/source/agg_vpgen_clip_polygon.cpp18
-rwxr-xr-xagg/source/agg_vpgen_clip_polyline.cpp16
-rwxr-xr-xagg/source/agg_vpgen_segmentator.cpp4
-rw-r--r--animations/inc/animations/animationnodehelper.hxx36
-rw-r--r--animations/source/animcore/animcore.cxx36
-rw-r--r--animations/source/animcore/animcore.xml26
-rw-r--r--animations/source/animcore/factreg.cxx4
-rw-r--r--animations/source/animcore/factreg.hxx4
-rw-r--r--animations/source/animcore/targetpropertiescreator.cxx80
-rw-r--r--apple_remote/inc/AppleRemote.h12
-rw-r--r--apple_remote/inc/GlobalKeyboardDevice.h12
-rw-r--r--apple_remote/inc/HIDRemoteControlDevice.h18
-rw-r--r--apple_remote/inc/KeyspanFrontRowControl.h10
-rw-r--r--apple_remote/inc/MultiClickRemoteBehavior.h22
-rw-r--r--apple_remote/inc/RemoteControl.h46
-rw-r--r--apple_remote/inc/RemoteControlContainer.h8
-rw-r--r--apple_remote/inc/RemoteMainController.h8
-rw-r--r--automation/inc/automation/automation.hxx2
-rw-r--r--automation/inc/automation/commdefines.hxx50
-rw-r--r--automation/inc/automation/commtypes.hxx10
-rw-r--r--automation/inc/automation/communi.hxx14
-rw-r--r--automation/inc/automation/simplecm.hxx82
-rw-r--r--automation/inc/pch/precompiled_automation.cxx2
-rw-r--r--automation/inc/pch/precompiled_automation.hxx2
-rw-r--r--automation/source/app/testbasi.cxx2
-rw-r--r--automation/source/app/testbasi.hxx8
-rw-r--r--automation/source/communi/communi.cxx42
-rw-r--r--automation/source/inc/cmdbasestream.hxx8
-rw-r--r--automation/source/inc/icommstream.hxx28
-rw-r--r--automation/source/inc/rcontrol.hxx446
-rw-r--r--automation/source/inc/sttresid.hxx2
-rw-r--r--automation/source/inc/svcommstream.hxx22
-rw-r--r--automation/source/inc/testapp.hxx86
-rw-r--r--automation/source/inc/testtool.hxx2
-rw-r--r--automation/source/miniapp/editwin.cxx2
-rw-r--r--automation/source/miniapp/editwin.hxx4
-rw-r--r--automation/source/miniapp/servres.cxx2
-rw-r--r--automation/source/miniapp/servres.hrc2
-rw-r--r--automation/source/miniapp/servres.hxx2
-rw-r--r--automation/source/miniapp/servres.src2
-rw-r--r--automation/source/miniapp/servuid.hxx2
-rw-r--r--automation/source/miniapp/testapp.cxx62
-rw-r--r--automation/source/miniapp/testapp.hxx12
-rw-r--r--automation/source/mozillaserver/mozillatesttoolserver.idl6
-rw-r--r--automation/source/mozillaserver/xmozillatesttoolserver.idl30
-rw-r--r--automation/source/server/XMLParser.cxx12
-rw-r--r--automation/source/server/cmdbasestream.cxx42
-rw-r--r--automation/source/server/editwin.cxx6
-rw-r--r--automation/source/server/editwin.hxx16
-rw-r--r--automation/source/server/prof_nul.cxx6
-rw-r--r--automation/source/server/prof_usl.cxx16
-rw-r--r--automation/source/server/profiler.cxx8
-rw-r--r--automation/source/server/profiler.hxx32
-rw-r--r--automation/source/server/recorder.cxx56
-rw-r--r--automation/source/server/recorder.hxx4
-rw-r--r--automation/source/server/retstrm.cxx8
-rw-r--r--automation/source/server/retstrm.hxx2
-rw-r--r--automation/source/server/scmdstrm.cxx4
-rw-r--r--automation/source/server/scmdstrm.hxx4
-rw-r--r--automation/source/server/server.cxx60
-rw-r--r--automation/source/server/server.hxx8
-rw-r--r--automation/source/server/sta_list.cxx74
-rw-r--r--automation/source/server/statemnt.cxx740
-rw-r--r--automation/source/server/statemnt.hxx58
-rw-r--r--automation/source/server/svcommstream.cxx2
-rw-r--r--automation/source/server/testtool.hrc42
-rw-r--r--automation/source/simplecm/communiio.hxx16
-rw-r--r--automation/source/simplecm/packethandler.cxx46
-rw-r--r--automation/source/simplecm/packethandler.hxx10
-rw-r--r--automation/source/simplecm/simplecm.cxx36
-rw-r--r--automation/source/simplecm/tcpio.cxx4
-rw-r--r--automation/source/simplecm/tcpio.hxx4
-rw-r--r--automation/source/testtool/cmdstrm.cxx94
-rw-r--r--automation/source/testtool/cmdstrm.hxx8
-rw-r--r--automation/source/testtool/comm_bas.cxx50
-rw-r--r--automation/source/testtool/comm_bas.hxx24
-rw-r--r--automation/source/testtool/cretstrm.cxx2
-rw-r--r--automation/source/testtool/cretstrm.hxx4
-rw-r--r--automation/source/testtool/filter.pl2
-rw-r--r--automation/source/testtool/httprequest.cxx10
-rw-r--r--automation/source/testtool/httprequest.hxx2
-rw-r--r--automation/source/testtool/objtest.cxx164
-rw-r--r--automation/source/testtool/objtest.hxx238
-rw-r--r--automation/source/testtool/registry_win.cxx6
-rw-r--r--automation/source/testtool/registry_win.hxx2
-rw-r--r--automation/source/testtool/sysdir_win.cxx12
-rw-r--r--automation/source/testtool/sysdir_win.hxx2
-rw-r--r--automation/source/testtool/tcommuni.cxx6
-rw-r--r--automation/source/testtool/tcommuni.hxx2
-rw-r--r--avmedia/inc/avmedia/mediaitem.hxx84
-rw-r--r--avmedia/inc/avmedia/mediaplayer.hxx32
-rw-r--r--avmedia/inc/avmedia/mediatoolbox.hxx12
-rw-r--r--avmedia/inc/avmedia/mediawindow.hxx6
-rw-r--r--avmedia/inc/helpids.hrc18
-rw-r--r--avmedia/inc/mediacontrol.hxx66
-rw-r--r--avmedia/source/framework/mediacontrol.cxx182
-rw-r--r--avmedia/source/framework/mediacontrol.hrc50
-rw-r--r--avmedia/source/framework/mediacontrol.src16
-rw-r--r--avmedia/source/framework/mediaitem.cxx70
-rw-r--r--avmedia/source/framework/mediamisc.cxx4
-rw-r--r--avmedia/source/framework/mediaplayer.cxx24
-rw-r--r--avmedia/source/framework/mediatoolbox.cxx34
-rw-r--r--avmedia/source/framework/soundhandler.cxx30
-rw-r--r--avmedia/source/framework/soundhandler.hxx56
-rw-r--r--avmedia/source/framework/soundhandler.xml52
-rw-r--r--avmedia/source/inc/mediamisc.hxx6
-rw-r--r--avmedia/source/java/FrameGrabber.java34
-rw-r--r--avmedia/source/java/Manager.java12
-rw-r--r--avmedia/source/java/MediaUno.java10
-rw-r--r--avmedia/source/java/Player.java48
-rw-r--r--avmedia/source/java/PlayerWindow.java44
-rw-r--r--avmedia/source/java/WindowAdapter.java10
-rw-r--r--avmedia/source/java/win/SystemWindowAdapter.java2
-rw-r--r--avmedia/source/java/x11/SystemWindowAdapter.java22
-rw-r--r--avmedia/source/quicktime/framegrabber.cxx12
-rw-r--r--avmedia/source/quicktime/framegrabber.hxx8
-rw-r--r--avmedia/source/quicktime/manager.cxx2
-rw-r--r--avmedia/source/quicktime/manager.hxx2
-rw-r--r--avmedia/source/quicktime/player.cxx58
-rw-r--r--avmedia/source/quicktime/player.hxx10
-rw-r--r--avmedia/source/quicktime/quicktimecommon.hxx2
-rw-r--r--avmedia/source/quicktime/quicktimeuno.cxx8
-rw-r--r--avmedia/source/quicktime/window.cxx12
-rw-r--r--avmedia/source/quicktime/window.hxx2
-rw-r--r--avmedia/source/viewer/mediaevent_impl.cxx2
-rw-r--r--avmedia/source/viewer/mediaevent_impl.hxx8
-rw-r--r--avmedia/source/viewer/mediawindow.cxx2
-rw-r--r--avmedia/source/viewer/mediawindow.hrc14
-rw-r--r--avmedia/source/viewer/mediawindow.src2
-rw-r--r--avmedia/source/viewer/mediawindow_impl.cxx104
-rw-r--r--avmedia/source/viewer/mediawindow_impl.hxx60
-rw-r--r--avmedia/source/viewer/mediawindowbase_impl.cxx48
-rw-r--r--avmedia/source/viewer/mediawindowbase_impl.hxx42
-rw-r--r--avmedia/source/win/framegrabber.cxx36
-rw-r--r--avmedia/source/win/framegrabber.hxx2
-rw-r--r--avmedia/source/win/interface.hxx2
-rw-r--r--avmedia/source/win/manager.cxx2
-rw-r--r--avmedia/source/win/manager.hxx2
-rw-r--r--avmedia/source/win/player.cxx56
-rw-r--r--avmedia/source/win/player.hxx6
-rw-r--r--avmedia/source/win/wincommon.hxx2
-rw-r--r--avmedia/source/win/window.cxx52
-rw-r--r--avmedia/source/win/window.hxx2
-rw-r--r--avmedia/source/win/winuno.cxx6
-rw-r--r--avmedia/source/xine/manager.cxx4
-rw-r--r--avmedia/source/xine/manager.hxx2
-rw-r--r--avmedia/source/xine/player.cxx20
-rw-r--r--avmedia/source/xine/player.hxx2
-rw-r--r--avmedia/source/xine/window.cxx32
-rw-r--r--avmedia/source/xine/window.hxx6
-rw-r--r--avmedia/source/xine/xinecommon.hxx2
-rw-r--r--avmedia/source/xine/xineuno.cxx8
-rwxr-xr-xavmedia/util/hidother.src4
-rw-r--r--basctl/inc/basidesh.hrc264
-rw-r--r--basctl/inc/helpid.hrc80
-rw-r--r--basctl/inc/iderdll.hxx10
-rw-r--r--basctl/inc/pch/precompiled_basctl.cxx2
-rw-r--r--basctl/inc/pch/precompiled_basctl.hxx82
-rw-r--r--basctl/sdi/baside.sdi110
-rw-r--r--basctl/sdi/basslots.hrc2
-rw-r--r--basctl/sdi/basslots.sdi2
-rw-r--r--basctl/source/accessibility/accessibledialogcontrolshape.cxx12
-rw-r--r--basctl/source/accessibility/accessibledialogwindow.cxx30
-rw-r--r--basctl/source/basicide/basdoc.cxx4
-rw-r--r--basctl/source/basicide/basdoc.hxx12
-rw-r--r--basctl/source/basicide/basicbox.cxx14
-rw-r--r--basctl/source/basicide/basicbox.hxx52
-rw-r--r--basctl/source/basicide/basicmod.hxx2
-rw-r--r--basctl/source/basicide/basicprint.src2
-rw-r--r--basctl/source/basicide/basicrenderable.cxx14
-rw-r--r--basctl/source/basicide/basicrenderable.hxx8
-rw-r--r--basctl/source/basicide/baside2.cxx86
-rw-r--r--basctl/source/basicide/baside2.hrc20
-rw-r--r--basctl/source/basicide/baside2.hxx382
-rw-r--r--basctl/source/basicide/baside2b.cxx74
-rw-r--r--basctl/source/basicide/baside3.cxx84
-rw-r--r--basctl/source/basicide/basidectrlr.cxx4
-rw-r--r--basctl/source/basicide/basides1.cxx38
-rw-r--r--basctl/source/basicide/basides2.cxx8
-rw-r--r--basctl/source/basicide/basides3.cxx12
-rw-r--r--basctl/source/basicide/basidesh.cxx22
-rw-r--r--basctl/source/basicide/basidesh.src16
-rw-r--r--basctl/source/basicide/basobj2.cxx26
-rw-r--r--basctl/source/basicide/basobj3.cxx4
-rw-r--r--basctl/source/basicide/bastype2.cxx42
-rw-r--r--basctl/source/basicide/bastype2.hxx38
-rw-r--r--basctl/source/basicide/bastype3.cxx22
-rw-r--r--basctl/source/basicide/bastype3.hxx22
-rw-r--r--basctl/source/basicide/bastype4.hxx2
-rw-r--r--basctl/source/basicide/bastypes.cxx28
-rw-r--r--basctl/source/basicide/brkdlg.cxx30
-rw-r--r--basctl/source/basicide/brkdlg.hrc6
-rw-r--r--basctl/source/basicide/brkdlg.hxx32
-rw-r--r--basctl/source/basicide/brkdlg.src6
-rw-r--r--basctl/source/basicide/doceventnotifier.cxx4
-rw-r--r--basctl/source/basicide/docsignature.cxx2
-rw-r--r--basctl/source/basicide/documentenumeration.cxx2
-rw-r--r--basctl/source/basicide/documentenumeration.hxx2
-rw-r--r--basctl/source/basicide/ide_pch.cxx2
-rw-r--r--basctl/source/basicide/ide_pch.hxx6
-rw-r--r--basctl/source/basicide/iderdll.cxx14
-rw-r--r--basctl/source/basicide/iderdll2.hxx58
-rw-r--r--basctl/source/basicide/idetemp.hxx2
-rw-r--r--basctl/source/basicide/localizationmgr.cxx28
-rw-r--r--basctl/source/basicide/macrodlg.cxx80
-rw-r--r--basctl/source/basicide/macrodlg.hrc48
-rw-r--r--basctl/source/basicide/macrodlg.hxx92
-rw-r--r--basctl/source/basicide/macrodlg.src6
-rw-r--r--basctl/source/basicide/moduldl2.cxx10
-rw-r--r--basctl/source/basicide/moduldlg.cxx96
-rw-r--r--basctl/source/basicide/moduldlg.hrc52
-rw-r--r--basctl/source/basicide/moduldlg.hxx186
-rw-r--r--basctl/source/basicide/moduldlg.src22
-rw-r--r--basctl/source/basicide/moptions.hrc26
-rw-r--r--basctl/source/basicide/moptions.src4
-rw-r--r--basctl/source/basicide/objdlg.cxx14
-rw-r--r--basctl/source/basicide/objdlg.hrc10
-rw-r--r--basctl/source/basicide/objdlg.hxx28
-rw-r--r--basctl/source/basicide/objdlg.src4
-rw-r--r--basctl/source/basicide/register.cxx12
-rw-r--r--basctl/source/basicide/scriptdocument.cxx18
-rw-r--r--basctl/source/basicide/tbxctl.cxx10
-rw-r--r--basctl/source/basicide/tbxctl.hrc6
-rw-r--r--basctl/source/basicide/tbxctl.hxx26
-rw-r--r--basctl/source/basicide/tbxctl.src2
-rw-r--r--basctl/source/basicide/unomodel.cxx2
-rw-r--r--basctl/source/basicide/unomodel.hxx6
-rw-r--r--basctl/source/dlged/dlged.cxx86
-rw-r--r--basctl/source/dlged/dlgedclip.cxx2
-rw-r--r--basctl/source/dlged/dlgedfac.cxx48
-rw-r--r--basctl/source/dlged/dlgedfunc.cxx44
-rw-r--r--basctl/source/dlged/dlgedlist.cxx2
-rw-r--r--basctl/source/dlged/dlgedmod.cxx2
-rw-r--r--basctl/source/dlged/dlgedobj.cxx96
-rw-r--r--basctl/source/dlged/dlgedpage.cxx2
-rw-r--r--basctl/source/dlged/dlgedview.cxx8
-rw-r--r--basctl/source/dlged/dlgresid.src2
-rw-r--r--basctl/source/dlged/managelang.cxx46
-rw-r--r--basctl/source/dlged/managelang.hrc114
-rw-r--r--basctl/source/dlged/managelang.src2
-rw-r--r--basctl/source/dlged/propbrw.cxx10
-rw-r--r--basctl/source/inc/accessibledialogcontrolshape.hxx50
-rw-r--r--basctl/source/inc/accessibledialogwindow.hxx60
-rw-r--r--basctl/source/inc/baside3.hxx74
-rw-r--r--basctl/source/inc/basidectrlr.hxx8
-rw-r--r--basctl/source/inc/basidesh.hxx162
-rw-r--r--basctl/source/inc/basobj.hxx36
-rw-r--r--basctl/source/inc/bastypes.hxx164
-rw-r--r--basctl/source/inc/dlged.hxx136
-rw-r--r--basctl/source/inc/dlgedclip.hxx8
-rw-r--r--basctl/source/inc/dlgeddef.hxx2
-rw-r--r--basctl/source/inc/dlgedfac.hxx2
-rw-r--r--basctl/source/inc/dlgedfunc.hxx8
-rw-r--r--basctl/source/inc/dlgedlist.hxx6
-rw-r--r--basctl/source/inc/dlgedmod.hxx2
-rw-r--r--basctl/source/inc/dlgedobj.hxx48
-rw-r--r--basctl/source/inc/dlgedpage.hxx8
-rw-r--r--basctl/source/inc/dlgedview.hxx2
-rw-r--r--basctl/source/inc/dlgresid.hrc66
-rw-r--r--basctl/source/inc/doceventnotifier.hxx2
-rw-r--r--basctl/source/inc/docsignature.hxx2
-rw-r--r--basctl/source/inc/iderid.hxx2
-rw-r--r--basctl/source/inc/localizationmgr.hxx12
-rw-r--r--basctl/source/inc/managelang.hxx56
-rw-r--r--basctl/source/inc/propbrw.hxx8
-rw-r--r--basctl/source/inc/sbxitem.hxx44
-rw-r--r--basctl/source/inc/scriptdocument.hxx2
-rw-r--r--basctl/source/inc/svheader.hxx2
-rw-r--r--basctl/uiconfig/basicide/toolbar/standardbar.xml2
-rw-r--r--basctl/util/basctl.xml2
-rw-r--r--basctl/util/hidother.hrc2
-rw-r--r--basctl/util/hidother.src34
-rw-r--r--basebmp/inc/basebmp/accessor.hxx14
-rw-r--r--basebmp/inc/basebmp/accessoradapters.hxx108
-rw-r--r--basebmp/inc/basebmp/accessorfunctors.hxx30
-rw-r--r--basebmp/inc/basebmp/accessortraits.hxx12
-rw-r--r--basebmp/inc/basebmp/bitmapdevice.hxx122
-rw-r--r--basebmp/inc/basebmp/clippedlinerenderer.hxx40
-rw-r--r--basebmp/inc/basebmp/color.hxx6
-rw-r--r--basebmp/inc/basebmp/colorblendaccessoradapter.hxx16
-rw-r--r--basebmp/inc/basebmp/colormisc.hxx14
-rw-r--r--basebmp/inc/basebmp/colortraits.hxx28
-rwxr-xr-xbasebmp/inc/basebmp/compositeiterator.hxx72
-rw-r--r--basebmp/inc/basebmp/debug.hxx14
-rw-r--r--basebmp/inc/basebmp/drawmodes.hxx4
-rw-r--r--basebmp/inc/basebmp/endian.hxx2
-rw-r--r--basebmp/inc/basebmp/fillimage.hxx12
-rw-r--r--basebmp/inc/basebmp/genericcolorimageaccessor.hxx8
-rw-r--r--basebmp/inc/basebmp/greylevelformats.hxx24
-rw-r--r--basebmp/inc/basebmp/iteratortraits.hxx8
-rw-r--r--basebmp/inc/basebmp/linerenderer.hxx20
-rw-r--r--basebmp/inc/basebmp/metafunctions.hxx38
-rw-r--r--basebmp/inc/basebmp/nonstandarditerator.hxx2
-rw-r--r--basebmp/inc/basebmp/packedpixeliterator.hxx88
-rw-r--r--basebmp/inc/basebmp/paletteformats.hxx12
-rw-r--r--basebmp/inc/basebmp/paletteimageaccessor.hxx26
-rw-r--r--basebmp/inc/basebmp/pixelformatadapters.hxx8
-rw-r--r--basebmp/inc/basebmp/pixeliterator.hxx10
-rw-r--r--basebmp/inc/basebmp/polypolygonrenderer.hxx56
-rw-r--r--basebmp/inc/basebmp/rgb24pixelformats.hxx14
-rw-r--r--basebmp/inc/basebmp/rgbmaskpixelformats.hxx32
-rw-r--r--basebmp/inc/basebmp/scaleimage.hxx28
-rw-r--r--basebmp/inc/basebmp/scanlineformats.hxx2
-rw-r--r--basebmp/inc/basebmp/stridedarrayiterator.hxx2
-rw-r--r--basebmp/inc/basebmp/tools.hxx10
-rw-r--r--basebmp/inc/basebmp/truecolormaskaccessor.hxx54
-rw-r--r--basebmp/source/bitmapdevice.cxx404
-rw-r--r--basebmp/source/debug.cxx6
-rw-r--r--basebmp/source/intconversion.hxx12
-rw-r--r--basebmp/source/polypolygonrenderer.cxx6
-rw-r--r--basebmp/test/basictest.cxx2
-rw-r--r--basebmp/test/bmpdemo.cxx154
-rw-r--r--basebmp/test/bmpmasktest.cxx2
-rw-r--r--basebmp/test/bmptest.cxx2
-rw-r--r--basebmp/test/cliptest.cxx2
-rw-r--r--basebmp/test/export.map2
-rw-r--r--basebmp/test/filltest.cxx2
-rw-r--r--basebmp/test/linetest.cxx2
-rw-r--r--basebmp/test/masktest.cxx2
-rw-r--r--basebmp/test/polytest.cxx2
-rw-r--r--basebmp/test/tools.cxx2
-rw-r--r--basebmp/test/tools.hxx2
-rw-r--r--basegfx/inc/basegfx/color/bcolor.hxx66
-rw-r--r--basegfx/inc/basegfx/color/bcolormodifier.hxx48
-rw-r--r--basegfx/inc/basegfx/color/bcolortools.hxx2
-rw-r--r--basegfx/inc/basegfx/curve/b2dbeziertools.hxx6
-rw-r--r--basegfx/inc/basegfx/curve/b2dcubicbezier.hxx24
-rw-r--r--basegfx/inc/basegfx/curve/b2dquadraticbezier.hxx16
-rw-r--r--basegfx/inc/basegfx/matrix/b2dhommatrix.hxx22
-rw-r--r--basegfx/inc/basegfx/matrix/b2dhommatrixtools.hxx16
-rw-r--r--basegfx/inc/basegfx/matrix/b3dhommatrix.hxx24
-rw-r--r--basegfx/inc/basegfx/numeric/ftools.hxx86
-rw-r--r--basegfx/inc/basegfx/pixel/bpixel.hxx52
-rw-r--r--basegfx/inc/basegfx/point/b2dhompoint.hxx72
-rw-r--r--basegfx/inc/basegfx/point/b2dpoint.hxx56
-rw-r--r--basegfx/inc/basegfx/point/b2ipoint.hxx48
-rw-r--r--basegfx/inc/basegfx/point/b3dhompoint.hxx216
-rw-r--r--basegfx/inc/basegfx/point/b3dpoint.hxx66
-rw-r--r--basegfx/inc/basegfx/point/b3ipoint.hxx64
-rw-r--r--basegfx/inc/basegfx/polygon/b2dlinegeometry.hxx28
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygon.hxx28
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygonclipper.hxx2
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygoncutandtouch.hxx4
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygontools.hxx70
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygontriangulator.hxx2
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx8
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygoncutter.hxx4
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygonfillrule.hxx2
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygonrasterconverter.hxx28
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygontools.hxx24
-rw-r--r--basegfx/inc/basegfx/polygon/b2dtrapezoid.hxx26
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygon.hxx2
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygonclipper.hxx10
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygontools.hxx20
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolypolygon.hxx8
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolypolygontools.hxx20
-rw-r--r--basegfx/inc/basegfx/range/b1drange.hxx122
-rw-r--r--basegfx/inc/basegfx/range/b1ibox.hxx112
-rw-r--r--basegfx/inc/basegfx/range/b1irange.hxx114
-rw-r--r--basegfx/inc/basegfx/range/b2dconnectedranges.hxx46
-rw-r--r--basegfx/inc/basegfx/range/b2dpolyrange.hxx2
-rw-r--r--basegfx/inc/basegfx/range/b2drange.hxx108
-rw-r--r--basegfx/inc/basegfx/range/b2drangeclipper.hxx6
-rw-r--r--basegfx/inc/basegfx/range/b2drectangle.hxx2
-rw-r--r--basegfx/inc/basegfx/range/b2ibox.hxx88
-rw-r--r--basegfx/inc/basegfx/range/b2irange.hxx98
-rw-r--r--basegfx/inc/basegfx/range/b2irectangle.hxx2
-rw-r--r--basegfx/inc/basegfx/range/b3drange.hxx114
-rw-r--r--basegfx/inc/basegfx/range/b3dvolume.hxx2
-rw-r--r--basegfx/inc/basegfx/range/b3ibox.hxx86
-rw-r--r--basegfx/inc/basegfx/range/b3irange.hxx98
-rw-r--r--basegfx/inc/basegfx/range/b3ivolume.hxx2
-rw-r--r--basegfx/inc/basegfx/range/basicbox.hxx2
-rw-r--r--basegfx/inc/basegfx/range/basicrange.hxx28
-rw-r--r--basegfx/inc/basegfx/range/rangeexpander.hxx8
-rw-r--r--basegfx/inc/basegfx/raster/bpixelraster.hxx18
-rw-r--r--basegfx/inc/basegfx/raster/bzpixelraster.hxx10
-rw-r--r--basegfx/inc/basegfx/raster/rasterconvert3d.hxx74
-rw-r--r--basegfx/inc/basegfx/tools/b2dclipstate.hxx4
-rwxr-xr-xbasegfx/inc/basegfx/tools/canvastools.hxx122
-rw-r--r--basegfx/inc/basegfx/tools/debugplotter.hxx46
-rw-r--r--basegfx/inc/basegfx/tools/gradienttools.hxx42
-rw-r--r--basegfx/inc/basegfx/tools/keystoplerp.hxx2
-rw-r--r--basegfx/inc/basegfx/tools/lerp.hxx10
-rw-r--r--basegfx/inc/basegfx/tools/rectcliptools.hxx8
-rw-r--r--basegfx/inc/basegfx/tools/tools.hxx20
-rwxr-xr-xbasegfx/inc/basegfx/tools/unopolypolygon.hxx12
-rw-r--r--basegfx/inc/basegfx/tuple/b2dtuple.hxx248
-rw-r--r--basegfx/inc/basegfx/tuple/b2i64tuple.hxx230
-rw-r--r--basegfx/inc/basegfx/tuple/b2ituple.hxx142
-rw-r--r--basegfx/inc/basegfx/tuple/b3dtuple.hxx268
-rw-r--r--basegfx/inc/basegfx/tuple/b3i64tuple.hxx244
-rw-r--r--basegfx/inc/basegfx/tuple/b3ituple.hxx244
-rw-r--r--basegfx/inc/basegfx/vector/b2dsize.hxx2
-rw-r--r--basegfx/inc/basegfx/vector/b2dvector.hxx60
-rw-r--r--basegfx/inc/basegfx/vector/b2enums.hxx26
-rw-r--r--basegfx/inc/basegfx/vector/b2isize.hxx2
-rw-r--r--basegfx/inc/basegfx/vector/b2ivector.hxx54
-rw-r--r--basegfx/inc/basegfx/vector/b3dsize.hxx2
-rw-r--r--basegfx/inc/basegfx/vector/b3dvector.hxx60
-rw-r--r--basegfx/inc/basegfx/vector/b3isize.hxx2
-rw-r--r--basegfx/inc/basegfx/vector/b3ivector.hxx60
-rw-r--r--basegfx/inc/pch/precompiled_basegfx.cxx2
-rw-r--r--basegfx/inc/pch/precompiled_basegfx.hxx2
-rw-r--r--basegfx/qa/mkpolygons.pl98
-rw-r--r--basegfx/source/color/bcolor.cxx2
-rw-r--r--basegfx/source/color/bcolormodifier.cxx2
-rw-r--r--basegfx/source/color/bcolortools.cxx12
-rw-r--r--basegfx/source/curve/b2dbeziertools.cxx6
-rw-r--r--basegfx/source/curve/b2dcubicbezier.cxx96
-rw-r--r--basegfx/source/curve/b2dquadraticbezier.cxx14
-rw-r--r--basegfx/source/inc/PolygonPoint.hxx46
-rw-r--r--basegfx/source/inc/hommatrixtemplate.hxx44
-rw-r--r--basegfx/source/inc/polygontemplate.hxx46
-rw-r--r--basegfx/source/matrix/b2dhommatrix.cxx24
-rw-r--r--basegfx/source/matrix/b2dhommatrixtools.cxx26
-rw-r--r--basegfx/source/matrix/b3dhommatrix.cxx30
-rw-r--r--basegfx/source/numeric/ftools.cxx2
-rw-r--r--basegfx/source/pixel/bpixel.cxx2
-rw-r--r--basegfx/source/point/b2dhompoint.cxx136
-rw-r--r--basegfx/source/point/b2dpoint.cxx22
-rw-r--r--basegfx/source/point/b2ipoint.cxx22
-rw-r--r--basegfx/source/point/b3dhompoint.cxx2
-rw-r--r--basegfx/source/point/b3dpoint.cxx8
-rw-r--r--basegfx/source/point/b3ipoint.cxx8
-rw-r--r--basegfx/source/polygon/b2dlinegeometry.cxx74
-rw-r--r--basegfx/source/polygon/b2dpolygon.cxx138
-rw-r--r--basegfx/source/polygon/b2dpolygonclipper.cxx88
-rw-r--r--basegfx/source/polygon/b2dpolygoncutandtouch.cxx74
-rw-r--r--basegfx/source/polygon/b2dpolygontools.cxx200
-rw-r--r--basegfx/source/polygon/b2dpolygontriangulator.cxx30
-rw-r--r--basegfx/source/polygon/b2dpolypolygon.cxx18
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx44
-rw-r--r--basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx80
-rw-r--r--basegfx/source/polygon/b2dpolypolygontools.cxx16
-rw-r--r--basegfx/source/polygon/b2dsvgpolypolygon.cxx168
-rw-r--r--basegfx/source/polygon/b2dtrapezoid.cxx139
-rw-r--r--basegfx/source/polygon/b3dpolygon.cxx132
-rw-r--r--basegfx/source/polygon/b3dpolygonclipper.cxx8
-rw-r--r--basegfx/source/polygon/b3dpolygontools.cxx38
-rw-r--r--basegfx/source/polygon/b3dpolypolygon.cxx18
-rw-r--r--basegfx/source/polygon/b3dpolypolygontools.cxx22
-rw-r--r--basegfx/source/range/b1drange.cxx6
-rw-r--r--basegfx/source/range/b2dpolyrange.cxx26
-rw-r--r--basegfx/source/range/b2drange.cxx6
-rw-r--r--basegfx/source/range/b2drangeclipper.cxx140
-rw-r--r--basegfx/source/range/b2xrange.cxx66
-rw-r--r--basegfx/source/range/b3drange.cxx12
-rw-r--r--basegfx/source/raster/bpixelraster.cxx2
-rw-r--r--basegfx/source/raster/bzpixelraster.cxx2
-rw-r--r--basegfx/source/raster/rasterconvert3d.cxx20
-rw-r--r--basegfx/source/tools/b2dclipstate.cxx36
-rwxr-xr-xbasegfx/source/tools/canvastools.cxx38
-rwxr-xr-xbasegfx/source/tools/debugplotter.cxx58
-rw-r--r--basegfx/source/tools/gradienttools.cxx86
-rw-r--r--basegfx/source/tools/keystoplerp.cxx18
-rw-r--r--basegfx/source/tools/liangbarsky.cxx20
-rw-r--r--basegfx/source/tools/tools.cxx36
-rwxr-xr-xbasegfx/source/tools/unopolypolygon.cxx118
-rw-r--r--basegfx/source/tuple/b2dtuple.cxx8
-rw-r--r--basegfx/source/tuple/b2i64tuple.cxx2
-rw-r--r--basegfx/source/tuple/b2ituple.cxx102
-rw-r--r--basegfx/source/tuple/b3dtuple.cxx8
-rw-r--r--basegfx/source/tuple/b3i64tuple.cxx2
-rw-r--r--basegfx/source/tuple/b3ituple.cxx2
-rw-r--r--basegfx/source/vector/b2dvector.cxx30
-rw-r--r--basegfx/source/vector/b2ivector.cxx2
-rw-r--r--basegfx/source/vector/b3dvector.cxx8
-rw-r--r--basegfx/source/vector/b3ivector.cxx2
-rw-r--r--basegfx/source/workbench/bezierclip.cxx546
-rw-r--r--basegfx/source/workbench/bezierclip.hxx14
-rw-r--r--basegfx/source/workbench/convexhull.cxx22
-rw-r--r--basegfx/source/workbench/gauss.hxx54
-rw-r--r--basegfx/test/basegfx1d.cxx2
-rw-r--r--basegfx/test/basegfx2d.cxx190
-rw-r--r--basegfx/test/basegfx3d.cxx2
-rw-r--r--basegfx/test/basegfxtools.cxx6
-rw-r--r--basegfx/test/boxclipper.cxx30
-rw-r--r--basegfx/test/clipstate.cxx18
-rw-r--r--basegfx/test/export.map2
-rw-r--r--basegfx/test/genericclipper.cxx16
-rw-r--r--basegfx/test/testtools.cxx36
-rw-r--r--basegfx/test/testtools.hxx8
-rw-r--r--basic/inc/basic/basicmanagerrepository.hxx2
-rw-r--r--basic/inc/basic/basicrt.hxx2
-rw-r--r--basic/inc/basic/basmgr.hxx132
-rw-r--r--basic/inc/basic/basrdll.hxx16
-rw-r--r--basic/inc/basic/dispdefs.hxx12
-rw-r--r--basic/inc/basic/mybasic.hxx8
-rw-r--r--basic/inc/basic/process.hxx2
-rw-r--r--basic/inc/basic/sbdef.hxx20
-rw-r--r--basic/inc/basic/sberrors.hxx866
-rw-r--r--basic/inc/basic/sbmeth.hxx20
-rw-r--r--basic/inc/basic/sbmod.hxx94
-rw-r--r--basic/inc/basic/sbprop.hxx6
-rw-r--r--basic/inc/basic/sbstar.hxx148
-rw-r--r--basic/inc/basic/sbstdobj.hxx72
-rw-r--r--basic/inc/basic/sbuno.hxx2
-rw-r--r--basic/inc/basic/sbx.hxx28
-rw-r--r--basic/inc/basic/sbxbase.hxx10
-rw-r--r--basic/inc/basic/sbxcore.hxx66
-rw-r--r--basic/inc/basic/sbxdef.hxx512
-rw-r--r--basic/inc/basic/sbxfac.hxx8
-rw-r--r--basic/inc/basic/sbxform.hxx96
-rw-r--r--basic/inc/basic/sbxmeth.hxx4
-rw-r--r--basic/inc/basic/sbxmstrm.hxx2
-rw-r--r--basic/inc/basic/sbxobj.hxx16
-rw-r--r--basic/inc/basic/sbxprop.hxx4
-rw-r--r--basic/inc/basic/sbxvar.hxx66
-rw-r--r--basic/inc/basic/testtool.hxx76
-rw-r--r--basic/inc/basic/ttglobal.hrc10
-rw-r--r--basic/inc/basic/ttstrhlp.hxx28
-rw-r--r--basic/inc/basrid.hxx2
-rw-r--r--basic/inc/modsizeexceeded.hxx6
-rw-r--r--basic/inc/pch/precompiled_basic.cxx2
-rw-r--r--basic/inc/pch/precompiled_basic.hxx2
-rw-r--r--basic/inc/sb.hrc18
-rw-r--r--basic/inc/sb.hxx2
-rw-r--r--basic/inc/svtmsg.hrc126
-rw-r--r--basic/inc/testtool.hrc16
-rw-r--r--basic/inc/ttmsg.hrc130
-rw-r--r--basic/source/app/app.cxx182
-rw-r--r--basic/source/app/app.hxx54
-rw-r--r--basic/source/app/appbased.cxx18
-rw-r--r--basic/source/app/appbased.hxx22
-rw-r--r--basic/source/app/appedit.cxx24
-rw-r--r--basic/source/app/appedit.hxx6
-rw-r--r--basic/source/app/apperror.cxx20
-rw-r--r--basic/source/app/apperror.hxx8
-rw-r--r--basic/source/app/appwin.cxx56
-rw-r--r--basic/source/app/appwin.hxx102
-rw-r--r--basic/source/app/basic.hrc20
-rw-r--r--basic/source/app/basic.src96
-rw-r--r--basic/source/app/basicrt.cxx2
-rw-r--r--basic/source/app/basmsg.hrc10
-rw-r--r--basic/source/app/basmsg.src4
-rw-r--r--basic/source/app/brkpnts.cxx8
-rw-r--r--basic/source/app/brkpnts.hxx48
-rw-r--r--basic/source/app/dataedit.hxx62
-rw-r--r--basic/source/app/dialogs.cxx76
-rw-r--r--basic/source/app/dialogs.hxx34
-rw-r--r--basic/source/app/msgedit.cxx140
-rw-r--r--basic/source/app/msgedit.hxx40
-rw-r--r--basic/source/app/mybasic.cxx30
-rw-r--r--basic/source/app/printer.cxx6
-rw-r--r--basic/source/app/printer.hxx16
-rw-r--r--basic/source/app/process.cxx8
-rw-r--r--basic/source/app/processw.cxx28
-rw-r--r--basic/source/app/processw.hxx16
-rw-r--r--basic/source/app/resids.hrc132
-rw-r--r--basic/source/app/status.cxx10
-rw-r--r--basic/source/app/status.hxx8
-rw-r--r--basic/source/app/svtmsg.src4
-rw-r--r--basic/source/app/testbasi.cxx2
-rw-r--r--basic/source/app/testtool.idl2
-rw-r--r--basic/source/app/testtool.src2
-rw-r--r--basic/source/app/textedit.cxx74
-rw-r--r--basic/source/app/textedit.hxx42
-rw-r--r--basic/source/app/ttbasic.cxx2
-rw-r--r--basic/source/app/ttbasic.hxx2
-rw-r--r--basic/source/app/ttmsg.src12
-rw-r--r--basic/source/basmgr/basicmanagerrepository.cxx2
-rw-r--r--basic/source/basmgr/basmgr.cxx192
-rw-r--r--basic/source/classes/disas.cxx68
-rw-r--r--basic/source/classes/errobject.cxx46
-rw-r--r--basic/source/classes/eventatt.cxx4
-rw-r--r--basic/source/classes/image.cxx30
-rw-r--r--basic/source/classes/propacc.cxx2
-rwxr-xr-xbasic/source/classes/sb.cxx220
-rw-r--r--basic/source/classes/sb.src2
-rw-r--r--basic/source/classes/sbintern.cxx10
-rwxr-xr-xbasic/source/classes/sbunoobj.cxx335
-rw-r--r--basic/source/classes/sbxmod.cxx140
-rw-r--r--basic/source/comp/buffer.cxx4
-rw-r--r--basic/source/comp/codegen.cxx76
-rw-r--r--basic/source/comp/dim.cxx134
-rw-r--r--basic/source/comp/exprgen.cxx129
-rw-r--r--basic/source/comp/exprnode.cxx18
-rw-r--r--basic/source/comp/exprtree.cxx34
-rw-r--r--basic/source/comp/io.cxx8
-rw-r--r--basic/source/comp/loops.cxx32
-rw-r--r--basic/source/comp/makefile.mk33
-rw-r--r--basic/source/comp/parser.cxx170
-rwxr-xr-xbasic/source/comp/sbcomp.cxx24
-rw-r--r--basic/source/comp/scanner.cxx168
-rw-r--r--basic/source/comp/symtbl.cxx74
-rw-r--r--basic/source/comp/token.cxx584
-rw-r--r--basic/source/inc/buffer.hxx42
-rw-r--r--basic/source/inc/codegen.hxx32
-rw-r--r--basic/source/inc/collelem.hxx2
-rw-r--r--basic/source/inc/disas.hxx56
-rw-r--r--basic/source/inc/dlgcont.hxx28
-rw-r--r--basic/source/inc/expr.hxx91
-rw-r--r--basic/source/inc/filefmt.hxx36
-rw-r--r--basic/source/inc/image.hxx90
-rw-r--r--basic/source/inc/iosys.hxx68
-rw-r--r--basic/source/inc/namecont.hxx294
-rw-r--r--basic/source/inc/object.hxx2
-rw-r--r--basic/source/inc/opcodes.hxx62
-rw-r--r--basic/source/inc/parser.hxx177
-rw-r--r--basic/source/inc/propacc.hxx46
-rw-r--r--basic/source/inc/runtime.hxx186
-rw-r--r--basic/source/inc/sbcomp.hxx10
-rw-r--r--basic/source/inc/sbintern.hxx78
-rw-r--r--basic/source/inc/sbjsmeth.hxx2
-rw-r--r--basic/source/inc/sbjsmod.hxx4
-rwxr-xr-xbasic/source/inc/sbtrace.hxx2
-rw-r--r--basic/source/inc/sbunoobj.hxx33
-rw-r--r--basic/source/inc/scanner.hxx100
-rw-r--r--basic/source/inc/scriptcont.hxx52
-rw-r--r--basic/source/inc/stdobj.hxx2
-rw-r--r--basic/source/inc/symtbl.hxx231
-rw-r--r--basic/source/inc/token.hxx36
-rw-r--r--basic/source/runtime/basrdll.cxx2
-rw-r--r--basic/source/runtime/ddectrl.cxx14
-rw-r--r--basic/source/runtime/ddectrl.hxx4
-rw-r--r--basic/source/runtime/inputbox.cxx8
-rw-r--r--basic/source/runtime/iosys.cxx82
-rw-r--r--basic/source/runtime/methods.cxx116
-rw-r--r--basic/source/runtime/methods1.cxx74
-rw-r--r--basic/source/runtime/props.cxx202
-rw-r--r--basic/source/runtime/rtlproto.hxx6
-rwxr-xr-xbasic/source/runtime/runtime.cxx244
-rw-r--r--basic/source/runtime/stdobj.cxx242
-rw-r--r--basic/source/runtime/stdobj1.cxx100
-rw-r--r--basic/source/runtime/step0.cxx325
-rw-r--r--basic/source/runtime/step1.cxx28
-rwxr-xr-xbasic/source/runtime/step2.cxx30
-rw-r--r--basic/source/sample/collelem.cxx4
-rw-r--r--basic/source/sample/object.cxx10
-rw-r--r--basic/source/sbx/format.src2
-rw-r--r--basic/source/sbx/sbxarray.cxx6
-rw-r--r--basic/source/sbx/sbxbase.cxx22
-rw-r--r--basic/source/sbx/sbxbool.cxx20
-rw-r--r--basic/source/sbx/sbxbyte.cxx16
-rw-r--r--basic/source/sbx/sbxchar.cxx19
-rw-r--r--basic/source/sbx/sbxcoll.cxx2
-rw-r--r--basic/source/sbx/sbxconv.hxx52
-rw-r--r--basic/source/sbx/sbxcurr.cxx30
-rw-r--r--basic/source/sbx/sbxdate.cxx24
-rw-r--r--basic/source/sbx/sbxdbl.cxx18
-rw-r--r--basic/source/sbx/sbxdec.cxx74
-rw-r--r--basic/source/sbx/sbxdec.hxx14
-rw-r--r--basic/source/sbx/sbxexec.cxx2
-rw-r--r--basic/source/sbx/sbxform.cxx124
-rw-r--r--basic/source/sbx/sbxint.cxx48
-rw-r--r--basic/source/sbx/sbxlng.cxx16
-rw-r--r--basic/source/sbx/sbxmstrm.cxx2
-rw-r--r--basic/source/sbx/sbxobj.cxx54
-rw-r--r--basic/source/sbx/sbxres.cxx6
-rw-r--r--basic/source/sbx/sbxres.hxx78
-rw-r--r--basic/source/sbx/sbxscan.cxx137
-rw-r--r--basic/source/sbx/sbxsng.cxx16
-rw-r--r--basic/source/sbx/sbxstr.cxx62
-rw-r--r--basic/source/sbx/sbxuint.cxx14
-rw-r--r--basic/source/sbx/sbxulng.cxx14
-rw-r--r--basic/source/sbx/sbxvals.cxx2
-rw-r--r--basic/source/sbx/sbxvalue.cxx233
-rw-r--r--basic/source/sbx/sbxvar.cxx52
-rw-r--r--basic/source/uno/dlgcont.cxx12
-rw-r--r--basic/source/uno/modsizeexceeded.cxx18
-rw-r--r--basic/source/uno/namecont.cxx36
-rw-r--r--basic/source/uno/sbmodule.cxx2
-rw-r--r--basic/source/uno/sbmodule.hxx2
-rw-r--r--basic/source/uno/sbservices.cxx2
-rw-r--r--basic/source/uno/scriptcont.cxx40
-rw-r--r--basic/workben/basmgr.src2
-rw-r--r--basic/workben/mgrtest.cxx76
-rw-r--r--bean/com/sun/star/beans/ContainerFactory.java4
-rw-r--r--bean/com/sun/star/beans/JavaWindowPeerFake.java6
-rw-r--r--bean/com/sun/star/beans/LocalOfficeConnection.java188
-rw-r--r--bean/com/sun/star/beans/LocalOfficeWindow.java38
-rw-r--r--bean/com/sun/star/beans/NativeConnection.java6
-rw-r--r--bean/com/sun/star/beans/NativeService.java4
-rw-r--r--bean/com/sun/star/beans/OfficeConnection.java16
-rw-r--r--bean/com/sun/star/beans/OfficeWindow.java6
-rw-r--r--bean/com/sun/star/comp/beans/CallWatchThread.java2
-rw-r--r--bean/com/sun/star/comp/beans/ContainerFactory.java4
-rw-r--r--bean/com/sun/star/comp/beans/Controller.java14
-rw-r--r--bean/com/sun/star/comp/beans/Frame.java26
-rw-r--r--bean/com/sun/star/comp/beans/HasConnectionException.java2
-rw-r--r--bean/com/sun/star/comp/beans/InvalidArgumentException.java2
-rw-r--r--bean/com/sun/star/comp/beans/JavaWindowPeerFake.java10
-rw-r--r--bean/com/sun/star/comp/beans/LocalOfficeConnection.java256
-rw-r--r--bean/com/sun/star/comp/beans/LocalOfficeWindow.java40
-rw-r--r--bean/com/sun/star/comp/beans/NativeConnection.java6
-rw-r--r--bean/com/sun/star/comp/beans/NativeService.java4
-rw-r--r--bean/com/sun/star/comp/beans/NoConnectionException.java6
-rw-r--r--bean/com/sun/star/comp/beans/NoDocumentException.java2
-rw-r--r--bean/com/sun/star/comp/beans/OOoBean.java508
-rw-r--r--bean/com/sun/star/comp/beans/OfficeConnection.java16
-rw-r--r--bean/com/sun/star/comp/beans/OfficeDocument.java34
-rw-r--r--bean/com/sun/star/comp/beans/OfficeWindow.java6
-rw-r--r--bean/com/sun/star/comp/beans/SystemWindowException.java4
-rw-r--r--bean/com/sun/star/comp/beans/Wrapper.java22
-rw-r--r--bean/native/unix/com_sun_star_beans_LocalOfficeWindow.c10
-rw-r--r--bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c14
-rw-r--r--bean/native/win32/com_sun_star_beans_LocalOfficeWindow.c2
-rw-r--r--bean/native/win32/com_sun_star_comp_beans_LocalOfficeWindow.c2
-rw-r--r--bean/qa/complex/OOoBeanTest.java52
-rw-r--r--bean/qa/complex/ScreenComparer.java16
-rw-r--r--bean/qa/complex/WriterFrame.java12
-rw-r--r--bean/test/Test.java4
-rw-r--r--bean/test/applet/oooapplet/OOoViewer.java26
-rw-r--r--boost/makefile.mk1
-rw-r--r--boost/prj/d.lst20
-rw-r--r--bridges/inc/bridges/cpp_uno/bridge.hxx8
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/arraypointer.hxx2
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/bridge.hxx2
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/cppinterfaceproxy.hxx2
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/types.hxx2
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx2
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx2
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/vtables.hxx2
-rw-r--r--bridges/inc/bridges/cpp_uno/type_misc.hxx6
-rw-r--r--bridges/inc/bridges/remote/bridgeimpl.hxx10
-rw-r--r--bridges/inc/bridges/remote/connection.h8
-rw-r--r--bridges/inc/bridges/remote/context.h34
-rw-r--r--bridges/inc/bridges/remote/counter.hxx2
-rw-r--r--bridges/inc/bridges/remote/helper.hxx6
-rw-r--r--bridges/inc/bridges/remote/mapping.hxx12
-rw-r--r--bridges/inc/bridges/remote/proxy.hxx12
-rw-r--r--bridges/inc/bridges/remote/remote.h4
-rw-r--r--bridges/inc/bridges/remote/remote.hxx2
-rw-r--r--bridges/inc/bridges/remote/stub.hxx4
-rw-r--r--bridges/inc/pch/precompiled_bridges.cxx2
-rw-r--r--bridges/inc/pch/precompiled_bridges.hxx2
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/cc50_solaris_intel.hxx10
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/cpp2uno.cxx34
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/except.cxx2
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/hash.cxx20
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/uno2cpp.cxx44
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/cc50_solaris_sparc.hxx10
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/cpp2uno.cxx38
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx2
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/flushcode.hxx2
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/hash.cxx20
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/uno2cpp.cxx40
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/callvirtualmethod.hxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/cpp2uno.cxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/exceptions.cxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/exceptions.hxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/flushcode.hxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/fp.hxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/isdirectreturntype.cxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/isdirectreturntype.hxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/uno2cpp.cxx2
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/vtableslotcall.hxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/cpp2uno.cxx42
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_intel/uno2cpp.cxx52
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/abi.cxx44
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/abi.hxx4
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/cpp2uno.cxx38
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx28
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_freebsd_x86-64/uno2cpp.cxx56
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/cpp2uno.cxx50
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/uno2cpp.cxx44
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/cpp2uno.cxx54
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx42
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/call.cxx6
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/cpp2uno.cxx36
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/share.hxx20
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/uno2cpp.cxx36
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/cpp2uno.cxx64
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/uno2cpp.cxx62
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/cpp2uno.cxx42
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/uno2cpp.cxx52
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/cpp2uno.cxx54
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/uno2cpp.cxx34
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/cpp2uno.cxx32
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/except.cxx36
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/uno2cpp.cxx48
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/cpp2uno.cxx126
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/uno2cpp.cxx114
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/cpp2uno.cxx70
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx60
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/cpp2uno.cxx68
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/uno2cpp.cxx70
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/cpp2uno.cxx52
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/uno2cpp.cxx44
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/cpp2uno.cxx40
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/except.cxx36
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/uno2cpp.cxx84
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx44
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx4
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx36
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx28
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx52
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/cpp2uno.cxx40
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/uno2cpp.cxx52
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/cpp2uno.cxx88
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/except.cxx38
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/uno2cpp.cxx78
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/cpp2uno.cxx70
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/except.cxx6
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_netbsd_intel/uno2cpp.cxx62
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/cpp2uno.cxx52
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/except.cxx4
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/uno2cpp.cxx56
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/cpp2uno.cxx54
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/except.cxx2
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/uno2cpp.cxx52
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/cpp2uno.cxx40
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/except.cxx36
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/share.hxx18
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/uno2cpp.cxx82
-rw-r--r--bridges/source/cpp_uno/mingw_intel/cpp2uno.cxx46
-rw-r--r--bridges/source/cpp_uno/mingw_intel/dllinit.cxx4
-rw-r--r--bridges/source/cpp_uno/mingw_intel/except.cxx2
-rw-r--r--bridges/source/cpp_uno/mingw_intel/share.hxx18
-rw-r--r--bridges/source/cpp_uno/mingw_intel/smallstruct.cxx2
-rw-r--r--bridges/source/cpp_uno/mingw_intel/smallstruct.hxx2
-rw-r--r--bridges/source/cpp_uno/mingw_intel/uno2cpp.cxx52
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/cpp2uno.cxx58
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/dllinit.cxx4
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/except.cxx50
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/msci.hxx4
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/uno2cpp.cxx176
-rw-r--r--bridges/source/cpp_uno/shared/bridge.cxx2
-rw-r--r--bridges/source/cpp_uno/shared/component.cxx2
-rw-r--r--bridges/source/cpp_uno/shared/component.hxx2
-rw-r--r--bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx4
-rw-r--r--bridges/source/cpp_uno/shared/guardedarray.hxx2
-rw-r--r--bridges/source/cpp_uno/shared/types.cxx2
-rw-r--r--bridges/source/cpp_uno/shared/unointerfaceproxy.cxx2
-rw-r--r--bridges/source/cpp_uno/shared/vtablefactory.cxx2
-rw-r--r--bridges/source/cpp_uno/shared/vtables.cxx2
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_info_holder.java8
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java24
-rw-r--r--bridges/source/jni_uno/jni_base.h30
-rw-r--r--bridges/source/jni_uno/jni_bridge.cxx12
-rw-r--r--bridges/source/jni_uno/jni_bridge.h18
-rw-r--r--bridges/source/jni_uno/jni_data.cxx22
-rw-r--r--bridges/source/jni_uno/jni_helper.h2
-rw-r--r--bridges/source/jni_uno/jni_info.cxx118
-rw-r--r--bridges/source/jni_uno/jni_info.h36
-rw-r--r--bridges/source/jni_uno/jni_java2uno.cxx16
-rw-r--r--bridges/source/jni_uno/jni_uno2java.cxx24
-rw-r--r--bridges/source/jni_uno/nativethreadpool.cxx2
-rw-r--r--bridges/source/remote/context/context.cxx4
-rw-r--r--bridges/source/remote/idl/corba.idl12
-rw-r--r--bridges/source/remote/static/helper.cxx32
-rw-r--r--bridges/source/remote/static/mapping.cxx22
-rw-r--r--bridges/source/remote/static/proxy.cxx4
-rw-r--r--bridges/source/remote/static/remote.cxx2
-rw-r--r--bridges/source/remote/static/remote_types.cxx6
-rw-r--r--bridges/source/remote/static/remote_types.hxx4
-rw-r--r--bridges/source/remote/static/stub.cxx2
-rw-r--r--bridges/source/remote/urp/urp_bridgeimpl.cxx4
-rw-r--r--bridges/source/remote/urp/urp_bridgeimpl.hxx18
-rw-r--r--bridges/source/remote/urp/urp_cache.h2
-rw-r--r--bridges/source/remote/urp/urp_cache.hxx10
-rw-r--r--bridges/source/remote/urp/urp_dispatch.cxx2
-rw-r--r--bridges/source/remote/urp/urp_dispatch.hxx4
-rw-r--r--bridges/source/remote/urp/urp_environment.cxx26
-rw-r--r--bridges/source/remote/urp/urp_job.cxx80
-rw-r--r--bridges/source/remote/urp/urp_job.hxx46
-rw-r--r--bridges/source/remote/urp/urp_log.cxx4
-rw-r--r--bridges/source/remote/urp/urp_log.hxx4
-rw-r--r--bridges/source/remote/urp/urp_marshal.cxx32
-rw-r--r--bridges/source/remote/urp/urp_marshal.hxx24
-rw-r--r--bridges/source/remote/urp/urp_marshal_decl.hxx20
-rw-r--r--bridges/source/remote/urp/urp_property.hxx2
-rw-r--r--bridges/source/remote/urp/urp_propertyobject.cxx170
-rw-r--r--bridges/source/remote/urp/urp_propertyobject.hxx16
-rw-r--r--bridges/source/remote/urp/urp_reader.cxx6
-rw-r--r--bridges/source/remote/urp/urp_reader.hxx10
-rw-r--r--bridges/source/remote/urp/urp_replycontainer.hxx2
-rw-r--r--bridges/source/remote/urp/urp_threadid.cxx2
-rw-r--r--bridges/source/remote/urp/urp_threadid.hxx4
-rw-r--r--bridges/source/remote/urp/urp_unmarshal.cxx2
-rw-r--r--bridges/source/remote/urp/urp_unmarshal.hxx4
-rw-r--r--bridges/source/remote/urp/urp_writer.cxx2
-rw-r--r--bridges/source/remote/urp/urp_writer.hxx12
-rw-r--r--bridges/test/com/sun/star/lib/TestBed.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug107753_Test.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug108825_Test.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug110892_Test.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug111153_Test.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug114133_Test.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug51323_Test.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug92174_Test.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug97697_Test.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.idl2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.java2
-rwxr-xr-xbridges/test/com/sun/star/lib/uno/bridges/java_remote/MethodIdTest.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.idl2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.java2
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/StopMessageDispatcherTest.java2
-rw-r--r--bridges/test/inter_libs_exc/inter.cxx8
-rw-r--r--bridges/test/inter_libs_exc/starter.cxx2
-rw-r--r--bridges/test/inter_libs_exc/thrower.cxx2
-rw-r--r--bridges/test/java_uno/acquire/TestAcquire.java2
-rw-r--r--bridges/test/java_uno/acquire/testacquire.cxx2
-rw-r--r--bridges/test/java_uno/acquire/types.idl2
-rw-r--r--bridges/test/java_uno/any/TestAny.java2
-rw-r--r--bridges/test/java_uno/any/TestJni.java4
-rw-r--r--bridges/test/java_uno/any/TestRemote.java2
-rw-r--r--bridges/test/java_uno/any/transport.cxx10
-rw-r--r--bridges/test/java_uno/any/types.idl8
-rw-r--r--bridges/test/java_uno/equals/TestEquals.java2
-rw-r--r--bridges/test/java_uno/equals/testequals.cxx2
-rw-r--r--bridges/test/java_uno/equals/types.idl2
-rw-r--r--bridges/test/java_uno/nativethreadpool/Relay.java2
-rw-r--r--bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx2
-rw-r--r--bridges/test/java_uno/nativethreadpool/testnativethreadpoolserver.cxx2
-rw-r--r--bridges/test/java_uno/nativethreadpool/types.idl2
-rw-r--r--bridges/test/java_uno/nativethreadpool/version.map2
-rw-r--r--bridges/test/performance/testperformance.cxx18
-rw-r--r--bridges/test/test_bridge.idl30
-rw-r--r--bridges/test/testclient.cxx64
-rw-r--r--bridges/test/testclient.java32
-rw-r--r--bridges/test/testcomp.cxx28
-rw-r--r--bridges/test/testcomp.h38
-rw-r--r--bridges/test/testoffice.cxx4
-rw-r--r--bridges/test/testsameprocess.cxx10
-rw-r--r--bridges/test/testserver.cxx24
-rw-r--r--cairo/cairo/makefile.mk7
-rw-r--r--cairo/pixman/makefile.mk14
-rw-r--r--canvas/inc/canvas/base/basemutexhelper.hxx4
-rw-r--r--canvas/inc/canvas/base/bitmapcanvasbase.hxx52
-rw-r--r--canvas/inc/canvas/base/bufferedgraphicdevicebase.hxx24
-rw-r--r--canvas/inc/canvas/base/cachedprimitivebase.hxx28
-rw-r--r--canvas/inc/canvas/base/canvasbase.hxx180
-rw-r--r--canvas/inc/canvas/base/canvascustomspritebase.hxx46
-rw-r--r--canvas/inc/canvas/base/canvascustomspritehelper.hxx66
-rw-r--r--canvas/inc/canvas/base/doublebitmapbase.hxx38
-rw-r--r--canvas/inc/canvas/base/floatbitmapbase.hxx46
-rw-r--r--canvas/inc/canvas/base/graphicdevicebase.hxx80
-rw-r--r--canvas/inc/canvas/base/integerbitmapbase.hxx32
-rw-r--r--canvas/inc/canvas/base/sprite.hxx10
-rw-r--r--canvas/inc/canvas/base/spritecanvasbase.hxx58
-rw-r--r--canvas/inc/canvas/base/spritesurface.hxx20
-rwxr-xr-xcanvas/inc/canvas/canvastools.hxx200
-rw-r--r--canvas/inc/canvas/debug.hxx2
-rw-r--r--canvas/inc/canvas/elapsedtime.hxx42
-rw-r--r--canvas/inc/canvas/parametricpolypolygon.hxx80
-rw-r--r--canvas/inc/canvas/prioritybooster.hxx2
-rw-r--r--canvas/inc/canvas/propertysethelper.hxx12
-rw-r--r--canvas/inc/canvas/rendering/bitmap.hxx180
-rw-r--r--canvas/inc/canvas/rendering/icachedprimitive.hxx2
-rw-r--r--canvas/inc/canvas/rendering/icolorbuffer.hxx20
-rw-r--r--canvas/inc/canvas/rendering/irendermodule.hxx2
-rw-r--r--canvas/inc/canvas/rendering/isurface.hxx2
-rw-r--r--canvas/inc/canvas/rendering/isurfaceproxy.hxx16
-rw-r--r--canvas/inc/canvas/rendering/isurfaceproxymanager.hxx4
-rw-r--r--canvas/inc/canvas/spriteredrawmanager.hxx132
-rw-r--r--canvas/inc/canvas/vclwrapper.hxx20
-rw-r--r--canvas/inc/canvas/verbosetrace.hxx4
-rw-r--r--canvas/inc/canvas/verifyinput.hxx350
-rw-r--r--canvas/inc/pch/precompiled_canvas.cxx2
-rw-r--r--canvas/inc/pch/precompiled_canvas.hxx2
-rw-r--r--canvas/source/cairo/cairo_cachedbitmap.cxx14
-rw-r--r--canvas/source/cairo/cairo_cachedbitmap.hxx20
-rw-r--r--canvas/source/cairo/cairo_cairo.cxx6
-rw-r--r--canvas/source/cairo/cairo_cairo.hxx10
-rw-r--r--canvas/source/cairo/cairo_canvas.cxx20
-rw-r--r--canvas/source/cairo/cairo_canvas.hxx20
-rw-r--r--canvas/source/cairo/cairo_canvasbitmap.cxx56
-rw-r--r--canvas/source/cairo/cairo_canvasbitmap.hxx18
-rw-r--r--canvas/source/cairo/cairo_canvascustomsprite.cxx20
-rw-r--r--canvas/source/cairo/cairo_canvascustomsprite.hxx16
-rw-r--r--canvas/source/cairo/cairo_canvasfont.cxx26
-rw-r--r--canvas/source/cairo/cairo_canvasfont.hxx16
-rw-r--r--canvas/source/cairo/cairo_canvashelper.cxx330
-rw-r--r--canvas/source/cairo/cairo_canvashelper.hxx288
-rw-r--r--canvas/source/cairo/cairo_canvashelper_text.cxx76
-rw-r--r--canvas/source/cairo/cairo_canvashelper_texturefill.cxx40
-rw-r--r--canvas/source/cairo/cairo_devicehelper.cxx72
-rw-r--r--canvas/source/cairo/cairo_devicehelper.hxx42
-rw-r--r--canvas/source/cairo/cairo_quartz_cairo.cxx70
-rw-r--r--canvas/source/cairo/cairo_quartz_cairo.hxx8
-rw-r--r--canvas/source/cairo/cairo_repainttarget.hxx4
-rw-r--r--canvas/source/cairo/cairo_services.cxx2
-rw-r--r--canvas/source/cairo/cairo_sprite.hxx2
-rw-r--r--canvas/source/cairo/cairo_spritecanvas.cxx16
-rw-r--r--canvas/source/cairo/cairo_spritecanvas.hxx18
-rw-r--r--canvas/source/cairo/cairo_spritecanvashelper.cxx104
-rw-r--r--canvas/source/cairo/cairo_spritecanvashelper.hxx44
-rw-r--r--canvas/source/cairo/cairo_spritedevicehelper.cxx10
-rw-r--r--canvas/source/cairo/cairo_spritedevicehelper.hxx10
-rw-r--r--canvas/source/cairo/cairo_spritehelper.cxx12
-rw-r--r--canvas/source/cairo/cairo_spritehelper.hxx10
-rw-r--r--canvas/source/cairo/cairo_spritesurface.hxx20
-rw-r--r--canvas/source/cairo/cairo_surfaceprovider.hxx6
-rw-r--r--canvas/source/cairo/cairo_textlayout.cxx114
-rw-r--r--canvas/source/cairo/cairo_textlayout.hxx24
-rw-r--r--canvas/source/cairo/cairo_win32_cairo.cxx36
-rw-r--r--canvas/source/cairo/cairo_win32_cairo.hxx6
-rw-r--r--canvas/source/cairo/cairo_xlib_cairo.cxx36
-rw-r--r--canvas/source/cairo/cairo_xlib_cairo.hxx18
-rwxr-xr-xcanvas/source/directx/dx_5rm.cxx184
-rwxr-xr-xcanvas/source/directx/dx_9rm.cxx50
-rwxr-xr-xcanvas/source/directx/dx_bitmap.cxx58
-rwxr-xr-xcanvas/source/directx/dx_bitmap.hxx22
-rwxr-xr-xcanvas/source/directx/dx_bitmapcanvashelper.cxx60
-rwxr-xr-xcanvas/source/directx/dx_bitmapcanvashelper.hxx28
-rw-r--r--canvas/source/directx/dx_bitmapprovider.hxx2
-rw-r--r--canvas/source/directx/dx_canvas.cxx22
-rw-r--r--canvas/source/directx/dx_canvas.hxx14
-rwxr-xr-xcanvas/source/directx/dx_canvasbitmap.cxx54
-rwxr-xr-xcanvas/source/directx/dx_canvasbitmap.hxx6
-rwxr-xr-xcanvas/source/directx/dx_canvascustomsprite.cxx10
-rwxr-xr-xcanvas/source/directx/dx_canvascustomsprite.hxx14
-rwxr-xr-xcanvas/source/directx/dx_canvasfont.cxx12
-rwxr-xr-xcanvas/source/directx/dx_canvasfont.hxx24
-rwxr-xr-xcanvas/source/directx/dx_canvashelper.cxx290
-rwxr-xr-xcanvas/source/directx/dx_canvashelper.hxx160
-rwxr-xr-xcanvas/source/directx/dx_canvashelper_texturefill.cxx40
-rwxr-xr-xcanvas/source/directx/dx_config.cxx6
-rw-r--r--canvas/source/directx/dx_config.hxx6
-rwxr-xr-xcanvas/source/directx/dx_devicehelper.cxx36
-rwxr-xr-xcanvas/source/directx/dx_devicehelper.hxx26
-rwxr-xr-xcanvas/source/directx/dx_gdiplususer.cxx16
-rwxr-xr-xcanvas/source/directx/dx_gdiplususer.hxx2
-rw-r--r--canvas/source/directx/dx_graphicsprovider.hxx2
-rw-r--r--canvas/source/directx/dx_ibitmap.hxx18
-rwxr-xr-xcanvas/source/directx/dx_impltools.cxx140
-rwxr-xr-xcanvas/source/directx/dx_impltools.hxx32
-rwxr-xr-xcanvas/source/directx/dx_linepolypolygon.cxx4
-rwxr-xr-xcanvas/source/directx/dx_linepolypolygon.hxx6
-rwxr-xr-xcanvas/source/directx/dx_rendermodule.hxx2
-rwxr-xr-xcanvas/source/directx/dx_sprite.hxx2
-rwxr-xr-xcanvas/source/directx/dx_spritecanvas.cxx10
-rwxr-xr-xcanvas/source/directx/dx_spritecanvas.hxx8
-rwxr-xr-xcanvas/source/directx/dx_spritecanvashelper.cxx62
-rwxr-xr-xcanvas/source/directx/dx_spritecanvashelper.hxx34
-rw-r--r--canvas/source/directx/dx_spritedevicehelper.cxx20
-rw-r--r--canvas/source/directx/dx_spritedevicehelper.hxx24
-rwxr-xr-xcanvas/source/directx/dx_spritehelper.cxx26
-rwxr-xr-xcanvas/source/directx/dx_spritehelper.hxx12
-rw-r--r--canvas/source/directx/dx_surfacebitmap.cxx102
-rw-r--r--canvas/source/directx/dx_surfacebitmap.hxx46
-rwxr-xr-xcanvas/source/directx/dx_surfacegraphics.cxx6
-rwxr-xr-xcanvas/source/directx/dx_surfacegraphics.hxx2
-rwxr-xr-xcanvas/source/directx/dx_textlayout.cxx16
-rwxr-xr-xcanvas/source/directx/dx_textlayout.hxx2
-rwxr-xr-xcanvas/source/directx/dx_textlayout_drawhelper.cxx26
-rwxr-xr-xcanvas/source/directx/dx_textlayout_drawhelper.hxx26
-rwxr-xr-xcanvas/source/directx/dx_vcltools.cxx86
-rwxr-xr-xcanvas/source/directx/dx_vcltools.hxx12
-rwxr-xr-xcanvas/source/directx/dx_winstuff.hxx27
-rw-r--r--canvas/source/factory/cf_service.cxx70
-rw-r--r--canvas/source/null/null_canvasbitmap.cxx4
-rw-r--r--canvas/source/null/null_canvasbitmap.hxx14
-rw-r--r--canvas/source/null/null_canvascustomsprite.cxx8
-rw-r--r--canvas/source/null/null_canvascustomsprite.hxx14
-rw-r--r--canvas/source/null/null_canvasfont.cxx16
-rw-r--r--canvas/source/null/null_canvasfont.hxx14
-rw-r--r--canvas/source/null/null_canvashelper.cxx208
-rw-r--r--canvas/source/null/null_canvashelper.hxx274
-rw-r--r--canvas/source/null/null_devicehelper.cxx68
-rw-r--r--canvas/source/null/null_devicehelper.hxx44
-rw-r--r--canvas/source/null/null_spritecanvas.cxx4
-rw-r--r--canvas/source/null/null_spritecanvas.hxx18
-rw-r--r--canvas/source/null/null_spritecanvashelper.cxx28
-rw-r--r--canvas/source/null/null_spritecanvashelper.hxx38
-rw-r--r--canvas/source/null/null_spritehelper.cxx8
-rw-r--r--canvas/source/null/null_spritehelper.hxx12
-rw-r--r--canvas/source/null/null_textlayout.cxx34
-rw-r--r--canvas/source/null/null_textlayout.hxx14
-rw-r--r--canvas/source/null/null_usagecounter.hxx4
-rw-r--r--canvas/source/null/sprite.hxx2
-rw-r--r--canvas/source/simplecanvas/simplecanvasimpl.cxx48
-rw-r--r--canvas/source/tools/bitmap.cxx82
-rw-r--r--canvas/source/tools/cachedprimitivebase.cxx20
-rw-r--r--canvas/source/tools/canvascustomspritehelper.cxx82
-rwxr-xr-xcanvas/source/tools/canvastools.cxx206
-rw-r--r--canvas/source/tools/elapsedtime.cxx12
-rw-r--r--canvas/source/tools/image.cxx114
-rw-r--r--canvas/source/tools/image.hxx76
-rw-r--r--canvas/source/tools/image_sysprereq.h2
-rw-r--r--canvas/source/tools/imagecachedprimitive.hxx2
-rw-r--r--canvas/source/tools/page.cxx2
-rw-r--r--canvas/source/tools/page.hxx14
-rw-r--r--canvas/source/tools/pagemanager.cxx8
-rw-r--r--canvas/source/tools/pagemanager.hxx6
-rw-r--r--canvas/source/tools/parametricpolypolygon.cxx64
-rw-r--r--canvas/source/tools/prioritybooster.cxx12
-rw-r--r--canvas/source/tools/propertysethelper.cxx20
-rw-r--r--canvas/source/tools/spriteredrawmanager.cxx118
-rw-r--r--canvas/source/tools/surface.cxx60
-rw-r--r--canvas/source/tools/surface.hxx12
-rw-r--r--canvas/source/tools/surfaceproxy.cxx10
-rw-r--r--canvas/source/tools/surfaceproxy.hxx20
-rw-r--r--canvas/source/tools/surfaceproxymanager.cxx4
-rw-r--r--canvas/source/tools/surfacerect.hxx6
-rw-r--r--canvas/source/tools/verifyinput.cxx160
-rw-r--r--canvas/source/vcl/backbuffer.cxx10
-rw-r--r--canvas/source/vcl/backbuffer.hxx18
-rw-r--r--canvas/source/vcl/bitmapbackbuffer.cxx22
-rw-r--r--canvas/source/vcl/bitmapbackbuffer.hxx24
-rw-r--r--canvas/source/vcl/cachedbitmap.cxx22
-rw-r--r--canvas/source/vcl/cachedbitmap.hxx30
-rw-r--r--canvas/source/vcl/canvas.cxx22
-rw-r--r--canvas/source/vcl/canvas.hxx20
-rw-r--r--canvas/source/vcl/canvasbitmap.cxx14
-rw-r--r--canvas/source/vcl/canvasbitmap.hxx16
-rw-r--r--canvas/source/vcl/canvasbitmaphelper.cxx150
-rw-r--r--canvas/source/vcl/canvasbitmaphelper.hxx34
-rw-r--r--canvas/source/vcl/canvascustomsprite.cxx36
-rw-r--r--canvas/source/vcl/canvascustomsprite.hxx14
-rw-r--r--canvas/source/vcl/canvasfont.cxx24
-rw-r--r--canvas/source/vcl/canvasfont.hxx10
-rw-r--r--canvas/source/vcl/canvashelper.cxx356
-rw-r--r--canvas/source/vcl/canvashelper.hxx320
-rw-r--r--[-rwxr-xr-x]canvas/source/vcl/canvashelper_texturefill.cxx213
-rw-r--r--canvas/source/vcl/devicehelper.cxx66
-rw-r--r--canvas/source/vcl/devicehelper.hxx38
-rw-r--r--canvas/source/vcl/impltools.cxx116
-rw-r--r--canvas/source/vcl/impltools.hxx56
-rw-r--r--canvas/source/vcl/outdevprovider.hxx6
-rw-r--r--canvas/source/vcl/repainttarget.hxx6
-rw-r--r--canvas/source/vcl/services.cxx2
-rw-r--r--canvas/source/vcl/sprite.hxx2
-rw-r--r--canvas/source/vcl/spritecanvas.cxx32
-rw-r--r--canvas/source/vcl/spritecanvas.hxx20
-rw-r--r--canvas/source/vcl/spritecanvashelper.cxx148
-rw-r--r--canvas/source/vcl/spritecanvashelper.hxx68
-rw-r--r--canvas/source/vcl/spritedevicehelper.cxx20
-rw-r--r--canvas/source/vcl/spritedevicehelper.hxx4
-rw-r--r--canvas/source/vcl/spritehelper.cxx88
-rw-r--r--canvas/source/vcl/spritehelper.hxx18
-rw-r--r--canvas/source/vcl/textlayout.cxx18
-rw-r--r--canvas/source/vcl/textlayout.hxx24
-rw-r--r--canvas/source/vcl/windowoutdevholder.cxx2
-rw-r--r--canvas/source/vcl/windowoutdevholder.hxx8
-rw-r--r--canvas/workben/canvasdemo.cxx56
-rw-r--r--chart2/inc/pch/precompiled_chart2.cxx2
-rw-r--r--chart2/inc/pch/precompiled_chart2.hxx2
-rw-r--r--chart2/source/controller/accessibility/AccStatisticsObject.cxx4
-rw-r--r--chart2/source/controller/accessibility/AccStatisticsObject.hxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleBase.cxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartElement.cxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartElement.hxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartShape.cxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartShape.hxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartView.cxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleTextHelper.cxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleViewForwarder.cxx2
-rw-r--r--chart2/source/controller/accessibility/AccessibleViewForwarder.hxx4
-rw-r--r--chart2/source/controller/accessibility/ChartElementFactory.cxx2
-rw-r--r--chart2/source/controller/accessibility/ChartElementFactory.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/AreaWrapper.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/AreaWrapper.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/AxisWrapper.cxx14
-rw-r--r--chart2/source/controller/chartapiwrapper/AxisWrapper.hxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/Chart2ModelContact.cxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/Chart2ModelContact.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx8
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx22
-rw-r--r--chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.hxx6
-rw-r--r--chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx24
-rw-r--r--chart2/source/controller/chartapiwrapper/DiagramWrapper.hxx6
-rw-r--r--chart2/source/controller/chartapiwrapper/GridWrapper.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/GridWrapper.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/LegendWrapper.cxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/LegendWrapper.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx6
-rw-r--r--chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.hxx10
-rw-r--r--chart2/source/controller/chartapiwrapper/ReferenceSizePropertyProvider.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/TitleWrapper.cxx12
-rw-r--r--chart2/source/controller/chartapiwrapper/TitleWrapper.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx6
-rw-r--r--chart2/source/controller/chartapiwrapper/UpDownBarWrapper.hxx12
-rw-r--r--chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WallFloorWrapper.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAddInProperty.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAxisAndGridExistenceProperties.cxx8
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAxisAndGridExistenceProperties.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx12
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedGapwidthProperty.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedGapwidthProperty.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleProperty.cxx16
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleProperty.hxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx6
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSceneProperty.cxx10
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSceneProperty.hxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesAreaOrLineProperty.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesAreaOrLineProperty.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx6
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSplineProperties.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx4
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx6
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStockProperties.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedTextRotationProperty.cxx2
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedTextRotationProperty.hxx2
-rw-r--r--chart2/source/controller/dialogs/Bitmaps.hrc2
-rw-r--r--chart2/source/controller/dialogs/Bitmaps.src2
-rw-r--r--chart2/source/controller/dialogs/Bitmaps_HC.hrc2
-rw-r--r--chart2/source/controller/dialogs/Bitmaps_HC.src2
-rw-r--r--chart2/source/controller/dialogs/ChangingResource.cxx2
-rw-r--r--chart2/source/controller/dialogs/ChangingResource.hxx4
-rw-r--r--chart2/source/controller/dialogs/ChartTypeDialogController.cxx34
-rw-r--r--chart2/source/controller/dialogs/ChartTypeDialogController.hxx46
-rw-r--r--chart2/source/controller/dialogs/ChartTypeTemplateProvider.hxx2
-rw-r--r--chart2/source/controller/dialogs/CommonResources.hrc2
-rw-r--r--chart2/source/controller/dialogs/DataBrowser.cxx4
-rw-r--r--chart2/source/controller/dialogs/DataBrowser.hxx12
-rw-r--r--chart2/source/controller/dialogs/DataBrowserModel.cxx4
-rw-r--r--chart2/source/controller/dialogs/DataBrowserModel.hxx2
-rw-r--r--chart2/source/controller/dialogs/DialogModel.cxx2
-rw-r--r--chart2/source/controller/dialogs/DialogModel.hxx2
-rw-r--r--chart2/source/controller/dialogs/ObjectNameProvider.cxx16
-rw-r--r--chart2/source/controller/dialogs/RangeEdit.cxx2
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionButton.cxx2
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionHelper.cxx2
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionListener.cxx2
-rw-r--r--chart2/source/controller/dialogs/ResourceIds.hrc6
-rw-r--r--chart2/source/controller/dialogs/Strings.src4
-rw-r--r--chart2/source/controller/dialogs/Strings_AdditionalControls.src2
-rw-r--r--chart2/source/controller/dialogs/Strings_ChartTypes.src2
-rw-r--r--chart2/source/controller/dialogs/Strings_Scale.src2
-rw-r--r--chart2/source/controller/dialogs/Strings_Statistic.src2
-rw-r--r--chart2/source/controller/dialogs/TabPages.hrc106
-rw-r--r--chart2/source/controller/dialogs/TextDirectionListBox.cxx2
-rw-r--r--chart2/source/controller/dialogs/TimerTriggeredControllerLock.cxx2
-rw-r--r--chart2/source/controller/dialogs/TitleDialogData.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.cxx4
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.src8
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx4
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx4
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.src8
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.src4
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.hrc4
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_NumberFormat.cxx4
-rw-r--r--chart2/source/controller/dialogs/dlg_NumberFormat.hxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_ObjectProperties.cxx4
-rw-r--r--chart2/source/controller/dialogs/dlg_ObjectProperties.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeFont.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeFont.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeParagraph.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeParagraph.src2
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.cxx2
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.hrc2
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.src4
-rw-r--r--chart2/source/controller/dialogs/hidother.src2
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.cxx6
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.hxx2
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.src2
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel.cxx6
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel.hxx2
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel_IDs.hrc2
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel_tmpl.hrc6
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar.cxx2
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar_IDs.hrc2
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar_tmpl.hrc4
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition.cxx6
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition.hxx10
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition_IDs.hrc2
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition_tmpl.hrc2
-rw-r--r--chart2/source/controller/dialogs/res_SecondaryAxisCheckBoxes_tmpl.hrc2
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.cxx2
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.hxx2
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.src4
-rw-r--r--chart2/source/controller/dialogs/res_Titles.cxx12
-rw-r--r--chart2/source/controller/dialogs/res_Titles.hrc2
-rw-r--r--chart2/source/controller/dialogs/res_Titles.hxx22
-rw-r--r--chart2/source/controller/dialogs/res_Titlesx_tmpl.hrc2
-rw-r--r--chart2/source/controller/dialogs/res_Trendline.cxx2
-rw-r--r--chart2/source/controller/dialogs/res_Trendline.hxx2
-rw-r--r--chart2/source/controller/dialogs/res_Trendline_IDs.hrc2
-rw-r--r--chart2/source/controller/dialogs/res_Trendline_tmpl.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.cxx10
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.hxx14
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.src8
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.cxx22
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.hxx24
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.src8
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx26
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx4
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.src10
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.cxx4
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.hxx16
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.src28
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.cxx18
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.hxx8
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.src28
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.cxx10
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.hrc8
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.hxx8
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.src6
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.hxx2
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.src2
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.cxx6
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.hxx4
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.src2
-rw-r--r--chart2/source/controller/dialogs/tp_DataSourceControls.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_DataSourceControls.hxx2
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.hxx2
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.src4
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.hxx4
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.src2
-rw-r--r--chart2/source/controller/dialogs/tp_Location.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_Location.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_Location.hxx2
-rw-r--r--chart2/source/controller/dialogs/tp_Location.src2
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.hxx2
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.src2
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.hxx4
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.src4
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.hxx2
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.src2
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.cxx32
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.hxx48
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.src12
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.cxx18
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.hrc20
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.hxx8
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.src18
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.hxx2
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.src2
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.hxx2
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.src4
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.cxx2
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.hrc2
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.hxx8
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.src2
-rw-r--r--chart2/source/controller/drawinglayer/DrawViewWrapper.cxx10
-rw-r--r--chart2/source/controller/drawinglayer/ViewElementListProvider.cxx6
-rw-r--r--chart2/source/controller/inc/AccessibleBase.hxx2
-rw-r--r--chart2/source/controller/inc/AccessibleChartView.hxx2
-rw-r--r--chart2/source/controller/inc/AccessibleTextHelper.hxx2
-rw-r--r--chart2/source/controller/inc/AxisItemConverter.hxx4
-rw-r--r--chart2/source/controller/inc/CharacterPropertyItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/ChartDocumentWrapper.hxx6
-rw-r--r--chart2/source/controller/inc/ChartRenderer.hxx4
-rw-r--r--chart2/source/controller/inc/ConfigurationAccess.hxx2
-rw-r--r--chart2/source/controller/inc/DataPointItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/DrawViewWrapper.hxx2
-rwxr-xr-xchart2/source/controller/inc/ErrorBarItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/GraphicPropertyItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/HelpIds.hrc12
-rw-r--r--chart2/source/controller/inc/ItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/ItemPropertyMap.hxx2
-rw-r--r--chart2/source/controller/inc/LegendItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/MenuResIds.hrc2
-rw-r--r--chart2/source/controller/inc/MultipleChartConverters.hxx2
-rw-r--r--chart2/source/controller/inc/MultipleItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/ObjectHierarchy.hxx4
-rw-r--r--chart2/source/controller/inc/ObjectNameProvider.hxx4
-rw-r--r--chart2/source/controller/inc/PositionAndSizeHelper.hxx2
-rwxr-xr-xchart2/source/controller/inc/RangeEdit.hxx2
-rw-r--r--chart2/source/controller/inc/RangeSelectionButton.hxx2
-rwxr-xr-xchart2/source/controller/inc/RangeSelectionHelper.hxx2
-rw-r--r--chart2/source/controller/inc/RangeSelectionListener.hxx2
-rw-r--r--chart2/source/controller/inc/RegressionCurveItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/RegressionEquationItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/SchSlotIds.hxx78
-rw-r--r--chart2/source/controller/inc/SeriesOptionsItemConverter.hxx4
-rw-r--r--chart2/source/controller/inc/ShapeController.hrc2
-rw-r--r--chart2/source/controller/inc/StatisticsItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/TabPageNotifiable.hxx2
-rw-r--r--chart2/source/controller/inc/TextDirectionListBox.hxx2
-rw-r--r--chart2/source/controller/inc/TimerTriggeredControllerLock.hxx2
-rw-r--r--chart2/source/controller/inc/TitleDialogData.hxx2
-rw-r--r--chart2/source/controller/inc/TitleItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/ViewElementListProvider.hxx2
-rw-r--r--chart2/source/controller/inc/dlg_ChartType.hxx10
-rw-r--r--chart2/source/controller/inc/dlg_ChartType_UNO.hxx6
-rw-r--r--chart2/source/controller/inc/dlg_CreationWizard.hxx12
-rw-r--r--chart2/source/controller/inc/dlg_CreationWizard_UNO.hxx8
-rw-r--r--chart2/source/controller/inc/dlg_DataEditor.hxx4
-rw-r--r--chart2/source/controller/inc/dlg_DataSource.hxx8
-rw-r--r--chart2/source/controller/inc/dlg_InsertAxis_Grid.hxx28
-rw-r--r--chart2/source/controller/inc/dlg_InsertDataLabel.hxx10
-rw-r--r--chart2/source/controller/inc/dlg_InsertErrorBars.hxx2
-rw-r--r--chart2/source/controller/inc/dlg_InsertLegend.hxx8
-rw-r--r--chart2/source/controller/inc/dlg_InsertTitle.hxx10
-rw-r--r--chart2/source/controller/inc/dlg_InsertTrendline.hxx2
-rw-r--r--chart2/source/controller/inc/dlg_ObjectProperties.hxx22
-rw-r--r--chart2/source/controller/inc/dlg_ShapeFont.hxx2
-rw-r--r--chart2/source/controller/inc/dlg_ShapeParagraph.hxx2
-rw-r--r--chart2/source/controller/inc/dlg_View3D.hxx8
-rw-r--r--chart2/source/controller/inc/res_ErrorBar.hxx2
-rw-r--r--chart2/source/controller/itemsetwrapper/AxisItemConverter.cxx22
-rw-r--r--chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx4
-rw-r--r--chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx16
-rwxr-xr-xchart2/source/controller/itemsetwrapper/ErrorBarItemConverter.cxx2
-rw-r--r--chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx4
-rw-r--r--chart2/source/controller/itemsetwrapper/ItemConverter.cxx2
-rw-r--r--chart2/source/controller/itemsetwrapper/LegendItemConverter.cxx2
-rw-r--r--chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx4
-rw-r--r--chart2/source/controller/itemsetwrapper/MultipleItemConverter.cxx2
-rw-r--r--chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx2
-rw-r--r--chart2/source/controller/itemsetwrapper/RegressionEquationItemConverter.cxx2
-rw-r--r--chart2/source/controller/itemsetwrapper/SchWhichPairs.hxx102
-rw-r--r--chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx6
-rw-r--r--chart2/source/controller/itemsetwrapper/StatisticsItemConverter.cxx2
-rw-r--r--chart2/source/controller/itemsetwrapper/TitleItemConverter.cxx2
-rw-r--r--chart2/source/controller/main/ChartController.cxx54
-rw-r--r--chart2/source/controller/main/ChartController.hxx78
-rw-r--r--chart2/source/controller/main/ChartController_EditData.cxx2
-rw-r--r--chart2/source/controller/main/ChartController_Insert.cxx8
-rw-r--r--chart2/source/controller/main/ChartController_Position.cxx12
-rw-r--r--chart2/source/controller/main/ChartController_Properties.cxx16
-rw-r--r--chart2/source/controller/main/ChartController_TextEdit.cxx4
-rw-r--r--chart2/source/controller/main/ChartController_Tools.cxx20
-rw-r--r--chart2/source/controller/main/ChartController_Window.cxx46
-rw-r--r--chart2/source/controller/main/ChartDropTargetHelper.cxx2
-rw-r--r--chart2/source/controller/main/ChartDropTargetHelper.hxx4
-rw-r--r--chart2/source/controller/main/ChartFrameloader.cxx8
-rw-r--r--chart2/source/controller/main/ChartFrameloader.hxx16
-rw-r--r--chart2/source/controller/main/ChartRenderer.cxx8
-rw-r--r--chart2/source/controller/main/ChartTransferable.cxx2
-rw-r--r--chart2/source/controller/main/ChartTransferable.hxx2
-rw-r--r--chart2/source/controller/main/ChartWindow.cxx2
-rw-r--r--chart2/source/controller/main/ChartWindow.hxx2
-rw-r--r--chart2/source/controller/main/CommandDispatch.cxx2
-rw-r--r--chart2/source/controller/main/CommandDispatch.hxx2
-rw-r--r--chart2/source/controller/main/CommandDispatchContainer.cxx6
-rw-r--r--chart2/source/controller/main/CommandDispatchContainer.hxx2
-rw-r--r--chart2/source/controller/main/ConfigurationAccess.cxx2
-rw-r--r--chart2/source/controller/main/ControllerCommandDispatch.cxx2
-rw-r--r--chart2/source/controller/main/ControllerCommandDispatch.hxx2
-rw-r--r--chart2/source/controller/main/DragMethod_Base.cxx2
-rw-r--r--chart2/source/controller/main/DragMethod_Base.hxx2
-rw-r--r--chart2/source/controller/main/DragMethod_PieSegment.cxx4
-rw-r--r--chart2/source/controller/main/DragMethod_PieSegment.hxx2
-rw-r--r--chart2/source/controller/main/DragMethod_RotateDiagram.cxx12
-rw-r--r--chart2/source/controller/main/DragMethod_RotateDiagram.hxx8
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.cxx4
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.hrc2
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.hxx2
-rw-r--r--chart2/source/controller/main/ElementSelector.cxx6
-rw-r--r--chart2/source/controller/main/ElementSelector.hxx8
-rw-r--r--chart2/source/controller/main/FeatureCommandDispatchBase.cxx2
-rw-r--r--chart2/source/controller/main/FeatureCommandDispatchBase.hxx4
-rw-r--r--chart2/source/controller/main/ImplUndoManager.cxx2
-rw-r--r--chart2/source/controller/main/ImplUndoManager.hxx2
-rw-r--r--chart2/source/controller/main/ObjectHierarchy.cxx6
-rw-r--r--chart2/source/controller/main/PositionAndSizeHelper.cxx2
-rw-r--r--chart2/source/controller/main/SelectionHelper.cxx16
-rw-r--r--chart2/source/controller/main/SelectionHelper.hxx2
-rw-r--r--chart2/source/controller/main/ShapeController.cxx2
-rw-r--r--chart2/source/controller/main/ShapeController.hxx2
-rw-r--r--chart2/source/controller/main/ShapeToolbarController.cxx10
-rw-r--r--chart2/source/controller/main/ShapeToolbarController.hxx4
-rw-r--r--chart2/source/controller/main/StatusBarCommandDispatch.cxx2
-rw-r--r--chart2/source/controller/main/StatusBarCommandDispatch.hxx2
-rw-r--r--chart2/source/controller/main/UndoCommandDispatch.cxx2
-rw-r--r--chart2/source/controller/main/UndoCommandDispatch.hxx2
-rw-r--r--chart2/source/controller/main/UndoGuard.cxx2
-rw-r--r--chart2/source/controller/main/UndoManager.cxx2
-rw-r--r--chart2/source/controller/main/_serviceregistration_controller.cxx2
-rw-r--r--chart2/source/controller/menus/ShapeContextMenu.src6
-rw-r--r--chart2/source/controller/menus/ShapeEditContextMenu.src2
-rw-r--r--chart2/source/inc/AxisHelper.hxx8
-rw-r--r--chart2/source/inc/AxisIndexDefines.hxx2
-rw-r--r--chart2/source/inc/BaseGFXHelper.hxx2
-rw-r--r--chart2/source/inc/CachedDataSequence.hxx4
-rw-r--r--chart2/source/inc/CharacterProperties.hxx2
-rw-r--r--chart2/source/inc/ChartDebugTrace.hxx2
-rw-r--r--chart2/source/inc/ChartModelHelper.hxx2
-rw-r--r--chart2/source/inc/ChartTypeHelper.hxx2
-rw-r--r--chart2/source/inc/ChartViewHelper.hxx2
-rw-r--r--chart2/source/inc/CloneHelper.hxx2
-rw-r--r--chart2/source/inc/ColorPerPointHelper.hxx2
-rw-r--r--chart2/source/inc/CommonConverters.hxx4
-rw-r--r--chart2/source/inc/CommonFunctors.hxx2
-rw-r--r--chart2/source/inc/ConfigColorScheme.hxx2
-rw-r--r--chart2/source/inc/ConfigItemListener.hxx2
-rw-r--r--chart2/source/inc/ContainerHelper.hxx2
-rw-r--r--chart2/source/inc/ControllerLockGuard.hxx2
-rw-r--r--chart2/source/inc/DataSeriesHelper.hxx2
-rw-r--r--chart2/source/inc/DataSource.hxx2
-rw-r--r--chart2/source/inc/DataSourceHelper.hxx4
-rw-r--r--chart2/source/inc/DiagramHelper.hxx6
-rw-r--r--chart2/source/inc/DisposeHelper.hxx2
-rw-r--r--chart2/source/inc/ErrorBar.hxx2
-rw-r--r--chart2/source/inc/EventListenerHelper.hxx2
-rw-r--r--chart2/source/inc/ExplicitCategoriesProvider.hxx2
-rw-r--r--chart2/source/inc/ExponentialRegressionCurveCalculator.hxx2
-rw-r--r--chart2/source/inc/FastPropertyIdRanges.hxx2
-rw-r--r--chart2/source/inc/FillProperties.hxx2
-rw-r--r--chart2/source/inc/FormattedStringHelper.hxx2
-rwxr-xr-xchart2/source/inc/InternalData.hxx4
-rw-r--r--chart2/source/inc/InternalDataProvider.hxx8
-rw-r--r--chart2/source/inc/LabeledDataSequence.hxx2
-rw-r--r--chart2/source/inc/LegendHelper.hxx2
-rw-r--r--chart2/source/inc/LifeTime.hxx86
-rw-r--r--chart2/source/inc/LineProperties.hxx2
-rw-r--r--chart2/source/inc/LinearRegressionCurveCalculator.hxx2
-rw-r--r--chart2/source/inc/LogarithmicRegressionCurveCalculator.hxx2
-rw-r--r--chart2/source/inc/MeanValueRegressionCurveCalculator.hxx2
-rw-r--r--chart2/source/inc/MediaDescriptorHelper.hxx134
-rw-r--r--chart2/source/inc/ModifyListenerCallBack.hxx4
-rw-r--r--chart2/source/inc/ModifyListenerHelper.hxx2
-rw-r--r--chart2/source/inc/MutexContainer.hxx2
-rw-r--r--chart2/source/inc/NameContainer.hxx2
-rw-r--r--chart2/source/inc/NamedFillProperties.hxx2
-rw-r--r--chart2/source/inc/NamedLineProperties.hxx2
-rw-r--r--chart2/source/inc/NamedProperties.hxx2
-rw-r--r--chart2/source/inc/NoWarningThisInCTOR.hxx2
-rw-r--r--chart2/source/inc/OPropertySet.hxx2
-rw-r--r--chart2/source/inc/ObjectIdentifier.hxx6
-rw-r--r--chart2/source/inc/PotentialRegressionCurveCalculator.hxx2
-rw-r--r--chart2/source/inc/PropertyHelper.hxx2
-rw-r--r--chart2/source/inc/RangeHighlighter.hxx2
-rw-r--r--chart2/source/inc/ReferenceSizeProvider.hxx2
-rw-r--r--chart2/source/inc/RegressionCurveCalculator.hxx2
-rw-r--r--chart2/source/inc/RegressionCurveHelper.hxx4
-rw-r--r--chart2/source/inc/RelativePositionHelper.hxx2
-rw-r--r--chart2/source/inc/RelativeSizeHelper.hxx2
-rw-r--r--chart2/source/inc/ResId.hxx2
-rw-r--r--chart2/source/inc/RessourceManager.hxx2
-rw-r--r--chart2/source/inc/Scaling.hxx2
-rw-r--r--chart2/source/inc/SceneProperties.hxx2
-rw-r--r--chart2/source/inc/ServiceMacros.hxx32
-rw-r--r--chart2/source/inc/StackMode.hxx2
-rw-r--r--chart2/source/inc/StatisticsHelper.hxx2
-rw-r--r--chart2/source/inc/Strings.hrc176
-rw-r--r--chart2/source/inc/ThreeDHelper.hxx8
-rw-r--r--chart2/source/inc/TitleHelper.hxx2
-rw-r--r--chart2/source/inc/TrueGuard.hxx4
-rw-r--r--chart2/source/inc/UncachedDataSequence.hxx2
-rw-r--r--chart2/source/inc/UndoGuard.hxx2
-rw-r--r--chart2/source/inc/UndoManager.hxx2
-rw-r--r--chart2/source/inc/UserDefinedProperties.hxx2
-rw-r--r--chart2/source/inc/WeakListenerAdapter.hxx2
-rw-r--r--chart2/source/inc/WrappedDefaultProperty.hxx2
-rw-r--r--chart2/source/inc/WrappedDirectStateProperty.hxx2
-rw-r--r--chart2/source/inc/WrappedIgnoreProperty.hxx2
-rw-r--r--chart2/source/inc/WrappedProperty.hxx2
-rw-r--r--chart2/source/inc/WrappedPropertySet.hxx10
-rw-r--r--chart2/source/inc/XMLRangeHelper.hxx2
-rw-r--r--chart2/source/inc/charttoolsdllapi.hxx2
-rw-r--r--chart2/source/inc/chartview/ChartSfxItemIds.hxx190
-rw-r--r--chart2/source/inc/chartview/DataPointSymbolSupplier.hxx2
-rw-r--r--chart2/source/inc/chartview/DrawModelWrapper.hxx4
-rw-r--r--chart2/source/inc/chartview/ExplicitValueProvider.hxx4
-rw-r--r--chart2/source/inc/chartview/NumberFormatterWrapper.hxx2
-rw-r--r--chart2/source/inc/chartview/chartviewdllapi.hxx2
-rw-r--r--chart2/source/inc/chartview/servicenames_charttypes.hxx2
-rw-r--r--chart2/source/inc/macros.hxx2
-rw-r--r--chart2/source/inc/servicenames.hxx2
-rw-r--r--chart2/source/inc/servicenames_charttypes.hxx2
-rw-r--r--chart2/source/inc/servicenames_coosystems.hxx2
-rw-r--r--chart2/source/inc/servicenames_dlwrapper.hxx2
-rw-r--r--chart2/source/model/filter/XMLFilter.cxx8
-rw-r--r--chart2/source/model/inc/BaseCoordinateSystem.hxx2
-rw-r--r--chart2/source/model/inc/CartesianCoordinateSystem.hxx2
-rw-r--r--chart2/source/model/inc/ChartTypeManager.hxx2
-rw-r--r--chart2/source/model/inc/DataSeries.hxx2
-rw-r--r--chart2/source/model/inc/DataSeriesTree.hxx2
-rw-r--r--chart2/source/model/inc/Diagram.hxx12
-rw-r--r--chart2/source/model/inc/PolarCoordinateSystem.hxx2
-rw-r--r--chart2/source/model/inc/StockBar.hxx2
-rw-r--r--chart2/source/model/inc/XMLFilter.hxx18
-rw-r--r--chart2/source/model/inc/_serviceregistration_charttypes.hxx2
-rw-r--r--chart2/source/model/main/Axis.cxx4
-rw-r--r--chart2/source/model/main/Axis.hxx6
-rw-r--r--chart2/source/model/main/BaseCoordinateSystem.cxx2
-rw-r--r--chart2/source/model/main/CartesianCoordinateSystem.cxx2
-rwxr-xr-xchart2/source/model/main/ChartModel.cxx19
-rw-r--r--chart2/source/model/main/ChartModel.hxx58
-rw-r--r--chart2/source/model/main/ChartModel_Persistence.cxx32
-rw-r--r--chart2/source/model/main/DataPoint.cxx2
-rw-r--r--chart2/source/model/main/DataPoint.hxx2
-rw-r--r--chart2/source/model/main/DataPointProperties.cxx2
-rw-r--r--chart2/source/model/main/DataPointProperties.hxx2
-rw-r--r--chart2/source/model/main/DataSeries.cxx4
-rw-r--r--chart2/source/model/main/DataSeriesProperties.cxx2
-rw-r--r--chart2/source/model/main/DataSeriesProperties.hxx2
-rw-r--r--chart2/source/model/main/Diagram.cxx2
-rw-r--r--chart2/source/model/main/FormattedString.cxx4
-rw-r--r--chart2/source/model/main/FormattedString.hxx6
-rw-r--r--chart2/source/model/main/GridProperties.cxx2
-rw-r--r--chart2/source/model/main/GridProperties.hxx2
-rw-r--r--chart2/source/model/main/LayoutContainer.cxx2
-rw-r--r--chart2/source/model/main/LayoutContainer.hxx2
-rw-r--r--chart2/source/model/main/Legend.cxx2
-rw-r--r--chart2/source/model/main/Legend.hxx6
-rw-r--r--chart2/source/model/main/PageBackground.cxx2
-rw-r--r--chart2/source/model/main/PageBackground.hxx6
-rw-r--r--chart2/source/model/main/PolarCoordinateSystem.cxx2
-rw-r--r--chart2/source/model/main/StockBar.cxx2
-rw-r--r--chart2/source/model/main/Title.cxx2
-rw-r--r--chart2/source/model/main/Title.hxx6
-rw-r--r--chart2/source/model/main/Wall.cxx2
-rw-r--r--chart2/source/model/main/Wall.hxx6
-rw-r--r--chart2/source/model/main/_serviceregistration_model.cxx2
-rw-r--r--chart2/source/model/template/AreaChartType.cxx2
-rw-r--r--chart2/source/model/template/AreaChartType.hxx2
-rw-r--r--chart2/source/model/template/AreaChartTypeTemplate.cxx4
-rw-r--r--chart2/source/model/template/AreaChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/BarChartType.cxx2
-rw-r--r--chart2/source/model/template/BarChartType.hxx2
-rw-r--r--chart2/source/model/template/BarChartTypeTemplate.cxx6
-rw-r--r--chart2/source/model/template/BarChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/BubbleChartType.cxx6
-rw-r--r--chart2/source/model/template/BubbleChartType.hxx2
-rw-r--r--chart2/source/model/template/BubbleChartTypeTemplate.cxx2
-rw-r--r--chart2/source/model/template/BubbleChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/BubbleDataInterpreter.cxx6
-rw-r--r--chart2/source/model/template/BubbleDataInterpreter.hxx2
-rw-r--r--chart2/source/model/template/CandleStickChartType.cxx2
-rw-r--r--chart2/source/model/template/CandleStickChartType.hxx2
-rw-r--r--chart2/source/model/template/ChartType.cxx4
-rw-r--r--chart2/source/model/template/ChartType.hxx8
-rw-r--r--chart2/source/model/template/ChartTypeManager.cxx2
-rw-r--r--chart2/source/model/template/ChartTypeTemplate.cxx4
-rw-r--r--chart2/source/model/template/ChartTypeTemplate.hxx4
-rw-r--r--chart2/source/model/template/ColumnChartType.cxx2
-rw-r--r--chart2/source/model/template/ColumnChartType.hxx2
-rw-r--r--chart2/source/model/template/ColumnLineChartTypeTemplate.cxx4
-rw-r--r--chart2/source/model/template/ColumnLineChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/ColumnLineDataInterpreter.cxx2
-rw-r--r--chart2/source/model/template/ColumnLineDataInterpreter.hxx2
-rw-r--r--chart2/source/model/template/DataInterpreter.cxx2
-rw-r--r--chart2/source/model/template/DataInterpreter.hxx2
-rw-r--r--chart2/source/model/template/FilledNetChartType.cxx2
-rw-r--r--chart2/source/model/template/FilledNetChartType.hxx2
-rw-r--r--chart2/source/model/template/LineChartType.cxx2
-rw-r--r--chart2/source/model/template/LineChartType.hxx2
-rw-r--r--chart2/source/model/template/LineChartTypeTemplate.cxx2
-rw-r--r--chart2/source/model/template/LineChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/NetChartType.cxx4
-rw-r--r--chart2/source/model/template/NetChartType.hxx2
-rw-r--r--chart2/source/model/template/NetChartTypeTemplate.cxx6
-rw-r--r--chart2/source/model/template/NetChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/PieChartType.cxx2
-rw-r--r--chart2/source/model/template/PieChartType.hxx2
-rw-r--r--chart2/source/model/template/PieChartTypeTemplate.cxx4
-rw-r--r--chart2/source/model/template/PieChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/ScatterChartType.cxx4
-rw-r--r--chart2/source/model/template/ScatterChartType.hxx2
-rw-r--r--chart2/source/model/template/ScatterChartTypeTemplate.cxx2
-rw-r--r--chart2/source/model/template/ScatterChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/StockChartTypeTemplate.cxx8
-rw-r--r--chart2/source/model/template/StockChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/StockDataInterpreter.cxx2
-rw-r--r--chart2/source/model/template/StockDataInterpreter.hxx2
-rw-r--r--chart2/source/model/template/XYDataInterpreter.cxx6
-rw-r--r--chart2/source/model/template/XYDataInterpreter.hxx2
-rw-r--r--chart2/source/model/template/_serviceregistration_charttypes.cxx2
-rw-r--r--chart2/source/tools/AxisHelper.cxx2
-rw-r--r--chart2/source/tools/BaseGFXHelper.cxx4
-rw-r--r--chart2/source/tools/CachedDataSequence.cxx2
-rw-r--r--chart2/source/tools/CharacterProperties.cxx2
-rw-r--r--chart2/source/tools/ChartDebugTrace.cxx4
-rw-r--r--chart2/source/tools/ChartModelHelper.cxx4
-rw-r--r--chart2/source/tools/ChartTypeHelper.cxx6
-rw-r--r--chart2/source/tools/ChartViewHelper.cxx2
-rw-r--r--chart2/source/tools/ColorPerPointHelper.cxx2
-rw-r--r--chart2/source/tools/CommonConverters.cxx10
-rw-r--r--chart2/source/tools/ConfigColorScheme.cxx2
-rw-r--r--chart2/source/tools/ControllerLockGuard.cxx2
-rw-r--r--chart2/source/tools/DataSeriesHelper.cxx2
-rw-r--r--chart2/source/tools/DataSource.cxx2
-rw-r--r--chart2/source/tools/DataSourceHelper.cxx4
-rw-r--r--chart2/source/tools/DiagramHelper.cxx22
-rw-r--r--chart2/source/tools/ErrorBar.cxx2
-rw-r--r--chart2/source/tools/ExplicitCategoriesProvider.cxx14
-rw-r--r--chart2/source/tools/ExponentialRegressionCurveCalculator.cxx2
-rw-r--r--chart2/source/tools/FillProperties.cxx2
-rw-r--r--chart2/source/tools/FormattedStringHelper.cxx4
-rw-r--r--chart2/source/tools/ImplOPropertySet.cxx2
-rw-r--r--chart2/source/tools/ImplOPropertySet.hxx2
-rwxr-xr-xchart2/source/tools/InternalData.cxx12
-rw-r--r--chart2/source/tools/InternalDataProvider.cxx6
-rw-r--r--chart2/source/tools/LabeledDataSequence.cxx2
-rw-r--r--chart2/source/tools/LegendHelper.cxx4
-rw-r--r--chart2/source/tools/LifeTime.cxx10
-rw-r--r--chart2/source/tools/LineProperties.cxx4
-rw-r--r--chart2/source/tools/LinearRegressionCurveCalculator.cxx2
-rw-r--r--chart2/source/tools/LogarithmicRegressionCurveCalculator.cxx2
-rw-r--r--chart2/source/tools/MeanValueRegressionCurveCalculator.cxx2
-rw-r--r--chart2/source/tools/MediaDescriptorHelper.cxx54
-rw-r--r--chart2/source/tools/ModifyListenerCallBack.cxx2
-rw-r--r--chart2/source/tools/ModifyListenerHelper.cxx2
-rw-r--r--chart2/source/tools/MutexContainer.cxx2
-rw-r--r--chart2/source/tools/NameContainer.cxx6
-rw-r--r--chart2/source/tools/NamedFillProperties.cxx2
-rw-r--r--chart2/source/tools/NamedLineProperties.cxx2
-rw-r--r--chart2/source/tools/NamedProperties.cxx2
-rw-r--r--chart2/source/tools/OPropertySet.cxx2
-rw-r--r--chart2/source/tools/ObjectIdentifier.cxx28
-rw-r--r--chart2/source/tools/PotentialRegressionCurveCalculator.cxx2
-rw-r--r--chart2/source/tools/PropertyHelper.cxx2
-rw-r--r--chart2/source/tools/RangeHighlighter.cxx2
-rw-r--r--chart2/source/tools/ReferenceSizeProvider.cxx4
-rw-r--r--chart2/source/tools/RegressionCalculationHelper.hxx2
-rw-r--r--chart2/source/tools/RegressionCurveCalculator.cxx2
-rw-r--r--chart2/source/tools/RegressionCurveHelper.cxx6
-rw-r--r--chart2/source/tools/RegressionCurveModel.cxx2
-rw-r--r--chart2/source/tools/RegressionCurveModel.hxx2
-rw-r--r--chart2/source/tools/RegressionEquation.cxx2
-rw-r--r--chart2/source/tools/RegressionEquation.hxx2
-rw-r--r--chart2/source/tools/RelativePositionHelper.cxx2
-rw-r--r--chart2/source/tools/RelativeSizeHelper.cxx2
-rw-r--r--chart2/source/tools/ResId.cxx2
-rw-r--r--chart2/source/tools/RessourceManager.cxx2
-rw-r--r--chart2/source/tools/Scaling.cxx2
-rw-r--r--chart2/source/tools/SceneProperties.cxx2
-rw-r--r--chart2/source/tools/StatisticsHelper.cxx4
-rw-r--r--chart2/source/tools/ThreeDHelper.cxx32
-rw-r--r--chart2/source/tools/TitleHelper.cxx10
-rw-r--r--chart2/source/tools/TrueGuard.cxx2
-rw-r--r--chart2/source/tools/UncachedDataSequence.cxx2
-rw-r--r--chart2/source/tools/UserDefinedProperties.cxx2
-rw-r--r--chart2/source/tools/WeakListenerAdapter.cxx2
-rw-r--r--chart2/source/tools/WrappedDefaultProperty.cxx2
-rw-r--r--chart2/source/tools/WrappedDirectStateProperty.cxx2
-rw-r--r--chart2/source/tools/WrappedIgnoreProperty.cxx2
-rw-r--r--chart2/source/tools/WrappedProperty.cxx4
-rw-r--r--chart2/source/tools/WrappedPropertySet.cxx4
-rw-r--r--chart2/source/tools/XMLRangeHelper.cxx2
-rw-r--r--chart2/source/tools/_serviceregistration_tools.cxx2
-rw-r--r--chart2/source/view/axes/MinimumAndMaximumSupplier.cxx2
-rw-r--r--chart2/source/view/axes/ScaleAutomatism.cxx4
-rw-r--r--chart2/source/view/axes/TickmarkHelper.cxx6
-rw-r--r--chart2/source/view/axes/TickmarkHelper.hxx4
-rw-r--r--chart2/source/view/axes/TickmarkProperties.hxx2
-rw-r--r--chart2/source/view/axes/VAxisBase.cxx4
-rw-r--r--chart2/source/view/axes/VAxisBase.hxx4
-rw-r--r--chart2/source/view/axes/VAxisOrGridBase.cxx2
-rw-r--r--chart2/source/view/axes/VAxisOrGridBase.hxx2
-rw-r--r--chart2/source/view/axes/VAxisProperties.cxx12
-rw-r--r--chart2/source/view/axes/VAxisProperties.hxx2
-rw-r--r--chart2/source/view/axes/VCartesianAxis.cxx46
-rw-r--r--chart2/source/view/axes/VCartesianAxis.hxx4
-rw-r--r--chart2/source/view/axes/VCartesianCoordinateSystem.cxx6
-rw-r--r--chart2/source/view/axes/VCartesianCoordinateSystem.hxx4
-rw-r--r--chart2/source/view/axes/VCartesianGrid.cxx8
-rw-r--r--chart2/source/view/axes/VCartesianGrid.hxx2
-rw-r--r--chart2/source/view/axes/VCoordinateSystem.cxx18
-rw-r--r--chart2/source/view/axes/VPolarAngleAxis.cxx12
-rw-r--r--chart2/source/view/axes/VPolarAngleAxis.hxx2
-rw-r--r--chart2/source/view/axes/VPolarAxis.cxx2
-rw-r--r--chart2/source/view/axes/VPolarAxis.hxx2
-rw-r--r--chart2/source/view/axes/VPolarCoordinateSystem.cxx10
-rw-r--r--chart2/source/view/axes/VPolarCoordinateSystem.hxx2
-rw-r--r--chart2/source/view/axes/VPolarGrid.cxx10
-rw-r--r--chart2/source/view/axes/VPolarGrid.hxx2
-rw-r--r--chart2/source/view/axes/VPolarRadiusAxis.cxx6
-rw-r--r--chart2/source/view/axes/VPolarRadiusAxis.hxx4
-rw-r--r--chart2/source/view/charttypes/AreaChart.cxx14
-rw-r--r--chart2/source/view/charttypes/AreaChart.hxx12
-rwxr-xr-xchart2/source/view/charttypes/BarChart.cxx24
-rw-r--r--chart2/source/view/charttypes/BarChart.hxx2
-rw-r--r--chart2/source/view/charttypes/BarPositionHelper.cxx2
-rw-r--r--chart2/source/view/charttypes/BarPositionHelper.hxx2
-rw-r--r--chart2/source/view/charttypes/BubbleChart.cxx12
-rw-r--r--chart2/source/view/charttypes/BubbleChart.hxx4
-rw-r--r--chart2/source/view/charttypes/CandleStickChart.cxx10
-rw-r--r--chart2/source/view/charttypes/CandleStickChart.hxx2
-rw-r--r--chart2/source/view/charttypes/CategoryPositionHelper.cxx2
-rw-r--r--chart2/source/view/charttypes/CategoryPositionHelper.hxx2
-rw-r--r--chart2/source/view/charttypes/PieChart.cxx18
-rw-r--r--chart2/source/view/charttypes/PieChart.hxx4
-rw-r--r--chart2/source/view/charttypes/Splines.cxx20
-rw-r--r--chart2/source/view/charttypes/Splines.hxx2
-rw-r--r--chart2/source/view/charttypes/VSeriesPlotter.cxx38
-rw-r--r--chart2/source/view/diagram/VDiagram.cxx20
-rw-r--r--chart2/source/view/inc/Clipping.hxx10
-rw-r--r--chart2/source/view/inc/LabelAlignment.hxx2
-rw-r--r--chart2/source/view/inc/LabelPositionHelper.hxx2
-rw-r--r--chart2/source/view/inc/LegendEntryProvider.hxx2
-rw-r--r--chart2/source/view/inc/Linear3DTransformation.hxx2
-rw-r--r--chart2/source/view/inc/MinimumAndMaximumSupplier.hxx2
-rw-r--r--chart2/source/view/inc/PlotterBase.hxx8
-rw-r--r--chart2/source/view/inc/PlottingPositionHelper.hxx10
-rw-r--r--chart2/source/view/inc/PolarLabelPositionHelper.hxx2
-rw-r--r--chart2/source/view/inc/PropertyMapper.hxx2
-rw-r--r--chart2/source/view/inc/ScaleAutomatism.hxx6
-rw-r--r--chart2/source/view/inc/ShapeFactory.hxx2
-rw-r--r--chart2/source/view/inc/Stripe.hxx2
-rw-r--r--chart2/source/view/inc/VCoordinateSystem.hxx18
-rw-r--r--chart2/source/view/inc/VDataSeries.hxx4
-rw-r--r--chart2/source/view/inc/VDiagram.hxx4
-rw-r--r--chart2/source/view/inc/VLegendSymbolFactory.hxx2
-rw-r--r--chart2/source/view/inc/VLineProperties.hxx2
-rw-r--r--chart2/source/view/inc/VPolarTransformation.hxx2
-rw-r--r--chart2/source/view/inc/VSeriesPlotter.hxx20
-rw-r--r--chart2/source/view/inc/ViewDefines.hxx2
-rw-r--r--chart2/source/view/main/ChartItemPool.cxx144
-rw-r--r--chart2/source/view/main/ChartItemPool.hxx4
-rw-r--r--chart2/source/view/main/ChartView.cxx104
-rw-r--r--chart2/source/view/main/ChartView.hxx12
-rw-r--r--chart2/source/view/main/Clipping.cxx66
-rw-r--r--chart2/source/view/main/DataPointSymbolSupplier.cxx4
-rw-r--r--chart2/source/view/main/DrawModelWrapper.cxx2
-rw-r--r--chart2/source/view/main/LabelPositionHelper.cxx4
-rw-r--r--chart2/source/view/main/Linear3DTransformation.cxx2
-rw-r--r--chart2/source/view/main/NumberFormatterWrapper.cxx2
-rw-r--r--chart2/source/view/main/PlotterBase.cxx4
-rw-r--r--chart2/source/view/main/PlottingPositionHelper.cxx18
-rw-r--r--chart2/source/view/main/PolarLabelPositionHelper.cxx8
-rw-r--r--chart2/source/view/main/PropertyMapper.cxx10
-rw-r--r--chart2/source/view/main/ShapeFactory.cxx14
-rw-r--r--chart2/source/view/main/Stripe.cxx14
-rw-r--r--chart2/source/view/main/VDataSeries.cxx10
-rw-r--r--chart2/source/view/main/VLegend.cxx6
-rw-r--r--chart2/source/view/main/VLegend.hxx4
-rw-r--r--chart2/source/view/main/VLegendSymbolFactory.cxx4
-rw-r--r--chart2/source/view/main/VLineProperties.cxx4
-rw-r--r--chart2/source/view/main/VPolarTransformation.cxx8
-rw-r--r--chart2/source/view/main/VTitle.cxx4
-rw-r--r--chart2/source/view/main/VTitle.hxx4
-rw-r--r--chart2/source/view/main/_serviceregistration_view.cxx2
-rw-r--r--chart2/uiconfig/menubar/menubar.xml2
-rw-r--r--chart2/uiconfig/toolbar/arrowshapes.xml22
-rw-r--r--chart2/uiconfig/toolbar/basicshapes.xml14
-rw-r--r--chart2/uiconfig/toolbar/flowchartshapes.xml26
-rw-r--r--chart2/uiconfig/toolbar/symbolshapes.xml6
-rw-r--r--chart2/workbench/addin/sampleaddin.cxx62
-rw-r--r--chart2/workbench/addin/sampleaddin.hxx6
-rw-r--r--cli_ure/inc/pch/precompiled_cli_ure.cxx2
-rw-r--r--cli_ure/inc/pch/precompiled_cli_ure.hxx2
-rw-r--r--cli_ure/qa/climaker/ClimakerTestCase.java6
-rw-r--r--cli_ure/qa/climaker/types.idl22
-rw-r--r--cli_ure/source/climaker/climaker_app.cxx50
-rw-r--r--cli_ure/source/climaker/climaker_emit.cxx220
-rw-r--r--cli_ure/source/climaker/climaker_share.h30
-rw-r--r--cli_ure/source/native/assembly.cxx2
-rw-r--r--cli_ure/source/native/native_bootstrap.cxx38
-rw-r--r--cli_ure/source/native/native_share.h6
-rw-r--r--cli_ure/source/native/path.cxx2
-rw-r--r--cli_ure/source/scripts/increment_version.pl20
-rw-r--r--cli_ure/source/scripts/subst_template.pl18
-rw-r--r--cli_ure/source/uno_bridge/cli_base.h12
-rw-r--r--cli_ure/source/uno_bridge/cli_bridge.cxx20
-rw-r--r--cli_ure/source/uno_bridge/cli_bridge.h14
-rw-r--r--cli_ure/source/uno_bridge/cli_data.cxx104
-rw-r--r--cli_ure/source/uno_bridge/cli_environment.cxx12
-rw-r--r--cli_ure/source/uno_bridge/cli_environment.h10
-rw-r--r--cli_ure/source/uno_bridge/cli_proxy.cxx88
-rw-r--r--cli_ure/source/uno_bridge/cli_proxy.h28
-rw-r--r--cli_ure/source/uno_bridge/cli_uno.cxx22
-rw-r--r--codemaker/inc/codemaker/codemaker.hxx4
-rw-r--r--codemaker/inc/codemaker/commoncpp.hxx2
-rw-r--r--codemaker/inc/codemaker/commonjava.hxx2
-rw-r--r--codemaker/inc/codemaker/dependencies.hxx2
-rw-r--r--codemaker/inc/codemaker/exceptiontree.hxx2
-rw-r--r--codemaker/inc/codemaker/generatedtypeset.hxx2
-rw-r--r--codemaker/inc/codemaker/global.hxx22
-rw-r--r--codemaker/inc/codemaker/options.hxx50
-rw-r--r--codemaker/inc/codemaker/typemanager.hxx80
-rw-r--r--codemaker/inc/codemaker/unotype.hxx2
-rw-r--r--codemaker/inc/pch/precompiled_codemaker.cxx2
-rw-r--r--codemaker/inc/pch/precompiled_codemaker.hxx2
-rw-r--r--codemaker/source/bonobowrappermaker/corbamaker.cxx64
-rw-r--r--codemaker/source/bonobowrappermaker/corbaoptions.cxx66
-rw-r--r--codemaker/source/bonobowrappermaker/corbaoptions.hxx14
-rw-r--r--codemaker/source/bonobowrappermaker/corbatype.cxx656
-rw-r--r--codemaker/source/bonobowrappermaker/corbatype.hxx126
-rw-r--r--codemaker/source/codemaker/codemaker.cxx12
-rw-r--r--codemaker/source/codemaker/dependencies.cxx2
-rw-r--r--codemaker/source/codemaker/exceptiontree.cxx4
-rw-r--r--codemaker/source/codemaker/global.cxx30
-rw-r--r--codemaker/source/codemaker/options.cxx30
-rw-r--r--codemaker/source/codemaker/typemanager.cxx128
-rw-r--r--codemaker/source/codemaker/unotype.cxx2
-rw-r--r--codemaker/source/commoncpp/commoncpp.cxx8
-rw-r--r--codemaker/source/commonjava/commonjava.cxx2
-rw-r--r--codemaker/source/cppumaker/cppumaker.cxx30
-rw-r--r--codemaker/source/cppumaker/cppuoptions.cxx70
-rw-r--r--codemaker/source/cppumaker/cppuoptions.hxx12
-rw-r--r--codemaker/source/cppumaker/cpputype.cxx480
-rw-r--r--codemaker/source/cppumaker/cpputype.hxx128
-rw-r--r--codemaker/source/cppumaker/dumputils.cxx4
-rw-r--r--codemaker/source/cppumaker/dumputils.hxx2
-rw-r--r--codemaker/source/cppumaker/includes.cxx2
-rw-r--r--codemaker/source/cppumaker/includes.hxx2
-rw-r--r--codemaker/source/cunomaker/cunomaker.cxx42
-rw-r--r--codemaker/source/cunomaker/cunooptions.cxx72
-rw-r--r--codemaker/source/cunomaker/cunooptions.hxx14
-rw-r--r--codemaker/source/cunomaker/cunotype.cxx220
-rw-r--r--codemaker/source/cunomaker/cunotype.hxx186
-rw-r--r--codemaker/source/idlmaker/idlmaker.cxx42
-rw-r--r--codemaker/source/idlmaker/idloptions.cxx70
-rw-r--r--codemaker/source/idlmaker/idloptions.hxx14
-rw-r--r--codemaker/source/idlmaker/idltype.cxx150
-rw-r--r--codemaker/source/idlmaker/idltype.hxx106
-rw-r--r--codemaker/source/javamaker/classfile.cxx2
-rw-r--r--codemaker/source/javamaker/classfile.hxx2
-rw-r--r--codemaker/source/javamaker/javamaker.cxx56
-rw-r--r--codemaker/source/javamaker/javaoptions.cxx66
-rw-r--r--codemaker/source/javamaker/javaoptions.hxx12
-rw-r--r--codemaker/source/javamaker/javatype.cxx6
-rw-r--r--codemaker/source/javamaker/javatype.hxx4
-rw-r--r--codemaker/test/cppumaker/test_codemaker_cppumaker.cxx2
-rw-r--r--codemaker/test/cppumaker/types.idl2
-rw-r--r--codemaker/test/cppumaker/version.map2
-rw-r--r--codemaker/test/javamaker/Test.java2
-rw-r--r--codemaker/test/javamaker/java15/Test.java2
-rw-r--r--codemaker/test/javamaker/java15/types.idl2
-rw-r--r--codemaker/test/javamaker/types.idl2
-rw-r--r--comphelper/inc/comphelper/ChainablePropertySet.hxx62
-rw-r--r--comphelper/inc/comphelper/ChainablePropertySetInfo.hxx20
-rw-r--r--comphelper/inc/comphelper/IdPropArrayHelper.hxx14
-rw-r--r--comphelper/inc/comphelper/InlineContainer.hxx2
-rw-r--r--comphelper/inc/comphelper/MasterPropertySet.hxx50
-rw-r--r--comphelper/inc/comphelper/MasterPropertySetInfo.hxx16
-rw-r--r--comphelper/inc/comphelper/PropertyInfoHash.hxx18
-rw-r--r--comphelper/inc/comphelper/SelectionMultiplex.hxx24
-rw-r--r--comphelper/inc/comphelper/SettingsHelper.hxx2
-rw-r--r--comphelper/inc/comphelper/TypeGeneration.hxx116
-rw-r--r--comphelper/inc/comphelper/accessiblecomponenthelper.hxx8
-rw-r--r--comphelper/inc/comphelper/accessiblecontexthelper.hxx62
-rw-r--r--comphelper/inc/comphelper/accessibleeventbuffer.hxx2
-rw-r--r--comphelper/inc/comphelper/accessibleeventnotifier.hxx32
-rw-r--r--comphelper/inc/comphelper/accessiblekeybindinghelper.hxx14
-rw-r--r--comphelper/inc/comphelper/accessibleselectionhelper.hxx22
-rw-r--r--comphelper/inc/comphelper/accessibletexthelper.hxx100
-rw-r--r--comphelper/inc/comphelper/accessiblewrapper.hxx80
-rw-r--r--comphelper/inc/comphelper/accimplaccess.hxx26
-rw-r--r--comphelper/inc/comphelper/anytostring.hxx4
-rw-r--r--comphelper/inc/comphelper/asyncnotification.hxx2
-rw-r--r--comphelper/inc/comphelper/attributelist.hxx14
-rw-r--r--comphelper/inc/comphelper/basicio.hxx10
-rw-r--r--comphelper/inc/comphelper/broadcasthelper.hxx24
-rw-r--r--comphelper/inc/comphelper/classids.hxx2
-rw-r--r--comphelper/inc/comphelper/comphelperdllapi.h6
-rw-r--r--comphelper/inc/comphelper/componentbase.hxx2
-rw-r--r--comphelper/inc/comphelper/componentcontext.hxx2
-rw-r--r--comphelper/inc/comphelper/componentfactory.hxx8
-rw-r--r--comphelper/inc/comphelper/componentmodule.hxx2
-rw-r--r--comphelper/inc/comphelper/composedprops.hxx20
-rw-r--r--comphelper/inc/comphelper/configurationhelper.hxx2
-rw-r--r--comphelper/inc/comphelper/container.hxx14
-rw-r--r--comphelper/inc/comphelper/containermultiplexer.hxx20
-rw-r--r--comphelper/inc/comphelper/docpasswordhelper.hxx6
-rwxr-xr-xcomphelper/inc/comphelper/docpasswordrequest.hxx4
-rw-r--r--comphelper/inc/comphelper/documentconstants.hxx8
-rw-r--r--comphelper/inc/comphelper/documentinfo.hxx2
-rw-r--r--comphelper/inc/comphelper/embeddedobjectcontainer.hxx10
-rw-r--r--comphelper/inc/comphelper/enumhelper.hxx12
-rw-r--r--comphelper/inc/comphelper/eventattachermgr.hxx2
-rw-r--r--comphelper/inc/comphelper/evtlistenerhlp.hxx4
-rwxr-xr-xcomphelper/inc/comphelper/evtmethodhelper.hxx4
-rw-r--r--comphelper/inc/comphelper/extract.hxx20
-rw-r--r--comphelper/inc/comphelper/fileformat.h12
-rw-r--r--comphelper/inc/comphelper/genericpropertyset.hxx2
-rw-r--r--comphelper/inc/comphelper/guarding.hxx8
-rw-r--r--comphelper/inc/comphelper/ihwrapnofilter.hxx2
-rw-r--r--comphelper/inc/comphelper/implbase_var.hxx36
-rw-r--r--comphelper/inc/comphelper/implementationreference.hxx42
-rw-r--r--comphelper/inc/comphelper/interaction.hxx28
-rw-r--r--comphelper/inc/comphelper/legacysingletonfactory.hxx2
-rw-r--r--comphelper/inc/comphelper/listenernotification.hxx2
-rw-r--r--comphelper/inc/comphelper/locale.hxx160
-rw-r--r--comphelper/inc/comphelper/logging.hxx6
-rw-r--r--comphelper/inc/comphelper/make_shared_from_uno.hxx8
-rw-r--r--comphelper/inc/comphelper/makesequence.hxx8
-rw-r--r--comphelper/inc/comphelper/mediadescriptor.hxx10
-rw-r--r--comphelper/inc/comphelper/mimeconfighelper.hxx8
-rw-r--r--comphelper/inc/comphelper/namecontainer.hxx2
-rw-r--r--comphelper/inc/comphelper/namedvaluecollection.hxx2
-rw-r--r--comphelper/inc/comphelper/numberedcollection.hxx66
-rw-r--r--comphelper/inc/comphelper/numbers.hxx10
-rw-r--r--comphelper/inc/comphelper/officeresourcebundle.hxx2
-rw-r--r--comphelper/inc/comphelper/ofopxmlhelper.hxx2
-rw-r--r--comphelper/inc/comphelper/optional.hxx2
-rw-r--r--comphelper/inc/comphelper/optionalvalue.hxx18
-rw-r--r--comphelper/inc/comphelper/oslfile2streamwrap.hxx42
-rw-r--r--comphelper/inc/comphelper/otransactedfilestream.hxx4
-rw-r--r--comphelper/inc/comphelper/processfactory.hxx2
-rw-r--r--comphelper/inc/comphelper/propagg.hxx58
-rw-r--r--comphelper/inc/comphelper/proparrhlp.hxx30
-rw-r--r--comphelper/inc/comphelper/property.hxx72
-rw-r--r--comphelper/inc/comphelper/propertybag.hxx2
-rw-r--r--comphelper/inc/comphelper/propertycontainer.hxx4
-rw-r--r--comphelper/inc/comphelper/propertycontainerhelper.hxx66
-rw-r--r--comphelper/inc/comphelper/propertysethelper.hxx2
-rw-r--r--comphelper/inc/comphelper/propertysetinfo.hxx4
-rw-r--r--comphelper/inc/comphelper/propertystatecontainer.hxx18
-rw-r--r--comphelper/inc/comphelper/propmultiplex.hxx28
-rw-r--r--comphelper/inc/comphelper/propstate.hxx10
-rw-r--r--comphelper/inc/comphelper/proxyaggregation.hxx44
-rw-r--r--comphelper/inc/comphelper/querydeep.hxx176
-rw-r--r--comphelper/inc/comphelper/regpathhelper.hxx12
-rw-r--r--comphelper/inc/comphelper/scopeguard.hxx10
-rw-r--r--comphelper/inc/comphelper/seekableinput.hxx8
-rw-r--r--comphelper/inc/comphelper/seqstream.hxx32
-rw-r--r--comphelper/inc/comphelper/sequence.hxx22
-rw-r--r--comphelper/inc/comphelper/sequenceashashmap.hxx18
-rw-r--r--comphelper/inc/comphelper/sequenceasvector.hxx6
-rw-r--r--comphelper/inc/comphelper/servicedecl.hxx60
-rw-r--r--comphelper/inc/comphelper/servicehelper.hxx2
-rw-r--r--comphelper/inc/comphelper/serviceinfohelper.hxx2
-rw-r--r--comphelper/inc/comphelper/sharedmutex.hxx2
-rw-r--r--comphelper/inc/comphelper/stillreadwriteinteraction.hxx2
-rw-r--r--comphelper/inc/comphelper/stl_types.hxx14
-rw-r--r--comphelper/inc/comphelper/stlunosequence.hxx2
-rw-r--r--comphelper/inc/comphelper/storagehelper.hxx10
-rw-r--r--comphelper/inc/comphelper/streamsection.hxx32
-rw-r--r--comphelper/inc/comphelper/string.hxx2
-rw-r--r--comphelper/inc/comphelper/synchronousdispatch.hxx4
-rw-r--r--comphelper/inc/comphelper/types.hxx36
-rw-r--r--comphelper/inc/comphelper/uieventslogger.hxx2
-rw-r--r--comphelper/inc/comphelper/uno3.hxx86
-rw-r--r--comphelper/inc/comphelper/unwrapargs.hxx10
-rw-r--r--comphelper/inc/comphelper/weak.hxx10
-rw-r--r--comphelper/inc/comphelper/weakbag.hxx2
-rw-r--r--comphelper/inc/comphelper/weakeventlistener.hxx22
-rw-r--r--comphelper/inc/pch/precompiled_comphelper.cxx2
-rw-r--r--comphelper/inc/pch/precompiled_comphelper.hxx2
-rw-r--r--comphelper/qa/complex/comphelper/Map.java14
-rw-r--r--comphelper/qa/complex/comphelper/SequenceOutputStreamUnitTest.java12
-rw-r--r--comphelper/qa/complex/comphelper/Test01.java28
-rw-r--r--comphelper/qa/complex/comphelper/TestHelper.java8
-rw-r--r--comphelper/qa/test_string.cxx2
-rw-r--r--comphelper/qa/test_weakbag.cxx2
-rw-r--r--comphelper/qa/version.map2
-rw-r--r--comphelper/source/compare/AnyCompareFactory.cxx6
-rw-r--r--comphelper/source/container/IndexedPropertyValuesContainer.cxx2
-rw-r--r--comphelper/source/container/NamedPropertyValuesContainer.cxx2
-rw-r--r--comphelper/source/container/container.cxx14
-rw-r--r--comphelper/source/container/containermultiplexer.cxx4
-rw-r--r--comphelper/source/container/embeddedobjectcontainer.cxx10
-rw-r--r--comphelper/source/container/enumerablemap.cxx24
-rw-r--r--comphelper/source/container/enumhelper.cxx10
-rw-r--r--comphelper/source/container/namecontainer.cxx2
-rw-r--r--comphelper/source/eventattachermgr/eventattachermgr.cxx64
-rw-r--r--comphelper/source/inc/comphelper_module.hxx2
-rw-r--r--comphelper/source/misc/SelectionMultiplex.cxx4
-rw-r--r--comphelper/source/misc/accessiblecomponenthelper.cxx12
-rw-r--r--comphelper/source/misc/accessiblecontexthelper.cxx34
-rw-r--r--comphelper/source/misc/accessibleeventbuffer.cxx2
-rw-r--r--comphelper/source/misc/accessibleeventnotifier.cxx16
-rw-r--r--comphelper/source/misc/accessiblekeybindinghelper.cxx6
-rw-r--r--comphelper/source/misc/accessibleselectionhelper.cxx4
-rw-r--r--comphelper/source/misc/accessibletexthelper.cxx100
-rw-r--r--comphelper/source/misc/accessiblewrapper.cxx24
-rw-r--r--comphelper/source/misc/accimplaccess.cxx20
-rw-r--r--comphelper/source/misc/anytostring.cxx12
-rw-r--r--comphelper/source/misc/asyncnotification.cxx2
-rw-r--r--comphelper/source/misc/comphelper_module.cxx2
-rw-r--r--comphelper/source/misc/comphelper_services.cxx2
-rw-r--r--comphelper/source/misc/componentbase.cxx2
-rw-r--r--comphelper/source/misc/componentcontext.cxx2
-rw-r--r--comphelper/source/misc/componentmodule.cxx2
-rw-r--r--comphelper/source/misc/configurationhelper.cxx2
-rw-r--r--comphelper/source/misc/docpasswordhelper.cxx14
-rw-r--r--comphelper/source/misc/docpasswordrequest.cxx6
-rw-r--r--comphelper/source/misc/documentinfo.cxx4
-rw-r--r--comphelper/source/misc/documentiologring.cxx2
-rw-r--r--comphelper/source/misc/documentiologring.hxx2
-rw-r--r--comphelper/source/misc/evtlistenerhlp.cxx2
-rwxr-xr-xcomphelper/source/misc/evtmethodhelper.cxx6
-rw-r--r--comphelper/source/misc/ihwrapnofilter.cxx2
-rw-r--r--comphelper/source/misc/instancelocker.cxx10
-rw-r--r--comphelper/source/misc/instancelocker.hxx8
-rw-r--r--comphelper/source/misc/interaction.cxx6
-rw-r--r--comphelper/source/misc/legacysingletonfactory.cxx8
-rw-r--r--comphelper/source/misc/listenernotification.cxx4
-rw-r--r--comphelper/source/misc/locale.cxx112
-rw-r--r--comphelper/source/misc/logging.cxx2
-rw-r--r--comphelper/source/misc/mediadescriptor.cxx4
-rw-r--r--comphelper/source/misc/mimeconfighelper.cxx6
-rw-r--r--comphelper/source/misc/namedvaluecollection.cxx4
-rw-r--r--comphelper/source/misc/numberedcollection.cxx60
-rw-r--r--comphelper/source/misc/numbers.cxx8
-rw-r--r--comphelper/source/misc/officeresourcebundle.cxx2
-rw-r--r--comphelper/source/misc/officerestartmanager.cxx8
-rw-r--r--comphelper/source/misc/officerestartmanager.hxx2
-rw-r--r--comphelper/source/misc/proxyaggregation.cxx14
-rw-r--r--comphelper/source/misc/querydeep.cxx6
-rw-r--r--comphelper/source/misc/regpathhelper.cxx56
-rw-r--r--comphelper/source/misc/scopeguard.cxx2
-rw-r--r--comphelper/source/misc/sequence.cxx8
-rw-r--r--comphelper/source/misc/sequenceashashmap.cxx20
-rw-r--r--comphelper/source/misc/servicedecl.cxx16
-rw-r--r--comphelper/source/misc/serviceinfohelper.cxx2
-rw-r--r--comphelper/source/misc/sharedmutex.cxx2
-rw-r--r--comphelper/source/misc/stillreadwriteinteraction.cxx4
-rw-r--r--comphelper/source/misc/storagehelper.cxx33
-rw-r--r--comphelper/source/misc/string.cxx2
-rw-r--r--comphelper/source/misc/synchronousdispatch.cxx4
-rw-r--r--comphelper/source/misc/types.cxx18
-rw-r--r--comphelper/source/misc/uieventslogger.cxx6
-rw-r--r--comphelper/source/misc/weak.cxx8
-rw-r--r--comphelper/source/misc/weakeventlistener.cxx4
-rw-r--r--comphelper/source/officeinstdir/officeinstallationdirectories.cxx2
-rw-r--r--comphelper/source/officeinstdir/officeinstallationdirectories.hxx2
-rw-r--r--comphelper/source/processfactory/componentfactory.cxx4
-rw-r--r--comphelper/source/processfactory/processfactory.cxx2
-rw-r--r--comphelper/source/property/ChainablePropertySet.cxx44
-rw-r--r--comphelper/source/property/ChainablePropertySetInfo.cxx24
-rw-r--r--comphelper/source/property/MasterPropertySet.cxx58
-rw-r--r--comphelper/source/property/MasterPropertySetInfo.cxx28
-rw-r--r--comphelper/source/property/TypeGeneration.cxx110
-rw-r--r--comphelper/source/property/composedprops.cxx30
-rw-r--r--comphelper/source/property/genericpropertyset.cxx6
-rw-r--r--comphelper/source/property/opropertybag.cxx10
-rw-r--r--comphelper/source/property/opropertybag.hxx2
-rw-r--r--comphelper/source/property/propagg.cxx50
-rw-r--r--comphelper/source/property/property.cxx8
-rw-r--r--comphelper/source/property/propertybag.cxx4
-rw-r--r--comphelper/source/property/propertycontainer.cxx4
-rw-r--r--comphelper/source/property/propertycontainerhelper.cxx30
-rw-r--r--comphelper/source/property/propertysethelper.cxx6
-rw-r--r--comphelper/source/property/propertysetinfo.cxx8
-rw-r--r--comphelper/source/property/propertystatecontainer.cxx26
-rw-r--r--comphelper/source/property/propmultiplex.cxx4
-rw-r--r--comphelper/source/property/propstate.cxx4
-rw-r--r--comphelper/source/streaming/basicio.cxx4
-rw-r--r--comphelper/source/streaming/memorystream.cxx4
-rw-r--r--comphelper/source/streaming/oslfile2streamwrap.cxx4
-rw-r--r--comphelper/source/streaming/otransactedfilestream.cxx2
-rw-r--r--comphelper/source/streaming/seekableinput.cxx8
-rw-r--r--comphelper/source/streaming/seqinputstreamserv.cxx2
-rw-r--r--comphelper/source/streaming/seqoutputstreamserv.cxx2
-rw-r--r--comphelper/source/streaming/seqstream.cxx12
-rw-r--r--comphelper/source/streaming/streamsection.cxx12
-rw-r--r--comphelper/source/xml/attributelist.cxx10
-rw-r--r--comphelper/source/xml/ofopxmlhelper.cxx26
-rw-r--r--comphelper/test/uno_iterators/uno_iterators.cxx14
-rw-r--r--configmgr/source/README1
-rw-r--r--configmgr/source/access.cxx23
-rw-r--r--configmgr/source/additions.hxx43
-rw-r--r--configmgr/source/broadcaster.cxx63
-rw-r--r--configmgr/source/components.cxx138
-rw-r--r--configmgr/source/components.hxx15
-rw-r--r--configmgr/source/data.cxx44
-rw-r--r--configmgr/source/data.hxx23
-rw-r--r--configmgr/source/modifications.cxx21
-rw-r--r--configmgr/source/modifications.hxx2
-rw-r--r--configmgr/source/rootaccess.cxx5
-rw-r--r--configmgr/source/update.cxx17
-rw-r--r--configmgr/source/xcdparser.cxx2
-rw-r--r--configmgr/source/xcsparser.cxx10
-rw-r--r--configmgr/source/xcuparser.cxx30
-rw-r--r--configmgr/source/xcuparser.hxx6
-rw-r--r--configure.in311
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/FileSystemRuntimeException.java2
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeInputStreamHelper.java16
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeLibraries.java2
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java14
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeStorageAccess.java24
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageAccess.java6
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java2
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeInputStream.java12
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeOutputStream.java22
-rw-r--r--connectivity/inc/connectivity/BlobHelper.hxx2
-rw-r--r--connectivity/inc/connectivity/CommonTools.hxx76
-rw-r--r--connectivity/inc/connectivity/ConnectionWrapper.hxx20
-rw-r--r--connectivity/inc/connectivity/DateConversion.hxx2
-rwxr-xr-xconnectivity/inc/connectivity/DriversConfig.hxx6
-rw-r--r--connectivity/inc/connectivity/FValue.hxx144
-rw-r--r--connectivity/inc/connectivity/IParseContext.hxx28
-rw-r--r--connectivity/inc/connectivity/PColumn.hxx38
-rw-r--r--connectivity/inc/connectivity/ParameterCont.hxx6
-rw-r--r--connectivity/inc/connectivity/SQLStatementHelper.hxx4
-rw-r--r--connectivity/inc/connectivity/StdTypeDefs.hxx12
-rw-r--r--connectivity/inc/connectivity/TColumnsHelper.hxx10
-rw-r--r--connectivity/inc/connectivity/TIndex.hxx8
-rw-r--r--connectivity/inc/connectivity/TIndexColumns.hxx4
-rw-r--r--connectivity/inc/connectivity/TIndexes.hxx4
-rw-r--r--connectivity/inc/connectivity/TKey.hxx8
-rw-r--r--connectivity/inc/connectivity/TKeyColumns.hxx4
-rw-r--r--connectivity/inc/connectivity/TKeys.hxx6
-rw-r--r--connectivity/inc/connectivity/TTableHelper.hxx32
-rw-r--r--connectivity/inc/connectivity/conncleanup.hxx24
-rw-r--r--connectivity/inc/connectivity/dbcharset.hxx42
-rw-r--r--connectivity/inc/connectivity/dbconversion.hxx30
-rw-r--r--connectivity/inc/connectivity/dbexception.hxx26
-rw-r--r--connectivity/inc/connectivity/dbmetadata.hxx2
-rw-r--r--connectivity/inc/connectivity/dbtools.hxx178
-rw-r--r--connectivity/inc/connectivity/dbtoolsdllapi.hxx2
-rw-r--r--connectivity/inc/connectivity/filtermanager.hxx2
-rw-r--r--connectivity/inc/connectivity/formattedcolumnvalue.hxx2
-rw-r--r--connectivity/inc/connectivity/parameters.hxx16
-rw-r--r--connectivity/inc/connectivity/paramwrapper.hxx2
-rw-r--r--connectivity/inc/connectivity/predicateinput.hxx8
-rw-r--r--connectivity/inc/connectivity/sdbcx/IRefreshable.hxx6
-rw-r--r--connectivity/inc/connectivity/sdbcx/VCatalog.hxx26
-rw-r--r--connectivity/inc/connectivity/sdbcx/VCollection.hxx18
-rw-r--r--connectivity/inc/connectivity/sdbcx/VColumn.hxx40
-rw-r--r--connectivity/inc/connectivity/sdbcx/VDescriptor.hxx18
-rw-r--r--connectivity/inc/connectivity/sdbcx/VGroup.hxx6
-rw-r--r--connectivity/inc/connectivity/sdbcx/VIndex.hxx14
-rw-r--r--connectivity/inc/connectivity/sdbcx/VIndexColumn.hxx24
-rw-r--r--connectivity/inc/connectivity/sdbcx/VKey.hxx24
-rw-r--r--connectivity/inc/connectivity/sdbcx/VKeyColumn.hxx22
-rw-r--r--connectivity/inc/connectivity/sdbcx/VTable.hxx24
-rw-r--r--connectivity/inc/connectivity/sdbcx/VTypeDef.hxx2
-rw-r--r--connectivity/inc/connectivity/sdbcx/VUser.hxx4
-rw-r--r--connectivity/inc/connectivity/sdbcx/VView.hxx4
-rw-r--r--connectivity/inc/connectivity/sqlerror.hxx2
-rw-r--r--connectivity/inc/connectivity/sqliterator.hxx68
-rw-r--r--connectivity/inc/connectivity/sqlnode.hxx38
-rw-r--r--connectivity/inc/connectivity/sqlparse.hxx36
-rw-r--r--connectivity/inc/connectivity/standardsqlstate.hxx2
-rw-r--r--connectivity/inc/connectivity/statementcomposer.hxx2
-rw-r--r--connectivity/inc/connectivity/virtualdbtools.hxx20
-rw-r--r--connectivity/inc/connectivity/warningscontainer.hxx6
-rw-r--r--connectivity/inc/pch/precompiled_connectivity.cxx2
-rw-r--r--connectivity/inc/pch/precompiled_connectivity.hxx4
-rw-r--r--connectivity/qa/connectivity/GeneralTest.java6
-rwxr-xr-xconnectivity/qa/connectivity/tools/AbstractDatabase.java4
-rw-r--r--connectivity/qa/connectivity/tools/CRMDatabase.java2
-rw-r--r--connectivity/qa/connectivity/tools/DataSource.java6
-rwxr-xr-xconnectivity/qa/connectivity/tools/DatabaseAccess.java2
-rwxr-xr-xconnectivity/qa/connectivity/tools/DbaseDatabase.java2
-rw-r--r--connectivity/qa/connectivity/tools/HsqlColumnDescriptor.java2
-rw-r--r--connectivity/qa/connectivity/tools/HsqlDatabase.java4
-rw-r--r--connectivity/qa/connectivity/tools/HsqlTableDescriptor.java4
-rw-r--r--connectivity/qa/connectivity/tools/QueryDefinition.java2
-rw-r--r--connectivity/qa/connectivity/tools/RowSet.java2
-rw-r--r--connectivity/qa/drivers/dbase/DBaseDateFunctions.java2
-rw-r--r--connectivity/qa/drivers/dbase/DBaseDriverTest.java2
-rw-r--r--connectivity/qa/drivers/dbase/DBaseNumericFunctions.java2
-rwxr-xr-xconnectivity/qa/drivers/dbase/DBaseSqlTests.java4
-rw-r--r--connectivity/qa/drivers/dbase/DBaseStringFunctions.java2
-rw-r--r--connectivity/qa/drivers/hsqldb/DatabaseMetaData.java38
-rw-r--r--connectivity/qa/drivers/hsqldb/DriverTest.java22
-rw-r--r--connectivity/qa/drivers/hsqldb/TestCacheSize.java16
-rw-r--r--connectivity/qa/drivers/jdbc/LongVarCharTest.java2
-rw-r--r--connectivity/source/commontools/AutoRetrievingBase.cxx6
-rw-r--r--connectivity/source/commontools/BlobHelper.cxx6
-rw-r--r--connectivity/source/commontools/CommonTools.cxx16
-rw-r--r--connectivity/source/commontools/ConnectionWrapper.cxx4
-rw-r--r--connectivity/source/commontools/DateConversion.cxx70
-rwxr-xr-xconnectivity/source/commontools/DriversConfig.cxx12
-rw-r--r--connectivity/source/commontools/FDatabaseMetaDataResultSet.cxx14
-rw-r--r--connectivity/source/commontools/FDatabaseMetaDataResultSetMetaData.cxx16
-rw-r--r--connectivity/source/commontools/FValue.cxx206
-rw-r--r--connectivity/source/commontools/ParamterSubstitution.cxx4
-rw-r--r--connectivity/source/commontools/RowFunctionParser.cxx108
-rw-r--r--connectivity/source/commontools/TColumnsHelper.cxx32
-rw-r--r--connectivity/source/commontools/TConnection.cxx8
-rw-r--r--connectivity/source/commontools/TDatabaseMetaDataBase.cxx8
-rw-r--r--connectivity/source/commontools/TIndex.cxx18
-rw-r--r--connectivity/source/commontools/TIndexColumns.cxx14
-rw-r--r--connectivity/source/commontools/TIndexes.cxx36
-rw-r--r--connectivity/source/commontools/TKey.cxx14
-rw-r--r--connectivity/source/commontools/TKeyColumns.cxx14
-rw-r--r--connectivity/source/commontools/TKeys.cxx26
-rw-r--r--connectivity/source/commontools/TPrivilegesResultSet.cxx4
-rw-r--r--connectivity/source/commontools/TSkipDeletedSet.cxx20
-rw-r--r--connectivity/source/commontools/TSortIndex.cxx6
-rw-r--r--connectivity/source/commontools/TTableHelper.cxx102
-rw-r--r--connectivity/source/commontools/conncleanup.cxx8
-rw-r--r--connectivity/source/commontools/dbcharset.cxx24
-rw-r--r--connectivity/source/commontools/dbconversion.cxx2
-rw-r--r--connectivity/source/commontools/dbexception.cxx4
-rw-r--r--connectivity/source/commontools/dbmetadata.cxx2
-rw-r--r--connectivity/source/commontools/dbtools.cxx90
-rw-r--r--connectivity/source/commontools/dbtools2.cxx132
-rw-r--r--connectivity/source/commontools/filtermanager.cxx2
-rw-r--r--connectivity/source/commontools/formattedcolumnvalue.cxx4
-rw-r--r--connectivity/source/commontools/parameters.cxx14
-rw-r--r--connectivity/source/commontools/paramwrapper.cxx2
-rw-r--r--connectivity/source/commontools/predicateinput.cxx52
-rw-r--r--connectivity/source/commontools/propertyids.cxx256
-rw-r--r--connectivity/source/commontools/sqlerror.cxx2
-rw-r--r--connectivity/source/commontools/statementcomposer.cxx2
-rw-r--r--connectivity/source/commontools/warningscontainer.cxx2
-rw-r--r--connectivity/source/cpool/ZConnectionPool.cxx28
-rw-r--r--connectivity/source/cpool/ZConnectionPool.hxx46
-rw-r--r--connectivity/source/cpool/ZConnectionWrapper.cxx44
-rw-r--r--connectivity/source/cpool/ZConnectionWrapper.hxx6
-rw-r--r--connectivity/source/cpool/ZDriverWrapper.cxx4
-rw-r--r--connectivity/source/cpool/ZDriverWrapper.hxx12
-rw-r--r--connectivity/source/cpool/ZPoolCollection.cxx20
-rw-r--r--connectivity/source/cpool/ZPoolCollection.hxx50
-rw-r--r--connectivity/source/cpool/ZPooledConnection.cxx4
-rw-r--r--connectivity/source/cpool/ZPooledConnection.hxx16
-rw-r--r--connectivity/source/cpool/Zregistration.cxx4
-rw-r--r--connectivity/source/cpool/dbpool.xml2
-rw-r--r--connectivity/source/drivers/adabas/BCatalog.cxx20
-rw-r--r--connectivity/source/drivers/adabas/BColumns.cxx16
-rw-r--r--connectivity/source/drivers/adabas/BConnection.cxx8
-rw-r--r--connectivity/source/drivers/adabas/BDatabaseMetaData.cxx52
-rw-r--r--connectivity/source/drivers/adabas/BDriver.cxx118
-rw-r--r--connectivity/source/drivers/adabas/BFunctions.cxx120
-rw-r--r--connectivity/source/drivers/adabas/BGroup.cxx6
-rw-r--r--connectivity/source/drivers/adabas/BGroups.cxx14
-rw-r--r--connectivity/source/drivers/adabas/BIndex.cxx12
-rw-r--r--connectivity/source/drivers/adabas/BIndexColumns.cxx10
-rw-r--r--connectivity/source/drivers/adabas/BIndexes.cxx30
-rw-r--r--connectivity/source/drivers/adabas/BKeys.cxx24
-rw-r--r--connectivity/source/drivers/adabas/BPreparedStatement.cxx6
-rw-r--r--connectivity/source/drivers/adabas/BResultSet.cxx6
-rw-r--r--connectivity/source/drivers/adabas/BResultSetMetaData.cxx4
-rw-r--r--connectivity/source/drivers/adabas/BStatement.cxx8
-rw-r--r--connectivity/source/drivers/adabas/BTable.cxx24
-rw-r--r--connectivity/source/drivers/adabas/BTables.cxx30
-rw-r--r--connectivity/source/drivers/adabas/BUser.cxx18
-rw-r--r--connectivity/source/drivers/adabas/BUsers.cxx12
-rw-r--r--connectivity/source/drivers/adabas/BViews.cxx10
-rw-r--r--connectivity/source/drivers/adabas/Bservices.cxx6
-rwxr-xr-xconnectivity/source/drivers/adabas/adabas.xcu2
-rw-r--r--connectivity/source/drivers/adabas/adabas.xml2
-rw-r--r--connectivity/source/drivers/ado/ACallableStatement.cxx10
-rw-r--r--connectivity/source/drivers/ado/ACatalog.cxx10
-rw-r--r--connectivity/source/drivers/ado/AColumn.cxx32
-rw-r--r--connectivity/source/drivers/ado/AColumns.cxx8
-rw-r--r--connectivity/source/drivers/ado/AConnection.cxx82
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaData.cxx28
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataImpl.cxx24
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataResultSet.cxx198
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataResultSetMetaData.cxx12
-rw-r--r--connectivity/source/drivers/ado/ADriver.cxx4
-rw-r--r--connectivity/source/drivers/ado/AGroup.cxx4
-rw-r--r--connectivity/source/drivers/ado/AGroups.cxx2
-rw-r--r--connectivity/source/drivers/ado/AIndex.cxx2
-rw-r--r--connectivity/source/drivers/ado/AIndexes.cxx4
-rw-r--r--connectivity/source/drivers/ado/AKey.cxx2
-rw-r--r--connectivity/source/drivers/ado/AKeyColumn.cxx26
-rw-r--r--connectivity/source/drivers/ado/AKeyColumns.cxx10
-rw-r--r--connectivity/source/drivers/ado/AKeys.cxx4
-rw-r--r--connectivity/source/drivers/ado/APreparedStatement.cxx26
-rw-r--r--connectivity/source/drivers/ado/AResultSet.cxx30
-rw-r--r--connectivity/source/drivers/ado/AResultSetMetaData.cxx10
-rw-r--r--connectivity/source/drivers/ado/AStatement.cxx28
-rw-r--r--connectivity/source/drivers/ado/ATable.cxx8
-rw-r--r--connectivity/source/drivers/ado/ATables.cxx2
-rw-r--r--connectivity/source/drivers/ado/AUser.cxx6
-rw-r--r--connectivity/source/drivers/ado/AUsers.cxx2
-rw-r--r--connectivity/source/drivers/ado/AView.cxx6
-rw-r--r--connectivity/source/drivers/ado/AViews.cxx2
-rw-r--r--connectivity/source/drivers/ado/Aolevariant.cxx86
-rw-r--r--connectivity/source/drivers/ado/Aservices.cxx6
-rw-r--r--connectivity/source/drivers/ado/Awrapado.cxx20
-rwxr-xr-xconnectivity/source/drivers/ado/ado.xcu2
-rw-r--r--connectivity/source/drivers/ado/ado.xml6
-rw-r--r--connectivity/source/drivers/ado/ado_post_sys_include.h2
-rw-r--r--connectivity/source/drivers/ado/ado_pre_sys_include.h2
-rw-r--r--connectivity/source/drivers/ado/adoimp.cxx182
-rw-r--r--connectivity/source/drivers/calc/CCatalog.cxx4
-rw-r--r--connectivity/source/drivers/calc/CColumns.cxx2
-rw-r--r--connectivity/source/drivers/calc/CConnection.cxx18
-rw-r--r--connectivity/source/drivers/calc/CDatabaseMetaData.cxx40
-rw-r--r--connectivity/source/drivers/calc/CDriver.cxx2
-rw-r--r--connectivity/source/drivers/calc/CPreparedStatement.cxx2
-rw-r--r--connectivity/source/drivers/calc/CResultSet.cxx42
-rw-r--r--connectivity/source/drivers/calc/CStatement.cxx2
-rw-r--r--connectivity/source/drivers/calc/CTable.cxx94
-rw-r--r--connectivity/source/drivers/calc/CTables.cxx4
-rw-r--r--connectivity/source/drivers/calc/CalcDriver.xml2
-rw-r--r--connectivity/source/drivers/calc/Cservices.cxx6
-rwxr-xr-xconnectivity/source/drivers/calc/calc.xcu4
-rw-r--r--connectivity/source/drivers/dbase/DCatalog.cxx2
-rw-r--r--connectivity/source/drivers/dbase/DCode.cxx4
-rw-r--r--connectivity/source/drivers/dbase/DColumns.cxx4
-rw-r--r--connectivity/source/drivers/dbase/DConnection.cxx4
-rw-r--r--connectivity/source/drivers/dbase/DDatabaseMetaData.cxx18
-rw-r--r--connectivity/source/drivers/dbase/DDriver.cxx4
-rw-r--r--connectivity/source/drivers/dbase/DIndex.cxx52
-rw-r--r--connectivity/source/drivers/dbase/DIndexColumns.cxx2
-rw-r--r--connectivity/source/drivers/dbase/DIndexIter.cxx24
-rw-r--r--connectivity/source/drivers/dbase/DIndexes.cxx10
-rw-r--r--connectivity/source/drivers/dbase/DNoException.cxx52
-rw-r--r--connectivity/source/drivers/dbase/DPreparedStatement.cxx2
-rw-r--r--connectivity/source/drivers/dbase/DResultSet.cxx12
-rw-r--r--connectivity/source/drivers/dbase/DStatement.cxx2
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx292
-rw-r--r--connectivity/source/drivers/dbase/DTables.cxx4
-rw-r--r--connectivity/source/drivers/dbase/Dservices.cxx6
-rwxr-xr-xconnectivity/source/drivers/dbase/dbase.xcu2
-rw-r--r--connectivity/source/drivers/dbase/dbase.xml2
-rw-r--r--connectivity/source/drivers/dbase/dindexnode.cxx28
-rw-r--r--connectivity/source/drivers/evoab/LCatalog.cxx2
-rw-r--r--connectivity/source/drivers/evoab/LCatalog.hxx2
-rw-r--r--connectivity/source/drivers/evoab/LColumnAlias.cxx2
-rw-r--r--connectivity/source/drivers/evoab/LColumnAlias.hxx6
-rw-r--r--connectivity/source/drivers/evoab/LColumns.cxx4
-rw-r--r--connectivity/source/drivers/evoab/LColumns.hxx2
-rw-r--r--connectivity/source/drivers/evoab/LConfigAccess.cxx2
-rw-r--r--connectivity/source/drivers/evoab/LConfigAccess.hxx2
-rw-r--r--connectivity/source/drivers/evoab/LConnection.cxx4
-rw-r--r--connectivity/source/drivers/evoab/LConnection.hxx34
-rw-r--r--connectivity/source/drivers/evoab/LDatabaseMetaData.cxx14
-rw-r--r--connectivity/source/drivers/evoab/LDatabaseMetaData.hxx6
-rw-r--r--connectivity/source/drivers/evoab/LDebug.cxx2
-rw-r--r--connectivity/source/drivers/evoab/LDebug.hxx6
-rw-r--r--connectivity/source/drivers/evoab/LDriver.cxx26
-rw-r--r--connectivity/source/drivers/evoab/LDriver.hxx52
-rw-r--r--connectivity/source/drivers/evoab/LFolderList.cxx20
-rw-r--r--connectivity/source/drivers/evoab/LFolderList.hxx22
-rw-r--r--connectivity/source/drivers/evoab/LNoException.cxx32
-rw-r--r--connectivity/source/drivers/evoab/LPreparedStatement.cxx2
-rw-r--r--connectivity/source/drivers/evoab/LPreparedStatement.hxx2
-rw-r--r--connectivity/source/drivers/evoab/LResultSet.cxx16
-rw-r--r--connectivity/source/drivers/evoab/LResultSet.hxx10
-rw-r--r--connectivity/source/drivers/evoab/LServices.cxx6
-rw-r--r--connectivity/source/drivers/evoab/LStatement.cxx2
-rw-r--r--connectivity/source/drivers/evoab/LStatement.hxx2
-rw-r--r--connectivity/source/drivers/evoab/LTable.cxx48
-rw-r--r--connectivity/source/drivers/evoab/LTable.hxx24
-rw-r--r--connectivity/source/drivers/evoab/LTables.cxx4
-rw-r--r--connectivity/source/drivers/evoab/LTables.hxx2
-rwxr-xr-xconnectivity/source/drivers/evoab/evoab.xcu2
-rw-r--r--connectivity/source/drivers/evoab/evoab.xml2
-rw-r--r--connectivity/source/drivers/evoab2/EApi.cxx8
-rw-r--r--connectivity/source/drivers/evoab2/EApi.h10
-rw-r--r--connectivity/source/drivers/evoab2/NCatalog.cxx4
-rw-r--r--connectivity/source/drivers/evoab2/NCatalog.hxx2
-rw-r--r--connectivity/source/drivers/evoab2/NColumns.cxx2
-rw-r--r--connectivity/source/drivers/evoab2/NColumns.hxx6
-rw-r--r--connectivity/source/drivers/evoab2/NConnection.cxx2
-rw-r--r--connectivity/source/drivers/evoab2/NConnection.hxx28
-rw-r--r--connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx62
-rw-r--r--connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx22
-rw-r--r--connectivity/source/drivers/evoab2/NDebug.cxx2
-rw-r--r--connectivity/source/drivers/evoab2/NDebug.hxx6
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.cxx14
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.hxx46
-rw-r--r--connectivity/source/drivers/evoab2/NPreparedStatement.cxx2
-rw-r--r--connectivity/source/drivers/evoab2/NPreparedStatement.hxx18
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.cxx4
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.hxx18
-rw-r--r--connectivity/source/drivers/evoab2/NResultSetMetaData.cxx6
-rw-r--r--connectivity/source/drivers/evoab2/NResultSetMetaData.hxx12
-rw-r--r--connectivity/source/drivers/evoab2/NServices.cxx6
-rw-r--r--connectivity/source/drivers/evoab2/NStatement.cxx4
-rw-r--r--connectivity/source/drivers/evoab2/NStatement.hxx22
-rw-r--r--connectivity/source/drivers/evoab2/NTable.cxx2
-rw-r--r--connectivity/source/drivers/evoab2/NTable.hxx4
-rw-r--r--connectivity/source/drivers/evoab2/NTables.cxx2
-rw-r--r--connectivity/source/drivers/evoab2/NTables.hxx2
-rw-r--r--connectivity/source/drivers/evoab2/evoab.xml2
-rwxr-xr-xconnectivity/source/drivers/evoab2/evoab2.xcu4
-rw-r--r--connectivity/source/drivers/file/FCatalog.cxx8
-rw-r--r--connectivity/source/drivers/file/FColumns.cxx2
-rw-r--r--connectivity/source/drivers/file/FConnection.cxx8
-rw-r--r--connectivity/source/drivers/file/FDatabaseMetaData.cxx16
-rw-r--r--connectivity/source/drivers/file/FDateFunctions.cxx32
-rw-r--r--connectivity/source/drivers/file/FDriver.cxx2
-rw-r--r--connectivity/source/drivers/file/FNoException.cxx6
-rw-r--r--connectivity/source/drivers/file/FNumericFunctions.cxx38
-rw-r--r--connectivity/source/drivers/file/FPreparedStatement.cxx28
-rw-r--r--connectivity/source/drivers/file/FResultSet.cxx152
-rw-r--r--connectivity/source/drivers/file/FResultSetMetaData.cxx4
-rw-r--r--connectivity/source/drivers/file/FStatement.cxx106
-rw-r--r--connectivity/source/drivers/file/FStringFunctions.cxx12
-rw-r--r--connectivity/source/drivers/file/FTable.cxx10
-rw-r--r--connectivity/source/drivers/file/FTables.cxx4
-rw-r--r--connectivity/source/drivers/file/fanalyzer.cxx50
-rw-r--r--connectivity/source/drivers/file/fcode.cxx66
-rw-r--r--connectivity/source/drivers/file/fcomp.cxx74
-rw-r--r--connectivity/source/drivers/file/file.xml2
-rw-r--r--connectivity/source/drivers/file/quotedstring.cxx28
-rw-r--r--connectivity/source/drivers/flat/ECatalog.cxx2
-rw-r--r--connectivity/source/drivers/flat/EColumns.cxx2
-rw-r--r--connectivity/source/drivers/flat/EConnection.cxx4
-rw-r--r--connectivity/source/drivers/flat/EDatabaseMetaData.cxx12
-rw-r--r--connectivity/source/drivers/flat/EDriver.cxx2
-rw-r--r--connectivity/source/drivers/flat/EPreparedStatement.cxx2
-rw-r--r--connectivity/source/drivers/flat/EResultSet.cxx14
-rw-r--r--connectivity/source/drivers/flat/EStatement.cxx2
-rw-r--r--connectivity/source/drivers/flat/ETable.cxx70
-rw-r--r--connectivity/source/drivers/flat/ETables.cxx4
-rw-r--r--connectivity/source/drivers/flat/Eservices.cxx6
-rwxr-xr-xconnectivity/source/drivers/flat/flat.xcu2
-rw-r--r--connectivity/source/drivers/flat/flat.xml2
-rw-r--r--connectivity/source/drivers/hsqldb/HCatalog.cxx6
-rw-r--r--connectivity/source/drivers/hsqldb/HColumns.cxx10
-rw-r--r--connectivity/source/drivers/hsqldb/HConnection.cxx6
-rw-r--r--connectivity/source/drivers/hsqldb/HDriver.cxx10
-rw-r--r--connectivity/source/drivers/hsqldb/HStorage.hxx48
-rw-r--r--connectivity/source/drivers/hsqldb/HStorageAccess.cxx14
-rw-r--r--connectivity/source/drivers/hsqldb/HStorageMap.cxx4
-rw-r--r--connectivity/source/drivers/hsqldb/HTable.cxx58
-rw-r--r--connectivity/source/drivers/hsqldb/HTables.cxx4
-rw-r--r--connectivity/source/drivers/hsqldb/HTerminateListener.cxx6
-rw-r--r--connectivity/source/drivers/hsqldb/HTerminateListener.hxx6
-rw-r--r--connectivity/source/drivers/hsqldb/HTools.cxx2
-rw-r--r--connectivity/source/drivers/hsqldb/HUser.cxx60
-rw-r--r--connectivity/source/drivers/hsqldb/HUsers.cxx14
-rw-r--r--connectivity/source/drivers/hsqldb/HView.cxx2
-rw-r--r--connectivity/source/drivers/hsqldb/HViews.cxx14
-rw-r--r--connectivity/source/drivers/hsqldb/Hservices.cxx6
-rw-r--r--connectivity/source/drivers/hsqldb/StorageFileAccess.cxx2
-rw-r--r--connectivity/source/drivers/hsqldb/StorageNativeInputStream.cxx8
-rw-r--r--connectivity/source/drivers/hsqldb/StorageNativeOutputStream.cxx2
-rw-r--r--connectivity/source/drivers/hsqldb/accesslog.cxx2
-rw-r--r--connectivity/source/drivers/hsqldb/accesslog.hxx2
-rw-r--r--connectivity/source/drivers/hsqldb/hsqldb.map2
-rwxr-xr-xconnectivity/source/drivers/hsqldb/hsqldb.xcu4
-rw-r--r--connectivity/source/drivers/hsqldb/hsqldb.xml2
-rw-r--r--connectivity/source/drivers/hsqldb/hsqlui.hrc2
-rw-r--r--connectivity/source/drivers/hsqldb/hsqlui.src4
-rw-r--r--connectivity/source/drivers/jdbc/Array.cxx12
-rw-r--r--connectivity/source/drivers/jdbc/Blob.cxx8
-rw-r--r--connectivity/source/drivers/jdbc/Boolean.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/CallableStatement.cxx10
-rw-r--r--connectivity/source/drivers/jdbc/Class.cxx4
-rw-r--r--connectivity/source/drivers/jdbc/Clob.cxx8
-rw-r--r--connectivity/source/drivers/jdbc/ConnectionLog.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/ContextClassLoader.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/DatabaseMetaData.cxx32
-rw-r--r--connectivity/source/drivers/jdbc/Date.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx14
-rw-r--r--connectivity/source/drivers/jdbc/Exception.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/InputStream.cxx4
-rw-r--r--connectivity/source/drivers/jdbc/JBigDecimal.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/JConnection.cxx26
-rw-r--r--connectivity/source/drivers/jdbc/JDriver.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/JStatement.cxx26
-rw-r--r--connectivity/source/drivers/jdbc/Object.cxx4
-rw-r--r--connectivity/source/drivers/jdbc/PreparedStatement.cxx8
-rw-r--r--connectivity/source/drivers/jdbc/Reader.cxx6
-rw-r--r--connectivity/source/drivers/jdbc/Ref.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/ResultSet.cxx52
-rw-r--r--connectivity/source/drivers/jdbc/ResultSetMetaData.cxx4
-rw-r--r--connectivity/source/drivers/jdbc/SQLException.cxx8
-rw-r--r--connectivity/source/drivers/jdbc/SQLWarning.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/String.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/Throwable.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/Timestamp.cxx2
-rwxr-xr-xconnectivity/source/drivers/jdbc/jdbc.xcu2
-rw-r--r--connectivity/source/drivers/jdbc/jdbc.xml8
-rw-r--r--connectivity/source/drivers/jdbc/jservices.cxx6
-rw-r--r--connectivity/source/drivers/jdbc/tools.cxx14
-rw-r--r--connectivity/source/drivers/kab/KCatalog.cxx4
-rw-r--r--connectivity/source/drivers/kab/KCatalog.hxx4
-rw-r--r--connectivity/source/drivers/kab/KColumns.cxx4
-rw-r--r--connectivity/source/drivers/kab/KColumns.hxx6
-rw-r--r--connectivity/source/drivers/kab/KConnection.cxx4
-rw-r--r--connectivity/source/drivers/kab/KConnection.hxx16
-rw-r--r--connectivity/source/drivers/kab/KDEInit.cxx2
-rw-r--r--connectivity/source/drivers/kab/KDEInit.h8
-rw-r--r--connectivity/source/drivers/kab/KDatabaseMetaData.cxx52
-rw-r--r--connectivity/source/drivers/kab/KDatabaseMetaData.hxx6
-rw-r--r--connectivity/source/drivers/kab/KDriver.cxx2
-rw-r--r--connectivity/source/drivers/kab/KDriver.hxx8
-rw-r--r--connectivity/source/drivers/kab/KPreparedStatement.cxx88
-rw-r--r--connectivity/source/drivers/kab/KPreparedStatement.hxx12
-rw-r--r--connectivity/source/drivers/kab/KResultSet.cxx28
-rw-r--r--connectivity/source/drivers/kab/KResultSet.hxx24
-rw-r--r--connectivity/source/drivers/kab/KResultSetMetaData.cxx2
-rw-r--r--connectivity/source/drivers/kab/KResultSetMetaData.hxx8
-rw-r--r--connectivity/source/drivers/kab/KServices.cxx6
-rw-r--r--connectivity/source/drivers/kab/KStatement.cxx52
-rw-r--r--connectivity/source/drivers/kab/KStatement.hxx24
-rw-r--r--connectivity/source/drivers/kab/KTable.cxx4
-rw-r--r--connectivity/source/drivers/kab/KTable.hxx6
-rw-r--r--connectivity/source/drivers/kab/KTables.cxx2
-rw-r--r--connectivity/source/drivers/kab/KTables.hxx2
-rwxr-xr-xconnectivity/source/drivers/kab/kab.xcu2
-rw-r--r--connectivity/source/drivers/kab/kab.xml130
-rw-r--r--connectivity/source/drivers/kab/kcondition.cxx4
-rw-r--r--connectivity/source/drivers/kab/kcondition.hxx2
-rw-r--r--connectivity/source/drivers/kab/kfields.cxx4
-rw-r--r--connectivity/source/drivers/kab/kfields.hxx6
-rw-r--r--connectivity/source/drivers/kab/korder.cxx2
-rw-r--r--connectivity/source/drivers/kab/korder.hxx2
-rw-r--r--connectivity/source/drivers/kab/makefile.mk4
-rwxr-xr-xconnectivity/source/drivers/macab/MacabAddressBook.cxx6
-rwxr-xr-xconnectivity/source/drivers/macab/MacabAddressBook.hxx4
-rwxr-xr-xconnectivity/source/drivers/macab/MacabCatalog.cxx4
-rwxr-xr-xconnectivity/source/drivers/macab/MacabCatalog.hxx4
-rwxr-xr-xconnectivity/source/drivers/macab/MacabColumns.cxx4
-rwxr-xr-xconnectivity/source/drivers/macab/MacabColumns.hxx6
-rwxr-xr-xconnectivity/source/drivers/macab/MacabConnection.cxx4
-rwxr-xr-xconnectivity/source/drivers/macab/MacabConnection.hxx14
-rwxr-xr-xconnectivity/source/drivers/macab/MacabDatabaseMetaData.cxx52
-rwxr-xr-xconnectivity/source/drivers/macab/MacabDatabaseMetaData.hxx6
-rwxr-xr-xconnectivity/source/drivers/macab/MacabDriver.cxx2
-rwxr-xr-xconnectivity/source/drivers/macab/MacabDriver.hxx14
-rw-r--r--connectivity/source/drivers/macab/MacabGroup.cxx2
-rw-r--r--connectivity/source/drivers/macab/MacabGroup.hxx2
-rw-r--r--connectivity/source/drivers/macab/MacabHeader.cxx8
-rw-r--r--connectivity/source/drivers/macab/MacabHeader.hxx2
-rwxr-xr-xconnectivity/source/drivers/macab/MacabPreparedStatement.cxx84
-rwxr-xr-xconnectivity/source/drivers/macab/MacabPreparedStatement.hxx12
-rwxr-xr-xconnectivity/source/drivers/macab/MacabRecord.cxx8
-rwxr-xr-xconnectivity/source/drivers/macab/MacabRecord.hxx2
-rwxr-xr-xconnectivity/source/drivers/macab/MacabRecords.cxx22
-rwxr-xr-xconnectivity/source/drivers/macab/MacabRecords.hxx4
-rwxr-xr-xconnectivity/source/drivers/macab/MacabResultSet.cxx30
-rwxr-xr-xconnectivity/source/drivers/macab/MacabResultSet.hxx26
-rwxr-xr-xconnectivity/source/drivers/macab/MacabResultSetMetaData.cxx10
-rwxr-xr-xconnectivity/source/drivers/macab/MacabResultSetMetaData.hxx10
-rwxr-xr-xconnectivity/source/drivers/macab/MacabServices.cxx6
-rwxr-xr-xconnectivity/source/drivers/macab/MacabStatement.cxx48
-rwxr-xr-xconnectivity/source/drivers/macab/MacabStatement.hxx28
-rwxr-xr-xconnectivity/source/drivers/macab/MacabTable.cxx4
-rwxr-xr-xconnectivity/source/drivers/macab/MacabTable.hxx6
-rwxr-xr-xconnectivity/source/drivers/macab/MacabTables.cxx2
-rwxr-xr-xconnectivity/source/drivers/macab/MacabTables.hxx2
-rwxr-xr-xconnectivity/source/drivers/macab/macab.xcu2
-rwxr-xr-xconnectivity/source/drivers/macab/macab.xml130
-rwxr-xr-xconnectivity/source/drivers/macab/macabcondition.cxx2
-rwxr-xr-xconnectivity/source/drivers/macab/macabcondition.hxx2
-rwxr-xr-xconnectivity/source/drivers/macab/macaborder.cxx2
-rwxr-xr-xconnectivity/source/drivers/macab/macaborder.hxx2
-rw-r--r--connectivity/source/drivers/macab/macabutilities.hxx2
-rw-r--r--connectivity/source/drivers/mozab/MCatalog.cxx14
-rw-r--r--connectivity/source/drivers/mozab/MCatalog.hxx14
-rw-r--r--connectivity/source/drivers/mozab/MColumnAlias.cxx2
-rw-r--r--connectivity/source/drivers/mozab/MColumnAlias.hxx2
-rw-r--r--connectivity/source/drivers/mozab/MColumns.cxx10
-rw-r--r--connectivity/source/drivers/mozab/MColumns.hxx6
-rw-r--r--connectivity/source/drivers/mozab/MConfigAccess.cxx18
-rw-r--r--connectivity/source/drivers/mozab/MConfigAccess.hxx4
-rw-r--r--connectivity/source/drivers/mozab/MConnection.cxx8
-rw-r--r--connectivity/source/drivers/mozab/MConnection.hxx44
-rw-r--r--connectivity/source/drivers/mozab/MDatabaseMetaData.cxx16
-rw-r--r--connectivity/source/drivers/mozab/MDatabaseMetaData.hxx8
-rw-r--r--connectivity/source/drivers/mozab/MDriver.cxx18
-rw-r--r--connectivity/source/drivers/mozab/MDriver.hxx12
-rw-r--r--connectivity/source/drivers/mozab/MExtConfigAccess.hxx2
-rw-r--r--connectivity/source/drivers/mozab/MPreparedStatement.cxx4
-rw-r--r--connectivity/source/drivers/mozab/MPreparedStatement.hxx4
-rw-r--r--connectivity/source/drivers/mozab/MResultSet.cxx80
-rw-r--r--connectivity/source/drivers/mozab/MResultSet.hxx70
-rw-r--r--connectivity/source/drivers/mozab/MResultSetMetaData.cxx8
-rw-r--r--connectivity/source/drivers/mozab/MResultSetMetaData.hxx8
-rw-r--r--connectivity/source/drivers/mozab/MServices.cxx8
-rw-r--r--connectivity/source/drivers/mozab/MStatement.cxx18
-rw-r--r--connectivity/source/drivers/mozab/MStatement.hxx26
-rw-r--r--connectivity/source/drivers/mozab/MTable.cxx2
-rw-r--r--connectivity/source/drivers/mozab/MTable.hxx8
-rw-r--r--connectivity/source/drivers/mozab/MTables.cxx10
-rw-r--r--connectivity/source/drivers/mozab/MTables.hxx4
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.cxx6
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx8
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSFolders.cxx4
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSFolders.hxx2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSINIParser.cxx16
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSINIParser.hxx2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSInit.cxx28
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfile.cxx8
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfile.hxx2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDirServiceProvider.cxx2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDirServiceProvider.hxx2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx44
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.hxx6
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileManager.cxx2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileManager.hxx4
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSRunnable.cxx4
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSRunnable.hxx4
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsinit.h2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsprofile.h2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsprofiledirserviceprovider.h2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_profile_discover.h2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_profilemanager.h2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/post_include_windows.h2
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/pre_include_windows.h2
-rwxr-xr-xconnectivity/source/drivers/mozab/mozab.xcu6
-rw-r--r--connectivity/source/drivers/mozab/mozab.xml100
-rwxr-xr-xconnectivity/source/drivers/mozab/mozab2.xcu2
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.cxx26
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.hxx4
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MErrorResource.hxx2
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MLdapAttributeMap.cxx2
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MLdapAttributeMap.hxx2
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSDeclares.hxx14
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSInclude.hxx2
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSMozabProxy.cxx4
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSMozabProxy.hxx12
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSTerminateListener.cxx4
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSTerminateListener.hxx4
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNameMapper.cxx2
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNameMapper.hxx8
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQuery.cxx2
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQuery.hxx22
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.cxx20
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.hxx14
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MTypeConverter.cxx4
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MTypeConverter.hxx4
-rw-r--r--connectivity/source/drivers/mozab/post_include_mozilla.h2
-rw-r--r--connectivity/source/drivers/mozab/pre_include_mozilla.h2
-rw-r--r--connectivity/source/drivers/mysql/YCatalog.cxx8
-rw-r--r--connectivity/source/drivers/mysql/YColumns.cxx18
-rw-r--r--connectivity/source/drivers/mysql/YDriver.cxx26
-rw-r--r--connectivity/source/drivers/mysql/YTable.cxx64
-rw-r--r--connectivity/source/drivers/mysql/YTables.cxx46
-rw-r--r--connectivity/source/drivers/mysql/YUser.cxx58
-rw-r--r--connectivity/source/drivers/mysql/YUsers.cxx14
-rw-r--r--connectivity/source/drivers/mysql/YViews.cxx14
-rw-r--r--connectivity/source/drivers/mysql/Yservices.cxx6
-rwxr-xr-xconnectivity/source/drivers/mysql/mysql.xcu2
-rw-r--r--connectivity/source/drivers/mysql/mysql.xml2
-rw-r--r--connectivity/source/drivers/odbc/OFunctions.cxx130
-rw-r--r--connectivity/source/drivers/odbc/ORealDriver.cxx4
-rw-r--r--connectivity/source/drivers/odbc/ORealDriver.hxx2
-rwxr-xr-xconnectivity/source/drivers/odbc/odbc.xcu2
-rw-r--r--connectivity/source/drivers/odbc/odbc.xml2
-rw-r--r--connectivity/source/drivers/odbc/oservices.cxx6
-rw-r--r--connectivity/source/drivers/odbcbase/OConnection.cxx70
-rw-r--r--connectivity/source/drivers/odbcbase/ODatabaseMetaData.cxx32
-rw-r--r--connectivity/source/drivers/odbcbase/ODatabaseMetaDataResultSet.cxx198
-rw-r--r--connectivity/source/drivers/odbcbase/ODriver.cxx2
-rw-r--r--connectivity/source/drivers/odbcbase/OPreparedStatement.cxx40
-rw-r--r--connectivity/source/drivers/odbcbase/OResultSet.cxx56
-rw-r--r--connectivity/source/drivers/odbcbase/OResultSetMetaData.cxx2
-rw-r--r--connectivity/source/drivers/odbcbase/OStatement.cxx50
-rw-r--r--connectivity/source/drivers/odbcbase/OTools.cxx170
-rw-r--r--connectivity/source/inc/AutoRetrievingBase.hxx14
-rw-r--r--connectivity/source/inc/FDatabaseMetaDataResultSet.hxx42
-rw-r--r--connectivity/source/inc/FDatabaseMetaDataResultSetMetaData.hxx12
-rw-r--r--connectivity/source/inc/OColumn.hxx104
-rw-r--r--connectivity/source/inc/OSubComponent.hxx4
-rw-r--r--connectivity/source/inc/OTypeInfo.hxx38
-rw-r--r--connectivity/source/inc/ParameterSubstitution.hxx4
-rw-r--r--connectivity/source/inc/RowFunctionParser.hxx20
-rw-r--r--connectivity/source/inc/TConnection.hxx22
-rw-r--r--connectivity/source/inc/TDatabaseMetaDataBase.hxx12
-rw-r--r--connectivity/source/inc/TKeyValue.hxx8
-rw-r--r--connectivity/source/inc/TPrivilegesResultSet.hxx8
-rw-r--r--connectivity/source/inc/TResultSetHelper.hxx4
-rw-r--r--connectivity/source/inc/TSkipDeletedSet.hxx32
-rw-r--r--connectivity/source/inc/TSortIndex.hxx34
-rw-r--r--connectivity/source/inc/UStringDescription_Impl.hxx32
-rw-r--r--connectivity/source/inc/adabas/BCatalog.hxx20
-rw-r--r--connectivity/source/inc/adabas/BColumn.hxx12
-rw-r--r--connectivity/source/inc/adabas/BColumns.hxx6
-rw-r--r--connectivity/source/inc/adabas/BConnection.hxx12
-rw-r--r--connectivity/source/inc/adabas/BDatabaseMetaData.hxx2
-rw-r--r--connectivity/source/inc/adabas/BDriver.hxx34
-rw-r--r--connectivity/source/inc/adabas/BGroup.hxx2
-rw-r--r--connectivity/source/inc/adabas/BGroups.hxx6
-rw-r--r--connectivity/source/inc/adabas/BIndex.hxx6
-rw-r--r--connectivity/source/inc/adabas/BIndexColumn.hxx18
-rw-r--r--connectivity/source/inc/adabas/BIndexColumns.hxx4
-rw-r--r--connectivity/source/inc/adabas/BIndexes.hxx4
-rw-r--r--connectivity/source/inc/adabas/BKeys.hxx2
-rw-r--r--connectivity/source/inc/adabas/BPreparedStatement.hxx12
-rw-r--r--connectivity/source/inc/adabas/BResultSet.hxx8
-rw-r--r--connectivity/source/inc/adabas/BResultSetMetaData.hxx8
-rw-r--r--connectivity/source/inc/adabas/BStatement.hxx12
-rw-r--r--connectivity/source/inc/adabas/BTable.hxx12
-rw-r--r--connectivity/source/inc/adabas/BTables.hxx4
-rw-r--r--connectivity/source/inc/adabas/BUser.hxx4
-rw-r--r--connectivity/source/inc/adabas/BUsers.hxx4
-rw-r--r--connectivity/source/inc/adabas/BViews.hxx4
-rw-r--r--connectivity/source/inc/ado/ACallableStatement.hxx6
-rw-r--r--connectivity/source/inc/ado/ACatalog.hxx16
-rw-r--r--connectivity/source/inc/ado/ACollection.hxx52
-rw-r--r--connectivity/source/inc/ado/AColumn.hxx12
-rw-r--r--connectivity/source/inc/ado/AColumns.hxx10
-rw-r--r--connectivity/source/inc/ado/AConnection.hxx30
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaData.hxx16
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaDataResultSet.hxx54
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaDataResultSetMetaData.hxx16
-rw-r--r--connectivity/source/inc/ado/ADriver.hxx6
-rw-r--r--connectivity/source/inc/ado/AGroup.hxx14
-rw-r--r--connectivity/source/inc/ado/AGroups.hxx8
-rw-r--r--connectivity/source/inc/ado/AIndex.hxx14
-rw-r--r--connectivity/source/inc/ado/AIndexColumn.hxx18
-rw-r--r--connectivity/source/inc/ado/AIndexColumns.hxx6
-rw-r--r--connectivity/source/inc/ado/AIndexes.hxx10
-rw-r--r--connectivity/source/inc/ado/AKey.hxx8
-rw-r--r--connectivity/source/inc/ado/AKeyColumn.hxx18
-rw-r--r--connectivity/source/inc/ado/AKeyColumns.hxx6
-rw-r--r--connectivity/source/inc/ado/AKeys.hxx6
-rw-r--r--connectivity/source/inc/ado/APreparedStatement.hxx14
-rw-r--r--connectivity/source/inc/ado/AResultSet.hxx28
-rw-r--r--connectivity/source/inc/ado/AResultSetMetaData.hxx12
-rw-r--r--connectivity/source/inc/ado/AStatement.hxx36
-rw-r--r--connectivity/source/inc/ado/ATable.hxx12
-rw-r--r--connectivity/source/inc/ado/ATables.hxx6
-rw-r--r--connectivity/source/inc/ado/AUser.hxx10
-rw-r--r--connectivity/source/inc/ado/AUsers.hxx10
-rw-r--r--connectivity/source/inc/ado/AView.hxx6
-rw-r--r--connectivity/source/inc/ado/AViews.hxx6
-rw-r--r--connectivity/source/inc/ado/Aolevariant.hxx90
-rw-r--r--connectivity/source/inc/ado/Aolewrap.hxx4
-rw-r--r--connectivity/source/inc/ado/Awrapado.hxx36
-rw-r--r--connectivity/source/inc/ado/Awrapadox.hxx16
-rw-r--r--connectivity/source/inc/ado/WrapCatalog.hxx14
-rw-r--r--connectivity/source/inc/ado/WrapColumn.hxx4
-rw-r--r--connectivity/source/inc/ado/WrapIndex.hxx20
-rw-r--r--connectivity/source/inc/ado/WrapKey.hxx4
-rw-r--r--connectivity/source/inc/ado/WrapTable.hxx20
-rw-r--r--connectivity/source/inc/ado/WrapTypeDefs.hxx16
-rw-r--r--connectivity/source/inc/ado/adoimp.hxx68
-rw-r--r--connectivity/source/inc/calc/CCatalog.hxx2
-rw-r--r--connectivity/source/inc/calc/CColumns.hxx2
-rw-r--r--connectivity/source/inc/calc/CConnection.hxx2
-rw-r--r--connectivity/source/inc/calc/CDatabaseMetaData.hxx4
-rw-r--r--connectivity/source/inc/calc/CDriver.hxx2
-rw-r--r--connectivity/source/inc/calc/CPreparedStatement.hxx2
-rw-r--r--connectivity/source/inc/calc/CResultSet.hxx8
-rw-r--r--connectivity/source/inc/calc/CStatement.hxx2
-rw-r--r--connectivity/source/inc/calc/CTable.hxx12
-rw-r--r--connectivity/source/inc/calc/CTables.hxx2
-rw-r--r--connectivity/source/inc/dbase/DCatalog.hxx2
-rw-r--r--connectivity/source/inc/dbase/DCode.hxx2
-rw-r--r--connectivity/source/inc/dbase/DColumns.hxx2
-rw-r--r--connectivity/source/inc/dbase/DConnection.hxx4
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaData.hxx4
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaDataResultSet.hxx36
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaDataResultSetMetaData.hxx10
-rw-r--r--connectivity/source/inc/dbase/DDriver.hxx4
-rw-r--r--connectivity/source/inc/dbase/DIndex.hxx52
-rw-r--r--connectivity/source/inc/dbase/DIndexColumns.hxx4
-rw-r--r--connectivity/source/inc/dbase/DIndexIter.hxx12
-rw-r--r--connectivity/source/inc/dbase/DIndexPage.hxx20
-rw-r--r--connectivity/source/inc/dbase/DIndexes.hxx4
-rw-r--r--connectivity/source/inc/dbase/DPreparedStatement.hxx2
-rw-r--r--connectivity/source/inc/dbase/DResultSet.hxx8
-rw-r--r--connectivity/source/inc/dbase/DStatement.hxx2
-rw-r--r--connectivity/source/inc/dbase/DTable.hxx38
-rw-r--r--connectivity/source/inc/dbase/DTables.hxx2
-rw-r--r--connectivity/source/inc/dbase/dindexnode.hxx118
-rw-r--r--connectivity/source/inc/diagnose_ex.h2
-rw-r--r--connectivity/source/inc/file/FCatalog.hxx10
-rw-r--r--connectivity/source/inc/file/FColumns.hxx6
-rw-r--r--connectivity/source/inc/file/FConnection.hxx48
-rw-r--r--connectivity/source/inc/file/FDatabaseMetaData.hxx6
-rw-r--r--connectivity/source/inc/file/FDateFunctions.hxx12
-rw-r--r--connectivity/source/inc/file/FDriver.hxx8
-rw-r--r--connectivity/source/inc/file/FNumericFunctions.hxx2
-rw-r--r--connectivity/source/inc/file/FPreparedStatement.hxx22
-rw-r--r--connectivity/source/inc/file/FResultSet.hxx142
-rw-r--r--connectivity/source/inc/file/FResultSetMetaData.hxx12
-rw-r--r--connectivity/source/inc/file/FStatement.hxx60
-rw-r--r--connectivity/source/inc/file/FStringFunctions.hxx2
-rw-r--r--connectivity/source/inc/file/FTable.hxx24
-rw-r--r--connectivity/source/inc/file/FTables.hxx4
-rw-r--r--connectivity/source/inc/file/fanalyzer.hxx24
-rw-r--r--connectivity/source/inc/file/fcode.hxx10
-rw-r--r--connectivity/source/inc/file/fcomp.hxx30
-rw-r--r--connectivity/source/inc/file/filedllapi.hxx2
-rw-r--r--connectivity/source/inc/file/quotedstring.hxx6
-rw-r--r--connectivity/source/inc/flat/ECatalog.hxx2
-rw-r--r--connectivity/source/inc/flat/EColumns.hxx2
-rw-r--r--connectivity/source/inc/flat/EConnection.hxx24
-rw-r--r--connectivity/source/inc/flat/EDatabaseMetaData.hxx4
-rw-r--r--connectivity/source/inc/flat/EDriver.hxx4
-rw-r--r--connectivity/source/inc/flat/EPreparedStatement.hxx2
-rw-r--r--connectivity/source/inc/flat/EResultSet.hxx10
-rw-r--r--connectivity/source/inc/flat/EStatement.hxx2
-rw-r--r--connectivity/source/inc/flat/ETable.hxx26
-rw-r--r--connectivity/source/inc/flat/ETables.hxx2
-rw-r--r--connectivity/source/inc/hsqldb/HCatalog.hxx14
-rw-r--r--connectivity/source/inc/hsqldb/HColumns.hxx6
-rw-r--r--connectivity/source/inc/hsqldb/HConnection.hxx4
-rw-r--r--connectivity/source/inc/hsqldb/HDriver.hxx20
-rw-r--r--connectivity/source/inc/hsqldb/HStorageAccess.hxx2
-rw-r--r--connectivity/source/inc/hsqldb/HStorageMap.hxx20
-rw-r--r--connectivity/source/inc/hsqldb/HTable.hxx24
-rw-r--r--connectivity/source/inc/hsqldb/HTables.hxx4
-rw-r--r--connectivity/source/inc/hsqldb/HTools.hxx2
-rw-r--r--connectivity/source/inc/hsqldb/HUser.hxx4
-rw-r--r--connectivity/source/inc/hsqldb/HUsers.hxx4
-rw-r--r--connectivity/source/inc/hsqldb/HView.hxx6
-rw-r--r--connectivity/source/inc/hsqldb/HViews.hxx2
-rw-r--r--connectivity/source/inc/internalnode.hxx6
-rw-r--r--connectivity/source/inc/java/ContextClassLoader.hxx6
-rw-r--r--connectivity/source/inc/java/GlobalRef.hxx2
-rw-r--r--connectivity/source/inc/java/LocalRef.hxx2
-rw-r--r--connectivity/source/inc/java/io/InputStream.hxx6
-rw-r--r--connectivity/source/inc/java/io/Reader.hxx4
-rw-r--r--connectivity/source/inc/java/lang/Boolean.hxx4
-rw-r--r--connectivity/source/inc/java/lang/Class.hxx6
-rw-r--r--connectivity/source/inc/java/lang/Exception.hxx2
-rw-r--r--connectivity/source/inc/java/lang/Object.hxx22
-rw-r--r--connectivity/source/inc/java/lang/String.hxx4
-rw-r--r--connectivity/source/inc/java/lang/Throwable.hxx2
-rw-r--r--connectivity/source/inc/java/math/BigDecimal.hxx4
-rw-r--r--connectivity/source/inc/java/sql/Array.hxx6
-rw-r--r--connectivity/source/inc/java/sql/Blob.hxx8
-rw-r--r--connectivity/source/inc/java/sql/CallableStatement.hxx6
-rw-r--r--connectivity/source/inc/java/sql/Clob.hxx6
-rw-r--r--connectivity/source/inc/java/sql/Connection.hxx26
-rw-r--r--connectivity/source/inc/java/sql/ConnectionLog.hxx2
-rw-r--r--connectivity/source/inc/java/sql/DatabaseMetaData.hxx2
-rw-r--r--connectivity/source/inc/java/sql/Driver.hxx2
-rw-r--r--connectivity/source/inc/java/sql/DriverPropertyInfo.hxx6
-rw-r--r--connectivity/source/inc/java/sql/JStatement.hxx26
-rw-r--r--connectivity/source/inc/java/sql/PreparedStatement.hxx8
-rw-r--r--connectivity/source/inc/java/sql/Ref.hxx8
-rw-r--r--connectivity/source/inc/java/sql/ResultSet.hxx28
-rw-r--r--connectivity/source/inc/java/sql/ResultSetMetaData.hxx6
-rw-r--r--connectivity/source/inc/java/sql/SQLException.hxx14
-rw-r--r--connectivity/source/inc/java/sql/SQLWarning.hxx8
-rw-r--r--connectivity/source/inc/java/sql/Timestamp.hxx4
-rw-r--r--connectivity/source/inc/java/tools.hxx8
-rw-r--r--connectivity/source/inc/java/util/Date.hxx4
-rw-r--r--connectivity/source/inc/java/util/Property.hxx2
-rw-r--r--connectivity/source/inc/mysql/YCatalog.hxx14
-rw-r--r--connectivity/source/inc/mysql/YColumns.hxx6
-rw-r--r--connectivity/source/inc/mysql/YDriver.hxx26
-rw-r--r--connectivity/source/inc/mysql/YTable.hxx22
-rw-r--r--connectivity/source/inc/mysql/YTables.hxx4
-rw-r--r--connectivity/source/inc/mysql/YUser.hxx4
-rw-r--r--connectivity/source/inc/mysql/YUsers.hxx4
-rw-r--r--connectivity/source/inc/mysql/YViews.hxx4
-rw-r--r--connectivity/source/inc/odbc/OBoundParam.hxx12
-rw-r--r--connectivity/source/inc/odbc/OConnection.hxx66
-rw-r--r--connectivity/source/inc/odbc/ODatabaseMetaData.hxx22
-rw-r--r--connectivity/source/inc/odbc/ODatabaseMetaDataResultSet.hxx58
-rw-r--r--connectivity/source/inc/odbc/ODefs3.hxx2
-rw-r--r--connectivity/source/inc/odbc/ODriver.hxx12
-rw-r--r--connectivity/source/inc/odbc/OFunctiondefs.hxx26
-rw-r--r--connectivity/source/inc/odbc/OFunctions.hxx630
-rw-r--r--connectivity/source/inc/odbc/OPreparedStatement.hxx28
-rw-r--r--connectivity/source/inc/odbc/OResultSet.hxx86
-rw-r--r--connectivity/source/inc/odbc/OResultSetMetaData.hxx16
-rw-r--r--connectivity/source/inc/odbc/OStatement.hxx46
-rw-r--r--connectivity/source/inc/odbc/OTools.hxx192
-rw-r--r--connectivity/source/inc/odbc/odbcbasedllapi.hxx2
-rw-r--r--connectivity/source/inc/propertyids.hxx140
-rw-r--r--connectivity/source/inc/resource/adabas_res.hrc2
-rw-r--r--connectivity/source/inc/resource/ado_res.hrc2
-rw-r--r--connectivity/source/inc/resource/calc_res.hrc2
-rw-r--r--connectivity/source/inc/resource/common_res.hrc2
-rw-r--r--connectivity/source/inc/resource/conn_shared_res.hrc2
-rw-r--r--connectivity/source/inc/resource/dbase_res.hrc2
-rw-r--r--connectivity/source/inc/resource/evoab2_res.hrc2
-rw-r--r--connectivity/source/inc/resource/file_res.hrc2
-rw-r--r--connectivity/source/inc/resource/hsqldb_res.hrc2
-rw-r--r--connectivity/source/inc/resource/jdbc_log.hrc2
-rw-r--r--connectivity/source/inc/resource/kab_res.hrc2
-rw-r--r--connectivity/source/inc/resource/macab_res.hrc2
-rw-r--r--connectivity/source/inc/resource/mozab_res.hrc2
-rw-r--r--connectivity/source/inc/resource/sharedresources.hxx8
-rw-r--r--connectivity/source/inc/sqlscan.hxx26
-rw-r--r--connectivity/source/manager/mdrivermanager.cxx44
-rw-r--r--connectivity/source/manager/mdrivermanager.hxx38
-rw-r--r--connectivity/source/manager/mregistration.cxx4
-rw-r--r--connectivity/source/parse/PColumn.cxx90
-rw-r--r--connectivity/source/parse/internalnode.cxx2
-rw-r--r--connectivity/source/parse/sqliterator.cxx198
-rw-r--r--connectivity/source/parse/sqlnode.cxx62
-rw-r--r--connectivity/source/parse/wrap_sqlbison.cxx2
-rw-r--r--connectivity/source/parse/wrap_sqlflex.cxx2
-rw-r--r--connectivity/source/resource/conn_error_message.src2
-rw-r--r--connectivity/source/resource/conn_log_res.src2
-rw-r--r--connectivity/source/resource/conn_shared_res.src2
-rw-r--r--connectivity/source/resource/sharedresources.cxx6
-rw-r--r--connectivity/source/sdbcx/VCatalog.cxx12
-rw-r--r--connectivity/source/sdbcx/VCollection.cxx36
-rw-r--r--connectivity/source/sdbcx/VColumn.cxx42
-rw-r--r--connectivity/source/sdbcx/VDescriptor.cxx4
-rw-r--r--connectivity/source/sdbcx/VGroup.cxx10
-rw-r--r--connectivity/source/sdbcx/VIndex.cxx20
-rw-r--r--connectivity/source/sdbcx/VIndexColumn.cxx32
-rw-r--r--connectivity/source/sdbcx/VKey.cxx40
-rw-r--r--connectivity/source/sdbcx/VKeyColumn.cxx30
-rw-r--r--connectivity/source/sdbcx/VTable.cxx18
-rw-r--r--connectivity/source/sdbcx/VUser.cxx4
-rw-r--r--connectivity/source/sdbcx/VView.cxx10
-rw-r--r--connectivity/source/simpledbt/charset_s.cxx4
-rw-r--r--connectivity/source/simpledbt/charset_s.hxx8
-rw-r--r--connectivity/source/simpledbt/dbtfactory.cxx4
-rw-r--r--connectivity/source/simpledbt/dbtfactory.hxx10
-rw-r--r--connectivity/source/simpledbt/parsenode_s.cxx4
-rw-r--r--connectivity/source/simpledbt/parsenode_s.hxx10
-rw-r--r--connectivity/source/simpledbt/parser_s.cxx4
-rw-r--r--connectivity/source/simpledbt/parser_s.hxx6
-rw-r--r--connectivity/source/simpledbt/refbase.cxx4
-rw-r--r--connectivity/source/simpledbt/refbase.hxx6
-rw-r--r--connectivity/source/simpledbt/staticdbtools_s.cxx6
-rw-r--r--connectivity/source/simpledbt/staticdbtools_s.hxx16
-rw-r--r--connectivity/workben/TT/StartTest.java20
-rw-r--r--connectivity/workben/iniParser/main.cxx4
-rw-r--r--connectivity/workben/little/main.cxx14
-rw-r--r--connectivity/workben/skeleton/SResultSet.hxx66
-rw-r--r--connectivity/workben/testmoz/initUNO.cxx2
-rw-r--r--connectivity/workben/testmoz/main.cxx14
-rw-r--r--connectivity/workben/testmoz/mozthread.cxx14
-rw-r--r--cppcanvas/inc/cppcanvas/basegfxfactory.hxx14
-rw-r--r--cppcanvas/inc/cppcanvas/bitmap.hxx12
-rw-r--r--cppcanvas/inc/cppcanvas/bitmapcanvas.hxx6
-rw-r--r--cppcanvas/inc/cppcanvas/canvas.hxx20
-rw-r--r--cppcanvas/inc/cppcanvas/canvasgraphic.hxx10
-rw-r--r--cppcanvas/inc/cppcanvas/color.hxx36
-rw-r--r--cppcanvas/inc/cppcanvas/customsprite.hxx2
-rw-r--r--cppcanvas/inc/cppcanvas/font.hxx8
-rw-r--r--cppcanvas/inc/cppcanvas/polypolygon.hxx18
-rw-r--r--cppcanvas/inc/cppcanvas/renderer.hxx26
-rw-r--r--cppcanvas/inc/cppcanvas/sprite.hxx10
-rw-r--r--cppcanvas/inc/cppcanvas/spritecanvas.hxx18
-rw-r--r--cppcanvas/inc/cppcanvas/text.hxx2
-rw-r--r--cppcanvas/inc/cppcanvas/vclfactory.hxx44
-rw-r--r--cppcanvas/inc/pch/precompiled_cppcanvas.cxx2
-rw-r--r--cppcanvas/inc/pch/precompiled_cppcanvas.hxx2
-rw-r--r--cppcanvas/source/inc/action.hxx24
-rw-r--r--cppcanvas/source/inc/canvasgraphichelper.hxx16
-rw-r--r--cppcanvas/source/inc/implrenderer.hxx36
-rw-r--r--cppcanvas/source/inc/tools.hxx16
-rw-r--r--cppcanvas/source/mtfrenderer/bitmapaction.cxx112
-rw-r--r--cppcanvas/source/mtfrenderer/bitmapaction.hxx20
-rw-r--r--cppcanvas/source/mtfrenderer/cachedprimitivebase.cxx8
-rw-r--r--cppcanvas/source/mtfrenderer/cachedprimitivebase.hxx14
-rw-r--r--cppcanvas/source/mtfrenderer/implrenderer.cxx494
-rw-r--r--cppcanvas/source/mtfrenderer/lineaction.cxx52
-rw-r--r--cppcanvas/source/mtfrenderer/lineaction.hxx18
-rw-r--r--cppcanvas/source/mtfrenderer/mtftools.cxx208
-rw-r--r--cppcanvas/source/mtfrenderer/mtftools.hxx90
-rw-r--r--cppcanvas/source/mtfrenderer/outdevstate.hxx66
-rw-r--r--cppcanvas/source/mtfrenderer/pointaction.cxx82
-rw-r--r--cppcanvas/source/mtfrenderer/pointaction.hxx28
-rw-r--r--cppcanvas/source/mtfrenderer/polypolyaction.cxx220
-rw-r--r--cppcanvas/source/mtfrenderer/polypolyaction.hxx42
-rw-r--r--cppcanvas/source/mtfrenderer/textaction.cxx1126
-rw-r--r--cppcanvas/source/mtfrenderer/textaction.hxx38
-rw-r--r--cppcanvas/source/mtfrenderer/transparencygroupaction.cxx208
-rw-r--r--cppcanvas/source/mtfrenderer/transparencygroupaction.hxx48
-rw-r--r--cppcanvas/source/tools/canvasgraphichelper.cxx16
-rw-r--r--cppcanvas/source/tools/tools.cxx10
-rw-r--r--cppcanvas/source/wrapper/basegfxfactory.cxx52
-rw-r--r--cppcanvas/source/wrapper/implbitmap.cxx16
-rw-r--r--cppcanvas/source/wrapper/implbitmap.hxx14
-rw-r--r--cppcanvas/source/wrapper/implbitmapcanvas.cxx4
-rw-r--r--cppcanvas/source/wrapper/implbitmapcanvas.hxx12
-rw-r--r--cppcanvas/source/wrapper/implcanvas.cxx10
-rw-r--r--cppcanvas/source/wrapper/implcanvas.hxx24
-rw-r--r--cppcanvas/source/wrapper/implcolor.cxx2
-rw-r--r--cppcanvas/source/wrapper/implcolor.hxx10
-rw-r--r--cppcanvas/source/wrapper/implcustomsprite.cxx10
-rw-r--r--cppcanvas/source/wrapper/implcustomsprite.hxx16
-rw-r--r--cppcanvas/source/wrapper/implfont.cxx8
-rw-r--r--cppcanvas/source/wrapper/implfont.hxx16
-rw-r--r--cppcanvas/source/wrapper/implpolypolygon.cxx50
-rw-r--r--cppcanvas/source/wrapper/implpolypolygon.hxx40
-rw-r--r--cppcanvas/source/wrapper/implsprite.cxx56
-rw-r--r--cppcanvas/source/wrapper/implsprite.hxx36
-rw-r--r--cppcanvas/source/wrapper/implspritecanvas.cxx18
-rw-r--r--cppcanvas/source/wrapper/implspritecanvas.hxx42
-rw-r--r--cppcanvas/source/wrapper/impltext.cxx6
-rw-r--r--cppcanvas/source/wrapper/impltext.hxx10
-rw-r--r--cppcanvas/source/wrapper/vclfactory.cxx122
-rw-r--r--cppu/inc/com/sun/star/uno/Any.h102
-rw-r--r--cppu/inc/com/sun/star/uno/Any.hxx14
-rw-r--r--cppu/inc/com/sun/star/uno/Reference.h142
-rw-r--r--cppu/inc/com/sun/star/uno/Reference.hxx8
-rw-r--r--cppu/inc/com/sun/star/uno/Sequence.h94
-rw-r--r--cppu/inc/com/sun/star/uno/Sequence.hxx20
-rw-r--r--cppu/inc/com/sun/star/uno/Type.h144
-rw-r--r--cppu/inc/com/sun/star/uno/Type.hxx8
-rw-r--r--cppu/inc/com/sun/star/uno/genfunc.h16
-rw-r--r--cppu/inc/com/sun/star/uno/genfunc.hxx10
-rw-r--r--cppu/inc/cppu/Enterable.hxx10
-rw-r--r--cppu/inc/cppu/EnvDcp.hxx10
-rw-r--r--cppu/inc/cppu/EnvGuards.hxx24
-rw-r--r--cppu/inc/cppu/FreeReference.hxx10
-rw-r--r--cppu/inc/cppu/Map.hxx10
-rw-r--r--cppu/inc/cppu/Shield.hxx4
-rw-r--r--cppu/inc/cppu/helper/purpenv/Environment.hxx2
-rw-r--r--cppu/inc/cppu/helper/purpenv/Mapping.hxx4
-rw-r--r--cppu/inc/cppu/macros.hxx6
-rw-r--r--cppu/inc/cppu/unotype.hxx2
-rw-r--r--cppu/inc/pch/precompiled_cppu.cxx2
-rw-r--r--cppu/inc/pch/precompiled_cppu.hxx2
-rw-r--r--cppu/inc/typelib/typeclass.h2
-rw-r--r--cppu/inc/typelib/typedescription.h276
-rw-r--r--cppu/inc/typelib/typedescription.hxx38
-rw-r--r--cppu/inc/typelib/uik.h14
-rw-r--r--cppu/inc/uno/Enterable.h16
-rw-r--r--cppu/inc/uno/EnvDcp.h6
-rw-r--r--cppu/inc/uno/any2.h78
-rw-r--r--cppu/inc/uno/cuno.h8
-rw-r--r--cppu/inc/uno/current_context.h6
-rw-r--r--cppu/inc/uno/current_context.hxx18
-rw-r--r--cppu/inc/uno/data.h146
-rw-r--r--cppu/inc/uno/dispatcher.h20
-rw-r--r--cppu/inc/uno/dispatcher.hxx24
-rw-r--r--cppu/inc/uno/environment.h184
-rw-r--r--cppu/inc/uno/environment.hxx54
-rw-r--r--cppu/inc/uno/lbnames.h14
-rw-r--r--cppu/inc/uno/mapping.h76
-rw-r--r--cppu/inc/uno/mapping.hxx116
-rw-r--r--cppu/inc/uno/sequence2.h90
-rw-r--r--cppu/inc/uno/threadpool.h40
-rw-r--r--cppu/qa/test_any.cxx2
-rw-r--r--cppu/qa/test_recursion.cxx2
-rw-r--r--cppu/qa/test_reference.cxx2
-rw-r--r--cppu/qa/test_unotype.cxx2
-rw-r--r--cppu/qa/types.idl2
-rw-r--r--cppu/qa/version.map2
-rw-r--r--cppu/source/AffineBridge/AffineBridge.cxx34
-rwxr-xr-xcppu/source/LogBridge/LogBridge.cxx6
-rw-r--r--cppu/source/UnsafeBridge/UnsafeBridge.cxx4
-rw-r--r--cppu/source/cppu/cppu_opt.cxx2
-rw-r--r--cppu/source/helper/purpenv/Proxy.hxx4
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Environment.cxx156
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx16
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx48
-rw-r--r--cppu/source/threadpool/current.cxx28
-rw-r--r--cppu/source/threadpool/current.hxx10
-rw-r--r--cppu/source/threadpool/jobqueue.cxx24
-rw-r--r--cppu/source/threadpool/jobqueue.hxx18
-rw-r--r--cppu/source/threadpool/thread.cxx6
-rw-r--r--cppu/source/threadpool/thread.hxx10
-rw-r--r--cppu/source/threadpool/threadident.cxx2
-rw-r--r--cppu/source/threadpool/threadpool.cxx2
-rw-r--r--cppu/source/threadpool/threadpool.hxx32
-rw-r--r--cppu/source/typelib/static_types.cxx76
-rw-r--r--cppu/source/typelib/typelib.cxx96
-rw-r--r--cppu/source/uno/EnvDcp.c10
-rw-r--r--cppu/source/uno/EnvStack.cxx18
-rw-r--r--cppu/source/uno/IdentityMapping.cxx20
-rw-r--r--cppu/source/uno/IdentityMapping.hxx2
-rw-r--r--cppu/source/uno/any.cxx2
-rw-r--r--cppu/source/uno/assign.hxx22
-rw-r--r--cppu/source/uno/cascade_mapping.cxx64
-rw-r--r--cppu/source/uno/cascade_mapping.hxx2
-rw-r--r--cppu/source/uno/constr.hxx14
-rw-r--r--cppu/source/uno/copy.hxx16
-rw-r--r--cppu/source/uno/data.cxx22
-rw-r--r--cppu/source/uno/destr.hxx2
-rw-r--r--cppu/source/uno/env_subst.cxx8
-rw-r--r--cppu/source/uno/env_subst.hxx4
-rw-r--r--cppu/source/uno/eq.hxx14
-rw-r--r--cppu/source/uno/lbenv.cxx48
-rw-r--r--cppu/source/uno/lbmap.cxx42
-rw-r--r--cppu/source/uno/loadmodule.cxx2
-rw-r--r--cppu/source/uno/loadmodule.hxx2
-rw-r--r--cppu/source/uno/prim.hxx2
-rw-r--r--cppu/source/uno/sequence.cxx120
-rwxr-xr-xcppu/util/cppu.map4
-rwxr-xr-xcppuhelper/inc/cppuhelper/access_control.hxx28
-rw-r--r--cppuhelper/inc/cppuhelper/basemutex.hxx4
-rw-r--r--cppuhelper/inc/cppuhelper/bootstrap.hxx36
-rw-r--r--cppuhelper/inc/cppuhelper/compbase.hxx2
-rw-r--r--cppuhelper/inc/cppuhelper/compbase1.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/compbase10.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase11.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase12.hxx10
-rw-r--r--cppuhelper/inc/cppuhelper/compbase2.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase3.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase4.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase5.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase6.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase7.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase8.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase9.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/compbase_ex.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/component.hxx22
-rw-r--r--cppuhelper/inc/cppuhelper/component_context.hxx8
-rw-r--r--cppuhelper/inc/cppuhelper/exc_hlp.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/factory.hxx80
-rw-r--r--cppuhelper/inc/cppuhelper/findsofficepath.h2
-rw-r--r--cppuhelper/inc/cppuhelper/implbase.hxx8
-rw-r--r--cppuhelper/inc/cppuhelper/implbase1.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/implbase10.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/implbase11.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/implbase12.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/implbase2.hxx14
-rw-r--r--cppuhelper/inc/cppuhelper/implbase3.hxx14
-rw-r--r--cppuhelper/inc/cppuhelper/implbase4.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/implbase5.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/implbase6.hxx18
-rw-r--r--cppuhelper/inc/cppuhelper/implbase7.hxx18
-rw-r--r--cppuhelper/inc/cppuhelper/implbase8.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/implbase9.hxx18
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex_post.hxx2
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex_pre.hxx2
-rw-r--r--cppuhelper/inc/cppuhelper/implementationentry.hxx8
-rw-r--r--cppuhelper/inc/cppuhelper/interfacecontainer.h140
-rw-r--r--cppuhelper/inc/cppuhelper/interfacecontainer.hxx18
-rw-r--r--cppuhelper/inc/cppuhelper/propertysetmixin.hxx2
-rw-r--r--cppuhelper/inc/cppuhelper/propshlp.hxx92
-rw-r--r--cppuhelper/inc/cppuhelper/proptypehlp.h16
-rw-r--r--cppuhelper/inc/cppuhelper/proptypehlp.hxx154
-rw-r--r--cppuhelper/inc/cppuhelper/queryinterface.hxx26
-rw-r--r--cppuhelper/inc/cppuhelper/servicefactory.hxx28
-rw-r--r--cppuhelper/inc/cppuhelper/shlib.hxx6
-rw-r--r--cppuhelper/inc/cppuhelper/stdidlclass.hxx120
-rw-r--r--cppuhelper/inc/cppuhelper/typeprovider.hxx12
-rw-r--r--cppuhelper/inc/cppuhelper/unourl.hxx2
-rw-r--r--cppuhelper/inc/cppuhelper/weak.hxx38
-rw-r--r--cppuhelper/inc/cppuhelper/weakagg.hxx16
-rw-r--r--cppuhelper/inc/cppuhelper/weakref.hxx34
-rw-r--r--cppuhelper/inc/pch/precompiled_cppuhelper.cxx2
-rw-r--r--cppuhelper/inc/pch/precompiled_cppuhelper.hxx2
-rw-r--r--cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx2
-rw-r--r--cppuhelper/qa/propertysetmixin/JavaSupplier.java2
-rw-r--r--cppuhelper/qa/propertysetmixin/comp_propertysetmixin.cxx4
-rw-r--r--cppuhelper/qa/propertysetmixin/test.map2
-rw-r--r--cppuhelper/qa/propertysetmixin/test_propertysetmixin.cxx2
-rw-r--r--cppuhelper/qa/propertysetmixin/types.idl2
-rw-r--r--cppuhelper/qa/unourl/cppu_unourl.cxx2
-rw-r--r--cppuhelper/qa/weak/test_weak.cxx2
-rw-r--r--cppuhelper/qa/weak/version.map2
-rw-r--r--cppuhelper/source/access_control.cxx12
-rw-r--r--cppuhelper/source/bootstrap.cxx38
-rwxr-xr-xcppuhelper/source/cc5_solaris_sparc.map2
-rw-r--r--cppuhelper/source/component.cxx8
-rw-r--r--cppuhelper/source/component_context.cxx26
-rw-r--r--cppuhelper/source/exc_thrower.cxx26
-rw-r--r--cppuhelper/source/factory.cxx38
-rw-r--r--cppuhelper/source/findsofficepath.c8
-rw-r--r--cppuhelper/source/gcc3.map2
-rw-r--r--cppuhelper/source/gcc3os2.map2
-rw-r--r--cppuhelper/source/implbase.cxx2
-rw-r--r--cppuhelper/source/implbase_ex.cxx2
-rw-r--r--cppuhelper/source/implementationentry.cxx8
-rw-r--r--cppuhelper/source/interfacecontainer.cxx4
-rw-r--r--cppuhelper/source/macro_expander.cxx6
-rw-r--r--cppuhelper/source/macro_expander.hxx2
-rw-r--r--cppuhelper/source/propertysetmixin.cxx2
-rw-r--r--cppuhelper/source/propshlp.cxx150
-rw-r--r--cppuhelper/source/servicefactory.cxx12
-rw-r--r--cppuhelper/source/shlib.cxx44
-rw-r--r--cppuhelper/source/stdidlclass.cxx84
-rw-r--r--cppuhelper/source/tdmgr.cxx20
-rw-r--r--cppuhelper/source/typeprovider.cxx4
-rw-r--r--cppuhelper/source/unourl.cxx2
-rw-r--r--cppuhelper/source/weak.cxx110
-rw-r--r--cppuhelper/test/bootstrap/TestEnv.cxx6
-rw-r--r--cppuhelper/test/bootstrap/bootstrap.test.cxx46
-rw-r--r--cppuhelper/test/cfg_data/instance/uno/components.xml16
-rw-r--r--cppuhelper/test/cfg_test.cxx22
-rw-r--r--cppuhelper/test/helpertest.idl4
-rw-r--r--cppuhelper/test/loader/loader.test.cxx22
-rw-r--r--cppuhelper/test/testcmp/TestComponent.cxx34
-rw-r--r--cppuhelper/test/testcmp/TestComponent.hxx2
-rw-r--r--cppuhelper/test/testcontainer.cxx18
-rw-r--r--cppuhelper/test/testdefaultbootstrapping.cxx4
-rw-r--r--cppuhelper/test/testdefaultbootstrapping.pl20
-rw-r--r--cppuhelper/test/testhelper.cxx8
-rw-r--r--cppuhelper/test/testhelper.hxx2
-rw-r--r--cppuhelper/test/testidlclass.cxx8
-rw-r--r--cppuhelper/test/testimplhelper.cxx38
-rw-r--r--cppuhelper/test/testlib/UNO.pm6
-rw-r--r--cppuhelper/test/testlib/defbootstrap_lib.cxx4
-rw-r--r--cppuhelper/test/testpropshlp.cxx370
-rw-r--r--cppuhelper/test/testproptyphlp.cxx2
-rw-r--r--cppuhelper/unotypes/cppuhelper/detail/XExceptionThrower.idl2
-rwxr-xr-xcpputools/source/regcomplazy/regcomplazy.cxx54
-rw-r--r--cpputools/source/registercomponent/registercomponent.cxx24
-rw-r--r--cpputools/source/regsingleton/regsingleton.cxx12
-rw-r--r--cpputools/source/sp2bv/sp2bv.cxx8
-rw-r--r--cpputools/source/unoexe/unoexe.cxx40
-rwxr-xr-xcrashrep/source/unx/main.cxx266
-rwxr-xr-xcrashrep/source/win32/base64.cpp6
-rwxr-xr-xcrashrep/source/win32/base64.h2
-rwxr-xr-xcrashrep/source/win32/resource.h76
-rwxr-xr-xcrashrep/source/win32/soreport.cpp858
-rw-r--r--cui/inc/pch/precompiled_cui.cxx2
-rw-r--r--cui/inc/pch/precompiled_cui.hxx2
-rw-r--r--cui/source/customize/acccfg.cxx40
-rw-r--r--cui/source/customize/acccfg.hrc4
-rw-r--r--cui/source/customize/acccfg.src2
-rw-r--r--cui/source/customize/cfg.cxx143
-rw-r--r--cui/source/customize/cfg.hrc4
-rw-r--r--cui/source/customize/cfg.src16
-rw-r--r--cui/source/customize/cfgutil.cxx40
-rw-r--r--cui/source/customize/eventdlg.cxx24
-rw-r--r--cui/source/customize/eventdlg.hrc16
-rw-r--r--cui/source/customize/eventdlg.hxx14
-rw-r--r--cui/source/customize/eventdlg.src12
-rw-r--r--cui/source/customize/macropg.cxx26
-rw-r--r--cui/source/customize/macropg.hrc110
-rw-r--r--cui/source/customize/macropg.src4
-rw-r--r--cui/source/customize/macropg_impl.hxx38
-rw-r--r--cui/source/customize/selector.cxx6
-rw-r--r--cui/source/customize/selector.hrc10
-rw-r--r--cui/source/customize/selector.src6
-rw-r--r--cui/source/dialogs/SpellAttrib.cxx10
-rw-r--r--cui/source/dialogs/SpellAttrib.hxx36
-rwxr-xr-xcui/source/dialogs/SpellDialog.cxx34
-rw-r--r--cui/source/dialogs/SpellDialog.hrc2
-rw-r--r--cui/source/dialogs/SpellDialog.src4
-rw-r--r--cui/source/dialogs/charmap.hrc36
-rw-r--r--cui/source/dialogs/charmap.src10
-rw-r--r--cui/source/dialogs/commonlingui.cxx34
-rw-r--r--cui/source/dialogs/commonlingui.hxx72
-rw-r--r--cui/source/dialogs/commonlingui.src4
-rw-r--r--cui/source/dialogs/cuicharmap.cxx4
-rw-r--r--cui/source/dialogs/cuifmsearch.cxx126
-rw-r--r--cui/source/dialogs/cuigaldlg.cxx102
-rw-r--r--cui/source/dialogs/cuigrfflt.cxx134
-rw-r--r--cui/source/dialogs/cuihyperdlg.cxx12
-rw-r--r--cui/source/dialogs/cuiimapdlg.hrc26
-rw-r--r--cui/source/dialogs/cuiimapdlg.src6
-rw-r--r--cui/source/dialogs/cuiimapwnd.cxx6
-rw-r--r--cui/source/dialogs/cuitbxform.cxx2
-rw-r--r--cui/source/dialogs/dlgname.cxx40
-rw-r--r--cui/source/dialogs/dlgname.hrc18
-rw-r--r--cui/source/dialogs/dlgname.src4
-rw-r--r--cui/source/dialogs/fmsearch.hrc66
-rw-r--r--cui/source/dialogs/fmsearch.src2
-rw-r--r--cui/source/dialogs/gallery.src2
-rw-r--r--cui/source/dialogs/grfflt.hrc70
-rw-r--r--cui/source/dialogs/grfflt.src120
-rw-r--r--cui/source/dialogs/hangulhanjadlg.cxx338
-rw-r--r--cui/source/dialogs/hangulhanjadlg.hrc216
-rw-r--r--cui/source/dialogs/hangulhanjadlg.src8
-rw-r--r--cui/source/dialogs/hldocntp.cxx62
-rw-r--r--cui/source/dialogs/hldoctp.cxx24
-rw-r--r--cui/source/dialogs/hlinettp.cxx38
-rw-r--r--cui/source/dialogs/hlmailtp.cxx20
-rw-r--r--cui/source/dialogs/hlmarkwn.cxx30
-rw-r--r--cui/source/dialogs/hlmarkwn.hrc12
-rw-r--r--cui/source/dialogs/hlmarkwn.src2
-rw-r--r--cui/source/dialogs/hltpbase.cxx88
-rw-r--r--cui/source/dialogs/hyperdlg.hrc116
-rw-r--r--cui/source/dialogs/hyperdlg.src4
-rwxr-xr-xcui/source/dialogs/hyphen.cxx48
-rwxr-xr-xcui/source/dialogs/hyphen.hrc18
-rwxr-xr-xcui/source/dialogs/hyphen.src2
-rw-r--r--cui/source/dialogs/iconcdlg.cxx68
-rw-r--r--cui/source/dialogs/iconcdlg.src2
-rw-r--r--cui/source/dialogs/insdlg.cxx2
-rw-r--r--cui/source/dialogs/insrc.cxx2
-rw-r--r--cui/source/dialogs/insrc.hrc20
-rw-r--r--cui/source/dialogs/insrc.src2
-rw-r--r--cui/source/dialogs/linkdlg.cxx20
-rw-r--r--cui/source/dialogs/multifil.cxx2
-rw-r--r--cui/source/dialogs/multipat.cxx16
-rw-r--r--cui/source/dialogs/multipat.hrc2
-rw-r--r--cui/source/dialogs/multipat.src2
-rw-r--r--cui/source/dialogs/newtabledlg.cxx2
-rw-r--r--cui/source/dialogs/newtabledlg.hrc2
-rw-r--r--cui/source/dialogs/newtabledlg.src6
-rwxr-xr-xcui/source/dialogs/passwdomdlg.cxx64
-rwxr-xr-xcui/source/dialogs/passwdomdlg.hrc2
-rwxr-xr-xcui/source/dialogs/passwdomdlg.src12
-rw-r--r--cui/source/dialogs/pastedlg.cxx4
-rw-r--r--cui/source/dialogs/plfilter.cxx2
-rw-r--r--cui/source/dialogs/postdlg.cxx22
-rw-r--r--cui/source/dialogs/postdlg.hrc24
-rw-r--r--cui/source/dialogs/postdlg.src2
-rw-r--r--cui/source/dialogs/scriptdlg.cxx142
-rw-r--r--cui/source/dialogs/scriptdlg.hrc30
-rw-r--r--cui/source/dialogs/scriptdlg.src2
-rw-r--r--cui/source/dialogs/sdrcelldlg.cxx16
-rw-r--r--cui/source/dialogs/sdrcelldlg.src2
-rw-r--r--cui/source/dialogs/showcols.cxx6
-rw-r--r--cui/source/dialogs/showcols.src2
-rw-r--r--cui/source/dialogs/splitcelldlg.cxx6
-rw-r--r--cui/source/dialogs/splitcelldlg.hrc14
-rw-r--r--cui/source/dialogs/splitcelldlg.src4
-rw-r--r--cui/source/dialogs/srchxtra.cxx18
-rw-r--r--cui/source/dialogs/srchxtra.hrc2
-rw-r--r--cui/source/dialogs/srchxtra.src2
-rw-r--r--cui/source/dialogs/svuidlg.hrc166
-rw-r--r--cui/source/dialogs/svuidlg.src4
-rw-r--r--cui/source/dialogs/tbxform.src2
-rwxr-xr-xcui/source/dialogs/thesdlg.cxx112
-rwxr-xr-xcui/source/dialogs/thesdlg.hrc14
-rwxr-xr-xcui/source/dialogs/thesdlg.src12
-rwxr-xr-xcui/source/dialogs/thesdlg_impl.hxx24
-rw-r--r--cui/source/dialogs/winpluginlib.cpp72
-rw-r--r--cui/source/dialogs/zoom.cxx12
-rw-r--r--cui/source/dialogs/zoom.hrc2
-rw-r--r--cui/source/dialogs/zoom.src2
-rw-r--r--cui/source/factory/cuiexp.cxx2
-rw-r--r--cui/source/factory/cuiresmgr.cxx2
-rwxr-xr-xcui/source/factory/dlgfact.cxx52
-rwxr-xr-xcui/source/factory/dlgfact.hxx290
-rw-r--r--cui/source/factory/init.cxx2
-rw-r--r--cui/source/inc/ControlFocusHelper.hxx10
-rw-r--r--cui/source/inc/SpellDialog.hxx68
-rw-r--r--cui/source/inc/acccfg.hxx92
-rw-r--r--cui/source/inc/align.hxx2
-rw-r--r--cui/source/inc/autocdlg.hxx324
-rw-r--r--cui/source/inc/backgrnd.hxx28
-rw-r--r--cui/source/inc/bbdlg.hxx10
-rw-r--r--cui/source/inc/border.hxx66
-rw-r--r--cui/source/inc/cfg.hxx404
-rw-r--r--cui/source/inc/cfgutil.hxx18
-rw-r--r--cui/source/inc/chardlg.hxx242
-rw-r--r--cui/source/inc/connect.hxx72
-rw-r--r--cui/source/inc/cuicharmap.hxx14
-rw-r--r--cui/source/inc/cuifmsearch.hxx74
-rw-r--r--cui/source/inc/cuigaldlg.hxx186
-rw-r--r--cui/source/inc/cuigrfflt.hxx116
-rw-r--r--cui/source/inc/cuihyperdlg.hxx50
-rw-r--r--cui/source/inc/cuiimapwnd.hxx38
-rw-r--r--cui/source/inc/cuioptgenrl.hxx36
-rwxr-xr-xcui/source/inc/cuires.hrc242
-rw-r--r--cui/source/inc/cuisrchdlg.hxx10
-rw-r--r--cui/source/inc/cuitabarea.hxx150
-rw-r--r--cui/source/inc/cuitabline.hxx54
-rw-r--r--cui/source/inc/cuitbxform.hxx8
-rw-r--r--cui/source/inc/dbregister.hxx50
-rw-r--r--cui/source/inc/defdlgname.hxx10
-rw-r--r--cui/source/inc/dialmgr.hxx12
-rw-r--r--cui/source/inc/dlgname.hxx54
-rw-r--r--cui/source/inc/dstribut.hxx50
-rw-r--r--cui/source/inc/gallery.hrc66
-rw-r--r--cui/source/inc/grfpage.hxx96
-rw-r--r--cui/source/inc/hangulhanjadlg.hxx234
-rw-r--r--cui/source/inc/headertablistbox.hxx20
-rwxr-xr-xcui/source/inc/helpid.hrc352
-rw-r--r--cui/source/inc/hldocntp.hxx32
-rw-r--r--cui/source/inc/hldoctp.hxx52
-rw-r--r--cui/source/inc/hlinettp.hxx56
-rw-r--r--cui/source/inc/hlmailtp.hxx30
-rw-r--r--cui/source/inc/hlmarkwn.hxx24
-rw-r--r--cui/source/inc/hlmarkwn_def.hxx8
-rw-r--r--cui/source/inc/hltpbase.hxx46
-rwxr-xr-xcui/source/inc/hyphen.hxx2
-rw-r--r--cui/source/inc/iconcdlg.hxx214
-rw-r--r--cui/source/inc/insdlg.hxx36
-rw-r--r--cui/source/inc/insrc.hxx20
-rw-r--r--cui/source/inc/internationaloptions.hxx16
-rw-r--r--cui/source/inc/labdlg.hxx104
-rw-r--r--cui/source/inc/linkdlg.hxx44
-rw-r--r--cui/source/inc/macroass.hxx48
-rw-r--r--cui/source/inc/macropg.hxx50
-rw-r--r--cui/source/inc/measure.hxx76
-rw-r--r--cui/source/inc/multifil.hxx8
-rw-r--r--cui/source/inc/multipat.hxx16
-rw-r--r--cui/source/inc/newtabledlg.hxx20
-rw-r--r--cui/source/inc/numfmt.hxx136
-rw-r--r--cui/source/inc/numpages.hxx316
-rw-r--r--cui/source/inc/optasian.hxx34
-rw-r--r--cui/source/inc/optdict.hxx92
-rw-r--r--cui/source/inc/optimprove.hxx2
-rw-r--r--cui/source/inc/optlingu.hxx84
-rw-r--r--cui/source/inc/optpath.hxx24
-rw-r--r--cui/source/inc/page.hxx76
-rw-r--r--cui/source/inc/paragrph.hxx208
-rwxr-xr-xcui/source/inc/passwdomdlg.hxx10
-rw-r--r--cui/source/inc/pastedlg.hxx26
-rw-r--r--cui/source/inc/postdlg.hxx18
-rw-r--r--cui/source/inc/radiobtnbox.hxx2
-rw-r--r--cui/source/inc/scriptdlg.hxx142
-rw-r--r--cui/source/inc/sdrcelldlg.hxx4
-rw-r--r--cui/source/inc/selector.hxx114
-rw-r--r--cui/source/inc/showcols.hxx14
-rw-r--r--cui/source/inc/splitcelldlg.hxx18
-rw-r--r--cui/source/inc/srchxtra.hxx48
-rw-r--r--cui/source/inc/tabstpge.hxx98
-rw-r--r--cui/source/inc/textanim.hxx82
-rw-r--r--cui/source/inc/textattr.hxx58
-rwxr-xr-xcui/source/inc/thesdlg.hxx2
-rw-r--r--cui/source/inc/transfrm.hxx184
-rw-r--r--cui/source/inc/treeopt.hxx100
-rw-r--r--cui/source/inc/zoom.hxx40
-rw-r--r--cui/source/options/cfgchart.cxx2
-rw-r--r--cui/source/options/cfgchart.hxx20
-rw-r--r--cui/source/options/connpoolconfig.cxx12
-rw-r--r--cui/source/options/connpoolconfig.hxx4
-rw-r--r--cui/source/options/connpooloptions.cxx44
-rw-r--r--cui/source/options/connpooloptions.hrc30
-rw-r--r--cui/source/options/connpooloptions.hxx32
-rw-r--r--cui/source/options/connpooloptions.src10
-rw-r--r--cui/source/options/connpoolsettings.cxx10
-rw-r--r--cui/source/options/connpoolsettings.hxx28
-rw-r--r--cui/source/options/cuisrchdlg.cxx8
-rw-r--r--cui/source/options/dbregister.cxx40
-rw-r--r--cui/source/options/dbregister.hrc16
-rw-r--r--cui/source/options/dbregister.src2
-rw-r--r--cui/source/options/dbregisterednamesconfig.cxx6
-rw-r--r--cui/source/options/dbregisterednamesconfig.hxx4
-rw-r--r--cui/source/options/dbregistersettings.cxx4
-rw-r--r--cui/source/options/dbregistersettings.hxx6
-rw-r--r--cui/source/options/doclinkdialog.cxx18
-rw-r--r--cui/source/options/doclinkdialog.hrc24
-rw-r--r--cui/source/options/doclinkdialog.hxx36
-rw-r--r--cui/source/options/doclinkdialog.src30
-rw-r--r--cui/source/options/fontsubs.cxx34
-rw-r--r--cui/source/options/fontsubs.hrc8
-rw-r--r--cui/source/options/fontsubs.hxx50
-rw-r--r--cui/source/options/fontsubs.src2
-rw-r--r--cui/source/options/internationaloptions.cxx74
-rw-r--r--cui/source/options/internationaloptions.hrc48
-rw-r--r--cui/source/options/internationaloptions.src2
-rw-r--r--cui/source/options/optHeaderTabListbox.cxx2
-rw-r--r--cui/source/options/optHeaderTabListbox.hxx2
-rw-r--r--cui/source/options/optaccessibility.cxx56
-rw-r--r--cui/source/options/optaccessibility.hrc58
-rw-r--r--cui/source/options/optaccessibility.hxx32
-rw-r--r--cui/source/options/optaccessibility.src2
-rw-r--r--cui/source/options/optasian.cxx58
-rw-r--r--cui/source/options/optasian.hrc32
-rw-r--r--cui/source/options/optasian.src2
-rw-r--r--cui/source/options/optchart.cxx20
-rw-r--r--cui/source/options/optchart.hrc12
-rw-r--r--cui/source/options/optchart.hxx20
-rw-r--r--cui/source/options/optchart.src30
-rw-r--r--cui/source/options/optcolor.cxx84
-rw-r--r--cui/source/options/optcolor.hrc44
-rw-r--r--cui/source/options/optcolor.hxx10
-rw-r--r--cui/source/options/optcolor.src42
-rw-r--r--cui/source/options/optctl.cxx26
-rw-r--r--cui/source/options/optctl.hrc42
-rw-r--r--cui/source/options/optctl.hxx28
-rw-r--r--cui/source/options/optctl.src2
-rwxr-xr-xcui/source/options/optdict.cxx88
-rw-r--r--cui/source/options/optdict.hrc50
-rw-r--r--cui/source/options/optdict.src2
-rw-r--r--cui/source/options/optfltr.cxx46
-rw-r--r--cui/source/options/optfltr.hrc10
-rw-r--r--cui/source/options/optfltr.hxx34
-rw-r--r--cui/source/options/optfltr.src6
-rw-r--r--cui/source/options/optgdlg.cxx100
-rw-r--r--cui/source/options/optgdlg.hrc154
-rw-r--r--cui/source/options/optgdlg.hxx78
-rw-r--r--cui/source/options/optgdlg.src2
-rw-r--r--cui/source/options/optgenrl.cxx56
-rw-r--r--cui/source/options/optgenrl.hrc88
-rw-r--r--cui/source/options/optgenrl.src2
-rw-r--r--cui/source/options/opthtml.cxx62
-rw-r--r--cui/source/options/opthtml.hrc54
-rw-r--r--cui/source/options/opthtml.hxx38
-rw-r--r--cui/source/options/opthtml.src4
-rw-r--r--cui/source/options/optimprove.cxx2
-rw-r--r--cui/source/options/optimprove.hrc2
-rw-r--r--cui/source/options/optimprove.src2
-rw-r--r--cui/source/options/optimprove2.cxx2
-rwxr-xr-xcui/source/options/optinet2.cxx114
-rwxr-xr-xcui/source/options/optinet2.hrc70
-rwxr-xr-xcui/source/options/optinet2.hxx136
-rwxr-xr-xcui/source/options/optinet2.src10
-rw-r--r--cui/source/options/optjava.cxx92
-rw-r--r--cui/source/options/optjava.hrc70
-rw-r--r--cui/source/options/optjava.hxx148
-rw-r--r--cui/source/options/optjava.src2
-rw-r--r--cui/source/options/optjsearch.cxx114
-rw-r--r--cui/source/options/optjsearch.hrc8
-rw-r--r--cui/source/options/optjsearch.hxx52
-rw-r--r--cui/source/options/optjsearch.src2
-rw-r--r--cui/source/options/optlingu.cxx230
-rw-r--r--cui/source/options/optlingu.hrc38
-rw-r--r--cui/source/options/optlingu.src2
-rw-r--r--cui/source/options/optmemory.cxx16
-rw-r--r--cui/source/options/optmemory.hrc90
-rw-r--r--cui/source/options/optmemory.hxx42
-rw-r--r--cui/source/options/optmemory.src2
-rw-r--r--cui/source/options/optpath.cxx38
-rw-r--r--cui/source/options/optpath.hrc14
-rw-r--r--cui/source/options/optpath.src4
-rw-r--r--cui/source/options/optsave.cxx26
-rw-r--r--cui/source/options/optsave.hrc2
-rw-r--r--cui/source/options/optsave.hxx10
-rw-r--r--cui/source/options/optsave.src2
-rw-r--r--cui/source/options/optspell.hrc20
-rw-r--r--cui/source/options/optspell.src2
-rw-r--r--cui/source/options/optupdt.cxx8
-rw-r--r--cui/source/options/optupdt.hrc2
-rw-r--r--cui/source/options/optupdt.hxx12
-rw-r--r--cui/source/options/optupdt.src8
-rw-r--r--cui/source/options/radiobtnbox.cxx2
-rw-r--r--cui/source/options/readonlyimage.cxx4
-rw-r--r--cui/source/options/readonlyimage.hxx8
-rw-r--r--cui/source/options/readonlyimage.src2
-rw-r--r--cui/source/options/sdbcdriverenum.cxx6
-rw-r--r--cui/source/options/sdbcdriverenum.hxx10
-rw-r--r--cui/source/options/securityoptions.cxx2
-rw-r--r--cui/source/options/securityoptions.hrc2
-rw-r--r--cui/source/options/securityoptions.hxx2
-rw-r--r--cui/source/options/securityoptions.src2
-rw-r--r--cui/source/options/treeopt.cxx156
-rw-r--r--cui/source/options/treeopt.hrc86
-rw-r--r--cui/source/options/treeopt.src44
-rw-r--r--cui/source/options/webconninfo.cxx34
-rw-r--r--cui/source/options/webconninfo.hrc2
-rw-r--r--cui/source/options/webconninfo.hxx2
-rw-r--r--cui/source/options/webconninfo.src2
-rw-r--r--cui/source/tabpages/align.cxx4
-rw-r--r--cui/source/tabpages/align.hrc4
-rw-r--r--cui/source/tabpages/align.src2
-rw-r--r--cui/source/tabpages/autocdlg.cxx338
-rw-r--r--cui/source/tabpages/autocdlg.hrc88
-rw-r--r--cui/source/tabpages/autocdlg.src10
-rw-r--r--cui/source/tabpages/backgrnd.cxx252
-rw-r--r--cui/source/tabpages/backgrnd.hrc54
-rw-r--r--cui/source/tabpages/backgrnd.src4
-rw-r--r--cui/source/tabpages/bbdlg.cxx2
-rw-r--r--cui/source/tabpages/bbdlg.src4
-rw-r--r--cui/source/tabpages/border.cxx128
-rw-r--r--cui/source/tabpages/border.hrc16
-rw-r--r--cui/source/tabpages/border.src2
-rw-r--r--cui/source/tabpages/borderconn.cxx2
-rw-r--r--cui/source/tabpages/borderconn.hxx2
-rw-r--r--cui/source/tabpages/chardlg.cxx216
-rw-r--r--cui/source/tabpages/chardlg.h70
-rw-r--r--cui/source/tabpages/chardlg.hrc204
-rw-r--r--cui/source/tabpages/chardlg.src2
-rw-r--r--cui/source/tabpages/connect.cxx28
-rw-r--r--cui/source/tabpages/connect.hrc2
-rw-r--r--cui/source/tabpages/connect.src2
-rw-r--r--cui/source/tabpages/dstribut.cxx42
-rw-r--r--cui/source/tabpages/dstribut.hrc58
-rw-r--r--cui/source/tabpages/dstribut.src2
-rw-r--r--cui/source/tabpages/frmdirlbox.src2
-rw-r--r--cui/source/tabpages/grfpage.cxx58
-rw-r--r--cui/source/tabpages/grfpage.hrc4
-rw-r--r--cui/source/tabpages/grfpage.src12
-rw-r--r--cui/source/tabpages/labdlg.cxx112
-rw-r--r--cui/source/tabpages/labdlg.hrc80
-rw-r--r--cui/source/tabpages/labdlg.src4
-rw-r--r--cui/source/tabpages/macroass.cxx128
-rw-r--r--cui/source/tabpages/macroass.hrc80
-rw-r--r--cui/source/tabpages/macroass.src2
-rw-r--r--cui/source/tabpages/measure.cxx86
-rw-r--r--cui/source/tabpages/measure.hrc8
-rw-r--r--cui/source/tabpages/measure.src2
-rw-r--r--cui/source/tabpages/numfmt.cxx572
-rw-r--r--cui/source/tabpages/numfmt.hrc70
-rw-r--r--cui/source/tabpages/numfmt.src2
-rw-r--r--cui/source/tabpages/numpages.cxx351
-rw-r--r--cui/source/tabpages/numpages.hrc70
-rw-r--r--cui/source/tabpages/numpages.src34
-rw-r--r--cui/source/tabpages/page.cxx84
-rw-r--r--cui/source/tabpages/page.h76
-rw-r--r--cui/source/tabpages/page.hrc66
-rw-r--r--cui/source/tabpages/page.src2
-rw-r--r--cui/source/tabpages/paragrph.cxx189
-rw-r--r--cui/source/tabpages/paragrph.hrc50
-rw-r--r--cui/source/tabpages/paragrph.src10
-rw-r--r--cui/source/tabpages/strings.src2
-rw-r--r--cui/source/tabpages/swpossizetabpage.cxx2
-rw-r--r--cui/source/tabpages/swpossizetabpage.hrc2
-rw-r--r--cui/source/tabpages/swpossizetabpage.hxx30
-rw-r--r--cui/source/tabpages/swpossizetabpage.src2
-rw-r--r--cui/source/tabpages/tabarea.cxx2
-rw-r--r--cui/source/tabpages/tabarea.hrc54
-rw-r--r--cui/source/tabpages/tabarea.src10
-rw-r--r--cui/source/tabpages/tabline.cxx10
-rw-r--r--cui/source/tabpages/tabline.hrc24
-rw-r--r--cui/source/tabpages/tabline.src6
-rw-r--r--cui/source/tabpages/tabstpge.cxx6
-rw-r--r--cui/source/tabpages/tabstpge.hrc28
-rw-r--r--cui/source/tabpages/tabstpge.src2
-rw-r--r--cui/source/tabpages/textanim.cxx54
-rw-r--r--cui/source/tabpages/textanim.hrc2
-rw-r--r--cui/source/tabpages/textanim.src62
-rw-r--r--cui/source/tabpages/textattr.cxx84
-rw-r--r--cui/source/tabpages/textattr.hrc2
-rw-r--r--cui/source/tabpages/textattr.src4
-rw-r--r--cui/source/tabpages/tparea.cxx120
-rw-r--r--cui/source/tabpages/tpbitmap.cxx58
-rw-r--r--cui/source/tabpages/tpcolor.cxx44
-rw-r--r--cui/source/tabpages/tpgradnt.cxx52
-rw-r--r--cui/source/tabpages/tphatch.cxx54
-rw-r--r--cui/source/tabpages/tpline.cxx58
-rw-r--r--cui/source/tabpages/tplnedef.cxx44
-rw-r--r--cui/source/tabpages/tplneend.cxx20
-rw-r--r--cui/source/tabpages/tpshadow.cxx48
-rw-r--r--cui/source/tabpages/transfrm.cxx52
-rw-r--r--cui/source/tabpages/transfrm.hrc98
-rw-r--r--cui/source/tabpages/transfrm.src2
-rw-r--r--cui/util/hidother.src4
-rw-r--r--dbaccess/inc/AsyncronousLink.hxx6
-rw-r--r--dbaccess/inc/IController.hxx32
-rw-r--r--dbaccess/inc/IEnvironment.hxx2
-rw-r--r--dbaccess/inc/IReference.hxx4
-rw-r--r--dbaccess/inc/ToolBoxHelper.hxx28
-rw-r--r--dbaccess/inc/controllerframe.hxx2
-rw-r--r--dbaccess/inc/dataview.hxx20
-rw-r--r--dbaccess/inc/dbaccess_helpid.hrc794
-rw-r--r--dbaccess/inc/dbaccess_slotid.hrc132
-rw-r--r--dbaccess/inc/dbaccessdllapi.h8
-rw-r--r--dbaccess/inc/genericcontroller.hxx78
-rw-r--r--dbaccess/inc/pch/precompiled_dbaccess.cxx2
-rw-r--r--dbaccess/inc/pch/precompiled_dbaccess.hxx2
-rw-r--r--dbaccess/inc/singledoccontroller.hxx30
-rw-r--r--dbaccess/prj/dbu.xml2
-rw-r--r--dbaccess/qa/complex/dbaccess/ApplicationController.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/Beamer.java4
-rw-r--r--dbaccess/qa/complex/dbaccess/CRMBasedTestCase.java2
-rwxr-xr-xdbaccess/qa/complex/dbaccess/CopyTableInterActionHandler.java2
-rwxr-xr-xdbaccess/qa/complex/dbaccess/CopyTableWizard.java6
-rw-r--r--dbaccess/qa/complex/dbaccess/DataSource.java2
-rwxr-xr-xdbaccess/qa/complex/dbaccess/DatabaseApplication.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/DatabaseDocument.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/FileHelper.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/Parser.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/PropertyBag.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/Query.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/QueryInQuery.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/RowSet.java2
-rw-r--r--dbaccess/qa/complex/dbaccess/RowSetEventListener.java8
-rwxr-xr-xdbaccess/qa/complex/dbaccess/SingleSelectQueryComposer.java10
-rw-r--r--dbaccess/qa/complex/dbaccess/TestCase.java4
-rw-r--r--dbaccess/qa/complex/dbaccess/UISettings.java2
-rw-r--r--dbaccess/source/core/api/BookmarkSet.cxx8
-rw-r--r--dbaccess/source/core/api/BookmarkSet.hxx2
-rw-r--r--dbaccess/source/core/api/CIndexColumn.hxx16
-rw-r--r--dbaccess/source/core/api/CIndexes.cxx2
-rw-r--r--dbaccess/source/core/api/CIndexes.hxx2
-rw-r--r--dbaccess/source/core/api/CRowSetColumn.cxx6
-rw-r--r--dbaccess/source/core/api/CRowSetColumn.hxx6
-rw-r--r--dbaccess/source/core/api/CRowSetDataColumn.cxx10
-rw-r--r--dbaccess/source/core/api/CRowSetDataColumn.hxx18
-rw-r--r--dbaccess/source/core/api/CacheSet.cxx74
-rw-r--r--dbaccess/source/core/api/CacheSet.hxx30
-rw-r--r--dbaccess/source/core/api/FilteredContainer.cxx34
-rw-r--r--dbaccess/source/core/api/HelperCollections.cxx2
-rw-r--r--dbaccess/source/core/api/HelperCollections.hxx8
-rw-r--r--dbaccess/source/core/api/KeySet.cxx133
-rw-r--r--dbaccess/source/core/api/KeySet.hxx41
-rw-r--r--dbaccess/source/core/api/OptimisticSet.cxx30
-rw-r--r--dbaccess/source/core/api/OptimisticSet.hxx26
-rw-r--r--dbaccess/source/core/api/PrivateRow.cxx2
-rw-r--r--dbaccess/source/core/api/PrivateRow.hxx2
-rw-r--r--dbaccess/source/core/api/RowSet.cxx246
-rw-r--r--dbaccess/source/core/api/RowSet.hxx152
-rw-r--r--dbaccess/source/core/api/RowSetBase.cxx72
-rw-r--r--dbaccess/source/core/api/RowSetBase.hxx94
-rw-r--r--dbaccess/source/core/api/RowSetCache.cxx144
-rw-r--r--dbaccess/source/core/api/RowSetCache.hxx66
-rw-r--r--dbaccess/source/core/api/RowSetCacheIterator.cxx8
-rw-r--r--dbaccess/source/core/api/RowSetCacheIterator.hxx24
-rw-r--r--dbaccess/source/core/api/RowSetRow.hxx24
-rw-r--r--dbaccess/source/core/api/SingleSelectQueryComposer.cxx126
-rw-r--r--dbaccess/source/core/api/StaticSet.cxx18
-rw-r--r--dbaccess/source/core/api/StaticSet.hxx6
-rw-r--r--dbaccess/source/core/api/TableDeco.cxx140
-rw-r--r--dbaccess/source/core/api/View.cxx6
-rw-r--r--dbaccess/source/core/api/WrappedResultSet.cxx6
-rw-r--r--dbaccess/source/core/api/WrappedResultSet.hxx2
-rw-r--r--dbaccess/source/core/api/callablestatement.cxx4
-rw-r--r--dbaccess/source/core/api/column.cxx18
-rw-r--r--dbaccess/source/core/api/columnsettings.cxx2
-rw-r--r--dbaccess/source/core/api/datacolumn.cxx6
-rw-r--r--dbaccess/source/core/api/datacolumn.hxx8
-rw-r--r--dbaccess/source/core/api/datasettings.cxx40
-rw-r--r--dbaccess/source/core/api/definitioncolumn.cxx18
-rw-r--r--dbaccess/source/core/api/preparedstatement.cxx2
-rw-r--r--dbaccess/source/core/api/query.cxx14
-rw-r--r--dbaccess/source/core/api/query.hxx30
-rw-r--r--dbaccess/source/core/api/querycomposer.cxx2
-rw-r--r--dbaccess/source/core/api/querycontainer.cxx30
-rw-r--r--dbaccess/source/core/api/querydescriptor.cxx10
-rw-r--r--dbaccess/source/core/api/querydescriptor.hxx26
-rw-r--r--dbaccess/source/core/api/resultcolumn.cxx48
-rw-r--r--dbaccess/source/core/api/resultcolumn.hxx6
-rw-r--r--dbaccess/source/core/api/resultset.cxx18
-rw-r--r--dbaccess/source/core/api/resultset.hxx22
-rw-r--r--dbaccess/source/core/api/statement.cxx20
-rw-r--r--dbaccess/source/core/api/table.cxx66
-rw-r--r--dbaccess/source/core/api/tablecontainer.cxx50
-rw-r--r--dbaccess/source/core/api/viewcontainer.cxx16
-rw-r--r--dbaccess/source/core/dataaccess/ComponentDefinition.cxx20
-rw-r--r--dbaccess/source/core/dataaccess/ComponentDefinition.hxx22
-rw-r--r--dbaccess/source/core/dataaccess/ContentHelper.cxx80
-rw-r--r--dbaccess/source/core/dataaccess/ModelImpl.cxx6
-rw-r--r--dbaccess/source/core/dataaccess/ModelImpl.hxx50
-rw-r--r--dbaccess/source/core/dataaccess/SharedConnection.cxx38
-rw-r--r--dbaccess/source/core/dataaccess/SharedConnection.hxx26
-rw-r--r--dbaccess/source/core/dataaccess/bookmarkcontainer.cxx10
-rw-r--r--dbaccess/source/core/dataaccess/bookmarkcontainer.hxx52
-rw-r--r--dbaccess/source/core/dataaccess/commandcontainer.cxx8
-rw-r--r--dbaccess/source/core/dataaccess/commandcontainer.hxx8
-rw-r--r--dbaccess/source/core/dataaccess/commanddefinition.cxx8
-rw-r--r--dbaccess/source/core/dataaccess/commanddefinition.hxx16
-rw-r--r--dbaccess/source/core/dataaccess/connection.cxx10
-rw-r--r--dbaccess/source/core/dataaccess/connection.hxx30
-rw-r--r--dbaccess/source/core/dataaccess/dataaccessdescriptor.cxx2
-rw-r--r--dbaccess/source/core/dataaccess/databasecontext.cxx18
-rw-r--r--dbaccess/source/core/dataaccess/databasecontext.hxx32
-rw-r--r--dbaccess/source/core/dataaccess/databasedocument.cxx8
-rw-r--r--dbaccess/source/core/dataaccess/databasedocument.hxx40
-rw-r--r--dbaccess/source/core/dataaccess/databaseregistrations.cxx14
-rw-r--r--dbaccess/source/core/dataaccess/databaseregistrations.hxx2
-rwxr-xr-xdbaccess/source/core/dataaccess/datasource.cxx64
-rw-r--r--dbaccess/source/core/dataaccess/datasource.hxx8
-rw-r--r--dbaccess/source/core/dataaccess/definitioncontainer.cxx16
-rw-r--r--dbaccess/source/core/dataaccess/documentcontainer.cxx34
-rw-r--r--dbaccess/source/core/dataaccess/documentcontainer.hxx28
-rw-r--r--dbaccess/source/core/dataaccess/documentdefinition.cxx43
-rw-r--r--dbaccess/source/core/dataaccess/documentdefinition.hxx26
-rw-r--r--dbaccess/source/core/dataaccess/documenteventexecutor.cxx6
-rw-r--r--dbaccess/source/core/dataaccess/documenteventexecutor.hxx2
-rw-r--r--dbaccess/source/core/dataaccess/documenteventnotifier.cxx6
-rw-r--r--dbaccess/source/core/dataaccess/documenteventnotifier.hxx2
-rw-r--r--dbaccess/source/core/dataaccess/documentevents.cxx12
-rw-r--r--dbaccess/source/core/dataaccess/documentevents.hxx2
-rw-r--r--dbaccess/source/core/dataaccess/intercept.cxx50
-rw-r--r--dbaccess/source/core/dataaccess/intercept.hxx86
-rw-r--r--dbaccess/source/core/dataaccess/myucp_datasupplier.cxx36
-rw-r--r--dbaccess/source/core/dataaccess/myucp_datasupplier.hxx2
-rw-r--r--dbaccess/source/core/dataaccess/myucp_resultset.cxx6
-rw-r--r--dbaccess/source/core/dataaccess/myucp_resultset.hxx2
-rw-r--r--dbaccess/source/core/inc/ContainerListener.hxx6
-rw-r--r--dbaccess/source/core/inc/ContainerMediator.hxx12
-rw-r--r--dbaccess/source/core/inc/ContentHelper.hxx60
-rw-r--r--dbaccess/source/core/inc/DatabaseDataProvider.hxx37
-rw-r--r--dbaccess/source/core/inc/FilteredContainer.hxx26
-rw-r--r--dbaccess/source/core/inc/PropertyForward.hxx12
-rw-r--r--dbaccess/source/core/inc/RefreshListener.hxx6
-rw-r--r--dbaccess/source/core/inc/SingleSelectQueryComposer.hxx66
-rw-r--r--dbaccess/source/core/inc/TableDeco.hxx34
-rw-r--r--dbaccess/source/core/inc/View.hxx2
-rw-r--r--dbaccess/source/core/inc/callablestatement.hxx2
-rw-r--r--dbaccess/source/core/inc/column.hxx36
-rw-r--r--dbaccess/source/core/inc/columnsettings.hxx36
-rw-r--r--dbaccess/source/core/inc/commandbase.hxx20
-rw-r--r--dbaccess/source/core/inc/composertools.hxx2
-rw-r--r--dbaccess/source/core/inc/containerapprove.hxx2
-rw-r--r--dbaccess/source/core/inc/core_resource.hrc112
-rw-r--r--dbaccess/source/core/inc/core_resource.hxx18
-rw-r--r--dbaccess/source/core/inc/datasettings.hxx38
-rw-r--r--dbaccess/source/core/inc/dbamiscres.hrc54
-rw-r--r--dbaccess/source/core/inc/definitioncolumn.hxx42
-rw-r--r--dbaccess/source/core/inc/definitioncontainer.hxx68
-rw-r--r--dbaccess/source/core/inc/module_dba.hxx2
-rw-r--r--dbaccess/source/core/inc/object.hxx2
-rw-r--r--dbaccess/source/core/inc/objectnameapproval.hxx4
-rw-r--r--dbaccess/source/core/inc/preparedstatement.hxx4
-rw-r--r--dbaccess/source/core/inc/querycomposer.hxx14
-rw-r--r--dbaccess/source/core/inc/querycontainer.hxx18
-rw-r--r--dbaccess/source/core/inc/recovery/dbdocrecovery.hxx2
-rw-r--r--dbaccess/source/core/inc/sdbcoretools.hxx4
-rw-r--r--dbaccess/source/core/inc/statement.hxx12
-rw-r--r--dbaccess/source/core/inc/table.hxx38
-rw-r--r--dbaccess/source/core/inc/tablecontainer.hxx28
-rw-r--r--dbaccess/source/core/inc/userinformation.hxx6
-rw-r--r--dbaccess/source/core/inc/veto.hxx2
-rw-r--r--dbaccess/source/core/inc/viewcontainer.hxx20
-rw-r--r--dbaccess/source/core/misc/ContainerListener.cxx14
-rw-r--r--dbaccess/source/core/misc/ContainerMediator.cxx20
-rw-r--r--dbaccess/source/core/misc/DatabaseDataProvider.cxx105
-rw-r--r--dbaccess/source/core/misc/PropertyForward.cxx10
-rw-r--r--dbaccess/source/core/misc/apitools.cxx4
-rw-r--r--dbaccess/source/core/misc/dbastrings.cxx2
-rw-r--r--dbaccess/source/core/misc/dsntypes.cxx36
-rw-r--r--dbaccess/source/core/misc/module_dba.cxx2
-rw-r--r--dbaccess/source/core/misc/objectnameapproval.cxx2
-rw-r--r--dbaccess/source/core/misc/sdbcoretools.cxx4
-rw-r--r--dbaccess/source/core/misc/services.cxx8
-rw-r--r--dbaccess/source/core/misc/userinformation.cxx2
-rw-r--r--dbaccess/source/core/misc/veto.cxx4
-rw-r--r--dbaccess/source/core/recovery/dbdocrecovery.cxx2
-rw-r--r--dbaccess/source/core/recovery/settingsimport.cxx2
-rw-r--r--dbaccess/source/core/recovery/settingsimport.hxx2
-rw-r--r--dbaccess/source/core/recovery/storagestream.cxx2
-rw-r--r--dbaccess/source/core/recovery/storagestream.hxx2
-rw-r--r--dbaccess/source/core/recovery/storagetextstream.cxx2
-rw-r--r--dbaccess/source/core/recovery/storagetextstream.hxx2
-rw-r--r--dbaccess/source/core/recovery/storagexmlstream.cxx2
-rw-r--r--dbaccess/source/core/recovery/storagexmlstream.hxx2
-rw-r--r--dbaccess/source/core/recovery/subcomponentloader.cxx8
-rw-r--r--dbaccess/source/core/recovery/subcomponentloader.hxx2
-rw-r--r--dbaccess/source/core/recovery/subcomponentrecovery.cxx16
-rw-r--r--dbaccess/source/core/recovery/subcomponentrecovery.hxx2
-rw-r--r--dbaccess/source/core/recovery/subcomponents.hxx2
-rw-r--r--dbaccess/source/core/resource/core_resource.cxx6
-rw-r--r--dbaccess/source/core/resource/strings.src4
-rw-r--r--dbaccess/source/ext/adabas/ANewDb.cxx30
-rw-r--r--dbaccess/source/ext/adabas/ANewDb.hxx18
-rw-r--r--dbaccess/source/ext/adabas/ASQLNameEdit.hxx6
-rw-r--r--dbaccess/source/ext/adabas/ASqlNameEdit.cxx10
-rw-r--r--dbaccess/source/ext/adabas/Acomponentmodule.cxx70
-rw-r--r--dbaccess/source/ext/adabas/Acomponentmodule.hxx54
-rw-r--r--dbaccess/source/ext/adabas/AdabasNewDb.cxx102
-rw-r--r--dbaccess/source/ext/adabas/AdabasNewDb.hrc72
-rw-r--r--dbaccess/source/ext/adabas/AdabasNewDb.hxx136
-rw-r--r--dbaccess/source/ext/adabas/AdabasNewDb.src186
-rw-r--r--dbaccess/source/ext/adabas/Aservices.cxx10
-rw-r--r--dbaccess/source/ext/adabas/Astringconstants.cxx2
-rw-r--r--dbaccess/source/ext/adabas/Astringconstants.hrc16
-rw-r--r--dbaccess/source/ext/adabas/adabasui_resource.hrc72
-rw-r--r--dbaccess/source/ext/adabas/adabasuistrings.cxx2
-rw-r--r--dbaccess/source/ext/adabas/adabasuistrings.hrc2
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_global.hrc10
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_module.cxx2
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_module.hxx2
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_services.cxx2
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_types.cxx2
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_types.hxx2
-rw-r--r--dbaccess/source/ext/macromigration/docinteraction.cxx2
-rw-r--r--dbaccess/source/ext/macromigration/docinteraction.hxx4
-rw-r--r--dbaccess/source/ext/macromigration/macromigration.hrc2
-rw-r--r--dbaccess/source/ext/macromigration/macromigration.src6
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationdialog.cxx4
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationdialog.hxx4
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationpages.cxx4
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationpages.hxx4
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationwizard.cxx6
-rw-r--r--dbaccess/source/ext/macromigration/migrationengine.cxx4
-rw-r--r--dbaccess/source/ext/macromigration/migrationengine.hxx2
-rw-r--r--dbaccess/source/ext/macromigration/migrationerror.hxx2
-rw-r--r--dbaccess/source/ext/macromigration/migrationlog.cxx2
-rw-r--r--dbaccess/source/ext/macromigration/migrationlog.hxx2
-rw-r--r--dbaccess/source/ext/macromigration/migrationprogress.hxx2
-rw-r--r--dbaccess/source/ext/macromigration/progresscapture.cxx10
-rw-r--r--dbaccess/source/ext/macromigration/progresscapture.hxx2
-rw-r--r--dbaccess/source/ext/macromigration/progressmixer.cxx2
-rw-r--r--dbaccess/source/ext/macromigration/progressmixer.hxx2
-rw-r--r--dbaccess/source/ext/macromigration/rangeprogressbar.hxx2
-rw-r--r--dbaccess/source/filter/migration/cfgimport.cxx70
-rw-r--r--dbaccess/source/filter/migration/cfgimport.hxx116
-rw-r--r--dbaccess/source/filter/migration/cfgservices.cxx10
-rw-r--r--dbaccess/source/filter/xml/dbloader2.cxx34
-rw-r--r--dbaccess/source/filter/xml/xmlAutoStyle.cxx8
-rw-r--r--dbaccess/source/filter/xml/xmlAutoStyle.hxx4
-rw-r--r--dbaccess/source/filter/xml/xmlColumn.cxx6
-rw-r--r--dbaccess/source/filter/xml/xmlColumn.hxx4
-rw-r--r--dbaccess/source/filter/xml/xmlComponent.cxx2
-rw-r--r--dbaccess/source/filter/xml/xmlComponent.hxx4
-rw-r--r--dbaccess/source/filter/xml/xmlConnectionData.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlConnectionData.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlConnectionResource.cxx2
-rw-r--r--dbaccess/source/filter/xml/xmlConnectionResource.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlDataSource.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlDataSource.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceInfo.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceInfo.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceSetting.cxx44
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceSetting.hxx6
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceSettings.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceSettings.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlDatabase.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlDatabase.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlDatabaseDescription.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlDatabaseDescription.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlDocuments.cxx6
-rw-r--r--dbaccess/source/filter/xml/xmlDocuments.hxx6
-rw-r--r--dbaccess/source/filter/xml/xmlEnums.hxx40
-rw-r--r--dbaccess/source/filter/xml/xmlExport.cxx28
-rw-r--r--dbaccess/source/filter/xml/xmlExport.hxx102
-rw-r--r--dbaccess/source/filter/xml/xmlFileBasedDatabase.cxx2
-rw-r--r--dbaccess/source/filter/xml/xmlFileBasedDatabase.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlHelper.cxx136
-rw-r--r--dbaccess/source/filter/xml/xmlHelper.hxx18
-rw-r--r--dbaccess/source/filter/xml/xmlHierarchyCollection.cxx14
-rw-r--r--dbaccess/source/filter/xml/xmlHierarchyCollection.hxx8
-rw-r--r--dbaccess/source/filter/xml/xmlLogin.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlLogin.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlQuery.cxx6
-rw-r--r--dbaccess/source/filter/xml/xmlQuery.hxx4
-rw-r--r--dbaccess/source/filter/xml/xmlServerDatabase.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlServerDatabase.hxx2
-rw-r--r--dbaccess/source/filter/xml/xmlStyleImport.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlStyleImport.hxx20
-rw-r--r--dbaccess/source/filter/xml/xmlTable.cxx12
-rw-r--r--dbaccess/source/filter/xml/xmlTable.hxx14
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterList.cxx4
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterList.hxx6
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterPattern.cxx2
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterPattern.hxx8
-rw-r--r--dbaccess/source/filter/xml/xmlfilter.cxx210
-rw-r--r--dbaccess/source/filter/xml/xmlfilter.hxx52
-rw-r--r--dbaccess/source/filter/xml/xmlservices.cxx10
-rwxr-xr-xdbaccess/source/inc/OAuthenticationContinuation.hxx4
-rw-r--r--dbaccess/source/inc/apitools.hxx488
-rw-r--r--dbaccess/source/inc/cfg_reghelper.hxx2
-rw-r--r--dbaccess/source/inc/cfgstrings.hrc2
-rw-r--r--dbaccess/source/inc/constasciistring.hxx10
-rw-r--r--dbaccess/source/inc/dbadllapi.hxx2
-rw-r--r--dbaccess/source/inc/dbastrings.hrc4
-rw-r--r--dbaccess/source/inc/dbu_reghelper.hxx2
-rw-r--r--dbaccess/source/inc/dbustrings.hrc4
-rw-r--r--dbaccess/source/inc/dsntypes.hxx42
-rw-r--r--dbaccess/source/inc/flt_reghelper.hxx2
-rw-r--r--dbaccess/source/inc/registrationhelper.hxx34
-rw-r--r--dbaccess/source/inc/sdbtstrings.hrc2
-rw-r--r--dbaccess/source/inc/stringconstants.hrc254
-rw-r--r--dbaccess/source/inc/xmlstrings.hrc2
-rw-r--r--dbaccess/source/sdbtools/connection/connectiondependent.hxx4
-rw-r--r--dbaccess/source/sdbtools/connection/connectiontools.cxx16
-rw-r--r--dbaccess/source/sdbtools/connection/connectiontools.hxx2
-rw-r--r--dbaccess/source/sdbtools/connection/datasourcemetadata.cxx2
-rw-r--r--dbaccess/source/sdbtools/connection/datasourcemetadata.hxx2
-rw-r--r--dbaccess/source/sdbtools/connection/objectnames.cxx12
-rw-r--r--dbaccess/source/sdbtools/connection/objectnames.hxx2
-rw-r--r--dbaccess/source/sdbtools/connection/tablename.cxx24
-rw-r--r--dbaccess/source/sdbtools/connection/tablename.hxx2
-rw-r--r--dbaccess/source/sdbtools/inc/module_sdbt.hxx2
-rw-r--r--dbaccess/source/sdbtools/inc/sdbt_resource.hrc4
-rw-r--r--dbaccess/source/sdbtools/misc/module_sdbt.cxx2
-rw-r--r--dbaccess/source/sdbtools/misc/sdbt_services.cxx10
-rw-r--r--dbaccess/source/sdbtools/resource/sdbt_strings.src2
-rw-r--r--dbaccess/source/shared/cfg_reghelper.cxx2
-rw-r--r--dbaccess/source/shared/cfgstrings.cxx4
-rw-r--r--dbaccess/source/shared/dbu_reghelper.cxx2
-rw-r--r--dbaccess/source/shared/dbustrings.cxx12
-rw-r--r--dbaccess/source/shared/flt_reghelper.cxx2
-rw-r--r--dbaccess/source/shared/registrationhelper.cxx34
-rw-r--r--dbaccess/source/shared/sdbtstrings.cxx2
-rw-r--r--dbaccess/source/shared/xmlstrings.cxx2
-rw-r--r--dbaccess/source/ui/app/AppController.cxx48
-rw-r--r--dbaccess/source/ui/app/AppController.hxx114
-rw-r--r--dbaccess/source/ui/app/AppControllerDnD.cxx20
-rw-r--r--dbaccess/source/ui/app/AppControllerGen.cxx18
-rw-r--r--dbaccess/source/ui/app/AppDetailPageHelper.cxx2
-rw-r--r--dbaccess/source/ui/app/AppDetailPageHelper.hxx124
-rw-r--r--dbaccess/source/ui/app/AppDetailView.cxx60
-rw-r--r--dbaccess/source/ui/app/AppDetailView.hxx94
-rw-r--r--dbaccess/source/ui/app/AppIconControl.cxx12
-rw-r--r--dbaccess/source/ui/app/AppIconControl.hxx16
-rw-r--r--dbaccess/source/ui/app/AppSwapWindow.cxx12
-rw-r--r--dbaccess/source/ui/app/AppSwapWindow.hxx32
-rw-r--r--dbaccess/source/ui/app/AppTitleWindow.cxx24
-rw-r--r--dbaccess/source/ui/app/AppTitleWindow.hxx22
-rw-r--r--dbaccess/source/ui/app/AppView.cxx12
-rw-r--r--dbaccess/source/ui/app/AppView.hxx84
-rw-r--r--dbaccess/source/ui/app/IApplicationController.hxx8
-rw-r--r--dbaccess/source/ui/app/app.src4
-rw-r--r--dbaccess/source/ui/app/dbu_app.hrc70
-rw-r--r--dbaccess/source/ui/app/subcomponentmanager.cxx2
-rw-r--r--dbaccess/source/ui/app/subcomponentmanager.hxx2
-rw-r--r--dbaccess/source/ui/browser/AsyncronousLink.cxx4
-rw-r--r--dbaccess/source/ui/browser/bcommon.src2
-rw-r--r--dbaccess/source/ui/browser/brwctrlr.cxx154
-rw-r--r--dbaccess/source/ui/browser/brwview.cxx38
-rw-r--r--dbaccess/source/ui/browser/dataview.cxx18
-rw-r--r--dbaccess/source/ui/browser/dbexchange.cxx26
-rw-r--r--dbaccess/source/ui/browser/dbloader.cxx36
-rw-r--r--dbaccess/source/ui/browser/dbtreemodel.cxx2
-rw-r--r--dbaccess/source/ui/browser/dbtreemodel.hxx14
-rw-r--r--dbaccess/source/ui/browser/dbtreeview.cxx12
-rw-r--r--dbaccess/source/ui/browser/dbtreeview.hxx18
-rw-r--r--dbaccess/source/ui/browser/dsEntriesNoExp.cxx14
-rw-r--r--dbaccess/source/ui/browser/dsbrowserDnD.cxx26
-rw-r--r--dbaccess/source/ui/browser/exsrcbrw.cxx40
-rw-r--r--dbaccess/source/ui/browser/formadapter.cxx14
-rw-r--r--dbaccess/source/ui/browser/genericcontroller.cxx48
-rw-r--r--dbaccess/source/ui/browser/sbabrw.src60
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx206
-rw-r--r--dbaccess/source/ui/browser/sbagrid.src2
-rw-r--r--dbaccess/source/ui/browser/sbamultiplex.cxx4
-rw-r--r--dbaccess/source/ui/browser/unodatbr.cxx236
-rw-r--r--dbaccess/source/ui/control/ColumnControlWindow.cxx12
-rw-r--r--dbaccess/source/ui/control/FieldDescControl.cxx98
-rw-r--r--dbaccess/source/ui/control/RelationControl.cxx88
-rw-r--r--dbaccess/source/ui/control/ScrollHelper.cxx6
-rw-r--r--dbaccess/source/ui/control/SqlNameEdit.cxx12
-rw-r--r--dbaccess/source/ui/control/TableGrantCtrl.cxx46
-rw-r--r--dbaccess/source/ui/control/TableGrantCtrl.src2
-rw-r--r--dbaccess/source/ui/control/VertSplitView.cxx38
-rw-r--r--dbaccess/source/ui/control/charsetlistbox.cxx2
-rw-r--r--dbaccess/source/ui/control/curledit.cxx8
-rw-r--r--dbaccess/source/ui/control/dbtreelistbox.cxx26
-rw-r--r--dbaccess/source/ui/control/listviewitems.cxx4
-rw-r--r--dbaccess/source/ui/control/marktree.cxx14
-rw-r--r--dbaccess/source/ui/control/opendoccontrols.cxx2
-rw-r--r--dbaccess/source/ui/control/sqledit.cxx4
-rw-r--r--dbaccess/source/ui/control/statusbarontroller.cxx2
-rw-r--r--dbaccess/source/ui/control/tabletree.cxx10
-rw-r--r--dbaccess/source/ui/control/tabletree.hrc6
-rw-r--r--dbaccess/source/ui/control/tabletree.src2
-rw-r--r--dbaccess/source/ui/control/toolboxcontroller.cxx4
-rw-r--r--dbaccess/source/ui/control/undosqledit.cxx2
-rw-r--r--dbaccess/source/ui/control/undosqledit.src2
-rw-r--r--dbaccess/source/ui/dlg/AdabasPage.hrc24
-rw-r--r--dbaccess/source/ui/dlg/AdabasStat.cxx38
-rw-r--r--dbaccess/source/ui/dlg/AdabasStat.hrc28
-rw-r--r--dbaccess/source/ui/dlg/AdabasStat.hxx34
-rw-r--r--dbaccess/source/ui/dlg/AdabasStat.src112
-rw-r--r--dbaccess/source/ui/dlg/AutoControls.src4
-rw-r--r--dbaccess/source/ui/dlg/AutoControls_tmpl.hrc160
-rw-r--r--dbaccess/source/ui/dlg/CollectionView.cxx28
-rw-r--r--dbaccess/source/ui/dlg/CollectionView.hrc24
-rw-r--r--dbaccess/source/ui/dlg/CollectionView.src40
-rw-r--r--dbaccess/source/ui/dlg/ConnectionHelper.cxx44
-rw-r--r--dbaccess/source/ui/dlg/ConnectionHelper.hxx56
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPage.cxx6
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPage.hrc2
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPage.hxx34
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPage.src2
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPageSetup.cxx28
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPageSetup.hxx32
-rw-r--r--dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx72
-rw-r--r--dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx86
-rwxr-xr-xdbaccess/source/ui/dlg/DbAdminImpl.cxx80
-rw-r--r--dbaccess/source/ui/dlg/DbAdminImpl.hxx56
-rw-r--r--dbaccess/source/ui/dlg/DriverSettings.cxx2
-rw-r--r--dbaccess/source/ui/dlg/DriverSettings.hxx34
-rw-r--r--dbaccess/source/ui/dlg/ExtensionNotPresent.cxx24
-rw-r--r--dbaccess/source/ui/dlg/ExtensionNotPresent.hrc24
-rw-r--r--dbaccess/source/ui/dlg/ExtensionNotPresent.src12
-rw-r--r--dbaccess/source/ui/dlg/RelationDlg.cxx20
-rw-r--r--dbaccess/source/ui/dlg/RelationDlg.hrc22
-rw-r--r--dbaccess/source/ui/dlg/RelationDlg.src6
-rw-r--r--dbaccess/source/ui/dlg/TablesSingleDlg.cxx4
-rw-r--r--dbaccess/source/ui/dlg/TextConnectionHelper.cxx58
-rw-r--r--dbaccess/source/ui/dlg/TextConnectionHelper.hxx40
-rw-r--r--dbaccess/source/ui/dlg/UserAdmin.cxx64
-rw-r--r--dbaccess/source/ui/dlg/UserAdmin.hrc42
-rw-r--r--dbaccess/source/ui/dlg/UserAdmin.hxx40
-rw-r--r--dbaccess/source/ui/dlg/UserAdmin.src92
-rw-r--r--dbaccess/source/ui/dlg/UserAdminDlg.cxx6
-rw-r--r--dbaccess/source/ui/dlg/UserAdminDlg.hrc4
-rw-r--r--dbaccess/source/ui/dlg/UserAdminDlg.src8
-rwxr-xr-xdbaccess/source/ui/dlg/admincontrols.cxx22
-rwxr-xr-xdbaccess/source/ui/dlg/admincontrols.hrc2
-rwxr-xr-xdbaccess/source/ui/dlg/admincontrols.hxx10
-rwxr-xr-xdbaccess/source/ui/dlg/admincontrols.src12
-rw-r--r--dbaccess/source/ui/dlg/adminpages.cxx12
-rw-r--r--dbaccess/source/ui/dlg/adminpages.hxx78
-rw-r--r--dbaccess/source/ui/dlg/adodatalinks.cxx40
-rw-r--r--dbaccess/source/ui/dlg/adodatalinks.hxx2
-rw-r--r--dbaccess/source/ui/dlg/adtabdlg.cxx22
-rw-r--r--dbaccess/source/ui/dlg/adtabdlg.hrc12
-rw-r--r--dbaccess/source/ui/dlg/adtabdlg.src2
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.cxx6
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.hrc42
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.hxx6
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.src30
-rw-r--r--dbaccess/source/ui/dlg/dbadmin.cxx20
-rw-r--r--dbaccess/source/ui/dlg/dbadmin.hrc10
-rw-r--r--dbaccess/source/ui/dlg/dbadmin.src116
-rw-r--r--dbaccess/source/ui/dlg/dbadmin2.src24
-rw-r--r--dbaccess/source/ui/dlg/dbadminsetup.hrc88
-rw-r--r--dbaccess/source/ui/dlg/dbadminsetup.src26
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.cxx52
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.hrc18
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.hxx52
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.src10
-rw-r--r--dbaccess/source/ui/dlg/dbwiz.cxx22
-rw-r--r--dbaccess/source/ui/dlg/dbwizsetup.cxx20
-rw-r--r--dbaccess/source/ui/dlg/detailpages.cxx136
-rw-r--r--dbaccess/source/ui/dlg/detailpages.hxx202
-rw-r--r--dbaccess/source/ui/dlg/directsql.cxx36
-rw-r--r--dbaccess/source/ui/dlg/directsql.hrc24
-rw-r--r--dbaccess/source/ui/dlg/directsql.src22
-rw-r--r--dbaccess/source/ui/dlg/dlgattr.cxx10
-rw-r--r--dbaccess/source/ui/dlg/dlgattr.src2
-rw-r--r--dbaccess/source/ui/dlg/dlgsave.cxx64
-rw-r--r--dbaccess/source/ui/dlg/dlgsave.hrc32
-rw-r--r--dbaccess/source/ui/dlg/dlgsave.src14
-rw-r--r--dbaccess/source/ui/dlg/dlgsize.cxx14
-rw-r--r--dbaccess/source/ui/dlg/dlgsize.hrc14
-rw-r--r--dbaccess/source/ui/dlg/dlgsize.src6
-rw-r--r--dbaccess/source/ui/dlg/dsnItem.hxx12
-rw-r--r--dbaccess/source/ui/dlg/dsselect.cxx30
-rw-r--r--dbaccess/source/ui/dlg/dsselect.hrc20
-rw-r--r--dbaccess/source/ui/dlg/dsselect.hxx26
-rw-r--r--dbaccess/source/ui/dlg/dsselect.src4
-rw-r--r--dbaccess/source/ui/dlg/finteraction.cxx4
-rw-r--r--dbaccess/source/ui/dlg/finteraction.hxx16
-rw-r--r--dbaccess/source/ui/dlg/generalpage.cxx30
-rw-r--r--dbaccess/source/ui/dlg/generalpage.hxx54
-rw-r--r--dbaccess/source/ui/dlg/indexdialog.cxx86
-rw-r--r--dbaccess/source/ui/dlg/indexdialog.hrc22
-rw-r--r--dbaccess/source/ui/dlg/indexdialog.src14
-rw-r--r--dbaccess/source/ui/dlg/indexfieldscontrol.cxx30
-rw-r--r--dbaccess/source/ui/dlg/odbcconfig.cxx40
-rw-r--r--dbaccess/source/ui/dlg/odbcconfig.hxx24
-rw-r--r--dbaccess/source/ui/dlg/optionalboolitem.cxx2
-rw-r--r--dbaccess/source/ui/dlg/optionalboolitem.hxx6
-rw-r--r--dbaccess/source/ui/dlg/paramdialog.cxx70
-rw-r--r--dbaccess/source/ui/dlg/paramdialog.hrc24
-rw-r--r--dbaccess/source/ui/dlg/paramdialog.src6
-rw-r--r--dbaccess/source/ui/dlg/queryfilter.cxx70
-rw-r--r--dbaccess/source/ui/dlg/queryfilter.hrc44
-rw-r--r--dbaccess/source/ui/dlg/queryfilter.src14
-rw-r--r--dbaccess/source/ui/dlg/queryorder.cxx42
-rw-r--r--dbaccess/source/ui/dlg/queryorder.hrc32
-rw-r--r--dbaccess/source/ui/dlg/queryorder.src2
-rw-r--r--dbaccess/source/ui/dlg/sqlmessage.cxx34
-rw-r--r--dbaccess/source/ui/dlg/sqlmessage.hrc22
-rw-r--r--dbaccess/source/ui/dlg/sqlmessage.src2
-rw-r--r--dbaccess/source/ui/dlg/tablespage.cxx72
-rw-r--r--dbaccess/source/ui/dlg/tablespage.hxx34
-rw-r--r--dbaccess/source/ui/dlg/textconnectionsettings.cxx2
-rw-r--r--dbaccess/source/ui/dlg/textconnectionsettings.src2
-rw-r--r--dbaccess/source/ui/imagelists/dbimagelists.src2
-rw-r--r--dbaccess/source/ui/inc/AccessibleBaseIFace.hxx16
-rw-r--r--dbaccess/source/ui/inc/AppElementType.hxx18
-rw-r--r--dbaccess/source/ui/inc/CollectionView.hxx40
-rw-r--r--dbaccess/source/ui/inc/ColumnControlWindow.hxx38
-rw-r--r--dbaccess/source/ui/inc/ConnectionLine.hxx48
-rw-r--r--dbaccess/source/ui/inc/ConnectionLineAccess.hxx12
-rw-r--r--dbaccess/source/ui/inc/ConnectionLineData.hxx34
-rw-r--r--dbaccess/source/ui/inc/DExport.hxx98
-rw-r--r--dbaccess/source/ui/inc/ExtensionNotPresent.hxx12
-rw-r--r--dbaccess/source/ui/inc/FieldControls.hxx32
-rw-r--r--dbaccess/source/ui/inc/FieldDescControl.hxx220
-rw-r--r--dbaccess/source/ui/inc/FieldDescriptions.hxx112
-rw-r--r--dbaccess/source/ui/inc/GeneralUndo.hxx10
-rw-r--r--dbaccess/source/ui/inc/HtmlReader.hxx34
-rw-r--r--dbaccess/source/ui/inc/IClipBoardTest.hxx16
-rw-r--r--dbaccess/source/ui/inc/IItemSetHelper.hxx6
-rw-r--r--dbaccess/source/ui/inc/IUpdateHelper.hxx2
-rw-r--r--dbaccess/source/ui/inc/JAccess.hxx16
-rw-r--r--dbaccess/source/ui/inc/JoinController.hxx32
-rw-r--r--dbaccess/source/ui/inc/JoinDesignView.hxx12
-rw-r--r--dbaccess/source/ui/inc/JoinExchange.hxx22
-rw-r--r--dbaccess/source/ui/inc/JoinTableView.hxx126
-rw-r--r--dbaccess/source/ui/inc/QEnumTypes.hxx40
-rw-r--r--dbaccess/source/ui/inc/QueryDesignView.hxx28
-rw-r--r--dbaccess/source/ui/inc/QueryTableView.hxx26
-rw-r--r--dbaccess/source/ui/inc/QueryTextView.hxx6
-rw-r--r--dbaccess/source/ui/inc/QueryViewSwitch.hxx18
-rw-r--r--dbaccess/source/ui/inc/RTableConnectionData.hxx38
-rw-r--r--dbaccess/source/ui/inc/RefFunctor.hxx10
-rw-r--r--dbaccess/source/ui/inc/RelControliFace.hxx6
-rw-r--r--dbaccess/source/ui/inc/RelationControl.hrc2
-rw-r--r--dbaccess/source/ui/inc/RelationControl.hxx32
-rw-r--r--dbaccess/source/ui/inc/RelationController.hxx22
-rw-r--r--dbaccess/source/ui/inc/RelationDesignView.hxx6
-rw-r--r--dbaccess/source/ui/inc/RelationDlg.hxx26
-rw-r--r--dbaccess/source/ui/inc/RelationTableView.hxx10
-rw-r--r--dbaccess/source/ui/inc/RtfReader.hxx20
-rw-r--r--dbaccess/source/ui/inc/ScrollHelper.hxx20
-rw-r--r--dbaccess/source/ui/inc/SqlNameEdit.hxx30
-rw-r--r--dbaccess/source/ui/inc/TableConnection.hxx40
-rw-r--r--dbaccess/source/ui/inc/TableConnectionData.hxx18
-rw-r--r--dbaccess/source/ui/inc/TableController.hxx92
-rw-r--r--dbaccess/source/ui/inc/TableCopyHelper.hxx58
-rw-r--r--dbaccess/source/ui/inc/TableDesignControl.hxx40
-rw-r--r--dbaccess/source/ui/inc/TableDesignHelpBar.hxx12
-rw-r--r--dbaccess/source/ui/inc/TableDesignView.hxx40
-rw-r--r--dbaccess/source/ui/inc/TableFieldDescription.hxx152
-rw-r--r--dbaccess/source/ui/inc/TableGrantCtrl.hxx30
-rw-r--r--dbaccess/source/ui/inc/TableRow.hxx24
-rw-r--r--dbaccess/source/ui/inc/TableRowExchange.hxx12
-rw-r--r--dbaccess/source/ui/inc/TableWindow.hxx106
-rw-r--r--dbaccess/source/ui/inc/TableWindowAccess.hxx14
-rw-r--r--dbaccess/source/ui/inc/TableWindowData.hxx46
-rw-r--r--dbaccess/source/ui/inc/TableWindowListBox.hxx36
-rw-r--r--dbaccess/source/ui/inc/TableWindowTitle.hxx6
-rw-r--r--dbaccess/source/ui/inc/TablesSingleDlg.hxx20
-rw-r--r--dbaccess/source/ui/inc/TokenWriter.hxx92
-rw-r--r--dbaccess/source/ui/inc/TypeInfo.hxx130
-rw-r--r--dbaccess/source/ui/inc/UITools.hxx160
-rw-r--r--dbaccess/source/ui/inc/UserAdminDlg.hxx16
-rw-r--r--dbaccess/source/ui/inc/VertSplitView.hxx12
-rw-r--r--dbaccess/source/ui/inc/WCPage.hxx46
-rw-r--r--dbaccess/source/ui/inc/WColumnSelect.hxx36
-rw-r--r--dbaccess/source/ui/inc/WCopyTable.hxx136
-rw-r--r--dbaccess/source/ui/inc/WExtendPages.hxx8
-rw-r--r--dbaccess/source/ui/inc/WNameMatch.hxx28
-rw-r--r--dbaccess/source/ui/inc/WTabPage.hxx18
-rw-r--r--dbaccess/source/ui/inc/WTypeSelect.hxx66
-rw-r--r--dbaccess/source/ui/inc/adtabdlg.hxx10
-rw-r--r--dbaccess/source/ui/inc/advancedsettingsdlg.hxx10
-rw-r--r--dbaccess/source/ui/inc/asyncmodaldialog.hxx2
-rw-r--r--dbaccess/source/ui/inc/browserids.hxx140
-rw-r--r--dbaccess/source/ui/inc/brwctrlr.hxx108
-rw-r--r--dbaccess/source/ui/inc/brwview.hxx34
-rw-r--r--dbaccess/source/ui/inc/callbacks.hxx12
-rw-r--r--dbaccess/source/ui/inc/charsetlistbox.hxx4
-rw-r--r--dbaccess/source/ui/inc/charsets.hxx38
-rw-r--r--dbaccess/source/ui/inc/commontypes.hxx6
-rw-r--r--dbaccess/source/ui/inc/curledit.hxx26
-rw-r--r--dbaccess/source/ui/inc/databaseobjectview.hxx16
-rw-r--r--dbaccess/source/ui/inc/datasourceconnector.hxx12
-rw-r--r--dbaccess/source/ui/inc/datasourcemap.hxx100
-rw-r--r--dbaccess/source/ui/inc/dbadmin.hxx34
-rw-r--r--dbaccess/source/ui/inc/dbexchange.hxx28
-rw-r--r--dbaccess/source/ui/inc/dbtreelistbox.hxx100
-rw-r--r--dbaccess/source/ui/inc/dbu_brw.hrc42
-rw-r--r--dbaccess/source/ui/inc/dbu_control.hrc30
-rw-r--r--dbaccess/source/ui/inc/dbu_dlg.hrc132
-rw-r--r--dbaccess/source/ui/inc/dbu_misc.hrc26
-rw-r--r--dbaccess/source/ui/inc/dbu_qry.hrc90
-rw-r--r--dbaccess/source/ui/inc/dbu_rel.hrc16
-rw-r--r--dbaccess/source/ui/inc/dbu_resource.hrc510
-rw-r--r--dbaccess/source/ui/inc/dbu_tbl.hrc102
-rw-r--r--dbaccess/source/ui/inc/dbu_uno.hrc10
-rw-r--r--dbaccess/source/ui/inc/dbwiz.hxx38
-rw-r--r--dbaccess/source/ui/inc/dbwizsetup.hxx38
-rw-r--r--dbaccess/source/ui/inc/defaultobjectnamecheck.hxx2
-rw-r--r--dbaccess/source/ui/inc/directsql.hxx66
-rw-r--r--dbaccess/source/ui/inc/dlgattr.hrc10
-rw-r--r--dbaccess/source/ui/inc/dlgattr.hxx4
-rw-r--r--dbaccess/source/ui/inc/dlgsave.hxx18
-rw-r--r--dbaccess/source/ui/inc/dlgsize.hxx20
-rw-r--r--dbaccess/source/ui/inc/dsitems.hxx106
-rw-r--r--dbaccess/source/ui/inc/dsmeta.hxx2
-rw-r--r--dbaccess/source/ui/inc/exsrcbrw.hxx14
-rw-r--r--dbaccess/source/ui/inc/formadapter.hxx132
-rw-r--r--dbaccess/source/ui/inc/imageprovider.hxx2
-rw-r--r--dbaccess/source/ui/inc/indexcollection.hxx16
-rw-r--r--dbaccess/source/ui/inc/indexdialog.hxx48
-rw-r--r--dbaccess/source/ui/inc/indexes.hxx38
-rw-r--r--dbaccess/source/ui/inc/indexfieldscontrol.hxx32
-rw-r--r--dbaccess/source/ui/inc/linkeddocuments.hxx12
-rw-r--r--dbaccess/source/ui/inc/listviewitems.hxx14
-rw-r--r--dbaccess/source/ui/inc/localresaccess.hxx6
-rw-r--r--dbaccess/source/ui/inc/marktree.hxx14
-rw-r--r--dbaccess/source/ui/inc/moduledbu.hxx22
-rw-r--r--dbaccess/source/ui/inc/objectnamecheck.hxx4
-rw-r--r--dbaccess/source/ui/inc/opendoccontrols.hxx2
-rw-r--r--dbaccess/source/ui/inc/paramdialog.hxx26
-rw-r--r--dbaccess/source/ui/inc/propertysetitem.hxx10
-rw-r--r--dbaccess/source/ui/inc/propertystorage.hxx2
-rw-r--r--dbaccess/source/ui/inc/querycontainerwindow.hxx58
-rw-r--r--dbaccess/source/ui/inc/querycontroller.hxx82
-rw-r--r--dbaccess/source/ui/inc/queryfilter.hxx70
-rw-r--r--dbaccess/source/ui/inc/queryorder.hxx54
-rw-r--r--dbaccess/source/ui/inc/queryview.hxx14
-rw-r--r--dbaccess/source/ui/inc/sbagrid.hrc106
-rw-r--r--dbaccess/source/ui/inc/sbagrid.hxx68
-rw-r--r--dbaccess/source/ui/inc/sbamultiplex.hxx450
-rw-r--r--dbaccess/source/ui/inc/sqledit.hxx20
-rw-r--r--dbaccess/source/ui/inc/sqlmessage.hxx18
-rw-r--r--dbaccess/source/ui/inc/statusbarontroller.hxx4
-rw-r--r--dbaccess/source/ui/inc/stringlistitem.hxx12
-rw-r--r--dbaccess/source/ui/inc/tabletree.hxx42
-rw-r--r--dbaccess/source/ui/inc/textconnectionsettings.hxx4
-rw-r--r--dbaccess/source/ui/inc/toolbox_tmpl.hrc48
-rw-r--r--dbaccess/source/ui/inc/toolboxcontroller.hxx10
-rw-r--r--dbaccess/source/ui/inc/undosqledit.hxx10
-rw-r--r--dbaccess/source/ui/inc/unoadmin.hxx16
-rw-r--r--dbaccess/source/ui/inc/unodatbr.hxx104
-rw-r--r--dbaccess/source/ui/inc/unosqlmessage.hxx8
-rw-r--r--dbaccess/source/ui/misc/DExport.cxx84
-rw-r--r--dbaccess/source/ui/misc/HtmlReader.cxx52
-rw-r--r--dbaccess/source/ui/misc/ModuleHelper.cxx4
-rw-r--r--dbaccess/source/ui/misc/RowSetDrop.cxx22
-rw-r--r--dbaccess/source/ui/misc/RtfReader.cxx28
-rw-r--r--dbaccess/source/ui/misc/TableCopyHelper.cxx26
-rw-r--r--dbaccess/source/ui/misc/TokenWriter.cxx166
-rw-r--r--dbaccess/source/ui/misc/ToolBoxHelper.cxx22
-rw-r--r--dbaccess/source/ui/misc/UITools.cxx188
-rw-r--r--dbaccess/source/ui/misc/UpdateHelperImpl.hxx6
-rw-r--r--dbaccess/source/ui/misc/WCPage.cxx62
-rw-r--r--dbaccess/source/ui/misc/WColumnSelect.cxx28
-rw-r--r--dbaccess/source/ui/misc/WCopyTable.cxx48
-rw-r--r--dbaccess/source/ui/misc/WExtendPages.cxx2
-rw-r--r--dbaccess/source/ui/misc/WNameMatch.cxx68
-rw-r--r--dbaccess/source/ui/misc/WTypeSelect.cxx28
-rw-r--r--dbaccess/source/ui/misc/WizardPages.hrc56
-rw-r--r--dbaccess/source/ui/misc/WizardPages.src214
-rw-r--r--dbaccess/source/ui/misc/asyncmodaldialog.cxx2
-rw-r--r--dbaccess/source/ui/misc/charsets.cxx10
-rw-r--r--dbaccess/source/ui/misc/controllerframe.cxx16
-rw-r--r--dbaccess/source/ui/misc/databaseobjectview.cxx10
-rw-r--r--dbaccess/source/ui/misc/datasourceconnector.cxx20
-rw-r--r--dbaccess/source/ui/misc/dbumiscres.hrc54
-rw-r--r--dbaccess/source/ui/misc/dbumiscres.src6
-rw-r--r--dbaccess/source/ui/misc/defaultobjectnamecheck.cxx2
-rw-r--r--dbaccess/source/ui/misc/dsmeta.cxx4
-rw-r--r--dbaccess/source/ui/misc/imageprovider.cxx2
-rw-r--r--dbaccess/source/ui/misc/indexcollection.cxx26
-rw-r--r--dbaccess/source/ui/misc/linkeddocuments.cxx64
-rw-r--r--dbaccess/source/ui/misc/moduledbu.cxx24
-rw-r--r--dbaccess/source/ui/misc/propertysetitem.cxx4
-rw-r--r--dbaccess/source/ui/misc/propertystorage.cxx2
-rw-r--r--dbaccess/source/ui/misc/singledoccontroller.cxx44
-rw-r--r--dbaccess/source/ui/misc/stringlistitem.cxx4
-rw-r--r--dbaccess/source/ui/misc/uiservices.cxx6
-rw-r--r--dbaccess/source/ui/querydesign/ConnectionData.hxx14
-rw-r--r--dbaccess/source/ui/querydesign/ConnectionLine.cxx60
-rw-r--r--dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx14
-rw-r--r--dbaccess/source/ui/querydesign/ConnectionLineData.cxx4
-rw-r--r--dbaccess/source/ui/querydesign/JAccess.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/JoinController.cxx24
-rw-r--r--dbaccess/source/ui/querydesign/JoinDesignView.cxx8
-rw-r--r--dbaccess/source/ui/querydesign/JoinExchange.cxx8
-rw-r--r--dbaccess/source/ui/querydesign/JoinTableView.cxx72
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnection.cxx8
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnection.hxx10
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnectionData.cxx6
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnectionData.hxx30
-rw-r--r--dbaccess/source/ui/querydesign/QTableWindow.cxx6
-rw-r--r--dbaccess/source/ui/querydesign/QTableWindow.hxx40
-rw-r--r--dbaccess/source/ui/querydesign/QTableWindowData.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/QTableWindowData.hxx2
-rw-r--r--dbaccess/source/ui/querydesign/Query.hrc6
-rw-r--r--dbaccess/source/ui/querydesign/QueryAddTabConnUndoAction.hxx2
-rw-r--r--dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx38
-rw-r--r--dbaccess/source/ui/querydesign/QueryDesignUndoAction.hxx4
-rw-r--r--dbaccess/source/ui/querydesign/QueryDesignView.cxx318
-rw-r--r--dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.hxx10
-rw-r--r--dbaccess/source/ui/querydesign/QuerySizeTabWinUndoAct.hxx12
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabConnUndoAction.cxx92
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx6
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabWinShowUndoAct.hxx10
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabWinUndoAct.cxx28
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabWinUndoAct.hxx16
-rw-r--r--dbaccess/source/ui/querydesign/QueryTableView.cxx90
-rw-r--r--dbaccess/source/ui/querydesign/QueryTextView.cxx14
-rw-r--r--dbaccess/source/ui/querydesign/QueryViewSwitch.cxx30
-rw-r--r--dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx246
-rw-r--r--dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx340
-rw-r--r--dbaccess/source/ui/querydesign/TableConnection.cxx4
-rw-r--r--dbaccess/source/ui/querydesign/TableConnectionData.cxx12
-rw-r--r--dbaccess/source/ui/querydesign/TableFieldDescription.cxx30
-rw-r--r--dbaccess/source/ui/querydesign/TableFieldInfo.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/TableFieldInfo.hxx14
-rw-r--r--dbaccess/source/ui/querydesign/TableWindow.cxx46
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowAccess.cxx18
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowData.cxx4
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowListBox.cxx30
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowTitle.cxx14
-rw-r--r--dbaccess/source/ui/querydesign/query.src2
-rw-r--r--dbaccess/source/ui/querydesign/querycontainerwindow.cxx28
-rw-r--r--dbaccess/source/ui/querydesign/querycontroller.cxx36
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.cxx38
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.hrc16
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.hxx32
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.src8
-rw-r--r--dbaccess/source/ui/querydesign/queryview.cxx2
-rw-r--r--dbaccess/source/ui/relationdesign/RTableConnection.cxx10
-rw-r--r--dbaccess/source/ui/relationdesign/RTableConnection.hxx4
-rw-r--r--dbaccess/source/ui/relationdesign/RTableConnectionData.cxx34
-rw-r--r--dbaccess/source/ui/relationdesign/RTableWindow.hxx8
-rw-r--r--dbaccess/source/ui/relationdesign/RelationController.cxx64
-rw-r--r--dbaccess/source/ui/relationdesign/RelationDesignView.cxx8
-rw-r--r--dbaccess/source/ui/relationdesign/RelationTableView.cxx30
-rw-r--r--dbaccess/source/ui/relationdesign/relation.src2
-rw-r--r--dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx4
-rw-r--r--dbaccess/source/ui/tabledesign/FieldDescGenWin.hxx10
-rw-r--r--dbaccess/source/ui/tabledesign/FieldDescriptions.cxx50
-rw-r--r--dbaccess/source/ui/tabledesign/TEditControl.cxx100
-rw-r--r--dbaccess/source/ui/tabledesign/TEditControl.hxx82
-rw-r--r--dbaccess/source/ui/tabledesign/TableController.cxx242
-rw-r--r--dbaccess/source/ui/tabledesign/TableDesignControl.cxx8
-rw-r--r--dbaccess/source/ui/tabledesign/TableDesignHelpBar.cxx6
-rw-r--r--dbaccess/source/ui/tabledesign/TableDesignView.cxx34
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldControl.cxx8
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldControl.hxx28
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldDescWin.cxx74
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldDescWin.hxx20
-rw-r--r--dbaccess/source/ui/tabledesign/TableRow.cxx16
-rw-r--r--dbaccess/source/ui/tabledesign/TableRowExchange.cxx4
-rw-r--r--dbaccess/source/ui/tabledesign/TableUndo.cxx12
-rw-r--r--dbaccess/source/ui/tabledesign/TableUndo.hxx62
-rw-r--r--dbaccess/source/ui/tabledesign/table.src14
-rw-r--r--dbaccess/source/ui/uno/AdabasSettingsDlg.cxx6
-rw-r--r--dbaccess/source/ui/uno/AdabasSettingsDlg.hxx6
-rw-r--r--dbaccess/source/ui/uno/AdvancedSettingsDlg.cxx8
-rw-r--r--dbaccess/source/ui/uno/ColumnControl.cxx10
-rw-r--r--dbaccess/source/ui/uno/ColumnControl.hxx8
-rw-r--r--dbaccess/source/ui/uno/ColumnModel.cxx16
-rw-r--r--dbaccess/source/ui/uno/ColumnModel.hxx30
-rw-r--r--dbaccess/source/ui/uno/ColumnPeer.cxx20
-rw-r--r--dbaccess/source/ui/uno/ColumnPeer.hxx8
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlg.cxx6
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlg.hxx6
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx8
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlgSetup.hxx6
-rw-r--r--dbaccess/source/ui/uno/TableFilterDlg.cxx6
-rw-r--r--dbaccess/source/ui/uno/TableFilterDlg.hxx6
-rw-r--r--dbaccess/source/ui/uno/UserSettingsDlg.cxx6
-rw-r--r--dbaccess/source/ui/uno/UserSettingsDlg.hxx6
-rw-r--r--dbaccess/source/ui/uno/admindlg.cxx8
-rw-r--r--dbaccess/source/ui/uno/admindlg.hxx6
-rw-r--r--dbaccess/source/ui/uno/composerdialogs.cxx18
-rw-r--r--dbaccess/source/ui/uno/composerdialogs.hxx2
-rw-r--r--dbaccess/source/ui/uno/copytablewizard.cxx16
-rw-r--r--dbaccess/source/ui/uno/copytablewizard.src2
-rwxr-xr-xdbaccess/source/ui/uno/dbinteraction.cxx12
-rw-r--r--dbaccess/source/ui/uno/dbinteraction.hxx18
-rw-r--r--dbaccess/source/ui/uno/dbinteraction.src2
-rw-r--r--dbaccess/source/ui/uno/textconnectionsettings_uno.cxx8
-rw-r--r--dbaccess/source/ui/uno/unoDirectSql.cxx18
-rw-r--r--dbaccess/source/ui/uno/unoDirectSql.hxx16
-rw-r--r--dbaccess/source/ui/uno/unoadmin.cxx6
-rw-r--r--dbaccess/source/ui/uno/unosqlmessage.cxx6
-rw-r--r--dbaccess/uiconfig/dbapp/toolbar/toolbar.xml2
-rw-r--r--dbaccess/uiconfig/dbbrowser/toolbar/toolbar.xml4
-rw-r--r--dbaccess/uiconfig/dbtdata/toolbar/toolbar.xml4
-rw-r--r--dbaccess/util/hidother.src778
-rw-r--r--dbaccess/win32/source/odbcconfig/odbcconfig.cxx4
-rw-r--r--desktop/inc/app.hxx91
-rw-r--r--desktop/inc/deployment.hrc10
-rw-r--r--desktop/inc/pch/precompiled_desktop.cxx2
-rw-r--r--desktop/inc/pch/precompiled_desktop.hxx2
-rw-r--r--desktop/os2/source/applauncher/launcher.cxx26
-rw-r--r--desktop/os2/source/applauncher/launcher.hxx2
-rw-r--r--desktop/qa/deployment_misc/test_dp_version.cxx2
-rw-r--r--desktop/qa/deployment_misc/version.map2
-rw-r--r--desktop/registry/data/org/openoffice/Office/Jobs.xcu2
-rw-r--r--desktop/scripts/soffice.sh2
-rw-r--r--desktop/scripts/unoinfo.sh2
-rw-r--r--desktop/scripts/unopkg.sh4
-rw-r--r--desktop/source/app/app.cxx637
-rw-r--r--desktop/source/app/appfirststart.cxx104
-rw-r--r--desktop/source/app/appinit.cxx14
-rw-r--r--desktop/source/app/appinit.hxx2
-rw-r--r--desktop/source/app/appsys.cxx4
-rw-r--r--desktop/source/app/appsys.hxx2
-rwxr-xr-xdesktop/source/app/check_ext_deps.cxx10
-rw-r--r--desktop/source/app/checkinstall.cxx12
-rw-r--r--desktop/source/app/checkinstall.hxx2
-rw-r--r--desktop/source/app/cmdlineargs.cxx84
-rw-r--r--desktop/source/app/cmdlineargs.hxx112
-rw-r--r--desktop/source/app/cmdlinehelp.cxx4
-rw-r--r--desktop/source/app/cmdlinehelp.hxx10
-rw-r--r--desktop/source/app/configinit.cxx38
-rw-r--r--desktop/source/app/configinit.hxx12
-rw-r--r--desktop/source/app/copyright_ascii_ooo.c6
-rw-r--r--desktop/source/app/copyright_ascii_sun.c6
-rw-r--r--desktop/source/app/desktop.hrc80
-rw-r--r--desktop/source/app/desktop.src4
-rw-r--r--desktop/source/app/desktopcontext.cxx2
-rw-r--r--desktop/source/app/desktopcontext.hxx2
-rw-r--r--desktop/source/app/desktopresid.cxx2
-rw-r--r--desktop/source/app/desktopresid.hxx2
-rw-r--r--desktop/source/app/dispatchwatcher.cxx20
-rw-r--r--desktop/source/app/dispatchwatcher.hxx14
-rw-r--r--desktop/source/app/langselect.cxx32
-rw-r--r--desktop/source/app/langselect.hxx4
-rw-r--r--desktop/source/app/lockfile.cxx4
-rw-r--r--desktop/source/app/lockfile.hxx14
-rw-r--r--desktop/source/app/lockfile2.cxx4
-rw-r--r--desktop/source/app/main.c2
-rw-r--r--desktop/source/app/officeipcthread.cxx48
-rw-r--r--desktop/source/app/officeipcthread.hxx42
-rw-r--r--desktop/source/app/omutexmember.hxx20
-rw-r--r--desktop/source/app/sofficemain.cxx2
-rw-r--r--desktop/source/app/sofficemain.h2
-rw-r--r--desktop/source/app/userinstall.cxx2
-rw-r--r--desktop/source/app/userinstall.hxx6
-rw-r--r--desktop/source/app/version.map2
-rw-r--r--desktop/source/deployment/dp_log.cxx16
-rw-r--r--desktop/source/deployment/dp_persmap.cxx10
-rw-r--r--desktop/source/deployment/dp_services.cxx4
-rw-r--r--desktop/source/deployment/dp_xml.cxx4
-rw-r--r--desktop/source/deployment/gui/descedit.cxx2
-rw-r--r--desktop/source/deployment/gui/descedit.hxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui.h2
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui.hrc36
-rw-r--r--desktop/source/deployment/gui/dp_gui_autoscrolledit.cxx4
-rw-r--r--desktop/source/deployment/gui/dp_gui_autoscrolledit.hxx4
-rw-r--r--desktop/source/deployment/gui/dp_gui_backend.src2
-rw-r--r--desktop/source/deployment/gui/dp_gui_dependencydialog.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_dependencydialog.hxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_dependencydialog.src2
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_dialog.src38
-rw-r--r--[-rwxr-xr-x]desktop/source/deployment/gui/dp_gui_dialog2.cxx48
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_dialog2.hxx8
-rw-r--r--desktop/source/deployment/gui/dp_gui_dialog2.src8
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx86
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_extensioncmdqueue.hxx16
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_extlistbox.cxx16
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_extlistbox.hxx8
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_service.cxx8
-rw-r--r--desktop/source/deployment/gui/dp_gui_shared.hxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_system.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_system.hxx2
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_theextmgr.cxx10
-rwxr-xr-xdesktop/source/deployment/gui/dp_gui_theextmgr.hxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_thread.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_thread.hxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedata.hxx8
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.cxx56
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.hxx8
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.src4
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx104
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx10
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.src94
-rw-r--r--desktop/source/deployment/gui/dp_gui_versionboxes.src6
-rw-r--r--desktop/source/deployment/gui/license_dialog.cxx12
-rw-r--r--desktop/source/deployment/gui/license_dialog.hxx2
-rw-r--r--desktop/source/deployment/inc/db.hxx86
-rw-r--r--desktop/source/deployment/inc/dp_dependencies.hxx2
-rw-r--r--desktop/source/deployment/inc/dp_descriptioninfoset.hxx68
-rw-r--r--desktop/source/deployment/inc/dp_identifier.hxx2
-rw-r--r--desktop/source/deployment/inc/dp_interact.h14
-rw-r--r--desktop/source/deployment/inc/dp_misc.h14
-rw-r--r--desktop/source/deployment/inc/dp_misc_api.hxx2
-rw-r--r--desktop/source/deployment/inc/dp_persmap.h6
-rw-r--r--desktop/source/deployment/inc/dp_platform.hxx6
-rw-r--r--desktop/source/deployment/inc/dp_resource.h2
-rw-r--r--desktop/source/deployment/inc/dp_ucb.h2
-rwxr-xr-xdesktop/source/deployment/inc/dp_update.hxx8
-rw-r--r--desktop/source/deployment/inc/dp_version.hxx2
-rw-r--r--desktop/source/deployment/inc/dp_xml.h2
-rw-r--r--desktop/source/deployment/manager/dp_activepackages.cxx2
-rw-r--r--desktop/source/deployment/manager/dp_activepackages.hxx2
-rw-r--r--desktop/source/deployment/manager/dp_commandenvironments.cxx18
-rw-r--r--desktop/source/deployment/manager/dp_commandenvironments.hxx20
-rw-r--r--desktop/source/deployment/manager/dp_extensionmanager.cxx124
-rw-r--r--desktop/source/deployment/manager/dp_extensionmanager.hxx52
-rw-r--r--desktop/source/deployment/manager/dp_informationprovider.cxx32
-rw-r--r--desktop/source/deployment/manager/dp_manager.cxx136
-rw-r--r--desktop/source/deployment/manager/dp_manager.h40
-rw-r--r--desktop/source/deployment/manager/dp_manager.hrc2
-rw-r--r--desktop/source/deployment/manager/dp_manager.src2
-rw-r--r--desktop/source/deployment/manager/dp_managerfac.cxx12
-rw-r--r--desktop/source/deployment/manager/dp_properties.cxx16
-rw-r--r--desktop/source/deployment/manager/dp_properties.hxx13
-rw-r--r--desktop/source/deployment/misc/db.cxx54
-rw-r--r--desktop/source/deployment/misc/dp_dependencies.cxx2
-rw-r--r--desktop/source/deployment/misc/dp_descriptioninfoset.cxx90
-rw-r--r--desktop/source/deployment/misc/dp_identifier.cxx2
-rw-r--r--desktop/source/deployment/misc/dp_interact.cxx12
-rw-r--r--desktop/source/deployment/misc/dp_misc.cxx53
-rw-r--r--desktop/source/deployment/misc/dp_misc.hrc2
-rw-r--r--desktop/source/deployment/misc/dp_misc.src2
-rw-r--r--desktop/source/deployment/misc/dp_platform.cxx36
-rw-r--r--desktop/source/deployment/misc/dp_resource.cxx16
-rw-r--r--desktop/source/deployment/misc/dp_ucb.cxx6
-rwxr-xr-xdesktop/source/deployment/misc/dp_update.cxx30
-rw-r--r--desktop/source/deployment/misc/dp_version.cxx4
-rw-r--r--desktop/source/deployment/registry/component/dp_compbackenddb.cxx8
-rw-r--r--desktop/source/deployment/registry/component/dp_compbackenddb.hxx6
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx178
-rw-r--r--desktop/source/deployment/registry/component/dp_component.hrc2
-rw-r--r--desktop/source/deployment/registry/component/dp_component.src2
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.cxx146
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.hrc2
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.src2
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configurationbackenddb.cxx7
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configurationbackenddb.hxx11
-rw-r--r--desktop/source/deployment/registry/dp_backend.cxx60
-rw-r--r--desktop/source/deployment/registry/dp_backenddb.cxx32
-rw-r--r--desktop/source/deployment/registry/dp_registry.cxx51
-rw-r--r--desktop/source/deployment/registry/dp_registry.src4
-rw-r--r--desktop/source/deployment/registry/executable/dp_executable.cxx24
-rw-r--r--desktop/source/deployment/registry/executable/dp_executablebackenddb.cxx7
-rw-r--r--desktop/source/deployment/registry/executable/dp_executablebackenddb.hxx13
-rw-r--r--desktop/source/deployment/registry/help/dp_help.cxx42
-rw-r--r--desktop/source/deployment/registry/help/dp_help.hrc8
-rw-r--r--desktop/source/deployment/registry/help/dp_help.src2
-rw-r--r--desktop/source/deployment/registry/help/dp_helpbackenddb.cxx7
-rw-r--r--desktop/source/deployment/registry/help/dp_helpbackenddb.hxx11
-rw-r--r--desktop/source/deployment/registry/inc/dp_backend.h58
-rw-r--r--desktop/source/deployment/registry/inc/dp_backenddb.hxx14
-rw-r--r--desktop/source/deployment/registry/inc/dp_registry.hrc2
-rw-r--r--desktop/source/deployment/registry/package/dp_extbackenddb.cxx2
-rw-r--r--desktop/source/deployment/registry/package/dp_extbackenddb.hxx6
-rw-r--r--desktop/source/deployment/registry/package/dp_package.cxx242
-rw-r--r--desktop/source/deployment/registry/package/dp_package.hrc2
-rw-r--r--desktop/source/deployment/registry/package/dp_package.src2
-rw-r--r--desktop/source/deployment/registry/script/dp_lib_container.cxx4
-rw-r--r--desktop/source/deployment/registry/script/dp_lib_container.h2
-rw-r--r--desktop/source/deployment/registry/script/dp_script.cxx50
-rw-r--r--desktop/source/deployment/registry/script/dp_script.hrc2
-rw-r--r--desktop/source/deployment/registry/script/dp_script.src2
-rw-r--r--desktop/source/deployment/registry/script/dp_scriptbackenddb.cxx7
-rw-r--r--desktop/source/deployment/registry/script/dp_scriptbackenddb.hxx13
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_parceldesc.cxx10
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx4
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.cxx50
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.hrc2
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.src2
-rw-r--r--desktop/source/deployment/unopkg/unopkg.src2
-rw-r--r--desktop/source/inc/exithelper.hxx12
-rw-r--r--desktop/source/inc/helpid.hrc4
-rw-r--r--desktop/source/migration/cfgfilter.cxx96
-rw-r--r--desktop/source/migration/cfgfilter.hxx72
-rw-r--r--desktop/source/migration/makefile.mk6
-rw-r--r--[-rwxr-xr-x]desktop/source/migration/migration.cxx42
-rw-r--r--desktop/source/migration/migration.hxx2
-rw-r--r--desktop/source/migration/migration_impl.hxx44
-rw-r--r--desktop/source/migration/pages.cxx673
-rw-r--r--desktop/source/migration/pages.hxx214
-rw-r--r--desktop/source/migration/services/autocorrmigration.cxx12
-rw-r--r--desktop/source/migration/services/autocorrmigration.hxx8
-rw-r--r--desktop/source/migration/services/basicmigration.cxx12
-rw-r--r--desktop/source/migration/services/basicmigration.hxx12
-rw-r--r--desktop/source/migration/services/cexports.cxx2
-rw-r--r--[-rwxr-xr-x]desktop/source/migration/services/cexportsoo3.cxx7
-rw-r--r--desktop/source/migration/services/jvmfwk.cxx154
-rw-r--r--desktop/source/migration/services/jvmfwk.hxx2
-rw-r--r--desktop/source/migration/services/migrationoo2.xml36
-rw-r--r--[-rwxr-xr-x]desktop/source/migration/services/migrationoo3.map0
-rw-r--r--desktop/source/migration/services/misc.hxx4
-rw-r--r--desktop/source/migration/services/oo3extensionmigration.cxx53
-rw-r--r--desktop/source/migration/services/oo3extensionmigration.hxx9
-rw-r--r--[-rwxr-xr-x]desktop/source/migration/services/wordbookmigration.cxx24
-rw-r--r--[-rwxr-xr-x]desktop/source/migration/services/wordbookmigration.hxx8
-rw-r--r--desktop/source/migration/wizard.cxx654
-rw-r--r--desktop/source/migration/wizard.hrc99
-rw-r--r--desktop/source/migration/wizard.hxx106
-rw-r--r--desktop/source/migration/wizard.src424
-rw-r--r--desktop/source/offacc/acceptor.cxx8
-rw-r--r--desktop/source/offacc/acceptor.hxx4
-rw-r--r--desktop/source/pagein/file_image.h2
-rw-r--r--desktop/source/pagein/file_image_unx.c6
-rw-r--r--desktop/source/pagein/pagein.c4
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_app.cxx109
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx36
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_main.c2
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_main.h2
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_misc.cxx163
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_shared.h18
-rw-r--r--desktop/source/pkgchk/unopkg/version.map2
-rw-r--r--desktop/source/registration/com/sun/star/registration/Registration.java84
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/BrowserSupport.java32
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/Installer.java102
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/LinuxSystemEnvironment.java8
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/RegistrationData.java122
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/RegistrationDocument.java32
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/Registry.java90
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/ServiceTag.java124
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SolarisServiceTag.java6
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SolarisSystemEnvironment.java4
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SunConnection.java34
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SysnetRegistryHelper.java26
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/SystemEnvironment.java8
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/UnauthorizedAccessException.java8
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/Util.java18
-rw-r--r--desktop/source/registration/com/sun/star/servicetag/WindowsSystemEnvironment.java8
-rw-r--r--desktop/source/so_comp/evaluation.cxx24
-rw-r--r--desktop/source/so_comp/evaluation.hxx28
-rw-r--r--desktop/source/so_comp/oemjob.cxx56
-rw-r--r--desktop/source/so_comp/oemjob.hxx16
-rw-r--r--desktop/source/so_comp/services.cxx30
-rwxr-xr-xdesktop/source/splash/firststart.cxx156
-rwxr-xr-xdesktop/source/splash/firststart.hxx90
-rw-r--r--desktop/source/splash/makefile.mk5
-rwxr-xr-xdesktop/source/splash/services_spl.cxx33
-rw-r--r--desktop/source/splash/splash.cxx46
-rw-r--r--desktop/source/splash/splash.hxx2
-rw-r--r--desktop/test/deployment/executable_content/build/hello.c4
-rw-r--r--desktop/test/deployment/locationtest/LocationTest.idl12
-rw-r--r--desktop/test/deployment/locationtest/LocationTest.java24
-rw-r--r--desktop/test/deployment/locationtest/description.xml4
-rw-r--r--desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/OptionsEventHandler.java44
-rw-r--r--desktop/test/deployment/update/changing_display_name/update1/change1.update.xml2
-rw-r--r--desktop/test/deployment/update/changing_display_name/update2/change1.update.xml2
-rw-r--r--desktop/test/deployment/update/default_url/update/default1.update.xml2
-rw-r--r--desktop/test/deployment/update/default_url/update/default2.update.xml2
-rw-r--r--desktop/test/deployment/update/defect/update/fail1.update.xml2
-rw-r--r--desktop/test/deployment/update/defect/update/fail2.update.xml2
-rw-r--r--desktop/test/deployment/update/defect/update/fail3.update.xml2
-rw-r--r--desktop/test/deployment/update/defect/update/fail4.update.xml2
-rw-r--r--desktop/test/deployment/update/defect/update/info3.update.xml2
-rw-r--r--desktop/test/deployment/update/dependencies/update/update-dependencies.update.xml16
-rw-r--r--desktop/test/deployment/update/license/update/lic1.update.xml2
-rw-r--r--desktop/test/deployment/update/license/update/lic2.update.xml2
-rw-r--r--desktop/test/deployment/update/license/update/lic3.update.xml2
-rw-r--r--desktop/test/deployment/update/publisher/update/pub1.update.xml10
-rw-r--r--desktop/test/deployment/update/publisher/update/pub2.update.xml10
-rw-r--r--desktop/test/deployment/update/publisher/update/pub3.update.xml10
-rw-r--r--desktop/test/deployment/update/publisher/update/pub4.update.xml10
-rw-r--r--desktop/test/deployment/update/publisher/update/pub5.update.xml10
-rw-r--r--desktop/test/deployment/update/publisher/update/pub6.update.xml8
-rw-r--r--desktop/test/deployment/update/publisher/update/pub7.update.xml8
-rw-r--r--desktop/test/deployment/update/simple/update/plain1.update.xml2
-rw-r--r--desktop/test/deployment/update/simple/update/plain2.update.xml2
-rw-r--r--desktop/test/deployment/update/simple/update/plain3.update.xml2
-rw-r--r--desktop/test/deployment/update/updatefeed/update/feed1.update.xml2
-rw-r--r--desktop/test/deployment/update/updatefeed/update/feed2.update.xml2
-rwxr-xr-xdesktop/test/deployment/update/updateinfocreation/build/TestExtension.idl14
-rwxr-xr-xdesktop/test/deployment/update/updateinfocreation/build/TestExtension.java26
-rw-r--r--desktop/test/deployment/update/updateinfocreation/build/description.xml4
-rw-r--r--desktop/test/deployment/update/website_update/update/web1.update.xml2
-rw-r--r--desktop/test/deployment/update/website_update/update/web2.update.xml2
-rw-r--r--desktop/test/deployment/update/website_update/update/web3.update.xml2
-rw-r--r--desktop/test/deployment/update/website_update/update/web4.update.xml2
-rw-r--r--desktop/test/deployment/update/website_update/update/web5.update.xml2
-rw-r--r--desktop/test/deployment/update/website_update/update/web6/description.xml4
-rw-r--r--desktop/test/deployment/update/website_update/update/web7/description.xml6
-rw-r--r--desktop/test/deployment/update/wrong_url/update/url1.update.xml2
-rw-r--r--desktop/test/deployment/update/wrong_url/update/url2.update.xml2
-rw-r--r--desktop/test/deployment/update/wrong_url/update/wrongdownload1.update.xml2
-rw-r--r--desktop/test/deployment/update/wrong_url/update/wrongdownload2.update.xml2
-rw-r--r--desktop/test/deployment/update/wrong_url/update/wrongdownload3.update.xml2
-rwxr-xr-xdesktop/unx/source/officeloader/officeloader.cxx16
-rw-r--r--desktop/util/hidother.src4
-rw-r--r--desktop/util/makefile.mk3
-rwxr-xr-x[-rw-r--r--]desktop/util/verinfo.rc8
-rw-r--r--desktop/win32/source/applauncher/launcher.cxx32
-rw-r--r--desktop/win32/source/applauncher/launcher.hxx14
-rwxr-xr-x[-rw-r--r--]desktop/win32/source/applauncher/ooo/verinfo.rc4
-rw-r--r--desktop/win32/source/applauncher/sbase.cxx2
-rw-r--r--desktop/win32/source/applauncher/scalc.cxx2
-rw-r--r--desktop/win32/source/applauncher/sdraw.cxx2
-rw-r--r--desktop/win32/source/applauncher/simpress.cxx2
-rw-r--r--desktop/win32/source/applauncher/smath.cxx2
-rw-r--r--desktop/win32/source/applauncher/sweb.cxx2
-rw-r--r--desktop/win32/source/applauncher/swriter.cxx2
-rwxr-xr-x[-rw-r--r--]desktop/win32/source/applauncher/verinfo.rc8
-rw-r--r--desktop/win32/source/extendloaderenvironment.cxx2
-rw-r--r--desktop/win32/source/extendloaderenvironment.hxx2
-rw-r--r--desktop/win32/source/guiloader/genericloader.cxx16
-rw-r--r--desktop/win32/source/guistdio/guistdio.cxx2
-rw-r--r--desktop/win32/source/guistdio/unopkgio.cxx2
-rw-r--r--desktop/win32/source/lwrapa.cxx2
-rw-r--r--desktop/win32/source/lwrapw.cxx2
-rw-r--r--desktop/win32/source/main.h2
-rw-r--r--desktop/win32/source/officeloader/officeloader.cxx78
-rw-r--r--desktop/win32/source/rebase/Resource.h10
-rw-r--r--desktop/win32/source/rebase/rebase.cxx34
-rw-r--r--desktop/win32/source/rebase/rebasegui.cxx54
-rw-r--r--desktop/win32/source/rwrapa.cxx2
-rw-r--r--desktop/win32/source/rwrapw.cxx2
-rw-r--r--desktop/win32/source/setup/Resource.h88
-rwxr-xr-xdesktop/win32/source/setup/setup.cpp101
-rw-r--r--desktop/win32/source/setup/setup.hxx4
-rw-r--r--desktop/win32/source/setup/setup_a.cxx2
-rw-r--r--desktop/win32/source/setup/setup_help.hxx2
-rw-r--r--desktop/win32/source/setup/setup_main.cxx2
-rw-r--r--desktop/win32/source/setup/setup_main.hxx2
-rw-r--r--desktop/win32/source/setup/setup_w.cxx2
-rw-r--r--desktop/win32/source/sowrapper.cxx2
-rw-r--r--desktop/win32/source/unoinfo.cxx2
-rw-r--r--desktop/win32/source/wrapper.h78
-rw-r--r--desktop/win32/source/wrappera.cxx2
-rw-r--r--desktop/win32/source/wrapperw.cxx2
-rw-r--r--drawinglayer/inc/drawinglayer/animation/animationtiming.hxx20
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/fillbitmapattribute.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/fillgradientattribute.hxx22
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/fillhatchattribute.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/fontattribute.hxx2
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/lineattribute.hxx2
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/linestartendattribute.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/materialattribute3d.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrallattribute3d.hxx20
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrfillattribute.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrfillbitmapattribute.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrlightattribute3d.hxx4
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrlightingattribute3d.hxx2
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrlineattribute.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrlinestartendattribute.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrobjectattribute3d.hxx2
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/sdrshadowattribute.hxx4
-rw-r--r--drawinglayer/inc/drawinglayer/attribute/strokeattribute.hxx2
-rw-r--r--drawinglayer/inc/drawinglayer/geometry/viewinformation2d.hxx14
-rw-r--r--drawinglayer/inc/drawinglayer/geometry/viewinformation3d.hxx14
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/animatedprimitive2d.hxx16
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/backgroundcolorprimitive2d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/baseprimitive2d.hxx48
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/bitmapprimitive2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/borderlineprimitive2d.hxx56
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/chartprimitive2d.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/controlprimitive2d.hxx14
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/discretebitmapprimitive2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/drawinglayer_primitivetypes2d.hxx114
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/embedded3dprimitive2d.hxx22
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/epsprimitive2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/fillbitmapprimitive2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/fillgradientprimitive2d.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/fillhatchprimitive2d.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/graphicprimitive2d.hxx14
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/gridprimitive2d.hxx28
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/groupprimitive2d.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/helplineprimitive2d.hxx36
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/hiddengeometryprimitive2d.hxx14
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/invertprimitive2d.hxx2
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/markerarrayprimitive2d.hxx16
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/maskprimitive2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/mediaprimitive2d.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/metafileprimitive2d.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/modifiedcolorprimitive2d.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/pagepreviewprimitive2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/pointarrayprimitive2d.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/polygonprimitive2d.hxx54
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/polypolygonprimitive2d.hxx78
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/primitivetools2d.hxx30
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/sceneprimitive2d.hxx36
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/sdrdecompositiontools2d.hxx4
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/shadowprimitive2d.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/structuretagprimitive2d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx18
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/texteffectprimitive2d.hxx10
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textenumsprimitive2d.hxx4
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/texthierarchyprimitive2d.hxx14
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textlayoutdevice.hxx20
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textlineprimitive2d.hxx2
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx44
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/textstrikeoutprimitive2d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/transformprimitive2d.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/transparenceprimitive2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/unifiedtransparenceprimitive2d.hxx4
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/wallpaperprimitive2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive2d/wrongspellprimitive2d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/baseprimitive3d.hxx22
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/drawinglayer_primitivetypes3d.hxx42
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/groupprimitive3d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/hatchtextureprimitive3d.hxx14
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/hiddengeometryprimitive3d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/modifiedcolorprimitive3d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/polygonprimitive3d.hxx26
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/polygontubeprimitive3d.hxx16
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/polypolygonprimitive3d.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrcubeprimitive3d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrdecompositiontools3d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrextrudelathetools3d.hxx78
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrextrudeprimitive3d.hxx42
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx56
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrpolypolygonprimitive3d.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrprimitive3d.hxx16
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/sdrsphereprimitive3d.hxx16
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/shadowprimitive3d.hxx18
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/textureprimitive3d.hxx54
-rw-r--r--drawinglayer/inc/drawinglayer/primitive3d/transformprimitive3d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/baseprocessor2d.hxx20
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/canvasprocessor.hxx20
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/contourextractor2d.hxx4
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/hittestprocessor2d.hxx18
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/linegeometryextractor2d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/textaspolygonextractor2d.hxx20
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/vclmetafileprocessor2d.hxx26
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/vclpixelprocessor2d.hxx6
-rw-r--r--drawinglayer/inc/drawinglayer/processor2d/vclprocessor2d.hxx14
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/baseprocessor3d.hxx12
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/cutfindprocessor3d.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/defaultprocessor3d.hxx32
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/geometry2dextractor.hxx8
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/shadow3dextractor.hxx24
-rw-r--r--drawinglayer/inc/drawinglayer/processor3d/zbufferprocessor3d.hxx18
-rw-r--r--drawinglayer/inc/drawinglayer/texture/texture.hxx26
-rw-r--r--drawinglayer/inc/drawinglayer/texture/texture3d.hxx30
-rw-r--r--drawinglayer/inc/pch/precompiled_drawinglayer.cxx2
-rw-r--r--drawinglayer/inc/pch/precompiled_drawinglayer.hxx2
-rw-r--r--drawinglayer/source/animation/animationtiming.cxx32
-rw-r--r--drawinglayer/source/attribute/fillbitmapattribute.cxx58
-rw-r--r--drawinglayer/source/attribute/fillgradientattribute.cxx88
-rw-r--r--drawinglayer/source/attribute/fillhatchattribute.cxx70
-rw-r--r--drawinglayer/source/attribute/fontattribute.cxx82
-rw-r--r--drawinglayer/source/attribute/lineattribute.cxx38
-rw-r--r--drawinglayer/source/attribute/linestartendattribute.cxx56
-rw-r--r--drawinglayer/source/attribute/materialattribute3d.cxx50
-rw-r--r--drawinglayer/source/attribute/sdrallattribute3d.cxx14
-rw-r--r--drawinglayer/source/attribute/sdrfillattribute.cxx72
-rw-r--r--drawinglayer/source/attribute/sdrfillbitmapattribute.cxx108
-rw-r--r--drawinglayer/source/attribute/sdrlightattribute3d.cxx46
-rw-r--r--drawinglayer/source/attribute/sdrlightingattribute3d.cxx40
-rw-r--r--drawinglayer/source/attribute/sdrlineattribute.cxx100
-rw-r--r--drawinglayer/source/attribute/sdrlinestartendattribute.cxx116
-rw-r--r--drawinglayer/source/attribute/sdrobjectattribute3d.cxx106
-rw-r--r--drawinglayer/source/attribute/sdrsceneattribute3d.cxx52
-rw-r--r--drawinglayer/source/attribute/sdrshadowattribute.cxx50
-rw-r--r--drawinglayer/source/attribute/strokeattribute.cxx34
-rw-r--r--drawinglayer/source/geometry/viewinformation2d.cxx108
-rw-r--r--drawinglayer/source/geometry/viewinformation3d.cxx84
-rw-r--r--drawinglayer/source/primitive2d/animatedprimitive2d.cxx16
-rw-r--r--drawinglayer/source/primitive2d/backgroundcolorprimitive2d.cxx6
-rw-r--r--drawinglayer/source/primitive2d/baseprimitive2d.cxx6
-rw-r--r--drawinglayer/source/primitive2d/bitmapprimitive2d.cxx6
-rw-r--r--drawinglayer/source/primitive2d/borderlineprimitive2d.cxx16
-rw-r--r--drawinglayer/source/primitive2d/chartprimitive2d.cxx4
-rw-r--r--drawinglayer/source/primitive2d/controlprimitive2d.cxx28
-rw-r--r--drawinglayer/source/primitive2d/discretebitmapprimitive2d.cxx10
-rw-r--r--drawinglayer/source/primitive2d/embedded3dprimitive2d.cxx14
-rw-r--r--drawinglayer/source/primitive2d/epsprimitive2d.cxx4
-rw-r--r--drawinglayer/source/primitive2d/fillbitmapprimitive2d.cxx10
-rw-r--r--drawinglayer/source/primitive2d/fillgradientprimitive2d.cxx16
-rw-r--r--drawinglayer/source/primitive2d/fillhatchprimitive2d.cxx10
-rw-r--r--drawinglayer/source/primitive2d/graphicprimitive2d.cxx92
-rw-r--r--drawinglayer/source/primitive2d/gridprimitive2d.cxx14
-rw-r--r--drawinglayer/source/primitive2d/groupprimitive2d.cxx4
-rw-r--r--drawinglayer/source/primitive2d/helplineprimitive2d.cxx22
-rw-r--r--drawinglayer/source/primitive2d/hiddengeometryprimitive2d.cxx2
-rw-r--r--drawinglayer/source/primitive2d/invertprimitive2d.cxx4
-rw-r--r--drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx14
-rw-r--r--drawinglayer/source/primitive2d/maskprimitive2d.cxx6
-rw-r--r--drawinglayer/source/primitive2d/mediaprimitive2d.cxx14
-rw-r--r--drawinglayer/source/primitive2d/metafileprimitive2d.cxx250
-rw-r--r--drawinglayer/source/primitive2d/modifiedcolorprimitive2d.cxx6
-rw-r--r--drawinglayer/source/primitive2d/pagepreviewprimitive2d.cxx16
-rw-r--r--drawinglayer/source/primitive2d/pointarrayprimitive2d.cxx6
-rw-r--r--drawinglayer/source/primitive2d/polygonprimitive2d.cxx68
-rw-r--r--drawinglayer/source/primitive2d/polypolygonprimitive2d.cxx64
-rw-r--r--drawinglayer/source/primitive2d/primitivetools2d.cxx2
-rw-r--r--drawinglayer/source/primitive2d/sceneprimitive2d.cxx36
-rw-r--r--drawinglayer/source/primitive2d/sdrdecompositiontools2d.cxx20
-rw-r--r--drawinglayer/source/primitive2d/shadowprimitive2d.cxx12
-rw-r--r--drawinglayer/source/primitive2d/structuretagprimitive2d.cxx4
-rw-r--r--drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx32
-rw-r--r--drawinglayer/source/primitive2d/texteffectprimitive2d.cxx12
-rw-r--r--drawinglayer/source/primitive2d/textenumsprimitive2d.cxx26
-rw-r--r--drawinglayer/source/primitive2d/texthierarchyprimitive2d.cxx14
-rw-r--r--drawinglayer/source/primitive2d/textlayoutdevice.cxx32
-rw-r--r--drawinglayer/source/primitive2d/textlineprimitive2d.cxx10
-rw-r--r--drawinglayer/source/primitive2d/textprimitive2d.cxx68
-rw-r--r--drawinglayer/source/primitive2d/textstrikeoutprimitive2d.cxx16
-rw-r--r--drawinglayer/source/primitive2d/transformprimitive2d.cxx6
-rw-r--r--drawinglayer/source/primitive2d/transparenceprimitive2d.cxx4
-rw-r--r--drawinglayer/source/primitive2d/unifiedtransparenceprimitive2d.cxx14
-rw-r--r--drawinglayer/source/primitive2d/wallpaperprimitive2d.cxx24
-rw-r--r--drawinglayer/source/primitive2d/wrongspellprimitive2d.cxx8
-rw-r--r--drawinglayer/source/primitive3d/baseprimitive3d.cxx6
-rw-r--r--drawinglayer/source/primitive3d/groupprimitive3d.cxx4
-rw-r--r--drawinglayer/source/primitive3d/hatchtextureprimitive3d.cxx18
-rw-r--r--drawinglayer/source/primitive3d/hiddengeometryprimitive3d.cxx2
-rw-r--r--drawinglayer/source/primitive3d/modifiedcolorprimitive3d.cxx6
-rw-r--r--drawinglayer/source/primitive3d/polygonprimitive3d.cxx20
-rw-r--r--drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx54
-rw-r--r--drawinglayer/source/primitive3d/polypolygonprimitive3d.cxx8
-rw-r--r--drawinglayer/source/primitive3d/sdrcubeprimitive3d.cxx26
-rw-r--r--drawinglayer/source/primitive3d/sdrdecompositiontools3d.cxx54
-rw-r--r--drawinglayer/source/primitive3d/sdrextrudelathetools3d.cxx110
-rw-r--r--drawinglayer/source/primitive3d/sdrextrudeprimitive3d.cxx64
-rw-r--r--drawinglayer/source/primitive3d/sdrlatheprimitive3d.cxx46
-rw-r--r--drawinglayer/source/primitive3d/sdrpolypolygonprimitive3d.cxx22
-rw-r--r--drawinglayer/source/primitive3d/sdrprimitive3d.cxx6
-rw-r--r--drawinglayer/source/primitive3d/sdrsphereprimitive3d.cxx38
-rw-r--r--drawinglayer/source/primitive3d/shadowprimitive3d.cxx12
-rw-r--r--drawinglayer/source/primitive3d/textureprimitive3d.cxx42
-rw-r--r--drawinglayer/source/primitive3d/transformprimitive3d.cxx8
-rw-r--r--drawinglayer/source/processor2d/baseprocessor2d.cxx4
-rw-r--r--drawinglayer/source/processor2d/canvasprocessor.cxx298
-rw-r--r--drawinglayer/source/processor2d/contourextractor2d.cxx8
-rw-r--r--drawinglayer/source/processor2d/helperchartrenderer.cxx16
-rw-r--r--drawinglayer/source/processor2d/helperchartrenderer.hxx4
-rw-r--r--drawinglayer/source/processor2d/helperwrongspellrenderer.cxx16
-rw-r--r--drawinglayer/source/processor2d/helperwrongspellrenderer.hxx4
-rw-r--r--drawinglayer/source/processor2d/hittestprocessor2d.cxx72
-rw-r--r--drawinglayer/source/processor2d/linegeometryextractor2d.cxx8
-rw-r--r--drawinglayer/source/processor2d/textaspolygonextractor2d.cxx42
-rw-r--r--drawinglayer/source/processor2d/vclhelperbitmaprender.cxx30
-rw-r--r--drawinglayer/source/processor2d/vclhelperbitmaprender.hxx14
-rw-r--r--drawinglayer/source/processor2d/vclhelperbitmaptransform.cxx40
-rw-r--r--drawinglayer/source/processor2d/vclhelperbitmaptransform.hxx12
-rw-r--r--drawinglayer/source/processor2d/vclhelperbufferdevice.cxx24
-rw-r--r--drawinglayer/source/processor2d/vclhelperbufferdevice.hxx14
-rw-r--r--drawinglayer/source/processor2d/vclhelpergradient.cxx6
-rw-r--r--drawinglayer/source/processor2d/vclhelpergradient.hxx12
-rw-r--r--drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx224
-rw-r--r--drawinglayer/source/processor2d/vclpixelprocessor2d.cxx54
-rw-r--r--drawinglayer/source/processor2d/vclprocessor2d.cxx125
-rw-r--r--drawinglayer/source/processor3d/baseprocessor3d.cxx8
-rw-r--r--drawinglayer/source/processor3d/cutfindprocessor3d.cxx14
-rw-r--r--drawinglayer/source/processor3d/defaultprocessor3d.cxx26
-rw-r--r--drawinglayer/source/processor3d/geometry2dextractor.cxx6
-rw-r--r--drawinglayer/source/processor3d/shadow3dextractor.cxx28
-rw-r--r--drawinglayer/source/processor3d/zbufferprocessor3d.cxx90
-rw-r--r--drawinglayer/source/texture/texture.cxx20
-rw-r--r--drawinglayer/source/texture/texture3d.cxx18
-rw-r--r--dtrans/inc/pch/precompiled_dtrans.cxx2
-rw-r--r--dtrans/inc/pch/precompiled_dtrans.hxx2
-rw-r--r--dtrans/source/cnttype/mcnttfactory.cxx14
-rw-r--r--dtrans/source/cnttype/mcnttfactory.hxx18
-rw-r--r--dtrans/source/cnttype/mcnttype.cxx70
-rw-r--r--dtrans/source/cnttype/mcnttype.hxx24
-rw-r--r--dtrans/source/cnttype/mcnttype.xml48
-rw-r--r--dtrans/source/cnttype/mctfentry.cxx38
-rw-r--r--dtrans/source/cnttype/wbench/testcnttype.cxx42
-rw-r--r--dtrans/source/generic/clipboardmanager.cxx64
-rw-r--r--dtrans/source/generic/clipboardmanager.hxx24
-rw-r--r--dtrans/source/generic/dtrans.cxx24
-rw-r--r--dtrans/source/generic/dtrans.xml12
-rw-r--r--dtrans/source/generic/generic_clipboard.cxx26
-rw-r--r--dtrans/source/generic/generic_clipboard.hxx30
-rw-r--r--dtrans/source/inc/DtObjFactory.hxx4
-rw-r--r--dtrans/source/inc/MtaOleClipb.hxx34
-rw-r--r--dtrans/source/os2/clipb/OS2Bitmap.cxx60
-rw-r--r--dtrans/source/os2/clipb/Os2Clipboard.cxx48
-rw-r--r--dtrans/source/os2/clipb/Os2Clipboard.hxx32
-rw-r--r--dtrans/source/os2/clipb/Os2Service.cxx16
-rw-r--r--dtrans/source/os2/clipb/Os2Transferable.cxx14
-rw-r--r--dtrans/source/os2/clipb/Os2Transferable.hxx32
-rw-r--r--dtrans/source/os2/clipb/sysdtrans.xml54
-rw-r--r--dtrans/source/test/test_dtrans.cxx110
-rw-r--r--dtrans/source/win32/clipb/APNDataObject.hxx10
-rw-r--r--dtrans/source/win32/clipb/WinClipbImpl.cxx58
-rw-r--r--dtrans/source/win32/clipb/WinClipbImpl.hxx40
-rw-r--r--dtrans/source/win32/clipb/WinClipboard.cxx58
-rw-r--r--dtrans/source/win32/clipb/WinClipboard.hxx70
-rw-r--r--dtrans/source/win32/clipb/sysdtrans.xml54
-rw-r--r--dtrans/source/win32/clipb/wcbentry.cxx38
-rw-r--r--dtrans/source/win32/dnd/dnd.xml70
-rw-r--r--dtrans/source/win32/dnd/dndentry.cxx34
-rw-r--r--dtrans/source/win32/dnd/globals.cxx12
-rw-r--r--dtrans/source/win32/dnd/globals.hxx22
-rw-r--r--dtrans/source/win32/dnd/idroptarget.cxx18
-rw-r--r--dtrans/source/win32/dnd/idroptarget.hxx24
-rw-r--r--dtrans/source/win32/dnd/source.cxx8
-rw-r--r--dtrans/source/win32/dnd/source.hxx2
-rw-r--r--dtrans/source/win32/dnd/sourcecontext.cxx2
-rw-r--r--dtrans/source/win32/dnd/sourcecontext.hxx14
-rw-r--r--dtrans/source/win32/dnd/target.cxx6
-rw-r--r--dtrans/source/win32/dnd/target.hxx6
-rw-r--r--dtrans/source/win32/dnd/targetdragcontext.cxx4
-rw-r--r--dtrans/source/win32/dnd/targetdragcontext.hxx6
-rw-r--r--dtrans/source/win32/dnd/targetdropcontext.cxx10
-rw-r--r--dtrans/source/win32/dnd/targetdropcontext.hxx16
-rw-r--r--dtrans/source/win32/dtobj/APNDataObject.cxx90
-rw-r--r--dtrans/source/win32/dtobj/APNDataObject.hxx10
-rw-r--r--dtrans/source/win32/dtobj/DOTransferable.cxx174
-rw-r--r--dtrans/source/win32/dtobj/DOTransferable.hxx46
-rw-r--r--dtrans/source/win32/dtobj/DTransHelper.cxx2
-rw-r--r--dtrans/source/win32/dtobj/DTransHelper.hxx36
-rw-r--r--dtrans/source/win32/dtobj/DataFmtTransl.cxx76
-rw-r--r--dtrans/source/win32/dtobj/DataFmtTransl.hxx14
-rw-r--r--dtrans/source/win32/dtobj/DtObjFactory.cxx4
-rw-r--r--dtrans/source/win32/dtobj/Fetc.cxx42
-rw-r--r--dtrans/source/win32/dtobj/Fetc.hxx4
-rw-r--r--dtrans/source/win32/dtobj/FetcList.cxx180
-rw-r--r--dtrans/source/win32/dtobj/FetcList.hxx52
-rw-r--r--dtrans/source/win32/dtobj/FmtFilter.cxx214
-rw-r--r--dtrans/source/win32/dtobj/FmtFilter.hxx4
-rw-r--r--dtrans/source/win32/dtobj/MimeAttrib.hxx2
-rw-r--r--dtrans/source/win32/dtobj/TxtCnvtHlp.cxx24
-rw-r--r--dtrans/source/win32/dtobj/TxtCnvtHlp.hxx12
-rw-r--r--dtrans/source/win32/dtobj/XNotifyingDataObject.cxx52
-rw-r--r--dtrans/source/win32/dtobj/XNotifyingDataObject.hxx20
-rw-r--r--dtrans/source/win32/dtobj/XTDataObject.cxx66
-rw-r--r--dtrans/source/win32/dtobj/XTDataObject.hxx52
-rw-r--r--dtrans/source/win32/ftransl/ftransl.cxx100
-rw-r--r--dtrans/source/win32/ftransl/ftransl.hxx12
-rw-r--r--dtrans/source/win32/ftransl/ftransl.xml44
-rw-r--r--dtrans/source/win32/ftransl/ftranslentry.cxx38
-rw-r--r--dtrans/source/win32/misc/ImplHelper.cxx64
-rw-r--r--dtrans/source/win32/misc/ImplHelper.hxx16
-rw-r--r--dtrans/source/win32/misc/WinClip.hxx2
-rw-r--r--dtrans/source/win32/mtaole/MtaOleClipb.cxx308
-rw-r--r--dtrans/source/win32/workbench/XTDo.cxx42
-rw-r--r--dtrans/source/win32/workbench/XTDo.hxx28
-rw-r--r--dtrans/source/win32/workbench/test_wincb.cxx92
-rw-r--r--dtrans/source/win32/workbench/testmarshal.cxx82
-rw-r--r--dtrans/test/win32/dnd/atlwindow.cxx102
-rw-r--r--dtrans/test/win32/dnd/atlwindow.hxx2
-rw-r--r--dtrans/test/win32/dnd/dndTest.cxx26
-rw-r--r--dtrans/test/win32/dnd/sourcelistener.cxx14
-rw-r--r--dtrans/test/win32/dnd/sourcelistener.hxx14
-rw-r--r--dtrans/test/win32/dnd/targetlistener.cxx34
-rw-r--r--dtrans/test/win32/dnd/targetlistener.hxx14
-rw-r--r--dtrans/test/win32/dnd/transferable.cxx28
-rw-r--r--dtrans/test/win32/dnd/transferable.hxx22
-rw-r--r--editeng/inc/editeng.hrc10
-rw-r--r--editeng/inc/editeng/AccessibleComponentBase.hxx38
-rw-r--r--editeng/inc/editeng/AccessibleContextBase.hxx74
-rw-r--r--editeng/inc/editeng/AccessibleEditableTextPara.hxx32
-rw-r--r--editeng/inc/editeng/AccessibleImageBullet.hxx38
-rw-r--r--editeng/inc/editeng/AccessibleParaManager.hxx30
-rw-r--r--editeng/inc/editeng/AccessibleSelectionBase.hxx2
-rw-r--r--editeng/inc/editeng/AccessibleStaticTextBase.hxx2
-rw-r--r--editeng/inc/editeng/AccessibleStringWrap.hxx10
-rw-r--r--editeng/inc/editeng/SpellPortions.hxx10
-rw-r--r--editeng/inc/editeng/UnoForbiddenCharsTable.hxx2
-rw-r--r--editeng/inc/editeng/acorrcfg.hxx2
-rw-r--r--editeng/inc/editeng/adjitem.hxx26
-rw-r--r--editeng/inc/editeng/akrnitem.hxx4
-rw-r--r--editeng/inc/editeng/blnkitem.hxx4
-rw-r--r--editeng/inc/editeng/bolnitem.hxx2
-rw-r--r--editeng/inc/editeng/borderline.hxx30
-rw-r--r--editeng/inc/editeng/boxitem.hxx122
-rw-r--r--editeng/inc/editeng/brkitem.hxx28
-rw-r--r--editeng/inc/editeng/brshitem.hxx62
-rw-r--r--editeng/inc/editeng/bulitem.hxx2
-rw-r--r--editeng/inc/editeng/charhiddenitem.hxx2
-rw-r--r--editeng/inc/editeng/charreliefitem.hxx14
-rw-r--r--editeng/inc/editeng/charrotateitem.hxx24
-rw-r--r--editeng/inc/editeng/charscaleitem.hxx10
-rw-r--r--editeng/inc/editeng/cmapitem.hxx18
-rw-r--r--editeng/inc/editeng/cntritem.hxx4
-rw-r--r--editeng/inc/editeng/colritem.hxx26
-rw-r--r--editeng/inc/editeng/crsditem.hxx22
-rw-r--r--editeng/inc/editeng/cscoitem.hxx10
-rw-r--r--editeng/inc/editeng/editdata.hxx196
-rwxr-xr-xediteng/inc/editeng/editeng.hxx384
-rw-r--r--editeng/inc/editeng/editengdllapi.h2
-rw-r--r--editeng/inc/editeng/editerr.hxx2
-rw-r--r--editeng/inc/editeng/editids.hrc86
-rw-r--r--editeng/inc/editeng/editobj.hxx96
-rw-r--r--editeng/inc/editeng/editrids.hrc652
-rw-r--r--editeng/inc/editeng/editstat.hxx138
-rw-r--r--editeng/inc/editeng/editund2.hxx28
-rw-r--r--editeng/inc/editeng/editview.hxx190
-rw-r--r--editeng/inc/editeng/edtdlg.hxx54
-rw-r--r--editeng/inc/editeng/eedata.hxx14
-rw-r--r--editeng/inc/editeng/eeitem.hxx116
-rw-r--r--editeng/inc/editeng/eeitemid.hxx90
-rw-r--r--editeng/inc/editeng/eerdll.hxx10
-rw-r--r--editeng/inc/editeng/emphitem.hxx18
-rw-r--r--editeng/inc/editeng/escpitem.hxx32
-rw-r--r--editeng/inc/editeng/fhgtitem.hxx32
-rw-r--r--editeng/inc/editeng/flditem.hxx280
-rw-r--r--editeng/inc/editeng/flstitem.hxx10
-rw-r--r--editeng/inc/editeng/fontitem.hxx12
-rw-r--r--editeng/inc/editeng/forbiddencharacterstable.hxx10
-rw-r--r--editeng/inc/editeng/forbiddenruleitem.hxx8
-rw-r--r--editeng/inc/editeng/frmdir.hxx2
-rw-r--r--editeng/inc/editeng/frmdiritem.hxx12
-rw-r--r--editeng/inc/editeng/fwdtitem.hxx22
-rw-r--r--editeng/inc/editeng/hangulhanja.hxx50
-rw-r--r--editeng/inc/editeng/hngpnctitem.hxx8
-rw-r--r--editeng/inc/editeng/hyznitem.hxx14
-rw-r--r--editeng/inc/editeng/itemtype.hxx2
-rw-r--r--editeng/inc/editeng/keepitem.hxx8
-rw-r--r--editeng/inc/editeng/kernitem.hxx14
-rw-r--r--editeng/inc/editeng/langitem.hxx14
-rw-r--r--editeng/inc/editeng/lcolitem.hxx2
-rw-r--r--editeng/inc/editeng/lrspitem.hxx42
-rw-r--r--editeng/inc/editeng/lspcitem.hxx22
-rw-r--r--editeng/inc/editeng/measfld.hxx2
-rw-r--r--editeng/inc/editeng/memberids.hrc100
-rw-r--r--editeng/inc/editeng/mutxhelp.hxx2
-rw-r--r--editeng/inc/editeng/nhypitem.hxx6
-rw-r--r--editeng/inc/editeng/nlbkitem.hxx6
-rw-r--r--editeng/inc/editeng/numdef.hxx6
-rw-r--r--editeng/inc/editeng/numitem.hxx216
-rw-r--r--editeng/inc/editeng/opaqitem.hxx4
-rw-r--r--editeng/inc/editeng/optitems.hxx16
-rw-r--r--editeng/inc/editeng/orphitem.hxx4
-rw-r--r--editeng/inc/editeng/outliner.hxx307
-rw-r--r--editeng/inc/editeng/outlobj.hxx6
-rw-r--r--editeng/inc/editeng/paperinf.hxx2
-rw-r--r--editeng/inc/editeng/paragraphdata.hxx4
-rw-r--r--editeng/inc/editeng/paravertalignitem.hxx12
-rw-r--r--editeng/inc/editeng/pbinitem.hxx10
-rw-r--r--editeng/inc/editeng/pgrditem.hxx4
-rw-r--r--editeng/inc/editeng/pmdlitem.hxx6
-rw-r--r--editeng/inc/editeng/postitem.hxx20
-rw-r--r--editeng/inc/editeng/prntitem.hxx4
-rw-r--r--editeng/inc/editeng/protitem.hxx12
-rw-r--r--editeng/inc/editeng/prszitem.hxx6
-rw-r--r--editeng/inc/editeng/scriptspaceitem.hxx8
-rw-r--r--editeng/inc/editeng/scripttypeitem.hxx2
-rw-r--r--editeng/inc/editeng/shaditem.hxx44
-rw-r--r--editeng/inc/editeng/shdditem.hxx4
-rw-r--r--editeng/inc/editeng/sizeitem.hxx20
-rw-r--r--editeng/inc/editeng/spltitem.hxx8
-rwxr-xr-xediteng/inc/editeng/splwrap.hxx74
-rw-r--r--editeng/inc/editeng/svxacorr.hxx132
-rw-r--r--editeng/inc/editeng/svxenum.hxx12
-rw-r--r--editeng/inc/editeng/svxfont.hxx16
-rw-r--r--editeng/inc/editeng/svxrtf.hxx144
-rw-r--r--editeng/inc/editeng/swafopt.hxx2
-rw-r--r--editeng/inc/editeng/tstpitem.hxx24
-rw-r--r--editeng/inc/editeng/twolinesitem.hxx30
-rw-r--r--editeng/inc/editeng/txtrange.hxx22
-rw-r--r--editeng/inc/editeng/udlnitem.hxx32
-rw-r--r--editeng/inc/editeng/ulspitem.hxx24
-rw-r--r--editeng/inc/editeng/unoedhlp.hxx28
-rw-r--r--editeng/inc/editeng/unoedprx.hxx142
-rw-r--r--editeng/inc/editeng/unoedsrc.hxx114
-rw-r--r--editeng/inc/editeng/unofdesc.hxx2
-rw-r--r--editeng/inc/editeng/unofield.hxx44
-rw-r--r--editeng/inc/editeng/unofored.hxx78
-rw-r--r--editeng/inc/editeng/unoforou.hxx94
-rw-r--r--editeng/inc/editeng/unoipset.hxx8
-rw-r--r--editeng/inc/editeng/unolingu.hxx102
-rw-r--r--editeng/inc/editeng/unonrule.hxx6
-rw-r--r--editeng/inc/editeng/unopracc.hxx8
-rw-r--r--editeng/inc/editeng/unoprnms.hxx628
-rw-r--r--editeng/inc/editeng/unotext.hxx278
-rw-r--r--editeng/inc/editeng/unoviwed.hxx22
-rw-r--r--editeng/inc/editeng/unoviwou.hxx28
-rw-r--r--editeng/inc/editeng/wghtitem.hxx26
-rw-r--r--editeng/inc/editeng/widwitem.hxx4
-rw-r--r--editeng/inc/editeng/writingmodeitem.hxx12
-rw-r--r--editeng/inc/editeng/wrlmitem.hxx6
-rw-r--r--editeng/inc/editeng/xmlcnitm.hxx10
-rw-r--r--editeng/inc/editxml.hxx2
-rw-r--r--editeng/inc/helpid.hrc4
-rw-r--r--editeng/inc/pch/precompiled_editeng.cxx2
-rw-r--r--editeng/source/accessibility/AccessibleComponentBase.cxx38
-rw-r--r--editeng/source/accessibility/AccessibleContextBase.cxx28
-rw-r--r--editeng/source/accessibility/AccessibleEditableTextPara.cxx62
-rw-r--r--editeng/source/accessibility/AccessibleHyperlink.cxx40
-rw-r--r--editeng/source/accessibility/AccessibleHyperlink.hxx10
-rw-r--r--editeng/source/accessibility/AccessibleImageBullet.cxx20
-rw-r--r--editeng/source/accessibility/AccessibleParaManager.cxx18
-rw-r--r--editeng/source/accessibility/AccessibleSelectionBase.cxx8
-rw-r--r--editeng/source/accessibility/AccessibleStaticTextBase.cxx38
-rw-r--r--editeng/source/accessibility/AccessibleStringWrap.cxx6
-rw-r--r--editeng/source/accessibility/accessibility.src2
-rw-r--r--editeng/source/editeng/editattr.cxx14
-rw-r--r--editeng/source/editeng/editattr.hxx124
-rw-r--r--editeng/source/editeng/editdbg.cxx4
-rw-r--r--editeng/source/editeng/editdbg.hxx16
-rw-r--r--editeng/source/editeng/editdoc.cxx148
-rw-r--r--editeng/source/editeng/editdoc.hxx550
-rw-r--r--editeng/source/editeng/editdoc2.cxx46
-rw-r--r--editeng/source/editeng/editeng.cxx78
-rw-r--r--editeng/source/editeng/editeng.src2
-rw-r--r--editeng/source/editeng/editobj.cxx46
-rw-r--r--editeng/source/editeng/editobj2.hxx238
-rw-r--r--editeng/source/editeng/editsel.cxx14
-rw-r--r--editeng/source/editeng/editsel.hxx38
-rw-r--r--editeng/source/editeng/editstt2.hxx66
-rw-r--r--editeng/source/editeng/editundo.cxx40
-rw-r--r--editeng/source/editeng/editundo.hxx180
-rwxr-xr-xediteng/source/editeng/editview.cxx32
-rw-r--r--editeng/source/editeng/edtspell.cxx28
-rw-r--r--editeng/source/editeng/edtspell.hxx100
-rw-r--r--editeng/source/editeng/eehtml.cxx102
-rw-r--r--editeng/source/editeng/eehtml.hxx68
-rw-r--r--editeng/source/editeng/eeng_pch.cxx2
-rw-r--r--editeng/source/editeng/eeng_pch.hxx2
-rw-r--r--editeng/source/editeng/eeobj.cxx4
-rw-r--r--editeng/source/editeng/eeobj.hxx40
-rw-r--r--editeng/source/editeng/eerdll.cxx2
-rw-r--r--editeng/source/editeng/eerdll2.hxx16
-rw-r--r--editeng/source/editeng/eertfpar.cxx68
-rw-r--r--editeng/source/editeng/eertfpar.hxx84
-rwxr-xr-xediteng/source/editeng/impedit.cxx64
-rwxr-xr-xediteng/source/editeng/impedit.hxx919
-rwxr-xr-xediteng/source/editeng/impedit2.cxx244
-rw-r--r--editeng/source/editeng/impedit3.cxx281
-rwxr-xr-xediteng/source/editeng/impedit4.cxx513
-rw-r--r--editeng/source/editeng/impedit5.cxx56
-rw-r--r--editeng/source/editeng/textconv.cxx70
-rw-r--r--editeng/source/editeng/textconv.hxx20
-rw-r--r--editeng/source/items/bulitem.cxx92
-rw-r--r--editeng/source/items/charhiddenitem.cxx2
-rw-r--r--editeng/source/items/flditem.cxx42
-rw-r--r--editeng/source/items/frmitems.cxx330
-rw-r--r--editeng/source/items/itemtype.cxx2
-rw-r--r--editeng/source/items/numitem.cxx108
-rw-r--r--editeng/source/items/optitems.cxx26
-rw-r--r--editeng/source/items/page.src2
-rw-r--r--editeng/source/items/paperinf.cxx84
-rw-r--r--editeng/source/items/paraitem.cxx94
-rw-r--r--editeng/source/items/svdfield.cxx2
-rw-r--r--editeng/source/items/svxfont.cxx60
-rw-r--r--editeng/source/items/svxitems.src2
-rw-r--r--editeng/source/items/textitem.cxx152
-rw-r--r--editeng/source/items/writingmodeitem.cxx2
-rw-r--r--editeng/source/items/xmlcnitm.cxx2
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectExport.cxx44
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectExport.hxx12
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectImport.cxx10
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectImport.hxx8
-rw-r--r--editeng/source/misc/acorrcfg.cxx52
-rwxr-xr-xediteng/source/misc/edtdlg.cxx2
-rw-r--r--editeng/source/misc/forbiddencharacterstable.cxx2
-rw-r--r--editeng/source/misc/hangulhanja.cxx110
-rw-r--r--editeng/source/misc/lingu.src2
-rw-r--r--editeng/source/misc/splwrap.cxx96
-rw-r--r--editeng/source/misc/svxacorr.cxx224
-rw-r--r--editeng/source/misc/swafopt.cxx6
-rw-r--r--editeng/source/misc/txtrange.cxx14
-rwxr-xr-xediteng/source/misc/unolingu.cxx86
-rw-r--r--editeng/source/outliner/outl_pch.cxx2
-rw-r--r--editeng/source/outliner/outl_pch.hxx2
-rw-r--r--editeng/source/outliner/outleeng.cxx15
-rw-r--r--editeng/source/outliner/outleeng.hxx34
-rw-r--r--editeng/source/outliner/outlin2.cxx4
-rw-r--r--editeng/source/outliner/outliner.cxx77
-rw-r--r--editeng/source/outliner/outliner.src2
-rw-r--r--editeng/source/outliner/outlobj.cxx6
-rw-r--r--editeng/source/outliner/outlundo.cxx2
-rw-r--r--editeng/source/outliner/outlundo.hxx48
-rwxr-xr-xediteng/source/outliner/outlvw.cxx46
-rw-r--r--editeng/source/outliner/paralist.cxx8
-rw-r--r--editeng/source/outliner/paralist.hxx40
-rw-r--r--editeng/source/rtf/rtfgrf.cxx70
-rw-r--r--editeng/source/rtf/rtfitem.cxx120
-rw-r--r--editeng/source/rtf/svxrtf.cxx136
-rw-r--r--editeng/source/uno/UnoForbiddenCharsTable.cxx2
-rw-r--r--editeng/source/uno/unoedhlp.cxx16
-rw-r--r--editeng/source/uno/unoedprx.cxx24
-rw-r--r--editeng/source/uno/unoedsrc.cxx4
-rw-r--r--editeng/source/uno/unofdesc.cxx12
-rw-r--r--editeng/source/uno/unofield.cxx136
-rw-r--r--editeng/source/uno/unofored.cxx40
-rw-r--r--editeng/source/uno/unoforou.cxx18
-rw-r--r--editeng/source/uno/unoipset.cxx14
-rw-r--r--editeng/source/uno/unonrule.cxx6
-rw-r--r--editeng/source/uno/unopracc.cxx8
-rw-r--r--editeng/source/uno/unotext.cxx114
-rw-r--r--editeng/source/uno/unotext2.cxx54
-rw-r--r--editeng/source/uno/unoviwed.cxx2
-rw-r--r--editeng/source/uno/unoviwou.cxx2
-rw-r--r--editeng/source/xml/editsource.hxx10
-rw-r--r--editeng/source/xml/xmltxtexp.cxx38
-rw-r--r--editeng/source/xml/xmltxtimp.cxx22
-rw-r--r--embeddedobj/inc/pch/precompiled_embeddedobj.cxx2
-rw-r--r--embeddedobj/inc/pch/precompiled_embeddedobj.hxx2
-rw-r--r--embeddedobj/qa/embedding/EmbeddingUnitTest.java2
-rw-r--r--embeddedobj/qa/embedding/Test01.java4
-rw-r--r--embeddedobj/source/commonembedding/embedobj.cxx6
-rw-r--r--embeddedobj/source/commonembedding/inplaceobj.cxx2
-rw-r--r--embeddedobj/source/commonembedding/miscobj.cxx10
-rw-r--r--embeddedobj/source/commonembedding/persistence.cxx20
-rw-r--r--embeddedobj/source/commonembedding/register.cxx2
-rw-r--r--embeddedobj/source/commonembedding/specialobject.cxx4
-rw-r--r--embeddedobj/source/commonembedding/visobj.cxx2
-rw-r--r--embeddedobj/source/commonembedding/xfactory.cxx2
-rw-r--r--embeddedobj/source/commonembedding/xfactory.hxx2
-rw-r--r--embeddedobj/source/general/docholder.cxx42
-rw-r--r--embeddedobj/source/general/dummyobject.cxx4
-rw-r--r--embeddedobj/source/general/intercept.cxx92
-rw-r--r--embeddedobj/source/general/xcreator.cxx2
-rw-r--r--embeddedobj/source/inc/closepreventer.hxx2
-rw-r--r--embeddedobj/source/inc/commonembobj.hxx2
-rw-r--r--embeddedobj/source/inc/docholder.hxx2
-rw-r--r--embeddedobj/source/inc/dummyobject.hxx4
-rw-r--r--embeddedobj/source/inc/intercept.hxx82
-rw-r--r--embeddedobj/source/inc/oleembobj.hxx12
-rw-r--r--embeddedobj/source/inc/specialobject.hxx2
-rw-r--r--embeddedobj/source/inc/targetstatecontrol.hxx2
-rw-r--r--embeddedobj/source/inc/xcreator.hxx4
-rw-r--r--embeddedobj/source/msole/advisesink.cxx2
-rw-r--r--embeddedobj/source/msole/advisesink.hxx2
-rw-r--r--embeddedobj/source/msole/closepreventer.cxx2
-rw-r--r--embeddedobj/source/msole/graphconvert.cxx8
-rw-r--r--embeddedobj/source/msole/mtnotification.hxx6
-rw-r--r--embeddedobj/source/msole/olecomponent.cxx38
-rw-r--r--embeddedobj/source/msole/olecomponent.hxx2
-rw-r--r--embeddedobj/source/msole/oleembed.cxx34
-rw-r--r--embeddedobj/source/msole/olemisc.cxx20
-rw-r--r--embeddedobj/source/msole/olepersist.cxx118
-rw-r--r--embeddedobj/source/msole/oleregister.cxx10
-rw-r--r--embeddedobj/source/msole/olevisual.cxx12
-rw-r--r--embeddedobj/source/msole/olewrapclient.cxx2
-rw-r--r--embeddedobj/source/msole/olewrapclient.hxx2
-rw-r--r--embeddedobj/source/msole/ownview.cxx40
-rw-r--r--embeddedobj/source/msole/ownview.hxx4
-rw-r--r--embeddedobj/source/msole/platform.h2
-rw-r--r--embeddedobj/source/msole/xdialogcreator.cxx2
-rw-r--r--embeddedobj/source/msole/xdialogcreator.hxx4
-rw-r--r--embeddedobj/source/msole/xolefactory.cxx2
-rw-r--r--embeddedobj/source/msole/xolefactory.hxx4
-rw-r--r--embeddedobj/test/Container1/BitmapPainter.java22
-rw-r--r--embeddedobj/test/Container1/EmbedContApp.java176
-rw-r--r--embeddedobj/test/Container1/EmbedContFrame.java16
-rw-r--r--embeddedobj/test/Container1/JavaWindowPeerFake.java2
-rw-r--r--embeddedobj/test/Container1/NativeView.java2
-rw-r--r--embeddedobj/test/Container1/PaintThread.java4
-rw-r--r--embeddedobj/test/Container1/WindowHelper.java12
-rw-r--r--embeddedobj/test/Container1/nativelib/nativeview.c8
-rw-r--r--embeddedobj/test/Container1/nativelib/nativeview.h2
-rw-r--r--embeddedobj/test/MainThreadExecutor/register.cxx10
-rw-r--r--embeddedobj/test/MainThreadExecutor/xexecutor.cxx4
-rw-r--r--embeddedobj/test/MainThreadExecutor/xexecutor.hxx6
-rw-r--r--embeddedobj/test/mtexecutor/bitmapcreator.cxx2
-rw-r--r--embeddedobj/test/mtexecutor/bitmapcreator.hxx4
-rw-r--r--embeddedobj/test/mtexecutor/mainthreadexecutor.cxx4
-rw-r--r--embeddedobj/test/mtexecutor/mainthreadexecutor.hxx4
-rw-r--r--embeddedobj/test/mtexecutor/mteregister.cxx12
-rw-r--r--embedserv/source/embed/docholder.cxx54
-rwxr-xr-xembedserv/source/embed/ed_idataobj.cxx26
-rw-r--r--embedserv/source/embed/ed_iinplace.cxx8
-rwxr-xr-xembedserv/source/embed/ed_ioleobject.cxx6
-rwxr-xr-xembedserv/source/embed/ed_ipersiststr.cxx24
-rwxr-xr-xembedserv/source/embed/esdll.cxx2
-rwxr-xr-xembedserv/source/embed/guid.cxx4
-rw-r--r--embedserv/source/embed/iipaobj.cxx12
-rw-r--r--embedserv/source/embed/intercept.cxx130
-rwxr-xr-xembedserv/source/embed/register.cxx2
-rwxr-xr-xembedserv/source/embed/servprov.cxx30
-rw-r--r--embedserv/source/embed/syswinwrapper.cxx26
-rw-r--r--embedserv/source/embed/tracker.cxx124
-rw-r--r--embedserv/source/embed/xwin.cxx106
-rwxr-xr-xembedserv/source/inc/common.h2
-rw-r--r--embedserv/source/inc/docholder.hxx8
-rwxr-xr-xembedserv/source/inc/embeddoc.hxx28
-rw-r--r--embedserv/source/inc/embeddocaccess.hxx14
-rw-r--r--embedserv/source/inc/embservconst.h4
-rw-r--r--embedserv/source/inc/iipaobj.hxx4
-rw-r--r--embedserv/source/inc/intercept.hxx96
-rwxr-xr-xembedserv/source/inc/servprov.hxx14
-rwxr-xr-xembedserv/source/inc/stdafx.h2
-rw-r--r--embedserv/source/inc/syswinwrapper.hxx2
-rw-r--r--embedserv/source/inc/xwin.hxx128
-rw-r--r--embedserv/source/inprocserv/advisesink.cxx2
-rw-r--r--embedserv/source/inprocserv/advisesink.hxx4
-rw-r--r--embedserv/source/inprocserv/dllentry.cxx10
-rw-r--r--embedserv/source/inprocserv/inprocembobj.cxx108
-rw-r--r--embedserv/source/inprocserv/inprocembobj.h4
-rw-r--r--embedserv/source/inprocserv/smartpointer.hxx10
-rw-r--r--eventattacher/source/eventattacher.cxx160
-rw-r--r--extensions/inc/abpilot.hrc2
-rw-r--r--extensions/inc/appsettings.hxx2
-rw-r--r--extensions/inc/bibliography.hrc2
-rw-r--r--extensions/inc/dbpilots.hrc10
-rw-r--r--extensions/inc/extensio.hrc14
-rw-r--r--extensions/inc/pch/precompiled_extensions.cxx2
-rw-r--r--extensions/inc/pch/precompiled_extensions.hxx2
-rw-r--r--extensions/inc/propctrlr.hrc2
-rw-r--r--extensions/inc/ucbhelper/ext_content.hxx86
-rw-r--r--extensions/inc/update.hrc2
-rw-r--r--extensions/qa/complex/extensions/OfficeResourceLoader.java2
-rw-r--r--extensions/qa/complex/extensions/orl_de.src2
-rw-r--r--extensions/qa/complex/extensions/orl_en-US.src2
-rw-r--r--extensions/qa/integration/extensions/ComponentFactory.java2
-rw-r--r--extensions/qa/integration/extensions/ConsoleWait.java2
-rw-r--r--extensions/qa/integration/extensions/Frame.java2
-rw-r--r--extensions/qa/integration/extensions/MethodHandler.java2
-rw-r--r--extensions/qa/integration/extensions/ObjectInspector.java2
-rw-r--r--extensions/qa/integration/extensions/ServicesHandler.java2
-rw-r--r--extensions/qa/integration/extensions/TestSkeleton.java2
-rw-r--r--extensions/source/abpilot/abpfinalpage.cxx20
-rw-r--r--extensions/source/abpilot/abpfinalpage.hxx36
-rw-r--r--extensions/source/abpilot/abpresid.hrc140
-rw-r--r--extensions/source/abpilot/abpservices.cxx10
-rw-r--r--extensions/source/abpilot/abptypes.hxx4
-rw-r--r--extensions/source/abpilot/abspage.cxx6
-rw-r--r--extensions/source/abpilot/abspage.hxx14
-rw-r--r--extensions/source/abpilot/abspilot.cxx12
-rw-r--r--extensions/source/abpilot/abspilot.hxx32
-rw-r--r--extensions/source/abpilot/abspilot.src136
-rw-r--r--extensions/source/abpilot/addresssettings.hxx14
-rw-r--r--extensions/source/abpilot/admininvokationimpl.cxx10
-rw-r--r--extensions/source/abpilot/admininvokationimpl.hxx6
-rw-r--r--extensions/source/abpilot/admininvokationpage.cxx10
-rw-r--r--extensions/source/abpilot/admininvokationpage.hxx16
-rw-r--r--extensions/source/abpilot/datasourcehandling.cxx52
-rw-r--r--extensions/source/abpilot/datasourcehandling.hxx38
-rw-r--r--extensions/source/abpilot/fieldmappingimpl.cxx62
-rw-r--r--extensions/source/abpilot/fieldmappingimpl.hxx12
-rw-r--r--extensions/source/abpilot/fieldmappingpage.cxx10
-rw-r--r--extensions/source/abpilot/fieldmappingpage.hxx16
-rw-r--r--extensions/source/abpilot/moduleabp.cxx2
-rw-r--r--extensions/source/abpilot/tableselectionpage.cxx14
-rw-r--r--extensions/source/abpilot/tableselectionpage.hxx16
-rw-r--r--extensions/source/abpilot/typeselectionpage.cxx32
-rw-r--r--extensions/source/abpilot/typeselectionpage.hxx40
-rw-r--r--extensions/source/abpilot/unodialogabp.cxx6
-rw-r--r--extensions/source/abpilot/unodialogabp.hxx12
-rw-r--r--extensions/source/activex/main/SOActionsApproval.cpp2
-rw-r--r--extensions/source/activex/main/SOActionsApproval.h2
-rw-r--r--extensions/source/activex/main/SOActiveX.cpp42
-rw-r--r--extensions/source/activex/main/SOActiveX.h42
-rw-r--r--extensions/source/activex/main/SOComWindowPeer.cpp2
-rw-r--r--extensions/source/activex/main/SODispatchInterceptor.cpp16
-rw-r--r--extensions/source/activex/main/SODispatchInterceptor.h8
-rw-r--r--extensions/source/activex/main/com_uno_helper.h28
-rw-r--r--extensions/source/activex/main/resource.h2
-rw-r--r--extensions/source/activex/main/so_activex.cpp104
-rw-r--r--extensions/source/activex/msidl/so_activex.idl44
-rw-r--r--extensions/source/bibliography/bib.hrc50
-rw-r--r--extensions/source/bibliography/bib.src2
-rw-r--r--extensions/source/bibliography/bibbeam.cxx32
-rw-r--r--extensions/source/bibliography/bibbeam.hxx28
-rw-r--r--extensions/source/bibliography/bibconfig.cxx26
-rw-r--r--extensions/source/bibliography/bibconfig.hxx74
-rw-r--r--extensions/source/bibliography/bibcont.cxx16
-rw-r--r--extensions/source/bibliography/bibcont.hxx52
-rw-r--r--extensions/source/bibliography/bibload.cxx118
-rw-r--r--extensions/source/bibliography/bibmod.cxx8
-rw-r--r--extensions/source/bibliography/bibmod.hxx26
-rw-r--r--extensions/source/bibliography/bibprop.hrc2
-rw-r--r--extensions/source/bibliography/bibresid.hxx2
-rw-r--r--extensions/source/bibliography/bibshortcuthandler.hxx18
-rw-r--r--extensions/source/bibliography/bibtools.hxx4
-rw-r--r--extensions/source/bibliography/bibview.cxx8
-rw-r--r--extensions/source/bibliography/bibview.hxx30
-rw-r--r--extensions/source/bibliography/datman.cxx426
-rw-r--r--extensions/source/bibliography/datman.hrc16
-rw-r--r--extensions/source/bibliography/datman.hxx90
-rw-r--r--extensions/source/bibliography/datman.src4
-rw-r--r--extensions/source/bibliography/formcontrolcontainer.cxx6
-rw-r--r--extensions/source/bibliography/formcontrolcontainer.hxx18
-rw-r--r--extensions/source/bibliography/framectr.cxx76
-rw-r--r--extensions/source/bibliography/framectr.hxx58
-rw-r--r--extensions/source/bibliography/general.cxx240
-rw-r--r--extensions/source/bibliography/general.hxx82
-rw-r--r--extensions/source/bibliography/hidother.src64
-rw-r--r--extensions/source/bibliography/loadlisteneradapter.cxx6
-rw-r--r--extensions/source/bibliography/loadlisteneradapter.hxx32
-rw-r--r--extensions/source/bibliography/menu.src4
-rw-r--r--extensions/source/bibliography/sections.hrc130
-rw-r--r--extensions/source/bibliography/sections.src10
-rw-r--r--extensions/source/bibliography/toolbar.cxx36
-rw-r--r--extensions/source/bibliography/toolbar.hrc32
-rw-r--r--extensions/source/bibliography/toolbar.hxx80
-rw-r--r--extensions/source/bibliography/toolbar.src6
-rw-r--r--extensions/source/config/ldap/componentdef.cxx4
-rw-r--r--extensions/source/config/ldap/ldapaccess.cxx76
-rw-r--r--extensions/source/config/ldap/ldapaccess.hxx34
-rw-r--r--extensions/source/config/ldap/ldapuserprofilebe.cxx44
-rw-r--r--extensions/source/config/ldap/ldapuserprofilebe.hxx28
-rw-r--r--extensions/source/config/ldap/wrapldapinclude.hxx2
-rw-r--r--extensions/source/dbpilots/commonpagesdbp.cxx36
-rw-r--r--extensions/source/dbpilots/commonpagesdbp.hxx44
-rw-r--r--extensions/source/dbpilots/commonpagesdbp.src8
-rw-r--r--extensions/source/dbpilots/controlwizard.cxx88
-rw-r--r--extensions/source/dbpilots/controlwizard.hxx46
-rw-r--r--extensions/source/dbpilots/dbpilots.src32
-rw-r--r--extensions/source/dbpilots/dbpresid.hrc206
-rw-r--r--extensions/source/dbpilots/dbpservices.cxx10
-rw-r--r--extensions/source/dbpilots/dbptools.cxx4
-rw-r--r--extensions/source/dbpilots/dbptools.hxx4
-rw-r--r--extensions/source/dbpilots/dbptypes.hxx4
-rw-r--r--extensions/source/dbpilots/gridpages.src2
-rw-r--r--extensions/source/dbpilots/gridwizard.cxx52
-rw-r--r--extensions/source/dbpilots/gridwizard.hxx40
-rw-r--r--extensions/source/dbpilots/groupboxpages.src2
-rw-r--r--extensions/source/dbpilots/groupboxwiz.cxx76
-rw-r--r--extensions/source/dbpilots/groupboxwiz.hxx90
-rw-r--r--extensions/source/dbpilots/listcombopages.src2
-rw-r--r--extensions/source/dbpilots/listcombowizard.cxx36
-rw-r--r--extensions/source/dbpilots/listcombowizard.hxx78
-rw-r--r--extensions/source/dbpilots/moduledbp.cxx2
-rw-r--r--extensions/source/dbpilots/optiongrouplayouter.cxx14
-rw-r--r--extensions/source/dbpilots/optiongrouplayouter.hxx8
-rw-r--r--extensions/source/dbpilots/unoautopilot.hxx10
-rw-r--r--extensions/source/dbpilots/unoautopilot.inl4
-rw-r--r--extensions/source/dbpilots/wizardcontext.hxx4
-rw-r--r--extensions/source/dbpilots/wizardservices.cxx4
-rw-r--r--extensions/source/dbpilots/wizardservices.hxx10
-rw-r--r--extensions/source/inc/componentmodule.cxx70
-rw-r--r--extensions/source/inc/componentmodule.hxx52
-rw-r--r--extensions/source/logging/consolehandler.cxx26
-rw-r--r--extensions/source/logging/csvformatter.cxx36
-rw-r--r--extensions/source/logging/filehandler.cxx24
-rw-r--r--extensions/source/logging/log_module.cxx2
-rw-r--r--extensions/source/logging/log_module.hxx2
-rw-r--r--extensions/source/logging/log_services.cxx2
-rw-r--r--extensions/source/logging/logger.cxx30
-rw-r--r--extensions/source/logging/loggerconfig.cxx2
-rw-r--r--extensions/source/logging/loggerconfig.hxx2
-rw-r--r--extensions/source/logging/loghandler.cxx2
-rw-r--r--extensions/source/logging/loghandler.hxx4
-rw-r--r--extensions/source/logging/logrecord.cxx2
-rw-r--r--extensions/source/logging/logrecord.hxx2
-rw-r--r--extensions/source/logging/methodguard.hxx2
-rw-r--r--extensions/source/logging/plaintextformatter.cxx14
-rw-r--r--extensions/source/macosx/spotlight/OOoContentDataParser.h8
-rw-r--r--extensions/source/macosx/spotlight/OOoMetaDataParser.h4
-rw-r--r--extensions/source/macosx/spotlight/OOoSpotlightImporter.h2
-rw-r--r--extensions/source/macosx/spotlight/ioapi.h2
-rw-r--r--extensions/source/macosx/spotlight/mdimporter/schema.xml4
-rw-r--r--extensions/source/macosx/spotlight/unzip.h4
-rw-r--r--extensions/source/nsplugin/source/npshell.cxx2
-rw-r--r--extensions/source/nsplugin/source/npshell.hxx2
-rw-r--r--extensions/source/nsplugin/source/ns_debug.hxx2
-rw-r--r--extensions/source/nsplugin/source/nsp_func.hxx8
-rw-r--r--extensions/source/nsplugin/source/nsp_windows.cxx16
-rw-r--r--extensions/source/nsplugin/source/nsp_windows.hxx4
-rw-r--r--extensions/source/nsplugin/source/so_closelistener.cxx2
-rw-r--r--extensions/source/nsplugin/source/so_closelistener.hxx4
-rw-r--r--extensions/source/nsplugin/source/so_env.cxx6
-rw-r--r--extensions/source/nsplugin/source/so_env.hxx6
-rw-r--r--extensions/source/nsplugin/source/so_instance.cxx130
-rw-r--r--extensions/source/nsplugin/source/so_instance.hxx14
-rw-r--r--extensions/source/nsplugin/source/so_main.cxx38
-rw-r--r--extensions/source/nsplugin/source/so_msg.hxx4
-rw-r--r--extensions/source/ole/comifaces.hxx2
-rw-r--r--extensions/source/ole/jscriptclasses.cxx26
-rw-r--r--extensions/source/ole/jscriptclasses.hxx2
-rw-r--r--extensions/source/ole/ole2uno.cxx24
-rw-r--r--extensions/source/ole/ole2uno.hxx2
-rw-r--r--extensions/source/ole/oledll.cxx2
-rwxr-xr-xextensions/source/ole/oleobjw.cxx254
-rw-r--r--extensions/source/ole/oleobjw.hxx24
-rw-r--r--extensions/source/ole/olethread.cxx14
-rw-r--r--extensions/source/ole/servprov.cxx28
-rw-r--r--extensions/source/ole/servprov.hxx82
-rw-r--r--extensions/source/ole/servreg.cxx26
-rw-r--r--extensions/source/ole/unoconversionutilities.hxx462
-rw-r--r--extensions/source/ole/unoobjw.cxx468
-rw-r--r--extensions/source/ole/unoobjw.hxx100
-rw-r--r--extensions/source/ole/unotypewrapper.cxx14
-rw-r--r--extensions/source/ole/unotypewrapper.hxx2
-rw-r--r--extensions/source/ole/windata.cxx2
-rw-r--r--extensions/source/ole/windata.hxx6
-rw-r--r--extensions/source/oooimprovecore/core.cxx2
-rw-r--r--extensions/source/oooimprovecore/oooimprovecore_module.cxx4
-rw-r--r--extensions/source/oooimprovecore/oooimprovecore_module.hxx4
-rw-r--r--extensions/source/oooimprovecore/oooimprovecore_services.cxx2
-rw-r--r--extensions/source/oooimprovement/config.cxx2
-rw-r--r--extensions/source/oooimprovement/config.hxx2
-rw-r--r--extensions/source/oooimprovement/corecontroller.cxx2
-rw-r--r--extensions/source/oooimprovement/corecontroller.hxx4
-rw-r--r--extensions/source/oooimprovement/errormail.cxx12
-rw-r--r--extensions/source/oooimprovement/errormail.hxx2
-rw-r--r--extensions/source/oooimprovement/invite_job.cxx2
-rw-r--r--extensions/source/oooimprovement/invite_job.hxx2
-rw-r--r--extensions/source/oooimprovement/logpacker.cxx8
-rw-r--r--extensions/source/oooimprovement/logpacker.hxx2
-rw-r--r--extensions/source/oooimprovement/logstorage.cxx22
-rw-r--r--extensions/source/oooimprovement/logstorage.hxx2
-rw-r--r--extensions/source/oooimprovement/myconfigurationhelper.cxx4
-rw-r--r--extensions/source/oooimprovement/myconfigurationhelper.hxx2
-rw-r--r--extensions/source/oooimprovement/onlogrotate_job.cxx2
-rw-r--r--extensions/source/oooimprovement/onlogrotate_job.hxx2
-rw-r--r--extensions/source/oooimprovement/oooimprovement_exports.cxx4
-rw-r--r--extensions/source/oooimprovement/soaprequest.cxx2
-rw-r--r--extensions/source/oooimprovement/soaprequest.hxx2
-rw-r--r--extensions/source/oooimprovement/soapsender.cxx22
-rw-r--r--extensions/source/oooimprovement/soapsender.hxx4
-rw-r--r--extensions/source/plugin/aqua/macmgr.cxx124
-rw-r--r--extensions/source/plugin/aqua/sysplug.cxx52
-rw-r--r--extensions/source/plugin/base/context.cxx36
-rw-r--r--extensions/source/plugin/base/evtlstnr.cxx2
-rw-r--r--extensions/source/plugin/base/manager.cxx2
-rw-r--r--extensions/source/plugin/base/multiplx.cxx58
-rw-r--r--extensions/source/plugin/base/nfuncs.cxx20
-rw-r--r--extensions/source/plugin/base/plcom.cxx2
-rw-r--r--extensions/source/plugin/base/plctrl.cxx34
-rw-r--r--extensions/source/plugin/base/plmodel.cxx8
-rw-r--r--extensions/source/plugin/base/service.cxx8
-rw-r--r--extensions/source/plugin/base/xplugin.cxx60
-rw-r--r--extensions/source/plugin/inc/plugin/aqua/sysplug.hxx54
-rw-r--r--extensions/source/plugin/inc/plugin/impl.hxx152
-rw-r--r--extensions/source/plugin/inc/plugin/model.hxx6
-rw-r--r--extensions/source/plugin/inc/plugin/multiplx.hxx82
-rw-r--r--extensions/source/plugin/inc/plugin/plcom.hxx10
-rw-r--r--extensions/source/plugin/inc/plugin/plctrl.hxx78
-rw-r--r--extensions/source/plugin/inc/plugin/unx/mediator.hxx46
-rw-r--r--extensions/source/plugin/inc/plugin/unx/plugcon.hxx60
-rw-r--r--extensions/source/plugin/inc/plugin/unx/sysplug.hxx6
-rw-r--r--extensions/source/plugin/inc/plugin/win/sysplug.hxx58
-rw-r--r--extensions/source/plugin/unx/mediator.cxx4
-rw-r--r--extensions/source/plugin/unx/npnapi.cxx227
-rw-r--r--extensions/source/plugin/unx/nppapi.cxx163
-rw-r--r--extensions/source/plugin/unx/npwrap.cxx38
-rw-r--r--extensions/source/plugin/unx/plugcon.cxx60
-rw-r--r--extensions/source/plugin/unx/sysplug.cxx2
-rw-r--r--extensions/source/plugin/unx/unxmgr.cxx20
-rw-r--r--extensions/source/plugin/win/sysplug.cxx4
-rw-r--r--extensions/source/plugin/win/winmgr.cxx4
-rw-r--r--extensions/source/preload/modulepreload.cxx2
-rw-r--r--extensions/source/preload/oemwiz.cxx2
-rw-r--r--extensions/source/preload/oemwiz.hxx2
-rw-r--r--extensions/source/preload/preload.hrc10
-rw-r--r--extensions/source/preload/preload.src14
-rw-r--r--extensions/source/preload/preloadservices.cxx2
-rw-r--r--extensions/source/preload/preloadservices.hxx4
-rw-r--r--extensions/source/preload/services.cxx6
-rw-r--r--extensions/source/preload/unoautopilot.hxx10
-rw-r--r--extensions/source/preload/unoautopilot.inl4
-rw-r--r--extensions/source/propctrlr/MasterDetailLinkDialog.cxx8
-rw-r--r--extensions/source/propctrlr/MasterDetailLinkDialog.hxx10
-rw-r--r--extensions/source/propctrlr/browserline.cxx2
-rw-r--r--extensions/source/propctrlr/browserline.hxx2
-rw-r--r--extensions/source/propctrlr/browserlistbox.cxx22
-rw-r--r--extensions/source/propctrlr/browserlistbox.hxx4
-rw-r--r--extensions/source/propctrlr/browserpage.cxx6
-rw-r--r--extensions/source/propctrlr/browserpage.hxx6
-rw-r--r--extensions/source/propctrlr/browserview.cxx4
-rw-r--r--extensions/source/propctrlr/browserview.hxx24
-rw-r--r--extensions/source/propctrlr/buttonnavigationhandler.cxx6
-rw-r--r--extensions/source/propctrlr/buttonnavigationhandler.hxx2
-rw-r--r--extensions/source/propctrlr/cellbindinghandler.cxx4
-rw-r--r--extensions/source/propctrlr/cellbindinghandler.hxx2
-rw-r--r--extensions/source/propctrlr/cellbindinghelper.cxx2
-rw-r--r--extensions/source/propctrlr/cellbindinghelper.hxx6
-rw-r--r--extensions/source/propctrlr/commoncontrol.cxx12
-rw-r--r--extensions/source/propctrlr/commoncontrol.hxx12
-rw-r--r--extensions/source/propctrlr/composeduiupdate.cxx8
-rw-r--r--extensions/source/propctrlr/composeduiupdate.hxx2
-rw-r--r--extensions/source/propctrlr/controlfontdialog.cxx6
-rw-r--r--extensions/source/propctrlr/controlfontdialog.hxx20
-rw-r--r--extensions/source/propctrlr/controltype.hxx2
-rw-r--r--extensions/source/propctrlr/defaultforminspection.cxx4
-rw-r--r--extensions/source/propctrlr/defaultforminspection.hxx2
-rw-r--r--extensions/source/propctrlr/defaulthelpprovider.cxx4
-rw-r--r--extensions/source/propctrlr/defaulthelpprovider.hxx2
-rw-r--r--extensions/source/propctrlr/editpropertyhandler.cxx2
-rw-r--r--extensions/source/propctrlr/editpropertyhandler.hxx2
-rw-r--r--extensions/source/propctrlr/eformshelper.cxx4
-rw-r--r--extensions/source/propctrlr/eformshelper.hxx4
-rw-r--r--extensions/source/propctrlr/eformspropertyhandler.cxx2
-rw-r--r--extensions/source/propctrlr/eformspropertyhandler.hxx2
-rw-r--r--extensions/source/propctrlr/enumrepresentation.hxx2
-rw-r--r--extensions/source/propctrlr/eventhandler.cxx38
-rw-r--r--extensions/source/propctrlr/eventhandler.hxx2
-rw-r--r--extensions/source/propctrlr/fontdialog.cxx126
-rw-r--r--extensions/source/propctrlr/fontdialog.hxx10
-rw-r--r--extensions/source/propctrlr/fontdialog.src2
-rw-r--r--extensions/source/propctrlr/fontitemids.hxx48
-rw-r--r--extensions/source/propctrlr/formbrowsertools.cxx4
-rw-r--r--extensions/source/propctrlr/formbrowsertools.hxx6
-rw-r--r--extensions/source/propctrlr/formcomponenthandler.cxx6
-rw-r--r--extensions/source/propctrlr/formcomponenthandler.hxx6
-rw-r--r--extensions/source/propctrlr/formcontroller.cxx2
-rw-r--r--extensions/source/propctrlr/formcontroller.hxx2
-rw-r--r--extensions/source/propctrlr/formgeometryhandler.cxx4
-rw-r--r--extensions/source/propctrlr/formlinkdialog.cxx2
-rw-r--r--extensions/source/propctrlr/formlinkdialog.hrc2
-rw-r--r--extensions/source/propctrlr/formlinkdialog.hxx2
-rw-r--r--extensions/source/propctrlr/formlinkdialog.src2
-rw-r--r--extensions/source/propctrlr/formlocalid.hrc6
-rw-r--r--extensions/source/propctrlr/formmetadata.cxx38
-rw-r--r--extensions/source/propctrlr/formmetadata.hxx252
-rw-r--r--extensions/source/propctrlr/formres.src12
-rw-r--r--extensions/source/propctrlr/formresid.hrc396
-rw-r--r--extensions/source/propctrlr/formstrings.cxx2
-rw-r--r--extensions/source/propctrlr/formstrings.hxx296
-rw-r--r--extensions/source/propctrlr/genericpropertyhandler.cxx14
-rw-r--r--extensions/source/propctrlr/genericpropertyhandler.hxx4
-rw-r--r--extensions/source/propctrlr/handlerhelper.cxx2
-rw-r--r--extensions/source/propctrlr/handlerhelper.hxx14
-rw-r--r--extensions/source/propctrlr/inspectorhelpwindow.cxx2
-rw-r--r--extensions/source/propctrlr/inspectorhelpwindow.hxx2
-rw-r--r--extensions/source/propctrlr/inspectormodelbase.cxx10
-rw-r--r--extensions/source/propctrlr/inspectormodelbase.hxx2
-rw-r--r--extensions/source/propctrlr/linedescriptor.hxx6
-rw-r--r--extensions/source/propctrlr/listselectiondlg.cxx2
-rw-r--r--extensions/source/propctrlr/listselectiondlg.hrc2
-rw-r--r--extensions/source/propctrlr/listselectiondlg.hxx2
-rw-r--r--extensions/source/propctrlr/listselectiondlg.src2
-rw-r--r--extensions/source/propctrlr/modulepcr.cxx2
-rw-r--r--extensions/source/propctrlr/modulepcr.hxx2
-rw-r--r--extensions/source/propctrlr/newdatatype.cxx2
-rw-r--r--extensions/source/propctrlr/newdatatype.hrc2
-rw-r--r--extensions/source/propctrlr/newdatatype.hxx2
-rw-r--r--extensions/source/propctrlr/newdatatype.src2
-rw-r--r--extensions/source/propctrlr/objectinspectormodel.cxx2
-rw-r--r--extensions/source/propctrlr/pcrcommon.cxx2
-rw-r--r--extensions/source/propctrlr/pcrcommon.hxx4
-rw-r--r--extensions/source/propctrlr/pcrcommontypes.hxx2
-rw-r--r--extensions/source/propctrlr/pcrcomponentcontext.cxx2
-rw-r--r--extensions/source/propctrlr/pcrcomponentcontext.hxx2
-rw-r--r--extensions/source/propctrlr/pcrmiscres.src2
-rw-r--r--extensions/source/propctrlr/pcrservices.cxx10
-rw-r--r--extensions/source/propctrlr/pcrstrings.cxx2
-rw-r--r--extensions/source/propctrlr/pcrstrings.hxx2
-rw-r--r--extensions/source/propctrlr/pcrunodialogs.cxx4
-rw-r--r--extensions/source/propctrlr/pcrunodialogs.hxx2
-rw-r--r--extensions/source/propctrlr/propcontroller.cxx30
-rw-r--r--extensions/source/propctrlr/propcontroller.hxx20
-rw-r--r--extensions/source/propctrlr/propcontrolobserver.hxx2
-rw-r--r--extensions/source/propctrlr/propertycomposer.cxx28
-rw-r--r--extensions/source/propctrlr/propertycomposer.hxx2
-rw-r--r--extensions/source/propctrlr/propertycontrolextender.cxx6
-rw-r--r--extensions/source/propctrlr/propertycontrolextender.hxx2
-rw-r--r--extensions/source/propctrlr/propertyeditor.cxx2
-rw-r--r--extensions/source/propctrlr/propertyeditor.hxx8
-rw-r--r--extensions/source/propctrlr/propertyhandler.cxx14
-rw-r--r--extensions/source/propctrlr/propertyhandler.hxx2
-rw-r--r--extensions/source/propctrlr/propertyinfo.hxx10
-rw-r--r--extensions/source/propctrlr/propeventtranslation.cxx4
-rw-r--r--extensions/source/propctrlr/propeventtranslation.hxx2
-rw-r--r--extensions/source/propctrlr/proplinelistener.hxx6
-rw-r--r--extensions/source/propctrlr/propres.src2
-rw-r--r--extensions/source/propctrlr/propresid.hrc12
-rw-r--r--extensions/source/propctrlr/pushbuttonnavigation.cxx4
-rw-r--r--extensions/source/propctrlr/pushbuttonnavigation.hxx2
-rw-r--r--extensions/source/propctrlr/selectlabeldialog.cxx16
-rw-r--r--extensions/source/propctrlr/selectlabeldialog.hxx36
-rw-r--r--extensions/source/propctrlr/selectlabeldialog.src4
-rw-r--r--extensions/source/propctrlr/sqlcommanddesign.cxx4
-rw-r--r--extensions/source/propctrlr/sqlcommanddesign.hxx2
-rw-r--r--extensions/source/propctrlr/standardcontrol.cxx26
-rw-r--r--extensions/source/propctrlr/standardcontrol.hxx4
-rw-r--r--extensions/source/propctrlr/stlops.hxx6
-rw-r--r--extensions/source/propctrlr/stringdefine.hxx14
-rw-r--r--extensions/source/propctrlr/stringrepresentation.cxx8
-rw-r--r--extensions/source/propctrlr/submissionhandler.cxx8
-rw-r--r--extensions/source/propctrlr/submissionhandler.hxx2
-rw-r--r--extensions/source/propctrlr/taborder.cxx2
-rw-r--r--extensions/source/propctrlr/taborder.hrc2
-rw-r--r--extensions/source/propctrlr/taborder.hxx2
-rw-r--r--extensions/source/propctrlr/taborder.src8
-rw-r--r--extensions/source/propctrlr/unourl.cxx2
-rw-r--r--extensions/source/propctrlr/unourl.hxx2
-rw-r--r--extensions/source/propctrlr/usercontrol.cxx4
-rw-r--r--extensions/source/propctrlr/usercontrol.hxx2
-rw-r--r--extensions/source/propctrlr/xsddatatypes.cxx2
-rw-r--r--extensions/source/propctrlr/xsddatatypes.hxx4
-rw-r--r--extensions/source/propctrlr/xsdvalidationhelper.cxx2
-rw-r--r--extensions/source/propctrlr/xsdvalidationhelper.hxx2
-rw-r--r--extensions/source/propctrlr/xsdvalidationpropertyhandler.cxx2
-rw-r--r--extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx2
-rw-r--r--extensions/source/resource/oooresourceloader.cxx22
-rw-r--r--extensions/source/resource/res_services.cxx8
-rw-r--r--extensions/source/resource/res_services.hxx2
-rw-r--r--extensions/source/resource/resource.cxx72
-rw-r--r--extensions/source/scanner/grid.cxx10
-rw-r--r--extensions/source/scanner/grid.hrc22
-rw-r--r--extensions/source/scanner/grid.hxx68
-rw-r--r--extensions/source/scanner/grid.src18
-rw-r--r--extensions/source/scanner/sane.cxx108
-rw-r--r--extensions/source/scanner/sane.hxx174
-rw-r--r--extensions/source/scanner/sanedlg.cxx34
-rw-r--r--extensions/source/scanner/sanedlg.hrc92
-rw-r--r--extensions/source/scanner/sanedlg.hxx124
-rw-r--r--extensions/source/scanner/sanedlg.src2
-rw-r--r--extensions/source/scanner/scanner.cxx12
-rw-r--r--extensions/source/scanner/scanner.hxx56
-rw-r--r--extensions/source/scanner/scanunx.cxx42
-rw-r--r--extensions/source/scanner/scanwin.cxx226
-rw-r--r--extensions/source/scanner/scnserv.cxx14
-rw-r--r--extensions/source/scanner/twain.cxx76
-rw-r--r--extensions/source/scanner/twain.hxx64
-rw-r--r--extensions/source/svg/svgaction.cxx386
-rw-r--r--extensions/source/svg/svgaction.hxx144
-rw-r--r--extensions/source/svg/svgcom.hxx24
-rw-r--r--extensions/source/svg/svgprinter.cxx106
-rw-r--r--extensions/source/svg/svgprinter.hxx40
-rw-r--r--extensions/source/svg/svguno.cxx8
-rw-r--r--extensions/source/svg/svgwriter.cxx56
-rw-r--r--extensions/source/svg/svgwriter.hxx32
-rw-r--r--extensions/source/unoactivex/main/initwindowpeer.cxx2
-rw-r--r--extensions/source/update/check/actionlistener.hxx2
-rwxr-xr-xextensions/source/update/check/download.cxx132
-rw-r--r--extensions/source/update/check/download.hxx16
-rw-r--r--extensions/source/update/check/transform.pl12
-rwxr-xr-xextensions/source/update/check/updatecheck.cxx462
-rw-r--r--extensions/source/update/check/updatecheck.hxx42
-rwxr-xr-xextensions/source/update/check/updatecheckconfig.cxx266
-rw-r--r--extensions/source/update/check/updatecheckconfig.hxx84
-rw-r--r--extensions/source/update/check/updatecheckconfiglistener.hxx6
-rw-r--r--extensions/source/update/check/updatecheckjob.cxx86
-rw-r--r--extensions/source/update/check/updatehdl.cxx40
-rw-r--r--extensions/source/update/check/updatehdl.hrc8
-rw-r--r--extensions/source/update/check/updatehdl.hxx4
-rw-r--r--extensions/source/update/check/updatehdl.src2
-rw-r--r--extensions/source/update/check/updateinfo.hxx24
-rw-r--r--extensions/source/update/check/updateprotocol.cxx56
-rw-r--r--extensions/source/update/check/updateprotocol.hxx4
-rw-r--r--extensions/source/update/check/updateprotocoltest.cxx24
-rw-r--r--extensions/source/update/check/updchk.xml4
-rw-r--r--extensions/source/update/feed/test/updatefeedtest.cxx28
-rw-r--r--extensions/source/update/feed/updatefeed.cxx2
-rw-r--r--extensions/source/update/feed/updatefeed.xml6
-rw-r--r--extensions/source/update/tools/ztool.cxx4
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx8
-rw-r--r--extensions/source/update/ui/updatecheckui.hrc8
-rw-r--r--extensions/source/update/ui/updatecheckui.src2
-rw-r--r--extensions/source/update/ui/updchkui.xml4
-rw-r--r--extensions/source/xmlextract/xmxcom.hxx20
-rw-r--r--extensions/source/xmlextract/xmxtrct.cxx40
-rw-r--r--extensions/source/xmlextract/xmxtrct.hxx22
-rw-r--r--extensions/source/xmlextract/xmxuno.cxx10
-rw-r--r--extensions/stardiv/fontest/fontest.idl2
-rw-r--r--extensions/stardiv/oinstchk/oinstchk.idl2
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.cpp4
-rw-r--r--extensions/test/ole/AxTestComponents/AxTestComponents.idl32
-rw-r--r--extensions/test/ole/AxTestComponents/Basic.cpp44
-rw-r--r--extensions/test/ole/AxTestComponents/Basic.h8
-rw-r--r--extensions/test/ole/AxTestComponents/Foo.cpp2
-rw-r--r--extensions/test/ole/AxTestComponents/Foo.h6
-rw-r--r--extensions/test/ole/AxTestComponents/StdAfx.cpp2
-rw-r--r--extensions/test/ole/AxTestComponents/StdAfx.h2
-rw-r--r--extensions/test/ole/AxTestComponents/resource.h4
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EventListener.cpp2
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/EvtListener.h2
-rw-r--r--extensions/test/ole/EventListenerSample/EventListener/resource.h2
-rw-r--r--extensions/test/ole/MfcControl/MfcControlCtl.cpp34
-rw-r--r--extensions/test/ole/MfcControl/MfcControlCtl.h2
-rw-r--r--extensions/test/ole/MfcControl/StdAfx.h10
-rw-r--r--extensions/test/ole/OleClient/axhost.cxx2
-rw-r--r--extensions/test/ole/OleClient/axhost.hxx4
-rw-r--r--extensions/test/ole/OleClient/clientTest.cxx178
-rw-r--r--extensions/test/ole/OleClient/funcs.cxx50
-rw-r--r--extensions/test/ole/OleConverterVar1/convTest.cxx140
-rw-r--r--extensions/test/ole/OleConverterVar1/smartarray.h112
-rw-r--r--extensions/test/ole/cpnt/cpnt.cxx324
-rw-r--r--extensions/test/ole/cppToUno/testcppuno.cxx26
-rw-r--r--extensions/test/ole/cpptest/cpptest.cxx8
-rw-r--r--extensions/test/ole/idl/oletest.idl26
-rw-r--r--extensions/test/ole/unloading/unloadTest.cxx28
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp6
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/StdAfx.h4
-rw-r--r--extensions/test/ole/unoTocomCalls/Test/Test.cpp26
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp48
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h36
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp6
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h8
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp2
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h2
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp4
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl16
-rw-r--r--extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h4
-rw-r--r--extensions/test/pgp/TestPGP.java34
-rw-r--r--extensions/test/sax/factory.hxx4
-rw-r--r--extensions/test/sax/testsax.cxx176
-rw-r--r--extensions/test/sax/testwriter.cxx106
-rw-r--r--extensions/test/stm/datatest.cxx502
-rw-r--r--extensions/test/stm/marktest.cxx92
-rw-r--r--extensions/test/stm/pipetest.cxx62
-rw-r--r--extensions/test/stm/testfactreg.cxx34
-rw-r--r--extensions/test/stm/testfactreg.hxx22
-rw-r--r--extensions/util/hidother.src136
-rw-r--r--extensions/workben/pythonautotest.cxx86
-rw-r--r--extensions/workben/pythontest.cxx30
-rw-r--r--extensions/workben/testcomponent.cxx30
-rw-r--r--extensions/workben/testframecontrol.cxx116
-rw-r--r--extensions/workben/testpgp.cxx4
-rw-r--r--extensions/workben/testresource.cxx6
-rw-r--r--extensions/workben/testresource.src4
-rw-r--r--external/prj/d.lst4
-rw-r--r--extras/prj/d.lst1
-rw-r--r--extras/source/autotext/lang/fr/acor_fr-FR.datbin31897 -> 4650 bytes-rw-r--r--extras/source/autotext/lang/pt-BR/acor_pt-BR.datbin469488 -> 40513 bytes-rw-r--r--fileaccess/source/FileAccess.cxx2
-rw-r--r--filter/inc/filter.hrc40
-rw-r--r--filter/inc/filter/msfilter/countryid.hxx2
-rw-r--r--filter/inc/filter/msfilter/escherex.hxx778
-rw-r--r--filter/inc/filter/msfilter/mscodec.hxx14
-rw-r--r--filter/inc/filter/msfilter/msdffimp.hxx480
-rw-r--r--filter/inc/filter/msfilter/msfilterdllapi.h2
-rw-r--r--filter/inc/filter/msfilter/msfiltertracer.hxx18
-rw-r--r--filter/inc/filter/msfilter/msocximex.hxx442
-rw-r--r--filter/inc/filter/msfilter/msoleexp.hxx14
-rw-r--r--filter/inc/filter/msfilter/msvbahelper.hxx4
-rw-r--r--filter/inc/filter/msfilter/svdfppt.hxx1264
-rw-r--r--filter/inc/filter/msfilter/svxmsbas.hxx6
-rw-r--r--filter/inc/pch/precompiled_filter.cxx2
-rw-r--r--filter/inc/pch/precompiled_filter.hxx2
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/Helper.java132
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/TypeDetection.java118
-rw-r--r--filter/qa/complex/filter/misc/FinalizedMandatoryTest.java84
-rw-r--r--filter/qa/complex/filter/misc/TypeDetection6FileFormat.java30
-rw-r--r--filter/source/config/cache/basecontainer.cxx2
-rw-r--r--filter/source/config/cache/basecontainer.hxx2
-rw-r--r--filter/source/config/cache/cacheitem.cxx12
-rw-r--r--filter/source/config/cache/cacheitem.hxx20
-rw-r--r--filter/source/config/cache/cacheupdatelistener.cxx2
-rw-r--r--filter/source/config/cache/cacheupdatelistener.hxx2
-rw-r--r--filter/source/config/cache/configflush.cxx2
-rw-r--r--filter/source/config/cache/configflush.hxx2
-rw-r--r--filter/source/config/cache/constant.hxx2
-rw-r--r--filter/source/config/cache/contenthandlerfactory.cxx2
-rw-r--r--filter/source/config/cache/contenthandlerfactory.hxx2
-rw-r--r--filter/source/config/cache/filtercache.cxx12
-rw-r--r--filter/source/config/cache/filtercache.hxx2
-rw-r--r--filter/source/config/cache/filterfactory.cxx66
-rw-r--r--filter/source/config/cache/filterfactory.hxx28
-rw-r--r--filter/source/config/cache/frameloaderfactory.cxx2
-rw-r--r--filter/source/config/cache/frameloaderfactory.hxx2
-rw-r--r--filter/source/config/cache/lateinitlistener.cxx2
-rw-r--r--filter/source/config/cache/lateinitlistener.hxx2
-rw-r--r--filter/source/config/cache/lateinitthread.cxx2
-rw-r--r--filter/source/config/cache/lateinitthread.hxx2
-rw-r--r--filter/source/config/cache/macros.hxx2
-rw-r--r--filter/source/config/cache/querytokenizer.cxx2
-rw-r--r--filter/source/config/cache/querytokenizer.hxx2
-rw-r--r--filter/source/config/cache/registration.cxx2
-rw-r--r--filter/source/config/cache/registration.hxx2
-rw-r--r--filter/source/config/cache/typedetection.cxx46
-rw-r--r--filter/source/config/cache/typedetection.hxx12
-rw-r--r--filter/source/config/cache/versions.hxx2
-rw-r--r--filter/source/config/fragments/fcfg_draw.mk7
-rw-r--r--filter/source/config/fragments/fcfg_drawgraphics.mk1
-rw-r--r--filter/source/config/fragments/fcfg_internalgraphics.mk1
-rw-r--r--filter/source/config/fragments/fcfg_writer.mk2
-rw-r--r--filter/source/config/fragments/filters/MS_Works.xcu13
-rw-r--r--filter/source/config/fragments/filters/MathML_XML__Math_.xcu2
-rw-r--r--filter/source/config/fragments/filters/SVG___Scalable_Vector_Graphics.xcu13
-rw-r--r--filter/source/config/fragments/filters/WordPerfectGraphics.xcu13
-rw-r--r--filter/source/config/fragments/internalgraphicfilters/svg_Import.xcu10
-rw-r--r--filter/source/config/fragments/types/draw_WordPerfect_Graphics.xcu12
-rw-r--r--filter/source/config/fragments/types/svg_Scalable_Vector_Graphics.xcu6
-rw-r--r--filter/source/config/fragments/types/writer_MS_Works_Document.xcu12
-rw-r--r--filter/source/config/tools/split/FCFGSplit.java2
-rw-r--r--filter/source/config/tools/split/Splitter.java2
-rw-r--r--filter/source/config/tools/split/SplitterData.java2
-rw-r--r--filter/source/filtertracer/filtertracer.cxx20
-rw-r--r--filter/source/filtertracer/filtertracer.hxx82
-rw-r--r--filter/source/filtertracer/filtertraceruno.cxx10
-rw-r--r--filter/source/flash/impswfdialog.cxx8
-rw-r--r--filter/source/flash/impswfdialog.hrc2
-rw-r--r--filter/source/flash/impswfdialog.hxx44
-rw-r--r--filter/source/flash/impswfdialog.src2
-rw-r--r--filter/source/flash/swfdialog.cxx44
-rw-r--r--filter/source/flash/swfdialog.hxx8
-rw-r--r--filter/source/flash/swfexporter.cxx34
-rw-r--r--filter/source/flash/swfexporter.hxx60
-rw-r--r--filter/source/flash/swffilter.cxx46
-rw-r--r--filter/source/flash/swfuno.cxx12
-rw-r--r--filter/source/flash/swfwriter.cxx96
-rw-r--r--filter/source/flash/swfwriter.hxx78
-rw-r--r--filter/source/flash/swfwriter1.cxx378
-rw-r--r--filter/source/flash/swfwriter2.cxx38
-rw-r--r--filter/source/graphicfilter/egif/dlgegif.cxx26
-rw-r--r--filter/source/graphicfilter/egif/dlgegif.hrc2
-rw-r--r--filter/source/graphicfilter/egif/dlgegif.hxx16
-rw-r--r--filter/source/graphicfilter/egif/dlgegif.src2
-rw-r--r--filter/source/graphicfilter/egif/egif.cxx110
-rw-r--r--filter/source/graphicfilter/egif/egifstr.src2
-rw-r--r--filter/source/graphicfilter/egif/giflzwc.cxx32
-rw-r--r--filter/source/graphicfilter/egif/giflzwc.hxx28
-rw-r--r--filter/source/graphicfilter/egif/strings.hrc6
-rw-r--r--filter/source/graphicfilter/eos2met/dlgeos2.cxx50
-rw-r--r--filter/source/graphicfilter/eos2met/dlgeos2.hrc2
-rw-r--r--filter/source/graphicfilter/eos2met/dlgeos2.hxx26
-rw-r--r--filter/source/graphicfilter/eos2met/dlgeos2.src2
-rw-r--r--filter/source/graphicfilter/eos2met/eos2met.cxx242
-rw-r--r--filter/source/graphicfilter/eos2met/eos2mstr.src2
-rw-r--r--filter/source/graphicfilter/eos2met/strings.hrc6
-rw-r--r--filter/source/graphicfilter/epbm/dlgepbm.cxx24
-rw-r--r--filter/source/graphicfilter/epbm/dlgepbm.hrc14
-rw-r--r--filter/source/graphicfilter/epbm/dlgepbm.hxx18
-rw-r--r--filter/source/graphicfilter/epbm/dlgepbm.src2
-rw-r--r--filter/source/graphicfilter/epbm/epbm.cxx38
-rw-r--r--filter/source/graphicfilter/epbm/epbmstr.src2
-rw-r--r--filter/source/graphicfilter/epbm/strings.hrc4
-rw-r--r--filter/source/graphicfilter/epgm/dlgepgm.cxx24
-rw-r--r--filter/source/graphicfilter/epgm/dlgepgm.hrc14
-rw-r--r--filter/source/graphicfilter/epgm/dlgepgm.hxx18
-rw-r--r--filter/source/graphicfilter/epgm/dlgepgm.src2
-rw-r--r--filter/source/graphicfilter/epgm/epgm.cxx36
-rw-r--r--filter/source/graphicfilter/epgm/epgmstr.src2
-rw-r--r--filter/source/graphicfilter/epgm/strings.hrc4
-rw-r--r--filter/source/graphicfilter/epict/dlgepct.cxx36
-rw-r--r--filter/source/graphicfilter/epict/dlgepct.hrc2
-rw-r--r--filter/source/graphicfilter/epict/dlgepct.hxx28
-rw-r--r--filter/source/graphicfilter/epict/dlgepct.src2
-rw-r--r--filter/source/graphicfilter/epict/epict.cxx158
-rw-r--r--filter/source/graphicfilter/epict/epictstr.src2
-rw-r--r--filter/source/graphicfilter/epict/strings.hrc6
-rw-r--r--filter/source/graphicfilter/eppm/dlgeppm.cxx26
-rw-r--r--filter/source/graphicfilter/eppm/dlgeppm.hrc14
-rw-r--r--filter/source/graphicfilter/eppm/dlgeppm.hxx18
-rw-r--r--filter/source/graphicfilter/eppm/dlgeppm.src2
-rw-r--r--filter/source/graphicfilter/eppm/eppm.cxx36
-rw-r--r--filter/source/graphicfilter/eppm/eppmstr.src2
-rw-r--r--filter/source/graphicfilter/eppm/strings.hrc4
-rw-r--r--filter/source/graphicfilter/eps/dlgeps.cxx58
-rw-r--r--filter/source/graphicfilter/eps/dlgeps.hrc4
-rw-r--r--filter/source/graphicfilter/eps/dlgeps.hxx36
-rw-r--r--filter/source/graphicfilter/eps/dlgeps.src2
-rw-r--r--filter/source/graphicfilter/eps/eps.cxx548
-rw-r--r--filter/source/graphicfilter/eps/epsstr.src2
-rw-r--r--filter/source/graphicfilter/eps/strings.hrc4
-rw-r--r--filter/source/graphicfilter/eras/eras.cxx60
-rw-r--r--filter/source/graphicfilter/etiff/etiff.cxx186
-rw-r--r--filter/source/graphicfilter/expm/expm.cxx58
-rw-r--r--filter/source/graphicfilter/icgm/actimpr.cxx100
-rw-r--r--filter/source/graphicfilter/icgm/bitmap.cxx66
-rw-r--r--filter/source/graphicfilter/icgm/bitmap.hxx60
-rw-r--r--filter/source/graphicfilter/icgm/bundles.cxx18
-rw-r--r--filter/source/graphicfilter/icgm/bundles.hxx96
-rw-r--r--filter/source/graphicfilter/icgm/cgm.cxx88
-rw-r--r--filter/source/graphicfilter/icgm/cgm.hxx214
-rw-r--r--filter/source/graphicfilter/icgm/cgmres.hrc6
-rw-r--r--filter/source/graphicfilter/icgm/cgmtypes.hxx120
-rw-r--r--filter/source/graphicfilter/icgm/chart.cxx4
-rw-r--r--filter/source/graphicfilter/icgm/chart.hxx174
-rw-r--r--filter/source/graphicfilter/icgm/class0.cxx20
-rw-r--r--filter/source/graphicfilter/icgm/class1.cxx28
-rw-r--r--filter/source/graphicfilter/icgm/class2.cxx14
-rw-r--r--filter/source/graphicfilter/icgm/class3.cxx26
-rw-r--r--filter/source/graphicfilter/icgm/class4.cxx84
-rw-r--r--filter/source/graphicfilter/icgm/class5.cxx34
-rw-r--r--filter/source/graphicfilter/icgm/class7.cxx4
-rw-r--r--filter/source/graphicfilter/icgm/classx.cxx58
-rw-r--r--filter/source/graphicfilter/icgm/elements.cxx40
-rw-r--r--filter/source/graphicfilter/icgm/elements.hxx196
-rw-r--r--filter/source/graphicfilter/icgm/main.hxx20
-rw-r--r--filter/source/graphicfilter/icgm/outact.cxx4
-rw-r--r--filter/source/graphicfilter/icgm/outact.hxx144
-rw-r--r--filter/source/graphicfilter/idxf/dxf2mtf.cxx26
-rw-r--r--filter/source/graphicfilter/idxf/dxf2mtf.hxx16
-rw-r--r--filter/source/graphicfilter/idxf/dxfblkrd.cxx2
-rw-r--r--filter/source/graphicfilter/idxf/dxfblkrd.hxx2
-rw-r--r--filter/source/graphicfilter/idxf/dxfentrd.cxx56
-rw-r--r--filter/source/graphicfilter/idxf/dxfentrd.hxx108
-rw-r--r--filter/source/graphicfilter/idxf/dxfgrprd.cxx10
-rw-r--r--filter/source/graphicfilter/idxf/dxfgrprd.hxx2
-rw-r--r--filter/source/graphicfilter/idxf/dxfreprd.cxx4
-rw-r--r--filter/source/graphicfilter/idxf/dxfreprd.hxx4
-rw-r--r--filter/source/graphicfilter/idxf/dxftblrd.cxx2
-rw-r--r--filter/source/graphicfilter/idxf/dxftblrd.hxx2
-rw-r--r--filter/source/graphicfilter/idxf/dxfvec.cxx4
-rw-r--r--filter/source/graphicfilter/idxf/dxfvec.hxx16
-rw-r--r--filter/source/graphicfilter/idxf/idxf.cxx2
-rw-r--r--filter/source/graphicfilter/ieps/ieps.cxx160
-rw-r--r--filter/source/graphicfilter/ios2met/ios2met.cxx142
-rw-r--r--filter/source/graphicfilter/ipbm/ipbm.cxx78
-rw-r--r--filter/source/graphicfilter/ipcd/ipcd.cxx32
-rw-r--r--filter/source/graphicfilter/ipcx/ipcx.cxx56
-rw-r--r--filter/source/graphicfilter/ipict/ipict.cxx192
-rw-r--r--filter/source/graphicfilter/ipsd/ipsd.cxx184
-rw-r--r--filter/source/graphicfilter/iras/iras.cxx86
-rw-r--r--filter/source/graphicfilter/itga/itga.cxx180
-rw-r--r--filter/source/graphicfilter/itiff/ccidecom.cxx34
-rw-r--r--filter/source/graphicfilter/itiff/ccidecom.hxx12
-rw-r--r--filter/source/graphicfilter/itiff/itiff.cxx226
-rw-r--r--filter/source/graphicfilter/itiff/lzwdecom.cxx2
-rw-r--r--filter/source/graphicfilter/itiff/lzwdecom.hxx2
-rw-r--r--filter/source/msfilter/countryid.cxx182
-rw-r--r--filter/source/msfilter/escherex.cxx501
-rw-r--r--filter/source/msfilter/eschesdo.cxx182
-rw-r--r--filter/source/msfilter/eschesdo.hxx132
-rw-r--r--filter/source/msfilter/mscodec.cxx30
-rw-r--r--filter/source/msfilter/msdffimp.cxx906
-rw-r--r--filter/source/msfilter/msfiltertracer.cxx6
-rw-r--r--filter/source/msfilter/msocximex.cxx114
-rw-r--r--filter/source/msfilter/msoleexp.cxx8
-rw-r--r--filter/source/msfilter/msvbahelper.cxx68
-rw-r--r--filter/source/msfilter/msvbasic.cxx8
-rw-r--r--filter/source/msfilter/msvbasic.hxx2
-rw-r--r--filter/source/msfilter/powerpoint/pptcom.hxx16
-rw-r--r--filter/source/msfilter/powerpoint/pptimporter.cxx22
-rw-r--r--filter/source/msfilter/powerpoint/pptimporter.hxx40
-rw-r--r--filter/source/msfilter/powerpoint/pptimporteruno.cxx10
-rw-r--r--filter/source/msfilter/powerpoint/ppttoxml.cxx8
-rw-r--r--filter/source/msfilter/powerpoint/ppttoxml.hxx2
-rw-r--r--filter/source/msfilter/svdfppt.cxx914
-rw-r--r--filter/source/msfilter/svxmsbas.cxx14
-rw-r--r--filter/source/msfilter/svxmsbas2.cxx2
-rw-r--r--filter/source/msfilter/viscache.hxx34
-rw-r--r--filter/source/pdf/impdialog.cxx30
-rw-r--r--filter/source/pdf/impdialog.hrc98
-rw-r--r--filter/source/pdf/impdialog.hxx112
-rw-r--r--filter/source/pdf/impdialog.src4
-rw-r--r--filter/source/pdf/pdf.hrc4
-rw-r--r--filter/source/pdf/pdf.src2
-rw-r--r--filter/source/pdf/pdfdialog.cxx30
-rw-r--r--filter/source/pdf/pdfdialog.hxx8
-rw-r--r--filter/source/pdf/pdfexport.cxx290
-rw-r--r--filter/source/pdf/pdfexport.hxx82
-rw-r--r--filter/source/pdf/pdffilter.cxx28
-rw-r--r--filter/source/pdf/pdffilter.hxx14
-rw-r--r--filter/source/pdf/pdfuno.cxx16
-rw-r--r--filter/source/placeware/Base64Codec.cxx2
-rw-r--r--filter/source/placeware/Base64Codec.hxx2
-rw-r--r--filter/source/placeware/exporter.cxx8
-rw-r--r--filter/source/placeware/exporter.hxx2
-rw-r--r--filter/source/placeware/filter.cxx26
-rw-r--r--filter/source/placeware/placeware.xml22
-rw-r--r--filter/source/placeware/tempfile.cxx30
-rw-r--r--filter/source/placeware/tempfile.hxx6
-rw-r--r--filter/source/placeware/uno.cxx12
-rw-r--r--filter/source/placeware/zip.cxx84
-rw-r--r--filter/source/placeware/zip.hxx4
-rw-r--r--filter/source/placeware/zipfile.hxx92
-rw-r--r--filter/source/svg/SOTranscoder.java8
-rw-r--r--filter/source/svg/b2dellipse.cxx139
-rw-r--r--filter/source/svg/b2dellipse.hxx77
-rw-r--r--filter/source/svg/exports.map10
-rw-r--r--filter/source/svg/gentoken.pl58
-rw-r--r--filter/source/svg/gfxtypes.hxx345
-rw-r--r--filter/source/svg/makefile.mk55
-rw-r--r--filter/source/svg/parserfragments.cxx600
-rw-r--r--filter/source/svg/parserfragments.hxx74
-rw-r--r--filter/source/svg/spirit_supplements.hxx115
-rw-r--r--filter/source/svg/svgexport.cxx226
-rw-r--r--filter/source/svg/svgfilter.cxx142
-rw-r--r--filter/source/svg/svgfilter.hxx160
-rw-r--r--filter/source/svg/svgfontexport.cxx58
-rw-r--r--filter/source/svg/svgfontexport.hxx30
-rw-r--r--filter/source/svg/svgimport.cxx189
-rw-r--r--filter/source/svg/svgreader.cxx2778
-rw-r--r--filter/source/svg/svgreader.hxx43
-rw-r--r--filter/source/svg/svgscript.hxx36
-rw-r--r--filter/source/svg/svguno.cxx12
-rw-r--r--filter/source/svg/svgwriter.cxx406
-rw-r--r--filter/source/svg/svgwriter.hxx166
-rw-r--r--filter/source/svg/test/makefile.mk115
-rw-r--r--filter/source/svg/test/odfserializer.cxx140
-rw-r--r--filter/source/svg/test/odfserializer.hxx31
-rw-r--r--filter/source/svg/test/parsertest.cxx209
-rw-r--r--filter/source/svg/test/svg2odf.cxx124
-rw-r--r--filter/source/svg/tokenmap.cxx62
-rw-r--r--filter/source/svg/tokenmap.hxx32
-rw-r--r--filter/source/svg/tokens.txt403
-rw-r--r--filter/source/svg/units.cxx116
-rw-r--r--filter/source/svg/units.hxx60
-rw-r--r--filter/source/t602/filterenv.cxx2
-rw-r--r--filter/source/t602/t602filter.cxx2
-rw-r--r--filter/source/t602/t602filter.hrc2
-rw-r--r--filter/source/t602/t602filter.hxx8
-rw-r--r--filter/source/t602/t602filter.src2
-rw-r--r--filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx100
-rw-r--r--filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx32
-rw-r--r--filter/source/xmlfilteradaptor/genericfilter.cxx10
-rwxr-xr-xfilter/source/xmlfilteradaptor/streamwrap.cxx2
-rwxr-xr-xfilter/source/xmlfilteradaptor/streamwrap.hxx10
-rw-r--r--filter/source/xmlfilterdetect/fdcomp.cxx10
-rw-r--r--filter/source/xmlfilterdetect/filterdetect.cxx4
-rw-r--r--filter/source/xmlfilterdetect/filterdetect.hxx36
-rw-r--r--filter/source/xsltdialog/hidother.src88
-rw-r--r--filter/source/xsltdialog/typedetectionexport.cxx34
-rw-r--r--filter/source/xsltdialog/typedetectionexport.hxx4
-rw-r--r--filter/source/xsltdialog/typedetectionimport.cxx30
-rw-r--r--filter/source/xsltdialog/typedetectionimport.hxx22
-rw-r--r--filter/source/xsltdialog/xmlfileview.cxx74
-rw-r--r--filter/source/xsltdialog/xmlfileview.hrc6
-rw-r--r--filter/source/xsltdialog/xmlfileview.hxx108
-rw-r--r--filter/source/xsltdialog/xmlfileview.src36
-rw-r--r--filter/source/xsltdialog/xmlfiltercommon.hrc14
-rw-r--r--filter/source/xsltdialog/xmlfiltercommon.hxx46
-rw-r--r--filter/source/xsltdialog/xmlfilterdialogcomponent.cxx14
-rw-r--r--filter/source/xsltdialog/xmlfilterdialogstrings.hrc68
-rw-r--r--filter/source/xsltdialog/xmlfilterdialogstrings.src62
-rw-r--r--filter/source/xsltdialog/xmlfilterhelpids.hrc88
-rw-r--r--filter/source/xsltdialog/xmlfilterjar.cxx20
-rw-r--r--filter/source/xsltdialog/xmlfilterjar.hxx2
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.cxx46
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.hrc20
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.hxx64
-rw-r--r--filter/source/xsltdialog/xmlfiltersettingsdialog.src114
-rw-r--r--filter/source/xsltdialog/xmlfiltertabdialog.cxx6
-rw-r--r--filter/source/xsltdialog/xmlfiltertabdialog.hrc2
-rw-r--r--filter/source/xsltdialog/xmlfiltertabdialog.hxx16
-rw-r--r--filter/source/xsltdialog/xmlfiltertabdialog.src22
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagebasic.cxx2
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagebasic.hrc22
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagebasic.hxx22
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagebasic.src108
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagexslt.cxx6
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagexslt.hrc30
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagexslt.hxx40
-rw-r--r--filter/source/xsltdialog/xmlfiltertabpagexslt.src138
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.cxx28
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.hrc40
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.hxx58
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.src178
-rw-r--r--filter/source/xsltfilter/Base64.java608
-rw-r--r--filter/source/xsltfilter/XSLTFilter.cxx12
-rw-r--r--filter/source/xsltfilter/XSLTFilterOLEExtracter.java10
-rw-r--r--filter/source/xsltfilter/XSLTransformer.java12
-rw-r--r--filter/source/xsltfilter/fla.cxx22
-rw-r--r--filter/source/xsltfilter/fla.hxx4
-rw-r--r--filter/source/xsltvalidate/XSLTValidate.java44
-rw-r--r--forms/inc/pch/precompiled_forms.cxx2
-rw-r--r--forms/inc/pch/precompiled_forms.hxx2
-rwxr-xr-xforms/qa/complex/forms/CheckOGroupBoxModel.java2
-rw-r--r--forms/qa/integration/forms/BooleanValidator.java4
-rw-r--r--forms/qa/integration/forms/CellBinding.java12
-rw-r--r--forms/qa/integration/forms/ControlValidation.java2
-rw-r--r--forms/qa/integration/forms/ControlValidator.java10
-rw-r--r--forms/qa/integration/forms/DateValidator.java8
-rw-r--r--forms/qa/integration/forms/DocumentHelper.java4
-rw-r--r--forms/qa/integration/forms/DocumentType.java2
-rw-r--r--forms/qa/integration/forms/DocumentViewHelper.java4
-rw-r--r--forms/qa/integration/forms/FormComponent.java2
-rw-r--r--forms/qa/integration/forms/FormControlTest.java8
-rw-r--r--forms/qa/integration/forms/FormLayer.java6
-rw-r--r--forms/qa/integration/forms/FormPropertyBags.java2
-rw-r--r--forms/qa/integration/forms/ImageComparison.java12
-rw-r--r--forms/qa/integration/forms/ListBox.java2
-rw-r--r--forms/qa/integration/forms/ListSelection.java2
-rw-r--r--forms/qa/integration/forms/ListSelectionValidator.java8
-rw-r--r--forms/qa/integration/forms/MasterDetailForms.java10
-rw-r--r--forms/qa/integration/forms/NumericValidator.java10
-rw-r--r--forms/qa/integration/forms/RadioButtons.java2
-rw-r--r--forms/qa/integration/forms/SingleControlValidation.java8
-rw-r--r--forms/qa/integration/forms/SpreadsheetDocument.java2
-rw-r--r--forms/qa/integration/forms/SpreadsheetView.java4
-rw-r--r--forms/qa/integration/forms/TableCellTextBinding.java2
-rw-r--r--forms/qa/integration/forms/TestCase.java2
-rw-r--r--forms/qa/integration/forms/TestSkeleton.java2
-rw-r--r--forms/qa/integration/forms/TextValidator.java8
-rw-r--r--forms/qa/integration/forms/TimeValidator.java8
-rw-r--r--forms/qa/integration/forms/ValueBinding.java2
-rw-r--r--forms/qa/integration/forms/WaitForInput.java6
-rw-r--r--forms/qa/integration/forms/XMLFormSettings.java6
-rw-r--r--forms/qa/org/openoffice/xforms/Instance.java24
-rw-r--r--forms/qa/org/openoffice/xforms/Model.java2
-rw-r--r--forms/source/component/BaseListBox.hxx6
-rw-r--r--forms/source/component/Button.cxx24
-rw-r--r--forms/source/component/Button.hxx6
-rw-r--r--forms/source/component/CheckBox.cxx10
-rw-r--r--forms/source/component/CheckBox.hxx12
-rw-r--r--forms/source/component/Columns.cxx4
-rw-r--r--forms/source/component/Columns.hxx64
-rw-r--r--forms/source/component/ComboBox.cxx28
-rw-r--r--forms/source/component/ComboBox.hxx22
-rw-r--r--forms/source/component/Currency.cxx18
-rw-r--r--forms/source/component/Currency.hxx6
-rw-r--r--forms/source/component/DatabaseForm.cxx104
-rw-r--r--forms/source/component/DatabaseForm.hxx152
-rw-r--r--forms/source/component/Date.cxx14
-rw-r--r--forms/source/component/Date.hxx10
-rw-r--r--forms/source/component/Edit.cxx30
-rw-r--r--forms/source/component/Edit.hxx16
-rw-r--r--forms/source/component/EditBase.cxx16
-rw-r--r--forms/source/component/EditBase.hxx36
-rw-r--r--forms/source/component/EventThread.cxx8
-rw-r--r--forms/source/component/EventThread.hxx24
-rw-r--r--forms/source/component/File.cxx16
-rw-r--r--forms/source/component/File.hxx8
-rw-r--r--forms/source/component/Filter.cxx16
-rw-r--r--forms/source/component/Filter.hxx100
-rw-r--r--forms/source/component/FixedText.cxx4
-rw-r--r--forms/source/component/FixedText.hxx6
-rw-r--r--forms/source/component/FormComponent.cxx20
-rw-r--r--forms/source/component/FormattedField.cxx58
-rw-r--r--forms/source/component/FormattedField.hxx24
-rw-r--r--forms/source/component/FormattedFieldWrapper.cxx24
-rw-r--r--forms/source/component/FormattedFieldWrapper.hxx18
-rw-r--r--forms/source/component/FormsCollection.cxx4
-rw-r--r--forms/source/component/FormsCollection.hxx12
-rw-r--r--forms/source/component/Grid.cxx122
-rw-r--r--forms/source/component/Grid.hxx54
-rw-r--r--forms/source/component/GroupBox.cxx8
-rw-r--r--forms/source/component/GroupBox.hxx8
-rw-r--r--forms/source/component/GroupManager.cxx16
-rw-r--r--forms/source/component/GroupManager.hxx48
-rw-r--r--forms/source/component/Hidden.cxx14
-rw-r--r--forms/source/component/Hidden.hxx8
-rw-r--r--forms/source/component/ImageButton.cxx10
-rw-r--r--forms/source/component/ImageButton.hxx4
-rw-r--r--forms/source/component/ImageControl.cxx24
-rw-r--r--forms/source/component/ImageControl.hxx14
-rw-r--r--forms/source/component/ListBox.cxx2
-rw-r--r--forms/source/component/ListBox.hxx26
-rw-r--r--forms/source/component/Numeric.cxx10
-rw-r--r--forms/source/component/Numeric.hxx6
-rw-r--r--forms/source/component/Pattern.cxx2
-rw-r--r--forms/source/component/Pattern.hxx2
-rw-r--r--forms/source/component/RadioButton.cxx34
-rw-r--r--forms/source/component/RadioButton.hxx10
-rw-r--r--forms/source/component/Time.cxx16
-rw-r--r--forms/source/component/Time.hxx10
-rw-r--r--forms/source/component/cachedrowset.cxx2
-rw-r--r--forms/source/component/cachedrowset.hxx2
-rw-r--r--forms/source/component/clickableimage.cxx38
-rw-r--r--forms/source/component/clickableimage.hxx24
-rw-r--r--forms/source/component/cloneable.cxx8
-rw-r--r--forms/source/component/entrylisthelper.cxx2
-rw-r--r--forms/source/component/entrylisthelper.hxx4
-rw-r--r--forms/source/component/errorbroadcaster.cxx4
-rw-r--r--forms/source/component/errorbroadcaster.hxx12
-rw-r--r--forms/source/component/findpos.cxx2
-rw-r--r--forms/source/component/findpos.hxx2
-rw-r--r--forms/source/component/formcontrolfont.cxx2
-rw-r--r--forms/source/component/imgprod.cxx90
-rw-r--r--forms/source/component/imgprod.hxx42
-rw-r--r--forms/source/component/navigationbar.cxx6
-rw-r--r--forms/source/component/navigationbar.hxx12
-rw-r--r--forms/source/component/propertybaghelper.cxx2
-rw-r--r--forms/source/component/refvaluecomponent.cxx12
-rw-r--r--forms/source/component/refvaluecomponent.hxx4
-rw-r--r--forms/source/component/scrollbar.cxx6
-rw-r--r--forms/source/component/scrollbar.hxx2
-rw-r--r--forms/source/component/spinbutton.cxx6
-rw-r--r--forms/source/component/spinbutton.hxx2
-rw-r--r--forms/source/helper/commanddescriptionprovider.cxx2
-rw-r--r--forms/source/helper/commandimageprovider.cxx2
-rw-r--r--forms/source/helper/controlfeatureinterception.cxx6
-rw-r--r--forms/source/helper/formnavigation.cxx8
-rw-r--r--forms/source/helper/resettable.cxx2
-rw-r--r--forms/source/helper/urltransformer.cxx2
-rw-r--r--forms/source/helper/windowstateguard.cxx12
-rw-r--r--forms/source/inc/FormComponent.hxx210
-rw-r--r--forms/source/inc/InterfaceContainer.hxx40
-rw-r--r--forms/source/inc/cloneable.hxx6
-rw-r--r--forms/source/inc/commanddescriptionprovider.hxx2
-rw-r--r--forms/source/inc/commandimageprovider.hxx2
-rw-r--r--forms/source/inc/componenttools.hxx2
-rw-r--r--forms/source/inc/controlfeatureinterception.hxx2
-rw-r--r--forms/source/inc/featuredispatcher.hxx2
-rw-r--r--forms/source/inc/formcontrolfont.hxx8
-rw-r--r--forms/source/inc/formnavigation.hxx2
-rw-r--r--forms/source/inc/forms_module.hxx30
-rw-r--r--forms/source/inc/forms_module_impl.hxx32
-rw-r--r--forms/source/inc/frm_module.hxx2
-rw-r--r--forms/source/inc/frm_resource.hrc38
-rw-r--r--forms/source/inc/frm_resource.hxx4
-rw-r--r--forms/source/inc/frm_strings.hxx12
-rw-r--r--forms/source/inc/ids.hxx2
-rw-r--r--forms/source/inc/limitedformats.hxx22
-rw-r--r--forms/source/inc/listenercontainers.hxx2
-rw-r--r--forms/source/inc/property.hrc2
-rw-r--r--forms/source/inc/property.hxx60
-rw-r--r--forms/source/inc/propertybaghelper.hxx2
-rw-r--r--forms/source/inc/resettable.hxx2
-rw-r--r--forms/source/inc/services.hxx10
-rw-r--r--forms/source/inc/togglestate.hxx2
-rw-r--r--forms/source/inc/urltransformer.hxx2
-rw-r--r--forms/source/inc/windowstateguard.hxx2
-rw-r--r--forms/source/misc/InterfaceContainer.cxx54
-rw-r--r--forms/source/misc/componenttools.cxx2
-rw-r--r--forms/source/misc/frm_module.cxx2
-rw-r--r--forms/source/misc/frm_strings.cxx2
-rw-r--r--forms/source/misc/ids.cxx2
-rw-r--r--forms/source/misc/limitedformats.cxx26
-rw-r--r--forms/source/misc/listenercontainers.cxx2
-rw-r--r--forms/source/misc/property.cxx4
-rw-r--r--forms/source/misc/services.cxx14
-rw-r--r--forms/source/resource/frm_resource.cxx4
-rw-r--r--forms/source/resource/strings.src2
-rw-r--r--forms/source/resource/xforms.src2
-rw-r--r--forms/source/richtext/attributedispatcher.cxx4
-rw-r--r--forms/source/richtext/attributedispatcher.hxx2
-rw-r--r--forms/source/richtext/clipboarddispatcher.cxx2
-rw-r--r--forms/source/richtext/clipboarddispatcher.hxx2
-rw-r--r--forms/source/richtext/featuredispatcher.cxx4
-rw-r--r--forms/source/richtext/featuredispatcher.hxx2
-rw-r--r--forms/source/richtext/parametrizedattributedispatcher.cxx2
-rw-r--r--forms/source/richtext/parametrizedattributedispatcher.hxx2
-rw-r--r--forms/source/richtext/richtextcontrol.cxx6
-rw-r--r--forms/source/richtext/richtextcontrol.hxx10
-rw-r--r--forms/source/richtext/richtextengine.cxx2
-rw-r--r--forms/source/richtext/richtextengine.hxx2
-rw-r--r--forms/source/richtext/richtextimplcontrol.cxx2
-rw-r--r--forms/source/richtext/richtextimplcontrol.hxx2
-rw-r--r--forms/source/richtext/richtextmodel.cxx2
-rw-r--r--forms/source/richtext/richtextmodel.hxx4
-rw-r--r--forms/source/richtext/richtextunowrapper.cxx2
-rw-r--r--forms/source/richtext/richtextunowrapper.hxx2
-rw-r--r--forms/source/richtext/richtextvclcontrol.cxx2
-rw-r--r--forms/source/richtext/richtextvclcontrol.hxx2
-rw-r--r--forms/source/richtext/richtextviewport.cxx2
-rw-r--r--forms/source/richtext/richtextviewport.hxx2
-rw-r--r--forms/source/richtext/rtattributehandler.cxx2
-rw-r--r--forms/source/richtext/rtattributehandler.hxx2
-rw-r--r--forms/source/richtext/rtattributes.hxx2
-rw-r--r--forms/source/richtext/specialdispatchers.cxx6
-rw-r--r--forms/source/richtext/specialdispatchers.hxx2
-rw-r--r--forms/source/richtext/textattributelistener.hxx2
-rw-r--r--forms/source/runtime/formoperations.cxx54
-rw-r--r--forms/source/runtime/formoperations.hxx2
-rw-r--r--forms/source/solar/component/navbarcontrol.cxx8
-rw-r--r--forms/source/solar/component/navbarcontrol.hxx10
-rw-r--r--forms/source/solar/control/navtoolbar.cxx2
-rw-r--r--forms/source/solar/inc/navtoolbar.hxx2
-rw-r--r--forms/source/xforms/NameContainer.hxx6
-rw-r--r--forms/source/xforms/binding.cxx94
-rw-r--r--forms/source/xforms/binding.hxx46
-rw-r--r--forms/source/xforms/boolexpression.cxx2
-rw-r--r--forms/source/xforms/boolexpression.hxx2
-rw-r--r--forms/source/xforms/collection.hxx42
-rw-r--r--forms/source/xforms/computedexpression.cxx26
-rw-r--r--forms/source/xforms/computedexpression.hxx4
-rw-r--r--forms/source/xforms/convert.cxx14
-rw-r--r--forms/source/xforms/convert.hxx2
-rw-r--r--forms/source/xforms/datatyperepository.cxx2
-rw-r--r--forms/source/xforms/datatyperepository.hxx2
-rw-r--r--forms/source/xforms/datatypes.cxx10
-rw-r--r--forms/source/xforms/datatypes.hxx4
-rw-r--r--forms/source/xforms/datatypes_impl.hxx2
-rw-r--r--forms/source/xforms/enumeration.cxx2
-rw-r--r--forms/source/xforms/enumeration.hxx4
-rw-r--r--forms/source/xforms/evaluationcontext.hxx4
-rw-r--r--forms/source/xforms/mip.cxx4
-rw-r--r--forms/source/xforms/mip.hxx6
-rw-r--r--forms/source/xforms/model.cxx6
-rw-r--r--forms/source/xforms/model.hxx2
-rw-r--r--forms/source/xforms/model_helper.hxx6
-rw-r--r--forms/source/xforms/model_ui.cxx46
-rw-r--r--forms/source/xforms/namedcollection.hxx8
-rw-r--r--forms/source/xforms/pathexpression.cxx6
-rw-r--r--forms/source/xforms/pathexpression.hxx8
-rw-r--r--forms/source/xforms/propertysetbase.cxx2
-rw-r--r--forms/source/xforms/propertysetbase.hxx6
-rw-r--r--forms/source/xforms/resourcehelper.cxx2
-rw-r--r--forms/source/xforms/resourcehelper.hxx2
-rw-r--r--forms/source/xforms/submission.cxx26
-rw-r--r--forms/source/xforms/submission.hxx4
-rw-r--r--forms/source/xforms/submission/replace.cxx2
-rw-r--r--forms/source/xforms/submission/serialization.hxx6
-rw-r--r--forms/source/xforms/submission/serialization_app_xml.cxx18
-rw-r--r--forms/source/xforms/submission/serialization_app_xml.hxx4
-rw-r--r--forms/source/xforms/submission/serialization_urlencoded.cxx2
-rw-r--r--forms/source/xforms/submission/serialization_urlencoded.hxx2
-rw-r--r--forms/source/xforms/submission/submission.hxx4
-rw-r--r--forms/source/xforms/submission/submission_get.cxx8
-rw-r--r--forms/source/xforms/submission/submission_get.hxx2
-rw-r--r--forms/source/xforms/submission/submission_post.cxx12
-rw-r--r--forms/source/xforms/submission/submission_post.hxx2
-rw-r--r--forms/source/xforms/submission/submission_put.cxx10
-rw-r--r--forms/source/xforms/submission/submission_put.hxx2
-rw-r--r--forms/source/xforms/unohelper.cxx6
-rw-r--r--forms/source/xforms/unohelper.hxx2
-rw-r--r--forms/source/xforms/warnings_guard_unicode_regex.h2
-rw-r--r--forms/source/xforms/xforms_services.cxx8
-rw-r--r--forms/source/xforms/xforms_services.hxx14
-rw-r--r--forms/source/xforms/xformsevent.cxx8
-rw-r--r--forms/source/xforms/xformsevent.hxx16
-rw-r--r--forms/source/xforms/xmlhelper.cxx2
-rw-r--r--forms/source/xforms/xmlhelper.hxx2
-rw-r--r--forms/source/xforms/xpathlib/extension.cxx2
-rw-r--r--forms/source/xforms/xpathlib/extension.hxx2
-rw-r--r--forms/source/xforms/xpathlib/xpathlib.cxx2
-rw-r--r--formula/inc/AddressConvention.hxx2
-rw-r--r--formula/inc/formula/ExternalReferenceHelper.hxx2
-rw-r--r--formula/inc/formula/FormulaCompiler.hxx16
-rw-r--r--formula/inc/formula/FormulaOpCodeMapperObj.hxx4
-rw-r--r--formula/inc/formula/IControlReferenceHandler.hxx2
-rw-r--r--formula/inc/formula/IFunctionDescription.hxx8
-rw-r--r--formula/inc/formula/compiler.hrc2
-rw-r--r--formula/inc/formula/errorcodes.hxx8
-rw-r--r--formula/inc/formula/formdata.hxx72
-rw-r--r--formula/inc/formula/formula.hxx34
-rw-r--r--formula/inc/formula/formuladllapi.h6
-rw-r--r--formula/inc/formula/formulahelper.hxx2
-rw-r--r--formula/inc/formula/funcutl.hxx2
-rw-r--r--formula/inc/formula/grammar.hxx2
-rw-r--r--formula/inc/formula/intruref.hxx6
-rw-r--r--formula/inc/formula/opcode.hxx630
-rw-r--r--formula/inc/formula/token.hxx8
-rw-r--r--formula/inc/formula/tokenarray.hxx4
-rw-r--r--formula/inc/helpids.hrc10
-rw-r--r--formula/inc/pch/precompiled_formula.cxx2
-rw-r--r--formula/inc/pch/precompiled_formula.hxx2
-rw-r--r--formula/source/core/api/FormulaCompiler.cxx8
-rw-r--r--formula/source/core/api/FormulaOpCodeMapperObj.cxx6
-rw-r--r--formula/source/core/api/services.cxx6
-rw-r--r--formula/source/core/api/token.cxx10
-rw-r--r--formula/source/core/inc/core_resource.hrc6
-rw-r--r--formula/source/core/inc/core_resource.hxx20
-rw-r--r--formula/source/core/resource/core_resource.cxx8
-rw-r--r--formula/source/core/resource/core_resource.src2
-rw-r--r--formula/source/ui/dlg/ControlHelper.hxx116
-rw-r--r--formula/source/ui/dlg/FormulaHelper.cxx74
-rw-r--r--formula/source/ui/dlg/formdlgs.hrc76
-rw-r--r--formula/source/ui/dlg/formdlgs.src32
-rw-r--r--formula/source/ui/dlg/formula.cxx392
-rw-r--r--formula/source/ui/dlg/funcpage.cxx20
-rw-r--r--formula/source/ui/dlg/funcpage.hxx40
-rw-r--r--formula/source/ui/dlg/funcutl.cxx388
-rw-r--r--formula/source/ui/dlg/parawin.cxx84
-rw-r--r--formula/source/ui/dlg/parawin.hrc44
-rw-r--r--formula/source/ui/dlg/parawin.hxx144
-rw-r--r--formula/source/ui/dlg/parawin.src28
-rw-r--r--formula/source/ui/dlg/structpg.cxx12
-rw-r--r--formula/source/ui/dlg/structpg.hxx34
-rw-r--r--formula/source/ui/inc/ForResId.hrc44
-rw-r--r--formula/source/ui/inc/ModuleHelper.hxx22
-rw-r--r--formula/source/ui/resource/ModuleHelper.cxx22
-rw-r--r--formula/util/hidother.src2
-rw-r--r--fpicker/inc/pch/precompiled_fpicker.cxx2
-rw-r--r--fpicker/inc/pch/precompiled_fpicker.hxx2
-rw-r--r--fpicker/source/aqua/AquaFilePickerDelegate.hxx2
-rw-r--r--fpicker/source/aqua/CFStringUtilities.cxx2
-rw-r--r--fpicker/source/aqua/CFStringUtilities.hxx2
-rw-r--r--fpicker/source/aqua/ControlHelper.cxx166
-rw-r--r--fpicker/source/aqua/ControlHelper.hxx26
-rw-r--r--fpicker/source/aqua/FPServiceInfo.hxx2
-rw-r--r--fpicker/source/aqua/FPentry.cxx2
-rw-r--r--fpicker/source/aqua/FilterHelper.cxx4
-rw-r--r--fpicker/source/aqua/FilterHelper.hxx2
-rw-r--r--fpicker/source/aqua/NSString_OOoAdditions.hxx2
-rw-r--r--fpicker/source/aqua/NSURL_OOoAdditions.hxx2
-rw-r--r--fpicker/source/aqua/SalAquaConstants.h2
-rw-r--r--fpicker/source/aqua/SalAquaFilePicker.cxx70
-rw-r--r--fpicker/source/aqua/SalAquaFilePicker.hxx16
-rw-r--r--fpicker/source/aqua/SalAquaFolderPicker.cxx12
-rw-r--r--fpicker/source/aqua/SalAquaFolderPicker.hxx2
-rw-r--r--fpicker/source/aqua/SalAquaPicker.cxx18
-rw-r--r--fpicker/source/aqua/SalAquaPicker.hxx6
-rw-r--r--fpicker/source/aqua/resourceprovider.cxx2
-rw-r--r--fpicker/source/aqua/resourceprovider.hxx2
-rw-r--r--fpicker/source/generic/fpicker.cxx2
-rw-r--r--fpicker/source/office/OfficeControlAccess.cxx120
-rw-r--r--fpicker/source/office/OfficeControlAccess.hxx32
-rw-r--r--fpicker/source/office/OfficeFilePicker.cxx42
-rw-r--r--fpicker/source/office/OfficeFilePicker.hxx94
-rw-r--r--fpicker/source/office/OfficeFilePicker.src2
-rw-r--r--fpicker/source/office/OfficeFolderPicker.cxx2
-rw-r--r--fpicker/source/office/OfficeFolderPicker.hxx26
-rw-r--r--fpicker/source/office/asyncfilepicker.cxx14
-rw-r--r--fpicker/source/office/asyncfilepicker.hxx14
-rw-r--r--fpicker/source/office/commonpicker.cxx36
-rw-r--r--fpicker/source/office/commonpicker.hxx58
-rw-r--r--fpicker/source/office/fpinteraction.cxx4
-rw-r--r--fpicker/source/office/fpinteraction.hxx8
-rw-r--r--fpicker/source/office/fps_office.cxx2
-rw-r--r--fpicker/source/office/fpsmartcontent.cxx2
-rw-r--r--fpicker/source/office/fpsmartcontent.hxx6
-rw-r--r--fpicker/source/office/iodlg.cxx140
-rw-r--r--fpicker/source/office/iodlg.hrc78
-rw-r--r--fpicker/source/office/iodlg.hxx180
-rw-r--r--fpicker/source/office/iodlg.src2
-rw-r--r--fpicker/source/office/iodlgimp.cxx32
-rw-r--r--fpicker/source/office/iodlgimp.hxx166
-rw-r--r--fpicker/source/office/pickercallbacks.hxx10
-rw-r--r--fpicker/source/unx/gnome/FPServiceInfo.hxx6
-rw-r--r--fpicker/source/unx/gnome/FPentry.cxx42
-rw-r--r--fpicker/source/unx/gnome/SalGtkFilePicker.cxx190
-rw-r--r--fpicker/source/unx/gnome/SalGtkFilePicker.hxx92
-rw-r--r--fpicker/source/unx/gnome/SalGtkFolderPicker.cxx14
-rw-r--r--fpicker/source/unx/gnome/SalGtkFolderPicker.hxx32
-rw-r--r--fpicker/source/unx/gnome/SalGtkPicker.cxx20
-rw-r--r--fpicker/source/unx/gnome/SalGtkPicker.hxx10
-rw-r--r--fpicker/source/unx/gnome/eventnotification.hxx4
-rw-r--r--fpicker/source/unx/gnome/fps_gnome.xml104
-rw-r--r--fpicker/source/unx/gnome/resourceprovider.cxx26
-rw-r--r--fpicker/source/unx/gnome/resourceprovider.hxx2
-rw-r--r--fpicker/source/unx/kde4/FPServiceInfo.hxx6
-rw-r--r--fpicker/source/unx/kde4/KDE4FPEntry.cxx14
-rw-r--r--fpicker/source/unx/kde4/KDE4FilePicker.cxx118
-rw-r--r--fpicker/source/unx/kde4/KDE4FilePicker.hxx32
-rw-r--r--fpicker/source/unx/kde4/fps_kde4.xml8
-rw-r--r--fpicker/source/win32/filepicker/FPServiceInfo.hxx8
-rw-r--r--fpicker/source/win32/filepicker/FPentry.cxx46
-rw-r--r--fpicker/source/win32/filepicker/FileOpenDlg.cxx226
-rw-r--r--fpicker/source/win32/filepicker/FileOpenDlg.hxx72
-rw-r--r--fpicker/source/win32/filepicker/FilePicker.cxx198
-rw-r--r--fpicker/source/win32/filepicker/FilePicker.hxx78
-rw-r--r--fpicker/source/win32/filepicker/FilterContainer.cxx36
-rw-r--r--fpicker/source/win32/filepicker/FilterContainer.hxx26
-rw-r--r--fpicker/source/win32/filepicker/IVistaFilePickerInternalNotify.hxx4
-rw-r--r--fpicker/source/win32/filepicker/PreviewCtrl.cxx206
-rw-r--r--fpicker/source/win32/filepicker/PreviewCtrl.hxx70
-rw-r--r--fpicker/source/win32/filepicker/SolarMutex.cxx6
-rw-r--r--fpicker/source/win32/filepicker/SolarMutex.hxx2
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePicker.cxx100
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePicker.hxx70
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerEventHandler.cxx58
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerEventHandler.hxx64
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx176
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx80
-rw-r--r--fpicker/source/win32/filepicker/WinFileOpenImpl.cxx368
-rw-r--r--fpicker/source/win32/filepicker/WinFileOpenImpl.hxx112
-rw-r--r--fpicker/source/win32/filepicker/asynceventnotifier.cxx86
-rw-r--r--fpicker/source/win32/filepicker/asynceventnotifier.hxx22
-rw-r--r--fpicker/source/win32/filepicker/asyncrequests.cxx8
-rw-r--r--fpicker/source/win32/filepicker/asyncrequests.hxx58
-rw-r--r--fpicker/source/win32/filepicker/comptr.hxx54
-rw-r--r--fpicker/source/win32/filepicker/controlaccess.cxx48
-rw-r--r--fpicker/source/win32/filepicker/controlaccess.hxx10
-rw-r--r--fpicker/source/win32/filepicker/controlcommand.cxx30
-rw-r--r--fpicker/source/win32/filepicker/controlcommand.hxx22
-rw-r--r--fpicker/source/win32/filepicker/controlcommandrequest.hxx8
-rw-r--r--fpicker/source/win32/filepicker/controlcommandresult.hxx2
-rw-r--r--fpicker/source/win32/filepicker/customcontrol.cxx10
-rw-r--r--fpicker/source/win32/filepicker/customcontrol.hxx8
-rw-r--r--fpicker/source/win32/filepicker/customcontrolcontainer.cxx20
-rw-r--r--fpicker/source/win32/filepicker/customcontrolcontainer.hxx8
-rw-r--r--fpicker/source/win32/filepicker/customcontrolfactory.cxx14
-rw-r--r--fpicker/source/win32/filepicker/customcontrolfactory.hxx4
-rw-r--r--fpicker/source/win32/filepicker/dialogcustomcontrols.cxx46
-rw-r--r--fpicker/source/win32/filepicker/dialogcustomcontrols.hxx28
-rw-r--r--fpicker/source/win32/filepicker/dibpreview.cxx26
-rw-r--r--fpicker/source/win32/filepicker/dibpreview.hxx24
-rw-r--r--fpicker/source/win32/filepicker/eventnotification.hxx4
-rw-r--r--fpicker/source/win32/filepicker/filepickereventnotification.cxx6
-rw-r--r--fpicker/source/win32/filepicker/filepickereventnotification.hxx6
-rw-r--r--fpicker/source/win32/filepicker/filepickerstate.cxx130
-rw-r--r--fpicker/source/win32/filepicker/filepickerstate.hxx12
-rw-r--r--fpicker/source/win32/filepicker/fps.xml66
-rw-r--r--fpicker/source/win32/filepicker/getfilenamewrapper.cxx46
-rw-r--r--fpicker/source/win32/filepicker/getfilenamewrapper.hxx6
-rw-r--r--fpicker/source/win32/filepicker/helppopupwindow.cxx168
-rw-r--r--fpicker/source/win32/filepicker/helppopupwindow.hxx16
-rw-r--r--fpicker/source/win32/filepicker/platform_vista.h2
-rw-r--r--fpicker/source/win32/filepicker/platform_xp.h2
-rw-r--r--fpicker/source/win32/filepicker/previewadapter.cxx156
-rw-r--r--fpicker/source/win32/filepicker/previewadapter.hxx18
-rw-r--r--fpicker/source/win32/filepicker/previewbase.cxx4
-rw-r--r--fpicker/source/win32/filepicker/previewbase.hxx18
-rw-r--r--fpicker/source/win32/filepicker/propmap.hxx20
-rw-r--r--fpicker/source/win32/filepicker/resource.h2
-rw-r--r--fpicker/source/win32/filepicker/shared.hxx8
-rw-r--r--fpicker/source/win32/filepicker/vistatypes.h2
-rw-r--r--fpicker/source/win32/filepicker/workbench/Test_fps.cxx94
-rw-r--r--fpicker/source/win32/folderpicker/FOPServiceInfo.hxx8
-rw-r--r--fpicker/source/win32/folderpicker/FolderPicker.cxx14
-rw-r--r--fpicker/source/win32/folderpicker/FolderPicker.hxx50
-rw-r--r--fpicker/source/win32/folderpicker/FopEvtDisp.hxx4
-rw-r--r--fpicker/source/win32/folderpicker/Fopentry.cxx40
-rw-r--r--fpicker/source/win32/folderpicker/MtaFop.cxx326
-rw-r--r--fpicker/source/win32/folderpicker/MtaFop.hxx44
-rw-r--r--fpicker/source/win32/folderpicker/WinFOPImpl.cxx44
-rw-r--r--fpicker/source/win32/folderpicker/WinFOPImpl.hxx18
-rw-r--r--fpicker/source/win32/folderpicker/fop.xml50
-rw-r--r--fpicker/source/win32/folderpicker/workbench/Test_fops.cxx36
-rw-r--r--fpicker/source/win32/misc/AutoBuffer.cxx30
-rw-r--r--fpicker/source/win32/misc/AutoBuffer.hxx16
-rw-r--r--fpicker/source/win32/misc/WinImplHelper.cxx144
-rw-r--r--fpicker/source/win32/misc/WinImplHelper.hxx16
-rw-r--r--fpicker/source/win32/misc/resourceprovider.cxx16
-rw-r--r--fpicker/source/win32/misc/resourceprovider.hxx2
-rw-r--r--fpicker/test/svdem.cxx32
-rw-r--r--framework/inc/acceleratorconst.h20
-rw-r--r--framework/inc/arguments.h8
-rw-r--r--framework/inc/classes/actiontriggercontainer.hxx18
-rw-r--r--framework/inc/classes/actiontriggerpropertyset.hxx56
-rw-r--r--framework/inc/classes/actiontriggerseparatorpropertyset.hxx46
-rw-r--r--framework/inc/classes/addonmenu.hxx38
-rw-r--r--framework/inc/classes/addonsoptions.hxx156
-rw-r--r--framework/inc/classes/bmkmenu.hxx22
-rw-r--r--framework/inc/classes/checkediterator.hxx160
-rw-r--r--framework/inc/classes/converter.hxx14
-rw-r--r--framework/inc/classes/droptargetlistener.hxx8
-rw-r--r--framework/inc/classes/filtercache.hxx228
-rw-r--r--framework/inc/classes/filtercachedata.hxx140
-rw-r--r--framework/inc/classes/framecontainer.hxx24
-rw-r--r--framework/inc/classes/framelistanalyzer.hxx37
-rw-r--r--framework/inc/classes/fwkresid.hxx6
-rw-r--r--framework/inc/classes/fwktabwindow.hxx4
-rwxr-xr-xframework/inc/classes/fwlresid.hxx6
-rw-r--r--framework/inc/classes/imagewrapper.hxx12
-rw-r--r--framework/inc/classes/menuextensionsupplier.hxx2
-rw-r--r--framework/inc/classes/menumanager.hxx80
-rw-r--r--framework/inc/classes/propertysethelper.hxx10
-rw-r--r--framework/inc/classes/protocolhandlercache.hxx18
-rw-r--r--framework/inc/classes/resource.hrc10
-rw-r--r--framework/inc/classes/rootactiontriggercontainer.hxx50
-rw-r--r--framework/inc/classes/servicemanager.hxx180
-rw-r--r--framework/inc/classes/sfxhelperfunctions.hxx2
-rw-r--r--framework/inc/classes/taskcreator.hxx16
-rw-r--r--framework/inc/classes/wildcard.hxx108
-rw-r--r--framework/inc/commands.h12
-rw-r--r--framework/inc/dispatch/basedispatcher.hxx34
-rw-r--r--framework/inc/dispatch/blankdispatcher.hxx32
-rw-r--r--framework/inc/dispatch/closedispatcher.hxx12
-rw-r--r--framework/inc/dispatch/createdispatcher.hxx28
-rw-r--r--framework/inc/dispatch/dispatchinformationprovider.hxx24
-rw-r--r--framework/inc/dispatch/dispatchprovider.hxx14
-rw-r--r--framework/inc/dispatch/helpagentdispatcher.hxx72
-rw-r--r--framework/inc/dispatch/interaction.hxx28
-rw-r--r--framework/inc/dispatch/interceptionhelper.hxx12
-rw-r--r--framework/inc/dispatch/mailtodispatcher.hxx18
-rw-r--r--framework/inc/dispatch/menudispatcher.hxx214
-rw-r--r--framework/inc/dispatch/oxt_handler.hxx30
-rw-r--r--framework/inc/dispatch/popupmenudispatcher.hxx80
-rw-r--r--framework/inc/dispatch/selfdispatcher.hxx24
-rw-r--r--framework/inc/dispatch/servicehandler.hxx18
-rw-r--r--framework/inc/dispatch/startmoduledispatcher.hxx12
-rw-r--r--framework/inc/dispatch/systemexec.hxx18
-rw-r--r--framework/inc/dispatchcommands.h10
-rw-r--r--framework/inc/framework.hrc14
-rw-r--r--framework/inc/general.h4
-rw-r--r--framework/inc/helper/acceleratorinfo.hxx2
-rw-r--r--framework/inc/helper/actiontriggerhelper.hxx12
-rw-r--r--framework/inc/helper/configimporter.hxx4
-rw-r--r--framework/inc/helper/dockingareadefaultacceptor.hxx40
-rw-r--r--framework/inc/helper/fixeddocumentproperties.hxx80
-rw-r--r--framework/inc/helper/imageproducer.hxx4
-rwxr-xr-xframework/inc/helper/mischelper.hxx10
-rw-r--r--framework/inc/helper/networkdomain.hxx2
-rw-r--r--framework/inc/helper/ocomponentaccess.hxx168
-rw-r--r--framework/inc/helper/ocomponentenumeration.hxx158
-rw-r--r--framework/inc/helper/oframes.hxx244
-rw-r--r--framework/inc/helper/otasksaccess.hxx154
-rw-r--r--framework/inc/helper/otasksenumeration.hxx164
-rw-r--r--framework/inc/helper/persistentwindowstate.hxx14
-rw-r--r--framework/inc/helper/propertysetcontainer.hxx10
-rw-r--r--framework/inc/helper/shareablemutex.hxx12
-rw-r--r--framework/inc/helper/statusindicator.hxx28
-rw-r--r--framework/inc/helper/statusindicatorfactory.hxx8
-rw-r--r--framework/inc/helper/tagwindowasmodified.hxx32
-rw-r--r--framework/inc/helper/timerhelper.hxx6
-rw-r--r--framework/inc/helper/titlebarupdate.hxx14
-rw-r--r--framework/inc/helper/titlehelper.hxx66
-rw-r--r--framework/inc/helper/uiconfigelementwrapperbase.hxx20
-rw-r--r--framework/inc/helper/uielementwrapperbase.hxx22
-rw-r--r--framework/inc/helper/vclstatusindicator.hxx46
-rw-r--r--framework/inc/helper/wakeupthread.hxx16
-rw-r--r--framework/inc/helpid.hrc4
-rw-r--r--framework/inc/interaction/preventduplicateinteraction.hxx14
-rw-r--r--framework/inc/interaction/quietinteraction.hxx14
-rw-r--r--framework/inc/jobs/configaccess.hxx2
-rw-r--r--framework/inc/jobs/helponstartup.hxx10
-rw-r--r--framework/inc/jobs/job.hxx2
-rw-r--r--framework/inc/jobs/jobconst.hxx4
-rw-r--r--framework/inc/jobs/jobdata.hxx8
-rw-r--r--framework/inc/jobs/jobdispatch.hxx2
-rw-r--r--framework/inc/jobs/jobexecutor.hxx2
-rw-r--r--framework/inc/jobs/jobresult.hxx2
-rw-r--r--framework/inc/jobs/joburl.hxx2
-rw-r--r--framework/inc/jobs/shelljob.hxx26
-rw-r--r--framework/inc/loadstate.h6
-rw-r--r--framework/inc/macros/debug.hxx44
-rw-r--r--framework/inc/macros/debug/assertion.hxx116
-rw-r--r--framework/inc/macros/debug/event.hxx108
-rw-r--r--framework/inc/macros/debug/filterdbg.hxx6
-rw-r--r--framework/inc/macros/debug/logmechanism.hxx42
-rw-r--r--framework/inc/macros/debug/memorymeasure.hxx6
-rw-r--r--framework/inc/macros/debug/mutex.hxx20
-rw-r--r--framework/inc/macros/debug/plugin.hxx202
-rw-r--r--framework/inc/macros/debug/registration.hxx50
-rw-r--r--framework/inc/macros/debug/targeting.hxx274
-rw-r--r--framework/inc/macros/debug/timemeasure.hxx6
-rw-r--r--framework/inc/macros/generic.hxx20
-rw-r--r--framework/inc/macros/registration.hxx290
-rw-r--r--framework/inc/macros/xinterface.hxx978
-rw-r--r--framework/inc/macros/xserviceinfo.hxx124
-rw-r--r--framework/inc/macros/xtypeprovider.hxx1032
-rw-r--r--framework/inc/mediadescriptor.h2
-rw-r--r--framework/inc/pch/precompiled_framework.cxx2
-rw-r--r--framework/inc/pch/precompiled_framework.hxx2
-rw-r--r--framework/inc/properties.h4
-rw-r--r--framework/inc/protocols.h8
-rw-r--r--framework/inc/queries.h16
-rw-r--r--framework/inc/recording/dispatchrecorder.hxx2
-rw-r--r--framework/inc/recording/dispatchrecordersupplier.hxx12
-rw-r--r--framework/inc/services.h102
-rw-r--r--framework/inc/services/autorecovery.hxx34
-rw-r--r--framework/inc/services/backingcomp.hxx8
-rw-r--r--framework/inc/services/contenthandlerfactory.hxx90
-rw-r--r--framework/inc/services/desktop.hxx56
-rw-r--r--framework/inc/services/detectorfactory.hxx14
-rw-r--r--framework/inc/services/dispatchhelper.hxx2
-rw-r--r--framework/inc/services/frame.hxx218
-rw-r--r--framework/inc/services/frameloaderfactory.hxx278
-rw-r--r--framework/inc/services/layoutmanager.hxx84
-rw-r--r--framework/inc/services/license.hxx20
-rw-r--r--framework/inc/services/licensedlg.hxx2
-rw-r--r--framework/inc/services/logindialog.hrc48
-rw-r--r--framework/inc/services/logindialog.hxx868
-rw-r--r--framework/inc/services/mediatypedetectionhelper.hxx78
-rw-r--r--framework/inc/services/modulemanager.hxx12
-rw-r--r--framework/inc/services/pathsettings.hxx12
-rw-r--r--framework/inc/services/pluginframe.hxx308
-rw-r--r--framework/inc/services/sessionlistener.hxx10
-rw-r--r--framework/inc/services/substitutepathvars.hxx136
-rw-r--r--framework/inc/services/tabwindowservice.hxx52
-rw-r--r--framework/inc/services/task.hxx358
-rw-r--r--framework/inc/services/taskcreatorsrv.hxx28
-rw-r--r--framework/inc/services/uriabbreviation.hxx6
-rw-r--r--framework/inc/services/urltransformer.hxx132
-rw-r--r--framework/inc/stdtypes.h6
-rw-r--r--framework/inc/tabwin/tabwindow.hxx40
-rw-r--r--framework/inc/tabwin/tabwinfactory.hxx12
-rw-r--r--framework/inc/targets.h12
-rw-r--r--framework/inc/threadhelp/fairrwlock.hxx38
-rw-r--r--framework/inc/threadhelp/gate.hxx114
-rw-r--r--framework/inc/threadhelp/igate.h14
-rw-r--r--framework/inc/threadhelp/imutex.h14
-rw-r--r--framework/inc/threadhelp/inoncopyable.h20
-rw-r--r--framework/inc/threadhelp/irwlock.h36
-rw-r--r--framework/inc/threadhelp/itransactionmanager.h32
-rw-r--r--framework/inc/threadhelp/lockhelper.hxx18
-rw-r--r--framework/inc/threadhelp/readguard.hxx46
-rw-r--r--framework/inc/threadhelp/resetableguard.hxx80
-rw-r--r--framework/inc/threadhelp/threadhelpbase.hxx22
-rw-r--r--framework/inc/threadhelp/transactionbase.hxx24
-rw-r--r--framework/inc/threadhelp/transactionguard.hxx38
-rw-r--r--framework/inc/threadhelp/transactionmanager.hxx22
-rw-r--r--framework/inc/threadhelp/writeguard.hxx46
-rw-r--r--framework/inc/uiconfiguration/globalsettings.hxx12
-rw-r--r--framework/inc/uiconfiguration/graphicnameaccess.hxx10
-rw-r--r--framework/inc/uiconfiguration/imagemanager.hxx12
-rw-r--r--framework/inc/uiconfiguration/imagetype.hxx6
-rw-r--r--framework/inc/uiconfiguration/moduleimagemanager.hxx10
-rw-r--r--framework/inc/uiconfiguration/moduleuicfgsupplier.hxx20
-rw-r--r--framework/inc/uiconfiguration/moduleuiconfigurationmanager.hxx25
-rw-r--r--framework/inc/uiconfiguration/uicategorydescription.hxx8
-rw-r--r--framework/inc/uiconfiguration/uiconfigurationmanager.hxx24
-rw-r--r--framework/inc/uiconfiguration/windowstateconfiguration.hxx26
-rw-r--r--framework/inc/uielement/addonstoolbarmanager.hxx16
-rw-r--r--framework/inc/uielement/addonstoolbarwrapper.hxx14
-rw-r--r--framework/inc/uielement/buttontoolbarcontroller.hxx20
-rw-r--r--framework/inc/uielement/comboboxtoolbarcontroller.hxx8
-rw-r--r--framework/inc/uielement/commandinfo.hxx4
-rw-r--r--framework/inc/uielement/complextoolbarcontroller.hxx16
-rw-r--r--framework/inc/uielement/constitemcontainer.hxx30
-rw-r--r--framework/inc/uielement/controlmenucontroller.hxx16
-rw-r--r--framework/inc/uielement/dropdownboxtoolbarcontroller.hxx10
-rw-r--r--framework/inc/uielement/edittoolbarcontroller.hxx8
-rw-r--r--framework/inc/uielement/fontmenucontroller.hxx14
-rw-r--r--framework/inc/uielement/fontsizemenucontroller.hxx14
-rw-r--r--framework/inc/uielement/footermenucontroller.hxx24
-rw-r--r--framework/inc/uielement/generictoolbarcontroller.hxx18
-rw-r--r--framework/inc/uielement/headermenucontroller.hxx12
-rw-r--r--framework/inc/uielement/imagebuttontoolbarcontroller.hxx10
-rw-r--r--framework/inc/uielement/itemcontainer.hxx22
-rw-r--r--framework/inc/uielement/langselectionmenucontroller.hxx18
-rw-r--r--framework/inc/uielement/langselectionstatusbarcontroller.hxx24
-rw-r--r--framework/inc/uielement/logoimagestatusbarcontroller.hxx24
-rw-r--r--framework/inc/uielement/logotextstatusbarcontroller.hxx24
-rw-r--r--framework/inc/uielement/macrosmenucontroller.hxx10
-rw-r--r--framework/inc/uielement/menubarmanager.hxx96
-rw-r--r--framework/inc/uielement/menubarmerger.hxx2
-rw-r--r--framework/inc/uielement/menubarwrapper.hxx22
-rw-r--r--framework/inc/uielement/newmenucontroller.hxx20
-rw-r--r--framework/inc/uielement/objectmenucontroller.hxx8
-rw-r--r--framework/inc/uielement/popupmenucontroller.hxx2
-rw-r--r--framework/inc/uielement/progressbarwrapper.hxx28
-rw-r--r--framework/inc/uielement/recentfilesmenucontroller.hxx22
-rw-r--r--framework/inc/uielement/rootitemcontainer.hxx26
-rw-r--r--framework/inc/uielement/simpletextstatusbarcontroller.hxx24
-rw-r--r--framework/inc/uielement/spinfieldtoolbarcontroller.hxx10
-rw-r--r--framework/inc/uielement/statusbar.hxx14
-rw-r--r--framework/inc/uielement/statusbarmanager.hxx28
-rw-r--r--framework/inc/uielement/statusbarwrapper.hxx12
-rw-r--r--framework/inc/uielement/statusindicatorinterfacewrapper.hxx12
-rw-r--r--framework/inc/uielement/togglebuttontoolbarcontroller.hxx10
-rw-r--r--framework/inc/uielement/toolbar.hxx14
-rw-r--r--framework/inc/uielement/toolbarmanager.hxx38
-rw-r--r--framework/inc/uielement/toolbarmerger.hxx2
-rw-r--r--framework/inc/uielement/toolbarsmenucontroller.hxx16
-rw-r--r--framework/inc/uielement/toolbarwrapper.hxx22
-rw-r--r--framework/inc/uielement/uicommanddescription.hxx28
-rw-r--r--framework/inc/uifactory/addonstoolboxfactory.hxx14
-rwxr-xr-xframework/inc/uifactory/factoryconfiguration.hxx12
-rw-r--r--framework/inc/uifactory/menubarfactory.hxx12
-rw-r--r--framework/inc/uifactory/popupmenucontrollerfactory.hxx8
-rw-r--r--framework/inc/uifactory/statusbarcontrollerfactory.hxx8
-rw-r--r--framework/inc/uifactory/statusbarfactory.hxx8
-rw-r--r--framework/inc/uifactory/toolbarcontrollerfactory.hxx10
-rw-r--r--framework/inc/uifactory/toolboxfactory.hxx8
-rw-r--r--framework/inc/uifactory/uielementfactorymanager.hxx18
-rw-r--r--framework/inc/uifactory/windowcontentfactorymanager.hxx16
-rw-r--r--framework/inc/xml/acceleratorconfigurationreader.hxx66
-rw-r--r--framework/inc/xml/acceleratorconfigurationwriter.hxx30
-rw-r--r--framework/inc/xml/eventsconfiguration.hxx10
-rw-r--r--framework/inc/xml/eventsdocumenthandler.hxx80
-rw-r--r--framework/inc/xml/imagesconfiguration.hxx36
-rw-r--r--framework/inc/xml/imagesdocumenthandler.hxx84
-rw-r--r--framework/inc/xml/menuconfiguration.hxx32
-rw-r--r--framework/inc/xml/menudocumenthandler.hxx94
-rw-r--r--framework/inc/xml/saxnamespacefilter.hxx40
-rw-r--r--framework/inc/xml/statusbarconfiguration.hxx16
-rw-r--r--framework/inc/xml/statusbardocumenthandler.hxx62
-rw-r--r--framework/inc/xml/toolboxconfiguration.hxx4
-rw-r--r--framework/inc/xml/toolboxconfigurationdefines.hxx144
-rw-r--r--framework/inc/xml/toolboxdocumenthandler.hxx84
-rw-r--r--framework/inc/xml/xmlnamespaces.hxx16
-rw-r--r--framework/prj/d.lst1
-rw-r--r--framework/qa/complex/ModuleManager/CheckXModuleManager.java62
-rw-r--r--framework/qa/complex/XUserInputInterception/EventTest.java186
-rw-r--r--framework/qa/complex/accelerators/AcceleratorsConfigurationTest.java16
-rw-r--r--framework/qa/complex/accelerators/helper/KeyMapping.java2
-rwxr-xr-xframework/qa/complex/api_internal/CheckAPI.java2
-rwxr-xr-xframework/qa/complex/broken_document/LoadDocument.java2
-rw-r--r--framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java102
-rw-r--r--framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java44
-rwxr-xr-xframework/qa/complex/desktop/DesktopTerminate.java6
-rw-r--r--framework/qa/complex/dispatches/checkdispatchapi.java26
-rw-r--r--framework/qa/complex/dispatches/helper/Interceptor.java2
-rwxr-xr-xframework/qa/complex/disposing/GetServiceWhileDisposingOffice.java2
-rw-r--r--framework/qa/complex/framework/autosave/AutoSave.java4
-rw-r--r--framework/qa/complex/framework/autosave/Protocol.java2
-rw-r--r--framework/qa/complex/framework/recovery/CrashThread.java8
-rw-r--r--framework/qa/complex/framework/recovery/KlickButtonThread.java8
-rw-r--r--framework/qa/complex/framework/recovery/RecoveryTest.java276
-rw-r--r--framework/qa/complex/framework/recovery/RecoveryTools.java102
-rw-r--r--framework/qa/complex/framework/recovery/TimeoutThread.java6
-rwxr-xr-xframework/qa/complex/imageManager/CheckImageManager.java48
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XComponent.java2
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XImageManager.java18
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XInitialization.java2
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XTypeProvider.java2
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XUIConfiguration.java2
-rwxr-xr-xframework/qa/complex/imageManager/interfaces/_XUIConfigurationPersistence.java2
-rw-r--r--framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java200
-rw-r--r--framework/qa/complex/loadAllDocuments/helper/InteractionHandler.java2
-rw-r--r--framework/qa/complex/loadAllDocuments/helper/StatusIndicator.java4
-rw-r--r--framework/qa/complex/loadAllDocuments/helper/StreamSimulator.java80
-rwxr-xr-xframework/qa/complex/path_settings/PathSettingsTest.java2
-rwxr-xr-xframework/qa/complex/path_substitution/PathSubstitutionTest.java2
-rwxr-xr-xframework/qa/complex/sequence/CheckSequenceOfEnum.java2
-rw-r--r--framework/source/accelerators/acceleratorcache.cxx88
-rw-r--r--framework/source/accelerators/acceleratorconfiguration.cxx340
-rw-r--r--framework/source/accelerators/acceleratorexecute.cxx90
-rw-r--r--framework/source/accelerators/acceleratorexecute.hxx84
-rw-r--r--framework/source/accelerators/documentacceleratorconfiguration.cxx28
-rw-r--r--framework/source/accelerators/globalacceleratorconfiguration.cxx22
-rw-r--r--framework/source/accelerators/keymapping.cxx36
-rw-r--r--framework/source/accelerators/moduleacceleratorconfiguration.cxx28
-rw-r--r--framework/source/accelerators/presethandler.cxx212
-rw-r--r--framework/source/accelerators/storageholder.cxx148
-rw-r--r--framework/source/application/framework.cxx104
-rw-r--r--framework/source/application/login.cxx110
-rw-r--r--framework/source/classes/actiontriggercontainer.cxx14
-rw-r--r--framework/source/classes/actiontriggerpropertyset.cxx94
-rw-r--r--framework/source/classes/actiontriggerseparatorpropertyset.cxx56
-rw-r--r--framework/source/classes/addonmenu.cxx30
-rw-r--r--framework/source/classes/addonsoptions.cxx646
-rw-r--r--framework/source/classes/bmkmenu.cxx30
-rw-r--r--framework/source/classes/converter.cxx8
-rw-r--r--framework/source/classes/droptargetlistener.cxx10
-rw-r--r--framework/source/classes/framecontainer.cxx16
-rw-r--r--framework/source/classes/framelistanalyzer.cxx16
-rw-r--r--framework/source/classes/fwkresid.cxx12
-rw-r--r--framework/source/classes/fwktabwindow.cxx6
-rwxr-xr-xframework/source/classes/fwlresid.cxx12
-rw-r--r--framework/source/classes/imagewrapper.cxx16
-rw-r--r--framework/source/classes/menuextensionsupplier.cxx6
-rw-r--r--framework/source/classes/menumanager.cxx134
-rw-r--r--framework/source/classes/propertysethelper.cxx10
-rw-r--r--framework/source/classes/protocolhandlercache.cxx16
-rw-r--r--framework/source/classes/resource.src34
-rw-r--r--framework/source/classes/rootactiontriggercontainer.cxx30
-rw-r--r--framework/source/classes/sfxhelperfunctions.cxx16
-rw-r--r--framework/source/classes/taskcreator.cxx32
-rw-r--r--framework/source/constant/containerquery.cxx2
-rw-r--r--framework/source/constant/contenthandler.cxx2
-rw-r--r--framework/source/constant/frameloader.cxx2
-rw-r--r--framework/source/dispatch/closedispatcher.cxx4
-rw-r--r--framework/source/dispatch/dispatchinformationprovider.cxx36
-rw-r--r--framework/source/dispatch/dispatchprovider.cxx28
-rw-r--r--framework/source/dispatch/helpagentdispatcher.cxx86
-rw-r--r--framework/source/dispatch/interaction.cxx18
-rw-r--r--framework/source/dispatch/interceptionhelper.cxx16
-rw-r--r--framework/source/dispatch/loaddispatcher.cxx6
-rw-r--r--framework/source/dispatch/mailtodispatcher.cxx18
-rw-r--r--framework/source/dispatch/menudispatcher.cxx126
-rw-r--r--framework/source/dispatch/oxt_handler.cxx20
-rw-r--r--framework/source/dispatch/popupmenudispatcher.cxx144
-rw-r--r--framework/source/dispatch/servicehandler.cxx22
-rw-r--r--framework/source/dispatch/startmoduledispatcher.cxx14
-rw-r--r--framework/source/dispatch/systemexec.cxx18
-rwxr-xr-xframework/source/dispatch/windowcommanddispatch.cxx18
-rw-r--r--framework/source/helper/acceleratorinfo.cxx10
-rw-r--r--framework/source/helper/actiontriggerhelper.cxx20
-rw-r--r--framework/source/helper/configimporter.cxx4
-rw-r--r--framework/source/helper/dockingareadefaultacceptor.cxx46
-rw-r--r--framework/source/helper/imageproducer.cxx6
-rw-r--r--framework/source/helper/mischelper.cxx12
-rw-r--r--framework/source/helper/networkdomain.cxx130
-rw-r--r--framework/source/helper/ocomponentaccess.cxx66
-rw-r--r--framework/source/helper/ocomponentenumeration.cxx70
-rw-r--r--framework/source/helper/oframes.cxx148
-rw-r--r--framework/source/helper/persistentwindowstate.cxx74
-rw-r--r--framework/source/helper/propertysetcontainer.cxx40
-rw-r--r--framework/source/helper/shareablemutex.cxx8
-rw-r--r--framework/source/helper/statusindicator.cxx2
-rw-r--r--framework/source/helper/statusindicatorfactory.cxx8
-rw-r--r--framework/source/helper/tagwindowasmodified.cxx46
-rw-r--r--framework/source/helper/titlebarupdate.cxx46
-rw-r--r--framework/source/helper/titlehelper.cxx108
-rw-r--r--framework/source/helper/uiconfigelementwrapperbase.cxx22
-rw-r--r--framework/source/helper/uielementwrapperbase.cxx26
-rw-r--r--framework/source/helper/vclstatusindicator.cxx52
-rw-r--r--framework/source/helper/wakeupthread.cxx8
-rw-r--r--framework/source/inc/accelerators/acceleratorcache.hxx44
-rw-r--r--framework/source/inc/accelerators/acceleratorconfiguration.hxx32
-rw-r--r--framework/source/inc/accelerators/documentacceleratorconfiguration.hxx28
-rw-r--r--framework/source/inc/accelerators/globalacceleratorconfiguration.hxx16
-rw-r--r--framework/source/inc/accelerators/istoragelistener.hxx4
-rw-r--r--framework/source/inc/accelerators/keymapping.hxx36
-rw-r--r--framework/source/inc/accelerators/moduleacceleratorconfiguration.hxx24
-rw-r--r--framework/source/inc/accelerators/presethandler.hxx238
-rw-r--r--framework/source/inc/accelerators/storageholder.hxx70
-rw-r--r--framework/source/inc/constant/containerquery.hxx2
-rw-r--r--framework/source/inc/constant/contenthandler.hxx2
-rw-r--r--framework/source/inc/constant/frameloader.hxx2
-rw-r--r--framework/source/inc/dispatch/loaddispatcher.hxx2
-rw-r--r--framework/source/inc/dispatch/uieventloghelper.hxx6
-rwxr-xr-xframework/source/inc/dispatch/windowcommanddispatch.hxx30
-rw-r--r--framework/source/inc/loadenv/actionlockguard.hxx2
-rw-r--r--framework/source/inc/loadenv/loadenv.hxx4
-rw-r--r--framework/source/inc/loadenv/loadenvexception.hxx2
-rw-r--r--framework/source/inc/loadenv/targethelper.hxx2
-rw-r--r--framework/source/inc/pattern/configuration.hxx46
-rw-r--r--framework/source/inc/pattern/frame.hxx18
-rw-r--r--framework/source/inc/pattern/storages.hxx14
-rw-r--r--framework/source/inc/pattern/window.hxx16
-rw-r--r--framework/source/interaction/preventduplicateinteraction.cxx14
-rw-r--r--framework/source/interaction/quietinteraction.cxx14
-rw-r--r--framework/source/jobs/configaccess.cxx16
-rw-r--r--framework/source/jobs/helponstartup.cxx16
-rw-r--r--framework/source/jobs/job.cxx16
-rw-r--r--framework/source/jobs/jobconst.cxx16
-rw-r--r--framework/source/jobs/jobdata.cxx14
-rw-r--r--framework/source/jobs/jobdispatch.cxx16
-rw-r--r--framework/source/jobs/jobexecutor.cxx18
-rw-r--r--framework/source/jobs/jobresult.cxx20
-rw-r--r--framework/source/jobs/joburl.cxx2
-rw-r--r--framework/source/jobs/shelljob.cxx18
-rw-r--r--framework/source/layoutmanager/layoutmanager.cxx148
-rw-r--r--framework/source/loadenv/loadenv.cxx7
-rw-r--r--framework/source/loadenv/targethelper.cxx2
-rw-r--r--framework/source/recording/dispatchrecorder.cxx2
-rw-r--r--framework/source/recording/dispatchrecordersupplier.cxx10
-rw-r--r--framework/source/register/register3rdcomponents.cxx24
-rw-r--r--framework/source/register/registerlogindialog.cxx12
-rw-r--r--framework/source/register/registerservices.cxx36
-rw-r--r--framework/source/register/registertemp.cxx22
-rw-r--r--framework/source/services/autorecovery.cxx8
-rw-r--r--framework/source/services/backingcomp.cxx12
-rw-r--r--framework/source/services/backingwindow.cxx60
-rw-r--r--framework/source/services/backingwindow.hxx6
-rw-r--r--framework/source/services/desktop.cxx136
-rw-r--r--framework/source/services/dispatchhelper.cxx2
-rw-r--r--framework/source/services/frame.cxx570
-rw-r--r--framework/source/services/fwk_services.src2
-rw-r--r--framework/source/services/license.cxx64
-rw-r--r--framework/source/services/mediatypedetectionhelper.cxx24
-rw-r--r--framework/source/services/menudocumenthandler.cxx90
-rw-r--r--framework/source/services/modulemanager.cxx18
-rw-r--r--framework/source/services/pathsettings.cxx28
-rw-r--r--framework/source/services/sessionlistener.cxx14
-rw-r--r--framework/source/services/substitutepathvars.cxx280
-rw-r--r--framework/source/services/tabwindowservice.cxx50
-rw-r--r--framework/source/services/taskcreatorsrv.cxx26
-rw-r--r--framework/source/services/uriabbreviation.cxx10
-rw-r--r--framework/source/services/urltransformer.cxx114
-rw-r--r--framework/source/tabwin/tabwindow.cxx72
-rw-r--r--framework/source/tabwin/tabwinfactory.cxx26
-rw-r--r--framework/source/threadhelp/lockhelper.cxx14
-rw-r--r--framework/source/threadhelp/transactionmanager.cxx24
-rw-r--r--framework/source/uiconfiguration/globalsettings.cxx74
-rw-r--r--framework/source/uiconfiguration/graphicnameaccess.cxx10
-rw-r--r--framework/source/uiconfiguration/imagemanager.cxx56
-rwxr-xr-xframework/source/uiconfiguration/imagemanagerimpl.cxx126
-rwxr-xr-xframework/source/uiconfiguration/imagemanagerimpl.hxx30
-rw-r--r--framework/source/uiconfiguration/moduleimagemanager.cxx26
-rw-r--r--framework/source/uiconfiguration/moduleuicfgsupplier.cxx12
-rw-r--r--framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx360
-rw-r--r--framework/source/uiconfiguration/uicategorydescription.cxx24
-rw-r--r--framework/source/uiconfiguration/uiconfigurationmanager.cxx160
-rwxr-xr-xframework/source/uiconfiguration/uiconfigurationmanagerimpl.cxx294
-rwxr-xr-xframework/source/uiconfiguration/uiconfigurationmanagerimpl.hxx20
-rw-r--r--framework/source/uiconfiguration/windowstateconfiguration.cxx32
-rw-r--r--framework/source/uielement/addonstoolbarmanager.cxx32
-rw-r--r--framework/source/uielement/addonstoolbarwrapper.cxx8
-rw-r--r--framework/source/uielement/buttontoolbarcontroller.cxx44
-rw-r--r--framework/source/uielement/comboboxtoolbarcontroller.cxx8
-rw-r--r--framework/source/uielement/complextoolbarcontroller.cxx8
-rw-r--r--framework/source/uielement/constitemcontainer.cxx14
-rw-r--r--framework/source/uielement/controlmenucontroller.cxx150
-rw-r--r--framework/source/uielement/dropdownboxtoolbarcontroller.cxx8
-rw-r--r--framework/source/uielement/edittoolbarcontroller.cxx8
-rw-r--r--framework/source/uielement/fontmenucontroller.cxx30
-rw-r--r--framework/source/uielement/fontsizemenucontroller.cxx62
-rw-r--r--framework/source/uielement/footermenucontroller.cxx16
-rw-r--r--framework/source/uielement/generictoolbarcontroller.cxx10
-rw-r--r--framework/source/uielement/headermenucontroller.cxx46
-rw-r--r--framework/source/uielement/imagebuttontoolbarcontroller.cxx8
-rw-r--r--framework/source/uielement/itemcontainer.cxx12
-rw-r--r--framework/source/uielement/langselectionmenucontroller.cxx34
-rw-r--r--framework/source/uielement/langselectionstatusbarcontroller.cxx12
-rw-r--r--framework/source/uielement/logoimagestatusbarcontroller.cxx18
-rw-r--r--framework/source/uielement/logotextstatusbarcontroller.cxx18
-rw-r--r--framework/source/uielement/macrosmenucontroller.cxx26
-rw-r--r--framework/source/uielement/menubarmanager.cxx102
-rw-r--r--framework/source/uielement/menubarmerger.cxx46
-rw-r--r--framework/source/uielement/menubarwrapper.cxx10
-rw-r--r--framework/source/uielement/newmenucontroller.cxx12
-rw-r--r--framework/source/uielement/objectmenucontroller.cxx16
-rw-r--r--framework/source/uielement/popupmenucontroller.cxx6
-rw-r--r--framework/source/uielement/progressbarwrapper.cxx72
-rw-r--r--framework/source/uielement/recentfilesmenucontroller.cxx26
-rw-r--r--framework/source/uielement/rootitemcontainer.cxx20
-rw-r--r--framework/source/uielement/simpletextstatusbarcontroller.cxx26
-rw-r--r--framework/source/uielement/spinfieldtoolbarcontroller.cxx8
-rw-r--r--framework/source/uielement/statusbar.cxx10
-rw-r--r--framework/source/uielement/statusbarmanager.cxx150
-rw-r--r--framework/source/uielement/statusbarwrapper.cxx10
-rw-r--r--framework/source/uielement/statusindicatorinterfacewrapper.cxx6
-rw-r--r--framework/source/uielement/togglebuttontoolbarcontroller.cxx8
-rw-r--r--framework/source/uielement/toolbar.cxx6
-rw-r--r--framework/source/uielement/toolbarmanager.cxx58
-rw-r--r--framework/source/uielement/toolbarmerger.cxx2
-rw-r--r--framework/source/uielement/toolbarsmenucontroller.cxx28
-rw-r--r--framework/source/uielement/toolbarwrapper.cxx8
-rw-r--r--framework/source/uielement/uicommanddescription.cxx24
-rw-r--r--framework/source/uifactory/addonstoolboxfactory.cxx20
-rwxr-xr-xframework/source/uifactory/factoryconfiguration.cxx70
-rw-r--r--framework/source/uifactory/menubarfactory.cxx32
-rw-r--r--framework/source/uifactory/popupmenucontrollerfactory.cxx24
-rw-r--r--framework/source/uifactory/statusbarcontrollerfactory.cxx26
-rw-r--r--framework/source/uifactory/statusbarfactory.cxx18
-rw-r--r--framework/source/uifactory/toolbarcontrollerfactory.cxx84
-rw-r--r--framework/source/uifactory/toolboxfactory.cxx18
-rw-r--r--framework/source/uifactory/uielementfactorymanager.cxx106
-rw-r--r--framework/source/uifactory/windowcontentfactorymanager.cxx54
-rw-r--r--framework/source/unotypes/fwk.xml70
-rw-r--r--framework/source/unotypes/fwl.xml28
-rw-r--r--framework/source/unotypes/lgd.xml24
-rw-r--r--framework/source/xml/acceleratorconfigurationreader.cxx56
-rw-r--r--framework/source/xml/acceleratorconfigurationwriter.cxx6
-rw-r--r--framework/source/xml/eventsconfiguration.cxx8
-rw-r--r--framework/source/xml/eventsdocumenthandler.cxx126
-rw-r--r--framework/source/xml/imagesconfiguration.cxx8
-rw-r--r--framework/source/xml/imagesdocumenthandler.cxx168
-rw-r--r--framework/source/xml/menuconfiguration.cxx10
-rw-r--r--framework/source/xml/menudocumenthandler.cxx84
-rw-r--r--framework/source/xml/saxnamespacefilter.cxx22
-rw-r--r--framework/source/xml/statusbarconfiguration.cxx8
-rw-r--r--framework/source/xml/statusbardocumenthandler.cxx126
-rw-r--r--framework/source/xml/toolboxconfiguration.cxx8
-rw-r--r--framework/source/xml/toolboxdocumenthandler.cxx110
-rw-r--r--framework/source/xml/xmlnamespaces.cxx12
-rw-r--r--framework/test/test.cxx1050
-rw-r--r--framework/test/threadtest.cxx480
-rw-r--r--framework/test/threadtest/threadtest.cxx460
-rw-r--r--framework/test/typecfg/cfgview.cxx788
-rw-r--r--framework/test/typecfg/typecfg.cxx126
-rw-r--r--framework/test/typecfg/xml2xcd.cxx58
-rw-r--r--framework/util/hidother.src4
-rw-r--r--framework/util/lgd.xml24
-rw-r--r--framework/util/makefile.mk2
-rw-r--r--[-rwxr-xr-x]graphite/graphite-2.3.1.patch.mingw9
-rw-r--r--hwpfilter/inc/pch/precompiled_hwpfilter.cxx2
-rw-r--r--hwpfilter/inc/pch/precompiled_hwpfilter.hxx2
-rw-r--r--hwpfilter/source/attributes.cxx2
-rw-r--r--hwpfilter/source/attributes.hxx6
-rw-r--r--hwpfilter/source/cspline.cpp2
-rw-r--r--hwpfilter/source/cspline.h2
-rw-r--r--hwpfilter/source/datecode.h2
-rw-r--r--hwpfilter/source/drawdef.h2
-rw-r--r--hwpfilter/source/drawing.h2
-rw-r--r--hwpfilter/source/fontmap.cpp2
-rw-r--r--hwpfilter/source/formula.cpp8
-rw-r--r--hwpfilter/source/formula.h2
-rw-r--r--hwpfilter/source/grammar.cpp170
-rw-r--r--hwpfilter/source/grammar.h60
-rw-r--r--hwpfilter/source/hbox.cpp2
-rw-r--r--hwpfilter/source/hbox.h4
-rw-r--r--hwpfilter/source/hcode.cpp20
-rw-r--r--hwpfilter/source/hcode.h2
-rw-r--r--hwpfilter/source/hfont.cpp2
-rw-r--r--hwpfilter/source/hfont.h2
-rw-r--r--hwpfilter/source/hgzip.cpp2
-rw-r--r--hwpfilter/source/hgzip.h2
-rw-r--r--hwpfilter/source/himgutil.cpp2
-rw-r--r--hwpfilter/source/himgutil.h2
-rw-r--r--hwpfilter/source/hinfo.cpp2
-rw-r--r--hwpfilter/source/hinfo.h6
-rw-r--r--hwpfilter/source/hiodev.cpp2
-rw-r--r--hwpfilter/source/hiodev.h2
-rw-r--r--hwpfilter/source/hpara.cpp2
-rw-r--r--hwpfilter/source/hpara.h8
-rw-r--r--hwpfilter/source/hstream.cpp2
-rw-r--r--hwpfilter/source/hstream.h2
-rw-r--r--hwpfilter/source/hstyle.cpp2
-rw-r--r--hwpfilter/source/hstyle.h2
-rw-r--r--hwpfilter/source/htags.cpp2
-rw-r--r--hwpfilter/source/htags.h2
-rw-r--r--hwpfilter/source/hutil.cpp2
-rw-r--r--hwpfilter/source/hutil.h2
-rw-r--r--hwpfilter/source/hwpeq.cpp700
-rw-r--r--hwpfilter/source/hwpeq.h6
-rw-r--r--hwpfilter/source/hwpfile.cpp12
-rw-r--r--hwpfilter/source/hwpfile.h4
-rw-r--r--hwpfilter/source/hwplib.h2
-rw-r--r--hwpfilter/source/hwpread.cpp2
-rw-r--r--hwpfilter/source/hwpreader.cxx36
-rw-r--r--hwpfilter/source/hwpreader.hxx52
-rw-r--r--hwpfilter/source/ksc5601.h224
-rw-r--r--hwpfilter/source/lexer.cpp128
-rw-r--r--hwpfilter/source/list.hxx4
-rw-r--r--hwpfilter/source/mapping.h42
-rw-r--r--hwpfilter/source/mzstring.cpp4
-rw-r--r--hwpfilter/source/mzstring.h22
-rw-r--r--hwpfilter/source/nodes.h12
-rw-r--r--hwpfilter/source/precompile.h2
-rw-r--r--hwpfilter/source/solver.cpp2
-rw-r--r--hwpfilter/source/solver.h2
-rw-r--r--i18npool/inc/breakiteratorImpl.hxx58
-rw-r--r--i18npool/inc/breakiterator_cjk.hxx14
-rw-r--r--i18npool/inc/breakiterator_ctl.hxx18
-rw-r--r--i18npool/inc/breakiterator_th.hxx10
-rw-r--r--i18npool/inc/breakiterator_unicode.hxx46
-rw-r--r--i18npool/inc/bullet.h418
-rw-r--r--i18npool/inc/calendarImpl.hxx12
-rw-r--r--i18npool/inc/calendar_gregorian.hxx32
-rw-r--r--i18npool/inc/calendar_hijri.hxx14
-rw-r--r--i18npool/inc/calendar_jewish.hxx8
-rw-r--r--i18npool/inc/cclass_cjk.hxx16
-rw-r--r--i18npool/inc/cclass_unicode.hxx90
-rw-r--r--i18npool/inc/chaptercollator.hxx4
-rw-r--r--i18npool/inc/characterclassificationImpl.hxx48
-rw-r--r--i18npool/inc/chartonum.hxx4
-rw-r--r--i18npool/inc/collatorImpl.hxx8
-rw-r--r--i18npool/inc/collator_unicode.hxx4
-rw-r--r--i18npool/inc/defaultnumberingprovider.hxx2
-rw-r--r--i18npool/inc/i18npool/i18npooldllapi.h8
-rw-r--r--i18npool/inc/i18npool/lang.h4
-rw-r--r--i18npool/inc/i18npool/mslangid.hxx2
-rw-r--r--i18npool/inc/i18npool/paper.hxx2
-rw-r--r--i18npool/inc/indexentrysupplier.hxx38
-rw-r--r--i18npool/inc/indexentrysupplier_asian.hxx24
-rw-r--r--i18npool/inc/indexentrysupplier_common.hxx36
-rw-r--r--i18npool/inc/indexentrysupplier_default.hxx18
-rw-r--r--i18npool/inc/indexentrysupplier_ja_phonetic.hxx10
-rw-r--r--i18npool/inc/inputsequencechecker.hxx12
-rw-r--r--i18npool/inc/inputsequencechecker_hi.hxx16
-rw-r--r--i18npool/inc/inputsequencechecker_th.hxx10
-rw-r--r--i18npool/inc/localedata.hxx2
-rw-r--r--i18npool/inc/nativenumbersupplier.hxx18
-rw-r--r--i18npool/inc/numberformatcode.hxx2
-rw-r--r--i18npool/inc/numtochar.hxx4
-rw-r--r--i18npool/inc/numtotext_cjk.hxx2
-rw-r--r--i18npool/inc/ordinalsuffix.hxx4
-rw-r--r--i18npool/inc/pch/precompiled_i18npool.cxx2
-rw-r--r--i18npool/inc/pch/precompiled_i18npool.hxx2
-rw-r--r--i18npool/inc/scripttypedetector.hxx8
-rw-r--r--i18npool/inc/servicename.hxx36
-rw-r--r--i18npool/inc/textToPronounce_zh.hxx12
-rw-r--r--i18npool/inc/textconversion.hxx100
-rw-r--r--i18npool/inc/textconversionImpl.hxx46
-rw-r--r--i18npool/inc/texttonum.hxx2
-rw-r--r--i18npool/inc/transliterationImpl.hxx24
-rw-r--r--i18npool/inc/transliteration_Ignore.hxx22
-rw-r--r--i18npool/inc/transliteration_Numeric.hxx10
-rw-r--r--i18npool/inc/transliteration_OneToOne.hxx18
-rw-r--r--i18npool/inc/transliteration_body.hxx4
-rw-r--r--i18npool/inc/transliteration_caseignore.hxx10
-rw-r--r--i18npool/inc/transliteration_commonclass.hxx10
-rw-r--r--i18npool/inc/warnings_guard_unicode_brkiter.h2
-rw-r--r--i18npool/inc/warnings_guard_unicode_calendar.h2
-rw-r--r--i18npool/inc/warnings_guard_unicode_tblcoll.h2
-rw-r--r--i18npool/inc/wtt.h54
-rw-r--r--i18npool/inc/xdictionary.hxx14
-rw-r--r--i18npool/source/breakiterator/breakiteratorImpl.cxx24
-rw-r--r--i18npool/source/breakiterator/breakiterator_cjk.cxx26
-rw-r--r--i18npool/source/breakiterator/breakiterator_ctl.cxx10
-rw-r--r--i18npool/source/breakiterator/breakiterator_th.cxx18
-rw-r--r--i18npool/source/breakiterator/breakiterator_unicode.cxx14
-rw-r--r--i18npool/source/breakiterator/gendict.cxx16
-rw-r--r--i18npool/source/breakiterator/xdictionary.cxx12
-rw-r--r--i18npool/source/calendar/calendarImpl.cxx6
-rw-r--r--i18npool/source/calendar/calendar_gregorian.cxx114
-rw-r--r--i18npool/source/calendar/calendar_hijri.cxx34
-rw-r--r--i18npool/source/calendar/calendar_jewish.cxx24
-rw-r--r--i18npool/source/characterclassification/cclass_unicode.cxx16
-rw-r--r--i18npool/source/characterclassification/cclass_unicode_parser.cxx518
-rw-r--r--i18npool/source/characterclassification/characterclassificationImpl.cxx20
-rw-r--r--i18npool/source/characterclassification/scripttypedetector.cxx2
-rw-r--r--i18npool/source/collator/chaptercollator.cxx2
-rw-r--r--i18npool/source/collator/collatorImpl.cxx2
-rw-r--r--i18npool/source/collator/collator_unicode.cxx12
-rw-r--r--i18npool/source/collator/gencoll_rule.cxx12
-rw-r--r--i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx40
-rw-r--r--i18npool/source/indexentry/data/indexdata_alphanumeric.h4
-rw-r--r--i18npool/source/indexentry/data/indexdata_ja_phonetic.h2
-rw-r--r--i18npool/source/indexentry/genindex_data.cxx6
-rw-r--r--i18npool/source/indexentry/indexentrysupplier.cxx6
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_asian.cxx22
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_common.cxx4
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_default.cxx12
-rw-r--r--i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx10
-rw-r--r--i18npool/source/inputchecker/inputsequencechecker.cxx10
-rw-r--r--i18npool/source/inputchecker/inputsequencechecker_hi.cxx52
-rw-r--r--i18npool/source/inputchecker/inputsequencechecker_th.cxx66
-rw-r--r--i18npool/source/isolang/insys.cxx2
-rw-r--r--i18npool/source/isolang/inunx.cxx2
-rw-r--r--i18npool/source/isolang/inwnt.cxx4
-rw-r--r--i18npool/source/isolang/isolang.cxx2
-rwxr-xr-xi18npool/source/isolang/langid.pl2
-rw-r--r--i18npool/source/isolang/mslangid.cxx6
-rw-r--r--i18npool/source/localedata/LocaleNode.cxx34
-rw-r--r--i18npool/source/localedata/LocaleNode.hxx2
-rw-r--r--i18npool/source/localedata/data/dz_BT.xml8
-rw-r--r--i18npool/source/localedata/data/fa_IR.xml2
-rw-r--r--i18npool/source/localedata/filewriter.cxx2
-rw-r--r--i18npool/source/localedata/localedata.cxx8
-rw-r--r--i18npool/source/localedata/saxparser.cxx8
-rw-r--r--i18npool/source/nativenumber/data/numberchar.h140
-rw-r--r--i18npool/source/nativenumber/nativenumbersupplier.cxx36
-rw-r--r--i18npool/source/numberformatcode/numberformatcode.cxx10
-rw-r--r--i18npool/source/ordinalsuffix/ordinalsuffix.cxx2
-rw-r--r--i18npool/source/paper/paper.cxx12
-rw-r--r--i18npool/source/registerservices/registerservices.cxx12
-rw-r--r--i18npool/source/search/levdis.cxx2
-rw-r--r--i18npool/source/search/levdis.hxx2
-rw-r--r--i18npool/source/search/textsearch.cxx10
-rw-r--r--i18npool/source/search/textsearch.hxx14
-rw-r--r--i18npool/source/textconversion/genconv_dict.cxx8
-rw-r--r--i18npool/source/textconversion/textconversion.cxx6
-rw-r--r--i18npool/source/textconversion/textconversionImpl.cxx10
-rw-r--r--i18npool/source/textconversion/textconversion_ko.cxx32
-rw-r--r--i18npool/source/textconversion/textconversion_zh.cxx40
-rw-r--r--i18npool/source/transliteration/chartonum.cxx2
-rw-r--r--i18npool/source/transliteration/data/numberchar.h80
-rw-r--r--i18npool/source/transliteration/fullwidthToHalfwidth.cxx14
-rw-r--r--i18npool/source/transliteration/halfwidthToFullwidth.cxx14
-rw-r--r--i18npool/source/transliteration/hiraganaToKatakana.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreBaFa_ja_JP.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreHyuByu_ja_JP.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreIandEfollowedByYa_ja_JP.cxx10
-rw-r--r--i18npool/source/transliteration/ignoreIterationMark_ja_JP.cxx8
-rw-r--r--i18npool/source/transliteration/ignoreKana.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreKiKuFollowedBySa_ja_JP.cxx8
-rw-r--r--i18npool/source/transliteration/ignoreMiddleDot_ja_JP.cxx4
-rw-r--r--i18npool/source/transliteration/ignoreMinusSign_ja_JP.cxx4
-rw-r--r--i18npool/source/transliteration/ignoreProlongedSoundMark_ja_JP.cxx10
-rw-r--r--i18npool/source/transliteration/ignoreSeZe_ja_JP.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreSeparator_ja_JP.cxx6
-rw-r--r--i18npool/source/transliteration/ignoreSize_ja_JP.cxx6
-rw-r--r--i18npool/source/transliteration/ignoreSpace_ja_JP.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreTiJi_ja_JP.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreTraditionalKana_ja_JP.cxx4
-rw-r--r--i18npool/source/transliteration/ignoreTraditionalKanji_ja_JP.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreWidth.cxx2
-rw-r--r--i18npool/source/transliteration/ignoreZiZu_ja_JP.cxx4
-rw-r--r--i18npool/source/transliteration/katakanaToHiragana.cxx2
-rw-r--r--i18npool/source/transliteration/largeToSmall_ja_JP.cxx6
-rw-r--r--i18npool/source/transliteration/numtochar.cxx2
-rw-r--r--i18npool/source/transliteration/numtotext_cjk.cxx2
-rw-r--r--i18npool/source/transliteration/smallToLarge_ja_JP.cxx6
-rw-r--r--i18npool/source/transliteration/textToPronounce_zh.cxx4
-rw-r--r--i18npool/source/transliteration/texttonum.cxx2
-rw-r--r--i18npool/source/transliteration/transliterationImpl.cxx19
-rw-r--r--i18npool/source/transliteration/transliteration_Ignore.cxx14
-rw-r--r--i18npool/source/transliteration/transliteration_Numeric.cxx10
-rw-r--r--i18npool/source/transliteration/transliteration_OneToOne.cxx20
-rwxr-xr-xi18npool/source/transliteration/transliteration_body.cxx297
-rw-r--r--i18npool/source/transliteration/transliteration_caseignore.cxx10
-rw-r--r--i18npool/source/transliteration/transliteration_commonclass.cxx8
-rw-r--r--i18npool/xml/ChapterCollator.xml48
-rw-r--r--i18npool/xml/Collator.xml48
-rw-r--r--i18npool/xml/IndexEntrySupplier.xml2
-rw-r--r--i18npool/xml/LocaleData.xml2
-rw-r--r--i18nutil/inc/i18nutil/casefolding.hxx2
-rw-r--r--i18nutil/inc/i18nutil/oneToOneMapping.hxx2
-rw-r--r--i18nutil/inc/i18nutil/unicode.hxx2
-rw-r--r--i18nutil/inc/i18nutil/widthfolding.hxx4
-rw-r--r--i18nutil/inc/i18nutil/x_rtl_ustring.h20
-rw-r--r--i18nutil/source/utility/casefolding.cxx6
-rw-r--r--i18nutil/source/utility/casefolding_data.h6
-rw-r--r--i18nutil/source/utility/oneToOneMapping.cxx6
-rw-r--r--i18nutil/source/utility/unicode.cxx4
-rw-r--r--i18nutil/source/utility/unicode_data.h8
-rw-r--r--i18nutil/source/utility/widthfolding.cxx8
-rw-r--r--i18nutil/source/utility/widthfolding_data.h786
-rw-r--r--icc/source/create_sRGB_profile/create_sRGB_profile.cpp52
-rw-r--r--idl/inc/attrib.hxx2
-rw-r--r--idl/inc/basobj.hxx34
-rw-r--r--idl/inc/bastype.hxx8
-rw-r--r--idl/inc/char.hxx2
-rw-r--r--idl/inc/command.hxx2
-rw-r--r--idl/inc/database.hxx44
-rw-r--r--idl/inc/globals.hxx2
-rw-r--r--idl/inc/hash.hxx2
-rw-r--r--idl/inc/lex.hxx48
-rw-r--r--idl/inc/module.hxx16
-rw-r--r--idl/inc/object.hxx62
-rw-r--r--idl/inc/pch/precompiled_idl.cxx2
-rw-r--r--idl/inc/pch/precompiled_idl.hxx2
-rw-r--r--idl/inc/slot.hxx46
-rw-r--r--idl/inc/types.hxx148
-rw-r--r--idl/source/cmptools/char.cxx2
-rw-r--r--idl/source/cmptools/hash.cxx2
-rw-r--r--idl/source/cmptools/lex.cxx18
-rw-r--r--idl/source/objects/basobj.cxx28
-rw-r--r--idl/source/objects/bastype.cxx2
-rw-r--r--idl/source/objects/module.cxx6
-rw-r--r--idl/source/objects/object.cxx32
-rw-r--r--idl/source/objects/slot.cxx140
-rw-r--r--idl/source/objects/types.cxx372
-rw-r--r--idl/source/prj/command.cxx36
-rw-r--r--idl/source/prj/database.cxx18
-rw-r--r--idl/source/prj/globals.cxx2
-rw-r--r--idl/source/prj/idldll.cxx2
-rw-r--r--idl/source/prj/svidl.cxx6
-rw-r--r--idl/util/idlpch.cxx2
-rw-r--r--idlc/inc/idlc/astarray.hxx16
-rw-r--r--idlc/inc/idlc/astattribute.hxx4
-rw-r--r--idlc/inc/idlc/astbasetype.hxx2
-rw-r--r--idlc/inc/idlc/astconstant.hxx8
-rw-r--r--idlc/inc/idlc/astconstants.hxx2
-rw-r--r--idlc/inc/idlc/astdeclaration.hxx84
-rw-r--r--idlc/inc/idlc/astenum.hxx4
-rw-r--r--idlc/inc/idlc/astexception.hxx2
-rw-r--r--idlc/inc/idlc/astexpression.hxx126
-rw-r--r--idlc/inc/idlc/astinterface.hxx10
-rw-r--r--idlc/inc/idlc/astinterfacemember.hxx10
-rw-r--r--idlc/inc/idlc/astmember.hxx2
-rw-r--r--idlc/inc/idlc/astmodule.hxx2
-rw-r--r--idlc/inc/idlc/astneeds.hxx4
-rw-r--r--idlc/inc/idlc/astobserves.hxx4
-rw-r--r--idlc/inc/idlc/astoperation.hxx12
-rw-r--r--idlc/inc/idlc/astparameter.hxx4
-rw-r--r--idlc/inc/idlc/astscope.hxx6
-rw-r--r--idlc/inc/idlc/astsequence.hxx8
-rw-r--r--idlc/inc/idlc/astservice.hxx2
-rw-r--r--idlc/inc/idlc/astservicemember.hxx8
-rw-r--r--idlc/inc/idlc/aststack.hxx8
-rw-r--r--idlc/inc/idlc/aststruct.hxx6
-rw-r--r--idlc/inc/idlc/aststructinstance.hxx2
-rw-r--r--idlc/inc/idlc/asttype.hxx2
-rw-r--r--idlc/inc/idlc/asttypedef.hxx2
-rw-r--r--idlc/inc/idlc/astunion.hxx6
-rw-r--r--idlc/inc/idlc/astunionbranch.hxx4
-rw-r--r--idlc/inc/idlc/astunionlabel.hxx12
-rw-r--r--idlc/inc/idlc/errorhandler.hxx100
-rw-r--r--idlc/inc/idlc/fehelper.hxx18
-rw-r--r--idlc/inc/idlc/idlc.hxx48
-rw-r--r--idlc/inc/idlc/idlctypes.hxx340
-rw-r--r--idlc/inc/idlc/inheritedinterface.hxx2
-rw-r--r--idlc/inc/idlc/options.hxx22
-rw-r--r--idlc/inc/pch/precompiled_idlc.cxx2
-rw-r--r--idlc/inc/pch/precompiled_idlc.hxx2
-rw-r--r--idlc/source/astarray.cxx4
-rw-r--r--idlc/source/astconstant.cxx52
-rw-r--r--idlc/source/astdeclaration.cxx70
-rw-r--r--idlc/source/astdump.cxx38
-rw-r--r--idlc/source/astenum.cxx32
-rw-r--r--idlc/source/astexpression.cxx146
-rw-r--r--idlc/source/astinterface.cxx10
-rw-r--r--idlc/source/astoperation.cxx28
-rw-r--r--idlc/source/astscope.cxx84
-rw-r--r--idlc/source/astservice.cxx2
-rw-r--r--idlc/source/aststack.cxx52
-rw-r--r--idlc/source/aststruct.cxx24
-rw-r--r--idlc/source/aststructinstance.cxx2
-rw-r--r--idlc/source/astunion.cxx120
-rw-r--r--idlc/source/attributeexceptions.hxx2
-rw-r--r--idlc/source/errorhandler.cxx141
-rw-r--r--idlc/source/fehelper.cxx22
-rw-r--r--idlc/source/idlc.cxx64
-rw-r--r--idlc/source/idlccompile.cxx14
-rw-r--r--idlc/source/idlcmain.cxx16
-rw-r--r--idlc/source/idlcproduce.cxx44
-rw-r--r--idlc/source/options.cxx80
-rw-r--r--idlc/source/parser.y7
-rw-r--r--idlc/source/preproc/cpp.c22
-rw-r--r--idlc/source/preproc/cpp.h50
-rw-r--r--idlc/source/preproc/eval.c24
-rw-r--r--idlc/source/preproc/include.c10
-rw-r--r--idlc/source/preproc/lex.c26
-rw-r--r--idlc/source/preproc/macro.c12
-rw-r--r--idlc/source/preproc/nlist.c6
-rw-r--r--idlc/source/preproc/tokens.c2
-rw-r--r--idlc/source/preproc/unix.c4
-rw-r--r--idlc/source/scanner.ll35
-rw-r--r--idlc/source/wrap_parser.cxx2
-rw-r--r--idlc/source/wrap_scanner.cxx2
-rw-r--r--idlc/test/const.idl6
-rw-r--r--idlc/test/enum.idl2
-rw-r--r--idlc/test/exception.idl6
-rw-r--r--idlc/test/interface.idl30
-rw-r--r--idlc/test/service.idl6
-rw-r--r--idlc/test/singleton.idl4
-rw-r--r--idlc/test/struct.idl42
-rw-r--r--idlc/test/typelookup.idl32
-rw-r--r--io/inc/pch/precompiled_io.cxx2
-rw-r--r--io/inc/pch/precompiled_io.hxx2
-rw-r--r--io/source/TextInputStream/TextInputStream.cxx80
-rw-r--r--io/source/TextOutputStream/TextOutputStream.cxx48
-rw-r--r--io/source/acceptor/acc_pipe.cxx16
-rw-r--r--io/source/acceptor/acc_socket.cxx48
-rw-r--r--io/source/acceptor/acceptor.cxx2
-rw-r--r--io/source/acceptor/acceptor.hxx14
-rw-r--r--io/source/acceptor/acceptor.xml62
-rw-r--r--io/source/connector/connector.cxx2
-rw-r--r--io/source/connector/connector.hxx24
-rw-r--r--io/source/connector/connectr.xml62
-rw-r--r--io/source/connector/ctr_pipe.cxx4
-rw-r--r--io/source/connector/ctr_socket.cxx28
-rw-r--r--io/source/stm/factreg.cxx14
-rw-r--r--io/source/stm/factreg.hxx14
-rw-r--r--io/source/stm/odata.cxx130
-rw-r--r--io/source/stm/omark.cxx136
-rw-r--r--io/source/stm/opipe.cxx20
-rw-r--r--io/source/stm/opump.cxx36
-rw-r--r--io/source/stm/stm.xml390
-rw-r--r--io/source/stm/streamhelper.cxx10
-rw-r--r--io/source/stm/streamhelper.hxx56
-rw-r--r--io/test/stm/datatest.cxx254
-rw-r--r--io/test/stm/marktest.cxx58
-rw-r--r--io/test/stm/pipetest.cxx42
-rw-r--r--io/test/stm/pumptest.cxx86
-rw-r--r--io/test/stm/testfactreg.cxx44
-rw-r--r--io/test/stm/testfactreg.hxx22
-rw-r--r--io/test/testcomponent.cxx2
-rw-r--r--io/test/testconnection.cxx22
-rwxr-xr-xjavainstaller2/build.xml20
-rwxr-xr-xjavainstaller2/src/Helpfiles/create_helpfiles.pl52
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/AcceptLicenseCtrl.java16
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseComponentsCtrl.java50
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseDirectoryCtrl.java42
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseInstallationTypeCtrl.java52
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationComponentsCtrl.java22
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationTypeCtrl.java42
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java20
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationImminentCtrl.java28
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationOngoingCtrl.java28
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/PrologueCtrl.java36
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationCompletedCtrl.java24
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationImminentCtrl.java22
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationOngoingCtrl.java32
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationPrologueCtrl.java38
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/DeckOfPanels.java10
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java8
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java34
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java34
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java90
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Installer/Installer.java6
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Installer/InstallerFactory.java6
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Installer/LinuxInstaller.java344
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Installer/SolarisInstaller.java92
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/LinuxHelper.java131
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java96
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Main.java10
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/AcceptLicense.java18
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseComponents.java42
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseDirectory.java62
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseInstallationType.java44
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationComponents.java42
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationType.java42
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationImminent.java30
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationOngoing.java16
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/Prologue.java20
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationCompleted.java16
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationImminent.java28
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationOngoing.java8
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationPrologue.java16
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Panel/installationCompleted.java18
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/PanelController.java30
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelLabel.java18
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelTitle.java24
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/TreeNodeRenderer.java12
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/ResourceManager.java42
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupActionListener.java18
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/DisplayPackageDescription.java52
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/PackageDescription.java120
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java54
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/SetupDataProvider.java4
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/XMLPackageDescription.java74
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupFrame.java82
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/AbortInstaller.java6
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Calculator.java12
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Controller.java58
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Converter.java18
-rw-r--r--javainstaller2/src/JavaSetup/org/openoffice/setup/Util/DialogFocusTraversalPolicy.java48
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Dumper.java60
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/ExecuteProcess.java20
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/FileExtensionFilter.java6
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java18
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoDir.java58
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Informer.java4
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/InstallChangeCtrl.java18
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/LogManager.java20
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java202
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/PackageCollector.java42
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/Parser.java6
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Util/SystemManager.java94
-rwxr-xr-xjavainstaller2/src/Properties/create_property.pl52
-rw-r--r--javaunohelper/com/sun/star/comp/JavaUNOHelperServices.java12
-rw-r--r--javaunohelper/com/sun/star/comp/helper/Bootstrap.java82
-rw-r--r--javaunohelper/com/sun/star/comp/helper/BootstrapException.java18
-rw-r--r--javaunohelper/com/sun/star/comp/helper/ComponentContext.java42
-rw-r--r--javaunohelper/com/sun/star/comp/helper/ComponentContextEntry.java8
-rw-r--r--javaunohelper/com/sun/star/comp/helper/RegistryServiceFactory.java72
-rw-r--r--javaunohelper/com/sun/star/comp/helper/SharedLibraryLoader.java94
-rw-r--r--javaunohelper/com/sun/star/comp/helper/UnoInfo.java8
-rw-r--r--javaunohelper/com/sun/star/comp/juhtest/SmoketestCommandEnvironment.java18
-rwxr-xr-xjavaunohelper/com/sun/star/lib/uno/adapter/ByteArrayToXInputStreamAdapter.java62
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/InputStreamToXInputStreamAdapter.java54
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/OutputStreamToXOutputStreamAdapter.java22
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/XInputStreamToInputStreamAdapter.java28
-rwxr-xr-xjavaunohelper/com/sun/star/lib/uno/adapter/XOutputStreamToByteArrayAdapter.java52
-rw-r--r--javaunohelper/com/sun/star/lib/uno/adapter/XOutputStreamToOutputStreamAdapter.java12
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/ComponentBase.java24
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/Factory.java24
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java130
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java30
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java346
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/PropertySetMixin.java2
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java36
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java26
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/WeakBase.java18
-rw-r--r--javaunohelper/inc/pch/precompiled_javaunohelper.cxx2
-rw-r--r--javaunohelper/inc/pch/precompiled_javaunohelper.hxx2
-rw-r--r--javaunohelper/source/bootstrap.cxx18
-rw-r--r--javaunohelper/source/javaunohelper.cxx66
-rw-r--r--javaunohelper/source/preload.cxx2
-rw-r--r--javaunohelper/source/vm.cxx8
-rw-r--r--javaunohelper/source/vm.hxx2
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java22
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/ComponentContext_Test.java10
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/RegistryServiceFactory_Test.java14
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java84
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/AWeakBase.java8
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/ComponentBase_Test.java20
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/Factory_Test.java16
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/InterfaceContainer_Test.java148
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer_Test.java40
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java198
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java24
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/UnoUrlTest.java22
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/WeakBase_Test.java46
-rw-r--r--jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java28
-rw-r--r--jurt/com/sun/star/comp/connections/Acceptor.java2
-rw-r--r--jurt/com/sun/star/comp/connections/Connector.java2
-rw-r--r--jurt/com/sun/star/comp/connections/ConstantInstanceProvider.java18
-rw-r--r--jurt/com/sun/star/comp/connections/Implementation.java2
-rw-r--r--jurt/com/sun/star/comp/connections/PipedConnection.java32
-rw-r--r--jurt/com/sun/star/comp/loader/FactoryHelper.java96
-rw-r--r--jurt/com/sun/star/comp/loader/JavaLoader.java222
-rw-r--r--jurt/com/sun/star/comp/loader/JavaLoaderFactory.java42
-rw-r--r--jurt/com/sun/star/comp/loader/RegistrationClassFinder.java2
-rw-r--r--jurt/com/sun/star/comp/servicemanager/ServiceManager.java500
-rw-r--r--jurt/com/sun/star/comp/urlresolver/UrlResolver.java32
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/PipeConnection.java52
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java2
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/pipeConnector.java10
-rw-r--r--jurt/com/sun/star/lib/connections/socket/ConnectionDescriptor.java2
-rw-r--r--jurt/com/sun/star/lib/connections/socket/SocketConnection.java8
-rw-r--r--jurt/com/sun/star/lib/connections/socket/socketAcceptor.java2
-rw-r--r--jurt/com/sun/star/lib/connections/socket/socketConnector.java2
-rw-r--r--jurt/com/sun/star/lib/uno/Proxy.java2
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/BridgedObject.java2
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory.java2
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/RequestHandler.java2
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionInputStream_Adapter.java6
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionOutputStream_Adapter.java2
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java10
-rw-r--r--jurt/com/sun/star/lib/uno/environments/java/java_environment.java2
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/IProtocol.java2
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java2
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/IThreadPool.java10
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java14
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java2
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/Job.java24
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java60
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/Message.java2
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java2
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/ThreadId.java2
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/ThreadPoolManager.java2
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/remote_environment.java2
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Cache.java2
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java2
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java2
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java2
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/UrpMessage.java2
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/urp.java2
-rw-r--r--jurt/com/sun/star/lib/util/AsynchronousFinalizer.java2
-rw-r--r--jurt/com/sun/star/lib/util/NativeLibraryLoader.java2
-rw-r--r--jurt/com/sun/star/lib/util/StringHelper.java2
-rw-r--r--jurt/com/sun/star/lib/util/UrlToFileMapper.java6
-rw-r--r--jurt/com/sun/star/uno/AnyConverter.java62
-rw-r--r--jurt/com/sun/star/uno/Ascii.java12
-rw-r--r--jurt/com/sun/star/uno/AsciiString.java14
-rw-r--r--jurt/com/sun/star/uno/MappingException.java4
-rw-r--r--jurt/com/sun/star/uno/WeakReference.java18
-rw-r--r--jurt/demo/com/sun/star/demo/DemoServer.java6
-rw-r--r--jurt/demo/com/sun/star/demo/TestOffice.java20
-rw-r--r--jurt/source/pipe/com_sun_star_lib_connections_pipe_PipeConnection.c90
-rw-r--r--jurt/test/com/sun/star/comp/bridgefactory/BridgeFactory_Test.java2
-rw-r--r--jurt/test/com/sun/star/comp/connections/PipedConnection_Test.java16
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/BridgedObject_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/java/java_environment_Test.java4
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestIWorkAt.java8
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestMessage.java22
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestReceiver.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java36
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/ThreadId_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/Cache_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/Marshaling_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/Protocol_Test.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/TestBridge.java20
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/TestObject.java2
-rw-r--r--jurt/test/com/sun/star/lib/uno/protocols/urp/interfaces.idl4
-rw-r--r--jurt/test/com/sun/star/lib/util/NativeLibraryLoader_Test.java2
-rw-r--r--jurt/test/com/sun/star/uno/AnyConverter_Test.java2
-rw-r--r--jurt/test/com/sun/star/uno/UnoRuntime_EnvironmentTest.java2
-rw-r--r--jurt/test/com/sun/star/uno/WeakReference_Test.java2
-rw-r--r--jurt/workbench/com/sun/star/comp/urlresolver/UrlResolver_Test.java2
-rw-r--r--jvmaccess/inc/jvmaccess/classpath.hxx2
-rw-r--r--jvmaccess/inc/jvmaccess/unovirtualmachine.hxx2
-rw-r--r--jvmaccess/inc/jvmaccess/virtualmachine.hxx2
-rw-r--r--jvmaccess/source/classpath.cxx2
-rw-r--r--jvmaccess/source/unovirtualmachine.cxx2
-rw-r--r--jvmaccess/source/virtualmachine.cxx2
-rw-r--r--jvmaccess/util/cc5_solaris_sparc.map2
-rw-r--r--jvmaccess/util/gcc3.map2
-rw-r--r--jvmaccess/util/mingw.map2
-rw-r--r--jvmaccess/workbench/exceptiontest1.cxx2
-rw-r--r--jvmaccess/workbench/exceptiontest2.cxx2
-rw-r--r--jvmaccess/workbench/java/TestComponent.java2
-rw-r--r--jvmaccess/workbench/javainfo/javainfotest.cxx4
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_freebsd.xml6
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml6
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_os2.xml6
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_template.xml8
-rwxr-xr-xjvmfwk/distributions/OpenOfficeorg/javavendors_unx.xml6
-rw-r--r--jvmfwk/distributions/OpenOfficeorg/javavendors_wnt.xml6
-rw-r--r--jvmfwk/inc/jvmfwk/framework.h60
-rw-r--r--jvmfwk/inc/jvmfwk/vendorplugin.h14
-rw-r--r--jvmfwk/inc/pch/precompiled_jvmfwk.cxx2
-rw-r--r--jvmfwk/inc/pch/precompiled_jvmfwk.hxx2
-rwxr-xr-xjvmfwk/plugins/sunmajor/javaenvsetup/javaldx.cxx12
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/JREProperties.java8
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/diagnostics.h2
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx10
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/gnujre.hxx2
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx6
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/otherjre.hxx2
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx58
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx8
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunjre.hxx2
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunversion.cxx54
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx12
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/util.cxx96
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/util.hxx4
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx16
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx14
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx8
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorlist.hxx4
-rw-r--r--jvmfwk/source/elements.cxx94
-rw-r--r--jvmfwk/source/elements.hxx20
-rw-r--r--jvmfwk/source/framework.cxx80
-rw-r--r--jvmfwk/source/framework.hxx12
-rw-r--r--jvmfwk/source/framework.map4
-rw-r--r--jvmfwk/source/fwkbase.cxx34
-rw-r--r--jvmfwk/source/fwkbase.hxx8
-rw-r--r--jvmfwk/source/fwkutil.cxx22
-rw-r--r--jvmfwk/source/fwkutil.hxx10
-rw-r--r--jvmfwk/source/javasettings_template.xml4
-rw-r--r--jvmfwk/source/libxmlutil.cxx4
-rw-r--r--jvmfwk/source/libxmlutil.hxx10
-rw-r--r--l10ntools/inc/cfgmerge.hxx30
-rw-r--r--l10ntools/inc/export.hxx152
-rw-r--r--l10ntools/inc/gsicheck.hxx4
-rw-r--r--l10ntools/inc/helpmerge.hxx16
-rw-r--r--l10ntools/inc/inireader.hxx12
-rw-r--r--l10ntools/inc/l10ntools/directory.hxx2
-rw-r--r--l10ntools/inc/lngmerge.hxx20
-rw-r--r--l10ntools/inc/pch/precompiled_l10ntools.cxx2
-rw-r--r--l10ntools/inc/pch/precompiled_l10ntools.hxx2
-rw-r--r--l10ntools/inc/srciter.hxx8
-rw-r--r--l10ntools/inc/tagtest.hxx186
-rw-r--r--l10ntools/inc/tokens.h126
-rw-r--r--l10ntools/inc/treeconfig.hxx4
-rw-r--r--l10ntools/inc/utf8conv.hxx2
-rw-r--r--l10ntools/inc/wtranode.hxx46
-rw-r--r--l10ntools/inc/wtratree.hxx84
-rw-r--r--l10ntools/inc/xmlparse.hxx250
-rw-r--r--l10ntools/inc/xmlutil.hxx14
-rw-r--r--l10ntools/inc/xrmmerge.hxx6
-rwxr-xr-xl10ntools/java/jpropex/build.xml12
-rw-r--r--l10ntools/java/jpropex/java/JPropEx.java81
-rw-r--r--l10ntools/java/jpropex/java/Main.java6
-rw-r--r--l10ntools/java/jpropex/java/NoLocalizeFilter.java6
-rw-r--r--l10ntools/java/jpropex/java/OrderedHashMap.java6
-rw-r--r--l10ntools/java/jpropex/java/SdfData.java8
-rw-r--r--l10ntools/java/jpropex/java/SdfEntity.java106
-rwxr-xr-xl10ntools/java/l10nconv/build.xml12
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/DirtyTagWrapCheck.java14
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/DirtyTagWrapper.java62
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/Tag.java46
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/TagPair.java76
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/Convert.java128
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/Converter.java80
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/ConverterException.java8
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/DataHandler.java34
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/DataReader.java20
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/DataWriter.java14
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/ExtMap.java8
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/FileMaker.java14
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/GSIReader.java20
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/GSIWriter.java54
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/GSIandSDFMerger.java50
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/LineErrorException.java18
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/OutputHandler.java36
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/ResTypeResolver.java14
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/Resolver.java8
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFReader.java108
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java46
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/XLIFFReader.java74
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/converter/XLIFFWriter.java108
-rwxr-xr-xl10ntools/java/l10nconv/java/com/sun/star/tooling/languageResolver/LanguageResolver.java54
-rwxr-xr-xl10ntools/java/receditor/build.xml12
-rw-r--r--l10ntools/java/receditor/java/transex3/controller/EditorController.java82
-rw-r--r--l10ntools/java/receditor/java/transex3/controller/Main.java2
-rw-r--r--l10ntools/java/receditor/java/transex3/model/ResourceFile.java34
-rw-r--r--l10ntools/java/receditor/java/transex3/model/SdfEntity.java106
-rw-r--r--l10ntools/java/receditor/java/transex3/model/SdfString.java52
-rw-r--r--l10ntools/java/receditor/java/transex3/view/Editor.java52
-rw-r--r--l10ntools/java/receditor/java/transex3/view/SdfTable.java6
-rw-r--r--l10ntools/layout/layoutparse.cxx10
-rw-r--r--l10ntools/layout/layoutparse.hxx2
-rw-r--r--l10ntools/layout/tralay.cxx8
-rw-r--r--l10ntools/prj/d.lst8
-rw-r--r--l10ntools/scripts/fast_merge.pl14
-rw-r--r--l10ntools/scripts/keyidGen.pl8
-rw-r--r--l10ntools/scripts/localize.pl320
-rwxr-xr-xl10ntools/scripts/localize_old.pl318
-rw-r--r--[-rwxr-xr-x]l10ntools/scripts/tool/const.py (renamed from transex3/java/jpropex/makefile.mk)15
-rw-r--r--l10ntools/scripts/tool/l10ntool.py211
-rw-r--r--l10ntools/scripts/tool/pseudo.py184
-rw-r--r--l10ntools/scripts/tool/sdf.py170
-rw-r--r--l10ntools/scripts/tool/xhtex.py135
-rw-r--r--l10ntools/scripts/tool/xtxex.py94
-rwxr-xr-xl10ntools/scripts/xhtex46
-rwxr-xr-xl10ntools/scripts/xtxex47
-rw-r--r--l10ntools/source/cfglex.l17
-rw-r--r--l10ntools/source/cfgmerge.cxx87
-rw-r--r--l10ntools/source/directory.cxx68
-rw-r--r--l10ntools/source/export.cxx300
-rw-r--r--l10ntools/source/export2.cxx86
-rw-r--r--l10ntools/source/file.cxx10
-rw-r--r--l10ntools/source/filter/merge/FCFGMerge.java2
-rw-r--r--l10ntools/source/filter/merge/Merger.java16
-rw-r--r--l10ntools/source/filter/utils/AnalyzeStartupLog.java2
-rw-r--r--l10ntools/source/filter/utils/Cache.java18
-rw-r--r--l10ntools/source/filter/utils/ConfigHelper.java4
-rw-r--r--l10ntools/source/filter/utils/FileHelper.java40
-rw-r--r--l10ntools/source/filter/utils/Logger.java2
-rw-r--r--l10ntools/source/filter/utils/MalformedCommandLineException.java2
-rw-r--r--l10ntools/source/filter/utils/XMLHelper.java6
-rw-r--r--l10ntools/source/gsicheck.cxx14
-rw-r--r--l10ntools/source/gsiconv.cxx36
-rw-r--r--l10ntools/source/help/HelpCompiler.cxx34
-rw-r--r--l10ntools/source/help/HelpCompiler.hxx30
-rw-r--r--l10ntools/source/help/HelpFileDocument.java10
-rw-r--r--l10ntools/source/help/HelpIndexerTool.java6
-rw-r--r--l10ntools/source/help/HelpLinker.cxx100
-rw-r--r--l10ntools/source/help/compilehelp.hxx16
-rw-r--r--l10ntools/source/helpex.cxx76
-rw-r--r--l10ntools/source/helpmerge.cxx133
-rw-r--r--l10ntools/source/inireader.cxx24
-rw-r--r--l10ntools/source/lngex.cxx58
-rw-r--r--l10ntools/source/lngmerge.cxx43
-rw-r--r--l10ntools/source/localize.cxx214
-rw-r--r--l10ntools/source/merge.cxx72
-rw-r--r--l10ntools/source/srciter.cxx22
-rw-r--r--l10ntools/source/srclex.l6
-rw-r--r--l10ntools/source/tagtest.cxx62
-rw-r--r--l10ntools/source/treeconfig.cxx10
-rw-r--r--l10ntools/source/utf8conv.cxx8
-rw-r--r--l10ntools/source/wtranode.cxx12
-rw-r--r--l10ntools/source/wtratree.cxx94
-rw-r--r--l10ntools/source/xgfconv.cxx4
-rw-r--r--l10ntools/source/xmlparse.cxx302
-rw-r--r--l10ntools/source/xrmlex.l5
-rw-r--r--l10ntools/source/xrmmerge.cxx71
-rw-r--r--languagetool/languagetool/JLanguageTool-1.0.0.patch137
-rw-r--r--languagetool/languagetool/makefile.mk67
-rw-r--r--languagetool/languagetool/prj/build.lst3
-rw-r--r--languagetool/languagetool/prj/d.lst1
-rw-r--r--libegg/source/eggtrayicon-impl.h18
-rw-r--r--libegg/source/eggtrayicon.c44
-rw-r--r--libwpd/makefile.mk7
-rw-r--r--libwpg/makefile.mk60
-rw-r--r--libwpg/prj/build.lst3
-rw-r--r--libwpg/prj/d.lst16
-rw-r--r--libwps/libwps-0.1.1.diff93
-rw-r--r--libwps/makefile.mk60
-rw-r--r--libwps/prj/build.lst3
-rw-r--r--libwps/prj/d.lst6
-rw-r--r--lingucomponent/inc/pch/precompiled_lingucomponent.cxx2
-rw-r--r--lingucomponent/inc/pch/precompiled_lingucomponent.hxx2
-rw-r--r--lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hreg.cxx4
-rwxr-xr-xlingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx48
-rw-r--r--lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx84
-rw-r--r--lingucomponent/source/languageguessing/altstrfunc.cxx2
-rw-r--r--lingucomponent/source/languageguessing/altstrfunc.hxx2
-rw-r--r--lingucomponent/source/languageguessing/guess.cxx2
-rw-r--r--lingucomponent/source/languageguessing/guess.hxx10
-rw-r--r--lingucomponent/source/languageguessing/guesslang.cxx4
-rw-r--r--lingucomponent/source/languageguessing/simpleguesser.cxx2
-rw-r--r--lingucomponent/source/languageguessing/simpleguesser.hxx26
-rw-r--r--lingucomponent/source/lingutil/lingutil.cxx30
-rw-r--r--lingucomponent/source/lingutil/lingutil.hxx4
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/macreg.cxx4
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx56
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx94
-rw-r--r--lingucomponent/source/spellcheck/spell/sreg.cxx4
-rw-r--r--lingucomponent/source/spellcheck/spell/sspellimp.cxx48
-rw-r--r--lingucomponent/source/spellcheck/spell/sspellimp.hxx90
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesdta.cxx14
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesdta.hxx18
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesimp.cxx40
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesimp.hxx64
-rw-r--r--lingucomponent/source/thesaurus/libnth/ntreg.cxx4
-rw-r--r--linguistic/inc/hyphdta.hxx26
-rw-r--r--linguistic/inc/iprcache.hxx28
-rw-r--r--linguistic/inc/lngprophelp.hxx118
-rw-r--r--linguistic/inc/lngprops.hxx36
-rw-r--r--linguistic/inc/misc.hxx44
-rw-r--r--linguistic/inc/pch/precompiled_linguistic.cxx2
-rw-r--r--linguistic/inc/pch/precompiled_linguistic.hxx2
-rw-r--r--linguistic/inc/spelldta.hxx44
-rw-r--r--linguistic/inc/thesdta.hxx10
-rw-r--r--linguistic/qa/complex/linguistic/HangulHanjaConversion.java26
-rw-r--r--linguistic/source/convdic.cxx136
-rw-r--r--linguistic/source/convdic.hxx2
-rw-r--r--linguistic/source/convdiclist.cxx6
-rw-r--r--linguistic/source/convdiclist.hxx10
-rw-r--r--linguistic/source/convdicxml.cxx18
-rw-r--r--linguistic/source/convdicxml.hxx14
-rw-r--r--linguistic/source/defs.hxx24
-rwxr-xr-xlinguistic/source/dicimp.cxx134
-rw-r--r--linguistic/source/dicimp.hxx182
-rw-r--r--linguistic/source/dlistimp.cxx64
-rw-r--r--linguistic/source/dlistimp.hxx26
-rw-r--r--linguistic/source/gciterator.cxx172
-rw-r--r--linguistic/source/gciterator.hxx22
-rw-r--r--linguistic/source/grammarchecker.cxx52
-rw-r--r--linguistic/source/grammarchecker.hxx10
-rw-r--r--linguistic/source/hhconvdic.cxx20
-rw-r--r--linguistic/source/hhconvdic.hxx2
-rw-r--r--linguistic/source/hyphdsp.cxx44
-rw-r--r--linguistic/source/hyphdsp.hxx20
-rw-r--r--linguistic/source/hyphdta.cxx34
-rw-r--r--linguistic/source/iprcache.cxx82
-rw-r--r--linguistic/source/lngopt.cxx140
-rw-r--r--linguistic/source/lngopt.hxx26
-rw-r--r--linguistic/source/lngprophelp.cxx136
-rw-r--r--linguistic/source/lngreg.cxx12
-rw-r--r--linguistic/source/lngsvcmgr.cxx106
-rw-r--r--linguistic/source/lngsvcmgr.hxx76
-rw-r--r--linguistic/source/misc.cxx44
-rw-r--r--linguistic/source/misc2.cxx2
-rw-r--r--linguistic/source/spelldsp.cxx184
-rw-r--r--linguistic/source/spelldsp.hxx18
-rw-r--r--linguistic/source/spelldta.cxx54
-rw-r--r--linguistic/source/thesdsp.cxx28
-rw-r--r--linguistic/source/thesdsp.hxx14
-rw-r--r--linguistic/source/thesdta.cxx10
-rw-r--r--linguistic/workben/sprophelp.cxx160
-rw-r--r--linguistic/workben/sprophelp.hxx110
-rw-r--r--linguistic/workben/sreg.cxx4
-rw-r--r--linguistic/workben/sspellimp.cxx136
-rw-r--r--linguistic/workben/sspellimp.hxx100
-rw-r--r--migrationanalysis/src/driver_docs/ulf2dat.pl14
-rw-r--r--migrationanalysis/src/msokill/StdAfx.cpp6
-rw-r--r--migrationanalysis/src/msokill/StdAfx.h4
-rw-r--r--migrationanalysis/src/msokill/msokill.cpp34
-rw-r--r--migrationanalysis/src/wizard/res_defines.h158
-rwxr-xr-xmysqlc/source/description.xml6
-rw-r--r--mysqlc/source/mysqlc.xml130
-rw-r--r--mysqlc/source/mysqlc_connection.cxx62
-rw-r--r--mysqlc/source/mysqlc_connection.hxx40
-rw-r--r--mysqlc/source/mysqlc_databasemetadata.cxx46
-rw-r--r--mysqlc/source/mysqlc_databasemetadata.hxx240
-rw-r--r--mysqlc/source/mysqlc_driver.cxx10
-rw-r--r--mysqlc/source/mysqlc_driver.hxx22
-rw-r--r--mysqlc/source/mysqlc_general.cxx10
-rw-r--r--mysqlc/source/mysqlc_general.hxx2
-rw-r--r--mysqlc/source/mysqlc_preparedstatement.cxx38
-rw-r--r--mysqlc/source/mysqlc_preparedstatement.hxx38
-rw-r--r--mysqlc/source/mysqlc_propertyids.cxx112
-rw-r--r--mysqlc/source/mysqlc_propertyids.hxx10
-rw-r--r--mysqlc/source/mysqlc_resultset.cxx18
-rw-r--r--mysqlc/source/mysqlc_resultset.hxx116
-rw-r--r--mysqlc/source/mysqlc_resultsetmetadata.cxx4
-rw-r--r--mysqlc/source/mysqlc_resultsetmetadata.hxx40
-rw-r--r--mysqlc/source/mysqlc_services.cxx18
-rw-r--r--mysqlc/source/mysqlc_statement.cxx18
-rw-r--r--mysqlc/source/mysqlc_statement.hxx30
-rw-r--r--mysqlc/source/mysqlc_subcomponent.hxx82
-rw-r--r--mysqlc/source/mysqlc_types.cxx2
-rw-r--r--mysqlc/source/mysqlc_types.hxx6
-rw-r--r--mysqlc/source/registry/data/org/openoffice/Office/DataAccess/Drivers.xcu2
-rw-r--r--np_sdk/mozsrc/jri.h532
-rw-r--r--np_sdk/mozsrc/jri_md.h328
-rw-r--r--np_sdk/mozsrc/jritypes.h142
-rw-r--r--np_sdk/mozsrc/npapi.h80
-rw-r--r--np_sdk/mozsrc/npunix.c20
-rw-r--r--np_sdk/mozsrc/npupp.h368
-rw-r--r--np_sdk/mozsrc/npwin.cpp48
-rw-r--r--o3tl/inc/o3tl/cow_wrapper.hxx34
-rw-r--r--o3tl/inc/o3tl/heap_ptr.hxx20
-rw-r--r--o3tl/inc/o3tl/lazy_update.hxx68
-rw-r--r--o3tl/inc/o3tl/range.hxx2
-rw-r--r--o3tl/inc/o3tl/vector_pool.hxx12
-rw-r--r--o3tl/qa/cow_wrapper_clients.cxx82
-rw-r--r--o3tl/qa/cow_wrapper_clients.hxx4
-rw-r--r--o3tl/qa/export.map2
-rw-r--r--o3tl/qa/test-heap_ptr.cxx2
-rw-r--r--o3tl/qa/test-range.cxx2
-rw-r--r--o3tl/qa/test-vector_pool.cxx4
-rw-r--r--offapi/com/sun/star/accessibility/AccessBridge.idl12
-rw-r--r--offapi/com/sun/star/accessibility/Accessible.idl10
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleContext.idl10
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleEventId.idl2
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleEventObject.idl2
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleRelation.idl20
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleRelationType.idl24
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleStateType.idl4
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleTableModelChange.idl8
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleTableModelChangeType.idl18
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleTextType.idl26
-rw-r--r--offapi/com/sun/star/accessibility/IllegalAccessibleComponentStateException.idl32
-rw-r--r--offapi/com/sun/star/accessibility/TextSegment.idl4
-rw-r--r--offapi/com/sun/star/accessibility/XAccessible.idl22
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleAction.idl38
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleComponent.idl48
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleContext.idl64
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleEditableText.idl72
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleEventBroadcaster.idl32
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleEventListener.idl24
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleExtendedComponent.idl24
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleHyperlink.idl44
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleHypertext.idl32
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleImage.idl24
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleKeyBinding.idl4
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleMultiLineText.idl54
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleRelationSet.idl30
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleSelection.idl38
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleStateSet.idl22
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleTable.idl110
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleText.idl152
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleTextAttributes.idl2
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleTextMarkup.idl2
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleValue.idl24
-rw-r--r--offapi/com/sun/star/animations/AnimationAdditiveMode.idl34
-rw-r--r--offapi/com/sun/star/animations/AnimationCalcMode.idl36
-rw-r--r--offapi/com/sun/star/animations/AnimationColorSpace.idl26
-rw-r--r--offapi/com/sun/star/animations/AnimationEndSync.idl22
-rw-r--r--offapi/com/sun/star/animations/AnimationFill.idl24
-rw-r--r--offapi/com/sun/star/animations/AnimationNodeType.idl24
-rw-r--r--offapi/com/sun/star/animations/AnimationRestart.idl26
-rw-r--r--offapi/com/sun/star/animations/AnimationTransformType.idl26
-rw-r--r--offapi/com/sun/star/animations/AnimationValueType.idl22
-rw-r--r--offapi/com/sun/star/animations/Event.idl22
-rw-r--r--offapi/com/sun/star/animations/EventTrigger.idl24
-rw-r--r--offapi/com/sun/star/animations/TargetProperties.idl24
-rw-r--r--offapi/com/sun/star/animations/TimeFilterPair.idl24
-rw-r--r--offapi/com/sun/star/animations/Timing.idl22
-rw-r--r--offapi/com/sun/star/animations/TransitionSubType.idl24
-rw-r--r--offapi/com/sun/star/animations/TransitionType.idl24
-rw-r--r--offapi/com/sun/star/animations/ValuePair.idl24
-rw-r--r--offapi/com/sun/star/animations/XAnimate.idl4
-rw-r--r--offapi/com/sun/star/animations/XAnimateColor.idl22
-rw-r--r--offapi/com/sun/star/animations/XAnimateMotion.idl22
-rw-r--r--offapi/com/sun/star/animations/XAnimateSet.idl22
-rw-r--r--offapi/com/sun/star/animations/XAnimateTransform.idl22
-rw-r--r--offapi/com/sun/star/animations/XAnimationListener.idl26
-rw-r--r--offapi/com/sun/star/animations/XAnimationNode.idl38
-rw-r--r--offapi/com/sun/star/animations/XAnimationNodeSupplier.idl22
-rw-r--r--offapi/com/sun/star/animations/XAudio.idl22
-rw-r--r--offapi/com/sun/star/animations/XCommand.idl22
-rw-r--r--offapi/com/sun/star/animations/XIterateContainer.idl26
-rw-r--r--offapi/com/sun/star/animations/XTargetPropertiesCreator.idl22
-rw-r--r--offapi/com/sun/star/animations/XTimeContainer.idl40
-rw-r--r--offapi/com/sun/star/animations/XTransitionFilter.idl4
-rw-r--r--offapi/com/sun/star/auth/AuthenticationFailedException.idl2
-rw-r--r--offapi/com/sun/star/auth/InvalidArgumentException.idl2
-rw-r--r--offapi/com/sun/star/auth/InvalidContextException.idl2
-rw-r--r--offapi/com/sun/star/auth/InvalidCredentialException.idl2
-rw-r--r--offapi/com/sun/star/auth/InvalidPrincipalException.idl2
-rw-r--r--offapi/com/sun/star/auth/PersistenceFailureException.idl2
-rw-r--r--offapi/com/sun/star/auth/SSOExceptions.idl2
-rw-r--r--offapi/com/sun/star/auth/SSOManagerFactory.idl4
-rw-r--r--offapi/com/sun/star/auth/SSOPasswordCache.idl2
-rw-r--r--offapi/com/sun/star/auth/UnsupportedException.idl2
-rw-r--r--offapi/com/sun/star/auth/XSSOAcceptorContext.idl8
-rw-r--r--offapi/com/sun/star/auth/XSSOContext.idl6
-rw-r--r--offapi/com/sun/star/auth/XSSOInitiatorContext.idl4
-rw-r--r--offapi/com/sun/star/auth/XSSOManager.idl18
-rw-r--r--offapi/com/sun/star/auth/XSSOManagerFactory.idl6
-rw-r--r--offapi/com/sun/star/auth/XSSOPasswordCache.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleButton.idl26
-rw-r--r--offapi/com/sun/star/awt/AccessibleCheckBox.idl26
-rw-r--r--offapi/com/sun/star/awt/AccessibleComboBox.idl16
-rw-r--r--offapi/com/sun/star/awt/AccessibleDropDownComboBox.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleDropDownListBox.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleEdit.idl18
-rw-r--r--offapi/com/sun/star/awt/AccessibleFixedText.idl14
-rw-r--r--offapi/com/sun/star/awt/AccessibleIconChoiceControl.idl10
-rw-r--r--offapi/com/sun/star/awt/AccessibleIconChoiceControlEntry.idl8
-rw-r--r--offapi/com/sun/star/awt/AccessibleList.idl18
-rw-r--r--offapi/com/sun/star/awt/AccessibleListBox.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleListBoxList.idl6
-rw-r--r--offapi/com/sun/star/awt/AccessibleListItem.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleMenu.idl20
-rw-r--r--offapi/com/sun/star/awt/AccessibleMenuBar.idl16
-rw-r--r--offapi/com/sun/star/awt/AccessibleMenuItem.idl18
-rw-r--r--offapi/com/sun/star/awt/AccessibleMenuSeparator.idl16
-rw-r--r--offapi/com/sun/star/awt/AccessiblePopupMenu.idl10
-rw-r--r--offapi/com/sun/star/awt/AccessibleRadioButton.idl18
-rw-r--r--offapi/com/sun/star/awt/AccessibleScrollBar.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleStatusBar.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleStatusBarItem.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabBar.idl14
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabBarPage.idl14
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabBarPageList.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabControl.idl14
-rw-r--r--offapi/com/sun/star/awt/AccessibleTabPage.idl16
-rw-r--r--offapi/com/sun/star/awt/AccessibleTextField.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleToolBox.idl14
-rw-r--r--offapi/com/sun/star/awt/AccessibleToolBoxItem.idl14
-rw-r--r--offapi/com/sun/star/awt/AccessibleTreeListBox.idl8
-rw-r--r--offapi/com/sun/star/awt/AccessibleTreeListBoxEntry.idl12
-rw-r--r--offapi/com/sun/star/awt/AccessibleWindow.idl16
-rw-r--r--offapi/com/sun/star/awt/ActionEvent.idl72
-rw-r--r--offapi/com/sun/star/awt/AdjustmentEvent.idl70
-rw-r--r--offapi/com/sun/star/awt/AdjustmentType.idl68
-rw-r--r--offapi/com/sun/star/awt/AsyncCallback.idl2
-rw-r--r--offapi/com/sun/star/awt/CharSet.idl134
-rw-r--r--offapi/com/sun/star/awt/Command.idl88
-rw-r--r--offapi/com/sun/star/awt/ContainerWindowProvider.idl8
-rw-r--r--offapi/com/sun/star/awt/DeviceCapability.idl64
-rw-r--r--offapi/com/sun/star/awt/DeviceInfo.idl118
-rw-r--r--offapi/com/sun/star/awt/DialogProvider.idl8
-rw-r--r--offapi/com/sun/star/awt/DialogProvider2.idl8
-rw-r--r--offapi/com/sun/star/awt/DockingData.idl50
-rw-r--r--offapi/com/sun/star/awt/DockingEvent.idl76
-rw-r--r--offapi/com/sun/star/awt/EndDockingEvent.idl62
-rw-r--r--offapi/com/sun/star/awt/EndPopupModeEvent.idl58
-rw-r--r--offapi/com/sun/star/awt/EnhancedMouseEvent.idl2
-rw-r--r--offapi/com/sun/star/awt/FieldUnit.idl30
-rw-r--r--offapi/com/sun/star/awt/FocusChangeReason.idl98
-rw-r--r--offapi/com/sun/star/awt/FocusEvent.idl84
-rw-r--r--offapi/com/sun/star/awt/FontDescriptor.idl208
-rw-r--r--offapi/com/sun/star/awt/FontEmphasisMark.idl90
-rw-r--r--offapi/com/sun/star/awt/FontFamily.idl98
-rw-r--r--offapi/com/sun/star/awt/FontPitch.idl68
-rw-r--r--offapi/com/sun/star/awt/FontRelief.idl62
-rw-r--r--offapi/com/sun/star/awt/FontSlant.idl86
-rw-r--r--offapi/com/sun/star/awt/FontStrikeout.idl98
-rw-r--r--offapi/com/sun/star/awt/FontType.idl74
-rw-r--r--offapi/com/sun/star/awt/FontUnderline.idl194
-rw-r--r--offapi/com/sun/star/awt/FontWeight.idl122
-rw-r--r--offapi/com/sun/star/awt/FontWidth.idl122
-rw-r--r--offapi/com/sun/star/awt/Gradient.idl124
-rw-r--r--offapi/com/sun/star/awt/GradientStyle.idl86
-rw-r--r--offapi/com/sun/star/awt/ImageAlign.idl68
-rw-r--r--offapi/com/sun/star/awt/ImagePosition.idl2
-rw-r--r--offapi/com/sun/star/awt/ImageScaleMode.idl6
-rw-r--r--offapi/com/sun/star/awt/ImageStatus.idl74
-rw-r--r--offapi/com/sun/star/awt/InputEvent.idl60
-rw-r--r--offapi/com/sun/star/awt/InvalidateStyle.idl92
-rw-r--r--offapi/com/sun/star/awt/ItemEvent.idl70
-rw-r--r--offapi/com/sun/star/awt/Key.idl892
-rw-r--r--offapi/com/sun/star/awt/KeyEvent.idl74
-rw-r--r--offapi/com/sun/star/awt/KeyFunction.idl190
-rw-r--r--offapi/com/sun/star/awt/KeyGroup.idl90
-rw-r--r--offapi/com/sun/star/awt/KeyModifier.idl62
-rw-r--r--offapi/com/sun/star/awt/KeyStroke.idl76
-rw-r--r--offapi/com/sun/star/awt/LineEndFormat.idl2
-rw-r--r--offapi/com/sun/star/awt/MaxChildrenException.idl20
-rw-r--r--offapi/com/sun/star/awt/MenuBar.idl46
-rw-r--r--offapi/com/sun/star/awt/MenuEvent.idl54
-rw-r--r--offapi/com/sun/star/awt/MenuItemStyle.idl66
-rw-r--r--offapi/com/sun/star/awt/MenuItemType.idl2
-rwxr-xr-xoffapi/com/sun/star/awt/MenuLogo.idl2
-rw-r--r--offapi/com/sun/star/awt/MessageBoxButtons.idl42
-rw-r--r--offapi/com/sun/star/awt/MessageBoxCommand.idl78
-rw-r--r--offapi/com/sun/star/awt/MouseButton.idl62
-rw-r--r--offapi/com/sun/star/awt/MouseEvent.idl90
-rwxr-xr-xoffapi/com/sun/star/awt/MouseWheelBehavior.idl6
-rw-r--r--offapi/com/sun/star/awt/PaintEvent.idl72
-rw-r--r--offapi/com/sun/star/awt/Point.idl48
-rw-r--r--offapi/com/sun/star/awt/PopupMenu.idl50
-rw-r--r--offapi/com/sun/star/awt/PopupMenuDirection.idl100
-rw-r--r--offapi/com/sun/star/awt/PosSize.idl82
-rw-r--r--offapi/com/sun/star/awt/PrinterException.idl50
-rw-r--r--offapi/com/sun/star/awt/PushButtonType.idl70
-rw-r--r--offapi/com/sun/star/awt/RasterOperation.idl8
-rw-r--r--offapi/com/sun/star/awt/Rectangle.idl64
-rw-r--r--offapi/com/sun/star/awt/RoadmapItem.idl2
-rw-r--r--offapi/com/sun/star/awt/ScrollBarOrientation.idl54
-rw-r--r--offapi/com/sun/star/awt/Selection.idl52
-rw-r--r--offapi/com/sun/star/awt/SimpleFontMetric.idl104
-rw-r--r--offapi/com/sun/star/awt/Size.idl52
-rw-r--r--offapi/com/sun/star/awt/SpinEvent.idl54
-rw-r--r--offapi/com/sun/star/awt/Style.idl56
-rw-r--r--offapi/com/sun/star/awt/SystemDependentXWindow.idl48
-rw-r--r--offapi/com/sun/star/awt/SystemPointer.idl614
-rw-r--r--offapi/com/sun/star/awt/TabController.idl42
-rw-r--r--offapi/com/sun/star/awt/TabControllerModel.idl50
-rw-r--r--offapi/com/sun/star/awt/TextAlign.idl62
-rw-r--r--offapi/com/sun/star/awt/TextEvent.idl54
-rw-r--r--offapi/com/sun/star/awt/Toolkit.idl52
-rw-r--r--offapi/com/sun/star/awt/UnoControl.idl94
-rw-r--r--offapi/com/sun/star/awt/UnoControlButton.idl64
-rw-r--r--offapi/com/sun/star/awt/UnoControlButtonModel.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlCheckBox.idl60
-rw-r--r--offapi/com/sun/star/awt/UnoControlCheckBoxModel.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlComboBox.idl56
-rw-r--r--offapi/com/sun/star/awt/UnoControlComboBoxModel.idl212
-rw-r--r--offapi/com/sun/star/awt/UnoControlContainer.idl50
-rw-r--r--offapi/com/sun/star/awt/UnoControlContainerModel.idl110
-rw-r--r--offapi/com/sun/star/awt/UnoControlCurrencyField.idl68
-rw-r--r--offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl196
-rw-r--r--offapi/com/sun/star/awt/UnoControlDateField.idl72
-rw-r--r--offapi/com/sun/star/awt/UnoControlDateFieldModel.idl210
-rw-r--r--offapi/com/sun/star/awt/UnoControlDialog.idl56
-rw-r--r--offapi/com/sun/star/awt/UnoControlDialogElement.idl62
-rw-r--r--offapi/com/sun/star/awt/UnoControlDialogModel.idl110
-rw-r--r--offapi/com/sun/star/awt/UnoControlEdit.idl80
-rw-r--r--offapi/com/sun/star/awt/UnoControlEditModel.idl222
-rw-r--r--offapi/com/sun/star/awt/UnoControlFileControl.idl46
-rw-r--r--offapi/com/sun/star/awt/UnoControlFileControlModel.idl140
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedHyperlink.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedHyperlinkModel.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedLine.idl46
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedLineModel.idl114
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedText.idl68
-rw-r--r--offapi/com/sun/star/awt/UnoControlFixedTextModel.idl62
-rw-r--r--offapi/com/sun/star/awt/UnoControlFormattedField.idl52
-rw-r--r--offapi/com/sun/star/awt/UnoControlFormattedFieldModel.idl144
-rw-r--r--offapi/com/sun/star/awt/UnoControlGroupBox.idl46
-rw-r--r--offapi/com/sun/star/awt/UnoControlGroupBoxModel.idl114
-rw-r--r--offapi/com/sun/star/awt/UnoControlImageControl.idl54
-rw-r--r--offapi/com/sun/star/awt/UnoControlImageControlModel.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlListBox.idl78
-rw-r--r--offapi/com/sun/star/awt/UnoControlListBoxModel.idl199
-rw-r--r--offapi/com/sun/star/awt/UnoControlModel.idl106
-rw-r--r--offapi/com/sun/star/awt/UnoControlNumericField.idl74
-rw-r--r--offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl186
-rw-r--r--offapi/com/sun/star/awt/UnoControlPatternField.idl72
-rw-r--r--offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl158
-rw-r--r--offapi/com/sun/star/awt/UnoControlProgressBar.idl58
-rw-r--r--offapi/com/sun/star/awt/UnoControlProgressBarModel.idl114
-rw-r--r--offapi/com/sun/star/awt/UnoControlRadioButton.idl62
-rw-r--r--offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlRoadmap.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlRoadmapModel.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlScrollBar.idl46
-rw-r--r--offapi/com/sun/star/awt/UnoControlScrollBarModel.idl132
-rw-r--r--offapi/com/sun/star/awt/UnoControlSimpleAnimation.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlSimpleAnimationModel.idl4
-rw-r--r--offapi/com/sun/star/awt/UnoControlSpinButton.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlSpinButtonModel.idl6
-rw-r--r--offapi/com/sun/star/awt/UnoControlThrobber.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlThrobberModel.idl2
-rw-r--r--offapi/com/sun/star/awt/UnoControlTimeField.idl56
-rw-r--r--offapi/com/sun/star/awt/UnoControlTimeFieldModel.idl176
-rw-r--r--offapi/com/sun/star/awt/VclContainerEvent.idl64
-rw-r--r--offapi/com/sun/star/awt/VclWindowPeerAttribute.idl246
-rw-r--r--offapi/com/sun/star/awt/VisualEffect.idl2
-rw-r--r--offapi/com/sun/star/awt/WindowAttribute.idl156
-rw-r--r--offapi/com/sun/star/awt/WindowClass.idl70
-rw-r--r--offapi/com/sun/star/awt/WindowDescriptor.idl126
-rw-r--r--offapi/com/sun/star/awt/WindowEvent.idl126
-rw-r--r--offapi/com/sun/star/awt/XActionListener.idl62
-rw-r--r--offapi/com/sun/star/awt/XActivateListener.idl80
-rw-r--r--offapi/com/sun/star/awt/XAdjustmentListener.idl62
-rw-r--r--offapi/com/sun/star/awt/XBitmap.idl78
-rw-r--r--offapi/com/sun/star/awt/XButton.idl86
-rw-r--r--offapi/com/sun/star/awt/XCallback.idl12
-rw-r--r--offapi/com/sun/star/awt/XCheckBox.idl102
-rw-r--r--offapi/com/sun/star/awt/XComboBox.idl158
-rw-r--r--offapi/com/sun/star/awt/XContainerWindowEventHandler.idl28
-rw-r--r--offapi/com/sun/star/awt/XContainerWindowProvider.idl46
-rw-r--r--offapi/com/sun/star/awt/XControl.idl170
-rw-r--r--offapi/com/sun/star/awt/XControlContainer.idl96
-rw-r--r--offapi/com/sun/star/awt/XControlModel.idl46
-rw-r--r--offapi/com/sun/star/awt/XCurrencyField.idl184
-rw-r--r--offapi/com/sun/star/awt/XDataTransferProviderAccess.idl18
-rw-r--r--offapi/com/sun/star/awt/XDateField.idl174
-rw-r--r--offapi/com/sun/star/awt/XDevice.idl154
-rw-r--r--offapi/com/sun/star/awt/XDialog.idl76
-rw-r--r--offapi/com/sun/star/awt/XDialog2.idl40
-rw-r--r--offapi/com/sun/star/awt/XDialogEventHandler.idl26
-rw-r--r--offapi/com/sun/star/awt/XDialogProvider.idl20
-rw-r--r--offapi/com/sun/star/awt/XDialogProvider2.idl38
-rw-r--r--offapi/com/sun/star/awt/XDisplayBitmap.idl50
-rw-r--r--offapi/com/sun/star/awt/XDisplayConnection.idl10
-rw-r--r--offapi/com/sun/star/awt/XDockableWindow.idl92
-rw-r--r--offapi/com/sun/star/awt/XDockableWindowListener.idl118
-rw-r--r--offapi/com/sun/star/awt/XEnhancedMouseClickHandler.idl2
-rw-r--r--offapi/com/sun/star/awt/XEventHandler.idl8
-rwxr-xr-xoffapi/com/sun/star/awt/XExtendedToolkit.idl80
-rw-r--r--offapi/com/sun/star/awt/XFileDialog.idl80
-rw-r--r--offapi/com/sun/star/awt/XFixedHyperlink.idl2
-rw-r--r--offapi/com/sun/star/awt/XFixedText.idl82
-rw-r--r--offapi/com/sun/star/awt/XFocusListener.idl72
-rw-r--r--offapi/com/sun/star/awt/XFont.idl160
-rw-r--r--offapi/com/sun/star/awt/XFont2.idl4
-rw-r--r--offapi/com/sun/star/awt/XGraphics.idl458
-rw-r--r--offapi/com/sun/star/awt/XImageButton.idl78
-rw-r--r--offapi/com/sun/star/awt/XImageConsumer.idl136
-rw-r--r--offapi/com/sun/star/awt/XImageProducer.idl86
-rw-r--r--offapi/com/sun/star/awt/XInfoPrinter.idl64
-rw-r--r--offapi/com/sun/star/awt/XItemEventBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/awt/XItemListener.idl62
-rw-r--r--offapi/com/sun/star/awt/XKeyHandler.idl40
-rw-r--r--offapi/com/sun/star/awt/XKeyListener.idl70
-rw-r--r--offapi/com/sun/star/awt/XLayoutConstrains.idl78
-rw-r--r--offapi/com/sun/star/awt/XLayoutContainer.idl50
-rw-r--r--offapi/com/sun/star/awt/XLayoutFlow.idl26
-rw-r--r--offapi/com/sun/star/awt/XLayoutFlowContainer.idl28
-rw-r--r--offapi/com/sun/star/awt/XLayoutRoot.idl50
-rw-r--r--offapi/com/sun/star/awt/XLayoutUnit.idl26
-rw-r--r--offapi/com/sun/star/awt/XListBox.idl252
-rw-r--r--offapi/com/sun/star/awt/XMenu.idl170
-rw-r--r--offapi/com/sun/star/awt/XMenuBar.idl46
-rwxr-xr-xoffapi/com/sun/star/awt/XMenuBarExtended.idl2
-rw-r--r--offapi/com/sun/star/awt/XMenuExtended.idl2
-rwxr-xr-xoffapi/com/sun/star/awt/XMenuExtended2.idl2
-rw-r--r--offapi/com/sun/star/awt/XMenuListener.idl86
-rw-r--r--offapi/com/sun/star/awt/XMessageBox.idl76
-rw-r--r--offapi/com/sun/star/awt/XMessageBoxFactory.idl26
-rw-r--r--offapi/com/sun/star/awt/XMetricField.idl190
-rw-r--r--offapi/com/sun/star/awt/XMouseClickHandler.idl4
-rw-r--r--offapi/com/sun/star/awt/XMouseListener.idl86
-rw-r--r--offapi/com/sun/star/awt/XMouseMotionHandler.idl76
-rw-r--r--offapi/com/sun/star/awt/XMouseMotionListener.idl76
-rw-r--r--offapi/com/sun/star/awt/XNumericField.idl192
-rw-r--r--offapi/com/sun/star/awt/XPaintListener.idl62
-rw-r--r--offapi/com/sun/star/awt/XPatternField.idl100
-rw-r--r--offapi/com/sun/star/awt/XPointer.idl62
-rw-r--r--offapi/com/sun/star/awt/XPopupMenu.idl112
-rwxr-xr-xoffapi/com/sun/star/awt/XPopupMenuExtended.idl2
-rw-r--r--offapi/com/sun/star/awt/XPrinter.idl138
-rw-r--r--offapi/com/sun/star/awt/XPrinterPropertySet.idl130
-rw-r--r--offapi/com/sun/star/awt/XPrinterServer.idl94
-rw-r--r--offapi/com/sun/star/awt/XProgressBar.idl82
-rw-r--r--offapi/com/sun/star/awt/XProgressMonitor.idl70
-rw-r--r--offapi/com/sun/star/awt/XRadioButton.idl94
-rw-r--r--offapi/com/sun/star/awt/XRegion.idl152
-rw-r--r--offapi/com/sun/star/awt/XRequestCallback.idl12
-rw-r--r--offapi/com/sun/star/awt/XReschedule.idl26
-rw-r--r--offapi/com/sun/star/awt/XScrollBar.idl178
-rw-r--r--offapi/com/sun/star/awt/XSimpleAnimation.idl2
-rw-r--r--offapi/com/sun/star/awt/XSimpleTabController.idl2
-rw-r--r--offapi/com/sun/star/awt/XSpinField.idl110
-rw-r--r--offapi/com/sun/star/awt/XSpinListener.idl86
-rw-r--r--offapi/com/sun/star/awt/XSpinValue.idl2
-rw-r--r--offapi/com/sun/star/awt/XStyleChangeListener.idl2
-rw-r--r--offapi/com/sun/star/awt/XStyleSettings.idl6
-rw-r--r--offapi/com/sun/star/awt/XStyleSettingsSupplier.idl2
-rw-r--r--offapi/com/sun/star/awt/XSystemChildFactory.idl22
-rw-r--r--offapi/com/sun/star/awt/XSystemDependentMenuPeer.idl80
-rw-r--r--offapi/com/sun/star/awt/XSystemDependentWindowPeer.idl96
-rw-r--r--offapi/com/sun/star/awt/XTabController.idl132
-rw-r--r--offapi/com/sun/star/awt/XTabControllerModel.idl110
-rw-r--r--offapi/com/sun/star/awt/XTabListener.idl2
-rw-r--r--offapi/com/sun/star/awt/XTextArea.idl54
-rw-r--r--offapi/com/sun/star/awt/XTextComponent.idl162
-rw-r--r--offapi/com/sun/star/awt/XTextEditField.idl54
-rw-r--r--offapi/com/sun/star/awt/XTextLayoutConstrains.idl72
-rw-r--r--offapi/com/sun/star/awt/XTextListener.idl62
-rw-r--r--offapi/com/sun/star/awt/XThrobber.idl2
-rw-r--r--offapi/com/sun/star/awt/XTimeField.idl158
-rw-r--r--offapi/com/sun/star/awt/XToggleButton.idl54
-rw-r--r--offapi/com/sun/star/awt/XToolkit.idl156
-rw-r--r--offapi/com/sun/star/awt/XTopWindow.idl104
-rw-r--r--offapi/com/sun/star/awt/XTopWindow2.idl6
-rw-r--r--offapi/com/sun/star/awt/XTopWindowListener.idl112
-rw-r--r--offapi/com/sun/star/awt/XUnitConversion.idl44
-rw-r--r--offapi/com/sun/star/awt/XUnoControlContainer.idl86
-rw-r--r--offapi/com/sun/star/awt/XUserInputInterception.idl4
-rw-r--r--offapi/com/sun/star/awt/XVclContainer.idl86
-rw-r--r--offapi/com/sun/star/awt/XVclContainerListener.idl76
-rw-r--r--offapi/com/sun/star/awt/XVclContainerPeer.idl78
-rw-r--r--offapi/com/sun/star/awt/XVclWindowPeer.idl124
-rw-r--r--offapi/com/sun/star/awt/XView.idl116
-rw-r--r--offapi/com/sun/star/awt/XWindow.idl252
-rw-r--r--offapi/com/sun/star/awt/XWindow2.idl110
-rw-r--r--offapi/com/sun/star/awt/XWindowListener.idl102
-rw-r--r--offapi/com/sun/star/awt/XWindowListener2.idl2
-rw-r--r--offapi/com/sun/star/awt/XWindowPeer.idl100
-rw-r--r--offapi/com/sun/star/awt/grid/DefaultGridColumnModel.idl34
-rw-r--r--offapi/com/sun/star/awt/grid/DefaultGridDataModel.idl34
-rw-r--r--offapi/com/sun/star/awt/grid/GridColumn.idl34
-rw-r--r--offapi/com/sun/star/awt/grid/GridColumnEvent.idl48
-rw-r--r--offapi/com/sun/star/awt/grid/GridControlEvent.idl54
-rw-r--r--offapi/com/sun/star/awt/grid/GridDataEvent.idl50
-rw-r--r--offapi/com/sun/star/awt/grid/GridInvalidDataException.idl44
-rw-r--r--offapi/com/sun/star/awt/grid/GridInvalidModelException.idl38
-rw-r--r--offapi/com/sun/star/awt/grid/GridSelectionEvent.idl58
-rw-r--r--offapi/com/sun/star/awt/grid/ScrollBarMode.idl56
-rw-r--r--offapi/com/sun/star/awt/grid/SelectionEventType.idl56
-rw-r--r--offapi/com/sun/star/awt/grid/UnoControlGrid.idl50
-rw-r--r--offapi/com/sun/star/awt/grid/UnoControlGridModel.idl70
-rw-r--r--offapi/com/sun/star/awt/grid/XGridCell.idl48
-rw-r--r--offapi/com/sun/star/awt/grid/XGridCellRenderer.idl48
-rw-r--r--offapi/com/sun/star/awt/grid/XGridColumn.idl64
-rw-r--r--offapi/com/sun/star/awt/grid/XGridColumnListener.idl68
-rw-r--r--offapi/com/sun/star/awt/grid/XGridColumnModel.idl60
-rw-r--r--offapi/com/sun/star/awt/grid/XGridControl.idl56
-rw-r--r--offapi/com/sun/star/awt/grid/XGridControlListener.idl44
-rw-r--r--offapi/com/sun/star/awt/grid/XGridDataListener.idl68
-rw-r--r--offapi/com/sun/star/awt/grid/XGridDataModel.idl64
-rw-r--r--offapi/com/sun/star/awt/grid/XGridSelection.idl66
-rw-r--r--offapi/com/sun/star/awt/grid/XGridSelectionListener.idl58
-rw-r--r--offapi/com/sun/star/awt/tree/ExpandVetoException.idl36
-rw-r--r--offapi/com/sun/star/awt/tree/MutableTreeDataModel.idl24
-rw-r--r--offapi/com/sun/star/awt/tree/MutableTreeNode.idl26
-rw-r--r--offapi/com/sun/star/awt/tree/TreeControl.idl30
-rw-r--r--offapi/com/sun/star/awt/tree/TreeControlModel.idl38
-rw-r--r--offapi/com/sun/star/awt/tree/TreeDataModelEvent.idl38
-rw-r--r--offapi/com/sun/star/awt/tree/TreeExpansionEvent.idl36
-rw-r--r--offapi/com/sun/star/awt/tree/XMutableTreeDataModel.idl32
-rw-r--r--offapi/com/sun/star/awt/tree/XMutableTreeNode.idl50
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeControl.idl44
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeDataModel.idl36
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeDataModelListener.idl52
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeEditListener.idl36
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeExpansionListener.idl46
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeNode.idl30
-rw-r--r--offapi/com/sun/star/chart/AccessibleChartDocumentView.idl2
-rw-r--r--offapi/com/sun/star/chart/AccessibleChartElement.idl20
-rw-r--r--offapi/com/sun/star/chart/AreaDiagram.idl94
-rw-r--r--offapi/com/sun/star/chart/BarDiagram.idl2
-rw-r--r--offapi/com/sun/star/chart/BubbleDiagram.idl66
-rw-r--r--offapi/com/sun/star/chart/Chart3DBarProperties.idl56
-rw-r--r--offapi/com/sun/star/chart/ChartArea.idl60
-rw-r--r--offapi/com/sun/star/chart/ChartAxis.idl300
-rw-r--r--offapi/com/sun/star/chart/ChartAxisArrangeOrderType.idl60
-rw-r--r--offapi/com/sun/star/chart/ChartAxisAssign.idl50
-rw-r--r--offapi/com/sun/star/chart/ChartAxisLabelPosition.idl56
-rw-r--r--offapi/com/sun/star/chart/ChartAxisMarkPosition.idl50
-rw-r--r--offapi/com/sun/star/chart/ChartAxisMarks.idl62
-rw-r--r--offapi/com/sun/star/chart/ChartAxisPosition.idl58
-rw-r--r--offapi/com/sun/star/chart/ChartAxisXSupplier.idl90
-rw-r--r--offapi/com/sun/star/chart/ChartAxisYSupplier.idl90
-rw-r--r--offapi/com/sun/star/chart/ChartAxisZSupplier.idl88
-rw-r--r--offapi/com/sun/star/chart/ChartData.idl46
-rw-r--r--offapi/com/sun/star/chart/ChartDataArray.idl62
-rw-r--r--offapi/com/sun/star/chart/ChartDataCaption.idl72
-rw-r--r--offapi/com/sun/star/chart/ChartDataChangeEvent.idl94
-rw-r--r--offapi/com/sun/star/chart/ChartDataChangeType.idl86
-rw-r--r--offapi/com/sun/star/chart/ChartDataPoint.idl6
-rw-r--r--offapi/com/sun/star/chart/ChartDataPointProperties.idl132
-rw-r--r--offapi/com/sun/star/chart/ChartDataRow.idl50
-rw-r--r--offapi/com/sun/star/chart/ChartDataRowProperties.idl98
-rw-r--r--offapi/com/sun/star/chart/ChartDataRowSource.idl54
-rw-r--r--offapi/com/sun/star/chart/ChartDataValue.idl56
-rw-r--r--offapi/com/sun/star/chart/ChartDocument.idl14
-rw-r--r--offapi/com/sun/star/chart/ChartErrorCategory.idl84
-rw-r--r--offapi/com/sun/star/chart/ChartErrorIndicatorType.idl38
-rw-r--r--offapi/com/sun/star/chart/ChartGrid.idl58
-rw-r--r--offapi/com/sun/star/chart/ChartLegend.idl84
-rw-r--r--offapi/com/sun/star/chart/ChartLegendPosition.idl74
-rw-r--r--offapi/com/sun/star/chart/ChartLine.idl52
-rw-r--r--offapi/com/sun/star/chart/ChartPieSegmentProperties.idl76
-rw-r--r--offapi/com/sun/star/chart/ChartRegressionCurveType.idl88
-rw-r--r--offapi/com/sun/star/chart/ChartSeriesAddress.idl50
-rw-r--r--offapi/com/sun/star/chart/ChartSolidType.idl70
-rw-r--r--offapi/com/sun/star/chart/ChartStatistics.idl152
-rw-r--r--offapi/com/sun/star/chart/ChartSymbolType.idl122
-rw-r--r--offapi/com/sun/star/chart/ChartTableAddressSupplier.idl6
-rw-r--r--offapi/com/sun/star/chart/ChartTitle.idl64
-rw-r--r--offapi/com/sun/star/chart/ChartTwoAxisXSupplier.idl82
-rw-r--r--offapi/com/sun/star/chart/ChartTwoAxisYSupplier.idl82
-rw-r--r--offapi/com/sun/star/chart/DataLabelPlacement.idl38
-rw-r--r--offapi/com/sun/star/chart/Diagram.idl92
-rw-r--r--offapi/com/sun/star/chart/Dim3DDiagram.idl60
-rw-r--r--offapi/com/sun/star/chart/DonutDiagram.idl48
-rwxr-xr-xoffapi/com/sun/star/chart/ErrorBarStyle.idl2
-rw-r--r--offapi/com/sun/star/chart/FilledNetDiagram.idl74
-rw-r--r--offapi/com/sun/star/chart/LineDiagram.idl150
-rw-r--r--offapi/com/sun/star/chart/MissingValueTreatment.idl36
-rw-r--r--offapi/com/sun/star/chart/NetDiagram.idl70
-rw-r--r--offapi/com/sun/star/chart/PieDiagram.idl58
-rw-r--r--offapi/com/sun/star/chart/StackableDiagram.idl56
-rw-r--r--offapi/com/sun/star/chart/StockDiagram.idl106
-rw-r--r--offapi/com/sun/star/chart/X3DDefaultSetter.idl48
-rw-r--r--offapi/com/sun/star/chart/X3DDisplay.idl76
-rw-r--r--offapi/com/sun/star/chart/XAxisXSupplier.idl106
-rw-r--r--offapi/com/sun/star/chart/XAxisYSupplier.idl102
-rw-r--r--offapi/com/sun/star/chart/XAxisZSupplier.idl116
-rw-r--r--offapi/com/sun/star/chart/XChartData.idl88
-rw-r--r--offapi/com/sun/star/chart/XChartDataArray.idl72
-rw-r--r--offapi/com/sun/star/chart/XChartDataChangeEventListener.idl62
-rw-r--r--offapi/com/sun/star/chart/XChartDocument.idl166
-rwxr-xr-xoffapi/com/sun/star/chart/XComplexDescriptionAccess.idl66
-rw-r--r--offapi/com/sun/star/chart/XDiagram.idl100
-rw-r--r--offapi/com/sun/star/chart/XDiagramPositioning.idl46
-rw-r--r--offapi/com/sun/star/chart/XSecondAxisTitleSupplier.idl30
-rw-r--r--offapi/com/sun/star/chart/XStatisticDisplay.idl84
-rw-r--r--offapi/com/sun/star/chart/XTwoAxisXSupplier.idl64
-rw-r--r--offapi/com/sun/star/chart/XTwoAxisYSupplier.idl66
-rw-r--r--offapi/com/sun/star/chart/XYDiagram.idl78
-rw-r--r--offapi/com/sun/star/chart2/Axis.idl10
-rw-r--r--offapi/com/sun/star/chart2/AxisOrientation.idl2
-rw-r--r--offapi/com/sun/star/chart2/AxisType.idl4
-rw-r--r--offapi/com/sun/star/chart2/Break.idl2
-rw-r--r--offapi/com/sun/star/chart2/CandleStickChartType.idl2
-rw-r--r--offapi/com/sun/star/chart2/ChartDocument.idl2
-rw-r--r--offapi/com/sun/star/chart2/ChartDocumentWrapper.idl2
-rw-r--r--offapi/com/sun/star/chart2/ChartType.idl2
-rw-r--r--offapi/com/sun/star/chart2/ChartTypeManager.idl2
-rw-r--r--offapi/com/sun/star/chart2/CoordinateSystemType.idl2
-rw-r--r--offapi/com/sun/star/chart2/CurveStyle.idl2
-rw-r--r--offapi/com/sun/star/chart2/DataPoint.idl4
-rw-r--r--offapi/com/sun/star/chart2/DataPointGeometry3D.idl70
-rw-r--r--offapi/com/sun/star/chart2/DataPointLabel.idl2
-rw-r--r--offapi/com/sun/star/chart2/DataPointProperties.idl2
-rw-r--r--offapi/com/sun/star/chart2/DataSeries.idl2
-rw-r--r--offapi/com/sun/star/chart2/Diagram.idl2
-rw-r--r--offapi/com/sun/star/chart2/ErrorBar.idl2
-rw-r--r--offapi/com/sun/star/chart2/ExplicitIncrementData.idl6
-rw-r--r--offapi/com/sun/star/chart2/ExponentialScaling.idl2
-rw-r--r--offapi/com/sun/star/chart2/FillBitmap.idl2
-rw-r--r--offapi/com/sun/star/chart2/GridProperties.idl2
-rw-r--r--offapi/com/sun/star/chart2/InterpretedData.idl2
-rw-r--r--offapi/com/sun/star/chart2/Legend.idl2
-rw-r--r--offapi/com/sun/star/chart2/LegendExpansion.idl2
-rw-r--r--offapi/com/sun/star/chart2/LegendPosition.idl2
-rw-r--r--offapi/com/sun/star/chart2/LegendSymbolStyle.idl2
-rw-r--r--offapi/com/sun/star/chart2/LightSource.idl2
-rw-r--r--offapi/com/sun/star/chart2/LinearScaling.idl2
-rw-r--r--offapi/com/sun/star/chart2/LogarithmicScaling.idl2
-rw-r--r--offapi/com/sun/star/chart2/MutableDataSequence.idl2
-rw-r--r--offapi/com/sun/star/chart2/PieChartOffsetMode.idl2
-rw-r--r--offapi/com/sun/star/chart2/PowerScaling.idl2
-rw-r--r--offapi/com/sun/star/chart2/PropertyPool.idl2
-rw-r--r--offapi/com/sun/star/chart2/RegressionCurve.idl2
-rw-r--r--offapi/com/sun/star/chart2/RegressionCurveEquation.idl2
-rw-r--r--offapi/com/sun/star/chart2/RelativePosition.idl2
-rw-r--r--offapi/com/sun/star/chart2/RelativeSize.idl2
-rw-r--r--offapi/com/sun/star/chart2/Scaling.idl2
-rw-r--r--offapi/com/sun/star/chart2/StackingDirection.idl2
-rw-r--r--offapi/com/sun/star/chart2/StandardDiagramCreationParameters.idl2
-rw-r--r--offapi/com/sun/star/chart2/Symbol.idl16
-rw-r--r--offapi/com/sun/star/chart2/SymbolStyle.idl2
-rw-r--r--offapi/com/sun/star/chart2/TextAnchor.idl2
-rw-r--r--offapi/com/sun/star/chart2/TickmarkStyle.idl2
-rw-r--r--offapi/com/sun/star/chart2/Title.idl2
-rw-r--r--offapi/com/sun/star/chart2/TransparencyStyle.idl2
-rw-r--r--offapi/com/sun/star/chart2/ViewLegendEntry.idl2
-rw-r--r--offapi/com/sun/star/chart2/XChartDocument.idl2
-rw-r--r--offapi/com/sun/star/chart2/XChartTypeContainer.idl2
-rw-r--r--offapi/com/sun/star/chart2/XChartTypeTemplate.idl2
-rw-r--r--offapi/com/sun/star/chart2/XColorScheme.idl2
-rw-r--r--offapi/com/sun/star/chart2/XCoordinateSystemContainer.idl2
-rw-r--r--offapi/com/sun/star/chart2/XDataInterpreter.idl2
-rw-r--r--offapi/com/sun/star/chart2/XDataSeries.idl4
-rw-r--r--offapi/com/sun/star/chart2/XDataSeriesContainer.idl2
-rw-r--r--offapi/com/sun/star/chart2/XDefaultSizeTransmitter.idl2
-rw-r--r--offapi/com/sun/star/chart2/XDiagram.idl2
-rw-r--r--offapi/com/sun/star/chart2/XDiagramProvider.idl4
-rw-r--r--offapi/com/sun/star/chart2/XFastPropertyState.idl4
-rw-r--r--offapi/com/sun/star/chart2/XInternalDataProvider.idl2
-rw-r--r--offapi/com/sun/star/chart2/XLabeled.idl2
-rw-r--r--offapi/com/sun/star/chart2/XPlotter.idl8
-rw-r--r--offapi/com/sun/star/chart2/XRegressionCurve.idl2
-rw-r--r--offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl2
-rw-r--r--offapi/com/sun/star/chart2/XRegressionCurveContainer.idl2
-rw-r--r--offapi/com/sun/star/chart2/XStyleSupplier.idl2
-rw-r--r--offapi/com/sun/star/chart2/XTitle.idl2
-rw-r--r--offapi/com/sun/star/chart2/XTitled.idl2
-rw-r--r--offapi/com/sun/star/chart2/XTransformation.idl2
-rw-r--r--offapi/com/sun/star/chart2/XUndoHelper.idl2
-rw-r--r--offapi/com/sun/star/chart2/XUndoManager.idl2
-rw-r--r--offapi/com/sun/star/chart2/XUndoSupplier.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/DataFilter.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/DataProvider.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/DataSequence.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/DataSequenceRole.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/DataSink.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/DataSource.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/HighlightedRange.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/LabelOrigin.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/LabeledDataSequence.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/RangeHighlightListener.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/RangeHighlighter.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/TabularDataProviderArguments.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XDataProvider.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XDataReceiver.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XDataSequence.idl8
-rw-r--r--offapi/com/sun/star/chart2/data/XDataSink.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XDataSource.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl50
-rw-r--r--offapi/com/sun/star/chart2/data/XLabeledDataSequence.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XNumericalDataSequence.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XRangeHighlighter.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XRangeXMLConversion.idl2
-rw-r--r--offapi/com/sun/star/chart2/data/XTextualDataSequence.idl2
-rw-r--r--offapi/com/sun/star/configuration/AccessRootElement.idl18
-rw-r--r--offapi/com/sun/star/configuration/AdministrationProvider.idl106
-rw-r--r--offapi/com/sun/star/configuration/CannotLoadConfigurationException.idl44
-rw-r--r--offapi/com/sun/star/configuration/ConfigurationAccess.idl24
-rw-r--r--offapi/com/sun/star/configuration/ConfigurationProvider.idl64
-rw-r--r--offapi/com/sun/star/configuration/ConfigurationRegistry.idl28
-rw-r--r--offapi/com/sun/star/configuration/ConfigurationUpdateAccess.idl12
-rw-r--r--offapi/com/sun/star/configuration/CorruptedConfigurationException.idl44
-rw-r--r--offapi/com/sun/star/configuration/CorruptedUIConfigurationException.idl44
-rw-r--r--offapi/com/sun/star/configuration/DefaultProvider.idl36
-rw-r--r--offapi/com/sun/star/configuration/GroupAccess.idl22
-rw-r--r--offapi/com/sun/star/configuration/GroupElement.idl6
-rw-r--r--offapi/com/sun/star/configuration/GroupUpdate.idl10
-rw-r--r--offapi/com/sun/star/configuration/HierarchyAccess.idl50
-rw-r--r--offapi/com/sun/star/configuration/HierarchyElement.idl18
-rw-r--r--offapi/com/sun/star/configuration/InstallationIncompleteException.idl44
-rw-r--r--offapi/com/sun/star/configuration/InvalidBootstrapFileException.idl44
-rw-r--r--offapi/com/sun/star/configuration/MissingBootstrapFileException.idl44
-rw-r--r--offapi/com/sun/star/configuration/PropertyHierarchy.idl12
-rw-r--r--offapi/com/sun/star/configuration/SetAccess.idl8
-rw-r--r--offapi/com/sun/star/configuration/SetElement.idl14
-rw-r--r--offapi/com/sun/star/configuration/SetUpdate.idl8
-rw-r--r--offapi/com/sun/star/configuration/SimpleSetAccess.idl12
-rw-r--r--offapi/com/sun/star/configuration/SimpleSetUpdate.idl28
-rw-r--r--offapi/com/sun/star/configuration/UpdateRootElement.idl10
-rw-r--r--offapi/com/sun/star/configuration/XTemplateContainer.idl68
-rw-r--r--offapi/com/sun/star/configuration/XTemplateInstance.idl64
-rw-r--r--offapi/com/sun/star/configuration/XUpdate.idl6
-rw-r--r--offapi/com/sun/star/configuration/backend/AuthenticationFailedException.idl6
-rw-r--r--offapi/com/sun/star/configuration/backend/Backend.idl44
-rw-r--r--offapi/com/sun/star/configuration/backend/BackendAccessException.idl4
-rw-r--r--offapi/com/sun/star/configuration/backend/BackendAdapter.idl36
-rw-r--r--offapi/com/sun/star/configuration/backend/BackendSetupException.idl12
-rw-r--r--offapi/com/sun/star/configuration/backend/CannotConnectException.idl8
-rw-r--r--offapi/com/sun/star/configuration/backend/ComponentChangeEvent.idl50
-rw-r--r--offapi/com/sun/star/configuration/backend/ConnectionLostException.idl10
-rw-r--r--offapi/com/sun/star/configuration/backend/CopyImporter.idl42
-rw-r--r--offapi/com/sun/star/configuration/backend/DataImporter.idl90
-rw-r--r--offapi/com/sun/star/configuration/backend/DefaultBackend.idl26
-rw-r--r--offapi/com/sun/star/configuration/backend/HierarchyBrowser.idl42
-rw-r--r--offapi/com/sun/star/configuration/backend/Importer.idl38
-rw-r--r--offapi/com/sun/star/configuration/backend/InsufficientAccessRightsException.idl10
-rw-r--r--offapi/com/sun/star/configuration/backend/InteractionHandler.idl2
-rw-r--r--offapi/com/sun/star/configuration/backend/InvalidAuthenticationMechanismException.idl6
-rw-r--r--offapi/com/sun/star/configuration/backend/Layer.idl22
-rw-r--r--offapi/com/sun/star/configuration/backend/LayerDescriber.idl24
-rw-r--r--offapi/com/sun/star/configuration/backend/LayerFilter.idl12
-rw-r--r--offapi/com/sun/star/configuration/backend/LayerUpdateMerger.idl46
-rw-r--r--offapi/com/sun/star/configuration/backend/LdapMultiLayerStratum.idl16
-rw-r--r--offapi/com/sun/star/configuration/backend/LdapSingleBackend.idl22
-rw-r--r--offapi/com/sun/star/configuration/backend/LdapSingleStratum.idl18
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalDataImporter.idl64
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalHierarchyBrowser.idl42
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalSchemaSupplier.idl18
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalSingleBackend.idl22
-rw-r--r--offapi/com/sun/star/configuration/backend/LocalSingleStratum.idl18
-rw-r--r--offapi/com/sun/star/configuration/backend/MalformedDataException.idl46
-rw-r--r--offapi/com/sun/star/configuration/backend/MergeImporter.idl32
-rw-r--r--offapi/com/sun/star/configuration/backend/MergeRecoveryRequest.idl56
-rw-r--r--offapi/com/sun/star/configuration/backend/MultiLayerStratum.idl26
-rw-r--r--offapi/com/sun/star/configuration/backend/MultiStratumBackend.idl2
-rw-r--r--offapi/com/sun/star/configuration/backend/NodeAttribute.idl68
-rw-r--r--offapi/com/sun/star/configuration/backend/OfflineBackend.idl38
-rw-r--r--offapi/com/sun/star/configuration/backend/OnlineBackend.idl26
-rw-r--r--offapi/com/sun/star/configuration/backend/PlatformBackend.idl16
-rw-r--r--offapi/com/sun/star/configuration/backend/PropertyInfo.idl48
-rw-r--r--offapi/com/sun/star/configuration/backend/Schema.idl10
-rw-r--r--offapi/com/sun/star/configuration/backend/SchemaAttribute.idl64
-rw-r--r--offapi/com/sun/star/configuration/backend/SchemaSupplier.idl18
-rw-r--r--offapi/com/sun/star/configuration/backend/SingleBackend.idl46
-rw-r--r--offapi/com/sun/star/configuration/backend/SingleBackendAdapter.idl22
-rw-r--r--offapi/com/sun/star/configuration/backend/SingleLayerStratum.idl26
-rw-r--r--offapi/com/sun/star/configuration/backend/StratumCreationException.idl40
-rw-r--r--offapi/com/sun/star/configuration/backend/SystemIntegration.idl38
-rw-r--r--offapi/com/sun/star/configuration/backend/TemplateIdentifier.idl58
-rw-r--r--offapi/com/sun/star/configuration/backend/UpdatableLayer.idl34
-rw-r--r--offapi/com/sun/star/configuration/backend/XBackend.idl86
-rw-r--r--offapi/com/sun/star/configuration/backend/XBackendChangesListener.idl54
-rw-r--r--offapi/com/sun/star/configuration/backend/XBackendChangesNotifier.idl62
-rw-r--r--offapi/com/sun/star/configuration/backend/XBackendEntities.idl94
-rw-r--r--offapi/com/sun/star/configuration/backend/XCompositeLayer.idl28
-rw-r--r--offapi/com/sun/star/configuration/backend/XLayer.idl36
-rw-r--r--offapi/com/sun/star/configuration/backend/XLayerContentDescriber.idl38
-rw-r--r--offapi/com/sun/star/configuration/backend/XLayerHandler.idl324
-rw-r--r--offapi/com/sun/star/configuration/backend/XLayerImporter.idl42
-rw-r--r--offapi/com/sun/star/configuration/backend/XMultiLayerStratum.idl238
-rw-r--r--offapi/com/sun/star/configuration/backend/XSchema.idl54
-rw-r--r--offapi/com/sun/star/configuration/backend/XSchemaHandler.idl256
-rw-r--r--offapi/com/sun/star/configuration/backend/XSchemaSupplier.idl28
-rw-r--r--offapi/com/sun/star/configuration/backend/XSingleLayerStratum.idl82
-rw-r--r--offapi/com/sun/star/configuration/backend/XUpdatableLayer.idl14
-rw-r--r--offapi/com/sun/star/configuration/backend/XUpdateHandler.idl354
-rw-r--r--offapi/com/sun/star/configuration/backend/XVersionedSchemaSupplier.idl40
-rw-r--r--offapi/com/sun/star/configuration/backend/xml/LayerParser.idl42
-rw-r--r--offapi/com/sun/star/configuration/backend/xml/LayerWriter.idl34
-rw-r--r--offapi/com/sun/star/configuration/backend/xml/SchemaParser.idl38
-rw-r--r--offapi/com/sun/star/configuration/bootstrap/BootstrapContext.idl40
-rw-r--r--offapi/com/sun/star/datatransfer/DataFlavor.idl12
-rw-r--r--offapi/com/sun/star/datatransfer/DataFormatTranslator.idl8
-rw-r--r--offapi/com/sun/star/datatransfer/MimeContentTypeFactory.idl18
-rw-r--r--offapi/com/sun/star/datatransfer/UnsupportedFlavorException.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/XDataFormatTranslator.idl16
-rw-r--r--offapi/com/sun/star/datatransfer/XMimeContentType.idl12
-rw-r--r--offapi/com/sun/star/datatransfer/XMimeContentTypeFactory.idl20
-rw-r--r--offapi/com/sun/star/datatransfer/XSystemTransferable.idl8
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferDataAccess.idl10
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferable.idl26
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferableEx.idl10
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferableSource.idl4
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferableSupplier.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/ClipboardEvent.idl4
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/ClipboardManager.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/GenericClipboard.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/RenderingCapabilities.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/SystemClipboard.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboard.idl16
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardEx.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardFactory.idl12
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardListener.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardManager.idl20
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardNotifier.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XClipboardOwner.idl4
-rw-r--r--offapi/com/sun/star/datatransfer/clipboard/XFlushableClipboard.idl8
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DNDConstants.idl18
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragGestureEvent.idl12
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragSourceDragEvent.idl12
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragSourceDropEvent.idl12
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragSourceEvent.idl8
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DropTargetDragEnterEvent.idl10
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DropTargetDragEvent.idl16
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DropTargetDropEvent.idl14
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DropTargetEvent.idl6
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/InvalidDNDOperationException.idl8
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/OleDragSource.idl8
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/OleDropTarget.idl2
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/X11DragSource.idl8
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/X11DropTarget.idl8
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl22
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragGestureListener.idl12
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragGestureRecognizer.idl20
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSource.idl42
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSourceContext.idl36
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl12
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTarget.idl30
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetDragContext.idl20
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetDropContext.idl22
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDropTargetListener.idl14
-rw-r--r--offapi/com/sun/star/deployment/DependencyException.idl2
-rw-r--r--offapi/com/sun/star/deployment/DeploymentException.idl6
-rw-r--r--offapi/com/sun/star/deployment/ExtensionManager.idl6
-rw-r--r--offapi/com/sun/star/deployment/ExtensionRemovedException.idl7
-rw-r--r--offapi/com/sun/star/deployment/InstallException.idl2
-rw-r--r--offapi/com/sun/star/deployment/InvalidRemovedParameterException.idl7
-rw-r--r--offapi/com/sun/star/deployment/LicenseException.idl8
-rw-r--r--offapi/com/sun/star/deployment/PackageInformationProvider.idl2
-rw-r--r--offapi/com/sun/star/deployment/PackageRegistryBackend.idl6
-rw-r--r--offapi/com/sun/star/deployment/PlatformException.idl6
-rw-r--r--offapi/com/sun/star/deployment/Prerequisites.idl9
-rw-r--r--offapi/com/sun/star/deployment/UpdateInformationEntry.idl4
-rw-r--r--offapi/com/sun/star/deployment/UpdateInformationProvider.idl4
-rw-r--r--offapi/com/sun/star/deployment/VersionException.idl4
-rw-r--r--offapi/com/sun/star/deployment/XExtensionManager.idl40
-rw-r--r--offapi/com/sun/star/deployment/XPackage.idl58
-rw-r--r--offapi/com/sun/star/deployment/XPackageInformationProvider.idl6
-rw-r--r--offapi/com/sun/star/deployment/XPackageManager.idl42
-rw-r--r--offapi/com/sun/star/deployment/XPackageManagerFactory.idl8
-rw-r--r--offapi/com/sun/star/deployment/XPackageRegistry.idl14
-rw-r--r--offapi/com/sun/star/deployment/XPackageTypeInfo.idl22
-rw-r--r--offapi/com/sun/star/deployment/XUpdateInformationProvider.idl14
-rw-r--r--offapi/com/sun/star/deployment/test/SmoketestCommandEnvironment.idl16
-rw-r--r--offapi/com/sun/star/deployment/thePackageManagerFactory.idl4
-rw-r--r--offapi/com/sun/star/deployment/ui/LicenseDialog.idl6
-rw-r--r--offapi/com/sun/star/deployment/ui/PackageManagerDialog.idl8
-rw-r--r--offapi/com/sun/star/deployment/ui/UpdateRequiredDialog.idl6
-rw-r--r--offapi/com/sun/star/document/AmbigousFilterRequest.idl2
-rw-r--r--offapi/com/sun/star/document/BrokenPackageRequest.idl2
-rw-r--r--offapi/com/sun/star/document/ChangedByOthersRequest.idl4
-rw-r--r--offapi/com/sun/star/document/CorruptedFilterConfigurationException.idl44
-rw-r--r--offapi/com/sun/star/document/DocumentEvent.idl8
-rw-r--r--offapi/com/sun/star/document/DocumentInfo.idl2
-rwxr-xr-xoffapi/com/sun/star/document/DocumentProperties.idl2
-rw-r--r--offapi/com/sun/star/document/DocumentRevisionListPersistence.idl2
-rw-r--r--offapi/com/sun/star/document/EventDescriptor.idl2
-rw-r--r--offapi/com/sun/star/document/EventObject.idl2
-rw-r--r--offapi/com/sun/star/document/Events.idl2
-rw-r--r--offapi/com/sun/star/document/ExportFilter.idl2
-rw-r--r--offapi/com/sun/star/document/ExtendedTypeDetection.idl2
-rw-r--r--offapi/com/sun/star/document/ExtendedTypeDetectionFactory.idl2
-rw-r--r--offapi/com/sun/star/document/FilterAdapter.idl12
-rw-r--r--offapi/com/sun/star/document/FilterFactory.idl2
-rw-r--r--offapi/com/sun/star/document/FilterOptionsRequest.idl4
-rw-r--r--offapi/com/sun/star/document/HeaderFooterSettings.idl4
-rw-r--r--offapi/com/sun/star/document/ImportFilter.idl2
-rw-r--r--offapi/com/sun/star/document/LinkTarget.idl68
-rw-r--r--offapi/com/sun/star/document/LinkTargets.idl52
-rw-r--r--offapi/com/sun/star/document/LinkUpdateModes.idl4
-rw-r--r--offapi/com/sun/star/document/LockFileIgnoreRequest.idl2
-rw-r--r--offapi/com/sun/star/document/LockedDocumentRequest.idl2
-rw-r--r--offapi/com/sun/star/document/LockedOnSavingRequest.idl2
-rw-r--r--offapi/com/sun/star/document/MacroExecMode.idl8
-rw-r--r--offapi/com/sun/star/document/MediaDescriptor.idl4
-rw-r--r--offapi/com/sun/star/document/NoSuchFilterRequest.idl2
-rw-r--r--offapi/com/sun/star/document/OOXMLDocumentPropertiesImporter.idl4
-rw-r--r--offapi/com/sun/star/document/OfficeDocument.idl2
-rw-r--r--offapi/com/sun/star/document/OleEmbeddedServerRegistration.idl58
-rw-r--r--offapi/com/sun/star/document/OwnLockOnDocumentRequest.idl2
-rw-r--r--offapi/com/sun/star/document/PDFDialog.idl44
-rw-r--r--offapi/com/sun/star/document/PrinterIndependentLayout.idl12
-rw-r--r--offapi/com/sun/star/document/RedlineDisplayType.idl10
-rw-r--r--offapi/com/sun/star/document/Settings.idl4
-rw-r--r--offapi/com/sun/star/document/StandaloneDocumentInfo.idl2
-rw-r--r--offapi/com/sun/star/document/TypeDetection.idl2
-rw-r--r--offapi/com/sun/star/document/UpdateDocMode.idl6
-rw-r--r--offapi/com/sun/star/document/XActionLockable.idl80
-rw-r--r--offapi/com/sun/star/document/XBinaryStreamResolver.idl54
-rw-r--r--offapi/com/sun/star/document/XDocumentEventBroadcaster.idl8
-rw-r--r--offapi/com/sun/star/document/XDocumentEventListener.idl4
-rw-r--r--offapi/com/sun/star/document/XDocumentInfo.idl2
-rw-r--r--offapi/com/sun/star/document/XDocumentInfoSupplier.idl2
-rw-r--r--offapi/com/sun/star/document/XDocumentInsertable.idl82
-rw-r--r--offapi/com/sun/star/document/XDocumentLanguages.idl4
-rw-r--r--offapi/com/sun/star/document/XDocumentPropertiesSupplier.idl2
-rw-r--r--offapi/com/sun/star/document/XDocumentRecovery.idl4
-rw-r--r--offapi/com/sun/star/document/XDocumentRevisionListPersistence.idl2
-rw-r--r--offapi/com/sun/star/document/XDocumentSubStorageSupplier.idl2
-rw-r--r--offapi/com/sun/star/document/XEmbeddedObjectResolver.idl36
-rw-r--r--offapi/com/sun/star/document/XEmbeddedObjectSupplier.idl60
-rw-r--r--offapi/com/sun/star/document/XEmbeddedObjectSupplier2.idl70
-rw-r--r--offapi/com/sun/star/document/XEmbeddedScripts.idl6
-rw-r--r--offapi/com/sun/star/document/XEventBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/document/XEventListener.idl2
-rw-r--r--offapi/com/sun/star/document/XEventsSupplier.idl2
-rw-r--r--offapi/com/sun/star/document/XExporter.idl2
-rw-r--r--offapi/com/sun/star/document/XExtendedFilterDetection.idl2
-rw-r--r--offapi/com/sun/star/document/XFilter.idl2
-rw-r--r--offapi/com/sun/star/document/XFilterAdapter.idl18
-rw-r--r--offapi/com/sun/star/document/XGraphicObjectResolver.idl36
-rw-r--r--offapi/com/sun/star/document/XImporter.idl2
-rw-r--r--offapi/com/sun/star/document/XInteractionFilterOptions.idl4
-rw-r--r--offapi/com/sun/star/document/XInteractionFilterSelect.idl2
-rw-r--r--offapi/com/sun/star/document/XLinkTargetSupplier.idl66
-rw-r--r--offapi/com/sun/star/document/XMLBasicExporter.idl14
-rw-r--r--offapi/com/sun/star/document/XMLBasicImporter.idl18
-rw-r--r--offapi/com/sun/star/document/XMLOasisBasicExporter.idl14
-rw-r--r--offapi/com/sun/star/document/XMLOasisBasicImporter.idl18
-rw-r--r--offapi/com/sun/star/document/XMimeTypeInfo.idl64
-rw-r--r--offapi/com/sun/star/document/XOOXMLDocumentPropertiesImporter.idl2
-rw-r--r--offapi/com/sun/star/document/XRedlinesSupplier.idl6
-rw-r--r--offapi/com/sun/star/document/XScriptInvocationContext.idl6
-rw-r--r--offapi/com/sun/star/document/XStandaloneDocumentInfo.idl2
-rw-r--r--offapi/com/sun/star/document/XStorageBasedDocument.idl2
-rw-r--r--offapi/com/sun/star/document/XStorageChangeListener.idl2
-rw-r--r--offapi/com/sun/star/document/XTypeDetection.idl2
-rw-r--r--offapi/com/sun/star/document/XViewDataSupplier.idl2
-rw-r--r--offapi/com/sun/star/drawing/AccessibleDrawDocumentView.idl20
-rw-r--r--offapi/com/sun/star/drawing/AccessibleGraphControl.idl10
-rw-r--r--offapi/com/sun/star/drawing/AccessibleGraphicShape.idl20
-rw-r--r--offapi/com/sun/star/drawing/AccessibleImageBullet.idl20
-rw-r--r--offapi/com/sun/star/drawing/AccessibleOLEShape.idl6
-rw-r--r--offapi/com/sun/star/drawing/AccessibleShape.idl28
-rw-r--r--offapi/com/sun/star/drawing/AccessibleSlideView.idl2
-rw-r--r--offapi/com/sun/star/drawing/AccessibleSlideViewObject.idl2
-rw-r--r--offapi/com/sun/star/drawing/Alignment.idl128
-rw-r--r--offapi/com/sun/star/drawing/AppletShape.idl22
-rw-r--r--offapi/com/sun/star/drawing/Arrangement.idl70
-rw-r--r--offapi/com/sun/star/drawing/Background.idl6
-rw-r--r--offapi/com/sun/star/drawing/BezierPoint.idl66
-rw-r--r--offapi/com/sun/star/drawing/BitmapMode.idl60
-rw-r--r--offapi/com/sun/star/drawing/BitmapTable.idl34
-rw-r--r--offapi/com/sun/star/drawing/BoundVolume.idl46
-rw-r--r--offapi/com/sun/star/drawing/CameraGeometry.idl44
-rw-r--r--offapi/com/sun/star/drawing/CaptionEscapeDirection.idl2
-rw-r--r--offapi/com/sun/star/drawing/CaptionShape.idl106
-rw-r--r--offapi/com/sun/star/drawing/CaptionType.idl4
-rw-r--r--offapi/com/sun/star/drawing/CircleKind.idl70
-rw-r--r--offapi/com/sun/star/drawing/ClosedBezierShape.idl102
-rw-r--r--offapi/com/sun/star/drawing/ColorMode.idl70
-rw-r--r--offapi/com/sun/star/drawing/ConnectionType.idl86
-rw-r--r--offapi/com/sun/star/drawing/ConnectorProperties.idl86
-rw-r--r--offapi/com/sun/star/drawing/ConnectorShape.idl154
-rw-r--r--offapi/com/sun/star/drawing/ConnectorType.idl70
-rw-r--r--offapi/com/sun/star/drawing/ControlShape.idl60
-rw-r--r--offapi/com/sun/star/drawing/CoordinateSequence.idl6
-rw-r--r--offapi/com/sun/star/drawing/CoordinateSequenceSequence.idl6
-rw-r--r--offapi/com/sun/star/drawing/CustomShape.idl102
-rw-r--r--offapi/com/sun/star/drawing/CustomShapeEngine.idl46
-rw-r--r--offapi/com/sun/star/drawing/DashStyle.idl70
-rw-r--r--offapi/com/sun/star/drawing/DashTable.idl34
-rw-r--r--offapi/com/sun/star/drawing/Defaults.idl6
-rw-r--r--offapi/com/sun/star/drawing/Direction3D.idl60
-rw-r--r--offapi/com/sun/star/drawing/DocumentSettings.idl6
-rw-r--r--offapi/com/sun/star/drawing/DoubleSequence.idl6
-rw-r--r--offapi/com/sun/star/drawing/DoubleSequenceSequence.idl6
-rw-r--r--offapi/com/sun/star/drawing/DrawPage.idl82
-rw-r--r--offapi/com/sun/star/drawing/DrawPages.idl82
-rw-r--r--offapi/com/sun/star/drawing/DrawViewMode.idl64
-rw-r--r--offapi/com/sun/star/drawing/DrawingDocument.idl2
-rw-r--r--offapi/com/sun/star/drawing/DrawingDocumentDrawView.idl150
-rw-r--r--offapi/com/sun/star/drawing/DrawingDocumentFactory.idl2
-rw-r--r--offapi/com/sun/star/drawing/EllipseShape.idl132
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeAdjustmentValue.idl26
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeExtrusion.idl28
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeGeometry.idl14
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeGluePointType.idl46
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeHandle.idl38
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeParameter.idl30
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeParameterPair.idl36
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeParameterType.idl38
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapePath.idl12
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeSegment.idl26
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeSegmentCommand.idl40
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeTextFrame.idl36
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeTextPath.idl6
-rw-r--r--offapi/com/sun/star/drawing/EnhancedCustomShapeTextPathMode.idl42
-rw-r--r--offapi/com/sun/star/drawing/EscapeDirection.idl82
-rw-r--r--offapi/com/sun/star/drawing/FillProperties.idl2
-rw-r--r--offapi/com/sun/star/drawing/FillStyle.idl88
-rw-r--r--offapi/com/sun/star/drawing/FlagSequence.idl6
-rw-r--r--offapi/com/sun/star/drawing/FlagSequenceSequence.idl6
-rw-r--r--offapi/com/sun/star/drawing/GenericDrawPage.idl252
-rw-r--r--offapi/com/sun/star/drawing/GenericDrawingDocument.idl2
-rw-r--r--offapi/com/sun/star/drawing/GluePoint.idl80
-rw-r--r--offapi/com/sun/star/drawing/GluePoint2.idl40
-rw-r--r--offapi/com/sun/star/drawing/GradientTable.idl34
-rw-r--r--offapi/com/sun/star/drawing/GraphicExportFilter.idl24
-rw-r--r--offapi/com/sun/star/drawing/GraphicFilterRequest.idl2
-rw-r--r--offapi/com/sun/star/drawing/GraphicObjectShape.idl86
-rw-r--r--offapi/com/sun/star/drawing/GroupShape.idl76
-rw-r--r--offapi/com/sun/star/drawing/Hatch.idl82
-rw-r--r--offapi/com/sun/star/drawing/HatchStyle.idl62
-rw-r--r--offapi/com/sun/star/drawing/HatchTable.idl34
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrix.idl78
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrix3.idl58
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrix4.idl72
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrixLine.idl70
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrixLine3.idl58
-rw-r--r--offapi/com/sun/star/drawing/HomogenMatrixLine4.idl66
-rw-r--r--offapi/com/sun/star/drawing/HorizontalDimensioning.idl72
-rw-r--r--offapi/com/sun/star/drawing/Layer.idl102
-rw-r--r--offapi/com/sun/star/drawing/LayerManager.idl84
-rw-r--r--offapi/com/sun/star/drawing/LayerType.idl70
-rw-r--r--offapi/com/sun/star/drawing/LineDash.idl90
-rw-r--r--offapi/com/sun/star/drawing/LineEndType.idl88
-rw-r--r--offapi/com/sun/star/drawing/LineJoint.idl58
-rw-r--r--offapi/com/sun/star/drawing/LineProperties.idl2
-rw-r--r--offapi/com/sun/star/drawing/LineShape.idl102
-rw-r--r--offapi/com/sun/star/drawing/LineStyle.idl68
-rw-r--r--offapi/com/sun/star/drawing/MarkerTable.idl34
-rw-r--r--offapi/com/sun/star/drawing/MasterPage.idl64
-rw-r--r--offapi/com/sun/star/drawing/MasterPages.idl52
-rw-r--r--offapi/com/sun/star/drawing/MeasureKind.idl60
-rw-r--r--offapi/com/sun/star/drawing/MeasureProperties.idl164
-rw-r--r--offapi/com/sun/star/drawing/MeasureShape.idl110
-rw-r--r--offapi/com/sun/star/drawing/MeasureTextHorzPos.idl80
-rw-r--r--offapi/com/sun/star/drawing/MeasureTextVertPos.idl88
-rw-r--r--offapi/com/sun/star/drawing/MirrorAxis.idl54
-rw-r--r--offapi/com/sun/star/drawing/NormalsKind.idl62
-rw-r--r--offapi/com/sun/star/drawing/OLE2Shape.idl18
-rw-r--r--offapi/com/sun/star/drawing/OpenBezierShape.idl110
-rw-r--r--offapi/com/sun/star/drawing/PageShape.idl50
-rw-r--r--offapi/com/sun/star/drawing/PluginShape.idl16
-rw-r--r--offapi/com/sun/star/drawing/PointSequence.idl6
-rw-r--r--offapi/com/sun/star/drawing/PointSequenceSequence.idl6
-rw-r--r--offapi/com/sun/star/drawing/PolyLineShape.idl108
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonBezierCoords.idl66
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonBezierDescriptor.idl72
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonBezierShape.idl120
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonDescriptor.idl70
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonShape.idl124
-rw-r--r--offapi/com/sun/star/drawing/PolyPolygonShape3D.idl68
-rw-r--r--offapi/com/sun/star/drawing/PolygonFlags.idl78
-rw-r--r--offapi/com/sun/star/drawing/PolygonKind.idl110
-rw-r--r--offapi/com/sun/star/drawing/Position3D.idl60
-rw-r--r--offapi/com/sun/star/drawing/ProjectionMode.idl58
-rw-r--r--offapi/com/sun/star/drawing/RectanglePoint.idl128
-rw-r--r--offapi/com/sun/star/drawing/RectangleShape.idl90
-rw-r--r--offapi/com/sun/star/drawing/RotationDescriptor.idl52
-rw-r--r--offapi/com/sun/star/drawing/ShadeMode.idl72
-rw-r--r--offapi/com/sun/star/drawing/ShadowProperties.idl80
-rw-r--r--offapi/com/sun/star/drawing/Shape.idl4
-rw-r--r--offapi/com/sun/star/drawing/ShapeCollection.idl6
-rw-r--r--offapi/com/sun/star/drawing/Shapes.idl50
-rw-r--r--offapi/com/sun/star/drawing/SlideRenderer.idl2
-rw-r--r--offapi/com/sun/star/drawing/SlideSorter.idl2
-rw-r--r--offapi/com/sun/star/drawing/SnapObjectType.idl68
-rw-r--r--offapi/com/sun/star/drawing/Text.idl54
-rw-r--r--offapi/com/sun/star/drawing/TextAdjust.idl88
-rw-r--r--offapi/com/sun/star/drawing/TextAnimationDirection.idl78
-rw-r--r--offapi/com/sun/star/drawing/TextAnimationKind.idl78
-rw-r--r--offapi/com/sun/star/drawing/TextFitToSizeType.idl62
-rw-r--r--offapi/com/sun/star/drawing/TextHorizontalAdjust.idl70
-rw-r--r--offapi/com/sun/star/drawing/TextProperties.idl386
-rw-r--r--offapi/com/sun/star/drawing/TextShape.idl100
-rw-r--r--offapi/com/sun/star/drawing/TextVerticalAdjust.idl66
-rw-r--r--offapi/com/sun/star/drawing/TextureKind.idl56
-rw-r--r--offapi/com/sun/star/drawing/TextureKind2.idl54
-rw-r--r--offapi/com/sun/star/drawing/TextureMode.idl62
-rw-r--r--offapi/com/sun/star/drawing/TextureProjectionMode.idl74
-rw-r--r--offapi/com/sun/star/drawing/TransparencyGradientTable.idl34
-rw-r--r--offapi/com/sun/star/drawing/VerticalDimensioning.idl70
-rw-r--r--offapi/com/sun/star/drawing/XConnectableShape.idl82
-rw-r--r--offapi/com/sun/star/drawing/XConnectorShape.idl100
-rw-r--r--offapi/com/sun/star/drawing/XControlShape.idl74
-rw-r--r--offapi/com/sun/star/drawing/XCustomShapeEngine.idl72
-rw-r--r--offapi/com/sun/star/drawing/XCustomShapeHandle.idl56
-rw-r--r--offapi/com/sun/star/drawing/XDrawPage.idl46
-rw-r--r--offapi/com/sun/star/drawing/XDrawPageDuplicator.idl64
-rw-r--r--offapi/com/sun/star/drawing/XDrawPageExpander.idl72
-rw-r--r--offapi/com/sun/star/drawing/XDrawPageSummarizer.idl70
-rw-r--r--offapi/com/sun/star/drawing/XDrawPageSupplier.idl64
-rw-r--r--offapi/com/sun/star/drawing/XDrawPages.idl70
-rw-r--r--offapi/com/sun/star/drawing/XDrawPagesSupplier.idl60
-rw-r--r--offapi/com/sun/star/drawing/XDrawSubController.idl54
-rw-r--r--offapi/com/sun/star/drawing/XDrawView.idl70
-rw-r--r--offapi/com/sun/star/drawing/XEnhancedCustomShapeDefaulter.idl54
-rw-r--r--offapi/com/sun/star/drawing/XGluePointsSupplier.idl54
-rw-r--r--offapi/com/sun/star/drawing/XLayer.idl46
-rw-r--r--offapi/com/sun/star/drawing/XLayerManager.idl118
-rw-r--r--offapi/com/sun/star/drawing/XLayerSupplier.idl66
-rw-r--r--offapi/com/sun/star/drawing/XMasterPageTarget.idl70
-rw-r--r--offapi/com/sun/star/drawing/XMasterPagesSupplier.idl62
-rw-r--r--offapi/com/sun/star/drawing/XPresenterHelper.idl4
-rw-r--r--offapi/com/sun/star/drawing/XSelectionFunction.idl90
-rw-r--r--offapi/com/sun/star/drawing/XShape.idl104
-rw-r--r--offapi/com/sun/star/drawing/XShapeAligner.idl72
-rw-r--r--offapi/com/sun/star/drawing/XShapeArranger.idl130
-rw-r--r--offapi/com/sun/star/drawing/XShapeBinder.idl78
-rw-r--r--offapi/com/sun/star/drawing/XShapeCombiner.idl84
-rw-r--r--offapi/com/sun/star/drawing/XShapeDescriptor.idl50
-rw-r--r--offapi/com/sun/star/drawing/XShapeGroup.idl78
-rw-r--r--offapi/com/sun/star/drawing/XShapeGrouper.idl82
-rw-r--r--offapi/com/sun/star/drawing/XShapeMirror.idl90
-rw-r--r--offapi/com/sun/star/drawing/XShapes.idl74
-rw-r--r--offapi/com/sun/star/drawing/XSlidePreviewCache.idl4
-rw-r--r--offapi/com/sun/star/drawing/XSlideRenderer.idl4
-rw-r--r--offapi/com/sun/star/drawing/XUniversalShapeDescriptor.idl56
-rw-r--r--offapi/com/sun/star/drawing/framework/AnchorBindingMode.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/BasicPaneFactory.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/BasicToolBarFactory.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/BasicViewFactory.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/Configuration.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/ConfigurationChangeEvent.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/ConfigurationController.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/ModuleController.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/ResourceActivationMode.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/ResourceId.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/TabBarButton.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfiguration.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationChangeListener.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationChangeRequest.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationController.idl12
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationControllerBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XConfigurationControllerRequestQueue.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XControllerManager.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XModuleController.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XPane.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XPane2.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XPaneBorderPainter.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XRelocatableResource.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XResource.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XResourceFactory.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XResourceFactoryManager.idl4
-rw-r--r--offapi/com/sun/star/drawing/framework/XResourceId.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XTabBar.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XToolBar.idl2
-rw-r--r--offapi/com/sun/star/drawing/framework/XView.idl2
-rw-r--r--offapi/com/sun/star/drawing/modules.idl2
-rw-r--r--offapi/com/sun/star/embed/Actions.idl8
-rw-r--r--offapi/com/sun/star/embed/Aspects.idl2
-rw-r--r--offapi/com/sun/star/embed/BaseStorage.idl6
-rw-r--r--offapi/com/sun/star/embed/DocumentCloser.idl6
-rw-r--r--offapi/com/sun/star/embed/ElementModes.idl2
-rw-r--r--offapi/com/sun/star/embed/EmbedMapUnits.idl2
-rw-r--r--offapi/com/sun/star/embed/EmbedMisc.idl2
-rw-r--r--offapi/com/sun/star/embed/EmbedStates.idl8
-rw-r--r--offapi/com/sun/star/embed/EmbedUpdateModes.idl2
-rw-r--r--offapi/com/sun/star/embed/EmbedVerbs.idl2
-rw-r--r--offapi/com/sun/star/embed/EmbeddedObjectDescriptor.idl2
-rw-r--r--offapi/com/sun/star/embed/EntryInitModes.idl2
-rw-r--r--offapi/com/sun/star/embed/FileSystemStorage.idl6
-rw-r--r--offapi/com/sun/star/embed/FileSystemStorageFactory.idl10
-rw-r--r--offapi/com/sun/star/embed/InsertedObjectInfo.idl40
-rw-r--r--offapi/com/sun/star/embed/InstanceLocker.idl8
-rw-r--r--offapi/com/sun/star/embed/InvalidStorageException.idl38
-rw-r--r--offapi/com/sun/star/embed/LinkageMisuseException.idl38
-rw-r--r--offapi/com/sun/star/embed/NeedsRunningStateException.idl38
-rw-r--r--offapi/com/sun/star/embed/NoVisualAreaSizeException.idl38
-rw-r--r--offapi/com/sun/star/embed/OLESimpleStorage.idl2
-rw-r--r--offapi/com/sun/star/embed/ObjectSaveVetoException.idl38
-rw-r--r--offapi/com/sun/star/embed/StateChangeInProgressException.idl36
-rw-r--r--offapi/com/sun/star/embed/Storage.idl24
-rw-r--r--offapi/com/sun/star/embed/StorageFactory.idl10
-rw-r--r--offapi/com/sun/star/embed/StorageFormats.idl2
-rw-r--r--offapi/com/sun/star/embed/StorageStream.idl24
-rw-r--r--offapi/com/sun/star/embed/StorageWrappedTargetException.idl38
-rw-r--r--offapi/com/sun/star/embed/UnreachableStateException.idl36
-rw-r--r--offapi/com/sun/star/embed/UseBackupException.idl36
-rw-r--r--offapi/com/sun/star/embed/VerbAttributes.idl2
-rw-r--r--offapi/com/sun/star/embed/VerbDescriptor.idl34
-rw-r--r--offapi/com/sun/star/embed/VisualRepresentation.idl38
-rw-r--r--offapi/com/sun/star/embed/WrongStateException.idl38
-rw-r--r--offapi/com/sun/star/embed/XActionsApproval.idl4
-rw-r--r--offapi/com/sun/star/embed/XClassifiedObject.idl8
-rw-r--r--offapi/com/sun/star/embed/XCommonEmbedPersist.idl2
-rw-r--r--offapi/com/sun/star/embed/XComponentSupplier.idl2
-rw-r--r--offapi/com/sun/star/embed/XEmbedObjectClipboardCreator.idl4
-rw-r--r--offapi/com/sun/star/embed/XEmbedObjectCreator.idl8
-rw-r--r--offapi/com/sun/star/embed/XEmbedObjectFactory.idl4
-rw-r--r--offapi/com/sun/star/embed/XEmbedPersist.idl8
-rw-r--r--offapi/com/sun/star/embed/XEmbeddedClient.idl4
-rw-r--r--offapi/com/sun/star/embed/XEmbeddedObject.idl8
-rw-r--r--offapi/com/sun/star/embed/XEncryptionProtectedSource.idl4
-rw-r--r--offapi/com/sun/star/embed/XExtendedStorageStream.idl10
-rw-r--r--offapi/com/sun/star/embed/XHatchWindow.idl2
-rw-r--r--offapi/com/sun/star/embed/XHatchWindowController.idl2
-rw-r--r--offapi/com/sun/star/embed/XHatchWindowFactory.idl28
-rw-r--r--offapi/com/sun/star/embed/XHierarchicalStorageAccess.idl14
-rw-r--r--offapi/com/sun/star/embed/XInplaceClient.idl14
-rw-r--r--offapi/com/sun/star/embed/XInplaceObject.idl2
-rw-r--r--offapi/com/sun/star/embed/XInsertObjectDialog.idl2
-rw-r--r--offapi/com/sun/star/embed/XLinkCreator.idl4
-rw-r--r--offapi/com/sun/star/embed/XLinkFactory.idl4
-rw-r--r--offapi/com/sun/star/embed/XLinkageSupport.idl4
-rw-r--r--offapi/com/sun/star/embed/XOLESimpleStorage.idl6
-rw-r--r--offapi/com/sun/star/embed/XOptimizedStorage.idl12
-rw-r--r--offapi/com/sun/star/embed/XPackageStructureCreator.idl2
-rw-r--r--offapi/com/sun/star/embed/XPersistanceHolder.idl2
-rw-r--r--offapi/com/sun/star/embed/XRelationshipAccess.idl6
-rw-r--r--offapi/com/sun/star/embed/XStateChangeBroadcaster.idl54
-rw-r--r--offapi/com/sun/star/embed/XStateChangeListener.idl52
-rw-r--r--offapi/com/sun/star/embed/XStorage.idl32
-rw-r--r--offapi/com/sun/star/embed/XStorageRawAccess.idl12
-rw-r--r--offapi/com/sun/star/embed/XTransactedObject.idl10
-rw-r--r--offapi/com/sun/star/embed/XTransactionBroadcaster.idl54
-rw-r--r--offapi/com/sun/star/embed/XTransactionListener.idl56
-rw-r--r--offapi/com/sun/star/embed/XTransferableSupplier.idl6
-rw-r--r--offapi/com/sun/star/embed/XVisualObject.idl2
-rw-r--r--offapi/com/sun/star/embed/XWindowSupplier.idl2
-rw-r--r--offapi/com/sun/star/form/DataAwareControlModel.idl122
-rw-r--r--offapi/com/sun/star/form/DataSelectionType.idl54
-rw-r--r--offapi/com/sun/star/form/DatabaseDeleteEvent.idl50
-rw-r--r--offapi/com/sun/star/form/DatabaseParameterEvent.idl62
-rw-r--r--offapi/com/sun/star/form/ErrorEvent.idl56
-rw-r--r--offapi/com/sun/star/form/FormButtonType.idl76
-rw-r--r--offapi/com/sun/star/form/FormComponent.idl114
-rw-r--r--offapi/com/sun/star/form/FormComponentType.idl142
-rw-r--r--offapi/com/sun/star/form/FormComponents.idl94
-rw-r--r--offapi/com/sun/star/form/FormControlModel.idl122
-rw-r--r--offapi/com/sun/star/form/FormController.idl120
-rw-r--r--offapi/com/sun/star/form/FormControllerDispatcher.idl2
-rw-r--r--offapi/com/sun/star/form/FormSubmitEncoding.idl64
-rw-r--r--offapi/com/sun/star/form/FormSubmitMethod.idl62
-rw-r--r--offapi/com/sun/star/form/Forms.idl4
-rw-r--r--offapi/com/sun/star/form/ListSourceType.idl92
-rw-r--r--offapi/com/sun/star/form/NavigationBarMode.idl68
-rw-r--r--offapi/com/sun/star/form/PropertyBrowserController.idl40
-rw-r--r--offapi/com/sun/star/form/TabulatorCycle.idl68
-rw-r--r--offapi/com/sun/star/form/XApproveActionBroadcaster.idl80
-rw-r--r--offapi/com/sun/star/form/XApproveActionListener.idl70
-rw-r--r--offapi/com/sun/star/form/XBoundComponent.idl64
-rw-r--r--offapi/com/sun/star/form/XBoundControl.idl68
-rw-r--r--offapi/com/sun/star/form/XChangeBroadcaster.idl78
-rw-r--r--offapi/com/sun/star/form/XChangeListener.idl70
-rw-r--r--offapi/com/sun/star/form/XConfirmDeleteBroadcaster.idl74
-rw-r--r--offapi/com/sun/star/form/XConfirmDeleteListener.idl66
-rw-r--r--offapi/com/sun/star/form/XDatabaseParameterBroadcaster.idl78
-rw-r--r--offapi/com/sun/star/form/XDatabaseParameterBroadcaster2.idl2
-rw-r--r--offapi/com/sun/star/form/XDatabaseParameterListener.idl68
-rw-r--r--offapi/com/sun/star/form/XDeleteListener.idl78
-rw-r--r--offapi/com/sun/star/form/XErrorBroadcaster.idl78
-rw-r--r--offapi/com/sun/star/form/XErrorListener.idl74
-rw-r--r--offapi/com/sun/star/form/XForm.idl52
-rw-r--r--offapi/com/sun/star/form/XFormComponent.idl54
-rw-r--r--offapi/com/sun/star/form/XFormController.idl76
-rw-r--r--offapi/com/sun/star/form/XFormControllerListener.idl84
-rw-r--r--offapi/com/sun/star/form/XFormsSupplier.idl72
-rw-r--r--offapi/com/sun/star/form/XFormsSupplier2.idl2
-rw-r--r--offapi/com/sun/star/form/XGrid.idl70
-rw-r--r--offapi/com/sun/star/form/XGridColumnFactory.idl86
-rw-r--r--offapi/com/sun/star/form/XGridControl.idl6
-rw-r--r--offapi/com/sun/star/form/XGridControlListener.idl6
-rw-r--r--offapi/com/sun/star/form/XGridFieldDataSupplier.idl74
-rw-r--r--offapi/com/sun/star/form/XGridPeer.idl80
-rw-r--r--offapi/com/sun/star/form/XImageProducerSupplier.idl68
-rw-r--r--offapi/com/sun/star/form/XInsertListener.idl78
-rw-r--r--offapi/com/sun/star/form/XLoadListener.idl100
-rw-r--r--offapi/com/sun/star/form/XLoadable.idl102
-rw-r--r--offapi/com/sun/star/form/XPositioningListener.idl70
-rw-r--r--offapi/com/sun/star/form/XReset.idl84
-rw-r--r--offapi/com/sun/star/form/XResetListener.idl84
-rw-r--r--offapi/com/sun/star/form/XRestoreListener.idl72
-rw-r--r--offapi/com/sun/star/form/XSubmit.idl102
-rw-r--r--offapi/com/sun/star/form/XSubmitListener.idl70
-rw-r--r--offapi/com/sun/star/form/XUpdateBroadcaster.idl76
-rw-r--r--offapi/com/sun/star/form/XUpdateListener.idl80
-rw-r--r--offapi/com/sun/star/form/binding/BindableControlModel.idl6
-rw-r--r--offapi/com/sun/star/form/binding/BindableDataAwareControlModel.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseCheckBox.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseComboBox.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseDateField.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseFormattedField.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseListBox.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseNumericField.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseRadioButton.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseTextField.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableDatabaseTimeField.idl2
-rw-r--r--offapi/com/sun/star/form/binding/BindableIntegerValueRange.idl2
-rw-r--r--offapi/com/sun/star/form/binding/IncompatibleTypesException.idl2
-rw-r--r--offapi/com/sun/star/form/binding/InvalidBindingStateException.idl2
-rw-r--r--offapi/com/sun/star/form/binding/ListEntryEvent.idl2
-rw-r--r--offapi/com/sun/star/form/binding/ListEntrySource.idl2
-rw-r--r--offapi/com/sun/star/form/binding/ValueBinding.idl2
-rw-r--r--offapi/com/sun/star/form/binding/XBindableValue.idl2
-rw-r--r--offapi/com/sun/star/form/binding/XListEntryListener.idl2
-rw-r--r--offapi/com/sun/star/form/binding/XListEntrySink.idl2
-rw-r--r--offapi/com/sun/star/form/binding/XListEntrySource.idl2
-rw-r--r--offapi/com/sun/star/form/binding/XValueBinding.idl2
-rw-r--r--offapi/com/sun/star/form/component/CheckBox.idl2
-rw-r--r--offapi/com/sun/star/form/component/ComboBox.idl72
-rw-r--r--offapi/com/sun/star/form/component/CommandButton.idl76
-rw-r--r--offapi/com/sun/star/form/component/CurrencyField.idl70
-rw-r--r--offapi/com/sun/star/form/component/DataForm.idl8
-rw-r--r--offapi/com/sun/star/form/component/DatabaseCheckBox.idl62
-rw-r--r--offapi/com/sun/star/form/component/DatabaseComboBox.idl86
-rw-r--r--offapi/com/sun/star/form/component/DatabaseCurrencyField.idl62
-rw-r--r--offapi/com/sun/star/form/component/DatabaseDateField.idl60
-rw-r--r--offapi/com/sun/star/form/component/DatabaseFormattedField.idl70
-rw-r--r--offapi/com/sun/star/form/component/DatabaseImageControl.idl84
-rw-r--r--offapi/com/sun/star/form/component/DatabaseListBox.idl88
-rw-r--r--offapi/com/sun/star/form/component/DatabaseNumericField.idl62
-rw-r--r--offapi/com/sun/star/form/component/DatabasePatternField.idl70
-rw-r--r--offapi/com/sun/star/form/component/DatabaseRadioButton.idl62
-rw-r--r--offapi/com/sun/star/form/component/DatabaseTextField.idl70
-rw-r--r--offapi/com/sun/star/form/component/DatabaseTimeField.idl62
-rw-r--r--offapi/com/sun/star/form/component/DateField.idl84
-rw-r--r--offapi/com/sun/star/form/component/FileControl.idl70
-rw-r--r--offapi/com/sun/star/form/component/FixedText.idl62
-rw-r--r--offapi/com/sun/star/form/component/Form.idl2
-rw-r--r--offapi/com/sun/star/form/component/FormattedField.idl70
-rw-r--r--offapi/com/sun/star/form/component/GridControl.idl194
-rw-r--r--offapi/com/sun/star/form/component/GroupBox.idl62
-rw-r--r--offapi/com/sun/star/form/component/HTMLForm.idl116
-rw-r--r--offapi/com/sun/star/form/component/HiddenControl.idl56
-rw-r--r--offapi/com/sun/star/form/component/ImageButton.idl106
-rw-r--r--offapi/com/sun/star/form/component/ListBox.idl84
-rw-r--r--offapi/com/sun/star/form/component/NavigationToolBar.idl24
-rw-r--r--offapi/com/sun/star/form/component/NumericField.idl82
-rw-r--r--offapi/com/sun/star/form/component/PatternField.idl78
-rw-r--r--offapi/com/sun/star/form/component/RadioButton.idl90
-rw-r--r--offapi/com/sun/star/form/component/RichTextControl.idl10
-rw-r--r--offapi/com/sun/star/form/component/ScrollBar.idl2
-rw-r--r--offapi/com/sun/star/form/component/SpinButton.idl2
-rw-r--r--offapi/com/sun/star/form/component/SubmitButton.idl2
-rw-r--r--offapi/com/sun/star/form/component/TextField.idl78
-rw-r--r--offapi/com/sun/star/form/component/TimeField.idl80
-rw-r--r--offapi/com/sun/star/form/control/CheckBox.idl46
-rw-r--r--offapi/com/sun/star/form/control/ComboBox.idl46
-rw-r--r--offapi/com/sun/star/form/control/CommandButton.idl44
-rw-r--r--offapi/com/sun/star/form/control/CurrencyField.idl46
-rw-r--r--offapi/com/sun/star/form/control/DateField.idl46
-rw-r--r--offapi/com/sun/star/form/control/FormattedField.idl46
-rw-r--r--offapi/com/sun/star/form/control/GridControl.idl54
-rw-r--r--offapi/com/sun/star/form/control/GroupBox.idl46
-rw-r--r--offapi/com/sun/star/form/control/ImageButton.idl44
-rw-r--r--offapi/com/sun/star/form/control/ImageControl.idl46
-rw-r--r--offapi/com/sun/star/form/control/InteractionGridControl.idl50
-rw-r--r--offapi/com/sun/star/form/control/ListBox.idl52
-rw-r--r--offapi/com/sun/star/form/control/NavigationToolBar.idl2
-rw-r--r--offapi/com/sun/star/form/control/NumericField.idl46
-rw-r--r--offapi/com/sun/star/form/control/PatternField.idl46
-rw-r--r--offapi/com/sun/star/form/control/RadioButton.idl46
-rw-r--r--offapi/com/sun/star/form/control/SubmitButton.idl2
-rw-r--r--offapi/com/sun/star/form/control/TextField.idl58
-rw-r--r--offapi/com/sun/star/form/control/TimeField.idl46
-rw-r--r--offapi/com/sun/star/form/inspection/ButtonNavigationHandler.idl2
-rw-r--r--offapi/com/sun/star/form/inspection/CellBindingPropertyHandler.idl2
-rw-r--r--offapi/com/sun/star/form/inspection/DefaultFormComponentInspectorModel.idl6
-rw-r--r--offapi/com/sun/star/form/inspection/EditPropertyHandler.idl2
-rw-r--r--offapi/com/sun/star/form/inspection/EventHandler.idl2
-rw-r--r--offapi/com/sun/star/form/inspection/FormComponentPropertyHandler.idl2
-rw-r--r--offapi/com/sun/star/form/inspection/SubmissionPropertyHandler.idl2
-rw-r--r--offapi/com/sun/star/form/inspection/XMLFormsPropertyHandler.idl2
-rw-r--r--offapi/com/sun/star/form/inspection/XSDValidationPropertyHandler.idl2
-rw-r--r--offapi/com/sun/star/form/modules.idl2
-rw-r--r--offapi/com/sun/star/form/runtime/FeatureState.idl6
-rw-r--r--offapi/com/sun/star/form/runtime/FilterEvent.idl4
-rw-r--r--offapi/com/sun/star/form/runtime/FormController.idl2
-rw-r--r--offapi/com/sun/star/form/runtime/FormFeature.idl8
-rw-r--r--offapi/com/sun/star/form/runtime/FormOperations.idl12
-rw-r--r--offapi/com/sun/star/form/runtime/XFeatureInvalidation.idl8
-rw-r--r--offapi/com/sun/star/form/runtime/XFilterController.idl2
-rw-r--r--offapi/com/sun/star/form/runtime/XFilterControllerListener.idl4
-rw-r--r--offapi/com/sun/star/form/runtime/XFormController.idl2
-rw-r--r--offapi/com/sun/star/form/runtime/XFormControllerContext.idl4
-rw-r--r--offapi/com/sun/star/form/runtime/XFormOperations.idl18
-rw-r--r--offapi/com/sun/star/form/submission/XSubmission.idl4
-rw-r--r--offapi/com/sun/star/form/submission/XSubmissionSupplier.idl2
-rw-r--r--offapi/com/sun/star/form/submission/XSubmissionVetoListener.idl4
-rw-r--r--offapi/com/sun/star/form/validation/ValidatableBindableControlModel.idl2
-rw-r--r--offapi/com/sun/star/form/validation/ValidatableControlModel.idl2
-rw-r--r--offapi/com/sun/star/form/validation/XFormComponentValidityListener.idl2
-rw-r--r--offapi/com/sun/star/form/validation/XValidatable.idl2
-rw-r--r--offapi/com/sun/star/form/validation/XValidatableFormComponent.idl2
-rw-r--r--offapi/com/sun/star/form/validation/XValidator.idl2
-rw-r--r--offapi/com/sun/star/form/validation/XValidityConstraintListener.idl2
-rw-r--r--offapi/com/sun/star/formula/AccessibleFormulaText.idl2
-rw-r--r--offapi/com/sun/star/formula/AccessibleFormulaView.idl2
-rw-r--r--offapi/com/sun/star/formula/FormulaProperties.idl380
-rw-r--r--offapi/com/sun/star/formula/SymbolDescriptor.idl34
-rw-r--r--offapi/com/sun/star/frame/BorderWidths.idl34
-rw-r--r--offapi/com/sun/star/frame/CommandGroup.idl54
-rw-r--r--offapi/com/sun/star/frame/Components.idl2
-rw-r--r--offapi/com/sun/star/frame/ContentHandler.idl2
-rw-r--r--offapi/com/sun/star/frame/ContentHandlerFactory.idl2
-rw-r--r--offapi/com/sun/star/frame/ControlCommand.idl46
-rw-r--r--offapi/com/sun/star/frame/ControlEvent.idl48
-rw-r--r--offapi/com/sun/star/frame/Controller.idl2
-rw-r--r--offapi/com/sun/star/frame/Desktop.idl2
-rw-r--r--offapi/com/sun/star/frame/DesktopTask.idl2
-rw-r--r--offapi/com/sun/star/frame/DesktopTasks.idl2
-rw-r--r--offapi/com/sun/star/frame/DispatchDescriptor.idl2
-rw-r--r--offapi/com/sun/star/frame/DispatchHelper.idl2
-rw-r--r--offapi/com/sun/star/frame/DispatchInformation.idl6
-rw-r--r--offapi/com/sun/star/frame/DispatchProvider.idl2
-rw-r--r--offapi/com/sun/star/frame/DispatchRecorder.idl2
-rw-r--r--offapi/com/sun/star/frame/DispatchRecorderSupplier.idl2
-rw-r--r--offapi/com/sun/star/frame/DispatchResultEvent.idl2
-rw-r--r--offapi/com/sun/star/frame/DispatchResultState.idl2
-rw-r--r--offapi/com/sun/star/frame/DispatchStatement.idl2
-rw-r--r--offapi/com/sun/star/frame/DocumentTemplates.idl2
-rw-r--r--offapi/com/sun/star/frame/DoubleInitializationException.idl46
-rw-r--r--offapi/com/sun/star/frame/FeatureStateEvent.idl2
-rw-r--r--offapi/com/sun/star/frame/Frame.idl12
-rw-r--r--offapi/com/sun/star/frame/FrameAction.idl2
-rw-r--r--offapi/com/sun/star/frame/FrameActionEvent.idl2
-rw-r--r--offapi/com/sun/star/frame/FrameControl.idl2
-rw-r--r--offapi/com/sun/star/frame/FrameLoader.idl8
-rw-r--r--offapi/com/sun/star/frame/FrameLoaderFactory.idl4
-rw-r--r--offapi/com/sun/star/frame/FrameSearchFlag.idl2
-rw-r--r--offapi/com/sun/star/frame/FramesContainer.idl2
-rw-r--r--offapi/com/sun/star/frame/GlobalEventBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/frame/IllegalArgumentIOException.idl46
-rw-r--r--offapi/com/sun/star/frame/LayoutManager.idl30
-rw-r--r--offapi/com/sun/star/frame/LayoutManagerEvents.idl6
-rw-r--r--offapi/com/sun/star/frame/MediaTypeDetectionHelper.idl2
-rw-r--r--offapi/com/sun/star/frame/ModuleManager.idl8
-rw-r--r--offapi/com/sun/star/frame/PopupMenuController.idl42
-rw-r--r--offapi/com/sun/star/frame/PopupMenuControllerFactory.idl20
-rw-r--r--offapi/com/sun/star/frame/ProtocolHandler.idl2
-rw-r--r--offapi/com/sun/star/frame/SessionManager.idl6
-rw-r--r--offapi/com/sun/star/frame/Settings.idl2
-rw-r--r--offapi/com/sun/star/frame/StatusbarController.idl60
-rw-r--r--offapi/com/sun/star/frame/StatusbarControllerFactory.idl36
-rw-r--r--offapi/com/sun/star/frame/SynchronousFrameLoader.idl4
-rw-r--r--offapi/com/sun/star/frame/Task.idl2
-rw-r--r--offapi/com/sun/star/frame/TemplateAccess.idl2
-rw-r--r--offapi/com/sun/star/frame/TerminationVetoException.idl2
-rw-r--r--offapi/com/sun/star/frame/TitleChangedEvent.idl2
-rw-r--r--offapi/com/sun/star/frame/ToolbarController.idl48
-rw-r--r--offapi/com/sun/star/frame/TransientDocumentsDocumentContentFactory.idl2
-rw-r--r--offapi/com/sun/star/frame/UnknownModuleException.idl4
-rw-r--r--offapi/com/sun/star/frame/WindowArrange.idl2
-rw-r--r--offapi/com/sun/star/frame/XBorderResizeListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XBrowseHistoryRegistry.idl2
-rw-r--r--offapi/com/sun/star/frame/XComponentLoader.idl2
-rw-r--r--offapi/com/sun/star/frame/XComponentRegistry.idl2
-rw-r--r--offapi/com/sun/star/frame/XConfigManager.idl2
-rw-r--r--offapi/com/sun/star/frame/XControlNotificationListener.idl48
-rw-r--r--offapi/com/sun/star/frame/XController.idl2
-rw-r--r--offapi/com/sun/star/frame/XController2.idl4
-rw-r--r--offapi/com/sun/star/frame/XControllerBorder.idl2
-rw-r--r--offapi/com/sun/star/frame/XDesktop.idl2
-rw-r--r--offapi/com/sun/star/frame/XDesktopTask.idl2
-rw-r--r--offapi/com/sun/star/frame/XDispatch.idl2
-rw-r--r--offapi/com/sun/star/frame/XDispatchHelper.idl2
-rw-r--r--offapi/com/sun/star/frame/XDispatchInformationProvider.idl14
-rw-r--r--offapi/com/sun/star/frame/XDispatchProvider.idl2
-rw-r--r--offapi/com/sun/star/frame/XDispatchProviderInterception.idl2
-rw-r--r--offapi/com/sun/star/frame/XDispatchProviderInterceptor.idl2
-rw-r--r--offapi/com/sun/star/frame/XDispatchRecorder.idl8
-rw-r--r--offapi/com/sun/star/frame/XDispatchRecorderSupplier.idl2
-rw-r--r--offapi/com/sun/star/frame/XDispatchResultListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XDocumentTemplates.idl2
-rw-r--r--offapi/com/sun/star/frame/XExtendedFilterDetection.idl2
-rw-r--r--offapi/com/sun/star/frame/XFilterDetect.idl2
-rw-r--r--offapi/com/sun/star/frame/XFrame.idl4
-rw-r--r--offapi/com/sun/star/frame/XFrameActionListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XFrameLoader.idl2
-rw-r--r--offapi/com/sun/star/frame/XFrameLoaderQuery.idl2
-rw-r--r--offapi/com/sun/star/frame/XFrameSetModel.idl2
-rw-r--r--offapi/com/sun/star/frame/XFrames.idl2
-rw-r--r--offapi/com/sun/star/frame/XFramesSupplier.idl4
-rw-r--r--offapi/com/sun/star/frame/XInplaceLayout.idl16
-rw-r--r--offapi/com/sun/star/frame/XInterceptorInfo.idl2
-rw-r--r--offapi/com/sun/star/frame/XLayoutManager.idl236
-rw-r--r--offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl6
-rw-r--r--offapi/com/sun/star/frame/XLayoutManagerListener.idl22
-rw-r--r--offapi/com/sun/star/frame/XLoadEventListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XLoadable.idl2
-rw-r--r--offapi/com/sun/star/frame/XMenuBarAcceptor.idl12
-rw-r--r--offapi/com/sun/star/frame/XMenuBarMergingAcceptor.idl20
-rw-r--r--offapi/com/sun/star/frame/XModel.idl2
-rw-r--r--offapi/com/sun/star/frame/XModel2.idl30
-rw-r--r--offapi/com/sun/star/frame/XModule.idl4
-rw-r--r--offapi/com/sun/star/frame/XModuleManager.idl20
-rw-r--r--offapi/com/sun/star/frame/XNotifyingDispatch.idl2
-rw-r--r--offapi/com/sun/star/frame/XPopupMenuController.idl30
-rw-r--r--offapi/com/sun/star/frame/XRecordableDispatch.idl2
-rw-r--r--offapi/com/sun/star/frame/XSessionManagerClient.idl6
-rw-r--r--offapi/com/sun/star/frame/XSessionManagerListener.idl14
-rw-r--r--offapi/com/sun/star/frame/XSessionManagerListener2.idl4
-rw-r--r--offapi/com/sun/star/frame/XStatusListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XStatusbarController.idl56
-rw-r--r--offapi/com/sun/star/frame/XStorable.idl2
-rw-r--r--offapi/com/sun/star/frame/XStorable2.idl4
-rw-r--r--offapi/com/sun/star/frame/XSubToolbarController.idl18
-rw-r--r--offapi/com/sun/star/frame/XSynchronousDispatch.idl2
-rw-r--r--offapi/com/sun/star/frame/XSynchronousFrameLoader.idl2
-rw-r--r--offapi/com/sun/star/frame/XTask.idl2
-rw-r--r--offapi/com/sun/star/frame/XTasksSupplier.idl2
-rw-r--r--offapi/com/sun/star/frame/XTerminateListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XTerminateListener2.idl2
-rw-r--r--offapi/com/sun/star/frame/XTitle.idl2
-rw-r--r--offapi/com/sun/star/frame/XTitleChangeBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/frame/XTitleChangeListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XToolbarController.idl14
-rw-r--r--offapi/com/sun/star/frame/XToolbarControllerListener.idl6
-rw-r--r--offapi/com/sun/star/frame/XTransientDocumentsDocumentContentFactory.idl2
-rw-r--r--offapi/com/sun/star/frame/XUIControllerRegistration.idl26
-rw-r--r--offapi/com/sun/star/frame/XUntitledNumbers.idl20
-rw-r--r--offapi/com/sun/star/frame/XUrlList.idl2
-rw-r--r--offapi/com/sun/star/frame/XWindowArranger.idl2
-rw-r--r--offapi/com/sun/star/frame/status/ClipboardFormats.idl44
-rw-r--r--offapi/com/sun/star/frame/status/FontHeight.idl58
-rw-r--r--offapi/com/sun/star/frame/status/ItemState.idl38
-rw-r--r--offapi/com/sun/star/frame/status/ItemStatus.idl40
-rw-r--r--offapi/com/sun/star/frame/status/LeftRightMargin.idl44
-rw-r--r--offapi/com/sun/star/frame/status/Template.idl42
-rw-r--r--offapi/com/sun/star/frame/status/UpperLowerMargin.idl40
-rw-r--r--offapi/com/sun/star/frame/status/UpperLowerMarginScale.idl50
-rw-r--r--offapi/com/sun/star/frame/status/Verb.idl52
-rw-r--r--offapi/com/sun/star/frame/status/Visibility.idl34
-rw-r--r--offapi/com/sun/star/gallery/GalleryItem.idl20
-rw-r--r--offapi/com/sun/star/gallery/GalleryItemType.idl2
-rw-r--r--offapi/com/sun/star/gallery/GalleryTheme.idl46
-rw-r--r--offapi/com/sun/star/gallery/GalleryThemeProvider.idl50
-rw-r--r--offapi/com/sun/star/gallery/XGalleryItem.idl4
-rw-r--r--offapi/com/sun/star/gallery/XGalleryTheme.idl52
-rw-r--r--offapi/com/sun/star/gallery/XGalleryThemeProvider.idl6
-rw-r--r--offapi/com/sun/star/geometry/AffineMatrix2D.idl4
-rw-r--r--offapi/com/sun/star/geometry/AffineMatrix3D.idl4
-rw-r--r--offapi/com/sun/star/geometry/EllipticalArc.idl10
-rw-r--r--offapi/com/sun/star/geometry/IntegerBezierSegment2D.idl2
-rw-r--r--offapi/com/sun/star/geometry/IntegerPoint2D.idl2
-rw-r--r--offapi/com/sun/star/geometry/IntegerRectangle2D.idl6
-rw-r--r--offapi/com/sun/star/geometry/IntegerSize2D.idl2
-rw-r--r--offapi/com/sun/star/geometry/Matrix2D.idl4
-rw-r--r--offapi/com/sun/star/geometry/RealBezierSegment2D.idl2
-rw-r--r--offapi/com/sun/star/geometry/RealPoint2D.idl2
-rw-r--r--offapi/com/sun/star/geometry/RealRectangle2D.idl2
-rw-r--r--offapi/com/sun/star/geometry/RealRectangle3D.idl2
-rw-r--r--offapi/com/sun/star/geometry/RealSize2D.idl2
-rw-r--r--offapi/com/sun/star/geometry/XMapping2D.idl12
-rwxr-xr-xoffapi/com/sun/star/graphic/Graphic.idl8
-rw-r--r--offapi/com/sun/star/graphic/GraphicColorMode.idl6
-rwxr-xr-xoffapi/com/sun/star/graphic/GraphicDescriptor.idl40
-rw-r--r--offapi/com/sun/star/graphic/GraphicObject.idl10
-rwxr-xr-xoffapi/com/sun/star/graphic/GraphicProvider.idl8
-rwxr-xr-xoffapi/com/sun/star/graphic/GraphicRendererVCL.idl16
-rwxr-xr-xoffapi/com/sun/star/graphic/GraphicType.idl2
-rwxr-xr-xoffapi/com/sun/star/graphic/MediaProperties.idl36
-rwxr-xr-xoffapi/com/sun/star/graphic/XGraphic.idl14
-rw-r--r--offapi/com/sun/star/graphic/XGraphicObject.idl12
-rwxr-xr-xoffapi/com/sun/star/graphic/XGraphicProvider.idl38
-rwxr-xr-xoffapi/com/sun/star/graphic/XGraphicRenderer.idl10
-rw-r--r--offapi/com/sun/star/graphic/XGraphicTransformer.idl6
-rw-r--r--offapi/com/sun/star/graphic/XPrimitive2D.idl10
-rw-r--r--offapi/com/sun/star/graphic/XPrimitive3D.idl4
-rw-r--r--offapi/com/sun/star/graphic/XPrimitiveFactory2D.idl8
-rw-r--r--offapi/com/sun/star/i18n/AmPmValue.idl6
-rw-r--r--offapi/com/sun/star/i18n/Boundary.idl4
-rw-r--r--offapi/com/sun/star/i18n/BreakIterator.idl2
-rw-r--r--offapi/com/sun/star/i18n/BreakType.idl8
-rw-r--r--offapi/com/sun/star/i18n/CTLScriptType.idl4
-rw-r--r--offapi/com/sun/star/i18n/Calendar.idl2
-rw-r--r--offapi/com/sun/star/i18n/CalendarDisplayCode.idl4
-rw-r--r--offapi/com/sun/star/i18n/CalendarDisplayIndex.idl12
-rw-r--r--offapi/com/sun/star/i18n/CalendarFieldIndex.idl2
-rw-r--r--offapi/com/sun/star/i18n/CalendarItem.idl2
-rw-r--r--offapi/com/sun/star/i18n/ChapterCollator.idl2
-rw-r--r--offapi/com/sun/star/i18n/CharType.idl4
-rw-r--r--offapi/com/sun/star/i18n/CharacterClassification.idl2
-rw-r--r--offapi/com/sun/star/i18n/CharacterIteratorMode.idl8
-rw-r--r--offapi/com/sun/star/i18n/Collator.idl2
-rw-r--r--offapi/com/sun/star/i18n/CollatorOptions.idl2
-rw-r--r--offapi/com/sun/star/i18n/Currency.idl4
-rw-r--r--offapi/com/sun/star/i18n/Currency2.idl4
-rw-r--r--offapi/com/sun/star/i18n/DirectionProperty.idl2
-rw-r--r--offapi/com/sun/star/i18n/ForbiddenCharacters.idl2
-rw-r--r--offapi/com/sun/star/i18n/FormatElement.idl4
-rw-r--r--offapi/com/sun/star/i18n/Implementation.idl2
-rw-r--r--offapi/com/sun/star/i18n/IndexEntrySupplier.idl2
-rw-r--r--offapi/com/sun/star/i18n/InputSequenceCheckMode.idl2
-rw-r--r--offapi/com/sun/star/i18n/InputSequenceChecker.idl2
-rw-r--r--offapi/com/sun/star/i18n/KCharacterType.idl20
-rw-r--r--offapi/com/sun/star/i18n/KNumberFormatType.idl2
-rw-r--r--offapi/com/sun/star/i18n/KNumberFormatUsage.idl2
-rw-r--r--offapi/com/sun/star/i18n/KParseTokens.idl8
-rw-r--r--offapi/com/sun/star/i18n/KParseType.idl2
-rw-r--r--offapi/com/sun/star/i18n/LanguageCountryInfo.idl2
-rw-r--r--offapi/com/sun/star/i18n/LineBreakHyphenationOptions.idl4
-rw-r--r--offapi/com/sun/star/i18n/LineBreakResults.idl2
-rw-r--r--offapi/com/sun/star/i18n/LineBreakUserOptions.idl2
-rw-r--r--offapi/com/sun/star/i18n/LocaleCalendar.idl2
-rw-r--r--offapi/com/sun/star/i18n/LocaleData.idl2
-rw-r--r--offapi/com/sun/star/i18n/LocaleDataItem.idl2
-rw-r--r--offapi/com/sun/star/i18n/LocaleItem.idl38
-rw-r--r--offapi/com/sun/star/i18n/Months.idl28
-rw-r--r--offapi/com/sun/star/i18n/MultipleCharsOutputException.idl2
-rw-r--r--offapi/com/sun/star/i18n/NativeNumberMode.idl4
-rw-r--r--offapi/com/sun/star/i18n/NativeNumberSupplier.idl2
-rw-r--r--offapi/com/sun/star/i18n/NativeNumberXmlAttributes.idl8
-rw-r--r--offapi/com/sun/star/i18n/NumberFormatCode.idl2
-rw-r--r--offapi/com/sun/star/i18n/NumberFormatIndex.idl134
-rw-r--r--offapi/com/sun/star/i18n/NumberFormatMapper.idl2
-rw-r--r--offapi/com/sun/star/i18n/OrdinalSuffix.idl2
-rw-r--r--offapi/com/sun/star/i18n/ParseResult.idl2
-rw-r--r--offapi/com/sun/star/i18n/ScriptDirection.idl4
-rw-r--r--offapi/com/sun/star/i18n/ScriptType.idl2
-rw-r--r--offapi/com/sun/star/i18n/TextConversion.idl4
-rw-r--r--offapi/com/sun/star/i18n/TextConversionOption.idl10
-rw-r--r--offapi/com/sun/star/i18n/TextConversionResult.idl8
-rw-r--r--offapi/com/sun/star/i18n/TextConversionType.idl12
-rw-r--r--offapi/com/sun/star/i18n/Transliteration.idl2
-rw-r--r--offapi/com/sun/star/i18n/TransliterationModules.idl2
-rw-r--r--offapi/com/sun/star/i18n/TransliterationModulesExtra.idl32
-rw-r--r--offapi/com/sun/star/i18n/TransliterationModulesNew.idl2
-rw-r--r--offapi/com/sun/star/i18n/TransliterationType.idl2
-rw-r--r--offapi/com/sun/star/i18n/UnicodeScript.idl2
-rw-r--r--offapi/com/sun/star/i18n/UnicodeType.idl2
-rw-r--r--offapi/com/sun/star/i18n/Weekdays.idl16
-rw-r--r--offapi/com/sun/star/i18n/WordType.idl2
-rw-r--r--offapi/com/sun/star/i18n/XBreakIterator.idl22
-rw-r--r--offapi/com/sun/star/i18n/XCalendar.idl6
-rw-r--r--offapi/com/sun/star/i18n/XCharacterClassification.idl4
-rw-r--r--offapi/com/sun/star/i18n/XCollator.idl12
-rw-r--r--offapi/com/sun/star/i18n/XExtendedCalendar.idl4
-rw-r--r--offapi/com/sun/star/i18n/XExtendedIndexEntrySupplier.idl16
-rw-r--r--offapi/com/sun/star/i18n/XExtendedInputSequenceChecker.idl8
-rw-r--r--offapi/com/sun/star/i18n/XExtendedTextConversion.idl16
-rw-r--r--offapi/com/sun/star/i18n/XExtendedTransliteration.idl2
-rw-r--r--offapi/com/sun/star/i18n/XForbiddenCharacters.idl2
-rw-r--r--offapi/com/sun/star/i18n/XIndexEntrySupplier.idl4
-rw-r--r--offapi/com/sun/star/i18n/XInputSequenceChecker.idl4
-rw-r--r--offapi/com/sun/star/i18n/XLocaleData.idl2
-rw-r--r--offapi/com/sun/star/i18n/XLocaleData2.idl2
-rw-r--r--offapi/com/sun/star/i18n/XNativeNumberSupplier.idl8
-rw-r--r--offapi/com/sun/star/i18n/XNumberFormatCode.idl6
-rw-r--r--offapi/com/sun/star/i18n/XOrdinalSuffix.idl2
-rw-r--r--offapi/com/sun/star/i18n/XScriptTypeDetector.idl4
-rw-r--r--offapi/com/sun/star/i18n/XTextConversion.idl18
-rw-r--r--offapi/com/sun/star/i18n/XTransliteration.idl20
-rw-r--r--offapi/com/sun/star/i18n/reservedWords.idl2
-rw-r--r--offapi/com/sun/star/image/ImageMap.idl44
-rw-r--r--offapi/com/sun/star/image/ImageMapCircleObject.idl46
-rw-r--r--offapi/com/sun/star/image/ImageMapObject.idl46
-rw-r--r--offapi/com/sun/star/image/ImageMapPolygonObject.idl46
-rw-r--r--offapi/com/sun/star/image/ImageMapRectangleObject.idl46
-rw-r--r--offapi/com/sun/star/inspection/DefaultHelpProvider.idl4
-rw-r--r--offapi/com/sun/star/inspection/GenericPropertyHandler.idl2
-rw-r--r--offapi/com/sun/star/inspection/InteractiveSelectionResult.idl2
-rw-r--r--offapi/com/sun/star/inspection/LineDescriptor.idl4
-rw-r--r--offapi/com/sun/star/inspection/ObjectInspector.idl2
-rw-r--r--offapi/com/sun/star/inspection/ObjectInspectorModel.idl2
-rw-r--r--offapi/com/sun/star/inspection/PropertyCategoryDescriptor.idl2
-rw-r--r--offapi/com/sun/star/inspection/PropertyControlType.idl2
-rw-r--r--offapi/com/sun/star/inspection/PropertyLineElement.idl2
-rw-r--r--offapi/com/sun/star/inspection/XHyperlinkControl.idl2
-rw-r--r--offapi/com/sun/star/inspection/XNumericControl.idl2
-rw-r--r--offapi/com/sun/star/inspection/XObjectInspector.idl2
-rw-r--r--offapi/com/sun/star/inspection/XObjectInspectorModel.idl8
-rw-r--r--offapi/com/sun/star/inspection/XObjectInspectorUI.idl6
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControl.idl6
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControlContext.idl2
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControlFactory.idl4
-rw-r--r--offapi/com/sun/star/inspection/XPropertyControlObserver.idl6
-rw-r--r--offapi/com/sun/star/inspection/XPropertyHandler.idl14
-rw-r--r--offapi/com/sun/star/inspection/XStringListControl.idl2
-rw-r--r--offapi/com/sun/star/inspection/XStringRepresentation.idl6
-rw-r--r--offapi/com/sun/star/installation/InstallationCheck.idl52
-rw-r--r--offapi/com/sun/star/installation/InstallationCheckService.idl8
-rw-r--r--offapi/com/sun/star/installation/InternetSettings.idl48
-rw-r--r--offapi/com/sun/star/installation/ProtDlgRes.idl64
-rw-r--r--offapi/com/sun/star/installation/ProtocolHandlerCheck.idl48
-rw-r--r--offapi/com/sun/star/installation/ProtocolHandlerCheckService.idl6
-rw-r--r--offapi/com/sun/star/installation/XInstallationCheck.idl102
-rw-r--r--offapi/com/sun/star/installation/XProtocolHandlerCheck.idl88
-rw-r--r--offapi/com/sun/star/installation/protocols.idl92
-rw-r--r--offapi/com/sun/star/ldap/LdapConnectionException.idl4
-rw-r--r--offapi/com/sun/star/ldap/LdapGenericException.idl12
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionDictionary.idl8
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionDictionaryList.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionDictionaryType.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionDirection.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/ConversionPropertyType.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/Dictionary.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryEvent.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryEventFlags.idl16
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryList.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryListEvent.idl8
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryListEventFlags.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/DictionaryType.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/HangulHanjaConversionDictionary.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/Hyphenator.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/LanguageGuessing.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/LinguProperties.idl58
-rw-r--r--offapi/com/sun/star/linguistic2/LinguServiceEvent.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/LinguServiceEventFlags.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/LinguServiceManager.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/Proofreader.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/ProofreadingIterator.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/ProofreadingResult.idl10
-rw-r--r--offapi/com/sun/star/linguistic2/SingleProofreadingError.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/SpellChecker.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/SpellFailure.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/Thesaurus.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XAvailableLocales.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/XConversionDictionary.idl44
-rw-r--r--offapi/com/sun/star/linguistic2/XConversionDictionaryList.idl30
-rw-r--r--offapi/com/sun/star/linguistic2/XConversionPropertyType.idl22
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionary.idl26
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionary1.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryEntry.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryEventListener.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryList.idl16
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryListEventListener.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XHyphenatedWord.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XHyphenator.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XLanguageGuessing.idl36
-rw-r--r--offapi/com/sun/star/linguistic2/XLinguServiceEventBroadcaster.idl12
-rw-r--r--offapi/com/sun/star/linguistic2/XLinguServiceEventListener.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XLinguServiceManager.idl40
-rw-r--r--offapi/com/sun/star/linguistic2/XMeaning.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/XPossibleHyphens.idl10
-rw-r--r--offapi/com/sun/star/linguistic2/XProofreader.idl14
-rw-r--r--offapi/com/sun/star/linguistic2/XProofreadingIterator.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/XSearchableDictionary.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XSearchableDictionaryList.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XSetSpellAlternatives.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XSpellAlternatives.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/XSpellChecker.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/XSpellChecker1.idl10
-rw-r--r--offapi/com/sun/star/linguistic2/XSupportedLanguages.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/XSupportedLocales.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XThesaurus.idl6
-rw-r--r--offapi/com/sun/star/logging/ConsoleHandler.idl8
-rw-r--r--offapi/com/sun/star/logging/CsvLogFormatter.idl8
-rw-r--r--offapi/com/sun/star/logging/DocumentIOLogRing.idl8
-rw-r--r--offapi/com/sun/star/logging/FileHandler.idl8
-rw-r--r--offapi/com/sun/star/logging/LogLevel.idl6
-rw-r--r--offapi/com/sun/star/logging/LogRecord.idl8
-rw-r--r--offapi/com/sun/star/logging/LoggerPool.idl4
-rw-r--r--offapi/com/sun/star/logging/PlainTextFormatter.idl6
-rw-r--r--offapi/com/sun/star/logging/SimpleLogRing.idl8
-rw-r--r--offapi/com/sun/star/logging/XConsoleHandler.idl4
-rw-r--r--offapi/com/sun/star/logging/XCsvLogFormatter.idl18
-rw-r--r--offapi/com/sun/star/logging/XLogFormatter.idl10
-rw-r--r--offapi/com/sun/star/logging/XLogHandler.idl8
-rw-r--r--offapi/com/sun/star/logging/XLogger.idl10
-rw-r--r--offapi/com/sun/star/logging/XLoggerPool.idl8
-rw-r--r--offapi/com/sun/star/logging/XSimpleLogRing.idl12
-rw-r--r--offapi/com/sun/star/mail/MailAttachment.idl26
-rw-r--r--offapi/com/sun/star/mail/MailException.idl10
-rw-r--r--offapi/com/sun/star/mail/MailMessage.idl46
-rw-r--r--offapi/com/sun/star/mail/MailServer.idl20
-rw-r--r--offapi/com/sun/star/mail/MailServiceProvider.idl10
-rw-r--r--offapi/com/sun/star/mail/MailServiceType.idl10
-rw-r--r--offapi/com/sun/star/mail/NoMailServiceProviderException.idl18
-rw-r--r--offapi/com/sun/star/mail/NoMailTransportProviderException.idl18
-rw-r--r--offapi/com/sun/star/mail/SendMailMessageFailedException.idl20
-rw-r--r--offapi/com/sun/star/mail/XAuthenticator.idl28
-rw-r--r--offapi/com/sun/star/mail/XConnectionListener.idl20
-rw-r--r--offapi/com/sun/star/mail/XMailMessage.idl82
-rw-r--r--offapi/com/sun/star/mail/XMailServer.idl162
-rw-r--r--offapi/com/sun/star/mail/XMailService.idl122
-rw-r--r--offapi/com/sun/star/mail/XMailServiceProvider.idl18
-rw-r--r--offapi/com/sun/star/mail/XSmtpService.idl40
-rw-r--r--offapi/com/sun/star/media/Manager.idl6
-rw-r--r--offapi/com/sun/star/media/XFrameGrabber.idl6
-rw-r--r--offapi/com/sun/star/media/XManager.idl4
-rw-r--r--offapi/com/sun/star/media/XPlayer.idl44
-rw-r--r--offapi/com/sun/star/media/XPlayerWindow.idl8
-rw-r--r--offapi/com/sun/star/media/ZoomLevel.idl2
-rw-r--r--offapi/com/sun/star/modules.idl4
-rw-r--r--offapi/com/sun/star/mozilla/MenuMultipleChange.idl118
-rw-r--r--offapi/com/sun/star/mozilla/MenuProxy.idl62
-rw-r--r--offapi/com/sun/star/mozilla/MenuProxyListener.idl60
-rw-r--r--offapi/com/sun/star/mozilla/MenuSingleChange.idl70
-rw-r--r--offapi/com/sun/star/mozilla/MozillaBootstrap.idl64
-rw-r--r--offapi/com/sun/star/mozilla/MozillaProductType.idl48
-rw-r--r--offapi/com/sun/star/mozilla/XCloseSessionListener.idl58
-rw-r--r--offapi/com/sun/star/mozilla/XCodeProxy.idl50
-rw-r--r--offapi/com/sun/star/mozilla/XMenuProxy.idl92
-rw-r--r--offapi/com/sun/star/mozilla/XMenuProxyListener.idl98
-rw-r--r--offapi/com/sun/star/mozilla/XMozillaBootstrap.idl56
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstance.idl32
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstanceNotifySink.idl58
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstancePeer.idl218
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstanceSyncPeer.idl62
-rw-r--r--offapi/com/sun/star/mozilla/XPluginWindowPeer.idl54
-rw-r--r--offapi/com/sun/star/mozilla/XProfileDiscover.idl80
-rw-r--r--offapi/com/sun/star/mozilla/XProfileManager.idl68
-rw-r--r--offapi/com/sun/star/mozilla/XProxyRunner.idl54
-rw-r--r--offapi/com/sun/star/mozilla/XRemoteServiceManagerProvider.idl8
-rw-r--r--offapi/com/sun/star/office/XAnnotation.idl6
-rw-r--r--offapi/com/sun/star/office/XAnnotationAccess.idl10
-rw-r--r--offapi/com/sun/star/office/XAnnotationEnumeration.idl80
-rw-r--r--offapi/com/sun/star/oooimprovement/Core.idl6
-rw-r--r--offapi/com/sun/star/oooimprovement/CoreController.idl6
-rw-r--r--offapi/com/sun/star/oooimprovement/XCore.idl12
-rw-r--r--offapi/com/sun/star/oooimprovement/XCoreController.idl10
-rw-r--r--offapi/com/sun/star/packages/EncryptionNotAllowedException.idl46
-rw-r--r--offapi/com/sun/star/packages/NoEncryptionException.idl44
-rw-r--r--offapi/com/sun/star/packages/NoRawFormatException.idl44
-rw-r--r--offapi/com/sun/star/packages/Package.idl44
-rw-r--r--offapi/com/sun/star/packages/PackageFolder.idl44
-rw-r--r--offapi/com/sun/star/packages/PackageFolderEnumeration.idl26
-rw-r--r--offapi/com/sun/star/packages/PackageStream.idl32
-rw-r--r--offapi/com/sun/star/packages/WrongPasswordException.idl44
-rw-r--r--offapi/com/sun/star/packages/XDataSinkEncrSupport.idl124
-rw-r--r--offapi/com/sun/star/packages/manifest/XManifestReader.idl30
-rw-r--r--offapi/com/sun/star/packages/manifest/XManifestWriter.idl26
-rw-r--r--offapi/com/sun/star/packages/zip/XZipFileAccess.idl58
-rw-r--r--offapi/com/sun/star/packages/zip/ZipConstants.idl34
-rw-r--r--offapi/com/sun/star/packages/zip/ZipEntry.idl66
-rw-r--r--offapi/com/sun/star/packages/zip/ZipException.idl54
-rw-r--r--offapi/com/sun/star/packages/zip/ZipFileAccess.idl64
-rwxr-xr-xoffapi/com/sun/star/packages/zip/ZipIOException.idl38
-rw-r--r--offapi/com/sun/star/plugin/PluginDescription.idl42
-rw-r--r--offapi/com/sun/star/plugin/PluginException.idl50
-rw-r--r--offapi/com/sun/star/plugin/PluginManager.idl46
-rw-r--r--offapi/com/sun/star/plugin/PluginMode.idl34
-rw-r--r--offapi/com/sun/star/plugin/PluginVariable.idl42
-rw-r--r--offapi/com/sun/star/plugin/XPlugin.idl74
-rw-r--r--offapi/com/sun/star/plugin/XPluginContext.idl174
-rw-r--r--offapi/com/sun/star/plugin/XPluginManager.idl140
-rw-r--r--offapi/com/sun/star/presentation/AnimationEffect.idl886
-rw-r--r--offapi/com/sun/star/presentation/AnimationSpeed.idl56
-rw-r--r--offapi/com/sun/star/presentation/ChartShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/ClickAction.idl152
-rw-r--r--offapi/com/sun/star/presentation/CustomPresentation.idl68
-rw-r--r--offapi/com/sun/star/presentation/CustomPresentationAccess.idl76
-rw-r--r--offapi/com/sun/star/presentation/DateTimeShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/DocumentSettings.idl4
-rw-r--r--offapi/com/sun/star/presentation/DrawPage.idl148
-rw-r--r--offapi/com/sun/star/presentation/EffectCommands.idl24
-rw-r--r--offapi/com/sun/star/presentation/EffectNodeType.idl22
-rw-r--r--offapi/com/sun/star/presentation/EffectPresetClass.idl22
-rw-r--r--offapi/com/sun/star/presentation/FadeEffect.idl322
-rw-r--r--offapi/com/sun/star/presentation/FooterShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/GraphicObjectShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/HandoutShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/HandoutView.idl46
-rw-r--r--offapi/com/sun/star/presentation/HeaderShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/NotesShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/NotesView.idl46
-rw-r--r--offapi/com/sun/star/presentation/OLE2Shape.idl60
-rw-r--r--offapi/com/sun/star/presentation/OutlineView.idl102
-rw-r--r--offapi/com/sun/star/presentation/OutlinerShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/PageShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/ParagraphTarget.idl22
-rw-r--r--offapi/com/sun/star/presentation/Presentation.idl180
-rw-r--r--offapi/com/sun/star/presentation/Presentation2.idl48
-rw-r--r--offapi/com/sun/star/presentation/PresentationDocument.idl2
-rw-r--r--offapi/com/sun/star/presentation/PresentationRange.idl54
-rw-r--r--offapi/com/sun/star/presentation/PresentationView.idl110
-rw-r--r--offapi/com/sun/star/presentation/PreviewView.idl112
-rw-r--r--offapi/com/sun/star/presentation/Shape.idl210
-rw-r--r--offapi/com/sun/star/presentation/ShapeAnimationSubType.idl22
-rw-r--r--offapi/com/sun/star/presentation/SlideNumberShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/SlidesView.idl102
-rw-r--r--offapi/com/sun/star/presentation/SubtitleShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/TextAnimationType.idl22
-rw-r--r--offapi/com/sun/star/presentation/TitleTextShape.idl60
-rw-r--r--offapi/com/sun/star/presentation/XCustomPresentationSupplier.idl72
-rw-r--r--offapi/com/sun/star/presentation/XHandoutMasterSupplier.idl56
-rw-r--r--offapi/com/sun/star/presentation/XPresentation.idl72
-rw-r--r--offapi/com/sun/star/presentation/XPresentation2.idl68
-rw-r--r--offapi/com/sun/star/presentation/XPresentationPage.idl56
-rw-r--r--offapi/com/sun/star/presentation/XPresentationSupplier.idl62
-rw-r--r--offapi/com/sun/star/presentation/XShapeEventListener.idl24
-rw-r--r--offapi/com/sun/star/presentation/XSlideShow.idl78
-rw-r--r--offapi/com/sun/star/presentation/XSlideShowController.idl176
-rw-r--r--offapi/com/sun/star/presentation/XSlideShowListener.idl10
-rw-r--r--offapi/com/sun/star/presentation/XSlideShowView.idl60
-rw-r--r--offapi/com/sun/star/presentation/XTransition.idl10
-rw-r--r--offapi/com/sun/star/presentation/XTransitionFactory.idl18
-rw-r--r--offapi/com/sun/star/presentation/textfield/DateTime.idl2
-rw-r--r--offapi/com/sun/star/presentation/textfield/Footer.idl2
-rw-r--r--offapi/com/sun/star/presentation/textfield/Header.idl2
-rw-r--r--offapi/com/sun/star/rdf/BlankNode.idl2
-rw-r--r--offapi/com/sun/star/rdf/FileFormat.idl2
-rw-r--r--offapi/com/sun/star/rdf/Literal.idl2
-rw-r--r--offapi/com/sun/star/rdf/ParseException.idl2
-rw-r--r--offapi/com/sun/star/rdf/QueryException.idl2
-rw-r--r--offapi/com/sun/star/rdf/Repository.idl2
-rw-r--r--offapi/com/sun/star/rdf/RepositoryException.idl2
-rw-r--r--offapi/com/sun/star/rdf/Statement.idl2
-rw-r--r--offapi/com/sun/star/rdf/URI.idl2
-rw-r--r--offapi/com/sun/star/rdf/URIs.idl2
-rw-r--r--offapi/com/sun/star/rdf/XBlankNode.idl2
-rw-r--r--offapi/com/sun/star/rdf/XDocumentMetadataAccess.idl4
-rw-r--r--offapi/com/sun/star/rdf/XDocumentRepository.idl2
-rw-r--r--offapi/com/sun/star/rdf/XLiteral.idl2
-rw-r--r--offapi/com/sun/star/rdf/XMetadatable.idl2
-rw-r--r--offapi/com/sun/star/rdf/XNamedGraph.idl2
-rw-r--r--offapi/com/sun/star/rdf/XNode.idl2
-rw-r--r--offapi/com/sun/star/rdf/XQuerySelectResult.idl4
-rw-r--r--offapi/com/sun/star/rdf/XReifiedStatement.idl2
-rw-r--r--offapi/com/sun/star/rdf/XRepository.idl2
-rw-r--r--offapi/com/sun/star/rdf/XRepositorySupplier.idl2
-rw-r--r--offapi/com/sun/star/rdf/XResource.idl2
-rw-r--r--offapi/com/sun/star/rdf/XURI.idl2
-rw-r--r--offapi/com/sun/star/rendering/AnimationAttributes.idl18
-rw-r--r--offapi/com/sun/star/rendering/AnimationRepeat.idl6
-rwxr-xr-xoffapi/com/sun/star/rendering/BlendMode.idl2
-rw-r--r--offapi/com/sun/star/rendering/CanvasFactory.idl10
-rw-r--r--offapi/com/sun/star/rendering/Caret.idl10
-rw-r--r--offapi/com/sun/star/rendering/ColorComponentTag.idl4
-rw-r--r--offapi/com/sun/star/rendering/ColorProfile.idl2
-rw-r--r--offapi/com/sun/star/rendering/ColorSpaceType.idl8
-rw-r--r--offapi/com/sun/star/rendering/CompositeOperation.idl12
-rw-r--r--offapi/com/sun/star/rendering/EmphasisMark.idl2
-rw-r--r--offapi/com/sun/star/rendering/FillRule.idl2
-rw-r--r--offapi/com/sun/star/rendering/FloatingPointBitmapFormat.idl4
-rw-r--r--offapi/com/sun/star/rendering/FloatingPointBitmapLayout.idl18
-rw-r--r--offapi/com/sun/star/rendering/FontInfo.idl22
-rw-r--r--offapi/com/sun/star/rendering/FontMetrics.idl18
-rw-r--r--offapi/com/sun/star/rendering/FontRequest.idl16
-rw-r--r--offapi/com/sun/star/rendering/IntegerBitmapLayout.idl12
-rw-r--r--offapi/com/sun/star/rendering/InterpolationMode.idl4
-rw-r--r--offapi/com/sun/star/rendering/Panose.idl24
-rw-r--r--offapi/com/sun/star/rendering/PanoseArmStyle.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseContrast.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseFamilyTypes.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseLetterForm.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseMidline.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseProportion.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseSerifStyle.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseStrokeVariation.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseWeight.idl2
-rw-r--r--offapi/com/sun/star/rendering/PanoseXHeight.idl2
-rw-r--r--offapi/com/sun/star/rendering/PathCapType.idl4
-rw-r--r--offapi/com/sun/star/rendering/PathJoinType.idl2
-rw-r--r--offapi/com/sun/star/rendering/RenderState.idl10
-rw-r--r--offapi/com/sun/star/rendering/RenderingIntent.idl16
-rw-r--r--offapi/com/sun/star/rendering/RepaintResult.idl4
-rw-r--r--offapi/com/sun/star/rendering/StringContext.idl8
-rw-r--r--offapi/com/sun/star/rendering/StrokeAttributes.idl20
-rw-r--r--offapi/com/sun/star/rendering/TextDirection.idl2
-rw-r--r--offapi/com/sun/star/rendering/TextHit.idl8
-rw-r--r--offapi/com/sun/star/rendering/Texture.idl20
-rw-r--r--offapi/com/sun/star/rendering/TexturingMode.idl2
-rw-r--r--offapi/com/sun/star/rendering/ViewState.idl8
-rw-r--r--offapi/com/sun/star/rendering/VolatileContentDestroyedException.idl22
-rw-r--r--offapi/com/sun/star/rendering/XAnimatedSprite.idl34
-rw-r--r--offapi/com/sun/star/rendering/XAnimation.idl18
-rw-r--r--offapi/com/sun/star/rendering/XBezierPolyPolygon2D.idl28
-rw-r--r--offapi/com/sun/star/rendering/XBitmap.idl8
-rw-r--r--offapi/com/sun/star/rendering/XBitmapCanvas.idl18
-rw-r--r--offapi/com/sun/star/rendering/XBitmapPalette.idl16
-rw-r--r--offapi/com/sun/star/rendering/XBufferController.idl22
-rw-r--r--offapi/com/sun/star/rendering/XCachedPrimitive.idl10
-rw-r--r--offapi/com/sun/star/rendering/XCanvas.idl172
-rw-r--r--offapi/com/sun/star/rendering/XCanvasFont.idl24
-rw-r--r--offapi/com/sun/star/rendering/XColorSpace.idl14
-rw-r--r--offapi/com/sun/star/rendering/XCustomSprite.idl8
-rw-r--r--offapi/com/sun/star/rendering/XGraphicDevice.idl52
-rw-r--r--offapi/com/sun/star/rendering/XHalfFloatBitmap.idl14
-rw-r--r--offapi/com/sun/star/rendering/XHalfFloatReadOnlyBitmap.idl16
-rw-r--r--offapi/com/sun/star/rendering/XIeeeDoubleBitmap.idl18
-rw-r--r--offapi/com/sun/star/rendering/XIeeeDoubleReadOnlyBitmap.idl16
-rw-r--r--offapi/com/sun/star/rendering/XIeeeFloatBitmap.idl16
-rw-r--r--offapi/com/sun/star/rendering/XIeeeFloatReadOnlyBitmap.idl16
-rw-r--r--offapi/com/sun/star/rendering/XIntegerBitmap.idl18
-rw-r--r--offapi/com/sun/star/rendering/XIntegerBitmapColorSpace.idl8
-rw-r--r--offapi/com/sun/star/rendering/XIntegerReadOnlyBitmap.idl18
-rw-r--r--offapi/com/sun/star/rendering/XLinePolyPolygon2D.idl24
-rw-r--r--offapi/com/sun/star/rendering/XParametricPolyPolygon2D.idl34
-rw-r--r--offapi/com/sun/star/rendering/XPolyPolygon2D.idl36
-rw-r--r--offapi/com/sun/star/rendering/XSimpleCanvas.idl128
-rw-r--r--offapi/com/sun/star/rendering/XSprite.idl28
-rw-r--r--offapi/com/sun/star/rendering/XSpriteCanvas.idl30
-rw-r--r--offapi/com/sun/star/rendering/XTextLayout.idl52
-rw-r--r--offapi/com/sun/star/rendering/XVolatileBitmap.idl10
-rw-r--r--offapi/com/sun/star/report/Calculation.idl50
-rw-r--r--offapi/com/sun/star/report/ForceNewPage.idl48
-rw-r--r--offapi/com/sun/star/report/GroupKeepTogether.idl48
-rw-r--r--offapi/com/sun/star/report/GroupOn.idl52
-rw-r--r--offapi/com/sun/star/report/KeepTogether.idl48
-rw-r--r--offapi/com/sun/star/report/ReportPrintOption.idl50
-rw-r--r--offapi/com/sun/star/report/SectionPageBreak.idl40
-rw-r--r--offapi/com/sun/star/report/XFixedLine.idl96
-rw-r--r--offapi/com/sun/star/report/XFixedText.idl44
-rw-r--r--offapi/com/sun/star/report/XFormatCondition.idl36
-rw-r--r--offapi/com/sun/star/report/XFormattedField.idl46
-rw-r--r--offapi/com/sun/star/report/XFunction.idl34
-rw-r--r--offapi/com/sun/star/report/XFunctions.idl28
-rw-r--r--offapi/com/sun/star/report/XFunctionsSupplier.idl22
-rw-r--r--offapi/com/sun/star/report/XGroup.idl46
-rw-r--r--offapi/com/sun/star/report/XGroups.idl28
-rw-r--r--offapi/com/sun/star/report/XImageControl.idl54
-rw-r--r--offapi/com/sun/star/report/XReportComponent.idl102
-rw-r--r--offapi/com/sun/star/report/XReportControlFormat.idl52
-rw-r--r--offapi/com/sun/star/report/XReportControlModel.idl72
-rw-r--r--offapi/com/sun/star/report/XReportDefinition.idl88
-rw-r--r--offapi/com/sun/star/report/XReportEngine.idl16
-rw-r--r--offapi/com/sun/star/report/XSection.idl96
-rw-r--r--offapi/com/sun/star/report/XShape.idl48
-rw-r--r--offapi/com/sun/star/report/inspection/DataProviderHandler.idl2
-rw-r--r--offapi/com/sun/star/report/inspection/DefaultComponentInspectorModel.idl6
-rw-r--r--offapi/com/sun/star/report/inspection/ReportComponentHandler.idl2
-rw-r--r--offapi/com/sun/star/report/meta/XFormulaParser.idl2
-rw-r--r--offapi/com/sun/star/report/meta/XFunctionCategory.idl8
-rw-r--r--offapi/com/sun/star/report/meta/XFunctionDescription.idl4
-rw-r--r--offapi/com/sun/star/report/meta/XFunctionManager.idl10
-rw-r--r--offapi/com/sun/star/report/modules.idl2
-rw-r--r--offapi/com/sun/star/resource/MissingResourceException.idl46
-rw-r--r--offapi/com/sun/star/resource/OfficeResourceLoader.idl4
-rw-r--r--offapi/com/sun/star/resource/StringResource.idl12
-rw-r--r--offapi/com/sun/star/resource/StringResourceWithLocation.idl16
-rw-r--r--offapi/com/sun/star/resource/StringResourceWithStorage.idl14
-rw-r--r--offapi/com/sun/star/resource/XLocale.idl346
-rw-r--r--offapi/com/sun/star/resource/XResourceBundle.idl92
-rw-r--r--offapi/com/sun/star/resource/XResourceBundleLoader.idl104
-rw-r--r--offapi/com/sun/star/resource/XStringResourceManager.idl78
-rw-r--r--offapi/com/sun/star/resource/XStringResourcePersistence.idl66
-rw-r--r--offapi/com/sun/star/resource/XStringResourceResolver.idl46
-rw-r--r--offapi/com/sun/star/resource/XStringResourceSupplier.idl48
-rw-r--r--offapi/com/sun/star/resource/XStringResourceWithLocation.idl30
-rw-r--r--offapi/com/sun/star/resource/XStringResourceWithStorage.idl28
-rw-r--r--offapi/com/sun/star/scanner/ScanError.idl18
-rw-r--r--offapi/com/sun/star/scanner/ScannerContext.idl6
-rw-r--r--offapi/com/sun/star/scanner/ScannerException.idl6
-rw-r--r--offapi/com/sun/star/scanner/ScannerManager.idl6
-rw-r--r--offapi/com/sun/star/scanner/XScannerManager.idl6
-rw-r--r--offapi/com/sun/star/script/DocumentDialogLibraryContainer.idl6
-rw-r--r--offapi/com/sun/star/script/DocumentScriptLibraryContainer.idl6
-rw-r--r--offapi/com/sun/star/script/LibraryNotLoadedException.idl6
-rw-r--r--offapi/com/sun/star/script/ModuleInfo.idl2
-rw-r--r--offapi/com/sun/star/script/ModuleSizeExceededRequest.idl2
-rw-r--r--offapi/com/sun/star/script/ModuleType.idl2
-rw-r--r--offapi/com/sun/star/script/XLibraryContainer.idl138
-rw-r--r--offapi/com/sun/star/script/XLibraryContainer2.idl80
-rw-r--r--offapi/com/sun/star/script/XLibraryContainer3.idl57
-rw-r--r--offapi/com/sun/star/script/XLibraryContainerExport.idl68
-rw-r--r--offapi/com/sun/star/script/XLibraryContainerPassword.idl108
-rw-r--r--offapi/com/sun/star/script/XPersistentLibraryContainer.idl8
-rw-r--r--offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl4
-rwxr-xr-xoffapi/com/sun/star/script/browse/BrowseNode.idl2
-rwxr-xr-xoffapi/com/sun/star/script/browse/BrowseNodeFactory.idl6
-rwxr-xr-xoffapi/com/sun/star/script/browse/BrowseNodeFactoryViewTypes.idl4
-rwxr-xr-xoffapi/com/sun/star/script/browse/BrowseNodeTypes.idl6
-rwxr-xr-xoffapi/com/sun/star/script/browse/XBrowseNode.idl20
-rw-r--r--offapi/com/sun/star/script/browse/XBrowseNodeFactory.idl4
-rwxr-xr-xoffapi/com/sun/star/script/provider/LanguageScriptProvider.idl2
-rwxr-xr-xoffapi/com/sun/star/script/provider/MasterScriptProvider.idl4
-rwxr-xr-xoffapi/com/sun/star/script/provider/MasterScriptProviderFactory.idl6
-rw-r--r--offapi/com/sun/star/script/provider/ScriptErrorRaisedException.idl2
-rw-r--r--offapi/com/sun/star/script/provider/ScriptExceptionRaisedException.idl2
-rw-r--r--offapi/com/sun/star/script/provider/ScriptFrameworkErrorException.idl2
-rw-r--r--offapi/com/sun/star/script/provider/ScriptFrameworkErrorType.idl2
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptProvider.idl2
-rw-r--r--offapi/com/sun/star/script/provider/ScriptProviderForBasic.idl4
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptProviderForBeanShell.idl2
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptProviderForJava.idl2
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptProviderForJavaScript.idl2
-rwxr-xr-xoffapi/com/sun/star/script/provider/ScriptURIHelper.idl8
-rw-r--r--offapi/com/sun/star/script/provider/XScript.idl28
-rw-r--r--offapi/com/sun/star/script/provider/XScriptContext.idl24
-rw-r--r--offapi/com/sun/star/script/provider/XScriptProvider.idl8
-rw-r--r--offapi/com/sun/star/script/provider/XScriptProviderFactory.idl6
-rw-r--r--offapi/com/sun/star/script/provider/XScriptProviderSupplier.idl4
-rw-r--r--offapi/com/sun/star/script/provider/XScriptURIHelper.idl8
-rwxr-xr-xoffapi/com/sun/star/script/vba/VBAEventId.idl6
-rwxr-xr-xoffapi/com/sun/star/script/vba/VBAEventProcessor.idl2
-rwxr-xr-xoffapi/com/sun/star/script/vba/VBASpreadsheetEventProcessor.idl2
-rwxr-xr-xoffapi/com/sun/star/script/vba/VBATextEventProcessor.idl2
-rw-r--r--offapi/com/sun/star/script/vba/XVBACompatibility.idl10
-rwxr-xr-xoffapi/com/sun/star/script/vba/XVBAEventProcessor.idl10
-rw-r--r--offapi/com/sun/star/script/vba/XVBAModuleInfo.idl26
-rw-r--r--offapi/com/sun/star/sdb/BooleanComparisonMode.idl6
-rw-r--r--offapi/com/sun/star/sdb/CallableStatement.idl58
-rw-r--r--offapi/com/sun/star/sdb/Column.idl58
-rw-r--r--offapi/com/sun/star/sdb/ColumnDescriptorControl.idl46
-rw-r--r--offapi/com/sun/star/sdb/ColumnDescriptorControlModel.idl82
-rw-r--r--offapi/com/sun/star/sdb/ColumnSettings.idl114
-rw-r--r--offapi/com/sun/star/sdb/CommandType.idl54
-rw-r--r--offapi/com/sun/star/sdb/Connection.idl92
-rw-r--r--offapi/com/sun/star/sdb/ContentLoader.idl40
-rw-r--r--offapi/com/sun/star/sdb/DataAccessDescriptor.idl12
-rw-r--r--offapi/com/sun/star/sdb/DataAccessDescriptorFactory.idl6
-rw-r--r--offapi/com/sun/star/sdb/DataColumn.idl78
-rw-r--r--offapi/com/sun/star/sdb/DataSettings.idl88
-rw-r--r--offapi/com/sun/star/sdb/DataSource.idl186
-rw-r--r--offapi/com/sun/star/sdb/DataSourceBrowser.idl52
-rw-r--r--offapi/com/sun/star/sdb/DatabaseAccess.idl128
-rw-r--r--offapi/com/sun/star/sdb/DatabaseAccessConnection.idl102
-rw-r--r--offapi/com/sun/star/sdb/DatabaseAccessContext.idl86
-rw-r--r--offapi/com/sun/star/sdb/DatabaseAccessDataSource.idl8
-rw-r--r--offapi/com/sun/star/sdb/DatabaseContext.idl94
-rw-r--r--offapi/com/sun/star/sdb/DatabaseDocument.idl76
-rw-r--r--offapi/com/sun/star/sdb/DatabaseEnvironment.idl78
-rw-r--r--offapi/com/sun/star/sdb/DatabaseInteractionHandler.idl24
-rw-r--r--offapi/com/sun/star/sdb/DatabaseRegistrationEvent.idl6
-rw-r--r--offapi/com/sun/star/sdb/DatasourceAdministrationDialog.idl64
-rw-r--r--offapi/com/sun/star/sdb/DefinitionContainer.idl4
-rw-r--r--offapi/com/sun/star/sdb/DefinitionContent.idl6
-rw-r--r--offapi/com/sun/star/sdb/Document.idl10
-rw-r--r--offapi/com/sun/star/sdb/DocumentContainer.idl12
-rw-r--r--offapi/com/sun/star/sdb/DocumentDataSource.idl46
-rw-r--r--offapi/com/sun/star/sdb/DocumentDefinition.idl2
-rw-r--r--offapi/com/sun/star/sdb/DocumentSaveRequest.idl58
-rw-r--r--offapi/com/sun/star/sdb/ErrorCondition.idl2
-rw-r--r--offapi/com/sun/star/sdb/ErrorMessageDialog.idl72
-rw-r--r--offapi/com/sun/star/sdb/Forms.idl4
-rw-r--r--offapi/com/sun/star/sdb/InteractionHandler.idl24
-rw-r--r--offapi/com/sun/star/sdb/OfficeDatabaseDocument.idl46
-rw-r--r--offapi/com/sun/star/sdb/OrderColumn.idl32
-rw-r--r--offapi/com/sun/star/sdb/ParametersRequest.idl66
-rw-r--r--offapi/com/sun/star/sdb/PreparedStatement.idl60
-rw-r--r--offapi/com/sun/star/sdb/Query.idl98
-rw-r--r--offapi/com/sun/star/sdb/QueryDefinition.idl86
-rw-r--r--offapi/com/sun/star/sdb/QueryDescriptor.idl112
-rw-r--r--offapi/com/sun/star/sdb/QueryDesign.idl30
-rw-r--r--offapi/com/sun/star/sdb/RelationDesign.idl30
-rw-r--r--offapi/com/sun/star/sdb/Reports.idl4
-rw-r--r--offapi/com/sun/star/sdb/ResultColumn.idl132
-rw-r--r--offapi/com/sun/star/sdb/ResultSet.idl60
-rw-r--r--offapi/com/sun/star/sdb/RowChangeAction.idl50
-rw-r--r--offapi/com/sun/star/sdb/RowChangeEvent.idl52
-rw-r--r--offapi/com/sun/star/sdb/RowSet.idl2
-rw-r--r--offapi/com/sun/star/sdb/RowSetVetoException.idl42
-rw-r--r--offapi/com/sun/star/sdb/RowsChangeEvent.idl40
-rw-r--r--offapi/com/sun/star/sdb/SQLContext.idl48
-rw-r--r--offapi/com/sun/star/sdb/SQLErrorEvent.idl48
-rw-r--r--offapi/com/sun/star/sdb/SQLFilterOperator.idl48
-rw-r--r--offapi/com/sun/star/sdb/SQLQueryComposer.idl72
-rw-r--r--offapi/com/sun/star/sdb/SingleSelectQueryAnalyzer.idl66
-rw-r--r--offapi/com/sun/star/sdb/SingleSelectQueryComposer.idl52
-rw-r--r--offapi/com/sun/star/sdb/Table.idl64
-rw-r--r--offapi/com/sun/star/sdb/TableDescriptor.idl58
-rw-r--r--offapi/com/sun/star/sdb/TableDesign.idl34
-rw-r--r--offapi/com/sun/star/sdb/XAlterQuery.idl56
-rw-r--r--offapi/com/sun/star/sdb/XBookmarksSupplier.idl70
-rw-r--r--offapi/com/sun/star/sdb/XColumn.idl338
-rw-r--r--offapi/com/sun/star/sdb/XColumnUpdate.idl236
-rw-r--r--offapi/com/sun/star/sdb/XCommandPreparation.idl66
-rw-r--r--offapi/com/sun/star/sdb/XCompletedConnection.idl70
-rw-r--r--offapi/com/sun/star/sdb/XCompletedExecution.idl58
-rw-r--r--offapi/com/sun/star/sdb/XDataAccessDescriptorFactory.idl8
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseAccess.idl90
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseAccessListener.idl48
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseEnvironment.idl86
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseRegistrations.idl2
-rw-r--r--offapi/com/sun/star/sdb/XDatabaseRegistrationsListener.idl2
-rw-r--r--offapi/com/sun/star/sdb/XDocumentDataSource.idl42
-rw-r--r--offapi/com/sun/star/sdb/XFormDocumentsSupplier.idl54
-rw-r--r--offapi/com/sun/star/sdb/XInteractionDocumentSave.idl54
-rw-r--r--offapi/com/sun/star/sdb/XInteractionSupplyParameters.idl52
-rw-r--r--offapi/com/sun/star/sdb/XOfficeDatabaseDocument.idl36
-rw-r--r--offapi/com/sun/star/sdb/XParametersSupplier.idl56
-rw-r--r--offapi/com/sun/star/sdb/XQueriesSupplier.idl54
-rw-r--r--offapi/com/sun/star/sdb/XQueryDefinitionsSupplier.idl54
-rw-r--r--offapi/com/sun/star/sdb/XReportDocumentsSupplier.idl54
-rw-r--r--offapi/com/sun/star/sdb/XResultSetAccess.idl72
-rw-r--r--offapi/com/sun/star/sdb/XRowSetApproveBroadcaster.idl60
-rw-r--r--offapi/com/sun/star/sdb/XRowSetApproveListener.idl70
-rw-r--r--offapi/com/sun/star/sdb/XRowSetChangeBroadcaster.idl8
-rw-r--r--offapi/com/sun/star/sdb/XRowSetChangeListener.idl6
-rw-r--r--offapi/com/sun/star/sdb/XRowSetSupplier.idl70
-rw-r--r--offapi/com/sun/star/sdb/XRowsChangeBroadcaster.idl8
-rw-r--r--offapi/com/sun/star/sdb/XRowsChangeListener.idl48
-rw-r--r--offapi/com/sun/star/sdb/XSQLErrorBroadcaster.idl68
-rw-r--r--offapi/com/sun/star/sdb/XSQLErrorListener.idl56
-rw-r--r--offapi/com/sun/star/sdb/XSQLQueryComposer.idl170
-rw-r--r--offapi/com/sun/star/sdb/XSQLQueryComposerFactory.idl54
-rw-r--r--offapi/com/sun/star/sdb/XSingleSelectQueryAnalyzer.idl2
-rw-r--r--offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl220
-rw-r--r--offapi/com/sun/star/sdb/XSubDocument.idl6
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableContinuation.idl6
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableOperation.idl8
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableRowEvent.idl10
-rw-r--r--offapi/com/sun/star/sdb/application/CopyTableWizard.idl14
-rw-r--r--offapi/com/sun/star/sdb/application/DatabaseObject.idl8
-rw-r--r--offapi/com/sun/star/sdb/application/DatabaseObjectContainer.idl6
-rw-r--r--offapi/com/sun/star/sdb/application/DefaultViewController.idl6
-rw-r--r--offapi/com/sun/star/sdb/application/NamedDatabaseObject.idl8
-rw-r--r--offapi/com/sun/star/sdb/application/XCopyTableListener.idl8
-rw-r--r--offapi/com/sun/star/sdb/application/XCopyTableWizard.idl8
-rw-r--r--offapi/com/sun/star/sdb/application/XDatabaseDocumentUI.idl6
-rw-r--r--offapi/com/sun/star/sdb/application/XTableUIProvider.idl6
-rw-r--r--offapi/com/sun/star/sdb/tools/CompositionType.idl4
-rw-r--r--offapi/com/sun/star/sdb/tools/XConnectionSupplier.idl2
-rw-r--r--offapi/com/sun/star/sdb/tools/XConnectionTools.idl14
-rw-r--r--offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl2
-rw-r--r--offapi/com/sun/star/sdb/tools/XIndexAlteration.idl12
-rw-r--r--offapi/com/sun/star/sdb/tools/XKeyAlteration.idl12
-rw-r--r--offapi/com/sun/star/sdb/tools/XObjectNames.idl2
-rw-r--r--offapi/com/sun/star/sdb/tools/XTableAlteration.idl12
-rw-r--r--offapi/com/sun/star/sdb/tools/XTableName.idl4
-rw-r--r--offapi/com/sun/star/sdb/tools/XTableRename.idl2
-rw-r--r--offapi/com/sun/star/sdb/tools/XViewAccess.idl2
-rw-r--r--offapi/com/sun/star/sdbc/BatchUpdateException.idl56
-rw-r--r--offapi/com/sun/star/sdbc/BestRowScope.idl74
-rw-r--r--offapi/com/sun/star/sdbc/BestRowType.idl72
-rw-r--r--offapi/com/sun/star/sdbc/CallableStatement.idl76
-rw-r--r--offapi/com/sun/star/sdbc/ChangeAction.idl10
-rw-r--r--offapi/com/sun/star/sdbc/ChangeEvent.idl2
-rw-r--r--offapi/com/sun/star/sdbc/ColumnSearch.idl98
-rw-r--r--offapi/com/sun/star/sdbc/ColumnType.idl76
-rw-r--r--offapi/com/sun/star/sdbc/ColumnValue.idl46
-rw-r--r--offapi/com/sun/star/sdbc/Connection.idl78
-rw-r--r--offapi/com/sun/star/sdbc/ConnectionPool.idl34
-rw-r--r--offapi/com/sun/star/sdbc/ConnectionProperties.idl56
-rw-r--r--offapi/com/sun/star/sdbc/DBASEConnectionProperties.idl58
-rw-r--r--offapi/com/sun/star/sdbc/DataTruncation.idl72
-rw-r--r--offapi/com/sun/star/sdbc/DataType.idl180
-rw-r--r--offapi/com/sun/star/sdbc/Deferrability.idl84
-rw-r--r--offapi/com/sun/star/sdbc/Driver.idl52
-rw-r--r--offapi/com/sun/star/sdbc/DriverManager.idl68
-rw-r--r--offapi/com/sun/star/sdbc/DriverPropertyInfo.idl68
-rw-r--r--offapi/com/sun/star/sdbc/FILEConnectionProperties.idl56
-rw-r--r--offapi/com/sun/star/sdbc/FLATConnectionProperties.idl68
-rw-r--r--offapi/com/sun/star/sdbc/FetchDirection.idl54
-rw-r--r--offapi/com/sun/star/sdbc/IndexType.idl80
-rw-r--r--offapi/com/sun/star/sdbc/JDBCConnectionProperties.idl68
-rw-r--r--offapi/com/sun/star/sdbc/KeyRule.idl140
-rw-r--r--offapi/com/sun/star/sdbc/ODBCConnectionProperties.idl66
-rw-r--r--offapi/com/sun/star/sdbc/PreparedStatement.idl290
-rw-r--r--offapi/com/sun/star/sdbc/ProcedureColumn.idl98
-rw-r--r--offapi/com/sun/star/sdbc/ProcedureResult.idl76
-rw-r--r--offapi/com/sun/star/sdbc/ResultSet.idl206
-rw-r--r--offapi/com/sun/star/sdbc/ResultSetConcurrency.idl48
-rw-r--r--offapi/com/sun/star/sdbc/ResultSetType.idl58
-rw-r--r--offapi/com/sun/star/sdbc/RowSet.idl152
-rw-r--r--offapi/com/sun/star/sdbc/SQLException.idl56
-rw-r--r--offapi/com/sun/star/sdbc/SQLWarning.idl42
-rw-r--r--offapi/com/sun/star/sdbc/Statement.idl192
-rw-r--r--offapi/com/sun/star/sdbc/TransactionIsolation.idl92
-rw-r--r--offapi/com/sun/star/sdbc/XArray.idl236
-rw-r--r--offapi/com/sun/star/sdbc/XBatchExecution.idl86
-rw-r--r--offapi/com/sun/star/sdbc/XBlob.idl196
-rw-r--r--offapi/com/sun/star/sdbc/XClob.idl154
-rw-r--r--offapi/com/sun/star/sdbc/XCloseable.idl56
-rw-r--r--offapi/com/sun/star/sdbc/XColumnLocate.idl64
-rw-r--r--offapi/com/sun/star/sdbc/XConnection.idl288
-rw-r--r--offapi/com/sun/star/sdbc/XDataSource.idl90
-rw-r--r--offapi/com/sun/star/sdbc/XDatabaseMetaData.idl1484
-rw-r--r--offapi/com/sun/star/sdbc/XDatabaseMetaData2.idl10
-rw-r--r--offapi/com/sun/star/sdbc/XDriver.idl180
-rw-r--r--offapi/com/sun/star/sdbc/XDriverAccess.idl58
-rw-r--r--offapi/com/sun/star/sdbc/XDriverManager.idl114
-rw-r--r--offapi/com/sun/star/sdbc/XGeneratedResultSet.idl62
-rw-r--r--offapi/com/sun/star/sdbc/XIsolatedConnection.idl68
-rw-r--r--offapi/com/sun/star/sdbc/XMultipleResults.idl92
-rw-r--r--offapi/com/sun/star/sdbc/XOutParameters.idl94
-rw-r--r--offapi/com/sun/star/sdbc/XParameters.idl338
-rw-r--r--offapi/com/sun/star/sdbc/XPooledConnection.idl70
-rw-r--r--offapi/com/sun/star/sdbc/XPreparedBatchExecution.idl88
-rw-r--r--offapi/com/sun/star/sdbc/XPreparedStatement.idl100
-rw-r--r--offapi/com/sun/star/sdbc/XRef.idl58
-rw-r--r--offapi/com/sun/star/sdbc/XResultSet.idl264
-rw-r--r--offapi/com/sun/star/sdbc/XResultSetMetaData.idl218
-rw-r--r--offapi/com/sun/star/sdbc/XResultSetMetaDataSupplier.idl66
-rw-r--r--offapi/com/sun/star/sdbc/XResultSetUpdate.idl116
-rw-r--r--offapi/com/sun/star/sdbc/XRow.idl310
-rw-r--r--offapi/com/sun/star/sdbc/XRowSet.idl76
-rw-r--r--offapi/com/sun/star/sdbc/XRowSetListener.idl58
-rw-r--r--offapi/com/sun/star/sdbc/XRowUpdate.idl236
-rw-r--r--offapi/com/sun/star/sdbc/XSQLData.idl106
-rw-r--r--offapi/com/sun/star/sdbc/XSQLInput.idl278
-rw-r--r--offapi/com/sun/star/sdbc/XSQLOutput.idl296
-rw-r--r--offapi/com/sun/star/sdbc/XStatement.idl106
-rw-r--r--offapi/com/sun/star/sdbc/XStruct.idl120
-rw-r--r--offapi/com/sun/star/sdbc/XWarningsSupplier.idl76
-rw-r--r--offapi/com/sun/star/sdbcx/CheckOption.idl54
-rw-r--r--offapi/com/sun/star/sdbcx/Column.idl128
-rw-r--r--offapi/com/sun/star/sdbcx/ColumnDescriptor.idl100
-rw-r--r--offapi/com/sun/star/sdbcx/CompareBookmark.idl62
-rw-r--r--offapi/com/sun/star/sdbcx/Container.idl100
-rw-r--r--offapi/com/sun/star/sdbcx/DatabaseDefinition.idl62
-rw-r--r--offapi/com/sun/star/sdbcx/Descriptor.idl52
-rw-r--r--offapi/com/sun/star/sdbcx/Driver.idl64
-rw-r--r--offapi/com/sun/star/sdbcx/Group.idl64
-rw-r--r--offapi/com/sun/star/sdbcx/GroupDescriptor.idl42
-rw-r--r--offapi/com/sun/star/sdbcx/Index.idl92
-rw-r--r--offapi/com/sun/star/sdbcx/IndexColumn.idl50
-rw-r--r--offapi/com/sun/star/sdbcx/IndexColumnDescriptor.idl50
-rw-r--r--offapi/com/sun/star/sdbcx/IndexDescriptor.idl74
-rw-r--r--offapi/com/sun/star/sdbcx/Key.idl92
-rw-r--r--offapi/com/sun/star/sdbcx/KeyColumn.idl8
-rw-r--r--offapi/com/sun/star/sdbcx/KeyColumnDescriptor.idl50
-rw-r--r--offapi/com/sun/star/sdbcx/KeyDescriptor.idl10
-rw-r--r--offapi/com/sun/star/sdbcx/KeyType.idl50
-rw-r--r--offapi/com/sun/star/sdbcx/PreparedStatement.idl6
-rw-r--r--offapi/com/sun/star/sdbcx/Privilege.idl90
-rw-r--r--offapi/com/sun/star/sdbcx/PrivilegeObject.idl52
-rw-r--r--offapi/com/sun/star/sdbcx/ReferenceColumn.idl52
-rw-r--r--offapi/com/sun/star/sdbcx/ResultSet.idl86
-rw-r--r--offapi/com/sun/star/sdbcx/Statement.idl60
-rw-r--r--offapi/com/sun/star/sdbcx/Table.idl126
-rw-r--r--offapi/com/sun/star/sdbcx/TableDescriptor.idl80
-rw-r--r--offapi/com/sun/star/sdbcx/User.idl68
-rw-r--r--offapi/com/sun/star/sdbcx/UserDescriptor.idl50
-rw-r--r--offapi/com/sun/star/sdbcx/View.idl2
-rw-r--r--offapi/com/sun/star/sdbcx/ViewDescriptor.idl68
-rw-r--r--offapi/com/sun/star/sdbcx/XAlterTable.idl2
-rw-r--r--offapi/com/sun/star/sdbcx/XAlterView.idl6
-rw-r--r--offapi/com/sun/star/sdbcx/XAppend.idl74
-rw-r--r--offapi/com/sun/star/sdbcx/XAuthorizable.idl94
-rw-r--r--offapi/com/sun/star/sdbcx/XColumnsSupplier.idl66
-rw-r--r--offapi/com/sun/star/sdbcx/XCreateCatalog.idl78
-rw-r--r--offapi/com/sun/star/sdbcx/XDataDefinitionSupplier.idl98
-rw-r--r--offapi/com/sun/star/sdbcx/XDataDescriptorFactory.idl52
-rw-r--r--offapi/com/sun/star/sdbcx/XDeleteRows.idl74
-rw-r--r--offapi/com/sun/star/sdbcx/XDrop.idl84
-rw-r--r--offapi/com/sun/star/sdbcx/XDropCatalog.idl78
-rw-r--r--offapi/com/sun/star/sdbcx/XGroupsSupplier.idl54
-rw-r--r--offapi/com/sun/star/sdbcx/XIndexesSupplier.idl54
-rw-r--r--offapi/com/sun/star/sdbcx/XKeysSupplier.idl54
-rw-r--r--offapi/com/sun/star/sdbcx/XRename.idl70
-rw-r--r--offapi/com/sun/star/sdbcx/XRowLocate.idl114
-rw-r--r--offapi/com/sun/star/sdbcx/XTablesSupplier.idl54
-rw-r--r--offapi/com/sun/star/sdbcx/XUser.idl48
-rw-r--r--offapi/com/sun/star/sdbcx/XUsersSupplier.idl62
-rw-r--r--offapi/com/sun/star/sdbcx/XViewsSupplier.idl54
-rw-r--r--offapi/com/sun/star/security/CertificateCharacters.idl6
-rw-r--r--offapi/com/sun/star/security/CertificateContainer.idl4
-rw-r--r--offapi/com/sun/star/security/CertificateContainerStatus.idl6
-rw-r--r--offapi/com/sun/star/security/CertificateException.idl20
-rw-r--r--offapi/com/sun/star/security/CertificateValidity.idl6
-rw-r--r--offapi/com/sun/star/security/CryptographyException.idl18
-rw-r--r--offapi/com/sun/star/security/DocumentDigitalSignatures.idl4
-rw-r--r--offapi/com/sun/star/security/DocumentSignatureInformation.idl32
-rw-r--r--offapi/com/sun/star/security/EncryptionException.idl20
-rw-r--r--offapi/com/sun/star/security/KeyException.idl20
-rw-r--r--offapi/com/sun/star/security/KeyUsage.idl4
-rw-r--r--offapi/com/sun/star/security/NoPasswordException.idl18
-rw-r--r--offapi/com/sun/star/security/SecurityInfrastructureException.idl20
-rw-r--r--offapi/com/sun/star/security/SerialNumberAdapter.idl2
-rw-r--r--offapi/com/sun/star/security/SignatureException.idl20
-rw-r--r--offapi/com/sun/star/security/XCertificate.idl14
-rw-r--r--offapi/com/sun/star/security/XCertificateContainer.idl14
-rw-r--r--offapi/com/sun/star/security/XCertificateExtension.idl8
-rw-r--r--offapi/com/sun/star/security/XDocumentDigitalSignatures.idl14
-rw-r--r--offapi/com/sun/star/security/XSerialNumberAdapter.idl6
-rw-r--r--offapi/com/sun/star/setup/ActionType.idl78
-rw-r--r--offapi/com/sun/star/setup/BaseAction.idl36
-rw-r--r--offapi/com/sun/star/setup/CopyFileAction.idl14
-rw-r--r--offapi/com/sun/star/setup/DeleteDirAction.idl32
-rw-r--r--offapi/com/sun/star/setup/DeleteFileAction.idl12
-rw-r--r--offapi/com/sun/star/setup/DeleteFolderAction.idl32
-rw-r--r--offapi/com/sun/star/setup/DeleteFolderItemAction.idl36
-rw-r--r--offapi/com/sun/star/setup/DownloadAction.idl8
-rw-r--r--offapi/com/sun/star/setup/FontAction.idl40
-rw-r--r--offapi/com/sun/star/setup/InstallEnvironment.idl52
-rw-r--r--offapi/com/sun/star/setup/InstallResponse.idl50
-rw-r--r--offapi/com/sun/star/setup/InstallType.idl2
-rw-r--r--offapi/com/sun/star/setup/MakeDirAction.idl36
-rw-r--r--offapi/com/sun/star/setup/MakeFolderAction.idl36
-rw-r--r--offapi/com/sun/star/setup/MakeFolderItemAction.idl48
-rw-r--r--offapi/com/sun/star/setup/MakeShortcutAction.idl44
-rw-r--r--offapi/com/sun/star/setup/MirrorEntry.idl30
-rw-r--r--offapi/com/sun/star/setup/ModuleInfo.idl62
-rw-r--r--offapi/com/sun/star/setup/ModuleState.idl30
-rw-r--r--offapi/com/sun/star/setup/OSType.idl6
-rw-r--r--offapi/com/sun/star/setup/ProductRegistration.idl6
-rw-r--r--offapi/com/sun/star/setup/ProfileItemAction.idl48
-rw-r--r--offapi/com/sun/star/setup/Setup.idl40
-rw-r--r--offapi/com/sun/star/setup/SizeInfo.idl34
-rw-r--r--offapi/com/sun/star/setup/UnzipAction.idl18
-rw-r--r--offapi/com/sun/star/setup/UpdateType.idl2
-rw-r--r--offapi/com/sun/star/setup/VersionIdentifier.idl46
-rw-r--r--offapi/com/sun/star/setup/WindowsRegistryAction.idl56
-rw-r--r--offapi/com/sun/star/setup/XSetup.idl34
-rw-r--r--offapi/com/sun/star/sheet/AccessibleCell.idl20
-rw-r--r--offapi/com/sun/star/sheet/AccessibleCsvCell.idl2
-rw-r--r--offapi/com/sun/star/sheet/AccessibleCsvRuler.idl2
-rw-r--r--offapi/com/sun/star/sheet/AccessibleCsvTable.idl2
-rw-r--r--offapi/com/sun/star/sheet/AccessiblePageHeaderFooterAreasView.idl26
-rw-r--r--offapi/com/sun/star/sheet/AccessibleSpreadsheet.idl16
-rw-r--r--offapi/com/sun/star/sheet/AccessibleSpreadsheetDocumentView.idl2
-rw-r--r--offapi/com/sun/star/sheet/AccessibleSpreadsheetPageView.idl32
-rw-r--r--offapi/com/sun/star/sheet/ActivationEvent.idl2
-rw-r--r--offapi/com/sun/star/sheet/AddIn.idl4
-rw-r--r--offapi/com/sun/star/sheet/AddressConvention.idl6
-rw-r--r--offapi/com/sun/star/sheet/Border.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellAnnotation.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellAnnotationShape.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellAnnotations.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellAnnotationsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellAreaLink.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellAreaLinks.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellAreaLinksEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellDeleteMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellFlags.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellFormatRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellFormatRangesEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellInsertMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/Cells.idl2
-rw-r--r--offapi/com/sun/star/sheet/CellsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/ComplexReference.idl2
-rw-r--r--offapi/com/sun/star/sheet/ConditionOperator.idl2
-rw-r--r--offapi/com/sun/star/sheet/ConsolidationDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/DDEItemInfo.idl2
-rw-r--r--offapi/com/sun/star/sheet/DDELink.idl2
-rw-r--r--offapi/com/sun/star/sheet/DDELinkInfo.idl2
-rw-r--r--offapi/com/sun/star/sheet/DDELinkMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/DDELinks.idl2
-rw-r--r--offapi/com/sun/star/sheet/DDELinksEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataImportMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotField.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldAutoShowInfo.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldFilter.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroup.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupBy.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupInfo.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupItem.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroups.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldLayoutInfo.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldLayoutMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldOrientation.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldReference.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldReferenceItemType.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldReferenceType.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldShowItemsMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldSortInfo.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldSortMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFields.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotItem.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotItems.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotItemsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotOutputRangeType.idl6
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSource.idl6
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceDimension.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceDimensions.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceHierarchies.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceHierarchy.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceLevel.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceLevels.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceMember.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceMembers.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTable.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTableHeaderData.idl8
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTablePositionData.idl16
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTablePositionType.idl4
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTableResultData.idl6
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTables.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotTablesEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataResult.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataResultFlags.idl2
-rw-r--r--offapi/com/sun/star/sheet/DatabaseImportDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/DatabaseRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/DatabaseRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/DatabaseRangesEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/DocumentSettings.idl6
-rw-r--r--offapi/com/sun/star/sheet/ExternalDocLink.idl4
-rw-r--r--offapi/com/sun/star/sheet/ExternalDocLinks.idl2
-rw-r--r--offapi/com/sun/star/sheet/ExternalLinkInfo.idl2
-rw-r--r--offapi/com/sun/star/sheet/ExternalLinkType.idl2
-rw-r--r--offapi/com/sun/star/sheet/ExternalReference.idl2
-rw-r--r--offapi/com/sun/star/sheet/ExternalSheetCache.idl6
-rw-r--r--offapi/com/sun/star/sheet/FillDateMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/FillDirection.idl2
-rw-r--r--offapi/com/sun/star/sheet/FillMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/FilterConnection.idl2
-rw-r--r--offapi/com/sun/star/sheet/FilterFormulaParser.idl2
-rw-r--r--offapi/com/sun/star/sheet/FilterOperator.idl2
-rw-r--r--offapi/com/sun/star/sheet/FilterOperator2.idl2
-rw-r--r--offapi/com/sun/star/sheet/FormulaLanguage.idl2
-rw-r--r--offapi/com/sun/star/sheet/FormulaMapGroup.idl2
-rw-r--r--offapi/com/sun/star/sheet/FormulaMapGroupSpecialOffset.idl2
-rw-r--r--offapi/com/sun/star/sheet/FormulaOpCodeMapEntry.idl2
-rw-r--r--offapi/com/sun/star/sheet/FormulaParser.idl2
-rw-r--r--offapi/com/sun/star/sheet/FormulaResult.idl2
-rw-r--r--offapi/com/sun/star/sheet/FormulaToken.idl2
-rw-r--r--offapi/com/sun/star/sheet/FunctionAccess.idl4
-rw-r--r--offapi/com/sun/star/sheet/FunctionArgument.idl2
-rw-r--r--offapi/com/sun/star/sheet/FunctionCategory.idl2
-rw-r--r--offapi/com/sun/star/sheet/FunctionDescription.idl2
-rw-r--r--offapi/com/sun/star/sheet/FunctionDescriptionEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/FunctionDescriptions.idl2
-rw-r--r--offapi/com/sun/star/sheet/GeneralFunction.idl2
-rw-r--r--offapi/com/sun/star/sheet/GlobalSheetSettings.idl2
-rw-r--r--offapi/com/sun/star/sheet/GoalResult.idl2
-rw-r--r--offapi/com/sun/star/sheet/HeaderFooterContent.idl2
-rw-r--r--offapi/com/sun/star/sheet/LabelRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/LabelRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/LabelRangesEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/LocalizedName.idl10
-rw-r--r--offapi/com/sun/star/sheet/MemberResult.idl2
-rw-r--r--offapi/com/sun/star/sheet/MemberResultFlags.idl4
-rw-r--r--offapi/com/sun/star/sheet/MoveDirection.idl2
-rw-r--r--offapi/com/sun/star/sheet/NamedRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/NamedRangeFlag.idl2
-rw-r--r--offapi/com/sun/star/sheet/NamedRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/NamedRangesEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/NoConvergenceException.idl4
-rw-r--r--offapi/com/sun/star/sheet/PasteOperation.idl2
-rw-r--r--offapi/com/sun/star/sheet/RangeSelectionArguments.idl46
-rw-r--r--offapi/com/sun/star/sheet/RangeSelectionEvent.idl44
-rw-r--r--offapi/com/sun/star/sheet/RecentFunctions.idl2
-rw-r--r--offapi/com/sun/star/sheet/ReferenceFlags.idl2
-rw-r--r--offapi/com/sun/star/sheet/ResultEvent.idl2
-rw-r--r--offapi/com/sun/star/sheet/Scenario.idl2
-rw-r--r--offapi/com/sun/star/sheet/Scenarios.idl2
-rw-r--r--offapi/com/sun/star/sheet/ScenariosEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/Shape.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetCell.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetCellCursor.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetCellRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetCellRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetCellRangesEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetFilterDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetLink.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetLinkMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetLinks.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetLinksEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetRangesQuery.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetSortDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetSortDescriptor2.idl2
-rw-r--r--offapi/com/sun/star/sheet/SingleReference.idl2
-rw-r--r--offapi/com/sun/star/sheet/Solver.idl2
-rw-r--r--offapi/com/sun/star/sheet/SolverConstraint.idl2
-rw-r--r--offapi/com/sun/star/sheet/SolverConstraintOperator.idl2
-rw-r--r--offapi/com/sun/star/sheet/Spreadsheet.idl2
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetDocument.idl2
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl2
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetDrawPage.idl4
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetView.idl2
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetViewPane.idl70
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetViewPanesEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetViewSettings.idl198
-rw-r--r--offapi/com/sun/star/sheet/Spreadsheets.idl2
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/StatusBarFunction.idl2
-rw-r--r--offapi/com/sun/star/sheet/SubTotalColumn.idl2
-rw-r--r--offapi/com/sun/star/sheet/SubTotalDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/SubTotalField.idl2
-rw-r--r--offapi/com/sun/star/sheet/SubTotalFieldsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableAutoFormat.idl4
-rw-r--r--offapi/com/sun/star/sheet/TableAutoFormatEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableAutoFormatField.idl4
-rw-r--r--offapi/com/sun/star/sheet/TableAutoFormats.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableAutoFormatsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableCellStyle.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableConditionalEntry.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableConditionalEntryEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableConditionalFormat.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableFilterField.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableFilterField2.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableOperationMode.idl2
-rw-r--r--offapi/com/sun/star/sheet/TablePageBreakData.idl2
-rw-r--r--offapi/com/sun/star/sheet/TablePageStyle.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableValidation.idl2
-rw-r--r--offapi/com/sun/star/sheet/TableValidationVisibility.idl2
-rw-r--r--offapi/com/sun/star/sheet/UniqueCellFormatRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/UniqueCellFormatRangesEnumeration.idl2
-rw-r--r--offapi/com/sun/star/sheet/ValidationAlertStyle.idl2
-rw-r--r--offapi/com/sun/star/sheet/ValidationType.idl2
-rw-r--r--offapi/com/sun/star/sheet/VolatileResult.idl2
-rw-r--r--offapi/com/sun/star/sheet/XActivationBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/sheet/XActivationEventListener.idl2
-rw-r--r--offapi/com/sun/star/sheet/XAddIn.idl2
-rw-r--r--offapi/com/sun/star/sheet/XAreaLink.idl2
-rw-r--r--offapi/com/sun/star/sheet/XAreaLinks.idl2
-rw-r--r--offapi/com/sun/star/sheet/XArrayFormulaRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/XArrayFormulaTokens.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCalculatable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellAddressable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellFormatRangesSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellRangeAddressable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellRangeData.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellRangeFormula.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellRangeMovement.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellRangeReferrer.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellRangesAccess.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellRangesQuery.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCellSeries.idl2
-rw-r--r--offapi/com/sun/star/sheet/XCompatibilityNames.idl2
-rw-r--r--offapi/com/sun/star/sheet/XConsolidatable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XConsolidationDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDDELink.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDDELinkResults.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDDELinks.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotDataLayoutFieldSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotField.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotFieldGrouping.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotMemberResults.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotResults.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotTable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotTable2.idl28
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotTables.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotTablesSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDatabaseRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDatabaseRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDimensionsSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDocumentAuditing.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDrillDownDataSupplier.idl8
-rw-r--r--offapi/com/sun/star/sheet/XEnhancedMouseClickBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/sheet/XExternalDocLink.idl12
-rw-r--r--offapi/com/sun/star/sheet/XExternalDocLinks.idl2
-rw-r--r--offapi/com/sun/star/sheet/XExternalSheetCache.idl2
-rw-r--r--offapi/com/sun/star/sheet/XExternalSheetName.idl8
-rw-r--r--offapi/com/sun/star/sheet/XFillAcrossSheet.idl2
-rw-r--r--offapi/com/sun/star/sheet/XFilterFormulaParser.idl2
-rw-r--r--offapi/com/sun/star/sheet/XFormulaOpCodeMapper.idl2
-rw-r--r--offapi/com/sun/star/sheet/XFormulaParser.idl2
-rw-r--r--offapi/com/sun/star/sheet/XFormulaQuery.idl2
-rw-r--r--offapi/com/sun/star/sheet/XFormulaTokens.idl2
-rw-r--r--offapi/com/sun/star/sheet/XFunctionAccess.idl2
-rw-r--r--offapi/com/sun/star/sheet/XFunctionDescriptions.idl2
-rw-r--r--offapi/com/sun/star/sheet/XGoalSeek.idl2
-rw-r--r--offapi/com/sun/star/sheet/XHeaderFooterContent.idl2
-rw-r--r--offapi/com/sun/star/sheet/XHierarchiesSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XLabelRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/XLabelRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/XLevelsSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XMembersSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XMultiFormulaTokens.idl2
-rw-r--r--offapi/com/sun/star/sheet/XMultipleOperation.idl2
-rw-r--r--offapi/com/sun/star/sheet/XNamedRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/XNamedRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/XPrintAreas.idl2
-rw-r--r--offapi/com/sun/star/sheet/XRangeSelection.idl48
-rw-r--r--offapi/com/sun/star/sheet/XRangeSelectionChangeListener.idl46
-rw-r--r--offapi/com/sun/star/sheet/XRangeSelectionListener.idl48
-rw-r--r--offapi/com/sun/star/sheet/XRecentFunctions.idl2
-rw-r--r--offapi/com/sun/star/sheet/XResultListener.idl2
-rw-r--r--offapi/com/sun/star/sheet/XScenario.idl2
-rw-r--r--offapi/com/sun/star/sheet/XScenarioEnhanced.idl2
-rw-r--r--offapi/com/sun/star/sheet/XScenarios.idl2
-rw-r--r--offapi/com/sun/star/sheet/XScenariosSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetAnnotation.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetAnnotationAnchor.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetAnnotationShapeSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetAnnotations.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetAnnotationsSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetAuditing.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetCellCursor.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetCellRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetCellRangeContainer.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetCellRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetCondition.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetConditionalEntries.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetConditionalEntry.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetFilterDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetFilterDescriptor2.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetFilterable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetFilterableEx.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetLinkable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetOperation.idl4
-rw-r--r--offapi/com/sun/star/sheet/XSheetOutline.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetPageBreak.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetPastable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSolver.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSolverDescription.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSpreadsheet.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSpreadsheetDocument.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSpreadsheetView.idl68
-rw-r--r--offapi/com/sun/star/sheet/XSpreadsheets.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSubTotalCalculatable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSubTotalDescriptor.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSubTotalField.idl2
-rw-r--r--offapi/com/sun/star/sheet/XUniqueCellFormatRangesSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XUsedAreaCursor.idl2
-rw-r--r--offapi/com/sun/star/sheet/XViewFreezable.idl68
-rw-r--r--offapi/com/sun/star/sheet/XViewPane.idl92
-rw-r--r--offapi/com/sun/star/sheet/XViewPanesSupplier.idl2
-rw-r--r--offapi/com/sun/star/sheet/XViewSplitable.idl104
-rw-r--r--offapi/com/sun/star/sheet/XVolatileResult.idl2
-rw-r--r--offapi/com/sun/star/sheet/_NamedRange.idl2
-rw-r--r--offapi/com/sun/star/smarttags/SmartTagAction.idl2
-rw-r--r--offapi/com/sun/star/smarttags/SmartTagRecognizer.idl2
-rw-r--r--offapi/com/sun/star/smarttags/SmartTagRecognizerMode.idl2
-rw-r--r--offapi/com/sun/star/smarttags/XSmartTagAction.idl2
-rw-r--r--offapi/com/sun/star/smarttags/XSmartTagRecognizer.idl2
-rw-r--r--offapi/com/sun/star/style/BreakType.idl138
-rw-r--r--offapi/com/sun/star/style/CaseMap.idl86
-rw-r--r--offapi/com/sun/star/style/CellStyle.idl2
-rw-r--r--offapi/com/sun/star/style/CharacterProperties.idl4
-rw-r--r--offapi/com/sun/star/style/CharacterPropertiesAsian.idl2
-rw-r--r--offapi/com/sun/star/style/CharacterPropertiesComplex.idl2
-rw-r--r--offapi/com/sun/star/style/CharacterStyle.idl2
-rw-r--r--offapi/com/sun/star/style/DropCapFormat.idl62
-rw-r--r--offapi/com/sun/star/style/GraphicLocation.idl142
-rw-r--r--offapi/com/sun/star/style/HorizontalAlignment.idl74
-rw-r--r--offapi/com/sun/star/style/LineNumberPosition.idl78
-rw-r--r--offapi/com/sun/star/style/LineSpacing.idl54
-rw-r--r--offapi/com/sun/star/style/LineSpacingMode.idl76
-rw-r--r--offapi/com/sun/star/style/NumberingAlignment.idl84
-rw-r--r--offapi/com/sun/star/style/NumberingLevel.idl124
-rw-r--r--offapi/com/sun/star/style/NumberingRule.idl70
-rw-r--r--offapi/com/sun/star/style/NumberingType.idl10
-rw-r--r--offapi/com/sun/star/style/PageProperties.idl4
-rw-r--r--offapi/com/sun/star/style/PageStyle.idl2
-rw-r--r--offapi/com/sun/star/style/PageStyleLayout.idl2
-rw-r--r--offapi/com/sun/star/style/ParagraphAdjust.idl84
-rw-r--r--offapi/com/sun/star/style/ParagraphProperties.idl4
-rw-r--r--offapi/com/sun/star/style/ParagraphPropertiesAsian.idl2
-rw-r--r--offapi/com/sun/star/style/ParagraphPropertiesComplex.idl2
-rw-r--r--offapi/com/sun/star/style/ParagraphStyle.idl8
-rw-r--r--offapi/com/sun/star/style/ParagraphStyleCategory.idl78
-rw-r--r--offapi/com/sun/star/style/Style.idl12
-rw-r--r--offapi/com/sun/star/style/StyleFamilies.idl102
-rw-r--r--offapi/com/sun/star/style/StyleFamily.idl102
-rw-r--r--offapi/com/sun/star/style/TabAlign.idl84
-rw-r--r--offapi/com/sun/star/style/TabStop.idl80
-rw-r--r--offapi/com/sun/star/style/VerticalAlignment.idl74
-rw-r--r--offapi/com/sun/star/style/XAutoStyle.idl2
-rw-r--r--offapi/com/sun/star/style/XAutoStyleFamily.idl52
-rw-r--r--offapi/com/sun/star/style/XAutoStyles.idl64
-rw-r--r--offapi/com/sun/star/style/XAutoStylesSupplier.idl2
-rw-r--r--offapi/com/sun/star/style/XDefaultsSupplier.idl60
-rw-r--r--offapi/com/sun/star/style/XStyle.idl98
-rw-r--r--offapi/com/sun/star/style/XStyleCondition.idl72
-rw-r--r--offapi/com/sun/star/style/XStyleFamiliesSupplier.idl70
-rw-r--r--offapi/com/sun/star/style/XStyleLoader.idl2
-rw-r--r--offapi/com/sun/star/svg/XSVGPrinter.idl62
-rw-r--r--offapi/com/sun/star/svg/XSVGWriter.idl48
-rw-r--r--offapi/com/sun/star/sync/SyncAction.idl64
-rw-r--r--offapi/com/sun/star/sync/SyncCollector.idl44
-rw-r--r--offapi/com/sun/star/sync/SyncElement.idl78
-rw-r--r--offapi/com/sun/star/sync/SyncEvent.idl52
-rw-r--r--offapi/com/sun/star/sync/SyncInfo.idl66
-rw-r--r--offapi/com/sun/star/sync/SyncMode.idl48
-rw-r--r--offapi/com/sun/star/sync/SyncOptions.idl60
-rw-r--r--offapi/com/sun/star/sync/SyncScheme.idl42
-rw-r--r--offapi/com/sun/star/sync/SyncType.idl64
-rw-r--r--offapi/com/sun/star/sync/Synchronizer.idl44
-rw-r--r--offapi/com/sun/star/sync/XSyncCollector.idl122
-rw-r--r--offapi/com/sun/star/sync/XSynchronizer.idl68
-rw-r--r--offapi/com/sun/star/sync2/BadPartnershipException.idl2
-rw-r--r--offapi/com/sun/star/system/ProxySettings.idl4
-rw-r--r--offapi/com/sun/star/system/SOffice52ProxySettings.idl6
-rw-r--r--offapi/com/sun/star/system/SimpleCommandMail.idl6
-rw-r--r--offapi/com/sun/star/system/SimpleMailClientFlags.idl22
-rw-r--r--offapi/com/sun/star/system/SimpleSystemMail.idl8
-rw-r--r--offapi/com/sun/star/system/SystemProxySettings.idl4
-rw-r--r--offapi/com/sun/star/system/SystemShellExecute.idl6
-rw-r--r--offapi/com/sun/star/system/SystemShellExecuteException.idl4
-rw-r--r--offapi/com/sun/star/system/SystemShellExecuteFlags.idl10
-rw-r--r--offapi/com/sun/star/system/XProxySettings.idl34
-rw-r--r--offapi/com/sun/star/system/XSimpleMailClient.idl26
-rw-r--r--offapi/com/sun/star/system/XSimpleMailClientSupplier.idl8
-rw-r--r--offapi/com/sun/star/system/XSimpleMailMessage.idl50
-rw-r--r--offapi/com/sun/star/system/XSystemShellExecute.idl22
-rw-r--r--offapi/com/sun/star/table/AccessibleCellView.idl20
-rw-r--r--offapi/com/sun/star/table/AccessibleTableView.idl28
-rw-r--r--offapi/com/sun/star/table/BorderLine.idl2
-rw-r--r--offapi/com/sun/star/table/Cell.idl2
-rw-r--r--offapi/com/sun/star/table/CellAddress.idl2
-rw-r--r--offapi/com/sun/star/table/CellContentType.idl2
-rw-r--r--offapi/com/sun/star/table/CellCursor.idl2
-rw-r--r--offapi/com/sun/star/table/CellHoriJustify.idl2
-rw-r--r--offapi/com/sun/star/table/CellOrientation.idl2
-rw-r--r--offapi/com/sun/star/table/CellProperties.idl4
-rw-r--r--offapi/com/sun/star/table/CellRange.idl2
-rw-r--r--offapi/com/sun/star/table/CellRangeAddress.idl2
-rw-r--r--offapi/com/sun/star/table/CellRangeListSource.idl2
-rw-r--r--offapi/com/sun/star/table/CellValueBinding.idl2
-rw-r--r--offapi/com/sun/star/table/CellVertJustify.idl2
-rw-r--r--offapi/com/sun/star/table/ListPositionCellBinding.idl4
-rw-r--r--offapi/com/sun/star/table/ShadowFormat.idl2
-rw-r--r--offapi/com/sun/star/table/ShadowLocation.idl2
-rw-r--r--offapi/com/sun/star/table/TableBorder.idl2
-rw-r--r--offapi/com/sun/star/table/TableBorderDistances.idl2
-rw-r--r--offapi/com/sun/star/table/TableChart.idl2
-rw-r--r--offapi/com/sun/star/table/TableCharts.idl2
-rw-r--r--offapi/com/sun/star/table/TableChartsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/table/TableColumn.idl2
-rw-r--r--offapi/com/sun/star/table/TableColumns.idl2
-rw-r--r--offapi/com/sun/star/table/TableColumnsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/table/TableOrientation.idl2
-rw-r--r--offapi/com/sun/star/table/TableRow.idl2
-rw-r--r--offapi/com/sun/star/table/TableRows.idl2
-rw-r--r--offapi/com/sun/star/table/TableRowsEnumeration.idl2
-rw-r--r--offapi/com/sun/star/table/TableSortDescriptor.idl2
-rw-r--r--offapi/com/sun/star/table/TableSortDescriptor2.idl12
-rw-r--r--offapi/com/sun/star/table/TableSortField.idl88
-rw-r--r--offapi/com/sun/star/table/TableSortFieldType.idl58
-rw-r--r--offapi/com/sun/star/table/XAutoFormattable.idl2
-rw-r--r--offapi/com/sun/star/table/XCell.idl2
-rw-r--r--offapi/com/sun/star/table/XCellCursor.idl2
-rw-r--r--offapi/com/sun/star/table/XCellRange.idl2
-rw-r--r--offapi/com/sun/star/table/XColumnRowRange.idl2
-rw-r--r--offapi/com/sun/star/table/XMergeableCell.idl2
-rw-r--r--offapi/com/sun/star/table/XMergeableCellRange.idl58
-rw-r--r--offapi/com/sun/star/table/XTable.idl4
-rw-r--r--offapi/com/sun/star/table/XTableChart.idl2
-rw-r--r--offapi/com/sun/star/table/XTableCharts.idl2
-rw-r--r--offapi/com/sun/star/table/XTableChartsSupplier.idl2
-rw-r--r--offapi/com/sun/star/table/XTableColumns.idl2
-rw-r--r--offapi/com/sun/star/table/XTableRows.idl2
-rw-r--r--offapi/com/sun/star/task/AsyncJob.idl2
-rw-r--r--offapi/com/sun/star/task/ClassifiedInteractionRequest.idl62
-rw-r--r--offapi/com/sun/star/task/DocumentMSPasswordRequest.idl2
-rwxr-xr-xoffapi/com/sun/star/task/DocumentMSPasswordRequest2.idl4
-rw-r--r--offapi/com/sun/star/task/DocumentMacroConfirmationRequest.idl6
-rw-r--r--offapi/com/sun/star/task/DocumentPasswordRequest.idl6
-rwxr-xr-xoffapi/com/sun/star/task/DocumentPasswordRequest2.idl8
-rw-r--r--offapi/com/sun/star/task/ErrorCodeIOException.idl2
-rw-r--r--offapi/com/sun/star/task/ErrorCodeRequest.idl2
-rw-r--r--offapi/com/sun/star/task/FutureDocumentVersionProductUpdateRequest.idl6
-rw-r--r--offapi/com/sun/star/task/InteractionClassification.idl70
-rw-r--r--offapi/com/sun/star/task/InteractionHandler.idl2
-rw-r--r--offapi/com/sun/star/task/InteractionRequestStringResolver.idl8
-rw-r--r--offapi/com/sun/star/task/Job.idl2
-rw-r--r--offapi/com/sun/star/task/JobExecutor.idl2
-rw-r--r--offapi/com/sun/star/task/MasterPasswordRequest.idl6
-rw-r--r--offapi/com/sun/star/task/NoMasterException.idl6
-rw-r--r--offapi/com/sun/star/task/OfficeRestartManager.idl6
-rw-r--r--offapi/com/sun/star/task/PasswordContainer.idl34
-rw-r--r--offapi/com/sun/star/task/PasswordContainerInteractionHandler.idl2
-rw-r--r--offapi/com/sun/star/task/PasswordRequest.idl6
-rw-r--r--offapi/com/sun/star/task/PasswordRequestMode.idl2
-rw-r--r--offapi/com/sun/star/task/UnsupportedOverwriteRequest.idl6
-rw-r--r--offapi/com/sun/star/task/UrlRecord.idl2
-rw-r--r--offapi/com/sun/star/task/UserRecord.idl2
-rw-r--r--offapi/com/sun/star/task/XAbortChannel.idl2
-rw-r--r--offapi/com/sun/star/task/XAsyncJob.idl2
-rw-r--r--offapi/com/sun/star/task/XInteractionApprove.idl46
-rw-r--r--offapi/com/sun/star/task/XInteractionAskLater.idl8
-rw-r--r--offapi/com/sun/star/task/XInteractionDisapprove.idl46
-rw-r--r--offapi/com/sun/star/task/XInteractionPassword.idl2
-rw-r--r--offapi/com/sun/star/task/XInteractionPassword2.idl2
-rw-r--r--offapi/com/sun/star/task/XInteractionRequestStringResolver.idl94
-rw-r--r--offapi/com/sun/star/task/XJob.idl2
-rw-r--r--offapi/com/sun/star/task/XJobExecutor.idl2
-rw-r--r--offapi/com/sun/star/task/XJobListener.idl2
-rw-r--r--offapi/com/sun/star/task/XMasterPasswordHandling.idl2
-rw-r--r--offapi/com/sun/star/task/XMasterPasswordHandling2.idl2
-rw-r--r--offapi/com/sun/star/task/XPasswordContainer.idl24
-rw-r--r--offapi/com/sun/star/task/XRestartManager.idl2
-rw-r--r--offapi/com/sun/star/task/XStatusIndicator.idl2
-rw-r--r--offapi/com/sun/star/task/XStatusIndicatorFactory.idl2
-rw-r--r--offapi/com/sun/star/task/XStatusIndicatorSupplier.idl2
-rw-r--r--offapi/com/sun/star/task/XUrlContainer.idl2
-rw-r--r--offapi/com/sun/star/text/AccessibleEndnoteView.idl14
-rw-r--r--offapi/com/sun/star/text/AccessibleFootnoteView.idl10
-rw-r--r--offapi/com/sun/star/text/AccessibleHeaderFooterView.idl18
-rw-r--r--offapi/com/sun/star/text/AccessiblePageView.idl18
-rw-r--r--offapi/com/sun/star/text/AccessibleParagraphView.idl2
-rw-r--r--offapi/com/sun/star/text/AccessibleTextDocumentPageView.idl6
-rw-r--r--offapi/com/sun/star/text/AccessibleTextDocumentView.idl10
-rw-r--r--offapi/com/sun/star/text/AccessibleTextEmbeddedObject.idl10
-rw-r--r--offapi/com/sun/star/text/AccessibleTextFrameView.idl12
-rw-r--r--offapi/com/sun/star/text/AccessibleTextGraphicObject.idl8
-rw-r--r--offapi/com/sun/star/text/AdvancedTextDocument.idl204
-rw-r--r--offapi/com/sun/star/text/AuthorDisplayFormat.idl72
-rw-r--r--offapi/com/sun/star/text/AutoTextContainer.idl62
-rw-r--r--offapi/com/sun/star/text/AutoTextEntry.idl56
-rw-r--r--offapi/com/sun/star/text/AutoTextGroup.idl76
-rw-r--r--offapi/com/sun/star/text/BaseFrame.idl2
-rw-r--r--offapi/com/sun/star/text/BaseFrameProperties.idl2
-rw-r--r--offapi/com/sun/star/text/BaseIndex.idl6
-rw-r--r--offapi/com/sun/star/text/BaseIndexMark.idl4
-rw-r--r--offapi/com/sun/star/text/Bibliography.idl2
-rw-r--r--offapi/com/sun/star/text/BibliographyDataField.idl172
-rw-r--r--offapi/com/sun/star/text/BibliographyDataType.idl124
-rw-r--r--offapi/com/sun/star/text/Bookmark.idl66
-rw-r--r--offapi/com/sun/star/text/Bookmarks.idl2
-rw-r--r--offapi/com/sun/star/text/Cell.idl6
-rw-r--r--offapi/com/sun/star/text/CellProperties.idl38
-rw-r--r--offapi/com/sun/star/text/CellRange.idl4
-rw-r--r--offapi/com/sun/star/text/ChainedTextFrame.idl62
-rw-r--r--offapi/com/sun/star/text/ChapterFormat.idl80
-rw-r--r--offapi/com/sun/star/text/ChapterNumberingRule.idl82
-rw-r--r--offapi/com/sun/star/text/CharacterCompressionType.idl2
-rw-r--r--offapi/com/sun/star/text/ContentIndex.idl88
-rw-r--r--offapi/com/sun/star/text/ContentIndexMark.idl2
-rw-r--r--offapi/com/sun/star/text/ControlCharacter.idl76
-rw-r--r--offapi/com/sun/star/text/DateDisplayFormat.idl88
-rw-r--r--offapi/com/sun/star/text/DefaultNumberingProvider.idl2
-rw-r--r--offapi/com/sun/star/text/Defaults.idl4
-rw-r--r--offapi/com/sun/star/text/DependentTextField.idl68
-rw-r--r--offapi/com/sun/star/text/DocumentIndex.idl2
-rw-r--r--offapi/com/sun/star/text/DocumentIndexFormat.idl10
-rw-r--r--offapi/com/sun/star/text/DocumentIndexLevelFormat.idl72
-rw-r--r--offapi/com/sun/star/text/DocumentIndexMark.idl2
-rw-r--r--offapi/com/sun/star/text/DocumentIndexMarkAsian.idl2
-rw-r--r--offapi/com/sun/star/text/DocumentIndexParagraphStyles.idl64
-rw-r--r--offapi/com/sun/star/text/DocumentIndexes.idl2
-rw-r--r--offapi/com/sun/star/text/DocumentSettings.idl2
-rw-r--r--offapi/com/sun/star/text/DocumentStatistic.idl80
-rw-r--r--offapi/com/sun/star/text/Endnote.idl2
-rw-r--r--offapi/com/sun/star/text/EndnoteSettings.idl2
-rw-r--r--offapi/com/sun/star/text/FilenameDisplayFormat.idl72
-rw-r--r--offapi/com/sun/star/text/FontEmphasis.idl2
-rw-r--r--offapi/com/sun/star/text/FontRelief.idl2
-rw-r--r--offapi/com/sun/star/text/Footnote.idl4
-rw-r--r--offapi/com/sun/star/text/FootnoteNumbering.idl64
-rw-r--r--offapi/com/sun/star/text/FootnoteSettings.idl2
-rw-r--r--offapi/com/sun/star/text/Footnotes.idl54
-rw-r--r--offapi/com/sun/star/text/GenericTextDocument.idl4
-rw-r--r--offapi/com/sun/star/text/GlobalDocument.idl2
-rw-r--r--offapi/com/sun/star/text/GlobalSettings.idl2
-rw-r--r--offapi/com/sun/star/text/GraphicCrop.idl72
-rw-r--r--offapi/com/sun/star/text/HoriOrientation.idl120
-rw-r--r--offapi/com/sun/star/text/HoriOrientationFormat.idl72
-rw-r--r--offapi/com/sun/star/text/HorizontalAdjust.idl62
-rw-r--r--offapi/com/sun/star/text/HypertextDocument.idl86
-rw-r--r--offapi/com/sun/star/text/IllustrationsIndex.idl4
-rwxr-xr-xoffapi/com/sun/star/text/InContentMetadata.idl2
-rw-r--r--offapi/com/sun/star/text/InvalidTextContentException.idl64
-rw-r--r--offapi/com/sun/star/text/LabelFollow.idl2
-rw-r--r--offapi/com/sun/star/text/LineNumberingProperties.idl2
-rw-r--r--offapi/com/sun/star/text/LineNumberingSettings.idl118
-rw-r--r--offapi/com/sun/star/text/MailMerge.idl154
-rw-r--r--offapi/com/sun/star/text/MailMergeEvent.idl2
-rw-r--r--offapi/com/sun/star/text/MailMergeType.idl2
-rw-r--r--offapi/com/sun/star/text/NotePrintMode.idl72
-rw-r--r--offapi/com/sun/star/text/NumberingLevel.idl2
-rw-r--r--offapi/com/sun/star/text/NumberingRules.idl2
-rw-r--r--offapi/com/sun/star/text/NumberingStyle.idl2
-rw-r--r--offapi/com/sun/star/text/ObjectIndex.idl90
-rw-r--r--offapi/com/sun/star/text/PageFootnoteInfo.idl108
-rw-r--r--offapi/com/sun/star/text/PageNumberType.idl2
-rw-r--r--offapi/com/sun/star/text/PagePrintSettings.idl112
-rw-r--r--offapi/com/sun/star/text/Paragraph.idl2
-rw-r--r--offapi/com/sun/star/text/ParagraphEnumeration.idl56
-rw-r--r--offapi/com/sun/star/text/ParagraphVertAlign.idl2
-rw-r--r--offapi/com/sun/star/text/PlaceholderType.idl78
-rw-r--r--offapi/com/sun/star/text/PositionAndSpaceMode.idl2
-rw-r--r--offapi/com/sun/star/text/PositionLayoutDir.idl2
-rw-r--r--offapi/com/sun/star/text/PrintPreviewSettings.idl50
-rw-r--r--offapi/com/sun/star/text/PrintSettings.idl2
-rw-r--r--offapi/com/sun/star/text/RedlinePortion.idl2
-rw-r--r--offapi/com/sun/star/text/ReferenceFieldPart.idl2
-rw-r--r--offapi/com/sun/star/text/ReferenceFieldSource.idl2
-rw-r--r--offapi/com/sun/star/text/ReferenceMark.idl6
-rw-r--r--offapi/com/sun/star/text/ReferenceMarks.idl6
-rw-r--r--offapi/com/sun/star/text/RelOrientation.idl2
-rw-r--r--offapi/com/sun/star/text/RubyAdjust.idl2
-rw-r--r--offapi/com/sun/star/text/SectionFileLink.idl56
-rw-r--r--offapi/com/sun/star/text/SetVariableType.idl62
-rw-r--r--offapi/com/sun/star/text/Shape.idl2
-rw-r--r--offapi/com/sun/star/text/SizeType.idl82
-rw-r--r--offapi/com/sun/star/text/TableColumnSeparator.idl62
-rw-r--r--offapi/com/sun/star/text/TableColumns.idl2
-rw-r--r--offapi/com/sun/star/text/TableIndex.idl74
-rw-r--r--offapi/com/sun/star/text/TableRows.idl2
-rw-r--r--offapi/com/sun/star/text/TemplateDisplayFormat.idl96
-rw-r--r--offapi/com/sun/star/text/Text.idl2
-rw-r--r--offapi/com/sun/star/text/TextColumn.idl78
-rw-r--r--offapi/com/sun/star/text/TextColumnSequence.idl6
-rw-r--r--offapi/com/sun/star/text/TextColumns.idl4
-rw-r--r--offapi/com/sun/star/text/TextContent.idl4
-rw-r--r--offapi/com/sun/star/text/TextContentAnchorType.idl96
-rw-r--r--offapi/com/sun/star/text/TextContentCollection.idl72
-rw-r--r--offapi/com/sun/star/text/TextCursor.idl2
-rw-r--r--offapi/com/sun/star/text/TextDocument.idl2
-rw-r--r--offapi/com/sun/star/text/TextDocumentView.idl100
-rw-r--r--offapi/com/sun/star/text/TextEmbeddedObject.idl12
-rw-r--r--offapi/com/sun/star/text/TextEmbeddedObjects.idl2
-rw-r--r--offapi/com/sun/star/text/TextField.idl62
-rw-r--r--offapi/com/sun/star/text/TextFieldEnumeration.idl4
-rw-r--r--offapi/com/sun/star/text/TextFieldMaster.idl2
-rw-r--r--offapi/com/sun/star/text/TextFieldMasters.idl2
-rw-r--r--offapi/com/sun/star/text/TextFields.idl58
-rwxr-xr-xoffapi/com/sun/star/text/TextFrame.idl16
-rw-r--r--offapi/com/sun/star/text/TextFrames.idl2
-rw-r--r--offapi/com/sun/star/text/TextGraphicObject.idl2
-rw-r--r--offapi/com/sun/star/text/TextGraphicObjects.idl2
-rw-r--r--offapi/com/sun/star/text/TextGridMode.idl56
-rw-r--r--offapi/com/sun/star/text/TextLayoutCursor.idl54
-rw-r--r--offapi/com/sun/star/text/TextMarkupDescriptor.idl20
-rw-r--r--offapi/com/sun/star/text/TextPageStyle.idl2
-rw-r--r--offapi/com/sun/star/text/TextPortion.idl2
-rw-r--r--offapi/com/sun/star/text/TextPortionEnumeration.idl4
-rw-r--r--offapi/com/sun/star/text/TextRange.idl4
-rw-r--r--offapi/com/sun/star/text/TextRanges.idl50
-rw-r--r--offapi/com/sun/star/text/TextSection.idl2
-rw-r--r--offapi/com/sun/star/text/TextSections.idl62
-rw-r--r--offapi/com/sun/star/text/TextSortDescriptor.idl144
-rw-r--r--offapi/com/sun/star/text/TextSortDescriptor2.idl78
-rw-r--r--offapi/com/sun/star/text/TextSortable.idl56
-rw-r--r--offapi/com/sun/star/text/TextTable.idl8
-rw-r--r--offapi/com/sun/star/text/TextTableCursor.idl2
-rw-r--r--offapi/com/sun/star/text/TextTableRow.idl2
-rw-r--r--offapi/com/sun/star/text/TextTables.idl62
-rw-r--r--offapi/com/sun/star/text/TextViewCursor.idl52
-rw-r--r--offapi/com/sun/star/text/TimeDisplayFormat.idl88
-rw-r--r--offapi/com/sun/star/text/UserDataPart.idl160
-rw-r--r--offapi/com/sun/star/text/UserDefinedIndex.idl2
-rw-r--r--offapi/com/sun/star/text/UserFieldFormat.idl64
-rw-r--r--offapi/com/sun/star/text/UserIndex.idl4
-rw-r--r--offapi/com/sun/star/text/UserIndexMark.idl2
-rw-r--r--offapi/com/sun/star/text/VertOrientation.idl124
-rw-r--r--offapi/com/sun/star/text/VertOrientationFormat.idl64
-rw-r--r--offapi/com/sun/star/text/ViewSettings.idl2
-rw-r--r--offapi/com/sun/star/text/WebDocument.idl2
-rw-r--r--offapi/com/sun/star/text/WrapInfluenceOnPosition.idl2
-rw-r--r--offapi/com/sun/star/text/WrapTextMode.idl86
-rw-r--r--offapi/com/sun/star/text/WritingMode.idl56
-rw-r--r--offapi/com/sun/star/text/WritingMode2.idl62
-rw-r--r--offapi/com/sun/star/text/XAutoTextContainer.idl132
-rw-r--r--offapi/com/sun/star/text/XAutoTextEntry.idl88
-rw-r--r--offapi/com/sun/star/text/XAutoTextGroup.idl156
-rw-r--r--offapi/com/sun/star/text/XBookmarkInsertTool.idl72
-rw-r--r--offapi/com/sun/star/text/XBookmarksSupplier.idl66
-rw-r--r--offapi/com/sun/star/text/XChapterNumberingSupplier.idl70
-rw-r--r--offapi/com/sun/star/text/XDefaultNumberingProvider.idl6
-rw-r--r--offapi/com/sun/star/text/XDependentTextField.idl92
-rw-r--r--offapi/com/sun/star/text/XDocumentIndex.idl84
-rw-r--r--offapi/com/sun/star/text/XDocumentIndexMark.idl74
-rw-r--r--offapi/com/sun/star/text/XDocumentIndexesSupplier.idl72
-rw-r--r--offapi/com/sun/star/text/XEndnotesSettingsSupplier.idl70
-rw-r--r--offapi/com/sun/star/text/XEndnotesSupplier.idl88
-rw-r--r--offapi/com/sun/star/text/XFlatParagraph.idl2
-rw-r--r--offapi/com/sun/star/text/XFlatParagraphIterator.idl2
-rw-r--r--offapi/com/sun/star/text/XFlatParagraphIteratorProvider.idl2
-rw-r--r--offapi/com/sun/star/text/XFootnote.idl70
-rw-r--r--offapi/com/sun/star/text/XFootnotesSettingsSupplier.idl64
-rw-r--r--offapi/com/sun/star/text/XFootnotesSupplier.idl80
-rw-r--r--offapi/com/sun/star/text/XFormField.idl4
-rw-r--r--offapi/com/sun/star/text/XHeaderFooter.idl62
-rw-r--r--offapi/com/sun/star/text/XHeaderFooterPageStyle.idl62
-rw-r--r--offapi/com/sun/star/text/XLineNumberingProperties.idl4
-rw-r--r--offapi/com/sun/star/text/XLineNumberingSupplier.idl78
-rw-r--r--offapi/com/sun/star/text/XMailMergeBroadcaster.idl14
-rw-r--r--offapi/com/sun/star/text/XMailMergeListener.idl8
-rw-r--r--offapi/com/sun/star/text/XModule.idl48
-rw-r--r--offapi/com/sun/star/text/XMultiTextMarkup.idl16
-rw-r--r--offapi/com/sun/star/text/XNumberingFormatter.idl6
-rw-r--r--offapi/com/sun/star/text/XNumberingRulesSupplier.idl2
-rw-r--r--offapi/com/sun/star/text/XNumberingTypeInfo.idl14
-rw-r--r--offapi/com/sun/star/text/XPageCursor.idl108
-rw-r--r--offapi/com/sun/star/text/XPagePrintable.idl2
-rw-r--r--offapi/com/sun/star/text/XParagraphAppend.idl90
-rw-r--r--offapi/com/sun/star/text/XParagraphCursor.idl98
-rw-r--r--offapi/com/sun/star/text/XRedline.idl54
-rw-r--r--offapi/com/sun/star/text/XReferenceMarksSupplier.idl76
-rw-r--r--offapi/com/sun/star/text/XRelativeTextContentInsert.idl92
-rw-r--r--offapi/com/sun/star/text/XRelativeTextContentRemove.idl84
-rw-r--r--offapi/com/sun/star/text/XRubySelection.idl2
-rw-r--r--offapi/com/sun/star/text/XSentenceCursor.idl98
-rw-r--r--offapi/com/sun/star/text/XSimpleText.idl162
-rw-r--r--offapi/com/sun/star/text/XText.idl108
-rw-r--r--offapi/com/sun/star/text/XTextAppend.idl60
-rw-r--r--offapi/com/sun/star/text/XTextAppendAndConvert.idl56
-rw-r--r--offapi/com/sun/star/text/XTextColumns.idl126
-rw-r--r--offapi/com/sun/star/text/XTextContent.idl6
-rw-r--r--offapi/com/sun/star/text/XTextContentAppend.idl82
-rw-r--r--offapi/com/sun/star/text/XTextConvert.idl104
-rw-r--r--offapi/com/sun/star/text/XTextCopy.idl54
-rw-r--r--offapi/com/sun/star/text/XTextCursor.idl14
-rw-r--r--offapi/com/sun/star/text/XTextDocument.idl82
-rw-r--r--offapi/com/sun/star/text/XTextEmbeddedObject.idl82
-rw-r--r--offapi/com/sun/star/text/XTextEmbeddedObjectsSupplier.idl66
-rw-r--r--offapi/com/sun/star/text/XTextField.idl68
-rw-r--r--offapi/com/sun/star/text/XTextFieldsSupplier.idl74
-rw-r--r--offapi/com/sun/star/text/XTextFrame.idl54
-rw-r--r--offapi/com/sun/star/text/XTextFramesSupplier.idl62
-rw-r--r--offapi/com/sun/star/text/XTextGraphicObjectsSupplier.idl64
-rw-r--r--offapi/com/sun/star/text/XTextMarkup.idl4
-rw-r--r--offapi/com/sun/star/text/XTextPortionAppend.idl86
-rw-r--r--offapi/com/sun/star/text/XTextRange.idl110
-rw-r--r--offapi/com/sun/star/text/XTextRangeCompare.idl110
-rw-r--r--offapi/com/sun/star/text/XTextRangeMover.idl76
-rw-r--r--offapi/com/sun/star/text/XTextSection.idl64
-rw-r--r--offapi/com/sun/star/text/XTextSectionsSupplier.idl64
-rw-r--r--offapi/com/sun/star/text/XTextShapesSupplier.idl62
-rw-r--r--offapi/com/sun/star/text/XTextTable.idl182
-rw-r--r--offapi/com/sun/star/text/XTextTableCursor.idl2
-rw-r--r--offapi/com/sun/star/text/XTextTablesSupplier.idl62
-rw-r--r--offapi/com/sun/star/text/XTextViewCursor.idl84
-rw-r--r--offapi/com/sun/star/text/XTextViewCursorSupplier.idl72
-rw-r--r--offapi/com/sun/star/text/XWordCursor.idl106
-rw-r--r--offapi/com/sun/star/text/fieldmaster/Bibliography.idl2
-rw-r--r--offapi/com/sun/star/text/fieldmaster/DDE.idl2
-rw-r--r--offapi/com/sun/star/text/fieldmaster/Database.idl10
-rw-r--r--offapi/com/sun/star/text/fieldmaster/SetExpression.idl2
-rw-r--r--offapi/com/sun/star/text/fieldmaster/User.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/Annotation.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/Author.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/Bibliography.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/Chapter.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/CharacterCount.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/CombinedCharacters.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/ConditionalText.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/DDE.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/Database.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/DatabaseName.idl10
-rw-r--r--offapi/com/sun/star/text/textfield/DatabaseNextSet.idl8
-rw-r--r--offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl14
-rw-r--r--offapi/com/sun/star/text/textfield/DatabaseSetNumber.idl10
-rw-r--r--offapi/com/sun/star/text/textfield/DateTime.idl6
-rw-r--r--offapi/com/sun/star/text/textfield/DropDown.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/EmbeddedObjectCount.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/ExtendedUser.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/FileName.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/GetExpression.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/GetReference.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/GraphicObjectCount.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/HiddenParagraph.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/HiddenText.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/Input.idl8
-rw-r--r--offapi/com/sun/star/text/textfield/InputUser.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/JumpEdit.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/Macro.idl2
-rwxr-xr-xoffapi/com/sun/star/text/textfield/MetadataField.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/PageCount.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/PageNumber.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/ParagraphCount.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/ReferencePageGet.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/ReferencePageSet.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/Script.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/SetExpression.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/TableCount.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/TableFormula.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/TemplateName.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/URL.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/User.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/WordCount.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/ChangeAuthor.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/ChangeDateTime.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/CreateAuthor.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/CreateDateTime.idl6
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Custom.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Description.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/EditTime.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Info0.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Info1.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Info2.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Info3.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Keywords.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/PrintAuthor.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/PrintDateTime.idl4
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Revision.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Subject.idl2
-rw-r--r--offapi/com/sun/star/text/textfield/docinfo/Title.idl2
-rw-r--r--offapi/com/sun/star/ucb/AlreadyInitializedException.idl14
-rw-r--r--offapi/com/sun/star/ucb/AnyCompareFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/AuthenticationRequest.idl6
-rw-r--r--offapi/com/sun/star/ucb/CHAOSProgressStart.idl2
-rw-r--r--offapi/com/sun/star/ucb/CachedContentResultSet.idl2
-rw-r--r--offapi/com/sun/star/ucb/CachedContentResultSetFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/CachedContentResultSetStub.idl2
-rw-r--r--offapi/com/sun/star/ucb/CachedContentResultSetStubFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/CachedDynamicResultSet.idl2
-rw-r--r--offapi/com/sun/star/ucb/CachedDynamicResultSetFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/CachedDynamicResultSetStub.idl2
-rw-r--r--offapi/com/sun/star/ucb/CachedDynamicResultSetStubFactory.idl2
-rwxr-xr-xoffapi/com/sun/star/ucb/CertificateValidationRequest.idl8
-rw-r--r--offapi/com/sun/star/ucb/Command.idl2
-rw-r--r--offapi/com/sun/star/ucb/CommandAbortedException.idl6
-rw-r--r--offapi/com/sun/star/ucb/CommandEnvironment.idl2
-rw-r--r--offapi/com/sun/star/ucb/CommandFailedException.idl6
-rw-r--r--offapi/com/sun/star/ucb/CommandInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/CommandInfoChange.idl2
-rw-r--r--offapi/com/sun/star/ucb/CommandInfoChangeEvent.idl2
-rw-r--r--offapi/com/sun/star/ucb/ConnectionMode.idl2
-rw-r--r--offapi/com/sun/star/ucb/Content.idl2
-rw-r--r--offapi/com/sun/star/ucb/ContentAction.idl12
-rw-r--r--offapi/com/sun/star/ucb/ContentCreationError.idl2
-rw-r--r--offapi/com/sun/star/ucb/ContentCreationException.idl6
-rw-r--r--offapi/com/sun/star/ucb/ContentEvent.idl2
-rw-r--r--offapi/com/sun/star/ucb/ContentInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/ContentInfoAttribute.idl2
-rw-r--r--offapi/com/sun/star/ucb/ContentProvider.idl4
-rw-r--r--offapi/com/sun/star/ucb/ContentProviderInfo.idl10
-rw-r--r--offapi/com/sun/star/ucb/ContentProviderProxy.idl4
-rw-r--r--offapi/com/sun/star/ucb/ContentProviderProxyFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/ContentResultSet.idl16
-rw-r--r--offapi/com/sun/star/ucb/ContentResultSetCapability.idl2
-rw-r--r--offapi/com/sun/star/ucb/ContentTransmitter.idl2
-rw-r--r--offapi/com/sun/star/ucb/Cookie.idl6
-rw-r--r--offapi/com/sun/star/ucb/CookiePolicy.idl6
-rw-r--r--offapi/com/sun/star/ucb/CookieRequest.idl6
-rw-r--r--offapi/com/sun/star/ucb/CrossReference.idl4
-rw-r--r--offapi/com/sun/star/ucb/DefaultHierarchyDataSource.idl2
-rw-r--r--offapi/com/sun/star/ucb/DocumentHeaderField.idl2
-rw-r--r--offapi/com/sun/star/ucb/DocumentStoreMode.idl2
-rw-r--r--offapi/com/sun/star/ucb/DuplicateCommandIdentifierException.idl6
-rw-r--r--offapi/com/sun/star/ucb/DuplicateProviderException.idl14
-rw-r--r--offapi/com/sun/star/ucb/DynamicResultSet.idl2
-rw-r--r--offapi/com/sun/star/ucb/Error.idl2
-rw-r--r--offapi/com/sun/star/ucb/ExpandContentProvider.idl10
-rw-r--r--offapi/com/sun/star/ucb/ExportStreamInfo.idl6
-rw-r--r--offapi/com/sun/star/ucb/FTPContent.idl6
-rw-r--r--offapi/com/sun/star/ucb/FTPContentProvider.idl2
-rw-r--r--offapi/com/sun/star/ucb/FetchError.idl2
-rw-r--r--offapi/com/sun/star/ucb/FetchResult.idl6
-rw-r--r--offapi/com/sun/star/ucb/FileContent.idl4
-rw-r--r--offapi/com/sun/star/ucb/FileContentProvider.idl8
-rw-r--r--offapi/com/sun/star/ucb/FileSystemNotation.idl6
-rw-r--r--offapi/com/sun/star/ucb/FolderList.idl2
-rw-r--r--offapi/com/sun/star/ucb/FolderListCommand.idl2
-rw-r--r--offapi/com/sun/star/ucb/FolderListEntry.idl2
-rw-r--r--offapi/com/sun/star/ucb/GlobalTransferCommandArgument.idl2
-rw-r--r--offapi/com/sun/star/ucb/HandleCookiesRequest.idl6
-rw-r--r--offapi/com/sun/star/ucb/HelpContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/HelpContentProvider.idl2
-rw-r--r--offapi/com/sun/star/ucb/HierarchyContentProvider.idl2
-rw-r--r--offapi/com/sun/star/ucb/HierarchyDataReadAccess.idl2
-rw-r--r--offapi/com/sun/star/ucb/HierarchyDataReadWriteAccess.idl2
-rw-r--r--offapi/com/sun/star/ucb/HierarchyDataSource.idl2
-rw-r--r--offapi/com/sun/star/ucb/HierarchyFolderContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/HierarchyLinkContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/HierarchyRootFolderContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/IOErrorCode.idl2
-rw-r--r--offapi/com/sun/star/ucb/IllegalIdentifierException.idl16
-rw-r--r--offapi/com/sun/star/ucb/InsertCommandArgument.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveAppException.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveAugmentedIOException.idl4
-rw-r--r--offapi/com/sun/star/ucb/InteractiveBadTransferURLException.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveCHAOSException.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveFileIOException.idl4
-rw-r--r--offapi/com/sun/star/ucb/InteractiveIOException.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveLockingException.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveLockingLockExpiredException.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveLockingLockedException.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveLockingNotLockedException.idl2
-rw-r--r--offapi/com/sun/star/ucb/InteractiveNetworkConnectException.idl6
-rw-r--r--offapi/com/sun/star/ucb/InteractiveNetworkException.idl8
-rw-r--r--offapi/com/sun/star/ucb/InteractiveNetworkGeneralException.idl6
-rw-r--r--offapi/com/sun/star/ucb/InteractiveNetworkOffLineException.idl6
-rw-r--r--offapi/com/sun/star/ucb/InteractiveNetworkReadException.idl6
-rw-r--r--offapi/com/sun/star/ucb/InteractiveNetworkResolveNameException.idl6
-rw-r--r--offapi/com/sun/star/ucb/InteractiveNetworkWriteException.idl6
-rw-r--r--offapi/com/sun/star/ucb/InteractiveWrongMediumException.idl8
-rw-r--r--offapi/com/sun/star/ucb/Link.idl2
-rw-r--r--offapi/com/sun/star/ucb/ListAction.idl14
-rw-r--r--offapi/com/sun/star/ucb/ListActionType.idl8
-rw-r--r--offapi/com/sun/star/ucb/ListEvent.idl4
-rw-r--r--offapi/com/sun/star/ucb/ListenerAlreadySetException.idl6
-rw-r--r--offapi/com/sun/star/ucb/Lock.idl2
-rw-r--r--offapi/com/sun/star/ucb/LockDepth.idl2
-rw-r--r--offapi/com/sun/star/ucb/LockEntry.idl2
-rw-r--r--offapi/com/sun/star/ucb/LockScope.idl2
-rw-r--r--offapi/com/sun/star/ucb/LockType.idl18
-rw-r--r--offapi/com/sun/star/ucb/MissingInputStreamException.idl6
-rw-r--r--offapi/com/sun/star/ucb/MissingPropertiesException.idl6
-rw-r--r--offapi/com/sun/star/ucb/NameClash.idl2
-rw-r--r--offapi/com/sun/star/ucb/NameClashException.idl2
-rw-r--r--offapi/com/sun/star/ucb/NameClashResolveRequest.idl6
-rw-r--r--offapi/com/sun/star/ucb/NumberedSortingInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/ODMAContent.idl6
-rw-r--r--offapi/com/sun/star/ucb/ODMAContentProvider.idl2
-rw-r--r--offapi/com/sun/star/ucb/OpenCommandArgument.idl6
-rw-r--r--offapi/com/sun/star/ucb/OpenCommandArgument2.idl6
-rw-r--r--offapi/com/sun/star/ucb/OpenMode.idl4
-rw-r--r--offapi/com/sun/star/ucb/OutgoingMessageState.idl2
-rw-r--r--offapi/com/sun/star/ucb/PackageContentProvider.idl4
-rw-r--r--offapi/com/sun/star/ucb/PackageFolderContent.idl4
-rw-r--r--offapi/com/sun/star/ucb/PackageStreamContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/PersistentPropertySet.idl4
-rw-r--r--offapi/com/sun/star/ucb/PostCommandArgument.idl2
-rw-r--r--offapi/com/sun/star/ucb/PostCommandArgument2.idl2
-rw-r--r--offapi/com/sun/star/ucb/Priority.idl2
-rw-r--r--offapi/com/sun/star/ucb/PropertiesManager.idl2
-rw-r--r--offapi/com/sun/star/ucb/PropertySetRegistry.idl2
-rw-r--r--offapi/com/sun/star/ucb/PropertyValueInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/PropertyValueState.idl2
-rw-r--r--offapi/com/sun/star/ucb/RecipientInfo.idl4
-rw-r--r--offapi/com/sun/star/ucb/RememberAuthentication.idl6
-rw-r--r--offapi/com/sun/star/ucb/RemoteAccessContentProvider.idl2
-rw-r--r--offapi/com/sun/star/ucb/RemoteContentProviderAcceptor.idl2
-rw-r--r--offapi/com/sun/star/ucb/RemoteContentProviderChangeAction.idl2
-rw-r--r--offapi/com/sun/star/ucb/RemoteContentProviderChangeEvent.idl2
-rw-r--r--offapi/com/sun/star/ucb/RemoteProxyContentProvider.idl2
-rw-r--r--offapi/com/sun/star/ucb/ResultSetException.idl6
-rw-r--r--offapi/com/sun/star/ucb/Rule.idl4
-rw-r--r--offapi/com/sun/star/ucb/RuleAction.idl2
-rw-r--r--offapi/com/sun/star/ucb/RuleOperator.idl2
-rw-r--r--offapi/com/sun/star/ucb/RuleSet.idl2
-rw-r--r--offapi/com/sun/star/ucb/RuleTerm.idl2
-rw-r--r--offapi/com/sun/star/ucb/SearchCommandArgument.idl2
-rw-r--r--offapi/com/sun/star/ucb/SearchCriterium.idl2
-rw-r--r--offapi/com/sun/star/ucb/SearchInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/SearchRecursion.idl2
-rw-r--r--offapi/com/sun/star/ucb/SendInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/SendMediaTypes.idl2
-rw-r--r--offapi/com/sun/star/ucb/ServiceNotFoundException.idl6
-rw-r--r--offapi/com/sun/star/ucb/SimpleFileAccess.idl4
-rw-r--r--offapi/com/sun/star/ucb/SortedDynamicResultSetFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/SortingInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/Store.idl2
-rw-r--r--offapi/com/sun/star/ucb/SynchronizePolicy.idl2
-rw-r--r--offapi/com/sun/star/ucb/TransferCommandOperation.idl2
-rw-r--r--offapi/com/sun/star/ucb/TransferInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/TransferResult.idl2
-rw-r--r--offapi/com/sun/star/ucb/TransientDocumentsContentProvider.idl2
-rw-r--r--offapi/com/sun/star/ucb/TransientDocumentsDocumentContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/TransientDocumentsFolderContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/TransientDocumentsRootContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/TransientDocumentsStreamContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/URLAuthenticationRequest.idl2
-rw-r--r--offapi/com/sun/star/ucb/UniversalContentBroker.idl16
-rw-r--r--offapi/com/sun/star/ucb/UnsupportedCommandException.idl8
-rw-r--r--offapi/com/sun/star/ucb/UnsupportedDataSinkException.idl6
-rw-r--r--offapi/com/sun/star/ucb/UnsupportedNameClashException.idl30
-rw-r--r--offapi/com/sun/star/ucb/UnsupportedOpenModeException.idl6
-rw-r--r--offapi/com/sun/star/ucb/VerificationMode.idl2
-rw-r--r--offapi/com/sun/star/ucb/WebDAVContentProvider.idl12
-rw-r--r--offapi/com/sun/star/ucb/WebDAVDocumentContent.idl4
-rw-r--r--offapi/com/sun/star/ucb/WebDAVFolderContent.idl2
-rw-r--r--offapi/com/sun/star/ucb/WelcomeDynamicResultSetStruct.idl6
-rw-r--r--offapi/com/sun/star/ucb/XAnyCompare.idl6
-rw-r--r--offapi/com/sun/star/ucb/XAnyCompareFactory.idl4
-rw-r--r--offapi/com/sun/star/ucb/XCachedContentResultSetFactory.idl6
-rw-r--r--offapi/com/sun/star/ucb/XCachedContentResultSetStubFactory.idl6
-rw-r--r--offapi/com/sun/star/ucb/XCachedDynamicResultSetFactory.idl8
-rw-r--r--offapi/com/sun/star/ucb/XCachedDynamicResultSetStubFactory.idl8
-rw-r--r--offapi/com/sun/star/ucb/XCommandEnvironment.idl2
-rw-r--r--offapi/com/sun/star/ucb/XCommandInfo.idl2
-rw-r--r--offapi/com/sun/star/ucb/XCommandInfoChangeListener.idl4
-rw-r--r--offapi/com/sun/star/ucb/XCommandInfoChangeNotifier.idl4
-rw-r--r--offapi/com/sun/star/ucb/XCommandProcessor.idl6
-rw-r--r--offapi/com/sun/star/ucb/XCommandProcessor2.idl6
-rw-r--r--offapi/com/sun/star/ucb/XContent.idl4
-rw-r--r--offapi/com/sun/star/ucb/XContentAccess.idl10
-rw-r--r--offapi/com/sun/star/ucb/XContentCreator.idl2
-rw-r--r--offapi/com/sun/star/ucb/XContentEventListener.idl10
-rw-r--r--offapi/com/sun/star/ucb/XContentIdentifier.idl12
-rw-r--r--offapi/com/sun/star/ucb/XContentIdentifierFactory.idl14
-rw-r--r--offapi/com/sun/star/ucb/XContentIdentifierMapping.idl12
-rw-r--r--offapi/com/sun/star/ucb/XContentProvider.idl6
-rw-r--r--offapi/com/sun/star/ucb/XContentProviderFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/XContentProviderManager.idl20
-rw-r--r--offapi/com/sun/star/ucb/XContentProviderSupplier.idl2
-rw-r--r--offapi/com/sun/star/ucb/XContentTransmitter.idl14
-rw-r--r--offapi/com/sun/star/ucb/XDataContainer.idl6
-rw-r--r--offapi/com/sun/star/ucb/XDynamicResultSet.idl22
-rw-r--r--offapi/com/sun/star/ucb/XDynamicResultSetListener.idl8
-rw-r--r--offapi/com/sun/star/ucb/XFetchProvider.idl4
-rw-r--r--offapi/com/sun/star/ucb/XFetchProviderForContentAccess.idl8
-rw-r--r--offapi/com/sun/star/ucb/XFileIdentifierConverter.idl6
-rw-r--r--offapi/com/sun/star/ucb/XInteractionCookieHandling.idl2
-rw-r--r--offapi/com/sun/star/ucb/XInteractionHandlerSupplier.idl10
-rw-r--r--offapi/com/sun/star/ucb/XInteractionReplaceExistingData.idl2
-rw-r--r--offapi/com/sun/star/ucb/XInteractionSupplyAuthentication.idl60
-rw-r--r--offapi/com/sun/star/ucb/XInteractionSupplyAuthentication2.idl2
-rw-r--r--offapi/com/sun/star/ucb/XInteractionSupplyName.idl2
-rw-r--r--offapi/com/sun/star/ucb/XParameterizedContentProvider.idl4
-rw-r--r--offapi/com/sun/star/ucb/XPersistentPropertySet.idl2
-rw-r--r--offapi/com/sun/star/ucb/XProgressHandler.idl14
-rw-r--r--offapi/com/sun/star/ucb/XPropertyMatcher.idl4
-rw-r--r--offapi/com/sun/star/ucb/XPropertyMatcherFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/XPropertySetRegistry.idl2
-rw-r--r--offapi/com/sun/star/ucb/XPropertySetRegistryFactory.idl2
-rw-r--r--offapi/com/sun/star/ucb/XRecycler.idl4
-rw-r--r--offapi/com/sun/star/ucb/XRemoteContentProviderAcceptor.idl4
-rw-r--r--offapi/com/sun/star/ucb/XRemoteContentProviderActivator.idl4
-rw-r--r--offapi/com/sun/star/ucb/XRemoteContentProviderChangeListener.idl2
-rw-r--r--offapi/com/sun/star/ucb/XRemoteContentProviderChangeNotifier.idl2
-rw-r--r--offapi/com/sun/star/ucb/XRemoteContentProviderConnectionControl.idl2
-rw-r--r--offapi/com/sun/star/ucb/XRemoteContentProviderDistributor.idl2
-rw-r--r--offapi/com/sun/star/ucb/XRemoteContentProviderDoneListener.idl2
-rw-r--r--offapi/com/sun/star/ucb/XRemoteContentProviderSupplier.idl2
-rw-r--r--offapi/com/sun/star/ucb/XSimpleFileAccess.idl2
-rw-r--r--offapi/com/sun/star/ucb/XSimpleFileAccess2.idl2
-rw-r--r--offapi/com/sun/star/ucb/XSimpleFileAccess3.idl2
-rw-r--r--offapi/com/sun/star/ucb/XSortedDynamicResultSetFactory.idl6
-rw-r--r--offapi/com/sun/star/ucb/XSourceInitialization.idl6
-rw-r--r--offapi/com/sun/star/ucb/XWebDAVCommandEnvironment.idl12
-rw-r--r--offapi/com/sun/star/ui/ActionTrigger.idl2
-rw-r--r--offapi/com/sun/star/ui/ActionTriggerContainer.idl2
-rw-r--r--offapi/com/sun/star/ui/ActionTriggerSeparator.idl2
-rw-r--r--offapi/com/sun/star/ui/ActionTriggerSeparatorType.idl2
-rw-r--r--offapi/com/sun/star/ui/ConfigurableUIElement.idl30
-rw-r--r--offapi/com/sun/star/ui/ConfigurationEvent.idl8
-rw-r--r--offapi/com/sun/star/ui/ContextMenuExecuteEvent.idl2
-rw-r--r--offapi/com/sun/star/ui/ContextMenuInterceptorAction.idl2
-rw-r--r--offapi/com/sun/star/ui/DockingArea.idl16
-rw-r--r--offapi/com/sun/star/ui/GlobalAcceleratorConfiguration.idl6
-rw-r--r--offapi/com/sun/star/ui/ImageType.idl4
-rw-r--r--offapi/com/sun/star/ui/ItemDescriptor.idl28
-rw-r--r--offapi/com/sun/star/ui/ItemStyle.idl38
-rw-r--r--offapi/com/sun/star/ui/ItemType.idl6
-rw-r--r--offapi/com/sun/star/ui/ModuleUICategoryDescription.idl24
-rw-r--r--offapi/com/sun/star/ui/ModuleUICommandDescription.idl24
-rw-r--r--offapi/com/sun/star/ui/ModuleUIConfigurationManager.idl24
-rw-r--r--offapi/com/sun/star/ui/ModuleUIConfigurationManagerSupplier.idl12
-rw-r--r--offapi/com/sun/star/ui/ModuleWindowStateConfiguration.idl30
-rw-r--r--offapi/com/sun/star/ui/UICategoryDescription.idl30
-rw-r--r--offapi/com/sun/star/ui/UICommandDescription.idl12
-rw-r--r--offapi/com/sun/star/ui/UIConfigurationManager.idl10
-rw-r--r--offapi/com/sun/star/ui/UIElement.idl26
-rw-r--r--offapi/com/sun/star/ui/UIElementFactory.idl22
-rw-r--r--offapi/com/sun/star/ui/UIElementFactoryManager.idl18
-rw-r--r--offapi/com/sun/star/ui/UIElementSettings.idl14
-rw-r--r--offapi/com/sun/star/ui/UIElementType.idl4
-rw-r--r--offapi/com/sun/star/ui/WindowContentFactory.idl14
-rw-r--r--offapi/com/sun/star/ui/WindowStateConfiguration.idl16
-rw-r--r--offapi/com/sun/star/ui/XAcceleratorConfiguration.idl86
-rw-r--r--offapi/com/sun/star/ui/XContextMenuInterception.idl2
-rw-r--r--offapi/com/sun/star/ui/XContextMenuInterceptor.idl2
-rw-r--r--offapi/com/sun/star/ui/XDockingAreaAcceptor.idl38
-rw-r--r--offapi/com/sun/star/ui/XImageManager.idl108
-rw-r--r--offapi/com/sun/star/ui/XModuleUIConfigurationManager.idl2
-rw-r--r--offapi/com/sun/star/ui/XModuleUIConfigurationManagerSupplier.idl18
-rw-r--r--offapi/com/sun/star/ui/XToolPanel.idl4
-rw-r--r--offapi/com/sun/star/ui/XUIConfiguration.idl32
-rw-r--r--offapi/com/sun/star/ui/XUIConfigurationListener.idl40
-rw-r--r--offapi/com/sun/star/ui/XUIConfigurationManager.idl162
-rw-r--r--offapi/com/sun/star/ui/XUIConfigurationManagerSupplier.idl16
-rw-r--r--offapi/com/sun/star/ui/XUIConfigurationPersistence.idl52
-rw-r--r--offapi/com/sun/star/ui/XUIConfigurationStorage.idl40
-rw-r--r--offapi/com/sun/star/ui/XUIElement.idl30
-rw-r--r--offapi/com/sun/star/ui/XUIElementFactory.idl66
-rw-r--r--offapi/com/sun/star/ui/XUIElementFactoryRegistration.idl38
-rw-r--r--offapi/com/sun/star/ui/XUIElementSettings.idl54
-rw-r--r--offapi/com/sun/star/ui/XUIFunctionListener.idl12
-rw-r--r--offapi/com/sun/star/ui/dialogs/CommonFilePickerElementIds.idl12
-rw-r--r--offapi/com/sun/star/ui/dialogs/ControlActions.idl20
-rw-r--r--offapi/com/sun/star/ui/dialogs/DialogClosedEvent.idl2
-rw-r--r--offapi/com/sun/star/ui/dialogs/ExecutableDialogException.idl2
-rw-r--r--offapi/com/sun/star/ui/dialogs/ExecutableDialogResults.idl6
-rw-r--r--offapi/com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.idl42
-rw-r--r--offapi/com/sun/star/ui/dialogs/FilePicker.idl36
-rw-r--r--offapi/com/sun/star/ui/dialogs/FilePickerEvent.idl6
-rw-r--r--offapi/com/sun/star/ui/dialogs/FilePreviewImageFormats.idl6
-rw-r--r--offapi/com/sun/star/ui/dialogs/FilterOptionsDialog.idl10
-rw-r--r--offapi/com/sun/star/ui/dialogs/FolderPicker.idl12
-rw-r--r--offapi/com/sun/star/ui/dialogs/ListboxControlActions.idl14
-rw-r--r--offapi/com/sun/star/ui/dialogs/TemplateDescription.idl16
-rw-r--r--offapi/com/sun/star/ui/dialogs/Wizard.idl4
-rw-r--r--offapi/com/sun/star/ui/dialogs/WizardButton.idl2
-rw-r--r--offapi/com/sun/star/ui/dialogs/WizardTravelType.idl2
-rw-r--r--offapi/com/sun/star/ui/dialogs/XAsynchronousExecutableDialog.idl4
-rw-r--r--offapi/com/sun/star/ui/dialogs/XControlAccess.idl26
-rw-r--r--offapi/com/sun/star/ui/dialogs/XControlInformation.idl34
-rw-r--r--offapi/com/sun/star/ui/dialogs/XDialogClosedListener.idl2
-rw-r--r--offapi/com/sun/star/ui/dialogs/XExecutableDialog.idl14
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilePicker.idl62
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilePicker2.idl8
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilePickerControlAccess.idl34
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilePickerListener.idl14
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilePickerNotifier.idl4
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilePreview.idl18
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilterGroupManager.idl6
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilterManager.idl14
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFolderPicker.idl30
-rw-r--r--offapi/com/sun/star/ui/dialogs/XWizardController.idl2
-rw-r--r--offapi/com/sun/star/ui/dialogs/XWizardPage.idl2
-rw-r--r--offapi/com/sun/star/util/AliasProgrammaticPair.idl46
-rw-r--r--offapi/com/sun/star/util/AtomClassRequest.idl6
-rw-r--r--offapi/com/sun/star/util/AtomDescription.idl6
-rw-r--r--offapi/com/sun/star/util/CellProtection.idl58
-rw-r--r--offapi/com/sun/star/util/ChangesEvent.idl84
-rw-r--r--offapi/com/sun/star/util/ChangesSet.idl8
-rw-r--r--offapi/com/sun/star/util/CloseVetoException.idl2
-rw-r--r--offapi/com/sun/star/util/Color.idl8
-rw-r--r--offapi/com/sun/star/util/DataEditorEvent.idl50
-rw-r--r--offapi/com/sun/star/util/DataEditorEventType.idl38
-rw-r--r--offapi/com/sun/star/util/Date.idl56
-rw-r--r--offapi/com/sun/star/util/DateTime.idl88
-rw-r--r--offapi/com/sun/star/util/DateTimeRange.idl118
-rw-r--r--offapi/com/sun/star/util/DiskFullException.idl46
-rw-r--r--offapi/com/sun/star/util/Duration.idl2
-rw-r--r--offapi/com/sun/star/util/ElementChange.idl58
-rw-r--r--offapi/com/sun/star/util/Endianness.idl6
-rw-r--r--offapi/com/sun/star/util/FileIOException.idl44
-rw-r--r--offapi/com/sun/star/util/InvalidStateException.idl4
-rw-r--r--offapi/com/sun/star/util/JobManager.idl2
-rw-r--r--offapi/com/sun/star/util/Language.idl6
-rw-r--r--offapi/com/sun/star/util/MalformedNumberFormatException.idl54
-rw-r--r--offapi/com/sun/star/util/MeasureUnit.idl36
-rw-r--r--offapi/com/sun/star/util/ModeChangeEvent.idl8
-rw-r--r--offapi/com/sun/star/util/NotNumericException.idl46
-rw-r--r--offapi/com/sun/star/util/NumberFormat.idl136
-rw-r--r--offapi/com/sun/star/util/NumberFormatProperties.idl76
-rw-r--r--offapi/com/sun/star/util/NumberFormatSettings.idl88
-rw-r--r--offapi/com/sun/star/util/NumberFormats.idl60
-rw-r--r--offapi/com/sun/star/util/NumberFormatsSupplier.idl2
-rw-r--r--offapi/com/sun/star/util/NumberFormatter.idl60
-rw-r--r--offapi/com/sun/star/util/OfficeInstallationDirectories.idl2
-rw-r--r--offapi/com/sun/star/util/PathSettings.idl72
-rw-r--r--offapi/com/sun/star/util/PathSubstitution.idl6
-rw-r--r--offapi/com/sun/star/util/ReplaceDescriptor.idl62
-rw-r--r--offapi/com/sun/star/util/RevisionTag.idl2
-rw-r--r--offapi/com/sun/star/util/SearchDescriptor.idl136
-rw-r--r--offapi/com/sun/star/util/SortDescriptor.idl86
-rw-r--r--offapi/com/sun/star/util/SortDescriptor2.idl2
-rw-r--r--offapi/com/sun/star/util/SortField.idl58
-rw-r--r--offapi/com/sun/star/util/SortFieldType.idl56
-rw-r--r--offapi/com/sun/star/util/Sortable.idl56
-rw-r--r--offapi/com/sun/star/util/TextSearch.idl2
-rw-r--r--offapi/com/sun/star/util/Time.idl58
-rw-r--r--offapi/com/sun/star/util/TriState.idl42
-rw-r--r--offapi/com/sun/star/util/URL.idl2
-rw-r--r--offapi/com/sun/star/util/URLTransformer.idl50
-rw-r--r--offapi/com/sun/star/util/UriAbbreviation.idl2
-rw-r--r--offapi/com/sun/star/util/VetoException.idl2
-rw-r--r--offapi/com/sun/star/util/XArchiver.idl104
-rw-r--r--offapi/com/sun/star/util/XAtomServer.idl6
-rw-r--r--offapi/com/sun/star/util/XBroadcaster.idl46
-rw-r--r--offapi/com/sun/star/util/XCancelManager.idl68
-rw-r--r--offapi/com/sun/star/util/XCancellable.idl52
-rw-r--r--offapi/com/sun/star/util/XChainable.idl94
-rw-r--r--offapi/com/sun/star/util/XChangesBatch.idl90
-rw-r--r--offapi/com/sun/star/util/XChangesListener.idl64
-rw-r--r--offapi/com/sun/star/util/XChangesNotifier.idl60
-rw-r--r--offapi/com/sun/star/util/XChangesSet.idl82
-rw-r--r--offapi/com/sun/star/util/XCloneable.idl52
-rw-r--r--offapi/com/sun/star/util/XCloseBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/util/XCloseListener.idl2
-rw-r--r--offapi/com/sun/star/util/XCloseable.idl2
-rw-r--r--offapi/com/sun/star/util/XDataEditor.idl68
-rw-r--r--offapi/com/sun/star/util/XDataEditorListener.idl50
-rw-r--r--offapi/com/sun/star/util/XFlushListener.idl60
-rw-r--r--offapi/com/sun/star/util/XFlushable.idl72
-rw-r--r--offapi/com/sun/star/util/XImportable.idl72
-rw-r--r--offapi/com/sun/star/util/XIndent.idl56
-rw-r--r--offapi/com/sun/star/util/XJobManager.idl2
-rw-r--r--offapi/com/sun/star/util/XLinkUpdate.idl2
-rw-r--r--offapi/com/sun/star/util/XLocalizedAliases.idl140
-rw-r--r--offapi/com/sun/star/util/XMergeable.idl60
-rw-r--r--offapi/com/sun/star/util/XModeChangeApproveListener.idl2
-rw-r--r--offapi/com/sun/star/util/XModeChangeBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/util/XModeChangeListener.idl8
-rw-r--r--offapi/com/sun/star/util/XModeSelector.idl84
-rw-r--r--offapi/com/sun/star/util/XModifiable.idl82
-rw-r--r--offapi/com/sun/star/util/XModifiable2.idl62
-rw-r--r--offapi/com/sun/star/util/XModifyBroadcaster.idl70
-rw-r--r--offapi/com/sun/star/util/XModifyListener.idl64
-rw-r--r--offapi/com/sun/star/util/XNumberFormatPreviewer.idl108
-rw-r--r--offapi/com/sun/star/util/XNumberFormatTypes.idl4
-rw-r--r--offapi/com/sun/star/util/XNumberFormats.idl182
-rw-r--r--offapi/com/sun/star/util/XNumberFormatsSupplier.idl82
-rw-r--r--offapi/com/sun/star/util/XNumberFormatter.idl180
-rw-r--r--offapi/com/sun/star/util/XOfficeInstallationDirectories.idl2
-rw-r--r--offapi/com/sun/star/util/XPropertyReplace.idl118
-rw-r--r--offapi/com/sun/star/util/XProtectable.idl76
-rw-r--r--offapi/com/sun/star/util/XRefreshListener.idl60
-rw-r--r--offapi/com/sun/star/util/XRefreshable.idl72
-rw-r--r--offapi/com/sun/star/util/XReplaceDescriptor.idl60
-rw-r--r--offapi/com/sun/star/util/XReplaceable.idl80
-rw-r--r--offapi/com/sun/star/util/XSearchDescriptor.idl60
-rw-r--r--offapi/com/sun/star/util/XSearchable.idl106
-rw-r--r--offapi/com/sun/star/util/XSimpleErrorHandler.idl52
-rw-r--r--offapi/com/sun/star/util/XSortable.idl82
-rw-r--r--offapi/com/sun/star/util/XStringAbbreviation.idl2
-rw-r--r--offapi/com/sun/star/util/XStringEscape.idl62
-rw-r--r--offapi/com/sun/star/util/XStringMapping.idl48
-rw-r--r--offapi/com/sun/star/util/XStringSubstitution.idl70
-rw-r--r--offapi/com/sun/star/util/XStringWidth.idl2
-rw-r--r--offapi/com/sun/star/util/XTextSearch.idl44
-rw-r--r--offapi/com/sun/star/util/XTimeStamped.idl22
-rw-r--r--offapi/com/sun/star/util/XURLTransformer.idl24
-rw-r--r--offapi/com/sun/star/util/XUniqueIDFactory.idl44
-rw-r--r--offapi/com/sun/star/util/XUpdatable.idl2
-rw-r--r--offapi/com/sun/star/view/DocumentZoomType.idl6
-rw-r--r--offapi/com/sun/star/view/DuplexMode.idl52
-rw-r--r--offapi/com/sun/star/view/OfficeDocumentView.idl84
-rw-r--r--offapi/com/sun/star/view/PaperFormat.idl92
-rw-r--r--offapi/com/sun/star/view/PaperOrientation.idl50
-rw-r--r--offapi/com/sun/star/view/PrintJobEvent.idl4
-rw-r--r--offapi/com/sun/star/view/PrintOptions.idl88
-rw-r--r--offapi/com/sun/star/view/PrintSettings.idl110
-rw-r--r--offapi/com/sun/star/view/PrintableState.idl38
-rw-r--r--offapi/com/sun/star/view/PrintableStateEvent.idl38
-rw-r--r--offapi/com/sun/star/view/PrinterDescriptor.idl124
-rw-r--r--offapi/com/sun/star/view/RenderDescriptor.idl46
-rw-r--r--offapi/com/sun/star/view/RenderOptions.idl94
-rw-r--r--offapi/com/sun/star/view/SelectionType.idl52
-rw-r--r--offapi/com/sun/star/view/ViewSettings.idl72
-rw-r--r--offapi/com/sun/star/view/XControlAccess.idl78
-rw-r--r--offapi/com/sun/star/view/XFormLayerAccess.idl12
-rw-r--r--offapi/com/sun/star/view/XLineCursor.idl74
-rw-r--r--offapi/com/sun/star/view/XMultiSelectionSupplier.idl86
-rw-r--r--offapi/com/sun/star/view/XPrintJob.idl2
-rw-r--r--offapi/com/sun/star/view/XPrintJobBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/view/XPrintJobListener.idl2
-rw-r--r--offapi/com/sun/star/view/XPrintPreview.idl6
-rw-r--r--offapi/com/sun/star/view/XPrintSettingsSupplier.idl68
-rw-r--r--offapi/com/sun/star/view/XPrintable.idl96
-rw-r--r--offapi/com/sun/star/view/XPrintableBroadcaster.idl22
-rw-r--r--offapi/com/sun/star/view/XPrintableListener.idl28
-rw-r--r--offapi/com/sun/star/view/XRenderable.idl116
-rw-r--r--offapi/com/sun/star/view/XScreenCursor.idl58
-rw-r--r--offapi/com/sun/star/view/XSelectionChangeListener.idl64
-rw-r--r--offapi/com/sun/star/view/XSelectionSupplier.idl98
-rw-r--r--offapi/com/sun/star/view/XViewCursor.idl84
-rw-r--r--offapi/com/sun/star/view/XViewSettingsSupplier.idl64
-rw-r--r--offapi/com/sun/star/xforms/Binding.idl2
-rw-r--r--offapi/com/sun/star/xforms/InvalidDataOnSubmitException.idl4
-rw-r--r--offapi/com/sun/star/xforms/XDataTypeRepository.idl26
-rw-r--r--offapi/com/sun/star/xforms/XFormsEvent.idl8
-rw-r--r--offapi/com/sun/star/xforms/XFormsSupplier.idl68
-rw-r--r--offapi/com/sun/star/xforms/XFormsUIHelper1.idl112
-rw-r--r--offapi/com/sun/star/xforms/XModel.idl86
-rw-r--r--offapi/com/sun/star/xforms/XSubmission.idl2
-rw-r--r--offapi/com/sun/star/xml/Attribute.idl32
-rw-r--r--offapi/com/sun/star/xml/AttributeContainer.idl16
-rw-r--r--offapi/com/sun/star/xml/AttributeData.idl54
-rw-r--r--offapi/com/sun/star/xml/ExportFilter.idl28
-rw-r--r--offapi/com/sun/star/xml/FastAttribute.idl30
-rw-r--r--offapi/com/sun/star/xml/ImportFilter.idl6
-rw-r--r--offapi/com/sun/star/xml/NamespaceContainer.idl8
-rw-r--r--offapi/com/sun/star/xml/ParaUserDefinedAttributesSupplier.idl8
-rw-r--r--offapi/com/sun/star/xml/TextUserDefinedAttributesSupplier.idl8
-rw-r--r--offapi/com/sun/star/xml/UserDefinedAttributeSupplier.idl8
-rw-r--r--offapi/com/sun/star/xml/UserDefinedAttributesSupplier.idl8
-rw-r--r--offapi/com/sun/star/xml/XExportFilter.idl30
-rw-r--r--offapi/com/sun/star/xml/XImportFilter.idl34
-rw-r--r--offapi/com/sun/star/xml/XMLExportFilter.idl14
-rw-r--r--offapi/com/sun/star/xml/XMLImportFilter.idl12
-rw-r--r--offapi/com/sun/star/xml/crypto/SEInitializer.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/SecurityEnvironment.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/SecurityOperationStatus.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/XMLEncryption.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/XMLEncryptionException.idl20
-rw-r--r--offapi/com/sun/star/xml/crypto/XMLEncryptionTemplate.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/XMLSecurityContext.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/XMLSignature.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/XMLSignatureException.idl20
-rw-r--r--offapi/com/sun/star/xml/crypto/XMLSignatureTemplate.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/XSEInitializer.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl14
-rw-r--r--offapi/com/sun/star/xml/crypto/XUriBinding.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/XXMLEncryption.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/XXMLEncryptionTemplate.idl8
-rw-r--r--offapi/com/sun/star/xml/crypto/XXMLSecurityContext.idl8
-rw-r--r--offapi/com/sun/star/xml/crypto/XXMLSecurityTemplate.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/XXMLSignature.idl10
-rw-r--r--offapi/com/sun/star/xml/crypto/XXMLSignatureTemplate.idl10
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/Decryptor.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/Encryptor.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/SAXEventKeeper.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/SignatureCreator.idl2
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/SignatureVerifier.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XBlockerMonitor.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XDecryptionResultBroadcaster.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XDecryptionResultListener.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XElementStackKeeper.idl14
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XEncryptionResultBroadcaster.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XEncryptionResultListener.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XKeyCollector.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XMissionTaker.idl2
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XReferenceCollector.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XReferenceResolvedBroadcaster.idl8
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XReferenceResolvedListener.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSAXEventKeeper.idl22
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSAXEventKeeperStatusChangeBroadcaster.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSAXEventKeeperStatusChangeListener.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSecurityController.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSecuritySAXEventKeeper.idl10
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSignatureCreationResultBroadcaster.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSignatureCreationResultListener.idl4
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSignatureVerifyResultBroadcaster.idl6
-rw-r--r--offapi/com/sun/star/xml/crypto/sax/XSignatureVerifyResultListener.idl4
-rw-r--r--offapi/com/sun/star/xml/csax/XCompressedDocumentHandler.idl70
-rw-r--r--offapi/com/sun/star/xml/dom/DOMException.idl44
-rw-r--r--offapi/com/sun/star/xml/dom/DOMExceptionType.idl30
-rw-r--r--offapi/com/sun/star/xml/dom/NodeType.idl2
-rw-r--r--offapi/com/sun/star/xml/dom/SAXDocumentBuilderState.idl4
-rw-r--r--offapi/com/sun/star/xml/dom/XAttr.idl16
-rw-r--r--offapi/com/sun/star/xml/dom/XCDATASection.idl8
-rw-r--r--offapi/com/sun/star/xml/dom/XCharacterData.idl26
-rw-r--r--offapi/com/sun/star/xml/dom/XComment.idl6
-rw-r--r--offapi/com/sun/star/xml/dom/XDOMImplementation.idl32
-rw-r--r--offapi/com/sun/star/xml/dom/XDocument.idl68
-rw-r--r--offapi/com/sun/star/xml/dom/XDocumentBuilder.idl68
-rw-r--r--offapi/com/sun/star/xml/dom/XDocumentFragment.idl6
-rw-r--r--offapi/com/sun/star/xml/dom/XDocumentType.idl14
-rw-r--r--offapi/com/sun/star/xml/dom/XElement.idl18
-rw-r--r--offapi/com/sun/star/xml/dom/XEntity.idl8
-rw-r--r--offapi/com/sun/star/xml/dom/XEntityReference.idl6
-rw-r--r--offapi/com/sun/star/xml/dom/XNamedNodeMap.idl8
-rw-r--r--offapi/com/sun/star/xml/dom/XNode.idl126
-rw-r--r--offapi/com/sun/star/xml/dom/XNodeList.idl6
-rw-r--r--offapi/com/sun/star/xml/dom/XNotation.idl6
-rw-r--r--offapi/com/sun/star/xml/dom/XProcessingInstruction.idl6
-rw-r--r--offapi/com/sun/star/xml/dom/XSAXDocumentBuilder.idl20
-rw-r--r--offapi/com/sun/star/xml/dom/XText.idl8
-rw-r--r--offapi/com/sun/star/xml/dom/events/AttrChangeType.idl2
-rw-r--r--offapi/com/sun/star/xml/dom/events/EventException.idl4
-rw-r--r--offapi/com/sun/star/xml/dom/events/EventType.idl6
-rw-r--r--offapi/com/sun/star/xml/dom/events/PhaseType.idl2
-rw-r--r--offapi/com/sun/star/xml/dom/events/XDocumentEvent.idl4
-rw-r--r--offapi/com/sun/star/xml/dom/events/XEvent.idl10
-rw-r--r--offapi/com/sun/star/xml/dom/events/XEventListener.idl6
-rw-r--r--offapi/com/sun/star/xml/dom/events/XEventTarget.idl12
-rw-r--r--offapi/com/sun/star/xml/dom/events/XMouseEvent.idl32
-rw-r--r--offapi/com/sun/star/xml/dom/events/XMutationEvent.idl18
-rw-r--r--offapi/com/sun/star/xml/dom/events/XUIEvent.idl14
-rw-r--r--offapi/com/sun/star/xml/dom/views/XAbstractView.idl4
-rw-r--r--offapi/com/sun/star/xml/dom/views/XDocumentView.idl4
-rw-r--r--offapi/com/sun/star/xml/input/SaxDocumentHandler.idl4
-rw-r--r--offapi/com/sun/star/xml/input/XAttributes.idl28
-rw-r--r--offapi/com/sun/star/xml/input/XElement.idl22
-rw-r--r--offapi/com/sun/star/xml/input/XNamespaceMapping.idl8
-rw-r--r--offapi/com/sun/star/xml/input/XRoot.idl12
-rw-r--r--offapi/com/sun/star/xml/sax/FastShapeContextHandler.idl2
-rw-r--r--offapi/com/sun/star/xml/sax/FastToken.idl44
-rw-r--r--offapi/com/sun/star/xml/sax/FastTokenHandler.idl2
-rw-r--r--offapi/com/sun/star/xml/sax/InputSource.idl88
-rw-r--r--offapi/com/sun/star/xml/sax/SAXException.idl62
-rw-r--r--offapi/com/sun/star/xml/sax/SAXInvalidCharacterException.idl2
-rw-r--r--offapi/com/sun/star/xml/sax/SAXParseException.idl80
-rw-r--r--offapi/com/sun/star/xml/sax/XAttributeList.idl118
-rw-r--r--offapi/com/sun/star/xml/sax/XDTDHandler.idl88
-rw-r--r--offapi/com/sun/star/xml/sax/XDocumentHandler.idl160
-rw-r--r--offapi/com/sun/star/xml/sax/XEntityResolver.idl78
-rw-r--r--offapi/com/sun/star/xml/sax/XErrorHandler.idl86
-rw-r--r--offapi/com/sun/star/xml/sax/XExtendedDocumentHandler.idl108
-rw-r--r--offapi/com/sun/star/xml/sax/XFastAttributeList.idl38
-rw-r--r--offapi/com/sun/star/xml/sax/XFastContextHandler.idl124
-rw-r--r--offapi/com/sun/star/xml/sax/XFastDocumentHandler.idl106
-rw-r--r--offapi/com/sun/star/xml/sax/XFastParser.idl186
-rw-r--r--offapi/com/sun/star/xml/sax/XFastSAXSerializable.idl12
-rw-r--r--offapi/com/sun/star/xml/sax/XFastSerializer.idl156
-rw-r--r--offapi/com/sun/star/xml/sax/XFastShapeContextHandler.idl2
-rw-r--r--offapi/com/sun/star/xml/sax/XFastTokenHandler.idl4
-rw-r--r--offapi/com/sun/star/xml/sax/XLocator.idl82
-rw-r--r--offapi/com/sun/star/xml/sax/XParser.idl170
-rw-r--r--offapi/com/sun/star/xml/sax/XSAXSerializable.idl8
-rw-r--r--offapi/com/sun/star/xml/wrapper/XMLDocumentWrapper.idl4
-rw-r--r--offapi/com/sun/star/xml/wrapper/XMLElementWrapper.idl4
-rw-r--r--offapi/com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl34
-rw-r--r--offapi/com/sun/star/xml/wrapper/XXMLElementWrapper.idl4
-rw-r--r--offapi/com/sun/star/xml/xpath/Libxml2ExtensionHandle.idl32
-rw-r--r--offapi/com/sun/star/xml/xpath/XPathException.idl2
-rw-r--r--offapi/com/sun/star/xml/xpath/XPathObjectType.idl2
-rw-r--r--offapi/com/sun/star/xml/xpath/XXPathAPI.idl2
-rw-r--r--offapi/com/sun/star/xml/xpath/XXPathExtension.idl4
-rw-r--r--offapi/com/sun/star/xml/xpath/XXPathObject.idl16
-rw-r--r--offapi/com/sun/star/xsd/Boolean.idl2
-rw-r--r--offapi/com/sun/star/xsd/DataTypeClass.idl2
-rw-r--r--offapi/com/sun/star/xsd/Date.idl2
-rw-r--r--offapi/com/sun/star/xsd/DateTime.idl2
-rw-r--r--offapi/com/sun/star/xsd/Day.idl2
-rw-r--r--offapi/com/sun/star/xsd/Decimal.idl4
-rw-r--r--offapi/com/sun/star/xsd/Month.idl2
-rw-r--r--offapi/com/sun/star/xsd/String.idl2
-rw-r--r--offapi/com/sun/star/xsd/Time.idl2
-rw-r--r--offapi/com/sun/star/xsd/WhiteSpaceTreatment.idl2
-rw-r--r--offapi/com/sun/star/xsd/XDataType.idl4
-rw-r--r--offapi/com/sun/star/xsd/Year.idl2
-rw-r--r--offapi/drafts/com/sun/star/form/IncompatibleTypesException.idl2
-rw-r--r--offapi/drafts/com/sun/star/form/ListEntryEvent.idl2
-rw-r--r--offapi/drafts/com/sun/star/form/XBindableValue.idl4
-rw-r--r--offapi/drafts/com/sun/star/form/XListEntryListener.idl2
-rw-r--r--offapi/drafts/com/sun/star/form/XListEntrySink.idl2
-rw-r--r--offapi/drafts/com/sun/star/form/XListEntrySource.idl2
-rw-r--r--offapi/drafts/com/sun/star/form/XValueBinding.idl4
-rwxr-xr-xoffapi/util/checknewapi.pl34
-rw-r--r--officecfg/registry/data/org/openoffice/FirstStartWizard.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Inet.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Interaction.xcu2
-rwxr-xr-xofficecfg/registry/data/org/openoffice/Office/Accelerators.xcu24
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Calc.xcu2
-rwxr-xr-xofficecfg/registry/data/org/openoffice/Office/Canvas.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Common.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Compatibility.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/DataAccess.xcu80
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Embedding.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/ExtensionManager.xcu4
-rwxr-xr-xofficecfg/registry/data/org/openoffice/Office/FormWizard.xcu22
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Histories.xcu10
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Impress.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Jobs.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Labels.xcu8
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Linguistic.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Logging.xcu2
-rwxr-xr-xofficecfg/registry/data/org/openoffice/Office/Math.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Paths.xcu6
-rw-r--r--officecfg/registry/data/org/openoffice/Office/ProtocolHandler.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/SFX.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Scripting.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Security.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/TableWizard.xcu2112
-rw-r--r--officecfg/registry/data/org/openoffice/Office/TypeDetection.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI.xcu56
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/BaseWindowState.xcu10
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/BasicIDEWindowState.xcu12
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/BibliographyCommands.xcu20
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu6
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/ChartCommands.xcu52
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/ChartWindowState.xcu6
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/DbQueryWindowState.xcu6
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/DbRelationWindowState.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/DbTableWindowState.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/DbuCommands.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/DrawWindowState.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu668
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/Factories.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/GenericCategories.xcu54
-rwxr-xr-xofficecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu6
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/MathWindowState.xcu8
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/StartModuleCommands.xcu16
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/StartModuleWindowState.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/WriterFormWindowState.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/WriterReportWindowState.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/WriterWebWindowState.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/UI/XFormsWindowState.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Views.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/WebWizard.xcu108
-rw-r--r--officecfg/registry/data/org/openoffice/Office/Writer.xcu68
-rw-r--r--officecfg/registry/data/org/openoffice/Setup.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/TypeDetection/UISort.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/UserProfile.xcu2
-rw-r--r--officecfg/registry/data/org/openoffice/VCL.xcu4
-rw-r--r--officecfg/registry/data/org/openoffice/ucb/Configuration.xcu2
-rwxr-xr-xofficecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Writer.xcs12
-rw-r--r--officecfg/registry/schema/org/openoffice/Setup.xcs9
-rw-r--r--[-rwxr-xr-x]ooo_custom_images/dev_nologo_broffice/introabout/intro.pngbin14999 -> 12219 bytes-rw-r--r--[-rwxr-xr-x]ooo_custom_images/nologo_broffice/introabout/intro.pngbin11692 -> 9412 bytes-rw-r--r--oovbaapi/genconstidl/api-to-idl.pl10
-rw-r--r--oovbaapi/ooo/vba/ControlProvider.idl6
-rw-r--r--oovbaapi/ooo/vba/XApplicationBase.idl4
-rw-r--r--oovbaapi/ooo/vba/XAssistant.idl6
-rw-r--r--oovbaapi/ooo/vba/XCollection.idl4
-rw-r--r--oovbaapi/ooo/vba/XCommandBar.idl6
-rw-r--r--oovbaapi/ooo/vba/XCommandBarButton.idl4
-rw-r--r--oovbaapi/ooo/vba/XCommandBarControl.idl4
-rw-r--r--oovbaapi/ooo/vba/XCommandBarControls.idl4
-rw-r--r--oovbaapi/ooo/vba/XCommandBarPopup.idl4
-rw-r--r--oovbaapi/ooo/vba/XCommandBars.idl4
-rw-r--r--oovbaapi/ooo/vba/XControlProvider.idl6
-rw-r--r--oovbaapi/ooo/vba/XDialogBase.idl14
-rw-r--r--oovbaapi/ooo/vba/XDialogsBase.idl14
-rw-r--r--oovbaapi/ooo/vba/XDocumentBase.idl4
-rw-r--r--oovbaapi/ooo/vba/XDocumentProperties.idl6
-rw-r--r--oovbaapi/ooo/vba/XDocumentProperty.idl8
-rw-r--r--oovbaapi/ooo/vba/XDocumentsBase.idl4
-rw-r--r--oovbaapi/ooo/vba/XErrObject.idl4
-rw-r--r--oovbaapi/ooo/vba/XFontBase.idl2
-rw-r--r--oovbaapi/ooo/vba/XGlobalsBase.idl2
-rw-r--r--oovbaapi/ooo/vba/XHelperInterface.idl4
-rw-r--r--oovbaapi/ooo/vba/XPageSetupBase.idl2
-rw-r--r--oovbaapi/ooo/vba/XPropValue.idl4
-rwxr-xr-xoovbaapi/ooo/vba/XVBAAppService.idl8
-rwxr-xr-xoovbaapi/ooo/vba/XVBADocService.idl10
-rw-r--r--oovbaapi/ooo/vba/XVBAToOOEventDescGen.idl8
-rw-r--r--oovbaapi/ooo/vba/XWindowBase.idl12
-rw-r--r--oovbaapi/ooo/vba/excel/Globals.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/Hyperlink.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/Range.idl2
-rwxr-xr-xoovbaapi/ooo/vba/excel/SheetObject.idl10
-rwxr-xr-xoovbaapi/ooo/vba/excel/SheetObjects.idl8
-rw-r--r--oovbaapi/ooo/vba/excel/TextFrame.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/Window.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/Workbook.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/Worksheet.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/XApplication.idl12
-rw-r--r--oovbaapi/ooo/vba/excel/XAxes.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XAxis.idl88
-rw-r--r--oovbaapi/ooo/vba/excel/XAxisTitle.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XBorder.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XBorders.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XCharacters.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XChart.idl10
-rw-r--r--oovbaapi/ooo/vba/excel/XChartObject.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XChartObjects.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XChartTitle.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XCharts.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XComment.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/XComments.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/XDataLabel.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XDataLabels.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XDialog.idl12
-rw-r--r--oovbaapi/ooo/vba/excel/XDialogs.idl12
-rw-r--r--oovbaapi/ooo/vba/excel/XFont.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XFormat.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XFormatCondition.idl18
-rw-r--r--oovbaapi/ooo/vba/excel/XFormatConditions.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XGlobals.idl9
-rw-r--r--oovbaapi/ooo/vba/excel/XHPageBreak.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XHPageBreaks.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XHyperlink.idl10
-rwxr-xr-xoovbaapi/ooo/vba/excel/XHyperlinks.idl12
-rw-r--r--oovbaapi/ooo/vba/excel/XInterior.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XName.idl14
-rw-r--r--oovbaapi/ooo/vba/excel/XNames.idl18
-rw-r--r--oovbaapi/ooo/vba/excel/XOLEObject.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XOLEObjects.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XOutline.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XPageBreak.idl8
-rw-r--r--oovbaapi/ooo/vba/excel/XPageSetup.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XPane.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/XPivotCache.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XPivotTable.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XPivotTables.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XRange.idl20
-rw-r--r--oovbaapi/ooo/vba/excel/XSeries.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XSeriesCollection.idl10
-rw-r--r--oovbaapi/ooo/vba/excel/XStyle.idl34
-rw-r--r--oovbaapi/ooo/vba/excel/XStyles.idl8
-rw-r--r--oovbaapi/ooo/vba/excel/XTextFrame.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/XTitle.idl42
-rw-r--r--oovbaapi/ooo/vba/excel/XVPageBreak.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XVPageBreaks.idl8
-rw-r--r--oovbaapi/ooo/vba/excel/XValidation.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XWindow.idl18
-rw-r--r--oovbaapi/ooo/vba/excel/XWindows.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XWorkbook.idl6
-rw-r--r--oovbaapi/ooo/vba/excel/XWorkbooks.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XWorksheet.idl12
-rw-r--r--oovbaapi/ooo/vba/excel/XWorksheetFunction.idl4
-rw-r--r--oovbaapi/ooo/vba/excel/XWorksheets.idl20
-rw-r--r--oovbaapi/ooo/vba/excel/XlBuildInDialog.idl20
-rw-r--r--oovbaapi/ooo/vba/msforms/MSFormReturnTypes.idl10
-rw-r--r--oovbaapi/ooo/vba/msforms/XButton.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XColorFormat.idl2
-rw-r--r--oovbaapi/ooo/vba/msforms/XComboBox.idl4
-rw-r--r--oovbaapi/ooo/vba/msforms/XControl.idl4
-rw-r--r--oovbaapi/ooo/vba/msforms/XControls.idl4
-rw-r--r--oovbaapi/ooo/vba/msforms/XFillFormat.idl2
-rw-r--r--oovbaapi/ooo/vba/msforms/XGroupBox.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XImage.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XLabel.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XLineFormat.idl2
-rw-r--r--oovbaapi/ooo/vba/msforms/XListBox.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XMultiPage.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XPages.idl4
-rw-r--r--oovbaapi/ooo/vba/msforms/XPictureFormat.idl2
-rw-r--r--oovbaapi/ooo/vba/msforms/XProgressBar.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XRadioButton.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XScrollBar.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XShape.idl2
-rw-r--r--oovbaapi/ooo/vba/msforms/XShapeRange.idl4
-rw-r--r--oovbaapi/ooo/vba/msforms/XShapes.idl4
-rw-r--r--oovbaapi/ooo/vba/msforms/XSpinButton.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XTextBox.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XTextBoxShape.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XTextFrame.idl2
-rw-r--r--oovbaapi/ooo/vba/msforms/XToggleButton.idl6
-rw-r--r--oovbaapi/ooo/vba/msforms/XUserForm.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XAddin.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XAddins.idl6
-rw-r--r--oovbaapi/ooo/vba/word/XApplication.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XAutoTextEntries.idl6
-rw-r--r--oovbaapi/ooo/vba/word/XAutoTextEntry.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XBookmark.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XBookmarks.idl6
-rw-r--r--oovbaapi/ooo/vba/word/XBorder.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XBorders.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XDialog.idl12
-rw-r--r--oovbaapi/ooo/vba/word/XDialogs.idl12
-rw-r--r--oovbaapi/ooo/vba/word/XDocument.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XDocuments.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XField.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XFields.idl2
-rw-r--r--oovbaapi/ooo/vba/word/XFind.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XFont.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XGlobals.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XHeaderFooter.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XOptions.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XPageSetup.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XPane.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XPanes.idl6
-rw-r--r--oovbaapi/ooo/vba/word/XParagraph.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XParagraphFormat.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XParagraphs.idl6
-rw-r--r--oovbaapi/ooo/vba/word/XRange.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XReplacement.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XSection.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XSections.idl8
-rw-r--r--oovbaapi/ooo/vba/word/XSelection.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XStyle.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XStyles.idl6
-rw-r--r--oovbaapi/ooo/vba/word/XSystem.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XTable.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XTables.idl2
-rw-r--r--oovbaapi/ooo/vba/word/XTemplate.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XVariable.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XVariables.idl6
-rw-r--r--oovbaapi/ooo/vba/word/XView.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XWindow.idl4
-rw-r--r--oovbaapi/ooo/vba/word/XWrapFormat.idl2
-rwxr-xr-xoowintool1
-rw-r--r--oox/inc/oox/core/binarycodec.hxx2
-rw-r--r--oox/inc/oox/core/binaryfilterbase.hxx2
-rw-r--r--oox/inc/oox/core/contexthandler.hxx2
-rw-r--r--oox/inc/oox/core/contexthandler2.hxx2
-rw-r--r--oox/inc/oox/core/fasttokenhandler.hxx2
-rw-r--r--oox/inc/oox/core/filterbase.hxx2
-rw-r--r--oox/inc/oox/core/filterdetect.hxx2
-rw-r--r--oox/inc/oox/core/fragmenthandler.hxx2
-rw-r--r--oox/inc/oox/core/fragmenthandler2.hxx2
-rw-r--r--oox/inc/oox/core/recordparser.hxx2
-rw-r--r--oox/inc/oox/core/relations.hxx2
-rw-r--r--oox/inc/oox/core/relationshandler.hxx2
-rw-r--r--oox/inc/oox/core/xmlfilterbase.hxx2
-rw-r--r--oox/inc/oox/dllapi.h2
-rw-r--r--oox/inc/oox/drawingml/chart/axiscontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/axisconverter.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/axismodel.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/chartcontextbase.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/chartconverter.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/chartspacefragment.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/chartspacemodel.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/converterbase.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/datasourcecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/datasourceconverter.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/datasourcemodel.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/modelbase.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/objectformatter.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/plotareacontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/plotareaconverter.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/plotareamodel.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/seriescontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/seriesconverter.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/seriesmodel.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/titlecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/titleconverter.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/titlemodel.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/typegroupcontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/typegroupconverter.hxx2
-rw-r--r--oox/inc/oox/drawingml/chart/typegroupmodel.hxx2
-rw-r--r--oox/inc/oox/drawingml/clrscheme.hxx6
-rw-r--r--oox/inc/oox/drawingml/clrschemecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/color.hxx2
-rw-r--r--oox/inc/oox/drawingml/colorchoicecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/connectorshapecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/customshapegeometry.hxx2
-rw-r--r--oox/inc/oox/drawingml/customshapeproperties.hxx72
-rw-r--r--oox/inc/oox/drawingml/diagram/datamodelcontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/diagram/diagram.hxx2
-rw-r--r--oox/inc/oox/drawingml/diagram/diagramfragmenthandler.hxx10
-rw-r--r--oox/inc/oox/drawingml/diagram/diagramlayoutatoms.hxx4
-rw-r--r--oox/inc/oox/drawingml/drawingmltypes.hxx2
-rw-r--r--oox/inc/oox/drawingml/embeddedwavaudiofile.hxx2
-rw-r--r--oox/inc/oox/drawingml/fillproperties.hxx2
-rw-r--r--oox/inc/oox/drawingml/fillpropertiesgroupcontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/graphicshapecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/guidcontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/lineproperties.hxx2
-rw-r--r--oox/inc/oox/drawingml/linepropertiescontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/objectdefaultcontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/shape.hxx26
-rw-r--r--oox/inc/oox/drawingml/shapecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/shapegroupcontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/shapepropertiescontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/shapestylecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/spdefcontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/table/tablebackgroundstylecontext.hxx4
-rw-r--r--oox/inc/oox/drawingml/table/tablecell.hxx70
-rw-r--r--oox/inc/oox/drawingml/table/tablecellcontext.hxx4
-rw-r--r--oox/inc/oox/drawingml/table/tablecontext.hxx4
-rw-r--r--oox/inc/oox/drawingml/table/tablepartstylecontext.hxx4
-rw-r--r--oox/inc/oox/drawingml/table/tableproperties.hxx44
-rw-r--r--oox/inc/oox/drawingml/table/tablerow.hxx2
-rw-r--r--oox/inc/oox/drawingml/table/tablerowcontext.hxx4
-rw-r--r--oox/inc/oox/drawingml/table/tablestyle.hxx70
-rw-r--r--oox/inc/oox/drawingml/table/tablestylecellstylecontext.hxx8
-rw-r--r--oox/inc/oox/drawingml/table/tablestylecontext.hxx4
-rw-r--r--oox/inc/oox/drawingml/table/tablestylelist.hxx10
-rw-r--r--oox/inc/oox/drawingml/table/tablestylelistfragmenthandler.hxx4
-rw-r--r--oox/inc/oox/drawingml/table/tablestylepart.hxx36
-rw-r--r--oox/inc/oox/drawingml/table/tablestyletextstylecontext.hxx4
-rw-r--r--oox/inc/oox/drawingml/textbody.hxx2
-rw-r--r--oox/inc/oox/drawingml/textbodycontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/textbodyproperties.hxx2
-rw-r--r--oox/inc/oox/drawingml/textbodypropertiescontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/textcharacterproperties.hxx2
-rw-r--r--oox/inc/oox/drawingml/textcharacterpropertiescontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/textfield.hxx2
-rw-r--r--oox/inc/oox/drawingml/textfieldcontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/textfont.hxx2
-rw-r--r--oox/inc/oox/drawingml/textliststyle.hxx2
-rw-r--r--oox/inc/oox/drawingml/textliststylecontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/textparagraph.hxx2
-rw-r--r--oox/inc/oox/drawingml/textparagraphproperties.hxx28
-rw-r--r--oox/inc/oox/drawingml/textparagraphpropertiescontext.hxx6
-rw-r--r--oox/inc/oox/drawingml/textrun.hxx2
-rw-r--r--oox/inc/oox/drawingml/textspacing.hxx4
-rw-r--r--oox/inc/oox/drawingml/theme.hxx2
-rw-r--r--oox/inc/oox/drawingml/themeelementscontext.hxx2
-rw-r--r--oox/inc/oox/drawingml/themefragmenthandler.hxx2
-rw-r--r--oox/inc/oox/drawingml/transform2dcontext.hxx2
-rw-r--r--oox/inc/oox/dump/biffdumper.hxx2
-rw-r--r--oox/inc/oox/dump/dffdumper.hxx2
-rw-r--r--oox/inc/oox/dump/dumperbase.hxx2
-rw-r--r--oox/inc/oox/dump/oledumper.hxx4
-rw-r--r--oox/inc/oox/dump/pptxdumper.hxx2
-rw-r--r--oox/inc/oox/dump/xlsbdumper.hxx2
-rw-r--r--oox/inc/oox/export/shapes.hxx2
-rw-r--r--oox/inc/oox/export/utils.hxx2
-rw-r--r--oox/inc/oox/export/vmlexport.hxx4
-rw-r--r--oox/inc/oox/helper/attributelist.hxx2
-rw-r--r--oox/inc/oox/helper/binaryinputstream.hxx4
-rw-r--r--oox/inc/oox/helper/binaryoutputstream.hxx2
-rw-r--r--oox/inc/oox/helper/binarystreambase.hxx2
-rw-r--r--oox/inc/oox/helper/containerhelper.hxx4
-rw-r--r--oox/inc/oox/helper/graphichelper.hxx8
-rw-r--r--oox/inc/oox/helper/helper.hxx2
-rw-r--r--oox/inc/oox/helper/modelobjecthelper.hxx2
-rw-r--r--oox/inc/oox/helper/progressbar.hxx2
-rw-r--r--oox/inc/oox/helper/propertymap.hxx2
-rw-r--r--oox/inc/oox/helper/propertyset.hxx2
-rw-r--r--oox/inc/oox/helper/recordinputstream.hxx2
-rw-r--r--oox/inc/oox/helper/storagebase.hxx2
-rw-r--r--oox/inc/oox/helper/zipstorage.hxx2
-rwxr-xr-xoox/inc/oox/ole/axbinaryreader.hxx4
-rw-r--r--oox/inc/oox/ole/axcontrol.hxx6
-rw-r--r--oox/inc/oox/ole/axcontrolfragment.hxx2
-rw-r--r--oox/inc/oox/ole/olehelper.hxx4
-rw-r--r--oox/inc/oox/ole/oleobjecthelper.hxx2
-rwxr-xr-xoox/inc/oox/ole/olestorage.hxx4
-rwxr-xr-xoox/inc/oox/ole/vbacontrol.hxx4
-rwxr-xr-xoox/inc/oox/ole/vbahelper.hxx2
-rw-r--r--oox/inc/oox/ole/vbainputstream.hxx2
-rw-r--r--oox/inc/oox/ppt/animationspersist.hxx2
-rw-r--r--oox/inc/oox/ppt/backgroundproperties.hxx2
-rw-r--r--oox/inc/oox/ppt/headerfooter.hxx2
-rw-r--r--oox/inc/oox/ppt/layoutfragmenthandler.hxx2
-rw-r--r--oox/inc/oox/ppt/pptimport.hxx18
-rw-r--r--oox/inc/oox/ppt/pptshape.hxx4
-rw-r--r--oox/inc/oox/ppt/pptshapecontext.hxx2
-rw-r--r--oox/inc/oox/ppt/pptshapegroupcontext.hxx2
-rw-r--r--oox/inc/oox/ppt/pptshapepropertiescontext.hxx2
-rw-r--r--oox/inc/oox/ppt/presentationfragmenthandler.hxx4
-rw-r--r--oox/inc/oox/ppt/slidefragmenthandler.hxx2
-rw-r--r--oox/inc/oox/ppt/slidemastertextstylescontext.hxx2
-rw-r--r--oox/inc/oox/ppt/slidepersist.hxx42
-rw-r--r--oox/inc/oox/ppt/slidetimingcontext.hxx2
-rw-r--r--oox/inc/oox/ppt/slidetransition.hxx2
-rw-r--r--oox/inc/oox/ppt/slidetransitioncontext.hxx2
-rw-r--r--oox/inc/oox/ppt/soundactioncontext.hxx2
-rw-r--r--oox/inc/oox/ppt/timenode.hxx6
-rw-r--r--oox/inc/oox/ppt/timenodelistcontext.hxx2
-rw-r--r--oox/inc/oox/token/propertylist.hxx2
-rw-r--r--oox/inc/oox/token/tokenmap.hxx2
-rw-r--r--oox/inc/oox/vml/vmldrawing.hxx2
-rw-r--r--oox/inc/oox/vml/vmldrawingfragment.hxx2
-rw-r--r--oox/inc/oox/vml/vmlformatting.hxx2
-rw-r--r--oox/inc/oox/vml/vmlinputstream.hxx2
-rw-r--r--oox/inc/oox/vml/vmlshape.hxx2
-rw-r--r--oox/inc/oox/vml/vmlshapecontainer.hxx2
-rw-r--r--oox/inc/oox/vml/vmlshapecontext.hxx2
-rw-r--r--oox/inc/oox/xls/addressconverter.hxx2
-rw-r--r--oox/inc/oox/xls/autofiltercontext.hxx2
-rw-r--r--oox/inc/oox/xls/biffcodec.hxx2
-rw-r--r--oox/inc/oox/xls/biffdetector.hxx2
-rw-r--r--oox/inc/oox/xls/biffhelper.hxx2
-rw-r--r--oox/inc/oox/xls/biffinputstream.hxx2
-rw-r--r--oox/inc/oox/xls/biffoutputstream.hxx2
-rw-r--r--oox/inc/oox/xls/chartsheetfragment.hxx2
-rw-r--r--oox/inc/oox/xls/commentsbuffer.hxx2
-rw-r--r--oox/inc/oox/xls/commentsfragment.hxx2
-rw-r--r--oox/inc/oox/xls/condformatbuffer.hxx2
-rw-r--r--oox/inc/oox/xls/condformatcontext.hxx2
-rw-r--r--oox/inc/oox/xls/connectionsfragment.hxx2
-rw-r--r--oox/inc/oox/xls/defnamesbuffer.hxx2
-rw-r--r--oox/inc/oox/xls/drawingfragment.hxx2
-rw-r--r--oox/inc/oox/xls/excelchartconverter.hxx2
-rw-r--r--oox/inc/oox/xls/excelfilter.hxx2
-rw-r--r--oox/inc/oox/xls/excelhandlers.hxx2
-rw-r--r--oox/inc/oox/xls/externallinkbuffer.hxx2
-rw-r--r--oox/inc/oox/xls/externallinkfragment.hxx2
-rw-r--r--oox/inc/oox/xls/formulabase.hxx2
-rw-r--r--oox/inc/oox/xls/formulaparser.hxx2
-rw-r--r--oox/inc/oox/xls/numberformatsbuffer.hxx2
-rw-r--r--oox/inc/oox/xls/ooxformulaparser.hxx2
-rw-r--r--oox/inc/oox/xls/pagesettings.hxx2
-rw-r--r--oox/inc/oox/xls/pivotcachebuffer.hxx2
-rw-r--r--oox/inc/oox/xls/pivotcachefragment.hxx2
-rw-r--r--oox/inc/oox/xls/pivottablebuffer.hxx2
-rw-r--r--oox/inc/oox/xls/pivottablefragment.hxx2
-rw-r--r--oox/inc/oox/xls/querytablefragment.hxx2
-rw-r--r--oox/inc/oox/xls/richstring.hxx2
-rw-r--r--oox/inc/oox/xls/richstringcontext.hxx2
-rw-r--r--oox/inc/oox/xls/scenariobuffer.hxx2
-rw-r--r--oox/inc/oox/xls/scenariocontext.hxx2
-rw-r--r--oox/inc/oox/xls/sharedformulabuffer.hxx2
-rw-r--r--oox/inc/oox/xls/sharedstringsbuffer.hxx2
-rw-r--r--oox/inc/oox/xls/sharedstringsfragment.hxx2
-rw-r--r--oox/inc/oox/xls/sheetdatacontext.hxx2
-rw-r--r--oox/inc/oox/xls/stylesbuffer.hxx2
-rw-r--r--oox/inc/oox/xls/stylesfragment.hxx2
-rw-r--r--oox/inc/oox/xls/tablebuffer.hxx2
-rw-r--r--oox/inc/oox/xls/tablefragment.hxx2
-rw-r--r--oox/inc/oox/xls/themebuffer.hxx2
-rw-r--r--oox/inc/oox/xls/unitconverter.hxx2
-rw-r--r--oox/inc/oox/xls/viewsettings.hxx2
-rw-r--r--oox/inc/oox/xls/webquerybuffer.hxx2
-rw-r--r--oox/inc/oox/xls/workbookfragment.hxx2
-rw-r--r--oox/inc/oox/xls/workbookhelper.hxx4
-rw-r--r--oox/inc/oox/xls/workbooksettings.hxx2
-rw-r--r--oox/inc/oox/xls/worksheetbuffer.hxx2
-rw-r--r--oox/inc/oox/xls/worksheetfragment.hxx2
-rw-r--r--oox/inc/oox/xls/worksheethelper.hxx2
-rw-r--r--oox/inc/oox/xls/worksheetsettings.hxx2
-rw-r--r--oox/prj/d.lst1
-rw-r--r--oox/source/core/binarycodec.cxx2
-rw-r--r--oox/source/core/binaryfilterbase.cxx2
-rw-r--r--oox/source/core/contexthandler.cxx2
-rw-r--r--oox/source/core/contexthandler2.cxx2
-rw-r--r--oox/source/core/facreg.cxx18
-rw-r--r--oox/source/core/fasttokenhandler.cxx2
-rw-r--r--oox/source/core/filterbase.cxx2
-rw-r--r--oox/source/core/filterdetect.cxx2
-rw-r--r--oox/source/core/fragmenthandler.cxx2
-rw-r--r--oox/source/core/fragmenthandler2.cxx2
-rw-r--r--oox/source/core/recordparser.cxx2
-rw-r--r--oox/source/core/relations.cxx2
-rw-r--r--oox/source/core/relationshandler.cxx2
-rw-r--r--oox/source/core/xmlfilterbase.cxx2
-rw-r--r--oox/source/docprop/docprophandler.cxx2
-rw-r--r--oox/source/docprop/docprophandler.hxx2
-rw-r--r--oox/source/docprop/ooxmldocpropimport.cxx2
-rw-r--r--oox/source/docprop/ooxmldocpropimport.hxx2
-rw-r--r--oox/source/drawingml/chart/axiscontext.cxx2
-rw-r--r--oox/source/drawingml/chart/axisconverter.cxx2
-rw-r--r--oox/source/drawingml/chart/axismodel.cxx2
-rw-r--r--oox/source/drawingml/chart/chartcontextbase.cxx2
-rw-r--r--oox/source/drawingml/chart/chartconverter.cxx2
-rw-r--r--oox/source/drawingml/chart/chartspaceconverter.cxx2
-rw-r--r--oox/source/drawingml/chart/chartspacefragment.cxx2
-rw-r--r--oox/source/drawingml/chart/chartspacemodel.cxx2
-rw-r--r--oox/source/drawingml/chart/converterbase.cxx8
-rw-r--r--oox/source/drawingml/chart/datasourcecontext.cxx2
-rw-r--r--oox/source/drawingml/chart/datasourceconverter.cxx2
-rw-r--r--oox/source/drawingml/chart/datasourcemodel.cxx2
-rw-r--r--oox/source/drawingml/chart/modelbase.cxx2
-rw-r--r--oox/source/drawingml/chart/objectformatter.cxx2
-rw-r--r--oox/source/drawingml/chart/plotareacontext.cxx2
-rw-r--r--oox/source/drawingml/chart/plotareaconverter.cxx2
-rw-r--r--oox/source/drawingml/chart/plotareamodel.cxx2
-rw-r--r--oox/source/drawingml/chart/seriescontext.cxx2
-rw-r--r--oox/source/drawingml/chart/seriesconverter.cxx2
-rw-r--r--oox/source/drawingml/chart/seriesmodel.cxx2
-rw-r--r--oox/source/drawingml/chart/titlecontext.cxx2
-rw-r--r--oox/source/drawingml/chart/titleconverter.cxx2
-rw-r--r--oox/source/drawingml/chart/typegroupcontext.cxx2
-rw-r--r--oox/source/drawingml/chart/typegroupconverter.cxx2
-rw-r--r--oox/source/drawingml/chart/typegroupmodel.cxx2
-rw-r--r--oox/source/drawingml/clrscheme.cxx2
-rw-r--r--oox/source/drawingml/clrschemecontext.cxx2
-rw-r--r--oox/source/drawingml/color.cxx2
-rw-r--r--oox/source/drawingml/colorchoicecontext.cxx2
-rw-r--r--oox/source/drawingml/connectorshapecontext.cxx2
-rw-r--r--oox/source/drawingml/customshapegeometry.cxx240
-rw-r--r--oox/source/drawingml/customshapeproperties.cxx12
-rw-r--r--oox/source/drawingml/diagram/datamodelcontext.cxx2
-rw-r--r--oox/source/drawingml/diagram/diagram.cxx4
-rw-r--r--oox/source/drawingml/diagram/diagramdefinitioncontext.cxx2
-rw-r--r--oox/source/drawingml/diagram/diagramdefinitioncontext.hxx2
-rw-r--r--oox/source/drawingml/diagram/diagramfragmenthandler.cxx2
-rw-r--r--oox/source/drawingml/diagram/diagramlayoutatoms.cxx2
-rw-r--r--oox/source/drawingml/diagram/layoutnodecontext.cxx8
-rw-r--r--oox/source/drawingml/diagram/layoutnodecontext.hxx2
-rw-r--r--oox/source/drawingml/drawingmltypes.cxx2
-rw-r--r--oox/source/drawingml/embeddedwavaudiofile.cxx2
-rw-r--r--oox/source/drawingml/fillproperties.cxx2
-rw-r--r--oox/source/drawingml/fillpropertiesgroupcontext.cxx2
-rw-r--r--oox/source/drawingml/graphicshapecontext.cxx10
-rw-r--r--oox/source/drawingml/guidcontext.cxx2
-rw-r--r--oox/source/drawingml/hyperlinkcontext.cxx10
-rw-r--r--oox/source/drawingml/hyperlinkcontext.hxx2
-rw-r--r--oox/source/drawingml/lineproperties.cxx2
-rw-r--r--oox/source/drawingml/linepropertiescontext.cxx2
-rw-r--r--oox/source/drawingml/objectdefaultcontext.cxx2
-rw-r--r--oox/source/drawingml/shape.cxx10
-rw-r--r--oox/source/drawingml/shapecontext.cxx6
-rw-r--r--oox/source/drawingml/shapegroupcontext.cxx10
-rw-r--r--oox/source/drawingml/shapepropertiescontext.cxx14
-rw-r--r--oox/source/drawingml/shapestylecontext.cxx2
-rw-r--r--oox/source/drawingml/spdefcontext.cxx2
-rw-r--r--oox/source/drawingml/table/tablebackgroundstylecontext.cxx10
-rw-r--r--oox/source/drawingml/table/tablecell.cxx18
-rw-r--r--oox/source/drawingml/table/tablecellcontext.cxx16
-rw-r--r--oox/source/drawingml/table/tablecontext.cxx14
-rw-r--r--oox/source/drawingml/table/tablepartstylecontext.cxx6
-rw-r--r--oox/source/drawingml/table/tableproperties.cxx12
-rw-r--r--oox/source/drawingml/table/tablerow.cxx2
-rw-r--r--oox/source/drawingml/table/tablerowcontext.cxx8
-rw-r--r--oox/source/drawingml/table/tablestyle.cxx2
-rw-r--r--oox/source/drawingml/table/tablestylecellstylecontext.cxx12
-rw-r--r--oox/source/drawingml/table/tablestylecontext.cxx32
-rw-r--r--oox/source/drawingml/table/tablestylelist.cxx2
-rw-r--r--oox/source/drawingml/table/tablestylelistfragmenthandler.cxx8
-rw-r--r--oox/source/drawingml/table/tablestylepart.cxx2
-rw-r--r--oox/source/drawingml/table/tablestyletextstylecontext.cxx16
-rw-r--r--oox/source/drawingml/textbody.cxx2
-rw-r--r--oox/source/drawingml/textbodycontext.cxx18
-rw-r--r--oox/source/drawingml/textbodypropertiescontext.cxx26
-rw-r--r--oox/source/drawingml/textcharacterproperties.cxx2
-rw-r--r--oox/source/drawingml/textcharacterpropertiescontext.cxx22
-rw-r--r--oox/source/drawingml/textfield.cxx2
-rw-r--r--oox/source/drawingml/textfieldcontext.cxx2
-rw-r--r--oox/source/drawingml/textfont.cxx2
-rw-r--r--oox/source/drawingml/textliststyle.cxx4
-rw-r--r--oox/source/drawingml/textliststylecontext.cxx4
-rw-r--r--oox/source/drawingml/textparagraph.cxx2
-rw-r--r--oox/source/drawingml/textparagraphproperties.cxx4
-rw-r--r--oox/source/drawingml/textparagraphpropertiescontext.cxx46
-rw-r--r--oox/source/drawingml/textrun.cxx2
-rw-r--r--oox/source/drawingml/textspacingcontext.cxx2
-rw-r--r--oox/source/drawingml/textspacingcontext.hxx2
-rw-r--r--oox/source/drawingml/texttabstoplistcontext.cxx2
-rw-r--r--oox/source/drawingml/texttabstoplistcontext.hxx2
-rw-r--r--oox/source/drawingml/theme.cxx2
-rw-r--r--oox/source/drawingml/themeelementscontext.cxx6
-rw-r--r--oox/source/drawingml/themefragmenthandler.cxx2
-rw-r--r--oox/source/drawingml/transform2dcontext.cxx12
-rw-r--r--oox/source/dump/biffdumper.cxx4
-rw-r--r--oox/source/dump/dffdumper.cxx2
-rw-r--r--oox/source/dump/dumperbase.cxx2
-rw-r--r--oox/source/dump/oledumper.cxx2
-rw-r--r--oox/source/dump/pptxdumper.cxx2
-rw-r--r--oox/source/dump/xlsbdumper.cxx2
-rw-r--r--oox/source/export/drawingml.cxx2
-rw-r--r--oox/source/export/preset-definitions-to-shape-types.pl46
-rw-r--r--oox/source/export/shapes.cxx12
-rw-r--r--oox/source/export/vmlexport.cxx10
-rw-r--r--oox/source/helper/attributelist.cxx2
-rw-r--r--oox/source/helper/binaryinputstream.cxx2
-rw-r--r--oox/source/helper/binaryoutputstream.cxx2
-rw-r--r--oox/source/helper/binarystreambase.cxx2
-rw-r--r--oox/source/helper/containerhelper.cxx2
-rw-r--r--oox/source/helper/graphichelper.cxx2
-rw-r--r--oox/source/helper/modelobjecthelper.cxx2
-rw-r--r--oox/source/helper/progressbar.cxx2
-rw-r--r--oox/source/helper/propertymap.cxx2
-rw-r--r--oox/source/helper/propertyset.cxx2
-rw-r--r--oox/source/helper/recordinputstream.cxx2
-rw-r--r--oox/source/helper/storagebase.cxx2
-rwxr-xr-xoox/source/helper/textinputstream.cxx4
-rw-r--r--oox/source/helper/zipstorage.cxx2
-rwxr-xr-xoox/source/ole/axbinaryreader.cxx2
-rw-r--r--oox/source/ole/axcontrol.cxx6
-rw-r--r--oox/source/ole/axcontrolfragment.cxx2
-rw-r--r--oox/source/ole/olehelper.cxx2
-rw-r--r--oox/source/ole/oleobjecthelper.cxx2
-rwxr-xr-xoox/source/ole/olestorage.cxx4
-rwxr-xr-xoox/source/ole/vbacontrol.cxx4
-rw-r--r--oox/source/ole/vbainputstream.cxx2
-rwxr-xr-xoox/source/ole/vbamodule.cxx2
-rwxr-xr-xoox/source/ole/vbaproject.cxx2
-rw-r--r--oox/source/ppt/animationspersist.cxx6
-rw-r--r--oox/source/ppt/animationtypes.cxx2
-rw-r--r--oox/source/ppt/animationtypes.hxx2
-rw-r--r--oox/source/ppt/animvariantcontext.cxx2
-rw-r--r--oox/source/ppt/animvariantcontext.hxx4
-rw-r--r--oox/source/ppt/backgroundproperties.cxx4
-rw-r--r--oox/source/ppt/buildlistcontext.cxx8
-rw-r--r--oox/source/ppt/buildlistcontext.hxx2
-rw-r--r--oox/source/ppt/commonbehaviorcontext.cxx2
-rw-r--r--oox/source/ppt/commonbehaviorcontext.hxx2
-rw-r--r--oox/source/ppt/commontimenodecontext.cxx422
-rw-r--r--oox/source/ppt/commontimenodecontext.hxx2
-rw-r--r--oox/source/ppt/conditioncontext.cxx2
-rw-r--r--oox/source/ppt/conditioncontext.hxx6
-rw-r--r--oox/source/ppt/customshowlistcontext.cxx2
-rw-r--r--oox/source/ppt/customshowlistcontext.hxx6
-rw-r--r--oox/source/ppt/headerfootercontext.cxx2
-rw-r--r--oox/source/ppt/headerfootercontext.hxx2
-rw-r--r--oox/source/ppt/layoutfragmenthandler.cxx8
-rw-r--r--oox/source/ppt/pptfilterhelpers.cxx22
-rw-r--r--oox/source/ppt/pptfilterhelpers.hxx50
-rw-r--r--oox/source/ppt/pptimport.cxx4
-rw-r--r--oox/source/ppt/pptshape.cxx10
-rw-r--r--oox/source/ppt/pptshapecontext.cxx42
-rw-r--r--oox/source/ppt/pptshapegroupcontext.cxx10
-rw-r--r--oox/source/ppt/pptshapepropertiescontext.cxx2
-rw-r--r--oox/source/ppt/presentationfragmenthandler.cxx14
-rw-r--r--oox/source/ppt/slidefragmenthandler.cxx32
-rw-r--r--oox/source/ppt/slidemastertextstylescontext.cxx8
-rw-r--r--oox/source/ppt/slidepersist.cxx64
-rw-r--r--oox/source/ppt/slidetimingcontext.cxx2
-rw-r--r--oox/source/ppt/slidetransition.cxx2
-rw-r--r--oox/source/ppt/slidetransitioncontext.cxx4
-rw-r--r--oox/source/ppt/soundactioncontext.cxx12
-rw-r--r--oox/source/ppt/timeanimvaluecontext.cxx2
-rw-r--r--oox/source/ppt/timeanimvaluecontext.hxx2
-rw-r--r--oox/source/ppt/timenode.cxx8
-rw-r--r--oox/source/ppt/timenodelistcontext.cxx4
-rw-r--r--oox/source/ppt/timetargetelementcontext.cxx2
-rw-r--r--oox/source/ppt/timetargetelementcontext.hxx2
-rw-r--r--oox/source/shape/FastTokenHandlerService.cxx10
-rw-r--r--oox/source/shape/FastTokenHandlerService.hxx2
-rw-r--r--oox/source/shape/ShapeContextHandler.cxx2
-rw-r--r--oox/source/shape/ShapeContextHandler.hxx6
-rw-r--r--oox/source/shape/ShapeFilterBase.cxx2
-rw-r--r--oox/source/shape/ShapeFilterBase.hxx2
-rw-r--r--oox/source/token/gennamespaces.pl2
-rw-r--r--oox/source/token/propertylist.cxx2
-rw-r--r--oox/source/token/tokenmap.cxx2
-rw-r--r--oox/source/vml/vmldrawing.cxx2
-rw-r--r--oox/source/vml/vmldrawingfragment.cxx2
-rw-r--r--oox/source/vml/vmlformatting.cxx4
-rw-r--r--oox/source/vml/vmlinputstream.cxx6
-rw-r--r--oox/source/vml/vmlshape.cxx4
-rw-r--r--oox/source/vml/vmlshapecontainer.cxx2
-rw-r--r--oox/source/vml/vmlshapecontext.cxx2
-rw-r--r--oox/source/xls/addressconverter.cxx2
-rw-r--r--oox/source/xls/autofiltercontext.cxx2
-rw-r--r--oox/source/xls/biffcodec.cxx2
-rw-r--r--oox/source/xls/biffdetector.cxx2
-rw-r--r--oox/source/xls/biffhelper.cxx2
-rw-r--r--oox/source/xls/biffinputstream.cxx2
-rw-r--r--oox/source/xls/biffoutputstream.cxx2
-rw-r--r--oox/source/xls/chartsheetfragment.cxx2
-rw-r--r--oox/source/xls/commentsbuffer.cxx2
-rw-r--r--oox/source/xls/commentsfragment.cxx2
-rw-r--r--oox/source/xls/condformatbuffer.cxx2
-rw-r--r--oox/source/xls/condformatcontext.cxx2
-rw-r--r--oox/source/xls/connectionsfragment.cxx2
-rw-r--r--oox/source/xls/defnamesbuffer.cxx2
-rw-r--r--oox/source/xls/drawingfragment.cxx2
-rw-r--r--oox/source/xls/excelchartconverter.cxx2
-rw-r--r--oox/source/xls/excelfilter.cxx6
-rw-r--r--oox/source/xls/excelhandlers.cxx2
-rw-r--r--oox/source/xls/externallinkbuffer.cxx2
-rw-r--r--oox/source/xls/externallinkfragment.cxx2
-rw-r--r--oox/source/xls/formulabase.cxx2
-rw-r--r--oox/source/xls/formulaparser.cxx2
-rw-r--r--oox/source/xls/numberformatsbuffer.cxx2
-rw-r--r--oox/source/xls/ooxformulaparser.cxx2
-rw-r--r--oox/source/xls/pagesettings.cxx2
-rw-r--r--oox/source/xls/pivotcachebuffer.cxx2
-rw-r--r--oox/source/xls/pivotcachefragment.cxx2
-rw-r--r--oox/source/xls/pivottablebuffer.cxx2
-rw-r--r--oox/source/xls/pivottablefragment.cxx2
-rw-r--r--oox/source/xls/querytablefragment.cxx2
-rw-r--r--oox/source/xls/richstring.cxx2
-rw-r--r--oox/source/xls/richstringcontext.cxx2
-rw-r--r--oox/source/xls/scenariobuffer.cxx2
-rw-r--r--oox/source/xls/scenariocontext.cxx2
-rw-r--r--oox/source/xls/sharedformulabuffer.cxx2
-rw-r--r--oox/source/xls/sharedstringsbuffer.cxx2
-rw-r--r--oox/source/xls/sharedstringsfragment.cxx2
-rw-r--r--oox/source/xls/sheetdatacontext.cxx2
-rw-r--r--oox/source/xls/stylesbuffer.cxx2
-rw-r--r--oox/source/xls/stylesfragment.cxx2
-rw-r--r--oox/source/xls/tablebuffer.cxx2
-rw-r--r--oox/source/xls/tablefragment.cxx2
-rw-r--r--oox/source/xls/themebuffer.cxx2
-rw-r--r--oox/source/xls/unitconverter.cxx2
-rw-r--r--oox/source/xls/viewsettings.cxx2
-rw-r--r--oox/source/xls/webquerybuffer.cxx2
-rw-r--r--oox/source/xls/workbookfragment.cxx2
-rw-r--r--oox/source/xls/workbookhelper.cxx2
-rw-r--r--oox/source/xls/workbooksettings.cxx2
-rw-r--r--oox/source/xls/worksheetbuffer.cxx2
-rw-r--r--oox/source/xls/worksheetfragment.cxx2
-rw-r--r--oox/source/xls/worksheethelper.cxx4
-rw-r--r--oox/source/xls/worksheetsettings.cxx2
-rw-r--r--package/inc/ByteChucker.hxx6
-rw-r--r--package/inc/ByteGrabber.hxx12
-rw-r--r--package/inc/CRC32.hxx2
-rw-r--r--package/inc/Deflater.hxx18
-rw-r--r--package/inc/EncryptedDataHeader.hxx18
-rw-r--r--package/inc/EncryptionData.hxx2
-rw-r--r--package/inc/HashMaps.hxx16
-rw-r--r--package/inc/Inflater.hxx12
-rw-r--r--package/inc/PackageConstants.hxx2
-rw-r--r--package/inc/ZipEntry.hxx4
-rw-r--r--package/inc/ZipEnumeration.hxx6
-rw-r--r--package/inc/ZipFile.hxx52
-rw-r--r--package/inc/ZipOutputStream.hxx30
-rw-r--r--package/inc/ZipPackage.hxx72
-rw-r--r--package/inc/ZipPackageBuffer.hxx24
-rw-r--r--package/inc/ZipPackageFolder.hxx36
-rw-r--r--package/inc/mutexholder.hxx8
-rw-r--r--package/inc/pch/precompiled_package.cxx2
-rw-r--r--package/inc/pch/precompiled_package.hxx2
-rw-r--r--package/inc/zipfileaccess.hxx6
-rw-r--r--package/qa/ofopxmlstorages/StorageUnitTest.java2
-rw-r--r--package/qa/ofopxmlstorages/Test01.java12
-rw-r--r--package/qa/ofopxmlstorages/Test02.java12
-rw-r--r--package/qa/ofopxmlstorages/Test03.java12
-rw-r--r--package/qa/ofopxmlstorages/Test04.java16
-rw-r--r--package/qa/ofopxmlstorages/Test05.java14
-rw-r--r--package/qa/ofopxmlstorages/Test06.java4
-rw-r--r--package/qa/ofopxmlstorages/Test07.java8
-rw-r--r--package/qa/ofopxmlstorages/Test08.java8
-rw-r--r--package/qa/ofopxmlstorages/TestHelper.java44
-rw-r--r--package/qa/storages/BorderedStream.java4
-rw-r--r--package/qa/storages/RegressionTest_114358.java12
-rw-r--r--package/qa/storages/RegressionTest_125919.java4
-rw-r--r--package/qa/storages/RegressionTest_i26398.java12
-rw-r--r--package/qa/storages/RegressionTest_i27773.java4
-rw-r--r--package/qa/storages/RegressionTest_i29169.java14
-rw-r--r--package/qa/storages/RegressionTest_i29321.java8
-rw-r--r--package/qa/storages/RegressionTest_i30400.java14
-rw-r--r--package/qa/storages/RegressionTest_i30677.java8
-rw-r--r--package/qa/storages/RegressionTest_i35095.java8
-rw-r--r--package/qa/storages/RegressionTest_i46848.java12
-rw-r--r--package/qa/storages/RegressionTest_i49755.java18
-rw-r--r--package/qa/storages/RegressionTest_i55821.java6
-rw-r--r--package/qa/storages/RegressionTest_i59886.java10
-rw-r--r--package/qa/storages/RegressionTest_i61909.java6
-rw-r--r--package/qa/storages/RegressionTest_i84234.java10
-rw-r--r--package/qa/storages/StorageUnitTest.java2
-rw-r--r--package/qa/storages/Test01.java12
-rw-r--r--package/qa/storages/Test02.java12
-rw-r--r--package/qa/storages/Test03.java10
-rw-r--r--package/qa/storages/Test04.java16
-rw-r--r--package/qa/storages/Test05.java14
-rw-r--r--package/qa/storages/Test06.java4
-rw-r--r--package/qa/storages/Test07.java6
-rw-r--r--package/qa/storages/Test08.java16
-rw-r--r--package/qa/storages/Test09.java6
-rw-r--r--package/qa/storages/Test10.java8
-rw-r--r--package/qa/storages/Test11.java8
-rw-r--r--package/qa/storages/Test12.java8
-rw-r--r--package/qa/storages/Test13.java6
-rw-r--r--package/qa/storages/Test14.java8
-rw-r--r--package/qa/storages/Test15.java14
-rw-r--r--package/qa/storages/Test16.java12
-rw-r--r--package/qa/storages/Test17.java12
-rw-r--r--package/qa/storages/Test18.java12
-rw-r--r--package/qa/storages/TestHelper.java60
-rw-r--r--package/source/manifest/Base64Codec.cxx2
-rw-r--r--package/source/manifest/Base64Codec.hxx2
-rw-r--r--package/source/manifest/ManifestDefines.hxx2
-rw-r--r--package/source/manifest/ManifestExport.cxx62
-rw-r--r--package/source/manifest/ManifestExport.hxx2
-rw-r--r--package/source/manifest/ManifestImport.cxx86
-rw-r--r--package/source/manifest/ManifestImport.hxx22
-rw-r--r--package/source/manifest/ManifestReader.cxx14
-rw-r--r--package/source/manifest/ManifestReader.hxx16
-rw-r--r--package/source/manifest/ManifestWriter.cxx6
-rw-r--r--package/source/manifest/ManifestWriter.hxx16
-rw-r--r--package/source/manifest/UnoRegister.cxx16
-rw-r--r--package/source/xstor/disposelistener.cxx2
-rw-r--r--package/source/xstor/disposelistener.hxx2
-rw-r--r--package/source/xstor/ocompinstream.cxx36
-rw-r--r--package/source/xstor/ocompinstream.hxx14
-rw-r--r--package/source/xstor/ohierarchyholder.cxx4
-rw-r--r--package/source/xstor/ohierarchyholder.hxx2
-rw-r--r--package/source/xstor/oseekinstream.cxx6
-rw-r--r--package/source/xstor/oseekinstream.hxx2
-rw-r--r--package/source/xstor/owriteablestream.cxx282
-rw-r--r--package/source/xstor/owriteablestream.hxx34
-rw-r--r--package/source/xstor/register.cxx10
-rw-r--r--package/source/xstor/selfterminatefilestream.cxx14
-rw-r--r--package/source/xstor/selfterminatefilestream.hxx12
-rw-r--r--package/source/xstor/switchpersistencestream.cxx6
-rw-r--r--package/source/xstor/switchpersistencestream.hxx4
-rw-r--r--package/source/xstor/xfactory.cxx20
-rw-r--r--package/source/xstor/xfactory.hxx4
-rw-r--r--package/source/xstor/xstorage.cxx244
-rw-r--r--package/source/xstor/xstorage.hxx108
-rw-r--r--package/source/zipapi/ByteChucker.cxx6
-rw-r--r--package/source/zipapi/ByteGrabber.cxx30
-rw-r--r--package/source/zipapi/CRC32.cxx10
-rw-r--r--package/source/zipapi/Deflater.cxx26
-rw-r--r--package/source/zipapi/EntryInputStream.cxx26
-rw-r--r--package/source/zipapi/EntryInputStream.hxx24
-rw-r--r--package/source/zipapi/Inflater.cxx12
-rw-r--r--package/source/zipapi/MemoryByteGrabber.hxx28
-rw-r--r--package/source/zipapi/XFileStream.cxx28
-rw-r--r--package/source/zipapi/XFileStream.hxx20
-rw-r--r--package/source/zipapi/XMemoryStream.cxx14
-rw-r--r--package/source/zipapi/XMemoryStream.hxx4
-rw-r--r--package/source/zipapi/XUnbufferedStream.cxx50
-rw-r--r--package/source/zipapi/XUnbufferedStream.hxx26
-rw-r--r--package/source/zipapi/ZipEnumeration.cxx2
-rw-r--r--package/source/zipapi/ZipFile.cxx76
-rw-r--r--package/source/zipapi/ZipOutputStream.cxx28
-rw-r--r--package/source/zippackage/ContentInfo.hxx8
-rw-r--r--package/source/zippackage/ZipPackage.cxx162
-rw-r--r--package/source/zippackage/ZipPackageBuffer.cxx26
-rw-r--r--package/source/zippackage/ZipPackageEntry.cxx20
-rw-r--r--package/source/zippackage/ZipPackageEntry.hxx30
-rw-r--r--package/source/zippackage/ZipPackageFolder.cxx138
-rw-r--r--package/source/zippackage/ZipPackageFolderEnumeration.cxx6
-rw-r--r--package/source/zippackage/ZipPackageFolderEnumeration.hxx16
-rw-r--r--package/source/zippackage/ZipPackageSink.cxx8
-rw-r--r--package/source/zippackage/ZipPackageSink.hxx6
-rw-r--r--package/source/zippackage/ZipPackageStream.cxx88
-rw-r--r--package/source/zippackage/ZipPackageStream.hxx48
-rw-r--r--package/source/zippackage/wrapstreamforshare.cxx10
-rw-r--r--package/source/zippackage/wrapstreamforshare.hxx10
-rw-r--r--package/source/zippackage/zipfileaccess.cxx20
-rw-r--r--packimages/pack/makefile.mk2
-rw-r--r--padmin/source/adddlg.cxx26
-rw-r--r--padmin/source/adddlg.hxx148
-rw-r--r--padmin/source/cmddlg.cxx44
-rw-r--r--padmin/source/cmddlg.hxx76
-rw-r--r--padmin/source/desktopcontext.cxx2
-rw-r--r--padmin/source/desktopcontext.hxx2
-rw-r--r--padmin/source/fontentry.cxx44
-rw-r--r--padmin/source/fontentry.hxx90
-rw-r--r--padmin/source/helper.cxx24
-rw-r--r--padmin/source/helper.hxx24
-rw-r--r--padmin/source/newppdlg.cxx2
-rw-r--r--padmin/source/newppdlg.hxx40
-rw-r--r--padmin/source/padialog.cxx16
-rw-r--r--padmin/source/padialog.hrc140
-rw-r--r--padmin/source/padialog.hxx70
-rw-r--r--padmin/source/padialog.src14
-rw-r--r--padmin/source/pamain.cxx20
-rw-r--r--padmin/source/progress.cxx2
-rw-r--r--padmin/source/progress.hxx22
-rw-r--r--padmin/source/prtsetup.cxx78
-rw-r--r--padmin/source/prtsetup.hxx180
-rw-r--r--padmin/source/rtsetup.hrc156
-rw-r--r--padmin/source/rtsetup.src4
-rw-r--r--padmin/source/spadmin.sh4
-rw-r--r--padmin/source/titlectrl.cxx2
-rw-r--r--padmin/source/titlectrl.hxx14
-rw-r--r--python/Python-2.6.1.patch174
-rw-r--r--python/Python-ssl.patch162
-rw-r--r--python/makefile.mk12
-rw-r--r--python/prj/d.lst42
-rw-r--r--pyuno/inc/pyuno/pyuno.hxx36
-rw-r--r--pyuno/source/loader/pyuno_loader.cxx8
-rw-r--r--pyuno/source/module/pyuno.cxx66
-rw-r--r--pyuno/source/module/pyuno_adapter.cxx20
-rw-r--r--pyuno/source/module/pyuno_callable.cxx22
-rw-r--r--pyuno/source/module/pyuno_dlopenwrapper.c6
-rw-r--r--pyuno/source/module/pyuno_except.cxx12
-rw-r--r--pyuno/source/module/pyuno_gc.cxx6
-rw-r--r--pyuno/source/module/pyuno_impl.hxx6
-rw-r--r--pyuno/source/module/pyuno_module.cxx32
-rw-r--r--pyuno/source/module/pyuno_runtime.cxx50
-rw-r--r--pyuno/source/module/pyuno_type.cxx16
-rw-r--r--pyuno/source/module/pyuno_util.cxx6
-rw-r--r--pyuno/zipcore/python.cxx4
-rw-r--r--pyuno/zipcore/python.sh4
-rw-r--r--rdbmaker/inc/codemaker/dependency.hxx104
-rw-r--r--rdbmaker/inc/codemaker/global.hxx20
-rw-r--r--rdbmaker/inc/codemaker/options.hxx50
-rw-r--r--rdbmaker/inc/codemaker/registry.hxx102
-rw-r--r--rdbmaker/inc/codemaker/typemanager.hxx68
-rw-r--r--rdbmaker/source/codemaker/dependency.cxx94
-rw-r--r--rdbmaker/source/codemaker/global.cxx6
-rw-r--r--rdbmaker/source/codemaker/options.cxx20
-rw-r--r--rdbmaker/source/codemaker/typemanager.cxx100
-rw-r--r--rdbmaker/source/rdbmaker/rdbmaker.cxx144
-rw-r--r--rdbmaker/source/rdbmaker/rdboptions.cxx88
-rw-r--r--rdbmaker/source/rdbmaker/rdboptions.hxx16
-rw-r--r--rdbmaker/source/rdbmaker/rdbtype.cxx70
-rw-r--r--rdbmaker/source/rdbmaker/rdbtype.hxx14
-rw-r--r--rdbmaker/source/rdbmaker/specialtypemanager.cxx34
-rw-r--r--rdbmaker/source/rdbmaker/specialtypemanager.hxx18
-rw-r--r--rdbmaker/source/rdbmaker/typeblop.cxx180
-rw-r--r--regexp/inc/pch/precompiled_regexp.cxx2
-rw-r--r--regexp/inc/pch/precompiled_regexp.hxx2
-rw-r--r--regexp/orig/regex.c658
-rw-r--r--regexp/orig/regex.h100
-rw-r--r--regexp/source/reclass.cxx210
-rw-r--r--regexp/source/reclass.hxx24
-rw-r--r--registry/inc/pch/precompiled_registry.cxx2
-rw-r--r--registry/inc/pch/precompiled_registry.hxx2
-rw-r--r--registry/inc/registry/reader.h2
-rw-r--r--registry/inc/registry/reader.hxx6
-rw-r--r--registry/inc/registry/reflread.hxx302
-rw-r--r--registry/inc/registry/refltype.hxx12
-rw-r--r--registry/inc/registry/reflwrit.hxx214
-rw-r--r--registry/inc/registry/registry.h442
-rw-r--r--registry/inc/registry/registry.hxx796
-rw-r--r--registry/inc/registry/regtype.h46
-rw-r--r--registry/inc/registry/types.h2
-rw-r--r--registry/inc/registry/version.h2
-rw-r--r--registry/inc/registry/writer.h2
-rw-r--r--registry/inc/registry/writer.hxx2
-rw-r--r--registry/source/keyimpl.cxx2
-rw-r--r--registry/source/keyimpl.hxx94
-rw-r--r--registry/source/reflcnst.hxx182
-rw-r--r--registry/source/reflread.cxx70
-rw-r--r--registry/source/reflwrit.cxx138
-rw-r--r--registry/source/regimpl.cxx12
-rw-r--r--registry/source/regimpl.hxx134
-rw-r--r--registry/source/registry.cxx184
-rw-r--r--registry/source/regkey.cxx374
-rw-r--r--registry/source/regkey.hxx2
-rw-r--r--registry/test/regdiagnose.h2
-rw-r--r--registry/test/testmerge.cxx6
-rw-r--r--registry/test/testregcpp.cxx170
-rw-r--r--registry/tools/checksingleton.cxx58
-rw-r--r--registry/tools/regcompare.cxx186
-rw-r--r--registry/tools/regmerge.cxx26
-rw-r--r--registry/tools/regview.cxx32
-rw-r--r--registry/workben/regspeed.cxx114
-rw-r--r--registry/workben/regtest.cxx228
-rw-r--r--registry/workben/test.cxx2
-rw-r--r--remotebridges/examples/officeclient.cxx38
-rw-r--r--remotebridges/source/bridge/bridge_connection.cxx2
-rw-r--r--remotebridges/source/bridge/bridge_connection.hxx2
-rw-r--r--remotebridges/source/bridge/bridge_provider.cxx20
-rw-r--r--remotebridges/source/bridge/remote_bridge.cxx30
-rw-r--r--remotebridges/source/bridge/remote_bridge.hxx16
-rw-r--r--remotebridges/source/bridge/remotebridge.xml70
-rw-r--r--remotebridges/source/dynamicloader/dynamicloader.cxx6
-rw-r--r--remotebridges/source/dynamicloader/dynamicloader.xml46
-rw-r--r--remotebridges/source/factory/brdgfctr.xml64
-rw-r--r--remotebridges/source/factory/bridgefactory.cxx54
-rw-r--r--remotebridges/source/factory/bridgeimpl.cxx24
-rw-r--r--remotebridges/source/factory/bridgeimpl.hxx14
-rw-r--r--remotebridges/source/unourl_resolver/unourl_resolver.cxx24
-rw-r--r--remotebridges/source/unourl_resolver/uuresolver.xml50
-rw-r--r--reportbuilder/java/com/sun/star/report/DataRow.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/DataSource.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/DataSourceException.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/DataSourceFactory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ImageService.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/InputRepository.java4
-rw-r--r--reportbuilder/java/com/sun/star/report/JobDefinitionException.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/JobProgressIndicator.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/JobProperties.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/OfficeToken.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/OutputRepository.java4
-rw-r--r--reportbuilder/java/com/sun/star/report/ParameterMap.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportAddIn.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportEngine.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportEngineMetaData.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportEngineParameterNames.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportExecutionException.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportExpression.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportExpressionMetaData.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportFunction.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportJob.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportJobDefinition.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/ReportJobFactory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/SDBCReportData.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/SDBCReportDataFactory.java4
-rw-r--r--reportbuilder/java/com/sun/star/report/SOImageService.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/StorageRepository.java8
-rw-r--r--reportbuilder/java/com/sun/star/report/function/metadata/AuthorFunction.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/function/metadata/AuthorFunctionDescription.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/function/metadata/MetaDataFunctionCategory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/function/metadata/TitleFunction.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/function/metadata/TitleFunctionDescription.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/DefaultNameGenerator.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/OfficeNamespaces.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/PentahoFormulaContext.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/PentahoReportAddIn.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/PentahoReportEngine.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/PentahoReportEngineMetaData.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/PentahoReportJob.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/SOFormulaOpCodeMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/SOFormulaParser.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/SOFunctionManager.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/SOReportJobFactory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/StarFunctionCategory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/StarFunctionDescription.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/StarReportData.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/StarReportDataFactory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/StarReportModule.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/expressions/SumExpression.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/expressions/SumExpressionMetaData.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/AbstractReportElementLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FixedTextLayoutController.java2
-rwxr-xr-xreportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormatValueUtility.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormattedTextLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/ImageElementContext.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/ImageElementLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/ObjectOleLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeDetailLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeGroupLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeGroupSectionLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeRepeatingStructureLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeReportLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeTableLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/TableCellLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/VariablesCollection.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/VariablesDeclarationLayoutController.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/loader/InputRepositoryLoader.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/loader/InputRepositoryResourceData.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/loader/InputResourceKey.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/FixedTextElement.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/FontFaceDeclsSection.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/FontFaceElement.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/FormatCondition.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/FormattedTextElement.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/ImageElement.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/ObjectOleElement.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDetailSection.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroupSection.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeMasterPage.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeMasterStyles.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeReport.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeStyle.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeStyles.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeStylesCollection.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeTableSection.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/PageLayout.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/PageSection.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/RawText.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/ReportElement.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/TableCellElement.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/VariablesDeclarationSection.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/ImageProducer.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/OfficeDocumentReportTarget.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/OleProducer.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/StyleUtilities.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/StylesWriter.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/chart/ChartRawReportProcessor.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/chart/ChartRawReportTarget.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/SpreadsheetRawReportProcessor.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/text/MasterPageFactory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/text/PageBreakDefinition.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/text/PageContext.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/text/TextRawReportProcessor.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/text/TextRawReportTarget.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/output/text/VariablesDeclarations.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/ElementReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/OfficeDocumentXmlResourceFactory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/OfficeParserUtil.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/OfficeStylesXmlResourceFactory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/StarStyleXmlFactoryModule.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/StarXmlFactoryModule.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/StyleMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/chart/ChartReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/data/DataStyleReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/draw/ObjectOleReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/office/BodyReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentContentReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/office/FontFaceDeclsReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/office/MasterStylesReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ConditionalPrintExpressionReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/DetailRootTableReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/FixedContentReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/FormatConditionReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/FormattedTextReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/FunctionReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/GroupReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/GroupSectionReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ImageReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/MasterDetailReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ReportElementReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ReportReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/RootTableReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/SubDocumentReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/style/FontFaceReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/style/MasterPageReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/style/OfficeStyleReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/style/OfficeStylesReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/style/PageLayoutReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/style/StyleDefinitionReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/OneOfConstantsMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/draw/TextAreaVerticalAlignMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/BackgroundColorMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/BorderRightMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/ColorMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/FontSizeMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/FontStyleMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/FontWeightMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/fo/TextAlignMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontFamilyGenericMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontFamilyMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontNameMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontPitchMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/FontReliefMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextEmphasizeMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextUnderlineColorMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextUnderlineStyleMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextUnderlineWidthMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/TextUnderlineWordMode.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/VerticalAlignMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/table/ColumnWidthMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/table/RowHeightMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/table/CoveredCellReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableCellReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableColumnReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableColumnsReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableRowReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/table/TableRowsReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/text/TextContentReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/xlink/XLinkReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/LengthCalculator.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMapper.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMapperKey.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMapperXmlFactoryModule.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMapperXmlResourceFactory.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingDocumentReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingReadHandler.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/stylemapper.xml12
-rw-r--r--reportbuilder/java/com/sun/star/report/util/DefaultJobProperties.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/util/DefaultParameterMap.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/util/DefaultReportJobDefinition.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/util/ManifestWriter.java2
-rw-r--r--reportbuilder/java/com/sun/star/report/util/ReportUtil.java2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/Accelerators.xcu6
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/DataAccess.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/Embedding.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/ExtendedColorScheme.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/Paths.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/ReportDesign.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/UI/Controller.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/UI/DbReportWindowState.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Office/UI/ReportCommands.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/Setup.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/TypeDetection/Filter.xcu2
-rw-r--r--reportbuilder/registry/data/org/openoffice/TypeDetection/Types.xcu2
-rw-r--r--reportbuilder/template/pre.xml2
-rw-r--r--reportbuilder/template/registry/data/org/openoffice/Office/Paths.xcu2
-rwxr-xr-xreportbuilder/util/description.xml2
-rw-r--r--reportbuilder/util/hidother.src84
-rw-r--r--reportdesign/inc/ModuleHelper.hxx22
-rw-r--r--reportdesign/inc/PropertyForward.hxx22
-rw-r--r--reportdesign/inc/ReportDefinition.hxx26
-rw-r--r--reportdesign/inc/ReportHelperDefines.hxx4
-rw-r--r--reportdesign/inc/ReportVisitor.hxx4
-rw-r--r--reportdesign/inc/RptDef.hxx10
-rw-r--r--reportdesign/inc/RptModel.hxx8
-rw-r--r--reportdesign/inc/RptObject.hxx46
-rw-r--r--reportdesign/inc/RptPage.hxx12
-rw-r--r--reportdesign/inc/RptResId.hrc386
-rw-r--r--reportdesign/inc/UndoActions.hxx48
-rw-r--r--reportdesign/inc/UndoEnv.hxx14
-rw-r--r--reportdesign/inc/conditionalexpression.hxx2
-rw-r--r--reportdesign/inc/dllapi.h8
-rw-r--r--reportdesign/inc/helpids.hrc158
-rw-r--r--reportdesign/inc/pch/precompiled_reportdesign.cxx2
-rw-r--r--reportdesign/inc/pch/precompiled_reportdesign.hxx2
-rw-r--r--reportdesign/inc/reportformula.hxx2
-rw-r--r--reportdesign/inc/rptui_slotid.hrc300
-rwxr-xr-xreportdesign/qa/complex/ReportDesignerTest.java122
-rw-r--r--reportdesign/source/core/api/FixedLine.cxx44
-rw-r--r--reportdesign/source/core/api/FixedText.cxx10
-rw-r--r--reportdesign/source/core/api/FormatCondition.cxx10
-rw-r--r--reportdesign/source/core/api/FormattedField.cxx12
-rw-r--r--reportdesign/source/core/api/Function.cxx10
-rw-r--r--reportdesign/source/core/api/Functions.cxx18
-rw-r--r--reportdesign/source/core/api/Group.cxx22
-rw-r--r--reportdesign/source/core/api/Groups.cxx22
-rw-r--r--reportdesign/source/core/api/ImageControl.cxx100
-rw-r--r--reportdesign/source/core/api/ReportComponent.cxx2
-rw-r--r--reportdesign/source/core/api/ReportControlModel.cxx2
-rw-r--r--reportdesign/source/core/api/ReportDefinition.cxx394
-rw-r--r--reportdesign/source/core/api/ReportEngineJFree.cxx2
-rw-r--r--reportdesign/source/core/api/ReportVisitor.cxx4
-rw-r--r--reportdesign/source/core/api/Section.cxx26
-rw-r--r--reportdesign/source/core/api/Shape.cxx22
-rw-r--r--reportdesign/source/core/api/Tools.cxx2
-rw-r--r--reportdesign/source/core/api/services.cxx6
-rw-r--r--reportdesign/source/core/inc/FixedLine.hxx32
-rw-r--r--reportdesign/source/core/inc/FixedText.hxx20
-rw-r--r--reportdesign/source/core/inc/FormatCondition.hxx22
-rw-r--r--reportdesign/source/core/inc/FormattedField.hxx24
-rw-r--r--reportdesign/source/core/inc/Function.hxx18
-rw-r--r--reportdesign/source/core/inc/Functions.hxx26
-rw-r--r--reportdesign/source/core/inc/Group.hxx34
-rw-r--r--reportdesign/source/core/inc/Groups.hxx28
-rw-r--r--reportdesign/source/core/inc/ImageControl.hxx22
-rw-r--r--reportdesign/source/core/inc/ReportComponent.hxx28
-rw-r--r--reportdesign/source/core/inc/ReportControlModel.hxx58
-rw-r--r--reportdesign/source/core/inc/ReportDrawPage.hxx2
-rw-r--r--reportdesign/source/core/inc/ReportEngineJFree.hxx26
-rw-r--r--reportdesign/source/core/inc/ReportHelperImpl.hxx2
-rw-r--r--reportdesign/source/core/inc/ReportUndoFactory.hxx6
-rw-r--r--reportdesign/source/core/inc/RptObjectListener.hxx6
-rw-r--r--reportdesign/source/core/inc/Section.hxx62
-rw-r--r--reportdesign/source/core/inc/Shape.hxx16
-rw-r--r--reportdesign/source/core/inc/Tools.hxx4
-rw-r--r--reportdesign/source/core/inc/conditionupdater.hxx2
-rw-r--r--reportdesign/source/core/inc/core_resource.hrc36
-rw-r--r--reportdesign/source/core/inc/core_resource.hxx4
-rw-r--r--reportdesign/source/core/misc/conditionalexpression.cxx2
-rw-r--r--reportdesign/source/core/misc/conditionupdater.cxx2
-rw-r--r--reportdesign/source/core/misc/reportformula.cxx10
-rw-r--r--reportdesign/source/core/resource/core_resource.cxx6
-rw-r--r--reportdesign/source/core/resource/strings.src2
-rw-r--r--reportdesign/source/core/sdr/ModuleHelper.cxx22
-rw-r--r--reportdesign/source/core/sdr/PropertyForward.cxx14
-rw-r--r--reportdesign/source/core/sdr/ReportDrawPage.cxx4
-rw-r--r--reportdesign/source/core/sdr/ReportUndoFactory.cxx10
-rw-r--r--reportdesign/source/core/sdr/RptModel.cxx8
-rw-r--r--reportdesign/source/core/sdr/RptObject.cxx74
-rw-r--r--reportdesign/source/core/sdr/RptObjectListener.cxx6
-rw-r--r--reportdesign/source/core/sdr/RptPage.cxx30
-rw-r--r--reportdesign/source/core/sdr/UndoActions.cxx20
-rw-r--r--reportdesign/source/core/sdr/UndoEnv.cxx34
-rw-r--r--reportdesign/source/core/sdr/formatnormalizer.cxx8
-rw-r--r--reportdesign/source/core/sdr/formatnormalizer.hxx2
-rw-r--r--reportdesign/source/filter/xml/dbloader2.cxx4
-rw-r--r--reportdesign/source/filter/xml/dbloader2.hxx8
-rw-r--r--reportdesign/source/filter/xml/xmlAutoStyle.cxx4
-rw-r--r--reportdesign/source/filter/xml/xmlAutoStyle.hxx4
-rw-r--r--reportdesign/source/filter/xml/xmlCell.cxx18
-rw-r--r--reportdesign/source/filter/xml/xmlCell.hxx4
-rw-r--r--reportdesign/source/filter/xml/xmlColumn.cxx12
-rw-r--r--reportdesign/source/filter/xml/xmlColumn.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlComponent.cxx16
-rw-r--r--reportdesign/source/filter/xml/xmlComponent.hxx6
-rw-r--r--reportdesign/source/filter/xml/xmlCondPrtExpr.cxx6
-rw-r--r--reportdesign/source/filter/xml/xmlCondPrtExpr.hxx4
-rw-r--r--reportdesign/source/filter/xml/xmlControlProperty.cxx66
-rw-r--r--reportdesign/source/filter/xml/xmlControlProperty.hxx6
-rw-r--r--reportdesign/source/filter/xml/xmlEnums.hxx66
-rw-r--r--reportdesign/source/filter/xml/xmlExport.cxx96
-rw-r--r--reportdesign/source/filter/xml/xmlExport.hxx94
-rw-r--r--reportdesign/source/filter/xml/xmlExportDocumentHandler.cxx22
-rw-r--r--reportdesign/source/filter/xml/xmlExportDocumentHandler.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlFixedContent.cxx10
-rw-r--r--reportdesign/source/filter/xml/xmlFixedContent.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlFormatCondition.cxx6
-rw-r--r--reportdesign/source/filter/xml/xmlFormatCondition.hxx4
-rw-r--r--reportdesign/source/filter/xml/xmlFormattedField.cxx6
-rw-r--r--reportdesign/source/filter/xml/xmlFormattedField.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlFunction.cxx10
-rw-r--r--reportdesign/source/filter/xml/xmlFunction.hxx10
-rw-r--r--reportdesign/source/filter/xml/xmlGroup.cxx18
-rw-r--r--reportdesign/source/filter/xml/xmlGroup.hxx8
-rw-r--r--reportdesign/source/filter/xml/xmlHelper.cxx234
-rw-r--r--reportdesign/source/filter/xml/xmlHelper.hxx28
-rw-r--r--reportdesign/source/filter/xml/xmlImage.cxx2
-rw-r--r--reportdesign/source/filter/xml/xmlImage.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlImportDocumentHandler.cxx26
-rw-r--r--reportdesign/source/filter/xml/xmlImportDocumentHandler.hxx6
-rw-r--r--reportdesign/source/filter/xml/xmlMasterFields.cxx4
-rw-r--r--reportdesign/source/filter/xml/xmlMasterFields.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlPropertyHandler.cxx2
-rw-r--r--reportdesign/source/filter/xml/xmlPropertyHandler.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlReport.cxx16
-rw-r--r--reportdesign/source/filter/xml/xmlReport.hxx4
-rw-r--r--reportdesign/source/filter/xml/xmlReportElement.cxx6
-rw-r--r--reportdesign/source/filter/xml/xmlReportElement.hxx4
-rw-r--r--reportdesign/source/filter/xml/xmlReportElementBase.cxx4
-rw-r--r--reportdesign/source/filter/xml/xmlReportElementBase.hxx6
-rw-r--r--reportdesign/source/filter/xml/xmlRow.cxx16
-rw-r--r--reportdesign/source/filter/xml/xmlRow.hxx2
-rw-r--r--reportdesign/source/filter/xml/xmlSection.cxx8
-rw-r--r--reportdesign/source/filter/xml/xmlSection.hxx8
-rw-r--r--reportdesign/source/filter/xml/xmlStyleImport.cxx10
-rw-r--r--reportdesign/source/filter/xml/xmlStyleImport.hxx20
-rw-r--r--reportdesign/source/filter/xml/xmlSubDocument.cxx16
-rw-r--r--reportdesign/source/filter/xml/xmlSubDocument.hxx6
-rw-r--r--reportdesign/source/filter/xml/xmlTable.cxx12
-rw-r--r--reportdesign/source/filter/xml/xmlTable.hxx10
-rw-r--r--reportdesign/source/filter/xml/xmlfilter.cxx244
-rw-r--r--reportdesign/source/filter/xml/xmlfilter.hxx70
-rw-r--r--reportdesign/source/filter/xml/xmlservices.cxx4
-rw-r--r--reportdesign/source/inc/GroupProperties.hxx18
-rw-r--r--reportdesign/source/inc/constasciistring.hxx10
-rw-r--r--reportdesign/source/inc/corestrings.hrc2
-rw-r--r--reportdesign/source/inc/stringconstants.hrc268
-rw-r--r--reportdesign/source/inc/uistrings.hrc44
-rw-r--r--reportdesign/source/inc/xmlstrings.hrc2
-rw-r--r--reportdesign/source/shared/corestrings.cxx2
-rw-r--r--reportdesign/source/shared/stringconstants.cxx334
-rw-r--r--reportdesign/source/shared/uistrings.cxx36
-rw-r--r--reportdesign/source/shared/xmlstrings.cxx20
-rw-r--r--reportdesign/source/ui/dlg/AddField.cxx24
-rw-r--r--reportdesign/source/ui/dlg/CondFormat.cxx22
-rw-r--r--reportdesign/source/ui/dlg/CondFormat.hrc4
-rw-r--r--reportdesign/source/ui/dlg/CondFormat.src10
-rw-r--r--reportdesign/source/ui/dlg/Condition.cxx2
-rw-r--r--reportdesign/source/ui/dlg/Condition.hxx6
-rw-r--r--reportdesign/source/ui/dlg/DateTime.cxx30
-rw-r--r--reportdesign/source/ui/dlg/DateTime.hrc42
-rw-r--r--reportdesign/source/ui/dlg/DateTime.src12
-rw-r--r--reportdesign/source/ui/dlg/Formula.cxx16
-rw-r--r--reportdesign/source/ui/dlg/GroupExchange.cxx2
-rw-r--r--reportdesign/source/ui/dlg/GroupExchange.hxx8
-rw-r--r--reportdesign/source/ui/dlg/GroupsSorting.cxx126
-rw-r--r--reportdesign/source/ui/dlg/GroupsSorting.hrc76
-rw-r--r--reportdesign/source/ui/dlg/GroupsSorting.src106
-rw-r--r--reportdesign/source/ui/dlg/Navigator.cxx64
-rw-r--r--reportdesign/source/ui/dlg/Navigator.src12
-rw-r--r--reportdesign/source/ui/dlg/PageNumber.cxx14
-rw-r--r--reportdesign/source/ui/dlg/PageNumber.hrc54
-rw-r--r--reportdesign/source/ui/dlg/PageNumber.src18
-rw-r--r--reportdesign/source/ui/dlg/dlgpage.cxx28
-rw-r--r--reportdesign/source/ui/dlg/dlgpage.src10
-rw-r--r--reportdesign/source/ui/inc/AddField.hxx18
-rw-r--r--reportdesign/source/ui/inc/ColorChanger.hxx4
-rw-r--r--reportdesign/source/ui/inc/ColorListener.hxx30
-rw-r--r--reportdesign/source/ui/inc/ColumnInfo.hxx6
-rw-r--r--reportdesign/source/ui/inc/CondFormat.hxx2
-rw-r--r--reportdesign/source/ui/inc/DataProviderHandler.hxx4
-rw-r--r--reportdesign/source/ui/inc/DateTime.hxx36
-rw-r--r--reportdesign/source/ui/inc/DefaultInspection.hxx2
-rw-r--r--reportdesign/source/ui/inc/DesignView.hxx98
-rw-r--r--reportdesign/source/ui/inc/EndMarker.hxx4
-rw-r--r--reportdesign/source/ui/inc/FixedTextColor.hxx2
-rw-r--r--reportdesign/source/ui/inc/FormattedFieldBeautifier.hxx2
-rw-r--r--reportdesign/source/ui/inc/Formula.hxx8
-rw-r--r--reportdesign/source/ui/inc/FunctionHelper.hxx2
-rw-r--r--reportdesign/source/ui/inc/GeometryHandler.hxx18
-rw-r--r--reportdesign/source/ui/inc/GroupsSorting.hxx94
-rw-r--r--reportdesign/source/ui/inc/IReportControllerObserver.hxx6
-rw-r--r--reportdesign/source/ui/inc/InsertFunctions.hxx4
-rw-r--r--reportdesign/source/ui/inc/MarkedSection.hxx6
-rw-r--r--reportdesign/source/ui/inc/Navigator.hxx6
-rw-r--r--reportdesign/source/ui/inc/PageNumber.hxx38
-rw-r--r--reportdesign/source/ui/inc/ReportComponentHandler.hxx4
-rw-r--r--reportdesign/source/ui/inc/ReportController.hxx106
-rw-r--r--reportdesign/source/ui/inc/ReportControllerObserver.hxx14
-rw-r--r--reportdesign/source/ui/inc/ReportDefines.hxx8
-rw-r--r--reportdesign/source/ui/inc/ReportRuler.hxx12
-rw-r--r--reportdesign/source/ui/inc/ReportSection.hxx80
-rw-r--r--reportdesign/source/ui/inc/ReportWindow.hxx82
-rw-r--r--reportdesign/source/ui/inc/ScrollHelper.hxx86
-rw-r--r--reportdesign/source/ui/inc/SectionView.hxx10
-rw-r--r--reportdesign/source/ui/inc/SectionWindow.hxx36
-rw-r--r--reportdesign/source/ui/inc/StartMarker.hxx34
-rw-r--r--reportdesign/source/ui/inc/UITools.hxx36
-rw-r--r--reportdesign/source/ui/inc/Undo.hxx48
-rw-r--r--reportdesign/source/ui/inc/ViewsWindow.hxx68
-rw-r--r--reportdesign/source/ui/inc/dlgedclip.hxx18
-rw-r--r--reportdesign/source/ui/inc/dlgedfac.hxx2
-rw-r--r--reportdesign/source/ui/inc/dlgedfunc.hxx18
-rw-r--r--reportdesign/source/ui/inc/dlgpage.hxx4
-rw-r--r--reportdesign/source/ui/inc/metadata.hxx32
-rw-r--r--reportdesign/source/ui/inc/propbrw.hxx22
-rw-r--r--reportdesign/source/ui/inc/statusbarcontroller.hxx22
-rw-r--r--reportdesign/source/ui/inc/toolboxcontroller.hxx10
-rw-r--r--reportdesign/source/ui/inspection/DataProviderHandler.cxx16
-rw-r--r--reportdesign/source/ui/inspection/DefaultInspection.cxx18
-rw-r--r--reportdesign/source/ui/inspection/GeometryHandler.cxx112
-rw-r--r--reportdesign/source/ui/inspection/ReportComponentHandler.cxx4
-rw-r--r--reportdesign/source/ui/inspection/inspection.src18
-rw-r--r--reportdesign/source/ui/inspection/metadata.cxx22
-rw-r--r--reportdesign/source/ui/misc/ColorListener.cxx18
-rw-r--r--reportdesign/source/ui/misc/FunctionHelper.cxx14
-rw-r--r--reportdesign/source/ui/misc/UITools.cxx14
-rw-r--r--reportdesign/source/ui/misc/Undo.cxx20
-rw-r--r--reportdesign/source/ui/misc/rptuiservices.cxx4
-rw-r--r--reportdesign/source/ui/misc/statusbarcontroller.cxx10
-rw-r--r--reportdesign/source/ui/misc/toolboxcontroller.cxx6
-rw-r--r--reportdesign/source/ui/report/DesignView.cxx16
-rw-r--r--reportdesign/source/ui/report/EndMarker.cxx8
-rw-r--r--reportdesign/source/ui/report/FixedTextColor.cxx40
-rw-r--r--reportdesign/source/ui/report/FormattedFieldBeautifier.cxx18
-rw-r--r--reportdesign/source/ui/report/ReportController.cxx560
-rw-r--r--reportdesign/source/ui/report/ReportControllerObserver.cxx46
-rw-r--r--reportdesign/source/ui/report/ReportRuler.cxx6
-rw-r--r--reportdesign/source/ui/report/ReportSection.cxx48
-rw-r--r--reportdesign/source/ui/report/ReportWindow.cxx66
-rw-r--r--reportdesign/source/ui/report/ScrollHelper.cxx38
-rw-r--r--reportdesign/source/ui/report/SectionView.cxx12
-rw-r--r--reportdesign/source/ui/report/SectionWindow.cxx36
-rw-r--r--reportdesign/source/ui/report/StartMarker.cxx26
-rw-r--r--reportdesign/source/ui/report/ViewsWindow.cxx172
-rw-r--r--reportdesign/source/ui/report/dlgedclip.cxx4
-rw-r--r--reportdesign/source/ui/report/dlgedfac.cxx10
-rw-r--r--reportdesign/source/ui/report/dlgedfunc.cxx258
-rw-r--r--reportdesign/source/ui/report/propbrw.cxx24
-rw-r--r--reportdesign/source/ui/report/report.src40
-rw-r--r--reportdesign/uiconfig/dbreport/toolbar/arrowshapes.xml22
-rw-r--r--reportdesign/uiconfig/dbreport/toolbar/basicshapes.xml14
-rw-r--r--reportdesign/uiconfig/dbreport/toolbar/flowchartshapes.xml26
-rw-r--r--reportdesign/uiconfig/dbreport/toolbar/reportcontrols.xml2
-rw-r--r--reportdesign/uiconfig/dbreport/toolbar/symbolshapes.xml6
-rw-r--r--reportdesign/util/hidother.src90
-rw-r--r--ridljar/com/sun/star/lib/uno/typedesc/FieldDescription.java2
-rw-r--r--ridljar/com/sun/star/lib/uno/typedesc/MemberDescriptionHelper.java2
-rw-r--r--ridljar/com/sun/star/lib/uno/typedesc/MethodDescription.java2
-rw-r--r--ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java2
-rw-r--r--ridljar/com/sun/star/lib/uno/typeinfo/AttributeTypeInfo.java2
-rw-r--r--ridljar/com/sun/star/lib/uno/typeinfo/ConstantTypeInfo.java2
-rw-r--r--ridljar/com/sun/star/lib/uno/typeinfo/MemberTypeInfo.java4
-rw-r--r--ridljar/com/sun/star/lib/uno/typeinfo/MethodTypeInfo.java2
-rw-r--r--ridljar/com/sun/star/lib/uno/typeinfo/ParameterTypeInfo.java6
-rw-r--r--ridljar/com/sun/star/lib/uno/typeinfo/TypeInfo.java24
-rw-r--r--ridljar/com/sun/star/lib/util/DisposeListener.java2
-rw-r--r--ridljar/com/sun/star/lib/util/DisposeNotifier.java2
-rw-r--r--ridljar/com/sun/star/lib/util/WeakMap.java2
-rw-r--r--ridljar/com/sun/star/uno/Any.java8
-rw-r--r--ridljar/com/sun/star/uno/Enum.java18
-rw-r--r--ridljar/com/sun/star/uno/IBridge.java2
-rw-r--r--ridljar/com/sun/star/uno/IEnvironment.java2
-rw-r--r--ridljar/com/sun/star/uno/IFieldDescription.java2
-rw-r--r--ridljar/com/sun/star/uno/IMapping.java2
-rw-r--r--ridljar/com/sun/star/uno/IMemberDescription.java4
-rw-r--r--ridljar/com/sun/star/uno/IMethodDescription.java2
-rw-r--r--ridljar/com/sun/star/uno/IQueryInterface.java2
-rw-r--r--ridljar/com/sun/star/uno/ITypeDescription.java14
-rw-r--r--ridljar/com/sun/star/uno/Type.java2
-rw-r--r--ridljar/com/sun/star/uno/Union.java14
-rw-r--r--ridljar/com/sun/star/uno/UnoRuntime.java2
-rw-r--r--ridljar/source/unoloader/com/sun/star/lib/unoloader/UnoClassLoader.java2
-rw-r--r--ridljar/source/unoloader/com/sun/star/lib/unoloader/UnoLoader.java2
-rw-r--r--ridljar/test/com/sun/star/lib/uno/typedesc/TypeDescription_Test.java2
-rw-r--r--ridljar/test/com/sun/star/lib/util/WeakMap_Test.java2
-rw-r--r--ridljar/test/com/sun/star/uno/Any_Test.java2
-rw-r--r--ridljar/test/com/sun/star/uno/Type_Test.java2
-rw-r--r--ridljar/test/com/sun/star/uno/UnoRuntime_Test.java2
-rw-r--r--rsc/inc/pch/precompiled_rsc.cxx2
-rw-r--r--rsc/inc/pch/precompiled_rsc.hxx2
-rw-r--r--rsc/inc/rscall.h70
-rw-r--r--rsc/inc/rscarray.hxx20
-rw-r--r--rsc/inc/rscclass.hxx6
-rw-r--r--rsc/inc/rscclobj.hxx4
-rw-r--r--rsc/inc/rscconst.hxx18
-rw-r--r--rsc/inc/rsccont.hxx12
-rw-r--r--rsc/inc/rscdb.hxx463
-rw-r--r--rsc/inc/rscdef.hxx154
-rw-r--r--rsc/inc/rscerror.h158
-rw-r--r--rsc/inc/rscflag.hxx4
-rw-r--r--rsc/inc/rschash.hxx10
-rw-r--r--rsc/inc/rscinst.hxx172
-rw-r--r--rsc/inc/rsckey.hxx2
-rw-r--r--rsc/inc/rsclst.hxx24
-rw-r--r--rsc/inc/rscmgr.hxx8
-rw-r--r--rsc/inc/rscpar.hxx72
-rw-r--r--rsc/inc/rscrange.hxx10
-rw-r--r--rsc/inc/rscrsc.hxx102
-rw-r--r--rsc/inc/rscsfx.hxx10
-rw-r--r--rsc/inc/rscstr.hxx8
-rw-r--r--rsc/inc/rsctools.hxx58
-rw-r--r--rsc/inc/rsctop.hxx76
-rw-r--r--rsc/inc/rsctree.hxx52
-rw-r--r--rsc/inc/vclrsc.hxx301
-rw-r--r--rsc/source/misc/rscdbl.cxx24
-rw-r--r--rsc/source/misc/rsclst.cxx4
-rw-r--r--rsc/source/parser/erscerr.cxx84
-rw-r--r--rsc/source/parser/rscdb.cxx232
-rw-r--r--rsc/source/parser/rscibas.cxx171
-rw-r--r--rsc/source/parser/rscicpx.cxx477
-rw-r--r--rsc/source/parser/rscinit.cxx338
-rw-r--r--rsc/source/parser/rsckey.cxx2
-rw-r--r--rsc/source/parser/rsclex.cxx62
-rw-r--r--rsc/source/parser/rsclex.hxx12
-rw-r--r--rsc/source/parser/rscpar.cxx68
-rw-r--r--rsc/source/parser/rscyacc.cxx22
-rw-r--r--rsc/source/prj/gui.cxx16
-rw-r--r--rsc/source/prj/start.cxx84
-rw-r--r--rsc/source/res/rscall.cxx34
-rw-r--r--rsc/source/res/rscarray.cxx2
-rw-r--r--rsc/source/res/rscclass.cxx228
-rw-r--r--rsc/source/res/rscclobj.cxx2
-rw-r--r--rsc/source/res/rscconst.cxx4
-rw-r--r--rsc/source/res/rsccont.cxx362
-rw-r--r--rsc/source/res/rscflag.cxx4
-rw-r--r--rsc/source/res/rscmgr.cxx220
-rw-r--r--rsc/source/res/rscrange.cxx302
-rw-r--r--rsc/source/res/rscstr.cxx108
-rw-r--r--rsc/source/res/rsctop.cxx446
-rw-r--r--rsc/source/rsc/rsc.cxx412
-rw-r--r--rsc/source/rscpp/cpp.h36
-rw-r--r--rsc/source/rscpp/cpp1.c12
-rw-r--r--rsc/source/rscpp/cpp2.c2
-rw-r--r--rsc/source/rscpp/cpp3.c2
-rw-r--r--rsc/source/rscpp/cpp4.c2
-rw-r--r--rsc/source/rscpp/cpp5.c422
-rw-r--r--rsc/source/rscpp/cpp6.c14
-rw-r--r--rsc/source/rscpp/cppdef.h8
-rw-r--r--rsc/source/rscpp/cppmain.c2
-rw-r--r--rsc/source/tools/rscchar.cxx16
-rw-r--r--rsc/source/tools/rscdef.cxx522
-rw-r--r--rsc/source/tools/rschash.cxx6
-rw-r--r--rsc/source/tools/rsctools.cxx186
-rw-r--r--rsc/source/tools/rsctree.cxx160
-rw-r--r--sal/cpprt/operators_new_delete.cxx2
-rw-r--r--sal/inc/internal/once.h2
-rw-r--r--sal/inc/osl/conditn.h4
-rw-r--r--sal/inc/osl/conditn.hxx20
-rw-r--r--sal/inc/osl/diagnose.h28
-rw-r--r--sal/inc/osl/diagnose.hxx28
-rw-r--r--sal/inc/osl/doublecheckedlocking.h2
-rw-r--r--sal/inc/osl/endian.h136
-rw-r--r--sal/inc/osl/file.h800
-rw-r--r--sal/inc/osl/file.hxx774
-rw-r--r--sal/inc/osl/getglobalmutex.hxx2
-rw-r--r--sal/inc/osl/interlck.h8
-rw-r--r--sal/inc/osl/module.h50
-rw-r--r--sal/inc/osl/module.hxx26
-rw-r--r--sal/inc/osl/mutex.h8
-rw-r--r--sal/inc/osl/mutex.hxx42
-rw-r--r--sal/inc/osl/nlsupport.h14
-rw-r--r--sal/inc/osl/pipe.h40
-rw-r--r--sal/inc/osl/pipe.hxx6
-rw-r--r--sal/inc/osl/pipe_decl.hxx46
-rw-r--r--sal/inc/osl/process.h230
-rw-r--r--sal/inc/osl/profile.h40
-rw-r--r--sal/inc/osl/profile.hxx16
-rw-r--r--sal/inc/osl/security.h10
-rw-r--r--sal/inc/osl/security.hxx20
-rw-r--r--sal/inc/osl/security_decl.hxx24
-rw-r--r--sal/inc/osl/semaphor.h6
-rw-r--r--sal/inc/osl/semaphor.hxx32
-rw-r--r--sal/inc/osl/signal.h34
-rw-r--r--sal/inc/osl/socket.h232
-rw-r--r--sal/inc/osl/socket.hxx104
-rw-r--r--sal/inc/osl/socket_decl.hxx272
-rw-r--r--sal/inc/osl/thread.h10
-rw-r--r--sal/inc/osl/thread.hxx50
-rw-r--r--sal/inc/osl/time.h16
-rw-r--r--sal/inc/osl/util.h4
-rw-r--r--sal/inc/pch/precompiled_sal.cxx2
-rw-r--r--sal/inc/pch/precompiled_sal.hxx2
-rw-r--r--sal/inc/rtl/alloc.h4
-rw-r--r--sal/inc/rtl/allocator.hxx56
-rw-r--r--sal/inc/rtl/bootstrap.h74
-rw-r--r--sal/inc/rtl/bootstrap.hxx28
-rw-r--r--sal/inc/rtl/byteseq.h78
-rw-r--r--sal/inc/rtl/byteseq.hxx2
-rw-r--r--sal/inc/rtl/cipher.h2
-rw-r--r--sal/inc/rtl/crc.h2
-rw-r--r--sal/inc/rtl/digest.h2
-rw-r--r--sal/inc/rtl/instance.hxx18
-rw-r--r--sal/inc/rtl/locale.h14
-rw-r--r--sal/inc/rtl/locale.hxx6
-rw-r--r--sal/inc/rtl/logfile.h10
-rw-r--r--sal/inc/rtl/logfile.hxx52
-rw-r--r--sal/inc/rtl/malformeduriexception.hxx2
-rw-r--r--sal/inc/rtl/math.h2
-rw-r--r--sal/inc/rtl/math.hxx2
-rw-r--r--sal/inc/rtl/memory.h4
-rw-r--r--sal/inc/rtl/process.h12
-rw-r--r--sal/inc/rtl/random.h2
-rw-r--r--sal/inc/rtl/ref.hxx4
-rw-r--r--sal/inc/rtl/strbuf.h70
-rw-r--r--sal/inc/rtl/strbuf.hxx2
-rw-r--r--sal/inc/rtl/string.h6
-rw-r--r--sal/inc/rtl/string.hxx2
-rw-r--r--sal/inc/rtl/tencinfo.h2
-rw-r--r--sal/inc/rtl/textcvt.h108
-rw-r--r--sal/inc/rtl/textenc.h2
-rw-r--r--sal/inc/rtl/tres.hxx2
-rw-r--r--sal/inc/rtl/unload.h216
-rw-r--r--sal/inc/rtl/uri.h2
-rw-r--r--sal/inc/rtl/uri.hxx2
-rw-r--r--sal/inc/rtl/ustrbuf.h2
-rw-r--r--sal/inc/rtl/ustrbuf.hxx4
-rw-r--r--sal/inc/rtl/ustring.h4
-rw-r--r--sal/inc/rtl/ustring.hxx10
-rw-r--r--sal/inc/rtl/uuid.h8
-rw-r--r--sal/inc/sal/alloca.h2
-rw-r--r--sal/inc/sal/config.h2
-rw-r--r--sal/inc/sal/macros.h14
-rw-r--r--sal/inc/sal/main.h22
-rw-r--r--sal/inc/sal/mathconf.h8
-rw-r--r--sal/inc/sal/types.h56
-rw-r--r--sal/inc/systools/win32/AutoSystoolInit.hxx6
-rw-r--r--sal/inc/systools/win32/StrConvert.h2
-rw-r--r--sal/inc/systools/win32/SyncObjects.hxx8
-rw-r--r--sal/inc/systools/win32/advapi9x.h34
-rw-r--r--sal/inc/systools/win32/comdlg9x.h10
-rw-r--r--sal/inc/systools/win32/comptr.hxx58
-rw-r--r--sal/inc/systools/win32/comtools.hxx88
-rw-r--r--sal/inc/systools/win32/kernel9x.h158
-rw-r--r--sal/inc/systools/win32/mpr9x.h14
-rw-r--r--sal/inc/systools/win32/shell9x.h8
-rw-r--r--sal/inc/systools/win32/snprintf.h42
-rw-r--r--sal/inc/systools/win32/user9x.h46
-rw-r--r--sal/inc/systools/win32/uwinapi.h28
-rw-r--r--sal/osl/all/debugbase.cxx4
-rw-r--r--sal/osl/all/filepath.c12
-rw-r--r--sal/osl/all/loadmodulerelative.cxx2
-rwxr-xr-xsal/osl/all/utility.cxx12
-rw-r--r--sal/osl/os2/conditn.c2
-rw-r--r--sal/osl/os2/debug.c6
-rw-r--r--sal/osl/os2/diagnose.c4
-rw-r--r--sal/osl/os2/dllentry.c2
-rw-r--r--sal/osl/os2/except.c2
-rw-r--r--sal/osl/os2/file.cxx458
-rw-r--r--sal/osl/os2/file_error_transl.cxx56
-rw-r--r--sal/osl/os2/file_error_transl.h28
-rw-r--r--sal/osl/os2/file_path_helper.cxx234
-rw-r--r--sal/osl/os2/file_path_helper.h222
-rw-r--r--sal/osl/os2/file_path_helper.hxx206
-rw-r--r--sal/osl/os2/file_url.cxx606
-rw-r--r--sal/osl/os2/file_url.h100
-rw-r--r--sal/osl/os2/helpers/debug.h2
-rw-r--r--sal/osl/os2/helpers/dosh.h2
-rw-r--r--sal/osl/os2/helpers/except.h2
-rw-r--r--sal/osl/os2/helpers/setup.h2
-rw-r--r--sal/osl/os2/interlck.c2
-rw-r--r--sal/osl/os2/libutil.c2
-rw-r--r--sal/osl/os2/module.c48
-rw-r--r--sal/osl/os2/mutex.c18
-rw-r--r--sal/osl/os2/nlsupport.c178
-rw-r--r--sal/osl/os2/path_helper.cxx46
-rw-r--r--sal/osl/os2/path_helper.h14
-rw-r--r--sal/osl/os2/path_helper.hxx18
-rw-r--r--sal/osl/os2/pipe.cxx70
-rw-r--r--sal/osl/os2/pipeimpl.cxx218
-rw-r--r--sal/osl/os2/pipeimpl.h34
-rw-r--r--sal/osl/os2/process.c90
-rw-r--r--sal/osl/os2/process_impl.cxx26
-rw-r--r--sal/osl/os2/procimpl.h2
-rw-r--r--sal/osl/os2/profile.c146
-rw-r--r--sal/osl/os2/salinit.cxx14
-rw-r--r--sal/osl/os2/secimpl.h6
-rw-r--r--sal/osl/os2/security.c58
-rw-r--r--sal/osl/os2/semaphor.c2
-rw-r--r--sal/osl/os2/signal.c18
-rw-r--r--sal/osl/os2/socket.c264
-rw-r--r--sal/osl/os2/sockimpl.h16
-rw-r--r--sal/osl/os2/system.h400
-rw-r--r--sal/osl/os2/tempfile.c206
-rw-r--r--sal/osl/os2/thread.c62
-rw-r--r--sal/osl/os2/time.c50
-rw-r--r--sal/osl/os2/util.c2
-rw-r--r--sal/osl/os2/uunxapi.cxx46
-rw-r--r--sal/osl/os2/uunxapi.h46
-rw-r--r--sal/osl/os2/uunxapi.hxx50
-rwxr-xr-xsal/osl/unx/backtrace.c34
-rwxr-xr-xsal/osl/unx/backtrace.h16
-rw-r--r--sal/osl/unx/conditn.c56
-rw-r--r--sal/osl/unx/diagnose.c2
-rw-r--r--sal/osl/unx/file.cxx32
-rw-r--r--sal/osl/unx/file_error_transl.cxx56
-rw-r--r--sal/osl/unx/file_error_transl.h28
-rw-r--r--sal/osl/unx/file_impl.hxx2
-rw-r--r--sal/osl/unx/file_misc.cxx112
-rw-r--r--sal/osl/unx/file_path_helper.cxx226
-rw-r--r--sal/osl/unx/file_path_helper.h182
-rw-r--r--sal/osl/unx/file_path_helper.hxx164
-rw-r--r--sal/osl/unx/file_stat.cxx184
-rw-r--r--sal/osl/unx/file_url.cxx396
-rw-r--r--sal/osl/unx/file_url.h26
-rw-r--r--sal/osl/unx/file_volume.cxx294
-rw-r--r--sal/osl/unx/interlck.c4
-rw-r--r--sal/osl/unx/module.c40
-rw-r--r--sal/osl/unx/mutex.c62
-rw-r--r--sal/osl/unx/nlsupport.c206
-rw-r--r--sal/osl/unx/osxlocale.cxx48
-rw-r--r--sal/osl/unx/pipe.c52
-rw-r--r--sal/osl/unx/process.c200
-rw-r--r--sal/osl/unx/process_impl.cxx8
-rw-r--r--sal/osl/unx/procimpl.h8
-rw-r--r--sal/osl/unx/profile.c78
-rw-r--r--sal/osl/unx/salinit.cxx2
-rw-r--r--sal/osl/unx/secimpl.h4
-rw-r--r--sal/osl/unx/security.c164
-rw-r--r--sal/osl/unx/semaphor.c86
-rw-r--r--sal/osl/unx/signal.c178
-rw-r--r--sal/osl/unx/socket.c264
-rw-r--r--sal/osl/unx/sockimpl.h16
-rw-r--r--sal/osl/unx/system.c78
-rw-r--r--sal/osl/unx/system.h388
-rw-r--r--sal/osl/unx/tempfile.c206
-rw-r--r--sal/osl/unx/thread.c24
-rw-r--r--sal/osl/unx/time.c50
-rw-r--r--sal/osl/unx/util.c90
-rw-r--r--sal/osl/unx/uunxapi.cxx52
-rw-r--r--sal/osl/unx/uunxapi.h46
-rw-r--r--sal/osl/unx/uunxapi.hxx48
-rw-r--r--sal/osl/w32/conditn.c36
-rw-r--r--sal/osl/w32/diagnose.c30
-rw-r--r--sal/osl/w32/dllentry.c22
-rw-r--r--sal/osl/w32/file.cxx46
-rw-r--r--sal/osl/w32/file_dirvol.cxx580
-rw-r--r--sal/osl/w32/file_error.c16
-rw-r--r--sal/osl/w32/file_error.h2
-rw-r--r--sal/osl/w32/file_url.cxx260
-rw-r--r--sal/osl/w32/file_url.h35
-rw-r--r--sal/osl/w32/interlck.c60
-rw-r--r--sal/osl/w32/libutil.c2
-rw-r--r--sal/osl/w32/module.cxx140
-rw-r--r--sal/osl/w32/mutex.c22
-rw-r--r--sal/osl/w32/nlsupport.c20
-rw-r--r--sal/osl/w32/path_helper.cxx46
-rw-r--r--sal/osl/w32/path_helper.h14
-rw-r--r--sal/osl/w32/path_helper.hxx18
-rw-r--r--sal/osl/w32/pipe.c112
-rw-r--r--sal/osl/w32/pipeimpl.cxx220
-rw-r--r--sal/osl/w32/pipeimpl.h34
-rw-r--r--sal/osl/w32/process.cxx66
-rw-r--r--sal/osl/w32/procimpl.cxx294
-rw-r--r--sal/osl/w32/procimpl.h2
-rw-r--r--sal/osl/w32/profile.cxx86
-rw-r--r--sal/osl/w32/salinit.cxx12
-rw-r--r--sal/osl/w32/secimpl.h6
-rw-r--r--sal/osl/w32/security.c126
-rw-r--r--sal/osl/w32/semaphor.c22
-rw-r--r--sal/osl/w32/signal.cxx128
-rw-r--r--sal/osl/w32/socket.cxx252
-rw-r--r--sal/osl/w32/sockimpl.h16
-rw-r--r--sal/osl/w32/system.h22
-rw-r--r--sal/osl/w32/tempfile.cxx134
-rw-r--r--sal/osl/w32/thread.c120
-rw-r--r--sal/osl/w32/time.c68
-rw-r--r--sal/osl/w32/util.c4
-rw-r--r--sal/qa/OStringBuffer/rtl_OStringBuffer.cxx46
-rw-r--r--sal/qa/OStringBuffer/rtl_String_Const.h4
-rw-r--r--sal/qa/OStringBuffer/rtl_String_Utils.cxx6
-rw-r--r--sal/qa/OStringBuffer/rtl_String_Utils.hxx2
-rw-r--r--sal/qa/OStringBuffer/rtl_String_Utils_Const.h2
-rw-r--r--sal/qa/buildall.pl32
-rwxr-xr-xsal/qa/export.map2
-rwxr-xr-xsal/qa/helper/gcov/gcov_filter.pl10
-rw-r--r--sal/qa/helper/gcov/gcov_result.pl6
-rw-r--r--sal/qa/helper/gcov/gcov_resultcompare.pl6
-rw-r--r--sal/qa/helper/gcov/gcov_resultinterpreter.pl12
-rw-r--r--sal/qa/inc/valueequal.hxx34
-rw-r--r--sal/qa/osl/condition/osl_Condition.cxx136
-rw-r--r--sal/qa/osl/condition/osl_Condition_Const.h8
-rw-r--r--sal/qa/osl/file/osl_File.cxx382
-rw-r--r--sal/qa/osl/file/osl_File_Const.h152
-rw-r--r--sal/qa/osl/file/osl_old_test_file.cxx8
-rwxr-xr-xsal/qa/osl/file/test_cpy_wrt_file.cxx2
-rw-r--r--sal/qa/osl/module/export_dll.map2
-rw-r--r--sal/qa/osl/module/osl_Module.cxx190
-rw-r--r--sal/qa/osl/module/osl_Module_Const.h10
-rw-r--r--sal/qa/osl/module/osl_Module_DLL.cxx2
-rwxr-xr-xsal/qa/osl/mutex/osl_Mutex.cxx400
-rwxr-xr-xsal/qa/osl/mutex/osl_Mutex_Const.h6
-rw-r--r--sal/qa/osl/pipe/osl_Pipe.cxx8
-rw-r--r--sal/qa/osl/process/osl_Thread.cxx2
-rw-r--r--sal/qa/osl/process/osl_process.cxx10
-rw-r--r--sal/qa/osl/process/osl_process_child.cxx48
-rw-r--r--sal/qa/osl/profile/osl_old_testprofile.cxx2
-rwxr-xr-xsal/qa/osl/security/osl_Security.cxx274
-rwxr-xr-xsal/qa/osl/security/osl_Security_Const.h2
-rw-r--r--sal/qa/osl/socket/osl_AcceptorSocket.cxx16
-rw-r--r--sal/qa/osl/socket/osl_ConnectorSocket.cxx12
-rw-r--r--sal/qa/osl/socket/osl_DatagramSocket.cxx8
-rwxr-xr-xsal/qa/osl/socket/osl_Socket.cxx102
-rw-r--r--sal/qa/osl/socket/osl_Socket2.cxx62
-rw-r--r--sal/qa/osl/socket/osl_SocketAddr.cxx16
-rwxr-xr-xsal/qa/osl/socket/osl_Socket_Const.h62
-rw-r--r--sal/qa/osl/socket/osl_Socket_Const_orig.h62
-rw-r--r--sal/qa/osl/socket/osl_Socket_tests.cxx2
-rw-r--r--sal/qa/osl/socket/osl_StreamSocket.cxx2
-rw-r--r--sal/qa/osl/socket/sockethelper.cxx124
-rw-r--r--sal/qa/osl/socket/sockethelper.hxx12
-rw-r--r--sal/qa/osl/thread/test_thread.cxx2
-rw-r--r--sal/qa/osl/thread/version.map2
-rwxr-xr-xsal/qa/rtl/alloc/rtl_alloc.cxx2
-rw-r--r--sal/qa/rtl/bootstrap/bootstrap_process.cxx42
-rw-r--r--sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx4
-rw-r--r--sal/qa/rtl/cipher/rtl_cipher.cxx2
-rwxr-xr-xsal/qa/rtl/crc32/rtl_crc32.cxx2
-rw-r--r--sal/qa/rtl/digest/rtl_digest.cxx24
-rw-r--r--sal/qa/rtl/doublelock/rtl_doublelocking.cxx2
-rw-r--r--sal/qa/rtl/locale/rtl_locale.cxx2
-rw-r--r--sal/qa/rtl/logfile/rtl_logfile.cxx2
-rw-r--r--sal/qa/rtl/math/rtl_math.cxx2
-rw-r--r--sal/qa/rtl/math/rtl_old_testint64.cxx4
-rw-r--r--sal/qa/rtl/math/test_rtl_math.cxx10
-rw-r--r--sal/qa/rtl/ostring/rtl_OString2.cxx2
-rw-r--r--sal/qa/rtl/ostring/rtl_str.cxx2
-rw-r--r--sal/qa/rtl/ostring/rtl_string.cxx2
-rw-r--r--sal/qa/rtl/oustring/rtl_OUString2.cxx2
-rw-r--r--sal/qa/rtl/oustring/rtl_ustr.cxx2
-rw-r--r--sal/qa/rtl/oustringbuffer/rtl_OUStringBuffer2.cxx2
-rw-r--r--sal/qa/rtl/process/child_process.cxx6
-rw-r--r--sal/qa/rtl/process/child_process_id.cxx4
-rw-r--r--sal/qa/rtl/process/rtl_Process.cxx4
-rw-r--r--sal/qa/rtl/random/rtl_random.cxx2
-rw-r--r--sal/qa/rtl/strings/test_oustring_compare.cxx2
-rw-r--r--sal/qa/rtl/strings/test_oustring_convert.cxx2
-rw-r--r--sal/qa/rtl/strings/test_oustring_endswith.cxx2
-rw-r--r--sal/qa/rtl/strings/test_oustring_noadditional.cxx2
-rw-r--r--sal/qa/rtl/strings/test_oustringbuffer_utf32.cxx2
-rw-r--r--sal/qa/rtl/textenc/rtl_tencinfo.cxx2
-rw-r--r--sal/qa/rtl/textenc/rtl_textcvt.cxx2
-rw-r--r--sal/qa/rtl/uri/rtl_Uri.cxx2
-rw-r--r--sal/qa/rtl/uri/rtl_testuri.cxx2
-rw-r--r--sal/qa/rtl/uuid/rtl_Uuid.cxx4
-rw-r--r--sal/qa/rtl_strings/rtl_OString.cxx280
-rw-r--r--sal/qa/rtl_strings/rtl_OUString.cxx730
-rw-r--r--sal/qa/rtl_strings/rtl_OUStringBuffer.cxx266
-rw-r--r--sal/qa/rtl_strings/rtl_String_Const.h42
-rw-r--r--sal/qa/rtl_strings/rtl_String_Utils.cxx4
-rw-r--r--sal/qa/rtl_strings/rtl_String_Utils.hxx2
-rw-r--r--sal/qa/rtl_strings/rtl_String_Utils_Const.h2
-rw-r--r--sal/qa/rtl_strings/rtl_old_testostring.cxx2
-rw-r--r--sal/qa/rtl_strings/rtl_old_testowstring.cxx162
-rw-r--r--sal/qa/rtl_strings/rtl_old_teststrbuf.cxx2
-rw-r--r--sal/qa/sal/test_types.cxx2
-rw-r--r--sal/qa/sal/version.map2
-rw-r--r--sal/qa/systools/test_comtools.cxx2
-rw-r--r--sal/qa/testHelperFunctions/testHelperFunctions.cxx2
-rw-r--r--sal/qa/testHelperFunctions/testHelperFunctions2.cxx2
-rw-r--r--sal/rtl/source/alloc.c18
-rw-r--r--sal/rtl/source/alloc_arena.c12
-rw-r--r--sal/rtl/source/alloc_arena.h2
-rw-r--r--sal/rtl/source/alloc_cache.c8
-rw-r--r--sal/rtl/source/alloc_cache.h2
-rw-r--r--sal/rtl/source/alloc_global.c6
-rw-r--r--sal/rtl/source/alloc_impl.h2
-rw-r--r--sal/rtl/source/bootstrap.cxx22
-rw-r--r--sal/rtl/source/byteseq.c6
-rw-r--r--sal/rtl/source/cipher.c6
-rw-r--r--sal/rtl/source/cmdargs.cxx2
-rw-r--r--sal/rtl/source/crc.c128
-rw-r--r--sal/rtl/source/debugprint.cxx2
-rw-r--r--sal/rtl/source/digest.c6
-rw-r--r--sal/rtl/source/gen_makefile.cxx2
-rw-r--r--sal/rtl/source/hash.cxx2
-rw-r--r--sal/rtl/source/locale.c2
-rw-r--r--sal/rtl/source/logfile.cxx22
-rw-r--r--sal/rtl/source/macro.hxx2
-rw-r--r--sal/rtl/source/math.cxx8
-rw-r--r--sal/rtl/source/memory.c2
-rwxr-xr-xsal/rtl/source/memory_fini.cxx4
-rw-r--r--sal/rtl/source/random.c4
-rw-r--r--sal/rtl/source/rtl_process.c2
-rw-r--r--sal/rtl/source/strbuf.c32
-rw-r--r--sal/rtl/source/strimp.c8
-rw-r--r--sal/rtl/source/strimp.h4
-rw-r--r--sal/rtl/source/string.c2
-rw-r--r--sal/rtl/source/strtmpl.c2
-rw-r--r--sal/rtl/source/surrogates.h2
-rw-r--r--sal/rtl/source/tres.c2
-rw-r--r--sal/rtl/source/unload.cxx26
-rw-r--r--sal/rtl/source/uri.cxx4
-rw-r--r--sal/rtl/source/ustrbuf.c6
-rw-r--r--sal/rtl/source/ustring.c2
-rw-r--r--sal/rtl/source/uuid.cxx10
-rw-r--r--sal/systools/win32/kill/kill.cxx84
-rw-r--r--sal/systools/win32/onlineupdate/onlinecheck.cxx8
-rw-r--r--sal/systools/win32/uwinapi/CheckTokenMembership.cpp2
-rw-r--r--sal/systools/win32/uwinapi/CommandLineToArgvW.cpp24
-rw-r--r--sal/systools/win32/uwinapi/CopyFileExA.cpp34
-rw-r--r--sal/systools/win32/uwinapi/CopyFileExW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/DeleteVolumeMountPointA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/DeleteVolumeMountPointW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/DllGetVersion.cpp18
-rw-r--r--sal/systools/win32/uwinapi/DllMain.cpp24
-rw-r--r--sal/systools/win32/uwinapi/DrawStateW.cpp28
-rw-r--r--sal/systools/win32/uwinapi/EnumProcesses.cpp8
-rw-r--r--sal/systools/win32/uwinapi/FindFirstVolumeA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindFirstVolumeMountPointA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindFirstVolumeMountPointW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindFirstVolumeW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindNextVolumeA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindNextVolumeMountPointA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindNextVolumeMountPointW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindNextVolumeW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindVolumeClose.cpp2
-rw-r--r--sal/systools/win32/uwinapi/FindVolumeMountPointClose.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetDiskFreeSpaceExA.cpp8
-rw-r--r--sal/systools/win32/uwinapi/GetDiskFreeSpaceExW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetLogicalDriveStringsW.cpp4
-rw-r--r--sal/systools/win32/uwinapi/GetLongPathName.cpp22
-rw-r--r--sal/systools/win32/uwinapi/GetLongPathNameA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetLongPathNameW.cpp6
-rw-r--r--sal/systools/win32/uwinapi/GetModuleFileNameExA.cpp14
-rw-r--r--sal/systools/win32/uwinapi/GetProcessId.cpp32
-rw-r--r--sal/systools/win32/uwinapi/GetUserDefaultUILanguage.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetUserDomainA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetUserDomainW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetUserDomain_NT.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetUserDomain_WINDOWS.cpp36
-rw-r--r--sal/systools/win32/uwinapi/GetVolumeNameForVolumeMountPointA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetVolumeNameForVolumeMountPointW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetVolumePathNameA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/GetVolumePathNameW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/MCIWndCreateW.cpp12
-rw-r--r--sal/systools/win32/uwinapi/MoveFileExA.cpp24
-rw-r--r--sal/systools/win32/uwinapi/MoveFileExW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/PathAddBackslashW.cpp6
-rw-r--r--sal/systools/win32/uwinapi/PathCompactPathExW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/PathFileExistsW.cpp6
-rw-r--r--sal/systools/win32/uwinapi/PathFindExtensionW.cpp22
-rw-r--r--sal/systools/win32/uwinapi/PathFindFileNameW.cpp12
-rw-r--r--sal/systools/win32/uwinapi/PathIsFileSpecW.cpp4
-rw-r--r--sal/systools/win32/uwinapi/PathIsUNCW.cpp4
-rw-r--r--sal/systools/win32/uwinapi/PathRemoveExtensionW.cpp6
-rw-r--r--sal/systools/win32/uwinapi/PathRemoveFileSpecW.cpp6
-rw-r--r--sal/systools/win32/uwinapi/PathSetDlgItemPathW.cpp6
-rw-r--r--sal/systools/win32/uwinapi/PathStripToRootW.cpp6
-rw-r--r--sal/systools/win32/uwinapi/ResolveThunk.cpp6
-rw-r--r--sal/systools/win32/uwinapi/ResolveUnicows.cpp22
-rw-r--r--sal/systools/win32/uwinapi/SHCreateItemFromParsingName.cpp2
-rw-r--r--sal/systools/win32/uwinapi/SHILCreateFromPathW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/SetVolumeMountPointA.cpp2
-rw-r--r--sal/systools/win32/uwinapi/SetVolumeMountPointW.cpp2
-rw-r--r--sal/systools/win32/uwinapi/Uwinapi.h40
-rw-r--r--sal/systools/win32/uwinapi/macros.h74
-rw-r--r--sal/systools/win32/uwinapi/sntprintf.c42
-rw-r--r--sal/systools/win32/uwinapi/win95sys.h446
-rwxr-xr-xsal/test/bootstrap.pl44
-rw-r--r--sal/test/test_salmain.cxx2
-rw-r--r--sal/test/test_salmainwithargs.cxx2
-rw-r--r--sal/test/testbootstrap.cxx2
-rw-r--r--sal/test/unloading/samplelib1.cxx26
-rw-r--r--sal/test/unloading/samplelib1.xml60
-rw-r--r--sal/test/unloading/samplelib2.cxx24
-rw-r--r--sal/test/unloading/unloadTest.cxx164
-rw-r--r--sal/textenc/context.c2
-rw-r--r--sal/textenc/context.h2
-rw-r--r--sal/textenc/convertadobe.tab8
-rw-r--r--sal/textenc/convertbig5hkscs.c2
-rw-r--r--sal/textenc/convertbig5hkscs.h2
-rw-r--r--sal/textenc/convertbig5hkscs.tab2
-rw-r--r--sal/textenc/converter.c2
-rw-r--r--sal/textenc/converter.h2
-rw-r--r--sal/textenc/converteuctw.c2
-rw-r--r--sal/textenc/converteuctw.h2
-rw-r--r--sal/textenc/converteuctw.tab2
-rw-r--r--sal/textenc/convertgb18030.c2
-rw-r--r--sal/textenc/convertgb18030.h2
-rw-r--r--sal/textenc/convertgb18030.tab2
-rw-r--r--sal/textenc/convertiscii.tab2
-rw-r--r--sal/textenc/convertiso2022cn.c2
-rw-r--r--sal/textenc/convertiso2022cn.h2
-rw-r--r--sal/textenc/convertiso2022cn.tab2
-rw-r--r--sal/textenc/convertiso2022jp.c2
-rw-r--r--sal/textenc/convertiso2022jp.h2
-rw-r--r--sal/textenc/convertiso2022jp.tab2
-rw-r--r--sal/textenc/convertiso2022kr.c2
-rw-r--r--sal/textenc/convertiso2022kr.h2
-rw-r--r--sal/textenc/convertiso2022kr.tab2
-rw-r--r--sal/textenc/convertsinglebytetobmpunicode.cxx2
-rw-r--r--sal/textenc/convertsinglebytetobmpunicode.hxx2
-rw-r--r--sal/textenc/generate/big5hkscs2001.pl2
-rw-r--r--sal/textenc/generate/big5hkscs2001.tab2
-rw-r--r--sal/textenc/generate/cns116431992.pl2
-rw-r--r--sal/textenc/generate/cns116431992.tab2
-rw-r--r--sal/textenc/generate/gb180302000.pl2
-rw-r--r--sal/textenc/generate/gb180302000.tab2
-rw-r--r--sal/textenc/gettextencodingdata.h2
-rw-r--r--sal/textenc/tcvtarb1.tab2
-rw-r--r--sal/textenc/tcvtbyte.c2
-rw-r--r--sal/textenc/tcvteas1.tab2
-rw-r--r--sal/textenc/tcvtest1.tab2
-rw-r--r--sal/textenc/tcvtjp1.tab570
-rw-r--r--sal/textenc/tcvtjp2.tab6174
-rw-r--r--sal/textenc/tcvtjp3.tab942
-rw-r--r--sal/textenc/tcvtjp4.tab5694
-rw-r--r--sal/textenc/tcvtjp5.tab5486
-rw-r--r--sal/textenc/tcvtjp6.tab2
-rw-r--r--sal/textenc/tcvtkr1.tab1054
-rw-r--r--sal/textenc/tcvtkr2.tab6028
-rw-r--r--sal/textenc/tcvtkr4.tab2626
-rw-r--r--sal/textenc/tcvtkr5.tab6028
-rw-r--r--sal/textenc/tcvtkr6.tab2
-rw-r--r--sal/textenc/tcvtlat1.tab2
-rw-r--r--sal/textenc/tcvtmb.c2
-rw-r--r--sal/textenc/tcvtscn1.tab1026
-rw-r--r--sal/textenc/tcvtscn2.tab1476
-rw-r--r--sal/textenc/tcvtscn3.tab446
-rw-r--r--sal/textenc/tcvtscn4.tab4902
-rw-r--r--sal/textenc/tcvtscn5.tab5368
-rw-r--r--sal/textenc/tcvtscn6.tab2
-rw-r--r--sal/textenc/tcvtsym1.tab2
-rw-r--r--sal/textenc/tcvttcn1.tab1430
-rw-r--r--sal/textenc/tcvttcn2.tab5398
-rw-r--r--sal/textenc/tcvttcn6.tab2
-rw-r--r--sal/textenc/tcvtuni1.tab2
-rw-r--r--sal/textenc/tcvtutf7.c2
-rw-r--r--sal/textenc/tcvtutf8.c2
-rw-r--r--sal/textenc/tenchelp.c2
-rw-r--r--sal/textenc/tenchelp.h2
-rw-r--r--sal/textenc/tencinfo.c2
-rw-r--r--sal/textenc/textcvt.c2
-rw-r--r--sal/textenc/textenc.cxx2
-rw-r--r--sal/textenc/unichars.c2
-rw-r--r--sal/textenc/unichars.h2
-rw-r--r--sal/typesconfig/typesconfig.c162
-rw-r--r--sal/workben/clipboardwben/testcopy/StdAfx.cpp4
-rw-r--r--sal/workben/clipboardwben/testcopy/StdAfx.h2
-rw-r--r--sal/workben/clipboardwben/testcopy/XTDataObject.cxx36
-rw-r--r--sal/workben/clipboardwben/testcopy/XTDataObject.hxx22
-rw-r--r--sal/workben/clipboardwben/testcopy/cbcpytest.cxx112
-rw-r--r--sal/workben/clipboardwben/testcopy/resource.h2
-rw-r--r--sal/workben/clipboardwben/testpaste/StdAfx.cpp4
-rw-r--r--sal/workben/clipboardwben/testpaste/StdAfx.h2
-rw-r--r--sal/workben/clipboardwben/testpaste/cbptest.cxx136
-rw-r--r--sal/workben/clipboardwben/testpaste/resource.h2
-rw-r--r--sal/workben/clipboardwben/testviewer/StdAfx.cpp4
-rw-r--r--sal/workben/clipboardwben/testviewer/StdAfx.h2
-rw-r--r--sal/workben/clipboardwben/testviewer/cbvtest.cxx88
-rw-r--r--sal/workben/clipboardwben/testviewer/resource.h2
-rw-r--r--sal/workben/getlocaleinfotest.cxx6
-rw-r--r--sal/workben/saldyntest.c2
-rw-r--r--sal/workben/salstattest.c4
-rw-r--r--sal/workben/t_cipher.c6
-rw-r--r--sal/workben/t_digest.c2
-rw-r--r--sal/workben/t_ojp_exe.cxx12
-rw-r--r--sal/workben/t_osl_getVolInfo.cxx72
-rw-r--r--sal/workben/t_osl_joinProcess.cxx108
-rw-r--r--sal/workben/t_random.c2
-rw-r--r--sal/workben/test.cxx20
-rw-r--r--sal/workben/testfile.cxx576
-rw-r--r--sal/workben/testpip2.cxx14
-rw-r--r--sal/workben/testpipe.cxx28
-rw-r--r--sal/workben/testproc.cxx14
-rw-r--r--sal/workben/tgetpwnam.cxx70
-rw-r--r--salhelper/inc/salhelper/condition.hxx44
-rw-r--r--salhelper/inc/salhelper/dynload.hxx54
-rw-r--r--salhelper/inc/salhelper/future.hxx2
-rw-r--r--salhelper/inc/salhelper/futurequeue.hxx2
-rw-r--r--salhelper/inc/salhelper/monitor.hxx4
-rw-r--r--salhelper/inc/salhelper/queue.hxx2
-rw-r--r--salhelper/inc/salhelper/refobj.hxx4
-rwxr-xr-xsalhelper/inc/salhelper/simplereferenceobject.hxx2
-rw-r--r--salhelper/inc/salhelper/singletonref.hxx4
-rw-r--r--salhelper/qa/test_api.cxx2
-rw-r--r--salhelper/source/condition.cxx12
-rw-r--r--salhelper/source/dynload.cxx34
-rw-r--r--salhelper/source/gcc3.map6
-rw-r--r--salhelper/source/gcc3os2.map6
-rw-r--r--salhelper/source/msci.map2
-rwxr-xr-xsalhelper/source/simplereferenceobject.cxx2
-rw-r--r--salhelper/test/Symbols/loader.cxx6
-rw-r--r--salhelper/test/Symbols/samplelib.cxx4
-rw-r--r--salhelper/test/dynamicloader/loader.cxx6
-rw-r--r--salhelper/test/dynamicloader/samplelib.cxx4
-rw-r--r--salhelper/test/rtti/rttitest.cxx6
-rw-r--r--sane/inc/sane.h132
-rw-r--r--sax/inc/sax/dllapi.h2
-rw-r--r--sax/inc/sax/fastattribs.hxx4
-rw-r--r--sax/inc/sax/fshelper.hxx14
-rw-r--r--sax/inc/sax/parser/saxparser.hxx6
-rw-r--r--sax/inc/sax/tools/attributemap.hxx2
-rw-r--r--sax/inc/sax/tools/converter.hxx8
-rw-r--r--sax/inc/sax/tools/saxobject.hxx2
-rw-r--r--sax/inc/sax/tools/tokenmap.hxx2
-rw-r--r--sax/inc/xml2utf.hxx48
-rw-r--r--sax/qa/cppunit/version.map2
-rw-r--r--sax/source/expatwrap/attrlistimpl.cxx10
-rw-r--r--sax/source/expatwrap/attrlistimpl.hxx4
-rw-r--r--sax/source/expatwrap/factory.hxx4
-rw-r--r--sax/source/expatwrap/sax_expat.cxx272
-rw-r--r--sax/source/expatwrap/saxwriter.cxx106
-rw-r--r--sax/source/expatwrap/xml2utf.cxx26
-rw-r--r--sax/source/fastparser/facreg.cxx10
-rw-r--r--sax/source/fastparser/fastparser.cxx24
-rw-r--r--sax/source/fastparser/fastparser.hxx4
-rw-r--r--sax/source/tools/converter.cxx26
-rw-r--r--sax/source/tools/fastattribs.cxx2
-rw-r--r--sax/source/tools/fastserializer.cxx36
-rw-r--r--sax/source/tools/fastserializer.hxx12
-rw-r--r--sax/source/tools/fshelper.cxx10
-rw-r--r--sax/test/sax/factory.hxx6
-rw-r--r--sax/test/sax/testsax.cxx180
-rw-r--r--sax/test/sax/testwriter.cxx44
-rw-r--r--sax/test/saxdemo.cxx16
-rw-r--r--sax/test/testcomponent.cxx2
-rw-r--r--sc/addin/datefunc/dfa.src2
-rw-r--r--sc/addin/inc/addin.h20
-rw-r--r--sc/addin/inc/dfa.hrc2
-rw-r--r--sc/addin/inc/rot13.hrc2
-rw-r--r--sc/addin/rot13/rot13.src2
-rw-r--r--sc/addin/util/cl2c.pl4
-rw-r--r--sc/inc/AccessibleFilterMenu.hxx4
-rw-r--r--sc/inc/AccessibleFilterMenuItem.hxx24
-rw-r--r--sc/inc/AccessibleFilterTopWindow.hxx4
-rw-r--r--sc/inc/AccessibleGlobal.hxx12
-rw-r--r--sc/inc/ViewSettingsSequenceDefines.hxx110
-rw-r--r--sc/inc/addincfg.hxx10
-rw-r--r--sc/inc/addincol.hxx102
-rw-r--r--sc/inc/address.hxx34
-rw-r--r--sc/inc/addruno.hxx2
-rw-r--r--sc/inc/afmtuno.hxx64
-rw-r--r--sc/inc/appluno.hxx26
-rw-r--r--sc/inc/appoptio.hxx118
-rw-r--r--sc/inc/arealink.hxx26
-rw-r--r--sc/inc/attarray.hxx150
-rw-r--r--sc/inc/attrib.hxx90
-rw-r--r--sc/inc/autoform.hxx2
-rw-r--r--sc/inc/autonamecache.hxx4
-rw-r--r--sc/inc/bigrange.hxx72
-rw-r--r--sc/inc/brdcst.hxx18
-rw-r--r--sc/inc/callform.hxx52
-rw-r--r--sc/inc/cell.hxx208
-rw-r--r--sc/inc/cellform.hxx12
-rw-r--r--sc/inc/cellsuno.hxx414
-rw-r--r--sc/inc/cfgids.hxx8
-rw-r--r--sc/inc/chart2uno.hxx46
-rw-r--r--sc/inc/chartarr.hxx44
-rw-r--r--sc/inc/charthelper.hxx2
-rw-r--r--sc/inc/chartlis.hxx110
-rw-r--r--sc/inc/chartlock.hxx18
-rw-r--r--sc/inc/chartpos.hxx92
-rw-r--r--sc/inc/chartuno.hxx40
-rw-r--r--sc/inc/chgtrack.hxx720
-rw-r--r--sc/inc/chgviset.hxx94
-rw-r--r--sc/inc/clipparam.hxx18
-rw-r--r--sc/inc/collect.hxx66
-rw-r--r--sc/inc/column.hxx388
-rw-r--r--sc/inc/compiler.hxx20
-rw-r--r--sc/inc/compressedarray.hxx4
-rw-r--r--sc/inc/conditio.hxx174
-rw-r--r--sc/inc/confuno.hxx20
-rw-r--r--sc/inc/consoli.hxx112
-rw-r--r--sc/inc/convuno.hxx30
-rw-r--r--sc/inc/cursuno.hxx34
-rw-r--r--sc/inc/dapiuno.hxx94
-rw-r--r--sc/inc/datauno.hxx220
-rw-r--r--sc/inc/dbcolect.hxx266
-rw-r--r--sc/inc/dbdocutl.hxx2
-rw-r--r--sc/inc/dbtoken.hxx2
-rw-r--r--sc/inc/defltuno.hxx22
-rw-r--r--sc/inc/detdata.hxx28
-rw-r--r--sc/inc/detfunc.hxx68
-rw-r--r--sc/inc/dispuno.hxx34
-rw-r--r--sc/inc/dociter.hxx318
-rw-r--r--sc/inc/docoptio.hxx156
-rw-r--r--sc/inc/docpool.hxx48
-rw-r--r--sc/inc/document.hxx1322
-rw-r--r--sc/inc/docuno.hxx208
-rw-r--r--sc/inc/dpcachetable.hxx8
-rw-r--r--sc/inc/dpdimsave.hxx2
-rwxr-xr-xsc/inc/dpglobal.hxx114
-rw-r--r--sc/inc/dpgroup.hxx16
-rw-r--r--sc/inc/dpobject.hxx164
-rw-r--r--sc/inc/dpoutput.hxx88
-rw-r--r--sc/inc/dpoutputgeometry.hxx6
-rw-r--r--sc/inc/dpsave.hxx148
-rw-r--r--sc/inc/dpsdbtab.hxx32
-rw-r--r--sc/inc/dpshttab.hxx40
-rw-r--r--sc/inc/dptabdat.hxx88
-rw-r--r--sc/inc/dptablecache.hxx56
-rw-r--r--sc/inc/dptabres.hxx294
-rw-r--r--sc/inc/dptabsrc.hxx376
-rw-r--r--sc/inc/drawattr.hxx12
-rw-r--r--sc/inc/drawpage.hxx2
-rw-r--r--sc/inc/drdefuno.hxx10
-rw-r--r--sc/inc/drwlayer.hxx112
-rw-r--r--sc/inc/editsrc.hxx102
-rw-r--r--sc/inc/editutil.hxx124
-rwxr-xr-xsc/inc/eventuno.hxx2
-rw-r--r--sc/inc/externalrefmgr.hxx52
-rw-r--r--sc/inc/fielduno.hxx146
-rw-r--r--sc/inc/fillinfo.hxx2
-rw-r--r--sc/inc/filter.hxx54
-rw-r--r--sc/inc/filtopt.hxx20
-rw-r--r--sc/inc/filtuno.hxx22
-rw-r--r--sc/inc/fmtuno.hxx82
-rw-r--r--sc/inc/forbiuno.hxx12
-rw-r--r--sc/inc/formulaparserpool.hxx2
-rw-r--r--sc/inc/formularesult.hxx6
-rw-r--r--sc/inc/funcdesc.hxx10
-rw-r--r--sc/inc/funcuno.hxx36
-rw-r--r--sc/inc/global.hxx560
-rw-r--r--sc/inc/globstr.hrc646
-rw-r--r--sc/inc/hints.hxx108
-rw-r--r--sc/inc/inputopt.hxx32
-rw-r--r--sc/inc/linkuno.hxx158
-rw-r--r--sc/inc/listenercalls.hxx2
-rw-r--r--sc/inc/lookupcache.hxx2
-rw-r--r--sc/inc/markarr.hxx42
-rw-r--r--sc/inc/markdata.hxx98
-rw-r--r--sc/inc/miscuno.hxx126
-rw-r--r--sc/inc/mutexhlp.hxx6
-rw-r--r--sc/inc/nameuno.hxx84
-rw-r--r--sc/inc/navicfg.hxx20
-rw-r--r--sc/inc/notesuno.hxx146
-rw-r--r--sc/inc/olinetab.hxx2
-rw-r--r--sc/inc/optuno.hxx14
-rw-r--r--sc/inc/optutil.hxx24
-rw-r--r--sc/inc/pagepar.hxx58
-rw-r--r--sc/inc/pageuno.hxx4
-rw-r--r--sc/inc/paramisc.hxx32
-rw-r--r--sc/inc/patattr.hxx60
-rwxr-xr-xsc/inc/pch/precompiled_sc.cxx2
-rw-r--r--sc/inc/pch/precompiled_sc.hxx2
-rw-r--r--sc/inc/pivot.hxx24
-rw-r--r--sc/inc/postit.hxx2
-rw-r--r--sc/inc/printopt.hxx28
-rw-r--r--sc/inc/prnsave.hxx16
-rw-r--r--sc/inc/progress.hxx64
-rw-r--r--sc/inc/queryparam.hxx2
-rw-r--r--sc/inc/rangelst.hxx46
-rw-r--r--sc/inc/rangenam.hxx152
-rw-r--r--sc/inc/rangeseq.hxx22
-rw-r--r--sc/inc/rangeutl.hxx118
-rw-r--r--sc/inc/rechead.hxx194
-rw-r--r--sc/inc/recursionhelper.hxx4
-rw-r--r--sc/inc/refdata.hxx4
-rw-r--r--sc/inc/reffind.hxx22
-rw-r--r--sc/inc/refreshtimer.hxx48
-rw-r--r--sc/inc/reftokenhelper.hxx10
-rw-r--r--sc/inc/sc.hrc2108
-rw-r--r--sc/inc/scabstdlg.hxx212
-rw-r--r--sc/inc/scdll.hxx18
-rw-r--r--sc/inc/scerrors.hxx2
-rw-r--r--sc/inc/scextopt.hxx2
-rw-r--r--sc/inc/scfuncs.hrc562
-rw-r--r--sc/inc/scitems.hxx142
-rw-r--r--sc/inc/scmatrix.hxx19
-rw-r--r--sc/inc/scmod.hxx214
-rw-r--r--sc/inc/scresid.hxx4
-rw-r--r--sc/inc/scwarngs.hxx4
-rw-r--r--sc/inc/segmenttree.hxx2
-rw-r--r--sc/inc/servuno.hxx90
-rw-r--r--sc/inc/shapeuno.hxx44
-rw-r--r--sc/inc/sheetdata.hxx2
-rw-r--r--sc/inc/sheetevents.hxx4
-rw-r--r--sc/inc/shellids.hxx32
-rw-r--r--sc/inc/sortparam.hxx52
-rw-r--r--sc/inc/srchuno.hxx24
-rw-r--r--sc/inc/stlpool.hxx46
-rw-r--r--sc/inc/stlsheet.hxx26
-rw-r--r--sc/inc/stringutil.hxx12
-rw-r--r--sc/inc/strload.hxx2
-rw-r--r--sc/inc/styleuno.hxx78
-rw-r--r--sc/inc/subtotal.hxx12
-rw-r--r--sc/inc/table.hxx718
-rw-r--r--sc/inc/tablink.hxx46
-rw-r--r--sc/inc/tabopparams.hxx2
-rw-r--r--sc/inc/tabprotection.hxx18
-rw-r--r--sc/inc/targuno.hxx102
-rw-r--r--sc/inc/textuno.hxx154
-rw-r--r--sc/inc/token.hxx18
-rw-r--r--sc/inc/tokenarray.hxx4
-rw-r--r--sc/inc/tokenuno.hxx2
-rw-r--r--sc/inc/unitconv.hxx20
-rw-r--r--sc/inc/unoguard.hxx2
-rw-r--r--sc/inc/unonames.hxx862
-rw-r--r--sc/inc/unoreflist.hxx2
-rw-r--r--sc/inc/unowids.hxx68
-rw-r--r--sc/inc/userdat.hxx20
-rw-r--r--sc/inc/userlist.hxx36
-rw-r--r--sc/inc/validat.hxx90
-rw-r--r--sc/inc/viewopti.hxx64
-rw-r--r--sc/inc/viewuno.hxx94
-rw-r--r--sc/inc/waitoff.hxx6
-rw-r--r--sc/inc/warnpassword.hxx10
-rw-r--r--sc/inc/xmlwrap.hxx8
-rw-r--r--sc/inc/zforauto.hxx2
-rwxr-xr-xsc/qa/complex/calcPreview/ViewForwarder.java2
-rwxr-xr-xsc/qa/complex/cellRanges/CheckXCellRangesQuery.java6
-rw-r--r--sc/qa/complex/dataPilot/CheckDataPilot.java2
-rw-r--r--sc/qa/complex/dataPilot/interfaceTests/beans/_XPropertySet.java14
-rw-r--r--sc/qa/complex/dataPilot/interfaceTests/container/_XNamed.java6
-rw-r--r--sc/qa/complex/dataPilot/interfaceTests/sheet/_XDataPilotDescriptor.java2
-rw-r--r--sc/qa/complex/dataPilot/interfaceTests/sheet/_XDataPilotTable.java8
-rw-r--r--sc/qa/complex/sc/CalcRTL.java98
-rw-r--r--sc/sdi/app.sdi16
-rw-r--r--sc/sdi/auditsh.sdi16
-rw-r--r--sc/sdi/cellsh.sdi364
-rw-r--r--sc/sdi/chartsh.sdi2
-rw-r--r--sc/sdi/docsh.sdi96
-rw-r--r--sc/sdi/drawsh.sdi250
-rw-r--r--sc/sdi/drformsh.sdi2
-rw-r--r--sc/sdi/drtxtob.sdi168
-rw-r--r--sc/sdi/editsh.sdi76
-rw-r--r--sc/sdi/formatsh.sdi100
-rw-r--r--sc/sdi/graphsh.sdi4
-rw-r--r--sc/sdi/mediash.sdi2
-rw-r--r--sc/sdi/oleobjsh.sdi2
-rw-r--r--sc/sdi/pgbrksh.sdi2
-rw-r--r--sc/sdi/pivotsh.sdi8
-rw-r--r--sc/sdi/prevwsh.sdi44
-rw-r--r--sc/sdi/scalc.sdi8
-rw-r--r--sc/sdi/scslots.hrc2
-rw-r--r--sc/sdi/scslots.sdi2
-rw-r--r--sc/sdi/tabpopsh.sdi4
-rw-r--r--sc/sdi/tabvwsh.sdi230
-rw-r--r--sc/source/core/data/attarray.cxx312
-rw-r--r--sc/source/core/data/attrib.cxx156
-rw-r--r--sc/source/core/data/autonamecache.cxx2
-rw-r--r--sc/source/core/data/bcaslot.cxx38
-rw-r--r--sc/source/core/data/cell.cxx72
-rw-r--r--sc/source/core/data/cell2.cxx8
-rw-r--r--sc/source/core/data/clipparam.cxx2
-rw-r--r--sc/source/core/data/column.cxx158
-rw-r--r--sc/source/core/data/column2.cxx244
-rw-r--r--sc/source/core/data/column3.cxx252
-rw-r--r--sc/source/core/data/compressedarray.cxx4
-rw-r--r--sc/source/core/data/conditio.cxx168
-rw-r--r--sc/source/core/data/dbdocutl.cxx10
-rw-r--r--sc/source/core/data/dociter.cxx150
-rw-r--r--sc/source/core/data/docpool.cxx488
-rw-r--r--sc/source/core/data/documen2.cxx112
-rw-r--r--sc/source/core/data/documen3.cxx184
-rw-r--r--sc/source/core/data/documen4.cxx176
-rw-r--r--sc/source/core/data/documen5.cxx36
-rw-r--r--sc/source/core/data/documen6.cxx26
-rw-r--r--sc/source/core/data/documen7.cxx46
-rw-r--r--sc/source/core/data/documen8.cxx230
-rw-r--r--sc/source/core/data/documen9.cxx84
-rw-r--r--sc/source/core/data/document.cxx282
-rw-r--r--sc/source/core/data/dpcachetable.cxx30
-rw-r--r--sc/source/core/data/dpdimsave.cxx2
-rwxr-xr-xsc/source/core/data/dpglobal.cxx12
-rw-r--r--sc/source/core/data/dpgroup.cxx76
-rw-r--r--sc/source/core/data/dpobject.cxx244
-rwxr-xr-xsc/source/core/data/dpoutput.cxx252
-rw-r--r--sc/source/core/data/dpoutputgeometry.cxx2
-rw-r--r--sc/source/core/data/dpsave.cxx94
-rw-r--r--sc/source/core/data/dpsdbtab.cxx34
-rwxr-xr-xsc/source/core/data/dpshttab.cxx20
-rwxr-xr-xsc/source/core/data/dptabdat.cxx64
-rwxr-xr-xsc/source/core/data/dptablecache.cxx180
-rwxr-xr-xsc/source/core/data/dptabres.cxx330
-rwxr-xr-xsc/source/core/data/dptabsrc.cxx396
-rw-r--r--sc/source/core/data/drawpage.cxx2
-rw-r--r--sc/source/core/data/drwlayer.cxx274
-rw-r--r--sc/source/core/data/fillinfo.cxx178
-rw-r--r--sc/source/core/data/global.cxx250
-rw-r--r--sc/source/core/data/global2.cxx348
-rw-r--r--sc/source/core/data/globalx.cxx6
-rw-r--r--sc/source/core/data/markarr.cxx18
-rw-r--r--sc/source/core/data/markdata.cxx52
-rw-r--r--sc/source/core/data/olinetab.cxx2
-rw-r--r--sc/source/core/data/pagepar.cxx18
-rw-r--r--sc/source/core/data/patattr.cxx168
-rw-r--r--sc/source/core/data/pivot2.cxx4
-rw-r--r--sc/source/core/data/poolhelp.cxx14
-rw-r--r--sc/source/core/data/postit.cxx2
-rw-r--r--sc/source/core/data/scdpoutputimpl.cxx50
-rwxr-xr-xsc/source/core/data/scdpoutputimpl.hxx54
-rw-r--r--sc/source/core/data/segmenttree.cxx10
-rw-r--r--sc/source/core/data/sheetevents.cxx2
-rw-r--r--sc/source/core/data/sortparam.cxx112
-rw-r--r--sc/source/core/data/stlpool.cxx114
-rw-r--r--sc/source/core/data/stlsheet.cxx78
-rw-r--r--sc/source/core/data/tabbgcolor.cxx18
-rw-r--r--sc/source/core/data/table1.cxx166
-rw-r--r--sc/source/core/data/table2.cxx234
-rw-r--r--sc/source/core/data/table3.cxx250
-rw-r--r--sc/source/core/data/table4.cxx160
-rw-r--r--sc/source/core/data/table5.cxx62
-rw-r--r--sc/source/core/data/table6.cxx68
-rw-r--r--sc/source/core/data/tabprotection.cxx10
-rw-r--r--sc/source/core/data/userdat.cxx2
-rw-r--r--sc/source/core/data/validat.cxx132
-rw-r--r--sc/source/core/inc/addinhelpid.hxx2
-rw-r--r--sc/source/core/inc/addinlis.hxx28
-rw-r--r--sc/source/core/inc/adiasync.hxx38
-rw-r--r--sc/source/core/inc/bcaslot.hxx84
-rw-r--r--sc/source/core/inc/cellkeytranslator.hxx16
-rw-r--r--sc/source/core/inc/core_pch.hxx10
-rw-r--r--sc/source/core/inc/ddelink.hxx40
-rw-r--r--sc/source/core/inc/doubleref.hxx52
-rw-r--r--sc/source/core/inc/interpre.hxx12
-rw-r--r--sc/source/core/inc/jumpmatrix.hxx2
-rw-r--r--sc/source/core/inc/parclass.hxx10
-rw-r--r--sc/source/core/inc/poolhelp.hxx24
-rw-r--r--sc/source/core/inc/refupdat.hxx10
-rw-r--r--sc/source/core/inc/scrdata.hxx2
-rw-r--r--sc/source/core/src/compiler.src2
-rw-r--r--sc/source/core/tool/addincfg.cxx2
-rw-r--r--sc/source/core/tool/addincol.cxx4
-rw-r--r--sc/source/core/tool/addinhelpid.cxx2
-rw-r--r--sc/source/core/tool/addinlis.cxx38
-rw-r--r--sc/source/core/tool/address.cxx94
-rw-r--r--sc/source/core/tool/adiasync.cxx12
-rw-r--r--sc/source/core/tool/appoptio.cxx126
-rw-r--r--sc/source/core/tool/autoform.cxx60
-rw-r--r--sc/source/core/tool/callform.cxx96
-rw-r--r--sc/source/core/tool/cellform.cxx4
-rw-r--r--sc/source/core/tool/cellkeytranslator.cxx14
-rw-r--r--sc/source/core/tool/chartarr.cxx126
-rw-r--r--sc/source/core/tool/charthelper.cxx8
-rw-r--r--sc/source/core/tool/chartlis.cxx54
-rw-r--r--sc/source/core/tool/chartlock.cxx2
-rw-r--r--sc/source/core/tool/chartpos.cxx62
-rw-r--r--sc/source/core/tool/chgtrack.cxx220
-rw-r--r--sc/source/core/tool/chgviset.cxx56
-rw-r--r--sc/source/core/tool/collect.cxx58
-rw-r--r--sc/source/core/tool/compiler.cxx32
-rw-r--r--sc/source/core/tool/consoli.cxx120
-rw-r--r--sc/source/core/tool/dbcolect.cxx418
-rw-r--r--sc/source/core/tool/ddelink.cxx84
-rw-r--r--sc/source/core/tool/detdata.cxx6
-rw-r--r--sc/source/core/tool/detfunc.cxx208
-rw-r--r--sc/source/core/tool/docoptio.cxx110
-rw-r--r--sc/source/core/tool/doubleref.cxx8
-rw-r--r--sc/source/core/tool/editutil.cxx82
-rw-r--r--sc/source/core/tool/filtopt.cxx20
-rw-r--r--sc/source/core/tool/formulaparserpool.cxx2
-rw-r--r--sc/source/core/tool/hints.cxx2
-rw-r--r--sc/source/core/tool/inputopt.cxx80
-rw-r--r--sc/source/core/tool/interpr1.cxx123
-rw-r--r--sc/source/core/tool/interpr2.cxx14
-rw-r--r--sc/source/core/tool/interpr3.cxx34
-rw-r--r--sc/source/core/tool/interpr4.cxx71
-rw-r--r--sc/source/core/tool/interpr5.cxx43
-rw-r--r--sc/source/core/tool/interpr6.cxx8
-rw-r--r--sc/source/core/tool/lookupcache.cxx2
-rw-r--r--sc/source/core/tool/navicfg.cxx12
-rw-r--r--sc/source/core/tool/odffmap.cxx2
-rw-r--r--sc/source/core/tool/optutil.cxx8
-rw-r--r--sc/source/core/tool/parclass.cxx2
-rw-r--r--sc/source/core/tool/printopt.cxx22
-rw-r--r--sc/source/core/tool/prnsave.cxx6
-rw-r--r--sc/source/core/tool/progress.cxx32
-rw-r--r--sc/source/core/tool/queryparam.cxx6
-rw-r--r--sc/source/core/tool/rangelst.cxx106
-rw-r--r--sc/source/core/tool/rangenam.cxx138
-rw-r--r--sc/source/core/tool/rangeseq.cxx16
-rw-r--r--sc/source/core/tool/rangeutl.cxx218
-rw-r--r--sc/source/core/tool/rechead.cxx12
-rw-r--r--sc/source/core/tool/refdata.cxx22
-rw-r--r--sc/source/core/tool/reffind.cxx24
-rw-r--r--sc/source/core/tool/refreshtimer.cxx2
-rw-r--r--sc/source/core/tool/reftokenhelper.cxx2
-rw-r--r--sc/source/core/tool/refupdat.cxx78
-rw-r--r--sc/source/core/tool/scmatrix.cxx33
-rw-r--r--sc/source/core/tool/stringutil.cxx2
-rw-r--r--sc/source/core/tool/subtotal.cxx2
-rw-r--r--sc/source/core/tool/token.cxx28
-rw-r--r--sc/source/core/tool/unitconv.cxx18
-rw-r--r--sc/source/core/tool/userlist.cxx10
-rw-r--r--sc/source/core/tool/viewopti.cxx266
-rw-r--r--sc/source/core/tool/zforauto.cxx16
-rw-r--r--sc/source/filter/dif/difexp.cxx48
-rw-r--r--sc/source/filter/dif/difimp.cxx144
-rw-r--r--sc/source/filter/excel/colrowst.cxx2
-rw-r--r--sc/source/filter/excel/excdoc.cxx10
-rw-r--r--sc/source/filter/excel/excel.cxx2
-rw-r--r--sc/source/filter/excel/excform.cxx476
-rw-r--r--sc/source/filter/excel/excform8.cxx438
-rw-r--r--sc/source/filter/excel/excimp8.cxx34
-rw-r--r--sc/source/filter/excel/excrecds.cxx84
-rw-r--r--sc/source/filter/excel/exctools.cxx82
-rw-r--r--sc/source/filter/excel/expop2.cxx6
-rw-r--r--sc/source/filter/excel/fontbuff.cxx40
-rw-r--r--sc/source/filter/excel/frmbase.cxx16
-rw-r--r--sc/source/filter/excel/impop.cxx102
-rw-r--r--sc/source/filter/excel/namebuff.cxx38
-rw-r--r--sc/source/filter/excel/read.cxx222
-rw-r--r--sc/source/filter/excel/tokstack.cxx122
-rw-r--r--sc/source/filter/excel/xechart.cxx2
-rw-r--r--sc/source/filter/excel/xecontent.cxx18
-rw-r--r--sc/source/filter/excel/xeescher.cxx2
-rw-r--r--sc/source/filter/excel/xeformula.cxx2
-rw-r--r--sc/source/filter/excel/xehelper.cxx2
-rw-r--r--sc/source/filter/excel/xelink.cxx2
-rw-r--r--sc/source/filter/excel/xename.cxx2
-rw-r--r--sc/source/filter/excel/xepage.cxx12
-rw-r--r--sc/source/filter/excel/xepivot.cxx12
-rw-r--r--sc/source/filter/excel/xerecord.cxx2
-rw-r--r--sc/source/filter/excel/xestream.cxx2
-rw-r--r--sc/source/filter/excel/xestring.cxx12
-rw-r--r--sc/source/filter/excel/xestyle.cxx2
-rw-r--r--sc/source/filter/excel/xetable.cxx22
-rw-r--r--sc/source/filter/excel/xeview.cxx4
-rwxr-xr-xsc/source/filter/excel/xichart.cxx4
-rw-r--r--sc/source/filter/excel/xicontent.cxx8
-rw-r--r--sc/source/filter/excel/xiescher.cxx28
-rw-r--r--sc/source/filter/excel/xiformula.cxx2
-rw-r--r--sc/source/filter/excel/xilink.cxx2
-rw-r--r--sc/source/filter/excel/xiname.cxx2
-rw-r--r--sc/source/filter/excel/xipage.cxx2
-rw-r--r--sc/source/filter/excel/xipivot.cxx8
-rw-r--r--sc/source/filter/excel/xiroot.cxx2
-rw-r--r--sc/source/filter/excel/xistream.cxx2
-rw-r--r--sc/source/filter/excel/xistring.cxx2
-rw-r--r--sc/source/filter/excel/xistyle.cxx2
-rw-r--r--sc/source/filter/excel/xiview.cxx2
-rw-r--r--sc/source/filter/excel/xladdress.cxx2
-rwxr-xr-xsc/source/filter/excel/xlchart.cxx4
-rw-r--r--sc/source/filter/excel/xlescher.cxx2
-rw-r--r--sc/source/filter/excel/xlformula.cxx2
-rw-r--r--sc/source/filter/excel/xlpage.cxx12
-rw-r--r--sc/source/filter/excel/xlpivot.cxx4
-rw-r--r--sc/source/filter/excel/xlroot.cxx2
-rw-r--r--sc/source/filter/excel/xlstyle.cxx2
-rw-r--r--sc/source/filter/excel/xltools.cxx2
-rw-r--r--sc/source/filter/excel/xltracer.cxx4
-rw-r--r--sc/source/filter/excel/xlview.cxx2
-rw-r--r--sc/source/filter/ftools/fapihelper.cxx2
-rw-r--r--sc/source/filter/ftools/fprogressbar.cxx2
-rw-r--r--sc/source/filter/ftools/ftools.cxx2
-rw-r--r--sc/source/filter/html/htmlexp.cxx172
-rw-r--r--sc/source/filter/html/htmlexp2.cxx14
-rw-r--r--sc/source/filter/html/htmlimp.cxx6
-rw-r--r--sc/source/filter/html/htmlpars.cxx2
-rw-r--r--sc/source/filter/inc/XclExpChangeTrack.hxx320
-rw-r--r--sc/source/filter/inc/XclImpChangeTrack.hxx86
-rw-r--r--sc/source/filter/inc/biff.hxx12
-rw-r--r--sc/source/filter/inc/colrowst.hxx2
-rw-r--r--sc/source/filter/inc/decl.h2
-rw-r--r--sc/source/filter/inc/dif.hxx96
-rw-r--r--sc/source/filter/inc/eeimport.hxx2
-rw-r--r--sc/source/filter/inc/eeparser.hxx84
-rw-r--r--sc/source/filter/inc/excdefs.hxx52
-rw-r--r--sc/source/filter/inc/excdoc.hxx22
-rw-r--r--sc/source/filter/inc/excform.hxx32
-rw-r--r--sc/source/filter/inc/excimp8.hxx90
-rw-r--r--sc/source/filter/inc/excrecds.hxx120
-rw-r--r--sc/source/filter/inc/excscen.hxx44
-rw-r--r--sc/source/filter/inc/exp_op.hxx76
-rw-r--r--sc/source/filter/inc/expbase.hxx24
-rw-r--r--sc/source/filter/inc/fapihelper.hxx2
-rw-r--r--sc/source/filter/inc/filt_pch.hxx10
-rw-r--r--sc/source/filter/inc/fkttab.h2
-rw-r--r--sc/source/filter/inc/flttypes.hxx2
-rw-r--r--sc/source/filter/inc/formel.hxx96
-rw-r--r--sc/source/filter/inc/fprogressbar.hxx2
-rw-r--r--sc/source/filter/inc/ftools.hxx12
-rw-r--r--sc/source/filter/inc/funktion.h32
-rw-r--r--sc/source/filter/inc/htmlexp.hxx110
-rw-r--r--sc/source/filter/inc/htmlimp.hxx8
-rw-r--r--sc/source/filter/inc/htmlpars.hxx120
-rw-r--r--sc/source/filter/inc/imp_op.hxx114
-rw-r--r--sc/source/filter/inc/lotattr.hxx68
-rw-r--r--sc/source/filter/inc/lotfntbf.hxx40
-rw-r--r--sc/source/filter/inc/lotform.hxx90
-rw-r--r--sc/source/filter/inc/lotimpop.hxx76
-rw-r--r--sc/source/filter/inc/lotrange.hxx54
-rw-r--r--sc/source/filter/inc/namebuff.hxx116
-rw-r--r--sc/source/filter/inc/op.h10
-rw-r--r--sc/source/filter/inc/optab.h10
-rw-r--r--sc/source/filter/inc/otlnbuff.hxx32
-rw-r--r--sc/source/filter/inc/qpro.hxx2
-rw-r--r--sc/source/filter/inc/qproform.hxx44
-rw-r--r--sc/source/filter/inc/qprostyle.hxx2
-rw-r--r--sc/source/filter/inc/root.hxx40
-rw-r--r--sc/source/filter/inc/rtfexp.hxx16
-rw-r--r--sc/source/filter/inc/rtfimp.hxx2
-rw-r--r--sc/source/filter/inc/rtfparse.hxx44
-rw-r--r--sc/source/filter/inc/scflt.hxx842
-rw-r--r--sc/source/filter/inc/scfobj.hxx2
-rw-r--r--sc/source/filter/inc/scmem.h2
-rw-r--r--sc/source/filter/inc/tokstack.hxx198
-rw-r--r--sc/source/filter/inc/tool.h62
-rw-r--r--sc/source/filter/inc/xcl97dum.hxx2
-rw-r--r--sc/source/filter/inc/xcl97esc.hxx14
-rw-r--r--sc/source/filter/inc/xcl97rec.hxx126
-rw-r--r--sc/source/filter/inc/xechart.hxx2
-rw-r--r--sc/source/filter/inc/xecontent.hxx2
-rw-r--r--sc/source/filter/inc/xeescher.hxx2
-rw-r--r--sc/source/filter/inc/xeformula.hxx2
-rw-r--r--sc/source/filter/inc/xehelper.hxx2
-rw-r--r--sc/source/filter/inc/xename.hxx2
-rw-r--r--sc/source/filter/inc/xepage.hxx2
-rw-r--r--sc/source/filter/inc/xepivot.hxx2
-rw-r--r--sc/source/filter/inc/xerecord.hxx2
-rw-r--r--sc/source/filter/inc/xestream.hxx2
-rw-r--r--sc/source/filter/inc/xestring.hxx4
-rw-r--r--sc/source/filter/inc/xestyle.hxx2
-rw-r--r--sc/source/filter/inc/xetable.hxx8
-rw-r--r--sc/source/filter/inc/xeview.hxx2
-rw-r--r--sc/source/filter/inc/xichart.hxx2
-rw-r--r--sc/source/filter/inc/xicontent.hxx2
-rw-r--r--sc/source/filter/inc/xiescher.hxx2
-rw-r--r--sc/source/filter/inc/xiformula.hxx12
-rw-r--r--sc/source/filter/inc/xilink.hxx2
-rw-r--r--sc/source/filter/inc/xiname.hxx2
-rw-r--r--sc/source/filter/inc/xipage.hxx2
-rw-r--r--sc/source/filter/inc/xipivot.hxx2
-rw-r--r--sc/source/filter/inc/xiroot.hxx2
-rw-r--r--sc/source/filter/inc/xistream.hxx2
-rw-r--r--sc/source/filter/inc/xistring.hxx2
-rw-r--r--sc/source/filter/inc/xistyle.hxx2
-rw-r--r--sc/source/filter/inc/xiview.hxx2
-rw-r--r--sc/source/filter/inc/xladdress.hxx2
-rwxr-xr-xsc/source/filter/inc/xlchart.hxx4
-rw-r--r--sc/source/filter/inc/xlconst.hxx2
-rw-r--r--sc/source/filter/inc/xlcontent.hxx2
-rw-r--r--sc/source/filter/inc/xlescher.hxx2
-rw-r--r--sc/source/filter/inc/xlformula.hxx2
-rw-r--r--sc/source/filter/inc/xllink.hxx2
-rw-r--r--sc/source/filter/inc/xlname.hxx2
-rw-r--r--sc/source/filter/inc/xlpage.hxx2
-rw-r--r--sc/source/filter/inc/xlpivot.hxx4
-rw-r--r--sc/source/filter/inc/xlroot.hxx2
-rw-r--r--sc/source/filter/inc/xlstream.hxx2
-rw-r--r--sc/source/filter/inc/xlstring.hxx2
-rw-r--r--sc/source/filter/inc/xlstyle.hxx2
-rw-r--r--sc/source/filter/inc/xltable.hxx2
-rw-r--r--sc/source/filter/inc/xltools.hxx4
-rw-r--r--sc/source/filter/inc/xltracer.hxx2
-rw-r--r--sc/source/filter/inc/xlview.hxx6
-rw-r--r--sc/source/filter/lotus/expop.cxx80
-rw-r--r--sc/source/filter/lotus/export.cxx2
-rw-r--r--sc/source/filter/lotus/filter.cxx46
-rw-r--r--sc/source/filter/lotus/lotattr.cxx36
-rw-r--r--sc/source/filter/lotus/lotform.cxx2680
-rw-r--r--sc/source/filter/lotus/lotimpop.cxx98
-rw-r--r--sc/source/filter/lotus/lotread.cxx108
-rw-r--r--sc/source/filter/lotus/lotus.cxx10
-rw-r--r--sc/source/filter/lotus/memory.cxx52
-rw-r--r--sc/source/filter/lotus/op.cxx122
-rw-r--r--sc/source/filter/lotus/optab.cxx410
-rw-r--r--sc/source/filter/lotus/tool.cxx94
-rw-r--r--sc/source/filter/qpro/biff.cxx2
-rw-r--r--sc/source/filter/qpro/qpro.cxx2
-rw-r--r--sc/source/filter/qpro/qproform.cxx6
-rw-r--r--sc/source/filter/qpro/qprostyle.cxx2
-rw-r--r--sc/source/filter/rtf/eeimpars.cxx36
-rw-r--r--sc/source/filter/rtf/expbase.cxx2
-rw-r--r--sc/source/filter/rtf/rtfexp.cxx48
-rw-r--r--sc/source/filter/rtf/rtfimp.cxx2
-rw-r--r--sc/source/filter/rtf/rtfparse.cxx52
-rw-r--r--sc/source/filter/starcalc/scflt.cxx300
-rw-r--r--sc/source/filter/starcalc/scfobj.cxx6
-rw-r--r--sc/source/filter/xcl97/XclExpChangeTrack.cxx98
-rw-r--r--sc/source/filter/xcl97/XclImpChangeTrack.cxx28
-rw-r--r--sc/source/filter/xcl97/xcl97dum.cxx34
-rw-r--r--sc/source/filter/xcl97/xcl97esc.cxx8
-rw-r--r--sc/source/filter/xcl97/xcl97rec.cxx96
-rw-r--r--sc/source/filter/xml/XMLCalculationSettingsContext.cxx2
-rw-r--r--sc/source/filter/xml/XMLCalculationSettingsContext.hxx2
-rw-r--r--sc/source/filter/xml/XMLCellRangeSourceContext.cxx8
-rw-r--r--sc/source/filter/xml/XMLCellRangeSourceContext.hxx26
-rw-r--r--sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx16
-rw-r--r--sc/source/filter/xml/XMLChangeTrackingExportHelper.hxx10
-rw-r--r--sc/source/filter/xml/XMLChangeTrackingImportHelper.cxx12
-rw-r--r--sc/source/filter/xml/XMLChangeTrackingImportHelper.hxx42
-rwxr-xr-xsc/source/filter/xml/XMLCodeNameProvider.cxx16
-rwxr-xr-xsc/source/filter/xml/XMLCodeNameProvider.hxx10
-rw-r--r--sc/source/filter/xml/XMLColumnRowGroupExport.cxx8
-rw-r--r--sc/source/filter/xml/XMLColumnRowGroupExport.hxx16
-rw-r--r--sc/source/filter/xml/XMLConsolidationContext.cxx14
-rw-r--r--sc/source/filter/xml/XMLConsolidationContext.hxx24
-rw-r--r--sc/source/filter/xml/XMLConverter.cxx56
-rw-r--r--sc/source/filter/xml/XMLConverter.hxx26
-rw-r--r--sc/source/filter/xml/XMLDDELinksContext.cxx40
-rw-r--r--sc/source/filter/xml/XMLDDELinksContext.hxx36
-rw-r--r--sc/source/filter/xml/XMLDetectiveContext.cxx26
-rw-r--r--sc/source/filter/xml/XMLDetectiveContext.hxx72
-rw-r--r--sc/source/filter/xml/XMLEmptyContext.cxx2
-rw-r--r--sc/source/filter/xml/XMLEmptyContext.hxx6
-rw-r--r--sc/source/filter/xml/XMLExportDDELinks.cxx2
-rw-r--r--sc/source/filter/xml/XMLExportDDELinks.hxx10
-rw-r--r--sc/source/filter/xml/XMLExportDataPilot.cxx4
-rw-r--r--sc/source/filter/xml/XMLExportDataPilot.hxx6
-rw-r--r--sc/source/filter/xml/XMLExportDatabaseRanges.cxx28
-rw-r--r--sc/source/filter/xml/XMLExportDatabaseRanges.hxx6
-rw-r--r--sc/source/filter/xml/XMLExportIterator.cxx12
-rw-r--r--sc/source/filter/xml/XMLExportIterator.hxx286
-rw-r--r--sc/source/filter/xml/XMLExportSharedData.cxx2
-rw-r--r--sc/source/filter/xml/XMLExportSharedData.hxx16
-rw-r--r--sc/source/filter/xml/XMLStylesExportHelper.cxx8
-rw-r--r--sc/source/filter/xml/XMLStylesExportHelper.hxx148
-rw-r--r--sc/source/filter/xml/XMLStylesImportHelper.cxx2
-rw-r--r--sc/source/filter/xml/XMLStylesImportHelper.hxx64
-rw-r--r--sc/source/filter/xml/XMLTableHeaderFooterContext.cxx2
-rw-r--r--sc/source/filter/xml/XMLTableHeaderFooterContext.hxx28
-rw-r--r--sc/source/filter/xml/XMLTableMasterPageExport.cxx2
-rw-r--r--sc/source/filter/xml/XMLTableMasterPageExport.hxx4
-rw-r--r--sc/source/filter/xml/XMLTableShapeImportHelper.cxx2
-rw-r--r--sc/source/filter/xml/XMLTableShapeImportHelper.hxx2
-rw-r--r--sc/source/filter/xml/XMLTableShapeResizer.cxx8
-rw-r--r--sc/source/filter/xml/XMLTableShapeResizer.hxx16
-rw-r--r--sc/source/filter/xml/XMLTableShapesContext.cxx2
-rw-r--r--sc/source/filter/xml/XMLTableShapesContext.hxx2
-rw-r--r--sc/source/filter/xml/XMLTableSourceContext.cxx2
-rw-r--r--sc/source/filter/xml/XMLTableSourceContext.hxx14
-rw-r--r--sc/source/filter/xml/XMLTextPContext.cxx4
-rw-r--r--sc/source/filter/xml/XMLTextPContext.hxx12
-rw-r--r--sc/source/filter/xml/XMLTrackedChangesContext.cxx116
-rw-r--r--sc/source/filter/xml/XMLTrackedChangesContext.hxx4
-rw-r--r--sc/source/filter/xml/sheetdata.cxx2
-rw-r--r--sc/source/filter/xml/xmlannoi.cxx4
-rw-r--r--sc/source/filter/xml/xmlannoi.hxx2
-rw-r--r--sc/source/filter/xml/xmlbodyi.cxx32
-rw-r--r--sc/source/filter/xml/xmlbodyi.hxx8
-rw-r--r--sc/source/filter/xml/xmlcelli.cxx10
-rw-r--r--sc/source/filter/xml/xmlcelli.hxx36
-rw-r--r--sc/source/filter/xml/xmlcoli.cxx6
-rw-r--r--sc/source/filter/xml/xmlcoli.hxx24
-rw-r--r--sc/source/filter/xml/xmlconti.cxx2
-rw-r--r--sc/source/filter/xml/xmlconti.hxx2
-rw-r--r--sc/source/filter/xml/xmlcvali.cxx28
-rw-r--r--sc/source/filter/xml/xmlcvali.hxx2
-rw-r--r--sc/source/filter/xml/xmldpimp.cxx28
-rw-r--r--sc/source/filter/xml/xmldpimp.hxx116
-rw-r--r--sc/source/filter/xml/xmldrani.cxx8
-rw-r--r--sc/source/filter/xml/xmldrani.hxx56
-rw-r--r--sc/source/filter/xml/xmlexprt.cxx142
-rw-r--r--sc/source/filter/xml/xmlexprt.hxx86
-rw-r--r--sc/source/filter/xml/xmlexternaltabi.cxx16
-rw-r--r--sc/source/filter/xml/xmlexternaltabi.hxx2
-rw-r--r--sc/source/filter/xml/xmlfilti.cxx8
-rw-r--r--sc/source/filter/xml/xmlfilti.hxx62
-rw-r--r--sc/source/filter/xml/xmlfonte.cxx2
-rw-r--r--sc/source/filter/xml/xmlimprt.cxx436
-rw-r--r--sc/source/filter/xml/xmlimprt.hxx288
-rw-r--r--sc/source/filter/xml/xmllabri.cxx18
-rw-r--r--sc/source/filter/xml/xmllabri.hxx28
-rw-r--r--sc/source/filter/xml/xmlnexpi.cxx8
-rw-r--r--sc/source/filter/xml/xmlnexpi.hxx2
-rw-r--r--sc/source/filter/xml/xmlrowi.cxx6
-rw-r--r--sc/source/filter/xml/xmlrowi.hxx2
-rw-r--r--sc/source/filter/xml/xmlsceni.cxx4
-rw-r--r--sc/source/filter/xml/xmlsceni.hxx18
-rw-r--r--sc/source/filter/xml/xmlsorti.cxx2
-rw-r--r--sc/source/filter/xml/xmlsorti.hxx24
-rw-r--r--sc/source/filter/xml/xmlstyle.cxx64
-rw-r--r--sc/source/filter/xml/xmlstyle.hxx102
-rw-r--r--sc/source/filter/xml/xmlstyli.cxx10
-rw-r--r--sc/source/filter/xml/xmlstyli.hxx34
-rw-r--r--sc/source/filter/xml/xmlsubti.cxx12
-rw-r--r--sc/source/filter/xml/xmlsubti.hxx140
-rw-r--r--sc/source/filter/xml/xmltabi.cxx22
-rw-r--r--sc/source/filter/xml/xmltabi.hxx6
-rw-r--r--sc/source/filter/xml/xmlwrap.cxx18
-rw-r--r--sc/source/ui/Accessibility/AccessibilityHints.cxx4
-rw-r--r--sc/source/ui/Accessibility/AccessibleCell.cxx6
-rw-r--r--sc/source/ui/Accessibility/AccessibleCellBase.cxx6
-rw-r--r--sc/source/ui/Accessibility/AccessibleContextBase.cxx24
-rw-r--r--sc/source/ui/Accessibility/AccessibleCsvControl.cxx4
-rw-r--r--sc/source/ui/Accessibility/AccessibleDataPilotControl.cxx30
-rw-r--r--sc/source/ui/Accessibility/AccessibleDocument.cxx22
-rw-r--r--sc/source/ui/Accessibility/AccessibleDocumentBase.cxx6
-rw-r--r--sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx28
-rw-r--r--sc/source/ui/Accessibility/AccessibleEditObject.cxx8
-rw-r--r--sc/source/ui/Accessibility/AccessibleFilterMenu.cxx34
-rw-r--r--sc/source/ui/Accessibility/AccessibleFilterMenuItem.cxx2
-rw-r--r--sc/source/ui/Accessibility/AccessibleFilterTopWindow.cxx12
-rw-r--r--sc/source/ui/Accessibility/AccessibleGlobal.cxx6
-rw-r--r--sc/source/ui/Accessibility/AccessiblePageHeader.cxx12
-rw-r--r--sc/source/ui/Accessibility/AccessiblePageHeaderArea.cxx12
-rw-r--r--sc/source/ui/Accessibility/AccessiblePreviewCell.cxx8
-rw-r--r--sc/source/ui/Accessibility/AccessiblePreviewHeaderCell.cxx16
-rw-r--r--sc/source/ui/Accessibility/AccessiblePreviewTable.cxx38
-rw-r--r--sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx10
-rw-r--r--sc/source/ui/Accessibility/AccessibleTableBase.cxx10
-rw-r--r--sc/source/ui/Accessibility/AccessibleText.cxx130
-rw-r--r--sc/source/ui/Accessibility/DrawModelBroadcaster.cxx4
-rw-r--r--sc/source/ui/app/client.cxx12
-rw-r--r--sc/source/ui/app/drwtrans.cxx2
-rw-r--r--sc/source/ui/app/inputhdl.cxx708
-rw-r--r--sc/source/ui/app/inputwin.cxx316
-rw-r--r--sc/source/ui/app/lnktrans.cxx4
-rw-r--r--sc/source/ui/app/msgpool.cxx68
-rw-r--r--sc/source/ui/app/rfindlst.cxx6
-rw-r--r--sc/source/ui/app/scdll.cxx242
-rw-r--r--sc/source/ui/app/scmod.cxx350
-rw-r--r--sc/source/ui/app/scmod2.cxx12
-rw-r--r--sc/source/ui/app/seltrans.cxx58
-rw-r--r--sc/source/ui/app/template.cxx2
-rw-r--r--sc/source/ui/app/transobj.cxx124
-rw-r--r--sc/source/ui/app/typemap.cxx6
-rw-r--r--sc/source/ui/app/uiitems.cxx116
-rw-r--r--sc/source/ui/app/wtcdummy.cxx2
-rw-r--r--sc/source/ui/attrdlg/attrdlg.cxx22
-rw-r--r--sc/source/ui/attrdlg/condfrmt.cxx128
-rw-r--r--sc/source/ui/attrdlg/scabstdlg.cxx4
-rw-r--r--sc/source/ui/attrdlg/scdlgfact.cxx180
-rw-r--r--sc/source/ui/attrdlg/scdlgfact.hxx262
-rw-r--r--sc/source/ui/attrdlg/scuiexp.cxx4
-rw-r--r--sc/source/ui/attrdlg/tabpages.cxx70
-rw-r--r--sc/source/ui/cctrl/cbuttonw.cxx36
-rw-r--r--sc/source/ui/cctrl/dpcontrol.cxx62
-rw-r--r--sc/source/ui/cctrl/dpcontrol.src2
-rw-r--r--sc/source/ui/cctrl/editfield.cxx2
-rw-r--r--sc/source/ui/cctrl/popmenu.cxx2
-rw-r--r--sc/source/ui/cctrl/tbinsert.cxx28
-rw-r--r--sc/source/ui/cctrl/tbzoomsliderctrl.cxx32
-rw-r--r--sc/source/ui/dbgui/asciiopt.cxx118
-rw-r--r--sc/source/ui/dbgui/asciiopt.hrc38
-rw-r--r--sc/source/ui/dbgui/asciiopt.src2
-rw-r--r--sc/source/ui/dbgui/consdlg.cxx186
-rw-r--r--sc/source/ui/dbgui/consdlg.hrc4
-rw-r--r--sc/source/ui/dbgui/consdlg.src2
-rw-r--r--sc/source/ui/dbgui/csvcontrol.cxx2
-rw-r--r--sc/source/ui/dbgui/csvgrid.cxx2
-rw-r--r--sc/source/ui/dbgui/csvruler.cxx2
-rw-r--r--sc/source/ui/dbgui/csvsplits.cxx2
-rw-r--r--sc/source/ui/dbgui/csvtablebox.cxx2
-rw-r--r--sc/source/ui/dbgui/dapidata.cxx40
-rw-r--r--sc/source/ui/dbgui/dapitype.cxx18
-rw-r--r--sc/source/ui/dbgui/dapitype.hrc46
-rw-r--r--sc/source/ui/dbgui/dapitype.src2
-rw-r--r--sc/source/ui/dbgui/dbnamdlg.cxx216
-rw-r--r--sc/source/ui/dbgui/dpgroupdlg.cxx2
-rw-r--r--sc/source/ui/dbgui/dpgroupdlg.hrc2
-rw-r--r--sc/source/ui/dbgui/dpgroupdlg.src2
-rw-r--r--sc/source/ui/dbgui/expftext.cxx30
-rw-r--r--sc/source/ui/dbgui/fieldwnd.cxx10
-rw-r--r--sc/source/ui/dbgui/filtdlg.cxx330
-rw-r--r--sc/source/ui/dbgui/foptmgr.cxx116
-rw-r--r--sc/source/ui/dbgui/imoptdlg.cxx12
-rw-r--r--sc/source/ui/dbgui/imoptdlg.hrc22
-rw-r--r--sc/source/ui/dbgui/imoptdlg.src4
-rw-r--r--sc/source/ui/dbgui/outline.src2
-rw-r--r--sc/source/ui/dbgui/pfiltdlg.cxx220
-rw-r--r--sc/source/ui/dbgui/pivot.hrc26
-rw-r--r--sc/source/ui/dbgui/pivot.src2
-rw-r--r--sc/source/ui/dbgui/pvfundlg.cxx4
-rw-r--r--sc/source/ui/dbgui/pvfundlg.hrc4
-rw-r--r--sc/source/ui/dbgui/pvfundlg.src2
-rw-r--r--sc/source/ui/dbgui/pvglob.hxx2
-rw-r--r--sc/source/ui/dbgui/pvlaydlg.cxx142
-rw-r--r--sc/source/ui/dbgui/scendlg.cxx50
-rw-r--r--sc/source/ui/dbgui/scendlg.hrc2
-rw-r--r--sc/source/ui/dbgui/scendlg.src2
-rw-r--r--sc/source/ui/dbgui/scuiasciiopt.cxx80
-rw-r--r--sc/source/ui/dbgui/scuiimoptdlg.cxx46
-rw-r--r--sc/source/ui/dbgui/sfiltdlg.cxx128
-rw-r--r--sc/source/ui/dbgui/sortdlg.cxx20
-rw-r--r--sc/source/ui/dbgui/subtdlg.cxx8
-rw-r--r--sc/source/ui/dbgui/textimportoptions.cxx4
-rw-r--r--sc/source/ui/dbgui/textimportoptions.src8
-rw-r--r--sc/source/ui/dbgui/tpsort.cxx272
-rw-r--r--sc/source/ui/dbgui/tpsubt.cxx254
-rw-r--r--sc/source/ui/dbgui/validate.cxx96
-rw-r--r--sc/source/ui/dbgui/validate.src8
-rw-r--r--sc/source/ui/docshell/arealink.cxx124
-rw-r--r--sc/source/ui/docshell/autostyl.cxx48
-rw-r--r--sc/source/ui/docshell/dbdocfun.cxx302
-rw-r--r--sc/source/ui/docshell/dbdocimp.cxx132
-rw-r--r--sc/source/ui/docshell/docfunc.cxx396
-rw-r--r--sc/source/ui/docshell/docsh.cxx370
-rw-r--r--sc/source/ui/docshell/docsh2.cxx32
-rw-r--r--sc/source/ui/docshell/docsh3.cxx170
-rw-r--r--sc/source/ui/docshell/docsh4.cxx300
-rw-r--r--sc/source/ui/docshell/docsh5.cxx142
-rw-r--r--sc/source/ui/docshell/docsh6.cxx80
-rw-r--r--sc/source/ui/docshell/docsh7.cxx4
-rw-r--r--sc/source/ui/docshell/docsh8.cxx104
-rw-r--r--sc/source/ui/docshell/docshimp.hxx2
-rw-r--r--sc/source/ui/docshell/editable.cxx6
-rw-r--r--sc/source/ui/docshell/externalrefmgr.cxx18
-rw-r--r--sc/source/ui/docshell/hiranges.cxx2
-rw-r--r--sc/source/ui/docshell/impex.cxx154
-rw-r--r--sc/source/ui/docshell/olinefun.cxx64
-rw-r--r--sc/source/ui/docshell/pagedata.cxx4
-rw-r--r--sc/source/ui/docshell/pntlock.cxx2
-rw-r--r--sc/source/ui/docshell/servobj.cxx32
-rw-r--r--sc/source/ui/docshell/sizedev.cxx4
-rw-r--r--sc/source/ui/docshell/tablink.cxx84
-rw-r--r--sc/source/ui/docshell/tpstat.cxx24
-rw-r--r--sc/source/ui/docshell/tpstat.hrc14
-rw-r--r--sc/source/ui/docshell/tpstat.src4
-rw-r--r--sc/source/ui/drawfunc/chartsh.cxx2
-rw-r--r--sc/source/ui/drawfunc/drawsh.cxx58
-rw-r--r--sc/source/ui/drawfunc/drawsh2.cxx48
-rw-r--r--sc/source/ui/drawfunc/drawsh4.cxx14
-rw-r--r--sc/source/ui/drawfunc/drawsh5.cxx14
-rw-r--r--sc/source/ui/drawfunc/drformsh.cxx2
-rw-r--r--sc/source/ui/drawfunc/drformsh.src10
-rw-r--r--sc/source/ui/drawfunc/drtxtob.cxx118
-rw-r--r--sc/source/ui/drawfunc/drtxtob1.cxx16
-rw-r--r--sc/source/ui/drawfunc/drtxtob2.cxx54
-rw-r--r--sc/source/ui/drawfunc/fuconarc.cxx2
-rw-r--r--sc/source/ui/drawfunc/fuconcustomshape.cxx4
-rw-r--r--sc/source/ui/drawfunc/fuconpol.cxx18
-rw-r--r--sc/source/ui/drawfunc/fuconrec.cxx8
-rw-r--r--sc/source/ui/drawfunc/fuconstr.cxx24
-rw-r--r--sc/source/ui/drawfunc/fuconuno.cxx4
-rw-r--r--sc/source/ui/drawfunc/fudraw.cxx86
-rw-r--r--sc/source/ui/drawfunc/fuins1.cxx116
-rw-r--r--sc/source/ui/drawfunc/fuins2.cxx40
-rw-r--r--sc/source/ui/drawfunc/fumark.cxx28
-rw-r--r--sc/source/ui/drawfunc/fupoor.cxx46
-rw-r--r--sc/source/ui/drawfunc/fusel.cxx64
-rw-r--r--sc/source/ui/drawfunc/fusel2.cxx2
-rw-r--r--sc/source/ui/drawfunc/futext.cxx106
-rw-r--r--sc/source/ui/drawfunc/futext2.cxx10
-rw-r--r--sc/source/ui/drawfunc/futext3.cxx12
-rw-r--r--sc/source/ui/drawfunc/graphsh.cxx6
-rw-r--r--sc/source/ui/drawfunc/mediash.cxx14
-rw-r--r--sc/source/ui/drawfunc/objdraw.src38
-rw-r--r--sc/source/ui/drawfunc/oleobjsh.cxx2
-rw-r--r--sc/source/ui/formdlg/dwfunctr.cxx324
-rw-r--r--sc/source/ui/formdlg/dwfunctr.hrc12
-rw-r--r--sc/source/ui/formdlg/dwfunctr.src2
-rw-r--r--sc/source/ui/formdlg/formdata.cxx2
-rw-r--r--sc/source/ui/formdlg/formdlgs.src2
-rw-r--r--sc/source/ui/formdlg/formula.cxx74
-rw-r--r--sc/source/ui/formdlg/privsplt.cxx94
-rw-r--r--sc/source/ui/inc/AccessibilityHints.hxx24
-rw-r--r--sc/source/ui/inc/AccessibleCell.hxx18
-rw-r--r--sc/source/ui/inc/AccessibleCellBase.hxx32
-rw-r--r--sc/source/ui/inc/AccessibleContextBase.hxx58
-rw-r--r--sc/source/ui/inc/AccessibleCsvControl.hxx2
-rw-r--r--sc/source/ui/inc/AccessibleDataPilotControl.hxx26
-rw-r--r--sc/source/ui/inc/AccessibleDocument.hxx82
-rw-r--r--sc/source/ui/inc/AccessibleDocumentBase.hxx6
-rw-r--r--sc/source/ui/inc/AccessibleDocumentPagePreview.hxx24
-rw-r--r--sc/source/ui/inc/AccessibleEditObject.hxx30
-rw-r--r--sc/source/ui/inc/AccessiblePageHeader.hxx10
-rw-r--r--sc/source/ui/inc/AccessiblePageHeaderArea.hxx16
-rw-r--r--sc/source/ui/inc/AccessiblePreviewCell.hxx6
-rw-r--r--sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx30
-rw-r--r--sc/source/ui/inc/AccessiblePreviewTable.hxx22
-rw-r--r--sc/source/ui/inc/AccessibleSpreadsheet.hxx38
-rw-r--r--sc/source/ui/inc/AccessibleTableBase.hxx22
-rw-r--r--sc/source/ui/inc/AccessibleText.hxx98
-rw-r--r--sc/source/ui/inc/ChartRangeSelectionListener.hxx2
-rw-r--r--sc/source/ui/inc/DrawModelBroadcaster.hxx10
-rw-r--r--sc/source/ui/inc/IAnyRefDialog.hxx6
-rw-r--r--sc/source/ui/inc/ScDevChart.hxx2
-rw-r--r--sc/source/ui/inc/acredlin.hrc70
-rw-r--r--sc/source/ui/inc/acredlin.hxx206
-rw-r--r--sc/source/ui/inc/anyrefdg.hxx38
-rw-r--r--sc/source/ui/inc/areasave.hxx32
-rw-r--r--sc/source/ui/inc/areasdlg.hxx56
-rw-r--r--sc/source/ui/inc/asciiopt.hxx102
-rw-r--r--sc/source/ui/inc/attrdlg.hrc26
-rw-r--r--sc/source/ui/inc/attrdlg.hxx8
-rw-r--r--sc/source/ui/inc/auditsh.hxx10
-rw-r--r--sc/source/ui/inc/autofmt.hxx116
-rw-r--r--sc/source/ui/inc/autostyl.hxx26
-rw-r--r--sc/source/ui/inc/cbutton.hxx28
-rw-r--r--sc/source/ui/inc/cellsh.hxx42
-rw-r--r--sc/source/ui/inc/chartsh.hxx4
-rw-r--r--sc/source/ui/inc/client.hxx16
-rw-r--r--sc/source/ui/inc/colrowba.hxx66
-rw-r--r--sc/source/ui/inc/condfrmt.hrc66
-rw-r--r--sc/source/ui/inc/condfrmt.hxx134
-rw-r--r--sc/source/ui/inc/conflictsdlg.hrc2
-rw-r--r--sc/source/ui/inc/conflictsdlg.hxx2
-rw-r--r--sc/source/ui/inc/consdlg.hxx94
-rw-r--r--sc/source/ui/inc/content.hxx116
-rw-r--r--sc/source/ui/inc/corodlg.hxx18
-rw-r--r--sc/source/ui/inc/crdlg.hxx22
-rw-r--r--sc/source/ui/inc/crnrdlg.hrc26
-rw-r--r--sc/source/ui/inc/crnrdlg.hxx60
-rw-r--r--sc/source/ui/inc/csvcontrol.hxx2
-rw-r--r--sc/source/ui/inc/csvgrid.hxx2
-rw-r--r--sc/source/ui/inc/csvruler.hxx2
-rw-r--r--sc/source/ui/inc/csvsplits.hxx2
-rw-r--r--sc/source/ui/inc/csvtablebox.hxx2
-rw-r--r--sc/source/ui/inc/dapidata.hxx24
-rw-r--r--sc/source/ui/inc/dapitype.hxx54
-rw-r--r--sc/source/ui/inc/dbdocfun.hxx30
-rw-r--r--sc/source/ui/inc/dbfunc.hxx56
-rw-r--r--sc/source/ui/inc/dbnamdlg.hrc16
-rw-r--r--sc/source/ui/inc/dbnamdlg.hxx88
-rw-r--r--sc/source/ui/inc/delcldlg.hxx16
-rw-r--r--sc/source/ui/inc/delcodlg.hxx34
-rw-r--r--sc/source/ui/inc/docfunc.hxx108
-rw-r--r--sc/source/ui/inc/docsh.hxx256
-rw-r--r--sc/source/ui/inc/dpcontrol.hrc2
-rw-r--r--sc/source/ui/inc/dpcontrol.hxx66
-rw-r--r--sc/source/ui/inc/dpgroupdlg.hxx2
-rw-r--r--sc/source/ui/inc/drawsh.hxx36
-rw-r--r--sc/source/ui/inc/drawutil.hxx4
-rw-r--r--sc/source/ui/inc/drawview.hxx90
-rw-r--r--sc/source/ui/inc/drformsh.hxx8
-rw-r--r--sc/source/ui/inc/drtxtob.hxx12
-rw-r--r--sc/source/ui/inc/drwtrans.hxx62
-rw-r--r--sc/source/ui/inc/dwfunctr.hxx98
-rw-r--r--sc/source/ui/inc/editable.hxx24
-rw-r--r--sc/source/ui/inc/editfield.hxx2
-rw-r--r--sc/source/ui/inc/editsh.hxx28
-rw-r--r--sc/source/ui/inc/expftext.hxx4
-rwxr-xr-xsc/source/ui/inc/fieldwnd.hxx2
-rw-r--r--sc/source/ui/inc/filldlg.hxx108
-rw-r--r--sc/source/ui/inc/filtdlg.hxx220
-rw-r--r--sc/source/ui/inc/filter.hrc80
-rw-r--r--sc/source/ui/inc/foptmgr.hxx82
-rw-r--r--sc/source/ui/inc/formatsh.hxx28
-rw-r--r--sc/source/ui/inc/formdata.hxx18
-rw-r--r--sc/source/ui/inc/formula.hxx20
-rw-r--r--sc/source/ui/inc/fuconarc.hxx8
-rw-r--r--sc/source/ui/inc/fuconcustomshape.hxx6
-rw-r--r--sc/source/ui/inc/fuconpol.hxx8
-rw-r--r--sc/source/ui/inc/fuconrec.hxx8
-rw-r--r--sc/source/ui/inc/fuconstr.hxx10
-rw-r--r--sc/source/ui/inc/fuconuno.hxx8
-rw-r--r--sc/source/ui/inc/fudraw.hxx8
-rw-r--r--sc/source/ui/inc/fuedipo.hxx8
-rw-r--r--sc/source/ui/inc/fuinsert.hxx20
-rw-r--r--sc/source/ui/inc/fumark.hxx14
-rw-r--r--sc/source/ui/inc/funcpage.hxx46
-rw-r--r--sc/source/ui/inc/funcutl.hxx114
-rw-r--r--sc/source/ui/inc/fupoor.hxx46
-rw-r--r--sc/source/ui/inc/fusel.hxx16
-rw-r--r--sc/source/ui/inc/futext.hxx16
-rw-r--r--sc/source/ui/inc/graphsh.hxx12
-rw-r--r--sc/source/ui/inc/gridmerg.hxx30
-rw-r--r--sc/source/ui/inc/gridwin.hxx352
-rw-r--r--sc/source/ui/inc/groupdlg.hxx18
-rw-r--r--sc/source/ui/inc/hdrcont.hxx114
-rw-r--r--sc/source/ui/inc/hfedtdlg.hxx12
-rw-r--r--sc/source/ui/inc/highred.hrc48
-rw-r--r--sc/source/ui/inc/highred.hxx62
-rw-r--r--sc/source/ui/inc/hintwin.hxx16
-rw-r--r--sc/source/ui/inc/hiranges.hxx12
-rw-r--r--sc/source/ui/inc/imoptdlg.hxx40
-rw-r--r--sc/source/ui/inc/impex.hxx58
-rw-r--r--sc/source/ui/inc/inputhdl.hxx302
-rw-r--r--sc/source/ui/inc/inputwin.hxx168
-rw-r--r--sc/source/ui/inc/inscldlg.hxx16
-rw-r--r--sc/source/ui/inc/inscodlg.hxx110
-rw-r--r--sc/source/ui/inc/instbdlg.hrc36
-rw-r--r--sc/source/ui/inc/instbdlg.hxx66
-rw-r--r--sc/source/ui/inc/invmerge.hxx16
-rw-r--r--sc/source/ui/inc/lbseldlg.hxx16
-rw-r--r--sc/source/ui/inc/linkarea.hrc26
-rw-r--r--sc/source/ui/inc/linkarea.hxx54
-rw-r--r--sc/source/ui/inc/lnktrans.hxx16
-rw-r--r--sc/source/ui/inc/mediash.hxx8
-rw-r--r--sc/source/ui/inc/miscdlgs.hrc132
-rw-r--r--sc/source/ui/inc/msgpool.hxx28
-rw-r--r--sc/source/ui/inc/mtrindlg.hxx36
-rw-r--r--sc/source/ui/inc/mvtabdlg.hxx38
-rw-r--r--sc/source/ui/inc/namecrea.hxx28
-rw-r--r--sc/source/ui/inc/namedlg.hrc32
-rw-r--r--sc/source/ui/inc/namedlg.hxx70
-rw-r--r--sc/source/ui/inc/namepast.hxx24
-rw-r--r--sc/source/ui/inc/navcitem.hxx4
-rw-r--r--sc/source/ui/inc/navipi.hxx210
-rw-r--r--sc/source/ui/inc/navsett.hxx2
-rw-r--r--sc/source/ui/inc/notemark.hxx40
-rw-r--r--sc/source/ui/inc/oleobjsh.hxx4
-rw-r--r--sc/source/ui/inc/olinefun.hxx22
-rw-r--r--sc/source/ui/inc/olinewin.hxx2
-rw-r--r--sc/source/ui/inc/opredlin.hrc24
-rw-r--r--sc/source/ui/inc/opredlin.hxx26
-rw-r--r--sc/source/ui/inc/optdlg.hrc198
-rw-r--r--sc/source/ui/inc/optload.hrc24
-rw-r--r--sc/source/ui/inc/optload.hxx24
-rw-r--r--sc/source/ui/inc/optsolver.hrc38
-rw-r--r--sc/source/ui/inc/optsolver.hxx2
-rw-r--r--sc/source/ui/inc/output.hxx200
-rw-r--r--sc/source/ui/inc/pagedata.hxx60
-rw-r--r--sc/source/ui/inc/parawin.hxx144
-rw-r--r--sc/source/ui/inc/pfiltdlg.hxx108
-rw-r--r--sc/source/ui/inc/pfuncache.hxx34
-rw-r--r--sc/source/ui/inc/pgbrksh.hxx2
-rw-r--r--sc/source/ui/inc/pivotsh.hxx8
-rw-r--r--sc/source/ui/inc/pntlock.hxx32
-rw-r--r--sc/source/ui/inc/popmenu.hxx10
-rw-r--r--sc/source/ui/inc/preview.hxx102
-rw-r--r--sc/source/ui/inc/prevloc.hxx108
-rw-r--r--sc/source/ui/inc/prevwsh.hxx76
-rw-r--r--sc/source/ui/inc/printfun.hxx356
-rw-r--r--sc/source/ui/inc/privsplt.hxx52
-rw-r--r--sc/source/ui/inc/protectiondlg.hrc2
-rw-r--r--sc/source/ui/inc/protectiondlg.hxx2
-rw-r--r--sc/source/ui/inc/pvfundlg.hxx6
-rw-r--r--sc/source/ui/inc/pvlaydlg.hxx2
-rw-r--r--sc/source/ui/inc/redcom.hxx14
-rw-r--r--sc/source/ui/inc/reffact.hxx44
-rw-r--r--sc/source/ui/inc/refundo.hxx22
-rw-r--r--sc/source/ui/inc/retypepassdlg.hrc2
-rw-r--r--sc/source/ui/inc/retypepassdlg.hxx2
-rw-r--r--sc/source/ui/inc/rfindlst.hxx26
-rw-r--r--sc/source/ui/inc/scendlg.hxx30
-rw-r--r--sc/source/ui/inc/scui_def.hxx32
-rw-r--r--sc/source/ui/inc/scuiasciiopt.hxx2
-rw-r--r--sc/source/ui/inc/scuiautofmt.hxx62
-rw-r--r--sc/source/ui/inc/scuiimoptdlg.hxx32
-rw-r--r--sc/source/ui/inc/scuitphfedit.hxx94
-rw-r--r--sc/source/ui/inc/select.hxx78
-rw-r--r--sc/source/ui/inc/selectionstate.hxx2
-rw-r--r--sc/source/ui/inc/seltrans.hxx34
-rw-r--r--sc/source/ui/inc/servobj.hxx12
-rw-r--r--sc/source/ui/inc/sharedocdlg.hrc2
-rw-r--r--sc/source/ui/inc/sharedocdlg.hxx2
-rw-r--r--sc/source/ui/inc/shtabdlg.hxx6
-rw-r--r--sc/source/ui/inc/simpref.hrc14
-rw-r--r--sc/source/ui/inc/simpref.hxx72
-rw-r--r--sc/source/ui/inc/sizedev.hxx20
-rw-r--r--sc/source/ui/inc/solveroptions.hrc2
-rw-r--r--sc/source/ui/inc/solveroptions.hxx2
-rw-r--r--sc/source/ui/inc/solverutil.hxx2
-rw-r--r--sc/source/ui/inc/solvrdlg.hrc32
-rw-r--r--sc/source/ui/inc/solvrdlg.hxx60
-rw-r--r--sc/source/ui/inc/sortdlg.hrc36
-rw-r--r--sc/source/ui/inc/sortdlg.hxx24
-rw-r--r--sc/source/ui/inc/spelldialog.hxx2
-rw-r--r--sc/source/ui/inc/spelleng.hxx2
-rw-r--r--sc/source/ui/inc/spellparam.hxx2
-rw-r--r--sc/source/ui/inc/strindlg.hxx10
-rw-r--r--sc/source/ui/inc/styledlg.hrc6
-rw-r--r--sc/source/ui/inc/styledlg.hxx12
-rw-r--r--sc/source/ui/inc/submenu.hrc78
-rw-r--r--sc/source/ui/inc/subtdlg.hrc4
-rw-r--r--sc/source/ui/inc/subtdlg.hxx12
-rw-r--r--sc/source/ui/inc/tabbgcolordlg.hxx2
-rw-r--r--sc/source/ui/inc/tabcont.hxx34
-rw-r--r--sc/source/ui/inc/tabopdlg.hrc38
-rw-r--r--sc/source/ui/inc/tabopdlg.hxx82
-rw-r--r--sc/source/ui/inc/tabpages.hxx44
-rw-r--r--sc/source/ui/inc/tabpopsh.hxx6
-rw-r--r--sc/source/ui/inc/tabsplit.hxx16
-rw-r--r--sc/source/ui/inc/tabview.hxx490
-rw-r--r--sc/source/ui/inc/tabvwsh.hxx350
-rw-r--r--sc/source/ui/inc/target.hxx8
-rw-r--r--sc/source/ui/inc/tbinsert.hrc8
-rw-r--r--sc/source/ui/inc/tbinsert.hxx22
-rw-r--r--sc/source/ui/inc/tbzoomsliderctrl.hxx4
-rw-r--r--sc/source/ui/inc/textdlgs.hxx16
-rw-r--r--sc/source/ui/inc/textimportoptions.hrc2
-rw-r--r--sc/source/ui/inc/textimportoptions.hxx2
-rw-r--r--sc/source/ui/inc/tpcalc.hxx48
-rw-r--r--sc/source/ui/inc/tphf.hxx34
-rw-r--r--sc/source/ui/inc/tphfedit.hxx162
-rw-r--r--sc/source/ui/inc/tpprint.hxx20
-rw-r--r--sc/source/ui/inc/tpsort.hxx132
-rw-r--r--sc/source/ui/inc/tpstat.hxx2
-rw-r--r--sc/source/ui/inc/tpsubt.hxx132
-rw-r--r--sc/source/ui/inc/tptable.hxx38
-rw-r--r--sc/source/ui/inc/tpusrlst.hxx104
-rw-r--r--sc/source/ui/inc/tpview.hxx74
-rw-r--r--sc/source/ui/inc/transobj.hxx80
-rw-r--r--sc/source/ui/inc/ui_pch.hxx12
-rw-r--r--sc/source/ui/inc/uiitems.hxx162
-rw-r--r--sc/source/ui/inc/undobase.hxx64
-rw-r--r--sc/source/ui/inc/undoblk.hxx732
-rw-r--r--sc/source/ui/inc/undocell.hxx254
-rw-r--r--sc/source/ui/inc/undodat.hxx396
-rw-r--r--sc/source/ui/inc/undodraw.hxx34
-rw-r--r--sc/source/ui/inc/undoolk.hxx12
-rw-r--r--sc/source/ui/inc/undostyl.hxx50
-rw-r--r--sc/source/ui/inc/undotab.hxx346
-rw-r--r--sc/source/ui/inc/undoutil.hxx10
-rw-r--r--sc/source/ui/inc/validate.hrc4
-rw-r--r--sc/source/ui/inc/validate.hxx120
-rw-r--r--sc/source/ui/inc/viewdata.hxx506
-rw-r--r--sc/source/ui/inc/viewfunc.hxx260
-rw-r--r--sc/source/ui/inc/viewutil.hxx46
-rw-r--r--sc/source/ui/inc/warnbox.hxx2
-rw-r--r--sc/source/ui/miscdlgs/acredlin.cxx128
-rw-r--r--sc/source/ui/miscdlgs/acredlin.src2
-rw-r--r--sc/source/ui/miscdlgs/anyrefdg.cxx136
-rw-r--r--sc/source/ui/miscdlgs/autofmt.cxx48
-rw-r--r--sc/source/ui/miscdlgs/conflictsdlg.cxx6
-rw-r--r--sc/source/ui/miscdlgs/conflictsdlg.src6
-rw-r--r--sc/source/ui/miscdlgs/crdlg.cxx12
-rw-r--r--sc/source/ui/miscdlgs/crnrdlg.cxx378
-rw-r--r--sc/source/ui/miscdlgs/delcldlg.cxx2
-rw-r--r--sc/source/ui/miscdlgs/delcodlg.cxx4
-rw-r--r--sc/source/ui/miscdlgs/filldlg.cxx22
-rw-r--r--sc/source/ui/miscdlgs/groupdlg.cxx4
-rw-r--r--sc/source/ui/miscdlgs/highred.cxx40
-rw-r--r--sc/source/ui/miscdlgs/highred.src2
-rw-r--r--sc/source/ui/miscdlgs/inscldlg.cxx2
-rw-r--r--sc/source/ui/miscdlgs/inscodlg.cxx34
-rw-r--r--sc/source/ui/miscdlgs/instbdlg.cxx88
-rw-r--r--sc/source/ui/miscdlgs/instbdlg.src2
-rw-r--r--sc/source/ui/miscdlgs/lbseldlg.cxx4
-rw-r--r--sc/source/ui/miscdlgs/linkarea.cxx44
-rw-r--r--sc/source/ui/miscdlgs/linkarea.src2
-rw-r--r--sc/source/ui/miscdlgs/mtrindlg.cxx22
-rw-r--r--sc/source/ui/miscdlgs/mvtabdlg.cxx12
-rw-r--r--sc/source/ui/miscdlgs/namecrea.cxx32
-rw-r--r--sc/source/ui/miscdlgs/namepast.cxx18
-rw-r--r--sc/source/ui/miscdlgs/optsolver.cxx4
-rw-r--r--sc/source/ui/miscdlgs/protectiondlg.cxx2
-rw-r--r--sc/source/ui/miscdlgs/protectiondlg.src2
-rw-r--r--sc/source/ui/miscdlgs/redcom.cxx6
-rw-r--r--sc/source/ui/miscdlgs/retypepassdlg.cxx2
-rw-r--r--sc/source/ui/miscdlgs/retypepassdlg.src2
-rw-r--r--sc/source/ui/miscdlgs/scuiautofmt.cxx80
-rw-r--r--sc/source/ui/miscdlgs/sharedocdlg.cxx2
-rw-r--r--sc/source/ui/miscdlgs/sharedocdlg.src4
-rw-r--r--sc/source/ui/miscdlgs/shtabdlg.cxx2
-rw-r--r--sc/source/ui/miscdlgs/simpref.cxx58
-rw-r--r--sc/source/ui/miscdlgs/solveroptions.cxx10
-rw-r--r--sc/source/ui/miscdlgs/solverutil.cxx2
-rw-r--r--sc/source/ui/miscdlgs/solvrdlg.cxx66
-rw-r--r--sc/source/ui/miscdlgs/strindlg.cxx2
-rw-r--r--sc/source/ui/miscdlgs/tabbgcolordlg.cxx2
-rw-r--r--sc/source/ui/miscdlgs/tabopdlg.cxx46
-rw-r--r--sc/source/ui/miscdlgs/textdlgs.cxx18
-rw-r--r--sc/source/ui/miscdlgs/warnbox.cxx2
-rw-r--r--sc/source/ui/namedlg/namedlg.cxx166
-rw-r--r--sc/source/ui/navipi/content.cxx170
-rw-r--r--sc/source/ui/navipi/navcitem.cxx20
-rw-r--r--sc/source/ui/navipi/navipi.cxx280
-rw-r--r--sc/source/ui/navipi/navipi.hrc56
-rw-r--r--sc/source/ui/navipi/navipi.src56
-rw-r--r--sc/source/ui/navipi/scenwnd.cxx4
-rw-r--r--sc/source/ui/optdlg/opredlin.cxx28
-rw-r--r--sc/source/ui/optdlg/tpcalc.cxx54
-rw-r--r--sc/source/ui/optdlg/tpprint.cxx10
-rw-r--r--sc/source/ui/optdlg/tpusrlst.cxx210
-rw-r--r--sc/source/ui/optdlg/tpview.cxx226
-rw-r--r--sc/source/ui/pagedlg/areasdlg.cxx128
-rw-r--r--sc/source/ui/pagedlg/hfedtdlg.cxx16
-rw-r--r--sc/source/ui/pagedlg/hfedtdlg.hrc10
-rw-r--r--sc/source/ui/pagedlg/hfedtdlg.src36
-rw-r--r--sc/source/ui/pagedlg/pagedlg.hrc72
-rw-r--r--sc/source/ui/pagedlg/pagedlg.src4
-rw-r--r--sc/source/ui/pagedlg/scuitphfedit.cxx88
-rw-r--r--sc/source/ui/pagedlg/tphf.cxx40
-rw-r--r--sc/source/ui/pagedlg/tphf.src2
-rw-r--r--sc/source/ui/pagedlg/tphfedit.cxx212
-rw-r--r--sc/source/ui/pagedlg/tptable.cxx154
-rw-r--r--sc/source/ui/src/attrdlg.src2
-rw-r--r--sc/source/ui/src/autofmt.src2
-rw-r--r--sc/source/ui/src/condfrmt.src2
-rw-r--r--sc/source/ui/src/crnrdlg.src4
-rw-r--r--sc/source/ui/src/dbnamdlg.src4
-rw-r--r--sc/source/ui/src/filter.src2
-rw-r--r--sc/source/ui/src/globstr.src2
-rw-r--r--sc/source/ui/src/hdrcont.src2
-rw-r--r--sc/source/ui/src/miscdlgs.src32
-rw-r--r--sc/source/ui/src/namedlg.src4
-rw-r--r--sc/source/ui/src/opredlin.src2
-rw-r--r--sc/source/ui/src/optdlg.src4
-rw-r--r--sc/source/ui/src/optsolver.src2
-rw-r--r--sc/source/ui/src/popup.src2
-rw-r--r--sc/source/ui/src/pseudo.src2
-rw-r--r--sc/source/ui/src/sc.src2
-rw-r--r--sc/source/ui/src/scerrors.src2
-rw-r--r--sc/source/ui/src/scfuncs.src534
-rw-r--r--sc/source/ui/src/scstring.src6
-rw-r--r--sc/source/ui/src/scwarngs.src2
-rw-r--r--sc/source/ui/src/simpref.src6
-rw-r--r--sc/source/ui/src/solveroptions.src2
-rw-r--r--sc/source/ui/src/solvrdlg.src2
-rw-r--r--sc/source/ui/src/sortdlg.src6
-rw-r--r--sc/source/ui/src/subtdlg.src6
-rw-r--r--sc/source/ui/src/tabopdlg.src2
-rw-r--r--sc/source/ui/src/textdlgs.src2
-rw-r--r--sc/source/ui/src/toolbox.src12
-rw-r--r--sc/source/ui/styleui/scstyles.src12
-rw-r--r--sc/source/ui/styleui/styledlg.cxx58
-rw-r--r--sc/source/ui/styleui/styledlg.src2
-rw-r--r--sc/source/ui/undo/areasave.cxx30
-rw-r--r--sc/source/ui/undo/refundo.cxx18
-rw-r--r--sc/source/ui/undo/target.cxx2
-rw-r--r--sc/source/ui/undo/undobase.cxx44
-rw-r--r--sc/source/ui/undo/undoblk.cxx260
-rw-r--r--sc/source/ui/undo/undoblk2.cxx18
-rw-r--r--sc/source/ui/undo/undoblk3.cxx366
-rw-r--r--sc/source/ui/undo/undocell.cxx94
-rw-r--r--sc/source/ui/undo/undodat.cxx292
-rw-r--r--sc/source/ui/undo/undodraw.cxx4
-rw-r--r--sc/source/ui/undo/undoolk.cxx4
-rw-r--r--sc/source/ui/undo/undostyl.cxx26
-rw-r--r--sc/source/ui/undo/undotab.cxx212
-rw-r--r--sc/source/ui/undo/undoutil.cxx2
-rw-r--r--sc/source/ui/unoobj/ChartRangeSelectionListener.cxx4
-rw-r--r--sc/source/ui/unoobj/addruno.cxx2
-rw-r--r--sc/source/ui/unoobj/afmtuno.cxx86
-rw-r--r--sc/source/ui/unoobj/appluno.cxx108
-rw-r--r--sc/source/ui/unoobj/celllistsource.cxx14
-rw-r--r--sc/source/ui/unoobj/celllistsource.hxx2
-rw-r--r--sc/source/ui/unoobj/cellsuno.cxx1990
-rw-r--r--sc/source/ui/unoobj/cellvaluebinding.cxx14
-rw-r--r--sc/source/ui/unoobj/cellvaluebinding.hxx2
-rw-r--r--sc/source/ui/unoobj/chart2uno.cxx230
-rw-r--r--sc/source/ui/unoobj/chartuno.cxx42
-rw-r--r--sc/source/ui/unoobj/confuno.cxx18
-rw-r--r--sc/source/ui/unoobj/convuno.cxx8
-rw-r--r--sc/source/ui/unoobj/cursuno.cxx56
-rwxr-xr-xsc/source/ui/unoobj/dapiuno.cxx78
-rw-r--r--sc/source/ui/unoobj/datauno.cxx338
-rw-r--r--sc/source/ui/unoobj/defltuno.cxx70
-rw-r--r--sc/source/ui/unoobj/detreg.cxx12
-rw-r--r--sc/source/ui/unoobj/dispuno.cxx2
-rw-r--r--sc/source/ui/unoobj/docuno.cxx312
-rw-r--r--sc/source/ui/unoobj/drdefuno.cxx10
-rw-r--r--sc/source/ui/unoobj/editsrc.cxx44
-rw-r--r--sc/source/ui/unoobj/fielduno.cxx194
-rw-r--r--sc/source/ui/unoobj/filtuno.cxx42
-rw-r--r--sc/source/ui/unoobj/fmtuno.cxx116
-rw-r--r--sc/source/ui/unoobj/forbiuno.cxx8
-rw-r--r--sc/source/ui/unoobj/funcuno.cxx100
-rw-r--r--sc/source/ui/unoobj/linkuno.cxx148
-rw-r--r--sc/source/ui/unoobj/listenercalls.cxx2
-rw-r--r--sc/source/ui/unoobj/miscuno.cxx68
-rw-r--r--sc/source/ui/unoobj/nameuno.cxx112
-rw-r--r--sc/source/ui/unoobj/notesuno.cxx56
-rw-r--r--sc/source/ui/unoobj/optuno.cxx32
-rw-r--r--sc/source/ui/unoobj/pageuno.cxx4
-rwxr-xr-xsc/source/ui/unoobj/scdetect.cxx56
-rw-r--r--sc/source/ui/unoobj/scdetect.hxx2
-rw-r--r--sc/source/ui/unoobj/servuno.cxx102
-rw-r--r--sc/source/ui/unoobj/shapeuno.cxx42
-rw-r--r--sc/source/ui/unoobj/srchuno.cxx48
-rw-r--r--sc/source/ui/unoobj/styleuno.cxx688
-rw-r--r--sc/source/ui/unoobj/targuno.cxx32
-rw-r--r--sc/source/ui/unoobj/textuno.cxx122
-rw-r--r--sc/source/ui/unoobj/tokenuno.cxx2
-rw-r--r--sc/source/ui/unoobj/unodoc.cxx2
-rw-r--r--sc/source/ui/unoobj/unoguard.cxx2
-rw-r--r--sc/source/ui/unoobj/unoreflist.cxx2
-rw-r--r--sc/source/ui/unoobj/viewuno.cxx168
-rw-r--r--sc/source/ui/unoobj/warnpassword.cxx12
-rw-r--r--sc/source/ui/vba/excelvbahelper.cxx38
-rw-r--r--sc/source/ui/vba/excelvbahelper.hxx8
-rw-r--r--sc/source/ui/vba/helperdecl.hxx4
-rw-r--r--sc/source/ui/vba/makefile.mk92
-rw-r--r--sc/source/ui/vba/service.cxx24
-rw-r--r--sc/source/ui/vba/testvba/launchTest.pl14
-rwxr-xr-xsc/source/ui/vba/testvba/runTests.pl4
-rw-r--r--sc/source/ui/vba/testvba/testResult.pl26
-rwxr-xr-xsc/source/ui/vba/testvba/testResults.pl24
-rw-r--r--sc/source/ui/vba/testvba/testvba.cxx76
-rwxr-xr-xsc/source/ui/vba/testvba/timestampsClean.pl2
-rw-r--r--sc/source/ui/vba/vbaapplication.cxx742
-rw-r--r--sc/source/ui/vba/vbaapplication.hxx10
-rw-r--r--sc/source/ui/vba/vbaassistant.cxx20
-rw-r--r--sc/source/ui/vba/vbaassistant.hxx4
-rw-r--r--sc/source/ui/vba/vbaaxes.cxx30
-rw-r--r--sc/source/ui/vba/vbaaxes.hxx4
-rw-r--r--sc/source/ui/vba/vbaaxis.cxx120
-rw-r--r--sc/source/ui/vba/vbaaxis.hxx6
-rw-r--r--sc/source/ui/vba/vbaaxistitle.cxx4
-rw-r--r--sc/source/ui/vba/vbaaxistitle.hxx2
-rw-r--r--sc/source/ui/vba/vbaborders.cxx90
-rw-r--r--sc/source/ui/vba/vbaborders.hxx12
-rw-r--r--sc/source/ui/vba/vbacharacters.cxx34
-rw-r--r--sc/source/ui/vba/vbacharacters.hxx2
-rw-r--r--sc/source/ui/vba/vbachart.cxx110
-rw-r--r--sc/source/ui/vba/vbachart.hxx8
-rw-r--r--sc/source/ui/vba/vbachartobject.cxx54
-rw-r--r--sc/source/ui/vba/vbachartobject.hxx8
-rw-r--r--sc/source/ui/vba/vbachartobjects.cxx36
-rw-r--r--sc/source/ui/vba/vbachartobjects.hxx10
-rw-r--r--sc/source/ui/vba/vbacharts.cxx20
-rw-r--r--sc/source/ui/vba/vbacharts.hxx10
-rw-r--r--sc/source/ui/vba/vbacharttitle.cxx4
-rw-r--r--sc/source/ui/vba/vbacharttitle.hxx2
-rw-r--r--sc/source/ui/vba/vbacomment.cxx8
-rw-r--r--sc/source/ui/vba/vbacomment.hxx2
-rw-r--r--sc/source/ui/vba/vbacomments.cxx10
-rw-r--r--sc/source/ui/vba/vbacomments.hxx4
-rw-r--r--sc/source/ui/vba/vbacondition.cxx24
-rw-r--r--sc/source/ui/vba/vbacondition.hxx10
-rw-r--r--sc/source/ui/vba/vbadialog.cxx10
-rw-r--r--sc/source/ui/vba/vbadialog.hxx2
-rw-r--r--sc/source/ui/vba/vbadialogs.cxx6
-rw-r--r--sc/source/ui/vba/vbadialogs.hxx4
-rwxr-xr-xsc/source/ui/vba/vbaeventshelper.cxx4
-rwxr-xr-xsc/source/ui/vba/vbaeventshelper.hxx4
-rw-r--r--sc/source/ui/vba/vbafont.cxx10
-rw-r--r--sc/source/ui/vba/vbafont.hxx2
-rw-r--r--sc/source/ui/vba/vbaformat.cxx168
-rw-r--r--sc/source/ui/vba/vbaformat.hxx14
-rw-r--r--sc/source/ui/vba/vbaformatcondition.cxx30
-rw-r--r--sc/source/ui/vba/vbaformatcondition.hxx12
-rw-r--r--sc/source/ui/vba/vbaformatconditions.cxx44
-rw-r--r--sc/source/ui/vba/vbaformatconditions.hxx6
-rw-r--r--sc/source/ui/vba/vbaglobals.cxx82
-rw-r--r--sc/source/ui/vba/vbaglobals.hxx9
-rw-r--r--sc/source/ui/vba/vbahelper.cxx100
-rw-r--r--sc/source/ui/vba/vbahyperlink.cxx4
-rw-r--r--sc/source/ui/vba/vbahyperlink.hxx6
-rwxr-xr-xsc/source/ui/vba/vbahyperlinks.cxx12
-rwxr-xr-xsc/source/ui/vba/vbahyperlinks.hxx12
-rw-r--r--sc/source/ui/vba/vbainterior.cxx58
-rw-r--r--sc/source/ui/vba/vbainterior.hxx8
-rw-r--r--sc/source/ui/vba/vbaname.cxx22
-rw-r--r--sc/source/ui/vba/vbaname.hxx6
-rw-r--r--sc/source/ui/vba/vbanames.cxx23
-rw-r--r--sc/source/ui/vba/vbanames.hxx10
-rw-r--r--sc/source/ui/vba/vbaoleobject.cxx32
-rw-r--r--sc/source/ui/vba/vbaoleobject.hxx4
-rw-r--r--sc/source/ui/vba/vbaoleobjects.cxx10
-rw-r--r--sc/source/ui/vba/vbaoleobjects.hxx6
-rw-r--r--sc/source/ui/vba/vbaoutline.cxx12
-rw-r--r--sc/source/ui/vba/vbaoutline.hxx6
-rw-r--r--sc/source/ui/vba/vbapagebreak.cxx30
-rw-r--r--sc/source/ui/vba/vbapagebreak.hxx18
-rw-r--r--sc/source/ui/vba/vbapagebreaks.cxx26
-rw-r--r--sc/source/ui/vba/vbapagebreaks.hxx14
-rw-r--r--sc/source/ui/vba/vbapagesetup.cxx26
-rw-r--r--sc/source/ui/vba/vbapagesetup.hxx10
-rw-r--r--sc/source/ui/vba/vbapalette.cxx8
-rw-r--r--sc/source/ui/vba/vbapalette.hxx4
-rw-r--r--sc/source/ui/vba/vbapane.cxx20
-rw-r--r--sc/source/ui/vba/vbapane.hxx2
-rw-r--r--sc/source/ui/vba/vbapivotcache.cxx8
-rw-r--r--sc/source/ui/vba/vbapivotcache.hxx4
-rw-r--r--sc/source/ui/vba/vbapivottable.cxx8
-rw-r--r--sc/source/ui/vba/vbapivottable.hxx4
-rw-r--r--sc/source/ui/vba/vbapivottables.cxx14
-rw-r--r--sc/source/ui/vba/vbapivottables.hxx8
-rw-r--r--sc/source/ui/vba/vbapropvalue.cxx8
-rw-r--r--sc/source/ui/vba/vbapropvalue.hxx8
-rwxr-xr-xsc/source/ui/vba/vbarange.cxx1024
-rw-r--r--sc/source/ui/vba/vbarange.hxx32
-rw-r--r--sc/source/ui/vba/vbaseriescollection.cxx12
-rw-r--r--sc/source/ui/vba/vbaseriescollection.hxx6
-rwxr-xr-xsc/source/ui/vba/vbasheetobject.cxx4
-rwxr-xr-xsc/source/ui/vba/vbasheetobject.hxx6
-rwxr-xr-xsc/source/ui/vba/vbasheetobjects.cxx4
-rwxr-xr-xsc/source/ui/vba/vbasheetobjects.hxx4
-rw-r--r--sc/source/ui/vba/vbastyle.cxx32
-rw-r--r--sc/source/ui/vba/vbastyle.hxx8
-rw-r--r--sc/source/ui/vba/vbastyles.cxx20
-rw-r--r--sc/source/ui/vba/vbastyles.hxx8
-rw-r--r--sc/source/ui/vba/vbatextboxshape.cxx8
-rw-r--r--sc/source/ui/vba/vbatextboxshape.hxx4
-rw-r--r--sc/source/ui/vba/vbatextframe.cxx6
-rw-r--r--sc/source/ui/vba/vbatextframe.hxx2
-rw-r--r--sc/source/ui/vba/vbatitle.hxx10
-rw-r--r--sc/source/ui/vba/vbavalidation.cxx110
-rw-r--r--sc/source/ui/vba/vbavalidation.hxx8
-rw-r--r--sc/source/ui/vba/vbawindow.cxx242
-rw-r--r--sc/source/ui/vba/vbawindow.hxx16
-rw-r--r--sc/source/ui/vba/vbawindows.cxx18
-rw-r--r--sc/source/ui/vba/vbawindows.hxx8
-rw-r--r--sc/source/ui/vba/vbaworkbook.cxx63
-rw-r--r--sc/source/ui/vba/vbaworkbook.hxx8
-rw-r--r--sc/source/ui/vba/vbaworkbooks.cxx56
-rw-r--r--sc/source/ui/vba/vbaworkbooks.hxx10
-rw-r--r--sc/source/ui/vba/vbaworksheet.cxx163
-rw-r--r--sc/source/ui/vba/vbaworksheet.hxx16
-rw-r--r--sc/source/ui/vba/vbaworksheets.cxx78
-rw-r--r--sc/source/ui/vba/vbaworksheets.hxx6
-rw-r--r--sc/source/ui/vba/vbawsfunction.cxx16
-rw-r--r--sc/source/ui/vba/vbawsfunction.hxx4
-rw-r--r--sc/source/ui/view/auditsh.cxx6
-rw-r--r--sc/source/ui/view/cellsh.cxx136
-rw-r--r--sc/source/ui/view/cellsh1.cxx252
-rw-r--r--sc/source/ui/view/cellsh2.cxx208
-rw-r--r--sc/source/ui/view/cellsh3.cxx186
-rw-r--r--sc/source/ui/view/cellsh4.cxx96
-rw-r--r--sc/source/ui/view/colrowba.cxx36
-rw-r--r--sc/source/ui/view/dbfunc.cxx74
-rw-r--r--sc/source/ui/view/dbfunc2.cxx2
-rwxr-xr-xsc/source/ui/view/dbfunc3.cxx150
-rw-r--r--sc/source/ui/view/dbfunc4.cxx2
-rw-r--r--sc/source/ui/view/drawattr.cxx2
-rw-r--r--sc/source/ui/view/drawutil.cxx12
-rw-r--r--sc/source/ui/view/drawvie2.cxx8
-rw-r--r--sc/source/ui/view/drawvie3.cxx14
-rw-r--r--sc/source/ui/view/drawvie4.cxx46
-rw-r--r--sc/source/ui/view/drawview.cxx116
-rw-r--r--sc/source/ui/view/editsh.cxx106
-rw-r--r--sc/source/ui/view/formatsh.cxx290
-rw-r--r--sc/source/ui/view/galwrap.cxx4
-rw-r--r--sc/source/ui/view/gridmerg.cxx24
-rw-r--r--sc/source/ui/view/gridwin.cxx974
-rw-r--r--sc/source/ui/view/gridwin2.cxx134
-rw-r--r--sc/source/ui/view/gridwin3.cxx66
-rw-r--r--sc/source/ui/view/gridwin4.cxx528
-rw-r--r--sc/source/ui/view/gridwin5.cxx60
-rw-r--r--sc/source/ui/view/hdrcont.cxx244
-rw-r--r--sc/source/ui/view/hintwin.cxx12
-rw-r--r--sc/source/ui/view/imapwrap.cxx6
-rw-r--r--sc/source/ui/view/invmerge.cxx20
-rw-r--r--sc/source/ui/view/notemark.cxx10
-rw-r--r--sc/source/ui/view/olinewin.cxx6
-rw-r--r--sc/source/ui/view/olkact.cxx12
-rw-r--r--sc/source/ui/view/output.cxx342
-rw-r--r--sc/source/ui/view/output2.cxx602
-rw-r--r--sc/source/ui/view/output3.cxx18
-rw-r--r--sc/source/ui/view/pfuncache.cxx12
-rw-r--r--sc/source/ui/view/pgbrksh.cxx2
-rw-r--r--sc/source/ui/view/pivotsh.cxx2
-rw-r--r--sc/source/ui/view/preview.cxx80
-rw-r--r--sc/source/ui/view/prevloc.cxx46
-rw-r--r--sc/source/ui/view/prevwsh.cxx176
-rw-r--r--sc/source/ui/view/prevwsh2.cxx2
-rw-r--r--sc/source/ui/view/printfun.cxx680
-rw-r--r--sc/source/ui/view/reffact.cxx84
-rw-r--r--sc/source/ui/view/scextopt.cxx2
-rw-r--r--sc/source/ui/view/select.cxx124
-rw-r--r--sc/source/ui/view/selectionstate.cxx2
-rw-r--r--sc/source/ui/view/spelldialog.cxx2
-rw-r--r--sc/source/ui/view/spelleng.cxx2
-rw-r--r--sc/source/ui/view/tabcont.cxx68
-rw-r--r--sc/source/ui/view/tabpopsh.cxx2
-rw-r--r--sc/source/ui/view/tabsplit.cxx2
-rw-r--r--sc/source/ui/view/tabview.cxx394
-rw-r--r--sc/source/ui/view/tabview2.cxx144
-rw-r--r--sc/source/ui/view/tabview3.cxx390
-rw-r--r--sc/source/ui/view/tabview4.cxx102
-rw-r--r--sc/source/ui/view/tabview5.cxx114
-rw-r--r--sc/source/ui/view/tabvwsh.cxx4
-rw-r--r--sc/source/ui/view/tabvwsh2.cxx94
-rw-r--r--sc/source/ui/view/tabvwsh3.cxx168
-rw-r--r--sc/source/ui/view/tabvwsh4.cxx422
-rw-r--r--sc/source/ui/view/tabvwsh5.cxx92
-rw-r--r--sc/source/ui/view/tabvwsh8.cxx6
-rw-r--r--sc/source/ui/view/tabvwsh9.cxx42
-rw-r--r--sc/source/ui/view/tabvwsha.cxx146
-rw-r--r--sc/source/ui/view/tabvwshb.cxx48
-rw-r--r--sc/source/ui/view/tabvwshc.cxx50
-rw-r--r--sc/source/ui/view/tabvwshd.cxx12
-rw-r--r--sc/source/ui/view/tabvwshe.cxx54
-rw-r--r--sc/source/ui/view/tabvwshf.cxx140
-rw-r--r--sc/source/ui/view/tabvwshg.cxx18
-rw-r--r--sc/source/ui/view/tabvwshh.cxx24
-rw-r--r--sc/source/ui/view/viewdata.cxx410
-rw-r--r--sc/source/ui/view/viewfun2.cxx378
-rw-r--r--sc/source/ui/view/viewfun3.cxx278
-rw-r--r--sc/source/ui/view/viewfun4.cxx60
-rw-r--r--sc/source/ui/view/viewfun5.cxx60
-rw-r--r--sc/source/ui/view/viewfun6.cxx8
-rw-r--r--sc/source/ui/view/viewfun7.cxx40
-rw-r--r--sc/source/ui/view/viewfunc.cxx460
-rw-r--r--sc/source/ui/view/viewutil.cxx30
-rw-r--r--sc/source/ui/view/waitoff.cxx2
-rw-r--r--sc/uiconfig/scalc/toolbar/arrowshapes.xml22
-rw-r--r--sc/uiconfig/scalc/toolbar/basicshapes.xml14
-rw-r--r--sc/uiconfig/scalc/toolbar/flowchartshapes.xml26
-rw-r--r--sc/uiconfig/scalc/toolbar/previewbar.xml2
-rw-r--r--sc/uiconfig/scalc/toolbar/symbolshapes.xml6
-rw-r--r--sc/util/createExtPackage.pl10
-rw-r--r--sc/util/hidother.src810
-rw-r--r--sc/workben/addin.cxx132
-rw-r--r--sc/workben/addin.hxx22
-rw-r--r--sc/workben/map.idl2
-rw-r--r--sc/workben/result.cxx12
-rw-r--r--sc/workben/result.hxx22
-rw-r--r--sc/workben/test.cxx432
-rw-r--r--sc/workben/testadd.idl2
-rw-r--r--sc/xml/ScSpreadsheetSettingsObj.xml2
-rw-r--r--scaddins/source/analysis/analysis.cxx248
-rw-r--r--scaddins/source/analysis/analysis.hrc540
-rw-r--r--scaddins/source/analysis/analysis.hxx220
-rw-r--r--scaddins/source/analysis/analysis.src1294
-rw-r--r--scaddins/source/analysis/analysis_deffuncnames.src2
-rw-r--r--scaddins/source/analysis/analysis_funcnames.src2
-rw-r--r--scaddins/source/analysis/analysisadd.idl2
-rw-r--r--scaddins/source/analysis/analysisdefs.hxx34
-rw-r--r--scaddins/source/analysis/analysishelper.cxx504
-rw-r--r--scaddins/source/analysis/analysishelper.hxx322
-rw-r--r--scaddins/source/analysis/bessel.cxx32
-rw-r--r--scaddins/source/analysis/bessel.hxx2
-rw-r--r--scaddins/source/analysis/financial.cxx48
-rw-r--r--scaddins/source/datefunc/dateadd.idl2
-rw-r--r--scaddins/source/datefunc/datefunc.cxx2
-rw-r--r--scaddins/source/datefunc/datefunc.hrc2
-rw-r--r--scaddins/source/datefunc/datefunc.hxx4
-rw-r--r--scaddins/source/datefunc/datefunc.src2
-rw-r--r--sccomp/source/solver/solver.cxx6
-rw-r--r--sccomp/source/solver/solver.hrc2
-rw-r--r--sccomp/source/solver/solver.hxx2
-rw-r--r--sccomp/source/solver/solver.src2
-rw-r--r--scp2/prj/build.lst3
-rw-r--r--scp2/source/extensions/directory_extensions.scp218
-rw-r--r--scp2/source/extensions/file_extensions.scp266
-rw-r--r--scp2/source/extensions/makefile.mk62
-rw-r--r--scp2/source/extensions/module_extensions.scp328
-rw-r--r--scp2/source/extensions/module_extensions.ulf142
-rw-r--r--scp2/source/extensions/module_extensions_lightproof.scp55
-rw-r--r--scp2/source/extensions/module_extensions_lightproof.ulf695
-rw-r--r--scp2/source/extensions/module_extensions_sun_templates.scp55
-rw-r--r--scp2/source/extensions/module_extensions_sun_templates.ulf695
-rw-r--r--scp2/source/graphicfilter/file_graphicfilter.scp1
-rw-r--r--scp2/source/graphicfilter/module_graphicfilter.scp2
-rw-r--r--scp2/source/ooo/common_brand.scp30
-rw-r--r--scp2/source/ooo/file_library_ooo.scp32
-rw-r--r--scp2/source/ooo/profileitem_ooo.scp1
-rwxr-xr-xscp2/source/ooo/windowscustomaction_ooo.scp38
-rwxr-xr-xscp2/source/templates/makefile.mk2
-rw-r--r--scp2/source/templates/module_langpack_accessories_samples.sct64
-rw-r--r--scp2/source/templates/module_langpack_accessories_samples_root.sct55
-rw-r--r--scp2/source/templates/module_langpack_accessories_templates.sct (renamed from transex3/java/jpropex/java/NoLocalizeFilter.java)47
-rw-r--r--scp2/source/templates/module_langpack_accessories_templates_root.sct (renamed from transex3/java/jpropex/java/Main.java)27
-rw-r--r--scp2/source/templates/module_langpack_extensions_lightproof.sct55
-rw-r--r--scp2/source/templates/module_langpack_extensions_templates.sct55
-rw-r--r--scp2/source/writer/module_writer.scp2
-rw-r--r--scp2/source/writer/registryitem_writer.scp9
-rw-r--r--scp2/util/makefile.mk10
-rw-r--r--scripting/examples/java/HelloWorld/parcel-descriptor.xml2
-rw-r--r--scripting/examples/java/Highlight/HighlightText.java16
-rw-r--r--scripting/examples/java/Newsgroup/MimeConfiguration.java4
-rw-r--r--scripting/examples/java/Newsgroup/NewsGroup.java2
-rw-r--r--scripting/examples/java/Newsgroup/OfficeAttachment.java52
-rw-r--r--scripting/examples/java/Newsgroup/PostNewsgroup.java198
-rw-r--r--scripting/examples/java/Newsgroup/Sender.java18
-rw-r--r--scripting/examples/java/Newsgroup/StatusWindow.java18
-rw-r--r--scripting/examples/java/Newsgroup/SubscribedNewsgroups.java58
-rwxr-xr-xscripting/examples/java/build.xml24
-rw-r--r--scripting/examples/java/debugger/OOBeanShellDebugger.java2
-rw-r--r--scripting/examples/java/selector/ScriptSelector.java14
-rw-r--r--scripting/inc/pch/precompiled_scripting.cxx2
-rw-r--r--scripting/inc/pch/precompiled_scripting.hxx2
-rw-r--r--scripting/java/Framework/com/sun/star/script/framework/security/SecurityDialog.java90
-rwxr-xr-xscripting/java/build.xml20
-rw-r--r--scripting/java/com/sun/star/script/framework/browse/DialogFactory.java60
-rw-r--r--scripting/java/com/sun/star/script/framework/browse/ParcelBrowseNode.java36
-rw-r--r--scripting/java/com/sun/star/script/framework/browse/PkgProviderBrowseNode.java6
-rw-r--r--scripting/java/com/sun/star/script/framework/browse/ProviderBrowseNode.java32
-rw-r--r--scripting/java/com/sun/star/script/framework/browse/ScriptBrowseNode.java34
-rw-r--r--scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java36
-rw-r--r--scripting/java/com/sun/star/script/framework/container/Parcel.java42
-rw-r--r--scripting/java/com/sun/star/script/framework/container/ParcelContainer.java178
-rw-r--r--scripting/java/com/sun/star/script/framework/container/ParcelDescriptor.java16
-rw-r--r--scripting/java/com/sun/star/script/framework/container/ParsedScriptUri.java4
-rw-r--r--scripting/java/com/sun/star/script/framework/container/ScriptEntry.java2
-rw-r--r--scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java58
-rw-r--r--scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java42
-rw-r--r--scripting/java/com/sun/star/script/framework/container/XMLParser.java2
-rw-r--r--scripting/java/com/sun/star/script/framework/container/XMLParserFactory.java12
-rw-r--r--scripting/java/com/sun/star/script/framework/io/UCBStreamHandler.java16
-rw-r--r--scripting/java/com/sun/star/script/framework/io/XInputStreamImpl.java16
-rw-r--r--scripting/java/com/sun/star/script/framework/io/XInputStreamWrapper.java8
-rw-r--r--scripting/java/com/sun/star/script/framework/io/XOutputStreamWrapper.java2
-rw-r--r--scripting/java/com/sun/star/script/framework/io/XStorageHelper.java38
-rw-r--r--scripting/java/com/sun/star/script/framework/log/LogUtils.java2
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/ClassLoaderFactory.java4
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/EditorScriptContext.java18
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/NoSuitableClassLoaderException.java2
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/PathUtils.java4
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/ScriptContext.java16
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/ScriptProvider.java90
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java4
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/beanshell/ScriptEditorForBeanShell.java22
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/beanshell/ScriptProviderForBeanShell.java70
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/beanshell/ScriptSourceModel.java20
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/beanshell/ScriptSourceView.java4
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/java/Resolver.java2
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/java/ScriptDescriptor.java2
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/java/ScriptProviderForJava.java44
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/java/ScriptProxy.java2
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/java/StrictResolver.java2
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/javascript/ScriptEditorForJavaScript.java28
-rwxr-xr-xscripting/java/com/sun/star/script/framework/provider/javascript/ScriptProviderForJavaScript.java38
-rw-r--r--scripting/java/org/openoffice/idesupport/CommandLineTools.java2
-rw-r--r--scripting/java/org/openoffice/idesupport/ExtensionFinder.java2
-rw-r--r--scripting/java/org/openoffice/idesupport/JavaFinder.java18
-rw-r--r--scripting/java/org/openoffice/idesupport/LocalOffice.java22
-rw-r--r--scripting/java/org/openoffice/idesupport/OfficeDocument.java10
-rw-r--r--scripting/java/org/openoffice/idesupport/OfficeInstallation.java2
-rw-r--r--scripting/java/org/openoffice/idesupport/SVersionRCFile.java14
-rw-r--r--scripting/java/org/openoffice/idesupport/filter/AllFilesFilter.java8
-rw-r--r--scripting/java/org/openoffice/idesupport/filter/BinaryOnlyFilter.java6
-rw-r--r--scripting/java/org/openoffice/idesupport/filter/ExceptParcelFilter.java8
-rw-r--r--scripting/java/org/openoffice/idesupport/filter/FileFilter.java2
-rw-r--r--scripting/java/org/openoffice/idesupport/localoffice/LocalOfficeImpl.java24
-rw-r--r--scripting/java/org/openoffice/idesupport/ui/ConfigurePanel.java26
-rw-r--r--scripting/java/org/openoffice/idesupport/ui/MethodPanel.java12
-rw-r--r--scripting/java/org/openoffice/idesupport/ui/ScriptPanel.java18
-rw-r--r--scripting/java/org/openoffice/idesupport/xml/Manifest.java10
-rw-r--r--scripting/java/org/openoffice/idesupport/zip/ParcelZipper.java84
-rw-r--r--scripting/java/org/openoffice/netbeans/editor/JavaKit.java18
-rw-r--r--scripting/java/org/openoffice/netbeans/editor/NetBeansSourceView.java6
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/BuildParcelAction.java6
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/CompileParcelAction.java4
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/ConfigureParcelAction.java6
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/DeployParcelAction.java18
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/MountDocumentAction.java2
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/MountParcelAction.java2
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/OfficeDocumentCookie.java4
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/OfficeDocumentSupport.java28
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/ParcelCookie.java4
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/ParcelDescriptorEditorSupport.java26
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/ParcelDescriptorParserCookie.java6
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/ParcelDescriptorParserSupport.java26
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/ParcelFolderCookie.java4
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/ParcelFolderSupport.java38
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/actions/ParcelSupport.java12
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java112
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystemBeanInfo.java24
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/OfficeDocumentDataLoader.java22
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/OfficeDocumentDataLoaderBeanInfo.java10
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/OfficeDocumentDataNode.java24
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/OfficeDocumentDataObject.java10
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelContentsFolder.java6
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelContentsFolderDataLoader.java18
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelContentsFolderDataLoaderBeanInfo.java10
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelDataLoader.java16
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelDataLoaderBeanInfo.java10
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelDataNode.java18
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelDataObject.java20
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelDescriptorDataLoader.java16
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelDescriptorDataLoaderBeanInfo.java10
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelDescriptorDataNode.java16
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelDescriptorDataObject.java18
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelFolder.java48
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelFolderDataLoader.java22
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/loader/ParcelFolderDataLoaderBeanInfo.java10
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/nodes/OfficeDocumentChildren.java28
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/nodes/ParcelDescriptorChildren.java20
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/nodes/ScriptNode.java50
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/options/OfficeSettings.java28
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/options/OfficeSettingsBeanInfo.java16
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/resources/layer.xml6
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/resources/mime-resolver.xml2
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/utils/FrameworkJarChecker.java2
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/utils/ManifestParser.java6
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/utils/NagDialog.java10
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/utils/OfficeModule.java2
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/utils/PackageRemover.java2
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/utils/ZipMounter.java6
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/InstallationPathDescriptor.java8
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/InstallationPathIterator.java28
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/JavaScriptIterator.java38
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/ParcelContentsIterator.java44
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/ParcelPropertiesPanel.java20
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/ParcelPropertiesVisualPanel.java12
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/SelectPathPanel.java14
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/wizard/SelectPathVisualPanel.java14
-rw-r--r--scripting/source/basprov/baslibnode.cxx8
-rw-r--r--scripting/source/basprov/baslibnode.hxx24
-rw-r--r--scripting/source/basprov/basmethnode.cxx22
-rw-r--r--scripting/source/basprov/basmethnode.hxx44
-rw-r--r--scripting/source/basprov/basmodnode.cxx20
-rw-r--r--scripting/source/basprov/basmodnode.hxx20
-rw-r--r--scripting/source/basprov/basprov.cxx44
-rw-r--r--scripting/source/basprov/basprov.hxx36
-rw-r--r--scripting/source/basprov/basprov.xml26
-rw-r--r--scripting/source/basprov/basscript.cxx20
-rw-r--r--scripting/source/basprov/basscript.hxx18
-rw-r--r--scripting/source/dlgprov/dlgevtatt.cxx16
-rw-r--r--scripting/source/dlgprov/dlgevtatt.hxx48
-rw-r--r--scripting/source/dlgprov/dlgprov.cxx54
-rw-r--r--scripting/source/dlgprov/dlgprov.hxx38
-rw-r--r--scripting/source/dlgprov/dlgprov.xml44
-rw-r--r--scripting/source/inc/bcholder.hxx10
-rw-r--r--scripting/source/inc/util/MiscUtils.hxx2
-rw-r--r--scripting/source/inc/util/scriptingconstants.hxx24
-rw-r--r--scripting/source/inc/util/util.hxx4
-rwxr-xr-xscripting/source/protocolhandler/protocolhandler.xml38
-rw-r--r--scripting/source/protocolhandler/scripthandler.cxx34
-rw-r--r--scripting/source/protocolhandler/scripthandler.hxx10
-rw-r--r--scripting/source/provider/ActiveMSPList.cxx2
-rw-r--r--scripting/source/provider/ActiveMSPList.hxx4
-rw-r--r--scripting/source/provider/BrowseNodeFactoryImpl.cxx2
-rw-r--r--scripting/source/provider/BrowseNodeFactoryImpl.hxx2
-rwxr-xr-xscripting/source/provider/MasterScriptProvider.cxx4
-rw-r--r--scripting/source/provider/MasterScriptProvider.hxx28
-rw-r--r--scripting/source/provider/MasterScriptProviderFactory.cxx2
-rw-r--r--scripting/source/provider/MasterScriptProviderFactory.hxx2
-rw-r--r--scripting/source/provider/ProviderCache.cxx44
-rw-r--r--scripting/source/provider/ProviderCache.hxx12
-rw-r--r--scripting/source/provider/ScriptImpl.cxx2
-rw-r--r--scripting/source/provider/ScriptImpl.hxx16
-rwxr-xr-xscripting/source/provider/ScriptingContext.cxx16
-rw-r--r--scripting/source/provider/ScriptingContext.hxx12
-rw-r--r--scripting/source/provider/URIHelper.cxx10
-rw-r--r--scripting/source/provider/URIHelper.hxx4
-rwxr-xr-xscripting/source/provider/provider.xml38
-rw-r--r--scripting/source/runtimemgr/ScriptExecDialog.hrc4
-rw-r--r--scripting/source/runtimemgr/ScriptExecDialog.src2
-rw-r--r--scripting/source/runtimemgr/ScriptNameResolverImpl.cxx104
-rw-r--r--scripting/source/runtimemgr/ScriptNameResolverImpl.hxx20
-rwxr-xr-xscripting/source/runtimemgr/ScriptRuntimeManager.cxx30
-rw-r--r--scripting/source/runtimemgr/ScriptRuntimeManager.hxx34
-rw-r--r--scripting/source/runtimemgr/StorageBridge.cxx6
-rw-r--r--scripting/source/runtimemgr/StorageBridge.hxx4
-rw-r--r--scripting/source/runtimemgr/StorageBridgeFactory.cxx2
-rw-r--r--scripting/source/runtimemgr/StorageBridgeFactory.hxx4
-rwxr-xr-xscripting/source/runtimemgr/runtimemgr.xml72
-rw-r--r--scripting/source/storage/ScriptData.hxx4
-rw-r--r--scripting/source/storage/ScriptElement.cxx6
-rw-r--r--scripting/source/storage/ScriptElement.hxx4
-rw-r--r--scripting/source/storage/ScriptInfo.cxx68
-rw-r--r--scripting/source/storage/ScriptInfo.hxx18
-rw-r--r--scripting/source/storage/ScriptInfoImpl.hxx8
-rw-r--r--scripting/source/storage/ScriptMetadataImporter.cxx54
-rw-r--r--scripting/source/storage/ScriptMetadataImporter.hxx16
-rwxr-xr-xscripting/source/storage/ScriptSecurityManager.cxx86
-rwxr-xr-xscripting/source/storage/ScriptSecurityManager.hxx18
-rw-r--r--scripting/source/storage/ScriptStorage.cxx166
-rw-r--r--scripting/source/storage/ScriptStorage.hxx30
-rw-r--r--scripting/source/storage/ScriptStorageManager.cxx20
-rw-r--r--scripting/source/storage/ScriptStorageManager.hxx46
-rw-r--r--scripting/source/storage/ScriptURI.cxx48
-rw-r--r--scripting/source/storage/ScriptURI.hxx18
-rw-r--r--scripting/source/storage/XMLElement.cxx8
-rw-r--r--scripting/source/storage/XMLElement.hxx20
-rw-r--r--scripting/source/stringresource/stringresource.cxx142
-rw-r--r--scripting/source/stringresource/stringresource.hxx178
-rw-r--r--scripting/source/stringresource/stringresource.xml18
-rw-r--r--scripting/source/vbaevents/eventhelper.cxx210
-rwxr-xr-xscripting/source/vbaevents/service.cxx14
-rwxr-xr-xscripting/source/vbaevents/vbaevents.xml8
-rwxr-xr-xscripting/workben/build.xml44
-rw-r--r--scripting/workben/ifc/scripting/ScriptingUtils.java2
-rw-r--r--scripting/workben/ifc/scripting/SecurityDialogUtil.java26
-rw-r--r--scripting/workben/ifc/scripting/_XFunction.java6
-rw-r--r--scripting/workben/ifc/scripting/_XFunctionProvider.java8
-rw-r--r--scripting/workben/ifc/scripting/_XScriptInfo.java34
-rw-r--r--scripting/workben/ifc/scripting/_XScriptInfoAccess.java22
-rw-r--r--scripting/workben/ifc/scripting/_XScriptInvocation.java4
-rw-r--r--scripting/workben/ifc/scripting/_XScriptNameResolver.java4
-rw-r--r--scripting/workben/ifc/scripting/_XScriptSecurity.java38
-rw-r--r--scripting/workben/ifc/scripting/_XScriptStorageManager.java12
-rw-r--r--scripting/workben/ifc/scripting/_XScriptStorageRefresh.java4
-rw-r--r--scripting/workben/installer/Banner.java2
-rw-r--r--scripting/workben/installer/ExceptionTraceHelper.java6
-rw-r--r--scripting/workben/installer/ExecCmd.java22
-rw-r--r--scripting/workben/installer/FileUpdater.java90
-rw-r--r--scripting/workben/installer/Final.java38
-rw-r--r--scripting/workben/installer/IdeFinal.java34
-rw-r--r--scripting/workben/installer/IdeUpdater.java40
-rw-r--r--scripting/workben/installer/IdeVersion.java70
-rw-r--r--scripting/workben/installer/IdeWelcome.java18
-rw-r--r--scripting/workben/installer/InstUtil.java124
-rw-r--r--scripting/workben/installer/InstallWizard.java60
-rw-r--r--scripting/workben/installer/LogStream.java2
-rw-r--r--scripting/workben/installer/NavPanel.java32
-rw-r--r--scripting/workben/installer/Navigation.java10
-rw-r--r--scripting/workben/installer/Register.java30
-rw-r--r--scripting/workben/installer/Version.java68
-rw-r--r--scripting/workben/installer/Welcome.java54
-rw-r--r--scripting/workben/installer/XmlUpdater.java94
-rw-r--r--scripting/workben/installer/ZipData.java4
-rw-r--r--scripting/workben/mod/_scripting/Dispatch.java10
-rw-r--r--scripting/workben/mod/_scripting/Function.java12
-rw-r--r--scripting/workben/mod/_scripting/FunctionProvider.java12
-rw-r--r--scripting/workben/mod/_scripting/ScriptInfo.java8
-rw-r--r--scripting/workben/mod/_scripting/ScriptRuntimeManager.java2
-rw-r--r--scripting/workben/mod/_scripting/ScriptStorage.java8
-rw-r--r--scripting/workben/mod/_scripting/ScriptStorageManager.java2
-rw-r--r--scripting/workben/mod/_scripting/TestDataLoader.java4
-rw-r--r--sd/inc/CustomAnimationCloner.hxx2
-rw-r--r--sd/inc/CustomAnimationEffect.hxx164
-rw-r--r--sd/inc/CustomAnimationPreset.hxx8
-rw-r--r--sd/inc/EffectMigration.hxx2
-rw-r--r--sd/inc/FactoryIds.hxx2
-rwxr-xr-xsd/inc/Outliner.hxx32
-rwxr-xr-xsd/inc/OutlinerIterator.hxx28
-rw-r--r--sd/inc/SdShapeTypes.hxx6
-rw-r--r--sd/inc/TransitionPreset.hxx4
-rw-r--r--sd/inc/anmdef.hxx4
-rw-r--r--sd/inc/anminfo.hxx52
-rwxr-xr-xsd/inc/app.hrc444
-rw-r--r--sd/inc/app.hxx2
-rwxr-xr-xsd/inc/cusshow.hxx2
-rw-r--r--sd/inc/diadef.h2
-rwxr-xr-xsd/inc/drawdoc.hxx108
-rw-r--r--sd/inc/eetext.hxx4
-rw-r--r--sd/inc/fadedef.h4
-rwxr-xr-xsd/inc/glob.hrc58
-rwxr-xr-xsd/inc/glob.hxx30
-rw-r--r--sd/inc/helper/simplereferencecomponent.hxx2
-rw-r--r--sd/inc/helpids.h194
-rw-r--r--sd/inc/imapinfo.hxx10
-rw-r--r--sd/inc/misc.hxx2
-rw-r--r--sd/inc/misc/scopelock.hxx6
-rw-r--r--sd/inc/movedef.hxx4
-rw-r--r--sd/inc/pch/precompiled_sd.cxx2
-rw-r--r--sd/inc/pch/precompiled_sd.hxx2
-rw-r--r--sd/inc/pglink.hxx6
-rwxr-xr-xsd/inc/pres.hxx34
-rw-r--r--sd/inc/prlayout.hxx2
-rw-r--r--sd/inc/resltn.hxx2
-rw-r--r--sd/inc/sd_primitivetypes2d.hxx10
-rwxr-xr-xsd/inc/sdabstdlg.hxx102
-rw-r--r--sd/inc/sdattr.hrc344
-rw-r--r--sd/inc/sdattr.hxx30
-rw-r--r--sd/inc/sdcgmfilter.hxx2
-rw-r--r--sd/inc/sddll.hxx6
-rw-r--r--sd/inc/sddllapi.h2
-rw-r--r--sd/inc/sdenumdef.hxx2
-rw-r--r--sd/inc/sderror.hxx14
-rw-r--r--sd/inc/sdfilter.hxx28
-rw-r--r--sd/inc/sdgrffilter.hxx6
-rw-r--r--sd/inc/sdhtmlfilter.hxx10
-rw-r--r--sd/inc/sdiocmpt.hxx20
-rwxr-xr-xsd/inc/sdmod.hxx52
-rw-r--r--sd/inc/sdobjfac.hxx2
-rwxr-xr-xsd/inc/sdpage.hxx174
-rw-r--r--sd/inc/sdpptwrp.hxx6
-rw-r--r--sd/inc/sdresid.hxx2
-rw-r--r--sd/inc/sduiks.hrc48
-rw-r--r--sd/inc/sdundo.hxx8
-rw-r--r--sd/inc/sdxmlwrp.hxx18
-rwxr-xr-xsd/inc/shapelist.hxx6
-rw-r--r--sd/inc/stlfamily.hxx12
-rwxr-xr-xsd/inc/stlpool.hxx34
-rw-r--r--sd/inc/stlsheet.hxx26
-rw-r--r--sd/inc/strmname.h2
-rwxr-xr-xsd/inc/textapi.hxx12
-rw-r--r--sd/inc/undo/undofactory.hxx4
-rw-r--r--sd/inc/undo/undomanager.hxx18
-rw-r--r--sd/inc/undo/undoobjects.hxx16
-rw-r--r--sd/inc/undoanim.hxx6
-rw-r--r--sd/sdi/SlideSorterController.sdi2
-rw-r--r--sd/sdi/ToolPanelViewShell.sdi32
-rwxr-xr-xsd/sdi/ViewShellBase.sdi2
-rw-r--r--sd/sdi/_docsh.sdi2
-rwxr-xr-xsd/sdi/_drvwsh.sdi22
-rw-r--r--sd/sdi/docshell.sdi2
-rwxr-xr-xsd/sdi/drtxtob.sdi20
-rw-r--r--sd/sdi/drviewsh.sdi6
-rw-r--r--sd/sdi/grdocsh.sdi2
-rw-r--r--sd/sdi/grviewsh.sdi4
-rwxr-xr-xsd/sdi/outlnvsh.sdi4
-rw-r--r--sd/sdi/sdgslots.sdi2
-rw-r--r--sd/sdi/sdnew.sdi30
-rwxr-xr-xsd/sdi/sdraw.sdi152
-rw-r--r--sd/sdi/sdslots.hrc2
-rwxr-xr-xsd/sdi/sdslots.sdi4
-rw-r--r--sd/sdi/tables.sdi6
-rw-r--r--sd/source/core/CustomAnimationCloner.cxx2
-rwxr-xr-xsd/source/core/CustomAnimationEffect.cxx94
-rw-r--r--sd/source/core/CustomAnimationPreset.cxx12
-rw-r--r--sd/source/core/EffectMigration.cxx210
-rw-r--r--sd/source/core/PageListWatcher.cxx12
-rw-r--r--sd/source/core/PageListWatcher.hxx12
-rw-r--r--sd/source/core/TransitionPreset.cxx2
-rw-r--r--sd/source/core/anminfo.cxx84
-rw-r--r--sd/source/core/annotations/Annotation.cxx44
-rw-r--r--sd/source/core/annotations/AnnotationEnumeration.cxx2
-rwxr-xr-xsd/source/core/cusshow.cxx2
-rw-r--r--sd/source/core/drawdoc.cxx24
-rwxr-xr-xsd/source/core/drawdoc2.cxx72
-rw-r--r--sd/source/core/drawdoc3.cxx96
-rwxr-xr-xsd/source/core/drawdoc4.cxx84
-rw-r--r--sd/source/core/drawdoc_animations.cxx2
-rwxr-xr-xsd/source/core/glob.src6
-rw-r--r--sd/source/core/pglink.cxx4
-rw-r--r--sd/source/core/sdattr.cxx10
-rw-r--r--sd/source/core/sdiocmpt.cxx60
-rw-r--r--sd/source/core/sdobjfac.cxx2
-rwxr-xr-xsd/source/core/sdpage.cxx176
-rw-r--r--sd/source/core/sdpage2.cxx54
-rw-r--r--sd/source/core/sdpage_animations.cxx2
-rwxr-xr-xsd/source/core/shapelist.cxx2
-rw-r--r--sd/source/core/stlfamily.cxx22
-rwxr-xr-xsd/source/core/stlpool.cxx116
-rw-r--r--sd/source/core/stlsheet.cxx120
-rwxr-xr-xsd/source/core/text/textapi.cxx50
-rw-r--r--sd/source/core/typemap.cxx50
-rw-r--r--sd/source/core/undo/undofactory.cxx2
-rw-r--r--sd/source/core/undo/undomanager.cxx2
-rw-r--r--sd/source/core/undo/undoobjects.cxx20
-rw-r--r--sd/source/core/undoanim.cxx8
-rw-r--r--sd/source/filter/cgm/sdcgmfilter.cxx36
-rw-r--r--sd/source/filter/eppt/eppt.cxx114
-rwxr-xr-xsd/source/filter/eppt/eppt.hxx692
-rw-r--r--sd/source/filter/eppt/epptdef.hxx110
-rwxr-xr-xsd/source/filter/eppt/epptso.cxx116
-rw-r--r--sd/source/filter/eppt/escherex.cxx30
-rw-r--r--sd/source/filter/eppt/escherex.hxx20
-rw-r--r--sd/source/filter/eppt/pptexanimations.cxx96
-rw-r--r--sd/source/filter/eppt/pptexanimations.hxx16
-rw-r--r--sd/source/filter/eppt/pptexsoundcollection.cxx6
-rw-r--r--sd/source/filter/eppt/pptexsoundcollection.hxx30
-rw-r--r--sd/source/filter/grf/sdgrffilter.cxx32
-rw-r--r--sd/source/filter/html/HtmlOptionsDialog.cxx6
-rw-r--r--sd/source/filter/html/buttonset.cxx2
-rw-r--r--sd/source/filter/html/buttonset.hxx4
-rwxr-xr-xsd/source/filter/html/htmlattr.cxx2
-rwxr-xr-xsd/source/filter/html/htmlattr.hxx8
-rwxr-xr-xsd/source/filter/html/htmlex.cxx82
-rwxr-xr-xsd/source/filter/html/htmlex.hxx108
-rwxr-xr-xsd/source/filter/html/pubdlg.cxx164
-rw-r--r--sd/source/filter/html/pubdlg.src4
-rw-r--r--sd/source/filter/html/sdhtmlfilter.cxx2
-rwxr-xr-xsd/source/filter/ppt/ppt97animations.cxx68
-rwxr-xr-xsd/source/filter/ppt/ppt97animations.hxx32
-rw-r--r--sd/source/filter/ppt/pptanimations.hxx670
-rwxr-xr-xsd/source/filter/ppt/pptatom.cpp6
-rwxr-xr-xsd/source/filter/ppt/pptatom.hxx2
-rwxr-xr-xsd/source/filter/ppt/pptin.cxx350
-rw-r--r--sd/source/filter/ppt/pptin.hxx38
-rwxr-xr-xsd/source/filter/ppt/pptinanimations.cxx136
-rwxr-xr-xsd/source/filter/ppt/pptinanimations.hxx14
-rwxr-xr-x[-rw-r--r--]sd/source/filter/ppt/propread.cxx236
-rw-r--r--sd/source/filter/ppt/propread.hxx184
-rw-r--r--sd/source/filter/sdfilter.cxx60
-rw-r--r--sd/source/filter/sdpptwrp.cxx14
-rw-r--r--sd/source/filter/xml/sdtransform.cxx12
-rw-r--r--sd/source/filter/xml/sdxmlwrp.cxx40
-rw-r--r--sd/source/helper/simplereferencecomponent.cxx8
-rw-r--r--sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx120
-rw-r--r--sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx42
-rw-r--r--sd/source/ui/accessibility/AccessibleOutlineEditSource.cxx32
-rw-r--r--sd/source/ui/accessibility/AccessibleOutlineView.cxx20
-rw-r--r--sd/source/ui/accessibility/AccessiblePageShape.cxx6
-rw-r--r--sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx10
-rw-r--r--sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx16
-rw-r--r--sd/source/ui/accessibility/AccessiblePresentationShape.cxx12
-rw-r--r--sd/source/ui/accessibility/AccessibleScrollPanel.cxx8
-rwxr-xr-xsd/source/ui/accessibility/AccessibleSlideSorterObject.cxx50
-rwxr-xr-xsd/source/ui/accessibility/AccessibleSlideSorterView.cxx82
-rwxr-xr-xsd/source/ui/accessibility/AccessibleTreeNode.cxx60
-rwxr-xr-xsd/source/ui/accessibility/AccessibleViewForwarder.cxx4
-rw-r--r--sd/source/ui/accessibility/SdShapeTypes.cxx46
-rw-r--r--sd/source/ui/accessibility/accessibility.hrc32
-rw-r--r--sd/source/ui/accessibility/accessibility.src2
-rw-r--r--sd/source/ui/animations/CustomAnimation.hrc200
-rw-r--r--sd/source/ui/animations/CustomAnimation.src20
-rwxr-xr-xsd/source/ui/animations/CustomAnimationCreateDialog.cxx34
-rw-r--r--sd/source/ui/animations/CustomAnimationCreateDialog.hrc12
-rw-r--r--sd/source/ui/animations/CustomAnimationCreateDialog.hxx2
-rw-r--r--sd/source/ui/animations/CustomAnimationCreateDialog.src8
-rw-r--r--sd/source/ui/animations/CustomAnimationDialog.cxx90
-rw-r--r--sd/source/ui/animations/CustomAnimationDialog.hrc102
-rw-r--r--sd/source/ui/animations/CustomAnimationDialog.hxx18
-rw-r--r--sd/source/ui/animations/CustomAnimationDialog.src84
-rw-r--r--sd/source/ui/animations/CustomAnimationList.cxx70
-rw-r--r--sd/source/ui/animations/CustomAnimationList.hxx24
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.cxx88
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.hrc56
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.hxx48
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.src40
-rw-r--r--sd/source/ui/animations/DialogListBox.cxx14
-rw-r--r--sd/source/ui/animations/STLPropertySet.cxx2
-rw-r--r--sd/source/ui/animations/STLPropertySet.hxx2
-rw-r--r--sd/source/ui/animations/SlideTransitionPane.cxx14
-rw-r--r--sd/source/ui/animations/SlideTransitionPane.hrc2
-rw-r--r--sd/source/ui/animations/SlideTransitionPane.hxx2
-rw-r--r--sd/source/ui/animations/SlideTransitionPane.src2
-rw-r--r--sd/source/ui/animations/motionpathtag.cxx118
-rw-r--r--sd/source/ui/animations/motionpathtag.hxx8
-rwxr-xr-xsd/source/ui/annotations/annotationmanager.cxx264
-rwxr-xr-xsd/source/ui/annotations/annotationmanagerimpl.hxx36
-rw-r--r--sd/source/ui/annotations/annotations.hrc52
-rw-r--r--sd/source/ui/annotations/annotations.src6
-rw-r--r--sd/source/ui/annotations/annotationtag.cxx98
-rw-r--r--sd/source/ui/annotations/annotationtag.hxx14
-rwxr-xr-xsd/source/ui/annotations/annotationwindow.cxx46
-rwxr-xr-xsd/source/ui/annotations/annotationwindow.hxx90
-rw-r--r--sd/source/ui/app/_app.hrc2
-rw-r--r--sd/source/ui/app/accel_tmpl.src4
-rw-r--r--sd/source/ui/app/accelids_tmpl.src2
-rw-r--r--sd/source/ui/app/app.src2
-rw-r--r--sd/source/ui/app/menu_tmpl.src4
-rwxr-xr-xsd/source/ui/app/menuids2_tmpl.src40
-rw-r--r--sd/source/ui/app/menuids3_tmpl.src2
-rw-r--r--sd/source/ui/app/menuids4_tmpl.src4
-rw-r--r--sd/source/ui/app/menuids_tmpl.src4
-rw-r--r--sd/source/ui/app/menuportal_tmpl.src10
-rwxr-xr-xsd/source/ui/app/optsitem.cxx250
-rw-r--r--sd/source/ui/app/popup.src6
-rw-r--r--sd/source/ui/app/popup2_tmpl.src16
-rwxr-xr-xsd/source/ui/app/res_bmp.src8
-rw-r--r--sd/source/ui/app/sddll.cxx2
-rwxr-xr-xsd/source/ui/app/sddll1.cxx2
-rwxr-xr-xsd/source/ui/app/sddll2.cxx8
-rwxr-xr-xsd/source/ui/app/sdmod.cxx12
-rwxr-xr-xsd/source/ui/app/sdmod1.cxx8
-rwxr-xr-xsd/source/ui/app/sdmod2.cxx22
-rw-r--r--sd/source/ui/app/sdpopup.cxx52
-rw-r--r--sd/source/ui/app/sdresid.cxx2
-rw-r--r--sd/source/ui/app/sdstring.src2
-rw-r--r--sd/source/ui/app/sdxfer.cxx80
-rwxr-xr-xsd/source/ui/app/strings.src4
-rw-r--r--sd/source/ui/app/tbx_ww.src2
-rw-r--r--sd/source/ui/app/tbxids_tmpl.src2
-rw-r--r--sd/source/ui/app/tbxww.cxx20
-rw-r--r--sd/source/ui/app/tmplctrl.cxx10
-rw-r--r--sd/source/ui/app/toolbox.src2
-rw-r--r--sd/source/ui/app/toolbox2_tmpl.src2
-rw-r--r--sd/source/ui/controller/slidelayoutcontroller.cxx14
-rw-r--r--sd/source/ui/controller/slidelayoutcontroller.hxx4
-rw-r--r--sd/source/ui/dlg/AnimationChildWindow.cxx4
-rw-r--r--sd/source/ui/dlg/LayerDialog.src2
-rw-r--r--sd/source/ui/dlg/LayerDialogChildWindow.cxx10
-rwxr-xr-xsd/source/ui/dlg/LayerDialogContent.cxx2
-rw-r--r--sd/source/ui/dlg/LayerTabBar.cxx26
-rw-r--r--sd/source/ui/dlg/NavigatorChildWindow.cxx4
-rwxr-xr-xsd/source/ui/dlg/PaneChildWindows.cxx26
-rwxr-xr-xsd/source/ui/dlg/PaneDockingWindow.cxx2
-rwxr-xr-xsd/source/ui/dlg/PaneDockingWindow.src8
-rwxr-xr-xsd/source/ui/dlg/PaneShells.cxx2
-rwxr-xr-xsd/source/ui/dlg/SpellDialogChildWindow.cxx10
-rw-r--r--sd/source/ui/dlg/TemplateScanner.cxx32
-rwxr-xr-xsd/source/ui/dlg/animobjs.cxx104
-rw-r--r--sd/source/ui/dlg/animobjs.src2
-rw-r--r--sd/source/ui/dlg/assclass.cxx2
-rw-r--r--sd/source/ui/dlg/brkdlg.cxx28
-rw-r--r--sd/source/ui/dlg/brkdlg.src2
-rw-r--r--sd/source/ui/dlg/celltempl.cxx2
-rw-r--r--sd/source/ui/dlg/celltempl.src2
-rw-r--r--sd/source/ui/dlg/copydlg.cxx18
-rw-r--r--sd/source/ui/dlg/copydlg.src2
-rwxr-xr-xsd/source/ui/dlg/custsdlg.cxx52
-rw-r--r--sd/source/ui/dlg/custsdlg.src2
-rw-r--r--sd/source/ui/dlg/diactrl.cxx14
-rw-r--r--sd/source/ui/dlg/dlg_char.src4
-rwxr-xr-xsd/source/ui/dlg/dlgass.cxx198
-rw-r--r--sd/source/ui/dlg/dlgass.src4
-rwxr-xr-xsd/source/ui/dlg/dlgassim.cxx8
-rwxr-xr-xsd/source/ui/dlg/dlgassim.hxx8
-rw-r--r--sd/source/ui/dlg/dlgchar.cxx6
-rwxr-xr-xsd/source/ui/dlg/dlgctrls.cxx6
-rw-r--r--sd/source/ui/dlg/dlgfield.cxx62
-rw-r--r--sd/source/ui/dlg/dlgfield.src2
-rw-r--r--sd/source/ui/dlg/dlgolbul.cxx14
-rw-r--r--sd/source/ui/dlg/dlgolbul.src2
-rw-r--r--sd/source/ui/dlg/dlgpage.cxx6
-rw-r--r--sd/source/ui/dlg/dlgpage.src2
-rwxr-xr-xsd/source/ui/dlg/dlgsnap.cxx18
-rw-r--r--sd/source/ui/dlg/dlgsnap.src2
-rwxr-xr-xsd/source/ui/dlg/docprev.cxx18
-rwxr-xr-xsd/source/ui/dlg/filedlg.cxx54
-rw-r--r--sd/source/ui/dlg/gluectrl.cxx20
-rwxr-xr-xsd/source/ui/dlg/headerfooterdlg.cxx70
-rw-r--r--sd/source/ui/dlg/headerfooterdlg.src96
-rw-r--r--sd/source/ui/dlg/ins_paste.cxx2
-rw-r--r--sd/source/ui/dlg/ins_paste.src2
-rwxr-xr-xsd/source/ui/dlg/inspagob.cxx26
-rw-r--r--sd/source/ui/dlg/inspagob.src2
-rw-r--r--sd/source/ui/dlg/layeroptionsdlg.cxx2
-rw-r--r--sd/source/ui/dlg/layeroptionsdlg.src4
-rw-r--r--sd/source/ui/dlg/masterlayoutdlg.cxx14
-rw-r--r--sd/source/ui/dlg/masterlayoutdlg.src12
-rw-r--r--sd/source/ui/dlg/morphdlg.cxx38
-rw-r--r--sd/source/ui/dlg/morphdlg.src2
-rw-r--r--sd/source/ui/dlg/navigatr.cxx46
-rw-r--r--sd/source/ui/dlg/navigatr.src16
-rw-r--r--sd/source/ui/dlg/paragr.cxx14
-rw-r--r--sd/source/ui/dlg/paragr.src4
-rw-r--r--sd/source/ui/dlg/present.cxx32
-rw-r--r--sd/source/ui/dlg/present.src12
-rw-r--r--sd/source/ui/dlg/prltempl.cxx18
-rw-r--r--sd/source/ui/dlg/prltempl.src8
-rwxr-xr-xsd/source/ui/dlg/prntopts.cxx12
-rw-r--r--sd/source/ui/dlg/prntopts.src2
-rw-r--r--sd/source/ui/dlg/sdabstdlg.cxx2
-rwxr-xr-xsd/source/ui/dlg/sddlgfact.cxx38
-rwxr-xr-xsd/source/ui/dlg/sddlgfact.hxx170
-rw-r--r--sd/source/ui/dlg/sdpreslt.cxx22
-rw-r--r--sd/source/ui/dlg/sdpreslt.src2
-rwxr-xr-xsd/source/ui/dlg/sdtreelb.cxx104
-rw-r--r--sd/source/ui/dlg/sduiexp.cxx2
-rw-r--r--sd/source/ui/dlg/tabtempl.cxx18
-rw-r--r--sd/source/ui/dlg/tabtempl.src4
-rwxr-xr-xsd/source/ui/dlg/tpaction.cxx72
-rw-r--r--sd/source/ui/dlg/tpaction.src8
-rw-r--r--sd/source/ui/dlg/tpoption.cxx42
-rw-r--r--sd/source/ui/dlg/tpoption.src2
-rw-r--r--sd/source/ui/dlg/unchss.cxx2
-rw-r--r--sd/source/ui/dlg/vectdlg.cxx86
-rw-r--r--sd/source/ui/dlg/vectdlg.src2
-rw-r--r--sd/source/ui/docshell/docshel2.cxx42
-rw-r--r--sd/source/ui/docshell/docshel3.cxx10
-rwxr-xr-xsd/source/ui/docshell/docshel4.cxx36
-rwxr-xr-xsd/source/ui/docshell/docshell.cxx20
-rw-r--r--sd/source/ui/docshell/grdocsh.cxx2
-rw-r--r--sd/source/ui/docshell/sdclient.cxx6
-rw-r--r--sd/source/ui/framework/configuration/ChangeRequestQueue.cxx2
-rw-r--r--sd/source/ui/framework/configuration/ChangeRequestQueue.hxx2
-rw-r--r--sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx4
-rw-r--r--sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.hxx4
-rw-r--r--sd/source/ui/framework/configuration/Configuration.cxx22
-rwxr-xr-xsd/source/ui/framework/configuration/ConfigurationClassifier.cxx12
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationClassifier.hxx2
-rwxr-xr-xsd/source/ui/framework/configuration/ConfigurationController.cxx24
-rwxr-xr-xsd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.cxx8
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx2
-rwxr-xr-xsd/source/ui/framework/configuration/ConfigurationControllerResourceManager.cxx14
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationControllerResourceManager.hxx10
-rwxr-xr-xsd/source/ui/framework/configuration/ConfigurationTracer.cxx2
-rwxr-xr-xsd/source/ui/framework/configuration/ConfigurationTracer.hxx2
-rwxr-xr-xsd/source/ui/framework/configuration/ConfigurationUpdater.cxx10
-rwxr-xr-xsd/source/ui/framework/configuration/ConfigurationUpdater.hxx10
-rw-r--r--sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx6
-rw-r--r--sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx10
-rw-r--r--sd/source/ui/framework/configuration/ResourceFactoryManager.cxx4
-rw-r--r--sd/source/ui/framework/configuration/ResourceFactoryManager.hxx4
-rwxr-xr-xsd/source/ui/framework/configuration/ResourceId.cxx10
-rw-r--r--sd/source/ui/framework/configuration/UpdateRequest.cxx4
-rw-r--r--sd/source/ui/framework/configuration/UpdateRequest.hxx6
-rwxr-xr-xsd/source/ui/framework/factories/BasicPaneFactory.cxx12
-rwxr-xr-xsd/source/ui/framework/factories/BasicPaneFactory.hxx14
-rwxr-xr-xsd/source/ui/framework/factories/BasicToolBarFactory.cxx8
-rwxr-xr-xsd/source/ui/framework/factories/BasicToolBarFactory.hxx16
-rwxr-xr-xsd/source/ui/framework/factories/BasicViewFactory.cxx26
-rwxr-xr-xsd/source/ui/framework/factories/BasicViewFactory.hxx14
-rwxr-xr-xsd/source/ui/framework/factories/ChildWindowPane.cxx14
-rw-r--r--sd/source/ui/framework/factories/ChildWindowPane.hxx4
-rw-r--r--sd/source/ui/framework/factories/FrameWindowPane.cxx2
-rw-r--r--sd/source/ui/framework/factories/FrameWindowPane.hxx2
-rw-r--r--sd/source/ui/framework/factories/FullScreenPane.cxx14
-rw-r--r--sd/source/ui/framework/factories/FullScreenPane.hxx4
-rw-r--r--sd/source/ui/framework/factories/Pane.cxx12
-rwxr-xr-xsd/source/ui/framework/factories/PresentationFactory.cxx14
-rwxr-xr-xsd/source/ui/framework/factories/TaskPanelFactory.cxx14
-rwxr-xr-xsd/source/ui/framework/factories/TaskPanelFactory.hxx10
-rwxr-xr-xsd/source/ui/framework/factories/ViewShellWrapper.cxx12
-rw-r--r--sd/source/ui/framework/module/CenterViewFocusModule.cxx8
-rw-r--r--sd/source/ui/framework/module/CenterViewFocusModule.hxx8
-rw-r--r--sd/source/ui/framework/module/DrawModule.cxx2
-rwxr-xr-xsd/source/ui/framework/module/ImpressModule.cxx2
-rwxr-xr-xsd/source/ui/framework/module/ModuleController.cxx6
-rwxr-xr-xsd/source/ui/framework/module/PresentationModule.cxx2
-rwxr-xr-xsd/source/ui/framework/module/ReadOnlyModeObserver.cxx8
-rwxr-xr-xsd/source/ui/framework/module/ReadOnlyModeObserver.hxx10
-rwxr-xr-xsd/source/ui/framework/module/ResourceManager.cxx2
-rwxr-xr-xsd/source/ui/framework/module/ResourceManager.hxx10
-rw-r--r--sd/source/ui/framework/module/ShellStackGuard.cxx6
-rw-r--r--sd/source/ui/framework/module/ShellStackGuard.hxx8
-rw-r--r--sd/source/ui/framework/module/SlideSorterModule.cxx6
-rw-r--r--sd/source/ui/framework/module/SlideSorterModule.hxx6
-rw-r--r--sd/source/ui/framework/module/ToolBarModule.cxx4
-rw-r--r--sd/source/ui/framework/module/ToolBarModule.hxx8
-rw-r--r--sd/source/ui/framework/module/ToolPanelModule.cxx10
-rw-r--r--sd/source/ui/framework/module/ToolPanelModule.hxx2
-rw-r--r--sd/source/ui/framework/module/ViewTabBarModule.cxx10
-rw-r--r--sd/source/ui/framework/module/ViewTabBarModule.hxx8
-rwxr-xr-xsd/source/ui/framework/tools/FrameworkHelper.cxx30
-rw-r--r--sd/source/ui/func/bulmaper.cxx4
-rw-r--r--sd/source/ui/func/fuarea.cxx4
-rw-r--r--sd/source/ui/func/fubullet.cxx26
-rw-r--r--sd/source/ui/func/fuchar.cxx2
-rw-r--r--sd/source/ui/func/fucon3d.cxx28
-rw-r--r--sd/source/ui/func/fuconarc.cxx30
-rw-r--r--sd/source/ui/func/fuconbez.cxx20
-rw-r--r--sd/source/ui/func/fuconcs.cxx14
-rw-r--r--sd/source/ui/func/fuconnct.cxx8
-rw-r--r--sd/source/ui/func/fuconrec.cxx64
-rwxr-xr-xsd/source/ui/func/fuconstr.cxx16
-rw-r--r--sd/source/ui/func/fuconuno.cxx14
-rw-r--r--sd/source/ui/func/fucopy.cxx48
-rw-r--r--sd/source/ui/func/fucushow.cxx14
-rwxr-xr-xsd/source/ui/func/fudraw.cxx18
-rw-r--r--sd/source/ui/func/fudspord.cxx4
-rw-r--r--sd/source/ui/func/fuediglu.cxx6
-rw-r--r--sd/source/ui/func/fuexpand.cxx8
-rw-r--r--sd/source/ui/func/fuformatpaintbrush.cxx14
-rw-r--r--sd/source/ui/func/fuhhconv.cxx2
-rwxr-xr-xsd/source/ui/func/fuinsert.cxx20
-rw-r--r--sd/source/ui/func/fuinsfil.cxx48
-rw-r--r--sd/source/ui/func/fuline.cxx10
-rw-r--r--sd/source/ui/func/fulinend.cxx2
-rw-r--r--sd/source/ui/func/fulink.cxx2
-rw-r--r--sd/source/ui/func/fumeasur.cxx8
-rw-r--r--sd/source/ui/func/fumorph.cxx80
-rw-r--r--sd/source/ui/func/fuoaprms.cxx30
-rw-r--r--sd/source/ui/func/fuolbull.cxx2
-rw-r--r--sd/source/ui/func/fuoltext.cxx2
-rwxr-xr-xsd/source/ui/func/fuoutl.cxx12
-rwxr-xr-xsd/source/ui/func/fupage.cxx20
-rw-r--r--sd/source/ui/func/fuparagr.cxx2
-rwxr-xr-xsd/source/ui/func/fupoor.cxx90
-rw-r--r--sd/source/ui/func/fuprlout.cxx18
-rw-r--r--sd/source/ui/func/fuprobjs.cxx10
-rw-r--r--sd/source/ui/func/fuscale.cxx10
-rwxr-xr-xsd/source/ui/func/fusearch.cxx2
-rw-r--r--sd/source/ui/func/fusel.cxx2
-rw-r--r--sd/source/ui/func/fusldlg.cxx28
-rwxr-xr-xsd/source/ui/func/fusnapln.cxx18
-rw-r--r--sd/source/ui/func/fusumry.cxx8
-rw-r--r--sd/source/ui/func/futempl.cxx10
-rwxr-xr-xsd/source/ui/func/futext.cxx24
-rw-r--r--sd/source/ui/func/futhes.cxx2
-rwxr-xr-xsd/source/ui/func/futransf.cxx2
-rw-r--r--sd/source/ui/func/futxtatt.cxx8
-rw-r--r--sd/source/ui/func/fuvect.cxx16
-rw-r--r--sd/source/ui/func/fuzoom.cxx6
-rw-r--r--sd/source/ui/func/sdundo.cxx2
-rwxr-xr-xsd/source/ui/func/sdundogr.cxx6
-rwxr-xr-xsd/source/ui/func/smarttag.cxx12
-rw-r--r--sd/source/ui/func/undoback.cxx8
-rw-r--r--sd/source/ui/func/undoheaderfooter.cxx6
-rw-r--r--sd/source/ui/func/undolayer.cxx10
-rw-r--r--sd/source/ui/func/undopage.cxx2
-rw-r--r--sd/source/ui/func/unmovss.cxx4
-rwxr-xr-xsd/source/ui/func/unoaprms.cxx16
-rw-r--r--sd/source/ui/func/unprlout.cxx2
-rw-r--r--sd/source/ui/inc/3dchld.hxx4
-rw-r--r--sd/source/ui/inc/AccessibleDocumentViewBase.hxx88
-rw-r--r--sd/source/ui/inc/AccessibleDrawDocumentView.hxx22
-rw-r--r--sd/source/ui/inc/AccessibleOutlineEditSource.hxx52
-rw-r--r--sd/source/ui/inc/AccessibleOutlineView.hxx30
-rw-r--r--sd/source/ui/inc/AccessiblePageShape.hxx36
-rw-r--r--sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx14
-rw-r--r--sd/source/ui/inc/AccessiblePresentationOLEShape.hxx14
-rw-r--r--sd/source/ui/inc/AccessiblePresentationShape.hxx16
-rw-r--r--sd/source/ui/inc/AccessibleScrollPanel.hxx8
-rw-r--r--sd/source/ui/inc/AccessibleSlideSorterObject.hxx40
-rw-r--r--sd/source/ui/inc/AccessibleSlideSorterView.hxx80
-rw-r--r--sd/source/ui/inc/AccessibleSlideView.hxx46
-rw-r--r--sd/source/ui/inc/AccessibleTreeNode.hxx72
-rwxr-xr-xsd/source/ui/inc/AccessibleViewForwarder.hxx18
-rw-r--r--sd/source/ui/inc/AnimationChildWindow.hxx8
-rw-r--r--sd/source/ui/inc/BezierObjectBar.hxx4
-rw-r--r--sd/source/ui/inc/BreakDlg.hxx36
-rw-r--r--sd/source/ui/inc/Client.hxx18
-rw-r--r--sd/source/ui/inc/ClientView.hxx6
-rw-r--r--sd/source/ui/inc/CustomAnimation.hxx4
-rw-r--r--sd/source/ui/inc/DialogListBox.hxx40
-rw-r--r--sd/source/ui/inc/DocumentRenderer.hxx6
-rwxr-xr-xsd/source/ui/inc/DrawController.hxx24
-rwxr-xr-xsd/source/ui/inc/DrawDocShell.hxx68
-rwxr-xr-xsd/source/ui/inc/DrawSubController.hxx2
-rwxr-xr-xsd/source/ui/inc/DrawViewShell.hxx198
-rw-r--r--sd/source/ui/inc/EventMultiplexer.hxx22
-rw-r--r--sd/source/ui/inc/FormShellManager.hxx4
-rw-r--r--sd/source/ui/inc/FrameView.hxx64
-rw-r--r--sd/source/ui/inc/GraphicDocShell.hxx2
-rw-r--r--sd/source/ui/inc/GraphicObjectBar.hxx16
-rwxr-xr-xsd/source/ui/inc/GraphicViewShell.hxx4
-rw-r--r--sd/source/ui/inc/GraphicViewShellBase.hxx2
-rw-r--r--sd/source/ui/inc/ImpressViewShellBase.hxx2
-rw-r--r--sd/source/ui/inc/LayerDialog.hrc4
-rw-r--r--sd/source/ui/inc/LayerDialogChildWindow.hxx6
-rwxr-xr-xsd/source/ui/inc/LayerDialogContent.hxx8
-rw-r--r--sd/source/ui/inc/LayerTabBar.hxx34
-rwxr-xr-xsd/source/ui/inc/MasterPageObserver.hxx10
-rw-r--r--sd/source/ui/inc/MediaObjectBar.hxx10
-rw-r--r--sd/source/ui/inc/MutexOwner.hxx4
-rw-r--r--sd/source/ui/inc/NavigatorChildWindow.hxx8
-rw-r--r--sd/source/ui/inc/NotesChildWindow.hrc2
-rw-r--r--sd/source/ui/inc/NotesChildWindow.hxx4
-rw-r--r--sd/source/ui/inc/OutlineBulletDlg.hxx16
-rwxr-xr-xsd/source/ui/inc/OutlineView.hxx82
-rwxr-xr-xsd/source/ui/inc/OutlineViewShell.hxx14
-rw-r--r--sd/source/ui/inc/OutlineViewShellBase.hxx2
-rw-r--r--sd/source/ui/inc/OutlinerIteratorImpl.hxx28
-rwxr-xr-xsd/source/ui/inc/PaneChildWindows.hxx10
-rwxr-xr-xsd/source/ui/inc/PaneDockingWindow.hrc2
-rwxr-xr-xsd/source/ui/inc/PaneDockingWindow.hxx2
-rwxr-xr-xsd/source/ui/inc/PaneShells.hxx10
-rw-r--r--sd/source/ui/inc/PresentationViewShell.hxx8
-rw-r--r--sd/source/ui/inc/PresentationViewShellBase.hxx2
-rw-r--r--sd/source/ui/inc/PreviewRenderer.hxx8
-rw-r--r--sd/source/ui/inc/Ruler.hxx18
-rwxr-xr-xsd/source/ui/inc/SdUnoDrawView.hxx24
-rwxr-xr-xsd/source/ui/inc/SdUnoOutlineView.hxx22
-rwxr-xr-xsd/source/ui/inc/SdUnoSlideView.hxx16
-rw-r--r--sd/source/ui/inc/ShellFactory.hxx2
-rw-r--r--sd/source/ui/inc/SlideSorter.hxx10
-rw-r--r--sd/source/ui/inc/SlideSorterChildWindow.hrc2
-rw-r--r--sd/source/ui/inc/SlideSorterChildWindow.hxx10
-rwxr-xr-xsd/source/ui/inc/SlideSorterViewShell.hxx22
-rw-r--r--sd/source/ui/inc/SlideSorterViewShellBase.hxx2
-rwxr-xr-xsd/source/ui/inc/SlideView.hxx48
-rw-r--r--sd/source/ui/inc/SlideViewShell.hxx26
-rwxr-xr-xsd/source/ui/inc/SpellDialogChildWindow.hxx6
-rw-r--r--sd/source/ui/inc/TabControl.hxx60
-rw-r--r--sd/source/ui/inc/TemplateScanner.hxx4
-rw-r--r--sd/source/ui/inc/TextLogger.hxx2
-rw-r--r--sd/source/ui/inc/TextObjectBar.hxx6
-rwxr-xr-xsd/source/ui/inc/ToolBarManager.hxx4
-rw-r--r--sd/source/ui/inc/UpdateLockManager.hxx2
-rwxr-xr-xsd/source/ui/inc/View.hxx94
-rw-r--r--sd/source/ui/inc/ViewClipboard.hxx2
-rwxr-xr-xsd/source/ui/inc/ViewShell.hxx92
-rwxr-xr-xsd/source/ui/inc/ViewShellBase.hxx6
-rw-r--r--sd/source/ui/inc/ViewShellHint.hxx2
-rwxr-xr-xsd/source/ui/inc/ViewShellImplementation.hxx6
-rwxr-xr-xsd/source/ui/inc/ViewShellManager.hxx12
-rw-r--r--sd/source/ui/inc/ViewTabBar.hxx16
-rw-r--r--sd/source/ui/inc/ViewTabControl.hxx60
-rwxr-xr-xsd/source/ui/inc/Window.hxx54
-rw-r--r--sd/source/ui/inc/WindowUpdater.hxx2
-rw-r--r--sd/source/ui/inc/animobjs.hrc2
-rwxr-xr-xsd/source/ui/inc/animobjs.hxx104
-rwxr-xr-xsd/source/ui/inc/annotationmanager.hxx6
-rw-r--r--sd/source/ui/inc/assclass.hxx2
-rwxr-xr-xsd/source/ui/inc/bmcache.hxx16
-rw-r--r--sd/source/ui/inc/brkdlg.hrc10
-rw-r--r--sd/source/ui/inc/bulmaper.hxx2
-rw-r--r--sd/source/ui/inc/celltempl.hrc4
-rw-r--r--sd/source/ui/inc/celltempl.hxx14
-rw-r--r--sd/source/ui/inc/cfgids.hxx56
-rw-r--r--sd/source/ui/inc/copydlg.hrc2
-rw-r--r--sd/source/ui/inc/copydlg.hxx72
-rw-r--r--sd/source/ui/inc/custsdlg.hrc6
-rw-r--r--sd/source/ui/inc/custsdlg.hxx78
-rw-r--r--sd/source/ui/inc/diactrl.hxx12
-rw-r--r--sd/source/ui/inc/dialogs.hrc12
-rw-r--r--sd/source/ui/inc/dlg_char.hrc4
-rw-r--r--sd/source/ui/inc/dlg_char.hxx6
-rw-r--r--sd/source/ui/inc/dlgass.hrc94
-rwxr-xr-xsd/source/ui/inc/dlgass.hxx2
-rwxr-xr-xsd/source/ui/inc/dlgctrls.hxx10
-rw-r--r--sd/source/ui/inc/dlgfield.hrc2
-rw-r--r--sd/source/ui/inc/dlgfield.hxx36
-rw-r--r--sd/source/ui/inc/dlgolbul.hrc4
-rw-r--r--sd/source/ui/inc/dlgpage.hrc4
-rw-r--r--sd/source/ui/inc/dlgpage.hxx12
-rw-r--r--sd/source/ui/inc/dlgsnap.hrc2
-rw-r--r--sd/source/ui/inc/dlgsnap.hxx38
-rwxr-xr-xsd/source/ui/inc/docprev.hxx24
-rw-r--r--sd/source/ui/inc/drawview.hxx16
-rw-r--r--sd/source/ui/inc/enumdlg.hrc2
-rwxr-xr-xsd/source/ui/inc/filedlg.hxx14
-rw-r--r--sd/source/ui/inc/fontwork.hrc2
-rw-r--r--sd/source/ui/inc/framework/Configuration.hxx16
-rw-r--r--sd/source/ui/inc/framework/ConfigurationController.hxx24
-rw-r--r--sd/source/ui/inc/framework/DrawModule.hxx2
-rwxr-xr-xsd/source/ui/inc/framework/FrameworkHelper.hxx16
-rw-r--r--sd/source/ui/inc/framework/ImpressModule.hxx2
-rw-r--r--sd/source/ui/inc/framework/ModuleController.hxx16
-rw-r--r--sd/source/ui/inc/framework/Pane.hxx14
-rwxr-xr-xsd/source/ui/inc/framework/PresentationFactory.hxx10
-rw-r--r--sd/source/ui/inc/framework/PresentationModule.hxx2
-rwxr-xr-xsd/source/ui/inc/framework/ResourceId.hxx6
-rwxr-xr-xsd/source/ui/inc/framework/ViewShellWrapper.hxx12
-rw-r--r--sd/source/ui/inc/fuarea.hxx8
-rw-r--r--sd/source/ui/inc/fubullet.hxx6
-rw-r--r--sd/source/ui/inc/fuchar.hxx10
-rw-r--r--sd/source/ui/inc/fucon3d.hxx10
-rw-r--r--sd/source/ui/inc/fuconarc.hxx12
-rw-r--r--sd/source/ui/inc/fuconbez.hxx16
-rw-r--r--sd/source/ui/inc/fuconcs.hxx8
-rw-r--r--sd/source/ui/inc/fuconnct.hxx10
-rw-r--r--sd/source/ui/inc/fuconrec.hxx12
-rwxr-xr-xsd/source/ui/inc/fuconstr.hxx18
-rw-r--r--sd/source/ui/inc/fuconuno.hxx14
-rw-r--r--sd/source/ui/inc/fucopy.hxx10
-rw-r--r--sd/source/ui/inc/fucushow.hxx10
-rwxr-xr-xsd/source/ui/inc/fudraw.hxx20
-rw-r--r--sd/source/ui/inc/fudspord.hxx24
-rw-r--r--sd/source/ui/inc/fuediglu.hxx16
-rw-r--r--sd/source/ui/inc/fuexpand.hxx10
-rw-r--r--sd/source/ui/inc/fuformatpaintbrush.hxx8
-rw-r--r--sd/source/ui/inc/fugrid.hxx10
-rw-r--r--sd/source/ui/inc/fuhhconv.hxx14
-rw-r--r--sd/source/ui/inc/fuinsert.hxx30
-rw-r--r--sd/source/ui/inc/fuinsfil.hxx14
-rw-r--r--sd/source/ui/inc/fuline.hxx10
-rw-r--r--sd/source/ui/inc/fulinend.hxx10
-rw-r--r--sd/source/ui/inc/fulink.hxx10
-rw-r--r--sd/source/ui/inc/fumeasur.hxx10
-rw-r--r--sd/source/ui/inc/fumorph.hxx18
-rw-r--r--sd/source/ui/inc/fuoaprms.hxx6
-rw-r--r--sd/source/ui/inc/fuolbull.hxx10
-rw-r--r--sd/source/ui/inc/fuoltext.hxx14
-rwxr-xr-xsd/source/ui/inc/fuoutl.hxx10
-rwxr-xr-xsd/source/ui/inc/fupage.hxx32
-rw-r--r--sd/source/ui/inc/fuparagr.hxx10
-rwxr-xr-xsd/source/ui/inc/fupoor.hxx58
-rw-r--r--sd/source/ui/inc/fuprlout.hxx10
-rw-r--r--sd/source/ui/inc/fuprobjs.hxx10
-rw-r--r--sd/source/ui/inc/fuscale.hxx10
-rw-r--r--sd/source/ui/inc/fusearch.hxx8
-rw-r--r--sd/source/ui/inc/fusel.hxx20
-rw-r--r--sd/source/ui/inc/fusldlg.hxx10
-rw-r--r--sd/source/ui/inc/fuslhide.hxx10
-rw-r--r--sd/source/ui/inc/fuslid.hxx12
-rw-r--r--sd/source/ui/inc/fuslsel.hxx40
-rw-r--r--sd/source/ui/inc/fusnapln.hxx10
-rw-r--r--sd/source/ui/inc/fusumry.hxx10
-rw-r--r--sd/source/ui/inc/futempl.hxx10
-rw-r--r--sd/source/ui/inc/futext.hxx20
-rw-r--r--sd/source/ui/inc/futhes.hxx10
-rwxr-xr-xsd/source/ui/inc/futransf.hxx10
-rw-r--r--sd/source/ui/inc/futxtatt.hxx10
-rw-r--r--sd/source/ui/inc/fuvect.hxx10
-rw-r--r--sd/source/ui/inc/fuzoom.hxx28
-rw-r--r--sd/source/ui/inc/gluectrl.hxx10
-rw-r--r--sd/source/ui/inc/headerfooterdlg.hrc58
-rwxr-xr-xsd/source/ui/inc/headerfooterdlg.hxx20
-rw-r--r--sd/source/ui/inc/ins_paste.hrc14
-rw-r--r--sd/source/ui/inc/ins_paste.hxx10
-rw-r--r--sd/source/ui/inc/inspagob.hrc2
-rw-r--r--sd/source/ui/inc/inspagob.hxx28
-rw-r--r--sd/source/ui/inc/layeroptionsdlg.hrc2
-rw-r--r--sd/source/ui/inc/layeroptionsdlg.hxx32
-rw-r--r--sd/source/ui/inc/masterlayoutdlg.hrc18
-rw-r--r--sd/source/ui/inc/masterlayoutdlg.hxx28
-rw-r--r--sd/source/ui/inc/morphdlg.hrc20
-rw-r--r--sd/source/ui/inc/morphdlg.hxx36
-rw-r--r--sd/source/ui/inc/navigatr.hrc2
-rw-r--r--sd/source/ui/inc/navigatr.hxx104
-rw-r--r--sd/source/ui/inc/optdlg.hrc10
-rw-r--r--sd/source/ui/inc/optdlg.hxx8
-rwxr-xr-xsd/source/ui/inc/optsitem.hxx612
-rw-r--r--sd/source/ui/inc/packgdlg.hrc30
-rw-r--r--sd/source/ui/inc/paragr.hrc4
-rw-r--r--sd/source/ui/inc/paragr.hxx4
-rw-r--r--sd/source/ui/inc/pgjump.hxx2
-rw-r--r--sd/source/ui/inc/present.hrc10
-rw-r--r--sd/source/ui/inc/present.hxx70
-rw-r--r--sd/source/ui/inc/preview.hrc2
-rw-r--r--sd/source/ui/inc/prltempl.hrc8
-rw-r--r--sd/source/ui/inc/prltempl.hxx38
-rw-r--r--sd/source/ui/inc/prntopts.hrc10
-rwxr-xr-xsd/source/ui/inc/prntopts.hxx34
-rw-r--r--sd/source/ui/inc/pubdlg.hrc182
-rw-r--r--sd/source/ui/inc/pubdlg.hxx198
-rwxr-xr-xsd/source/ui/inc/res_bmp.hrc488
-rw-r--r--sd/source/ui/inc/sdpopup.hxx12
-rw-r--r--sd/source/ui/inc/sdpreslt.hrc2
-rw-r--r--sd/source/ui/inc/sdpreslt.hxx30
-rw-r--r--sd/source/ui/inc/sdstring.hrc6
-rwxr-xr-xsd/source/ui/inc/sdtreelb.hxx116
-rwxr-xr-xsd/source/ui/inc/sdundogr.hxx12
-rw-r--r--sd/source/ui/inc/sdxfer.hxx86
-rwxr-xr-xsd/source/ui/inc/slideshow.hxx36
-rwxr-xr-xsd/source/ui/inc/smarttag.hxx16
-rw-r--r--sd/source/ui/inc/sprite.hxx48
-rwxr-xr-xsd/source/ui/inc/strings.hrc700
-rw-r--r--sd/source/ui/inc/tabtempl.hrc6
-rw-r--r--sd/source/ui/inc/tabtempl.hxx36
-rwxr-xr-xsd/source/ui/inc/taskpane/ControlContainer.hxx2
-rwxr-xr-xsd/source/ui/inc/taskpane/ILayoutableWindow.hxx10
-rw-r--r--sd/source/ui/inc/taskpane/PanelId.hxx2
-rwxr-xr-xsd/source/ui/inc/taskpane/ScrollPanel.hxx6
-rwxr-xr-xsd/source/ui/inc/taskpane/SlideSorterCacheDisplay.hxx12
-rwxr-xr-xsd/source/ui/inc/taskpane/SubToolPanel.hxx2
-rwxr-xr-xsd/source/ui/inc/taskpane/TaskPaneControlFactory.hxx2
-rwxr-xr-xsd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx10
-rwxr-xr-xsd/source/ui/inc/taskpane/TitleBar.hxx2
-rwxr-xr-xsd/source/ui/inc/taskpane/TitledControl.hxx10
-rw-r--r--sd/source/ui/inc/taskpane/ToolPanelViewShell.hxx8
-rw-r--r--sd/source/ui/inc/tbx_ww.hrc2
-rw-r--r--sd/source/ui/inc/tbx_ww.hxx20
-rw-r--r--sd/source/ui/inc/tmplctrl.hxx4
-rw-r--r--sd/source/ui/inc/tools/AsynchronousCall.hxx8
-rw-r--r--sd/source/ui/inc/tools/AsynchronousTask.hxx4
-rw-r--r--sd/source/ui/inc/tools/ConfigurationAccess.hxx6
-rw-r--r--sd/source/ui/inc/tools/IconCache.hxx4
-rw-r--r--sd/source/ui/inc/tools/IdleDetection.hxx4
-rwxr-xr-xsd/source/ui/inc/tools/PropertySet.hxx10
-rwxr-xr-xsd/source/ui/inc/tools/SdGlobalResourceContainer.hxx4
-rwxr-xr-xsd/source/ui/inc/tools/SlotStateListener.hxx10
-rw-r--r--sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx6
-rw-r--r--sd/source/ui/inc/tpaction.hrc2
-rwxr-xr-xsd/source/ui/inc/tpaction.hxx60
-rw-r--r--sd/source/ui/inc/tpoption.hrc2
-rw-r--r--sd/source/ui/inc/tpoption.hxx38
-rw-r--r--sd/source/ui/inc/unchss.hxx2
-rw-r--r--sd/source/ui/inc/undoback.hxx12
-rw-r--r--sd/source/ui/inc/undoheaderfooter.hxx8
-rw-r--r--sd/source/ui/inc/undolayer.hxx6
-rw-r--r--sd/source/ui/inc/undopage.hxx92
-rw-r--r--sd/source/ui/inc/unmodpg.hxx18
-rw-r--r--sd/source/ui/inc/unmovss.hxx8
-rwxr-xr-xsd/source/ui/inc/unoaprms.hxx24
-rw-r--r--sd/source/ui/inc/unokywds.hxx164
-rw-r--r--sd/source/ui/inc/unomodel.hxx20
-rw-r--r--sd/source/ui/inc/unoprnms.hxx124
-rwxr-xr-xsd/source/ui/inc/unosrch.hxx8
-rw-r--r--sd/source/ui/inc/unprlout.hxx2
-rw-r--r--sd/source/ui/inc/unslsel.hxx6
-rw-r--r--sd/source/ui/inc/vectdlg.hrc40
-rw-r--r--sd/source/ui/inc/vectdlg.hxx78
-rwxr-xr-xsd/source/ui/inc/view/viewoverlaymanager.hxx6
-rwxr-xr-xsd/source/ui/inc/zoomlist.hxx16
-rwxr-xr-xsd/source/ui/notes/EditWindow.cxx18
-rwxr-xr-xsd/source/ui/notes/EditWindow.hxx52
-rwxr-xr-xsd/source/ui/notes/NotesChildWindow.cxx10
-rwxr-xr-xsd/source/ui/notes/NotesChildWindow.src2
-rwxr-xr-xsd/source/ui/notes/NotesDockingWindow.cxx2
-rwxr-xr-xsd/source/ui/notes/NotesDockingWindow.hxx2
-rwxr-xr-xsd/source/ui/notes/TextLogger.cxx6
-rw-r--r--sd/source/ui/presenter/CanvasUpdateRequester.cxx2
-rw-r--r--sd/source/ui/presenter/CanvasUpdateRequester.hxx10
-rwxr-xr-xsd/source/ui/presenter/PresenterCanvas.cxx34
-rw-r--r--sd/source/ui/presenter/PresenterCanvas.hxx64
-rw-r--r--sd/source/ui/presenter/PresenterCanvasFactory.cxx8
-rw-r--r--sd/source/ui/presenter/PresenterHelper.cxx12
-rw-r--r--sd/source/ui/presenter/PresenterHelper.hxx8
-rw-r--r--sd/source/ui/presenter/PresenterPreviewCache.cxx12
-rw-r--r--sd/source/ui/presenter/PresenterPreviewCache.hxx8
-rwxr-xr-xsd/source/ui/presenter/PresenterTextView.cxx2
-rw-r--r--sd/source/ui/presenter/PresenterTextView.hxx4
-rw-r--r--sd/source/ui/presenter/SlideRenderer.cxx8
-rw-r--r--sd/source/ui/presenter/SlideRenderer.hxx10
-rwxr-xr-xsd/source/ui/slideshow/PaneHider.cxx2
-rw-r--r--sd/source/ui/slideshow/PaneHider.hxx2
-rw-r--r--sd/source/ui/slideshow/SlideShowRestarter.cxx6
-rw-r--r--sd/source/ui/slideshow/SlideShowRestarter.hxx2
-rw-r--r--sd/source/ui/slideshow/showwin.cxx68
-rw-r--r--sd/source/ui/slideshow/showwindow.hxx78
-rwxr-xr-xsd/source/ui/slideshow/slideshow.cxx54
-rw-r--r--sd/source/ui/slideshow/slideshow.hrc52
-rw-r--r--sd/source/ui/slideshow/slideshow.src12
-rwxr-xr-xsd/source/ui/slideshow/slideshowimpl.cxx218
-rwxr-xr-xsd/source/ui/slideshow/slideshowimpl.hxx72
-rw-r--r--sd/source/ui/slideshow/slideshowviewimpl.cxx42
-rw-r--r--sd/source/ui/slideshow/slideshowviewimpl.hxx60
-rwxr-xr-xsd/source/ui/slidesorter/cache/SlsBitmapCache.cxx22
-rwxr-xr-xsd/source/ui/slidesorter/cache/SlsBitmapCache.hxx8
-rw-r--r--sd/source/ui/slidesorter/cache/SlsBitmapCompressor.cxx8
-rw-r--r--sd/source/ui/slidesorter/cache/SlsBitmapCompressor.hxx2
-rw-r--r--sd/source/ui/slidesorter/cache/SlsBitmapFactory.cxx2
-rw-r--r--sd/source/ui/slidesorter/cache/SlsBitmapFactory.hxx2
-rw-r--r--sd/source/ui/slidesorter/cache/SlsCacheCompactor.cxx10
-rw-r--r--sd/source/ui/slidesorter/cache/SlsCacheCompactor.hxx8
-rw-r--r--sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx12
-rw-r--r--sd/source/ui/slidesorter/cache/SlsCacheConfiguration.hxx4
-rwxr-xr-xsd/source/ui/slidesorter/cache/SlsGenericPageCache.cxx4
-rwxr-xr-xsd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx8
-rwxr-xr-xsd/source/ui/slidesorter/cache/SlsPageCache.cxx2
-rw-r--r--sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx20
-rwxr-xr-xsd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx4
-rw-r--r--sd/source/ui/slidesorter/cache/SlsQueueProcessor.hxx8
-rw-r--r--sd/source/ui/slidesorter/cache/SlsQueueProcessorThread.hxx60
-rw-r--r--sd/source/ui/slidesorter/cache/SlsRequestFactory.cxx2
-rw-r--r--sd/source/ui/slidesorter/cache/SlsRequestFactory.hxx2
-rw-r--r--sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx6
-rw-r--r--sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx4
-rw-r--r--sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx4
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlideSorterController.cxx14
-rw-r--r--sd/source/ui/slidesorter/controller/SlsAnimator.cxx6
-rw-r--r--sd/source/ui/slidesorter/controller/SlsClipboard.cxx82
-rw-r--r--sd/source/ui/slidesorter/controller/SlsCommand.hxx2
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsCurrentSlideManager.cxx2
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsFocusManager.cxx10
-rw-r--r--sd/source/ui/slidesorter/controller/SlsHideSlideFunction.cxx8
-rw-r--r--sd/source/ui/slidesorter/controller/SlsHideSlideFunction.hxx8
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsListener.cxx20
-rw-r--r--sd/source/ui/slidesorter/controller/SlsListener.hxx12
-rw-r--r--sd/source/ui/slidesorter/controller/SlsPageObjectFactory.cxx10
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsPageSelector.cxx4
-rw-r--r--sd/source/ui/slidesorter/controller/SlsProperties.cxx2
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsScrollBarManager.cxx46
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsSelectionCommand.cxx6
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsSelectionCommand.hxx2
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx26
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsSelectionManager.cxx2
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsSlideFunction.cxx4
-rwxr-xr-xsd/source/ui/slidesorter/controller/SlsSlotManager.cxx14
-rw-r--r--sd/source/ui/slidesorter/controller/SlsTransferable.cxx6
-rw-r--r--sd/source/ui/slidesorter/controller/SlsTransferable.hxx12
-rw-r--r--sd/source/ui/slidesorter/inc/cache/SlsCacheContext.hxx2
-rwxr-xr-xsd/source/ui/slidesorter/inc/cache/SlsPageCache.hxx2
-rw-r--r--sd/source/ui/slidesorter/inc/cache/SlsPageCacheManager.hxx6
-rwxr-xr-xsd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx6
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx2
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsClipboard.hxx16
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsCurrentSlideManager.hxx4
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx8
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsPageObjectFactory.hxx4
-rwxr-xr-xsd/source/ui/slidesorter/inc/controller/SlsPageSelector.hxx8
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx2
-rwxr-xr-xsd/source/ui/slidesorter/inc/controller/SlsScrollBarManager.hxx8
-rwxr-xr-xsd/source/ui/slidesorter/inc/controller/SlsSelectionFunction.hxx18
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx6
-rwxr-xr-xsd/source/ui/slidesorter/inc/controller/SlsSlideFunction.hxx2
-rwxr-xr-xsd/source/ui/slidesorter/inc/controller/SlsSlotManager.hxx4
-rwxr-xr-xsd/source/ui/slidesorter/inc/model/SlideSorterModel.hxx4
-rw-r--r--sd/source/ui/slidesorter/inc/model/SlsEnumeration.hxx4
-rwxr-xr-xsd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx16
-rw-r--r--sd/source/ui/slidesorter/inc/model/SlsPageEnumeration.hxx4
-rw-r--r--sd/source/ui/slidesorter/inc/model/SlsPageEnumerationProvider.hxx6
-rw-r--r--sd/source/ui/slidesorter/inc/model/SlsSharedPageDescriptor.hxx2
-rwxr-xr-xsd/source/ui/slidesorter/inc/view/SlideSorterView.hxx8
-rw-r--r--sd/source/ui/slidesorter/inc/view/SlsFontProvider.hxx2
-rwxr-xr-xsd/source/ui/slidesorter/inc/view/SlsLayouter.hxx26
-rw-r--r--sd/source/ui/slidesorter/inc/view/SlsPageObject.hxx4
-rwxr-xr-xsd/source/ui/slidesorter/inc/view/SlsPageObjectViewContact.hxx8
-rw-r--r--sd/source/ui/slidesorter/inc/view/SlsPageObjectViewObjectContact.hxx6
-rw-r--r--sd/source/ui/slidesorter/inc/view/SlsViewOverlay.hxx6
-rwxr-xr-xsd/source/ui/slidesorter/model/SlideSorterModel.cxx10
-rwxr-xr-xsd/source/ui/slidesorter/model/SlsPageDescriptor.cxx4
-rw-r--r--sd/source/ui/slidesorter/model/SlsPageEnumeration.cxx14
-rw-r--r--sd/source/ui/slidesorter/model/SlsPageEnumerationProvider.cxx4
-rw-r--r--sd/source/ui/slidesorter/shell/SlideSorter.cxx18
-rw-r--r--sd/source/ui/slidesorter/shell/SlideSorterChildWindow.cxx14
-rw-r--r--sd/source/ui/slidesorter/shell/SlideSorterChildWindow.src2
-rwxr-xr-xsd/source/ui/slidesorter/shell/SlideSorterService.cxx16
-rwxr-xr-xsd/source/ui/slidesorter/shell/SlideSorterService.hxx34
-rwxr-xr-xsd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx44
-rwxr-xr-xsd/source/ui/slidesorter/view/SlideSorterView.cxx48
-rw-r--r--sd/source/ui/slidesorter/view/SlsFontProvider.cxx8
-rwxr-xr-xsd/source/ui/slidesorter/view/SlsLayouter.cxx100
-rw-r--r--sd/source/ui/slidesorter/view/SlsPageObject.cxx2
-rwxr-xr-xsd/source/ui/slidesorter/view/SlsPageObjectViewContact.cxx10
-rwxr-xr-xsd/source/ui/slidesorter/view/SlsPageObjectViewObjectContact.cxx114
-rw-r--r--sd/source/ui/slidesorter/view/SlsViewCacheContext.cxx2
-rw-r--r--sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx4
-rw-r--r--sd/source/ui/slidesorter/view/SlsViewOverlay.cxx20
-rwxr-xr-xsd/source/ui/table/TableDesignPane.cxx20
-rw-r--r--sd/source/ui/table/TableDesignPane.hrc20
-rw-r--r--sd/source/ui/table/TableDesignPane.hxx12
-rw-r--r--sd/source/ui/table/TableDesignPane.src30
-rwxr-xr-xsd/source/ui/table/tablefunction.cxx4
-rw-r--r--sd/source/ui/table/tableobjectbar.cxx10
-rw-r--r--sd/source/ui/table/tableobjectbar.hxx8
-rw-r--r--sd/source/ui/toolpanel/ConstrainedIterator.cxx10
-rw-r--r--sd/source/ui/toolpanel/ConstrainedIterator.hxx8
-rw-r--r--sd/source/ui/toolpanel/ControlContainer.cxx10
-rw-r--r--sd/source/ui/toolpanel/ControlContainerDescriptor.hxx6
-rw-r--r--sd/source/ui/toolpanel/ControlList.hxx2
-rwxr-xr-xsd/source/ui/toolpanel/LayoutMenu.cxx42
-rwxr-xr-xsd/source/ui/toolpanel/LayoutMenu.hxx4
-rw-r--r--sd/source/ui/toolpanel/MethodGuard.hxx2
-rwxr-xr-xsd/source/ui/toolpanel/ScrollPanel.cxx42
-rwxr-xr-xsd/source/ui/toolpanel/SlideSorterCacheDisplay.cxx10
-rwxr-xr-xsd/source/ui/toolpanel/SubToolPanel.cxx12
-rwxr-xr-xsd/source/ui/toolpanel/TaskPaneControlFactory.cxx2
-rw-r--r--sd/source/ui/toolpanel/TaskPaneFocusManager.cxx10
-rw-r--r--sd/source/ui/toolpanel/TaskPaneFocusManager.hxx6
-rwxr-xr-xsd/source/ui/toolpanel/TaskPaneShellManager.cxx2
-rwxr-xr-xsd/source/ui/toolpanel/TaskPaneShellManager.hxx6
-rwxr-xr-xsd/source/ui/toolpanel/TaskPaneTreeNode.cxx4
-rwxr-xr-xsd/source/ui/toolpanel/TestMenu.cxx18
-rwxr-xr-xsd/source/ui/toolpanel/TestMenu.hxx2
-rwxr-xr-xsd/source/ui/toolpanel/TestPanel.cxx8
-rwxr-xr-xsd/source/ui/toolpanel/TestPanel.hxx2
-rwxr-xr-xsd/source/ui/toolpanel/TitleBar.cxx18
-rwxr-xr-xsd/source/ui/toolpanel/TitledControl.cxx24
-rwxr-xr-xsd/source/ui/toolpanel/ToolPanel.cxx4
-rw-r--r--sd/source/ui/toolpanel/ToolPanel.hxx2
-rw-r--r--sd/source/ui/toolpanel/ToolPanelDescriptor.hxx6
-rw-r--r--sd/source/ui/toolpanel/ToolPanelFactory.cxx2
-rw-r--r--sd/source/ui/toolpanel/ToolPanelUIElement.cxx8
-rw-r--r--sd/source/ui/toolpanel/ToolPanelUIElement.hxx2
-rwxr-xr-xsd/source/ui/toolpanel/ToolPanelViewShell.cxx25
-rw-r--r--sd/source/ui/toolpanel/controls/AllMasterPagesSelector.cxx4
-rw-r--r--sd/source/ui/toolpanel/controls/AllMasterPagesSelector.hxx4
-rwxr-xr-xsd/source/ui/toolpanel/controls/AnimationSchemesPanel.cxx4
-rwxr-xr-xsd/source/ui/toolpanel/controls/AnimationSchemesPanel.hxx4
-rw-r--r--sd/source/ui/toolpanel/controls/CurrentMasterPagesSelector.cxx8
-rw-r--r--sd/source/ui/toolpanel/controls/CurrentMasterPagesSelector.hxx6
-rwxr-xr-xsd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx8
-rwxr-xr-xsd/source/ui/toolpanel/controls/CustomAnimationPanel.hxx4
-rwxr-xr-xsd/source/ui/toolpanel/controls/DocumentHelper.cxx30
-rw-r--r--sd/source/ui/toolpanel/controls/DocumentHelper.hxx4
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPageContainer.cxx24
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPageContainer.hxx16
-rw-r--r--sd/source/ui/toolpanel/controls/MasterPageContainerFiller.cxx8
-rw-r--r--sd/source/ui/toolpanel/controls/MasterPageContainerFiller.hxx8
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPageContainerProviders.cxx18
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPageContainerProviders.hxx2
-rw-r--r--sd/source/ui/toolpanel/controls/MasterPageContainerQueue.cxx10
-rw-r--r--sd/source/ui/toolpanel/controls/MasterPageContainerQueue.hxx12
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPageDescriptor.cxx26
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPageDescriptor.hxx30
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPageObserver.cxx26
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPagesPanel.cxx12
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPagesPanel.hxx4
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPagesSelector.cxx22
-rwxr-xr-xsd/source/ui/toolpanel/controls/MasterPagesSelector.hxx8
-rw-r--r--sd/source/ui/toolpanel/controls/PreviewValueSet.cxx12
-rw-r--r--sd/source/ui/toolpanel/controls/PreviewValueSet.hxx6
-rw-r--r--sd/source/ui/toolpanel/controls/RecentMasterPagesSelector.cxx6
-rw-r--r--sd/source/ui/toolpanel/controls/RecentMasterPagesSelector.hxx4
-rw-r--r--sd/source/ui/toolpanel/controls/RecentlyUsedMasterPages.cxx8
-rw-r--r--sd/source/ui/toolpanel/controls/RecentlyUsedMasterPages.hxx6
-rwxr-xr-xsd/source/ui/toolpanel/controls/SlideTransitionPanel.cxx2
-rwxr-xr-xsd/source/ui/toolpanel/controls/SlideTransitionPanel.hxx2
-rwxr-xr-xsd/source/ui/toolpanel/controls/TableDesignPanel.cxx8
-rwxr-xr-xsd/source/ui/toolpanel/controls/TableDesignPanel.hxx4
-rw-r--r--sd/source/ui/tools/AsynchronousCall.cxx2
-rwxr-xr-xsd/source/ui/tools/ConfigurationAccess.cxx14
-rw-r--r--sd/source/ui/tools/EventMultiplexer.cxx38
-rw-r--r--sd/source/ui/tools/IconCache.cxx6
-rw-r--r--sd/source/ui/tools/IdleDetection.cxx4
-rwxr-xr-xsd/source/ui/tools/PreviewRenderer.cxx42
-rwxr-xr-xsd/source/ui/tools/PropertySet.cxx4
-rwxr-xr-xsd/source/ui/tools/SdGlobalResourceContainer.cxx16
-rwxr-xr-xsd/source/ui/tools/SlotStateListener.cxx4
-rw-r--r--sd/source/ui/tools/TimerBasedTaskExecution.cxx4
-rwxr-xr-xsd/source/ui/unoidl/DrawController.cxx66
-rwxr-xr-xsd/source/ui/unoidl/SdUnoDrawView.cxx26
-rwxr-xr-xsd/source/ui/unoidl/SdUnoOutlineView.cxx18
-rwxr-xr-xsd/source/ui/unoidl/SdUnoSlideView.cxx10
-rwxr-xr-xsd/source/ui/unoidl/UnoDocumentSettings.cxx94
-rw-r--r--sd/source/ui/unoidl/UnoDocumentSettings.hxx2
-rw-r--r--sd/source/ui/unoidl/detreg.cxx12
-rwxr-xr-xsd/source/ui/unoidl/facreg.cxx8
-rw-r--r--sd/source/ui/unoidl/randomnode.cxx16
-rwxr-xr-xsd/source/ui/unoidl/sddetect.cxx2
-rw-r--r--sd/source/ui/unoidl/sddetect.hxx2
-rwxr-xr-xsd/source/ui/unoidl/unocpres.cxx14
-rwxr-xr-xsd/source/ui/unoidl/unocpres.hxx10
-rw-r--r--sd/source/ui/unoidl/unodoc.cxx4
-rw-r--r--sd/source/ui/unoidl/unohelp.hxx2
-rw-r--r--sd/source/ui/unoidl/unokywds.cxx2
-rw-r--r--sd/source/ui/unoidl/unolayer.cxx84
-rw-r--r--sd/source/ui/unoidl/unolayer.hxx20
-rwxr-xr-xsd/source/ui/unoidl/unomodel.cxx104
-rw-r--r--sd/source/ui/unoidl/unomodule.cxx2
-rw-r--r--sd/source/ui/unoidl/unomodule.hxx24
-rwxr-xr-xsd/source/ui/unoidl/unoobj.cxx206
-rwxr-xr-xsd/source/ui/unoidl/unoobj.hxx6
-rwxr-xr-xsd/source/ui/unoidl/unopage.cxx302
-rwxr-xr-xsd/source/ui/unoidl/unopage.hxx8
-rw-r--r--sd/source/ui/unoidl/unopback.cxx30
-rw-r--r--sd/source/ui/unoidl/unopback.hxx8
-rw-r--r--sd/source/ui/unoidl/unopool.cxx10
-rwxr-xr-xsd/source/ui/unoidl/unosrch.cxx22
-rwxr-xr-xsd/source/ui/unoidl/unowcntr.cxx4
-rwxr-xr-xsd/source/ui/unoidl/unowcntr.hxx10
-rwxr-xr-xsd/source/ui/view/DocumentRenderer.cxx162
-rw-r--r--sd/source/ui/view/DocumentRenderer.hrc2
-rwxr-xr-xsd/source/ui/view/DocumentRenderer.src24
-rw-r--r--sd/source/ui/view/FormShellManager.cxx8
-rw-r--r--sd/source/ui/view/GraphicObjectBar.cxx14
-rwxr-xr-xsd/source/ui/view/GraphicViewShellBase.cxx4
-rw-r--r--sd/source/ui/view/ImpressViewShellBase.cxx4
-rw-r--r--sd/source/ui/view/MediaObjectBar.cxx26
-rw-r--r--sd/source/ui/view/OutlineViewShellBase.cxx6
-rwxr-xr-xsd/source/ui/view/Outliner.cxx4
-rwxr-xr-xsd/source/ui/view/OutlinerIterator.cxx68
-rw-r--r--sd/source/ui/view/PresentationViewShellBase.cxx8
-rw-r--r--sd/source/ui/view/SlideSorterViewShellBase.cxx6
-rwxr-xr-xsd/source/ui/view/ToolBarManager.cxx4
-rw-r--r--sd/source/ui/view/UpdateLockManager.cxx12
-rwxr-xr-xsd/source/ui/view/ViewClipboard.cxx26
-rw-r--r--sd/source/ui/view/ViewShellBase.cxx32
-rw-r--r--sd/source/ui/view/ViewShellHint.cxx2
-rwxr-xr-xsd/source/ui/view/ViewShellImplementation.cxx16
-rwxr-xr-xsd/source/ui/view/ViewShellManager.cxx56
-rwxr-xr-xsd/source/ui/view/ViewTabBar.cxx26
-rw-r--r--sd/source/ui/view/WindowUpdater.cxx4
-rwxr-xr-xsd/source/ui/view/bmcache.cxx6
-rw-r--r--sd/source/ui/view/clview.cxx2
-rwxr-xr-xsd/source/ui/view/drawview.cxx10
-rw-r--r--sd/source/ui/view/drbezob.cxx12
-rwxr-xr-xsd/source/ui/view/drtxtob.cxx16
-rwxr-xr-xsd/source/ui/view/drtxtob1.cxx8
-rwxr-xr-xsd/source/ui/view/drviews1.cxx16
-rwxr-xr-xsd/source/ui/view/drviews2.cxx14
-rwxr-xr-xsd/source/ui/view/drviews3.cxx18
-rw-r--r--sd/source/ui/view/drviews4.cxx46
-rw-r--r--sd/source/ui/view/drviews5.cxx18
-rwxr-xr-xsd/source/ui/view/drviews6.cxx34
-rwxr-xr-xsd/source/ui/view/drviews7.cxx26
-rwxr-xr-xsd/source/ui/view/drviews8.cxx10
-rw-r--r--sd/source/ui/view/drviews9.cxx50
-rwxr-xr-xsd/source/ui/view/drviewsa.cxx24
-rw-r--r--sd/source/ui/view/drviewsb.cxx28
-rw-r--r--sd/source/ui/view/drviewsc.cxx32
-rw-r--r--sd/source/ui/view/drviewsd.cxx2
-rwxr-xr-xsd/source/ui/view/drviewse.cxx14
-rwxr-xr-xsd/source/ui/view/drviewsf.cxx16
-rw-r--r--sd/source/ui/view/drviewsg.cxx16
-rw-r--r--sd/source/ui/view/drviewsh.cxx8
-rw-r--r--sd/source/ui/view/drviewsi.cxx8
-rw-r--r--sd/source/ui/view/drviewsj.cxx36
-rwxr-xr-xsd/source/ui/view/drvwshrg.cxx4
-rw-r--r--sd/source/ui/view/frmview.cxx76
-rwxr-xr-xsd/source/ui/view/grviewsh.cxx4
-rwxr-xr-xsd/source/ui/view/outlnvs2.cxx12
-rwxr-xr-xsd/source/ui/view/outlnvsh.cxx96
-rwxr-xr-xsd/source/ui/view/outlview.cxx70
-rw-r--r--sd/source/ui/view/presvish.cxx2
-rw-r--r--sd/source/ui/view/sdruler.cxx8
-rwxr-xr-xsd/source/ui/view/sdview.cxx80
-rw-r--r--sd/source/ui/view/sdview2.cxx126
-rw-r--r--sd/source/ui/view/sdview3.cxx124
-rwxr-xr-xsd/source/ui/view/sdview4.cxx38
-rwxr-xr-xsd/source/ui/view/sdview5.cxx8
-rwxr-xr-xsd/source/ui/view/sdwindow.cxx44
-rw-r--r--sd/source/ui/view/tabcontr.cxx16
-rw-r--r--sd/source/ui/view/unmodpg.cxx24
-rwxr-xr-xsd/source/ui/view/viewoverlaymanager.cxx30
-rwxr-xr-xsd/source/ui/view/viewshe2.cxx8
-rwxr-xr-xsd/source/ui/view/viewshe3.cxx14
-rwxr-xr-xsd/source/ui/view/viewshel.cxx18
-rwxr-xr-xsd/source/ui/view/zoomlist.cxx4
-rw-r--r--sd/uiconfig/sdraw/toolbar/arrowshapes.xml22
-rw-r--r--sd/uiconfig/sdraw/toolbar/basicshapes.xml14
-rw-r--r--sd/uiconfig/sdraw/toolbar/flowchartshapes.xml24
-rw-r--r--sd/uiconfig/sdraw/toolbar/symbolshapes.xml6
-rw-r--r--sd/uiconfig/sdraw/toolbar/toolbar.xml2
-rw-r--r--sd/uiconfig/simpress/toolbar/arrowshapes.xml22
-rw-r--r--sd/uiconfig/simpress/toolbar/basicshapes.xml14
-rw-r--r--sd/uiconfig/simpress/toolbar/flowchartshapes.xml26
-rw-r--r--sd/uiconfig/simpress/toolbar/symbolshapes.xml6
-rw-r--r--sd/util/hidother.hrc8
-rw-r--r--sd/util/hidother.src114
-rw-r--r--sd/workben/custompanel/ctp_panel.cxx4
-rw-r--r--sd/workben/custompanel/ctp_panel.hxx2
-rw-r--r--sd/xml/AccessibleDrawDocumentView.xml2
-rw-r--r--sd/xml/DrawingView.xml2
-rw-r--r--sd/xml/effects.xml4
-rw-r--r--sd/xml/transitions.xml12
-rw-r--r--sdext/inc/pch/precompiled_sdext.cxx2
-rw-r--r--sdext/inc/pch/precompiled_sdext.hxx2
-rw-r--r--sdext/prj/d.lst3
-rw-r--r--sdext/source/minimizer/aboutdialog.cxx40
-rw-r--r--sdext/source/minimizer/aboutdialog.hxx18
-rw-r--r--sdext/source/minimizer/configurationaccess.cxx120
-rw-r--r--sdext/source/minimizer/configurationaccess.hxx46
-rw-r--r--sdext/source/minimizer/fileopendialog.cxx18
-rw-r--r--sdext/source/minimizer/fileopendialog.hxx8
-rw-r--r--sdext/source/minimizer/graphiccollector.cxx8
-rw-r--r--sdext/source/minimizer/graphiccollector.hxx38
-rw-r--r--sdext/source/minimizer/impoptimizer.cxx84
-rw-r--r--sdext/source/minimizer/impoptimizer.hxx40
-rw-r--r--sdext/source/minimizer/informationdialog.cxx50
-rw-r--r--sdext/source/minimizer/informationdialog.hxx14
-rw-r--r--sdext/source/minimizer/optimizationstats.cxx2
-rw-r--r--sdext/source/minimizer/optimizationstats.hxx2
-rw-r--r--sdext/source/minimizer/optimizerdialog.cxx60
-rw-r--r--sdext/source/minimizer/optimizerdialog.hrc12
-rw-r--r--sdext/source/minimizer/optimizerdialog.hxx60
-rw-r--r--sdext/source/minimizer/optimizerdialogcontrols.cxx78
-rw-r--r--sdext/source/minimizer/pagecollector.cxx2
-rw-r--r--sdext/source/minimizer/pagecollector.hxx2
-rw-r--r--sdext/source/minimizer/pppoptimizer.cxx4
-rw-r--r--sdext/source/minimizer/pppoptimizer.hxx4
-rw-r--r--sdext/source/minimizer/pppoptimizerdialog.cxx20
-rw-r--r--sdext/source/minimizer/pppoptimizerdialog.hxx8
-rw-r--r--sdext/source/minimizer/pppoptimizertoken.cxx472
-rw-r--r--sdext/source/minimizer/pppoptimizertoken.hxx4
-rw-r--r--sdext/source/minimizer/pppoptimizeruno.cxx8
-rw-r--r--sdext/source/minimizer/registry/data/org/openoffice/Office/extension/SunPresentationMinimizer.xcu32
-rw-r--r--sdext/source/minimizer/unodialog.cxx8
-rw-r--r--sdext/source/minimizer/unodialog.hxx36
-rwxr-xr-xsdext/source/pdfimport/config/description.xml2
-rw-r--r--sdext/source/pdfimport/config/pdf_import_filter.xcu6
-rw-r--r--sdext/source/pdfimport/filterdet.cxx8
-rw-r--r--sdext/source/pdfimport/filterdet.hxx12
-rwxr-xr-xsdext/source/pdfimport/inc/contentsink.hxx38
-rw-r--r--sdext/source/pdfimport/inc/odfemitter.hxx6
-rwxr-xr-xsdext/source/pdfimport/inc/pdfihelper.hxx16
-rw-r--r--sdext/source/pdfimport/inc/pdfparse.hxx46
-rw-r--r--sdext/source/pdfimport/inc/saxemitter.hxx4
-rw-r--r--sdext/source/pdfimport/inc/treevisitorfactory.hxx2
-rwxr-xr-xsdext/source/pdfimport/inc/wrapper.hxx10
-rw-r--r--sdext/source/pdfimport/inc/xmlemitter.hxx4
-rw-r--r--sdext/source/pdfimport/misc/pdfihelper.cxx6
-rw-r--r--sdext/source/pdfimport/misc/pwdinteract.cxx2
-rw-r--r--sdext/source/pdfimport/odf/odfemitter.cxx2
-rw-r--r--sdext/source/pdfimport/pdfiadaptor.cxx20
-rw-r--r--sdext/source/pdfimport/pdfiadaptor.hxx26
-rw-r--r--sdext/source/pdfimport/pdfparse/pdfentries.cxx70
-rw-r--r--sdext/source/pdfimport/pdfparse/pdfparse.cxx82
-rw-r--r--sdext/source/pdfimport/sax/emitcontext.cxx2
-rw-r--r--sdext/source/pdfimport/sax/emitcontext.hxx12
-rw-r--r--sdext/source/pdfimport/sax/saxattrlist.cxx6
-rw-r--r--sdext/source/pdfimport/sax/saxattrlist.hxx10
-rw-r--r--sdext/source/pdfimport/services.cxx4
-rwxr-xr-xsdext/source/pdfimport/test/export.map2
-rw-r--r--sdext/source/pdfimport/test/outputwrap.hxx8
-rw-r--r--sdext/source/pdfimport/test/pdf2xml.cxx2
-rw-r--r--sdext/source/pdfimport/test/pdfunzip.cxx50
-rw-r--r--sdext/source/pdfimport/test/testdocs/pictxt_pdfi_unittest_draw.xml1160
-rw-r--r--sdext/source/pdfimport/test/testdocs/pictxt_pdfi_unittest_impress.xml1160
-rw-r--r--sdext/source/pdfimport/test/testdocs/pictxt_pdfi_unittest_writer.xml60
-rw-r--r--sdext/source/pdfimport/test/testdocs/txtpic_pdfi_unittest_draw.xml1160
-rw-r--r--sdext/source/pdfimport/test/testdocs/txtpic_pdfi_unittest_impress.xml1160
-rw-r--r--sdext/source/pdfimport/test/testdocs/txtpic_pdfi_unittest_writer.xml60
-rw-r--r--sdext/source/pdfimport/test/testdocs/txtpictxt_pdfi_unittest_draw.xml1160
-rw-r--r--sdext/source/pdfimport/test/testdocs/txtpictxt_pdfi_unittest_impress.xml1160
-rw-r--r--sdext/source/pdfimport/test/testdocs/txtpictxt_pdfi_unittest_writer.xml60
-rwxr-xr-xsdext/source/pdfimport/test/tests.cxx2
-rw-r--r--sdext/source/pdfimport/tree/drawtreevisiting.cxx236
-rw-r--r--sdext/source/pdfimport/tree/drawtreevisiting.hxx12
-rw-r--r--sdext/source/pdfimport/tree/genericelements.cxx26
-rw-r--r--sdext/source/pdfimport/tree/genericelements.hxx64
-rw-r--r--sdext/source/pdfimport/tree/imagecontainer.cxx2
-rw-r--r--sdext/source/pdfimport/tree/imagecontainer.hxx8
-rw-r--r--sdext/source/pdfimport/tree/pdfiprocessor.cxx58
-rw-r--r--sdext/source/pdfimport/tree/pdfiprocessor.hxx66
-rw-r--r--sdext/source/pdfimport/tree/style.cxx24
-rw-r--r--sdext/source/pdfimport/tree/style.hxx30
-rw-r--r--sdext/source/pdfimport/tree/treevisiting.hxx4
-rw-r--r--sdext/source/pdfimport/tree/treevisitorfactory.cxx16
-rw-r--r--sdext/source/pdfimport/tree/writertreevisiting.cxx200
-rw-r--r--sdext/source/pdfimport/tree/writertreevisiting.hxx20
-rwxr-xr-xsdext/source/pdfimport/wrapper/hash.cxx2
-rwxr-xr-xsdext/source/pdfimport/wrapper/wrapper.cxx86
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx154
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx56
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/pnghelper.cxx80
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/pnghelper.hxx16
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx34
-rwxr-xr-xsdext/source/presenter/PresenterAccessibility.cxx156
-rwxr-xr-xsdext/source/presenter/PresenterAccessibility.hxx10
-rw-r--r--sdext/source/presenter/PresenterAnimation.cxx2
-rw-r--r--sdext/source/presenter/PresenterAnimation.hxx2
-rw-r--r--sdext/source/presenter/PresenterAnimator.cxx12
-rw-r--r--sdext/source/presenter/PresenterAnimator.hxx2
-rw-r--r--sdext/source/presenter/PresenterBitmapContainer.cxx14
-rw-r--r--sdext/source/presenter/PresenterBitmapContainer.hxx4
-rw-r--r--sdext/source/presenter/PresenterButton.cxx16
-rw-r--r--sdext/source/presenter/PresenterButton.hxx14
-rw-r--r--sdext/source/presenter/PresenterCanvasHelper.cxx12
-rw-r--r--sdext/source/presenter/PresenterCanvasHelper.hxx4
-rw-r--r--sdext/source/presenter/PresenterClock.cxx40
-rw-r--r--sdext/source/presenter/PresenterClock.hxx14
-rw-r--r--sdext/source/presenter/PresenterComponent.cxx8
-rw-r--r--sdext/source/presenter/PresenterComponent.hxx2
-rw-r--r--sdext/source/presenter/PresenterConfigurationAccess.cxx18
-rw-r--r--sdext/source/presenter/PresenterConfigurationAccess.hxx6
-rw-r--r--sdext/source/presenter/PresenterController.cxx26
-rw-r--r--sdext/source/presenter/PresenterController.hxx14
-rw-r--r--sdext/source/presenter/PresenterCurrentSlideObserver.cxx2
-rw-r--r--sdext/source/presenter/PresenterCurrentSlideObserver.hxx4
-rw-r--r--sdext/source/presenter/PresenterFrameworkObserver.cxx8
-rw-r--r--sdext/source/presenter/PresenterFrameworkObserver.hxx6
-rw-r--r--sdext/source/presenter/PresenterGeometryHelper.cxx10
-rw-r--r--sdext/source/presenter/PresenterGeometryHelper.hxx6
-rw-r--r--sdext/source/presenter/PresenterHelpView.cxx20
-rw-r--r--sdext/source/presenter/PresenterHelpView.hxx10
-rw-r--r--sdext/source/presenter/PresenterHelper.cxx4
-rw-r--r--sdext/source/presenter/PresenterHelper.hxx2
-rw-r--r--sdext/source/presenter/PresenterNotesView.cxx26
-rw-r--r--sdext/source/presenter/PresenterNotesView.hxx18
-rw-r--r--sdext/source/presenter/PresenterPaintManager.cxx6
-rw-r--r--sdext/source/presenter/PresenterPaintManager.hxx2
-rw-r--r--sdext/source/presenter/PresenterPane.cxx6
-rw-r--r--sdext/source/presenter/PresenterPane.hxx10
-rw-r--r--sdext/source/presenter/PresenterPaneAnimator.cxx64
-rw-r--r--sdext/source/presenter/PresenterPaneAnimator.hxx2
-rw-r--r--sdext/source/presenter/PresenterPaneBase.cxx16
-rw-r--r--sdext/source/presenter/PresenterPaneBase.hxx10
-rw-r--r--sdext/source/presenter/PresenterPaneBorderManager.cxx26
-rw-r--r--sdext/source/presenter/PresenterPaneBorderManager.hxx20
-rw-r--r--sdext/source/presenter/PresenterPaneBorderPainter.cxx46
-rw-r--r--sdext/source/presenter/PresenterPaneBorderPainter.hxx6
-rw-r--r--sdext/source/presenter/PresenterPaneContainer.cxx14
-rw-r--r--sdext/source/presenter/PresenterPaneContainer.hxx10
-rw-r--r--sdext/source/presenter/PresenterPaneFactory.cxx12
-rw-r--r--sdext/source/presenter/PresenterPaneFactory.hxx8
-rw-r--r--sdext/source/presenter/PresenterProtocolHandler.cxx26
-rw-r--r--sdext/source/presenter/PresenterProtocolHandler.hxx8
-rw-r--r--sdext/source/presenter/PresenterScreen.cxx32
-rw-r--r--sdext/source/presenter/PresenterScreen.hxx12
-rw-r--r--sdext/source/presenter/PresenterScrollBar.cxx44
-rw-r--r--sdext/source/presenter/PresenterScrollBar.hxx20
-rw-r--r--sdext/source/presenter/PresenterSlidePreview.cxx8
-rw-r--r--sdext/source/presenter/PresenterSlidePreview.hxx6
-rw-r--r--sdext/source/presenter/PresenterSlideShowView.cxx18
-rw-r--r--sdext/source/presenter/PresenterSlideShowView.hxx60
-rw-r--r--sdext/source/presenter/PresenterSlideSorter.cxx60
-rw-r--r--sdext/source/presenter/PresenterSlideSorter.hxx16
-rw-r--r--sdext/source/presenter/PresenterSprite.cxx2
-rw-r--r--sdext/source/presenter/PresenterSprite.hxx12
-rw-r--r--sdext/source/presenter/PresenterSpritePane.cxx4
-rw-r--r--sdext/source/presenter/PresenterSpritePane.hxx12
-rwxr-xr-xsdext/source/presenter/PresenterTextView.cxx20
-rwxr-xr-xsdext/source/presenter/PresenterTextView.hxx16
-rw-r--r--sdext/source/presenter/PresenterTheme.cxx24
-rw-r--r--sdext/source/presenter/PresenterTheme.hxx8
-rw-r--r--sdext/source/presenter/PresenterTimer.cxx24
-rw-r--r--sdext/source/presenter/PresenterTimer.hxx12
-rw-r--r--sdext/source/presenter/PresenterToolBar.cxx72
-rw-r--r--sdext/source/presenter/PresenterToolBar.hxx28
-rw-r--r--sdext/source/presenter/PresenterUIPainter.cxx6
-rw-r--r--sdext/source/presenter/PresenterUIPainter.hxx4
-rw-r--r--sdext/source/presenter/PresenterViewFactory.cxx30
-rw-r--r--sdext/source/presenter/PresenterViewFactory.hxx8
-rw-r--r--sdext/source/presenter/PresenterWindowManager.cxx58
-rw-r--r--sdext/source/presenter/PresenterWindowManager.hxx14
-rw-r--r--sdext/source/presenter/registry/data/org/openoffice/Office/extension/PresenterScreen.xcu8
-rw-r--r--set_soenv.in7
-rw-r--r--setup_native/inc/setup_native/qswin32.h26
-rw-r--r--setup_native/prj/build.lst1
-rw-r--r--setup_native/scripts/admin.pl412
-rw-r--r--setup_native/scripts/downloadscript.sh2
-rwxr-xr-xsetup_native/scripts/install_create.pl6
-rw-r--r--setup_native/scripts/install_linux.sh38
-rw-r--r--setup_native/scripts/install_solaris.sh44
-rw-r--r--setup_native/scripts/javaloader.sh66
-rw-r--r--setup_native/scripts/langpackscript.sh20
-rw-r--r--setup_native/scripts/linuxpatchscript.sh4
-rw-r--r--setup_native/scripts/source/getuid.c4
-rw-r--r--setup_native/scripts/stclient_wrapper.sh6
-rw-r--r--setup_native/scripts/uninstall_linux.sh2
-rw-r--r--setup_native/scripts/update.sh20
-rw-r--r--setup_native/source/opensolaris/bundledextensions/ooo_bundled_extensions.xml14
-rw-r--r--setup_native/source/packinfo/package.txt1
-rw-r--r--setup_native/source/packinfo/packinfo_extensions.txt258
-rwxr-xr-xsetup_native/source/packinfo/packinfo_office.txt33
-rwxr-xr-xsetup_native/source/packinfo/packinfo_office_lang.txt104
-rwxr-xr-xsetup_native/source/packinfo/shellscripts_extensions.txt138
-rw-r--r--setup_native/source/packinfo/spellchecker_selection.txt1
-rw-r--r--setup_native/source/ulfconv/ulfconv.cxx60
-rw-r--r--setup_native/source/win32/customactions/indexingfilter/restartindexingservice.cxx154
-rw-r--r--setup_native/source/win32/customactions/javafilter/jfregca.cxx116
-rwxr-xr-xsetup_native/source/win32/customactions/languagepacks/checkrunningofficelanguagepack.cxx64
-rw-r--r--setup_native/source/win32/customactions/languagepacks/exports.dxp2
-rw-r--r--setup_native/source/win32/customactions/languagepacks/lngpckinsthelper.cxx122
-rw-r--r--setup_native/source/win32/customactions/languagepacks/makefile.mk1
-rw-r--r--setup_native/source/win32/customactions/languagepacks/respintest.cxx40
-rwxr-xr-xsetup_native/source/win32/customactions/patch/exports.dxp2
-rwxr-xr-xsetup_native/source/win32/customactions/patch/makefile.mk1
-rwxr-xr-xsetup_native/source/win32/customactions/patch/swappatchfiles.cxx308
-rw-r--r--setup_native/source/win32/customactions/quickstarter/quickstarter.cxx52
-rw-r--r--setup_native/source/win32/customactions/quickstarter/remove_quickstart_link.cxx4
-rw-r--r--setup_native/source/win32/customactions/quickstarter/shutdown_quickstart.cxx22
-rw-r--r--setup_native/source/win32/customactions/rebase/rebase.cxx34
-rw-r--r--setup_native/source/win32/customactions/reg4allmsdoc/reg4allmsi.cxx14
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/constants.hxx14
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/msihelper.cxx10
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/msihelper.hxx78
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/reg4msdocmsi.cxx78
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/register.cxx116
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/register.hxx6
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registrar.cxx234
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registrar.hxx44
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registrationcontextinformation.cxx22
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registrationcontextinformation.hxx68
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registry.cxx34
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registry.hxx64
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryexception.cxx12
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryexception.hxx20
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx16
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.hxx24
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryw9x.cxx6
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryw9x.hxx32
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registrywnt.cxx78
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registrywnt.hxx36
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/stringconverter.cxx8
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/stringconverter.hxx4
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/userregistrar.cxx30
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/userregistrar.hxx24
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/windowsregistry.cxx8
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/windowsregistry.hxx10
-rwxr-xr-xsetup_native/source/win32/customactions/reg64/reg64.cxx80
-rw-r--r--setup_native/source/win32/customactions/regactivex/regactivex.cxx6
-rw-r--r--setup_native/source/win32/customactions/regpatchactivex/regpatchactivex.cxx4
-rw-r--r--setup_native/source/win32/customactions/relnotes/relnotes.cxx8
-rw-r--r--setup_native/source/win32/customactions/sellang/exports.dxp1
-rw-r--r--setup_native/source/win32/customactions/sellang/makefile.mk79
-rw-r--r--setup_native/source/win32/customactions/sellang/sellang.cxx347
-rwxr-xr-xsetup_native/source/win32/customactions/shellextensions/checkdirectory.cxx10
-rw-r--r--setup_native/source/win32/customactions/shellextensions/checkpatches.cxx6
-rwxr-xr-xsetup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx80
-rw-r--r--setup_native/source/win32/customactions/shellextensions/completeinstallpath.cxx72
-rw-r--r--setup_native/source/win32/customactions/shellextensions/copyeditiondata.cxx2
-rw-r--r--setup_native/source/win32/customactions/shellextensions/copyextensiondata.cxx6
-rw-r--r--setup_native/source/win32/customactions/shellextensions/dotnetcheck.cxx26
-rw-r--r--setup_native/source/win32/customactions/shellextensions/exports.dxp2
-rwxr-xr-xsetup_native/source/win32/customactions/shellextensions/iconcache.cxx26
-rw-r--r--setup_native/source/win32/customactions/shellextensions/layerlinks.cxx18
-rw-r--r--setup_native/source/win32/customactions/shellextensions/makefile.mk1
-rwxr-xr-xsetup_native/source/win32/customactions/shellextensions/migrateinstallpath.cxx42
-rwxr-xr-xsetup_native/source/win32/customactions/shellextensions/postuninstall.cxx42
-rw-r--r--setup_native/source/win32/customactions/shellextensions/registerextensions.cxx282
-rwxr-xr-xsetup_native/source/win32/customactions/shellextensions/setadmininstall.cxx6
-rw-r--r--setup_native/source/win32/customactions/shellextensions/shellextensions.cxx104
-rw-r--r--setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx54
-rw-r--r--setup_native/source/win32/customactions/shellextensions/upgrade.cxx92
-rw-r--r--setup_native/source/win32/customactions/shellextensions/vistaspecial.cxx12
-rw-r--r--setup_native/source/win32/customactions/tools/checkversion.cxx2
-rw-r--r--setup_native/source/win32/customactions/tools/seterror.cxx2
-rw-r--r--setup_native/source/win32/customactions/tools/seterror.hxx2
-rw-r--r--setup_native/source/win32/stwrapper/stwrapper.cxx66
-rw-r--r--sfx2/inc/QuerySaveDocument.hxx4
-rw-r--r--sfx2/inc/about.hxx30
-rw-r--r--sfx2/inc/arrdecl.hxx2
-rw-r--r--sfx2/inc/basmgr.hxx4
-rw-r--r--sfx2/inc/bitset.hxx2
-rwxr-xr-xsfx2/inc/brokenpackageint.hxx62
-rw-r--r--sfx2/inc/configmgr.hxx4
-rw-r--r--sfx2/inc/dinfedt.hxx36
-rw-r--r--sfx2/inc/docinsert.hxx2
-rw-r--r--sfx2/inc/docvor.hxx54
-rw-r--r--sfx2/inc/filedlghelper.hrc2
-rw-r--r--sfx2/inc/frmload.hxx2
-rw-r--r--sfx2/inc/fwkhelper.hxx2
-rw-r--r--sfx2/inc/guisaveas.hxx2
-rw-r--r--sfx2/inc/idpool.hxx4
-rw-r--r--sfx2/inc/imagemgr.hxx2
-rw-r--r--sfx2/inc/imgmgr.hxx8
-rw-r--r--sfx2/inc/inettbc.hxx12
-rw-r--r--sfx2/inc/macro.hxx42
-rw-r--r--sfx2/inc/mailmodelapi.hxx64
-rw-r--r--sfx2/inc/mieclip.hxx10
-rw-r--r--sfx2/inc/minfitem.hxx36
-rw-r--r--sfx2/inc/msgnodei.hxx82
-rw-r--r--sfx2/inc/orgmgr.hxx60
-rw-r--r--sfx2/inc/pch/precompiled_sfx2.cxx2
-rw-r--r--sfx2/inc/pch/precompiled_sfx2.hxx2
-rw-r--r--sfx2/inc/progind.hxx26
-rw-r--r--sfx2/inc/resmgr.hxx32
-rw-r--r--sfx2/inc/sfx2/DocumentMetadataAccess.hxx2
-rw-r--r--sfx2/inc/sfx2/Metadatable.hxx2
-rw-r--r--sfx2/inc/sfx2/XmlIdRegistry.hxx2
-rw-r--r--sfx2/inc/sfx2/app.hxx32
-rw-r--r--sfx2/inc/sfx2/appuno.hxx18
-rw-r--r--sfx2/inc/sfx2/basedlgs.hxx80
-rw-r--r--sfx2/inc/sfx2/bindings.hxx72
-rw-r--r--sfx2/inc/sfx2/chalign.hxx16
-rw-r--r--sfx2/inc/sfx2/childwin.hxx210
-rw-r--r--sfx2/inc/sfx2/cntids.hrc714
-rw-r--r--sfx2/inc/sfx2/controlwrapper.hxx2
-rw-r--r--sfx2/inc/sfx2/ctrlitem.hxx44
-rw-r--r--sfx2/inc/sfx2/dialogs.hrc6
-rw-r--r--sfx2/inc/sfx2/dinfdlg.hxx108
-rw-r--r--sfx2/inc/sfx2/dispatch.hxx102
-rw-r--r--sfx2/inc/sfx2/dllapi.h2
-rw-r--r--sfx2/inc/sfx2/docfac.hxx36
-rw-r--r--sfx2/inc/sfx2/docfile.hxx73
-rw-r--r--sfx2/inc/sfx2/docfilt.hxx42
-rw-r--r--sfx2/inc/sfx2/docinf.hxx2
-rw-r--r--sfx2/inc/sfx2/dockwin.hxx24
-rw-r--r--sfx2/inc/sfx2/docmacromode.hxx6
-rw-r--r--sfx2/inc/sfx2/docstoragemodifylistener.hxx2
-rw-r--r--sfx2/inc/sfx2/doctdlg.hxx26
-rw-r--r--sfx2/inc/sfx2/doctempl.hxx62
-rw-r--r--sfx2/inc/sfx2/event.hxx34
-rw-r--r--sfx2/inc/sfx2/evntconf.hxx24
-rw-r--r--sfx2/inc/sfx2/fcontnr.hxx42
-rw-r--r--sfx2/inc/sfx2/filedlghelper.hxx72
-rw-r--r--sfx2/inc/sfx2/frame.hxx52
-rw-r--r--sfx2/inc/sfx2/frmdescr.hxx178
-rw-r--r--sfx2/inc/sfx2/frmhtml.hxx2
-rw-r--r--sfx2/inc/sfx2/frmhtmlw.hxx2
-rw-r--r--sfx2/inc/sfx2/genlink.hxx2
-rw-r--r--sfx2/inc/sfx2/hintpost.hxx16
-rw-r--r--sfx2/inc/sfx2/htmlmode.hxx14
-rw-r--r--sfx2/inc/sfx2/imgdef.hxx2
-rw-r--r--sfx2/inc/sfx2/ipclient.hxx12
-rw-r--r--sfx2/inc/sfx2/itemconnect.hxx2
-rw-r--r--sfx2/inc/sfx2/itemwrapper.hxx2
-rw-r--r--sfx2/inc/sfx2/layout-post.hxx2
-rw-r--r--sfx2/inc/sfx2/layout-pre.hxx2
-rw-r--r--sfx2/inc/sfx2/layout-tabdlg.hxx2
-rw-r--r--sfx2/inc/sfx2/layout.hxx2
-rw-r--r--sfx2/inc/sfx2/linkmgr.hxx32
-rw-r--r--sfx2/inc/sfx2/linksrc.hxx34
-rw-r--r--sfx2/inc/sfx2/lnkbase.hxx80
-rw-r--r--sfx2/inc/sfx2/macrconf.hxx78
-rw-r--r--sfx2/inc/sfx2/macropg.hxx46
-rw-r--r--sfx2/inc/sfx2/mgetempl.hxx22
-rw-r--r--sfx2/inc/sfx2/minarray.hxx10
-rw-r--r--sfx2/inc/sfx2/minstack.hxx32
-rw-r--r--sfx2/inc/sfx2/mnuitem.hxx58
-rw-r--r--sfx2/inc/sfx2/mnumgr.hxx48
-rw-r--r--sfx2/inc/sfx2/module.hxx20
-rw-r--r--sfx2/inc/sfx2/msg.hxx170
-rw-r--r--sfx2/inc/sfx2/msgpool.hxx40
-rw-r--r--sfx2/inc/sfx2/navigat.hxx6
-rw-r--r--sfx2/inc/sfx2/new.hxx4
-rw-r--r--sfx2/inc/sfx2/newstyle.hxx16
-rw-r--r--sfx2/inc/sfx2/objface.hxx56
-rw-r--r--sfx2/inc/sfx2/objitem.hxx8
-rw-r--r--sfx2/inc/sfx2/objsh.hxx202
-rw-r--r--sfx2/inc/sfx2/objuno.hxx2
-rw-r--r--sfx2/inc/sfx2/opengrf.hxx40
-rw-r--r--sfx2/inc/sfx2/passwd.hxx48
-rw-r--r--sfx2/inc/sfx2/printer.hxx74
-rw-r--r--sfx2/inc/sfx2/printopt.hxx24
-rw-r--r--sfx2/inc/sfx2/prnmon.hxx14
-rw-r--r--sfx2/inc/sfx2/progress.hxx42
-rw-r--r--sfx2/inc/sfx2/querystatus.hxx2
-rw-r--r--sfx2/inc/sfx2/request.hxx48
-rwxr-xr-xsfx2/inc/sfx2/securitypage.hxx2
-rwxr-xr-xsfx2/inc/sfx2/sfx.hrc320
-rw-r--r--sfx2/inc/sfx2/sfxbasecontroller.hxx240
-rw-r--r--sfx2/inc/sfx2/sfxbasemodel.hxx838
-rw-r--r--sfx2/inc/sfx2/sfxdefs.hxx10
-rw-r--r--sfx2/inc/sfx2/sfxdlg.hxx32
-rw-r--r--sfx2/inc/sfx2/sfxhtml.hxx10
-rw-r--r--sfx2/inc/sfx2/sfxmodelfactory.hxx2
-rw-r--r--sfx2/inc/sfx2/sfxsids.hrc303
-rw-r--r--sfx2/inc/sfx2/sfxstatuslistener.hxx6
-rw-r--r--sfx2/inc/sfx2/sfxuno.hxx748
-rw-r--r--sfx2/inc/sfx2/shell.hxx138
-rw-r--r--sfx2/inc/sfx2/signaturestate.hxx8
-rw-r--r--sfx2/inc/sfx2/styfitem.hxx6
-rw-r--r--sfx2/inc/sfx2/styledlg.hxx14
-rw-r--r--sfx2/inc/sfx2/tabdlg.hxx182
-rw-r--r--sfx2/inc/sfx2/taskpane.hxx4
-rw-r--r--sfx2/inc/sfx2/tbxctrl.hxx72
-rw-r--r--sfx2/inc/sfx2/templdlg.hxx2
-rw-r--r--sfx2/inc/sfx2/titledockwin.hxx2
-rw-r--r--sfx2/inc/sfx2/unoctitm.hxx46
-rw-r--r--sfx2/inc/sfx2/userinputinterception.hxx2
-rw-r--r--sfx2/inc/sfx2/viewfrm.hxx76
-rw-r--r--sfx2/inc/sfx2/viewsh.hxx128
-rw-r--r--sfx2/inc/sfxbasic.hxx2
-rw-r--r--sfx2/inc/sfxhelp.hxx8
-rw-r--r--sfx2/inc/sfxresid.hxx2
-rw-r--r--sfx2/inc/sorgitm.hxx6
-rw-r--r--sfx2/inc/srchdlg.hxx62
-rw-r--r--sfx2/inc/stbitem.hxx36
-rw-r--r--sfx2/inc/tplpitem.hxx14
-rw-r--r--sfx2/inc/viewfac.hxx10
-rw-r--r--sfx2/qa/complex/CheckGlobalEventBroadcaster_writer1.java2
-rw-r--r--sfx2/qa/complex/DocHelper/DialogThread.java12
-rw-r--r--sfx2/qa/complex/DocHelper/WriterHelper.java52
-rw-r--r--sfx2/qa/complex/DocumentMetaData.java2
-rw-r--r--sfx2/qa/complex/DocumentMetadataAccessTest.java8
-rw-r--r--sfx2/qa/complex/docinfo/DocumentProperties.java18
-rw-r--r--sfx2/qa/complex/standalonedocumentinfo/StandaloneDocumentInfoTest.java2
-rw-r--r--sfx2/qa/complex/standalonedocumentinfo/StandaloneDocumentInfoUnitTest.java12
-rw-r--r--sfx2/qa/complex/standalonedocumentinfo/Test01.java46
-rw-r--r--sfx2/qa/complex/standalonedocumentinfo/TestHelper.java8
-rw-r--r--sfx2/qa/cppunit/version.map2
-rw-r--r--sfx2/sdi/appslots.sdi2
-rw-r--r--sfx2/sdi/docslots.sdi2
-rw-r--r--sfx2/sdi/frmslots.sdi8
-rwxr-xr-xsfx2/sdi/sfx.sdi29
-rw-r--r--sfx2/sdi/sfxitems.sdi50
-rw-r--r--sfx2/sdi/sfxslots.sdi2
-rw-r--r--sfx2/sdi/viwslots.sdi2
-rw-r--r--sfx2/source/appl/app.cxx22
-rw-r--r--sfx2/source/appl/app.hrc252
-rw-r--r--sfx2/source/appl/app.src10
-rw-r--r--sfx2/source/appl/appbas.cxx124
-rw-r--r--sfx2/source/appl/appbaslib.cxx8
-rw-r--r--sfx2/source/appl/appcfg.cxx40
-rw-r--r--sfx2/source/appl/appchild.cxx6
-rw-r--r--sfx2/source/appl/appdata.cxx2
-rw-r--r--sfx2/source/appl/appdde.cxx80
-rw-r--r--sfx2/source/appl/appinit.cxx12
-rw-r--r--sfx2/source/appl/appmain.cxx10
-rw-r--r--sfx2/source/appl/appmisc.cxx8
-rw-r--r--sfx2/source/appl/appopen.cxx16
-rw-r--r--sfx2/source/appl/appquit.cxx2
-rw-r--r--sfx2/source/appl/appreg.cxx2
-rw-r--r--sfx2/source/appl/appserv.cxx32
-rwxr-xr-xsfx2/source/appl/appuno.cxx40
-rw-r--r--sfx2/source/appl/childwin.cxx36
-rw-r--r--sfx2/source/appl/dde.hrc16
-rw-r--r--sfx2/source/appl/dde.src2
-rw-r--r--sfx2/source/appl/fileobj.cxx28
-rw-r--r--sfx2/source/appl/fileobj.hxx2
-rw-r--r--sfx2/source/appl/fwkhelper.cxx2
-rw-r--r--sfx2/source/appl/helpdispatch.cxx8
-rw-r--r--sfx2/source/appl/helpdispatch.hxx10
-rw-r--r--sfx2/source/appl/helpinterceptor.cxx8
-rw-r--r--sfx2/source/appl/helpinterceptor.hxx56
-rw-r--r--sfx2/source/appl/imagemgr.cxx2
-rw-r--r--sfx2/source/appl/imestatuswindow.cxx2
-rw-r--r--sfx2/source/appl/imestatuswindow.hxx2
-rw-r--r--sfx2/source/appl/impldde.cxx40
-rw-r--r--sfx2/source/appl/impldde.hxx14
-rw-r--r--sfx2/source/appl/linkmgr2.cxx26
-rw-r--r--sfx2/source/appl/linksrc.cxx16
-rw-r--r--sfx2/source/appl/lnkbase2.cxx66
-rw-r--r--sfx2/source/appl/module.cxx18
-rw-r--r--sfx2/source/appl/newhelp.cxx226
-rw-r--r--sfx2/source/appl/newhelp.hrc68
-rw-r--r--sfx2/source/appl/newhelp.hxx470
-rw-r--r--sfx2/source/appl/newhelp.src2
-rw-r--r--sfx2/source/appl/opengrf.cxx34
-rw-r--r--sfx2/source/appl/panelist.hxx4
-rw-r--r--sfx2/source/appl/sfx.src2
-rw-r--r--sfx2/source/appl/sfxdll.cxx2
-rw-r--r--sfx2/source/appl/sfxhelp.cxx42
-rw-r--r--sfx2/source/appl/sfxpicklist.cxx38
-rw-r--r--sfx2/source/appl/shutdownicon.cxx46
-rw-r--r--sfx2/source/appl/shutdownicon.hxx2
-rw-r--r--sfx2/source/appl/shutdowniconOs2.cxx4
-rw-r--r--sfx2/source/appl/shutdowniconw32.cxx182
-rw-r--r--sfx2/source/appl/workwin.cxx40
-rw-r--r--sfx2/source/appl/xpackcreator.cxx2
-rw-r--r--sfx2/source/appl/xpackcreator.hxx6
-rw-r--r--sfx2/source/bastyp/bastyp.hrc14
-rw-r--r--sfx2/source/bastyp/bastyp.src2
-rw-r--r--sfx2/source/bastyp/bitset.cxx6
-rw-r--r--sfx2/source/bastyp/fltfnc.cxx36
-rw-r--r--sfx2/source/bastyp/fltfnc.src2
-rw-r--r--sfx2/source/bastyp/fltlst.cxx2
-rw-r--r--sfx2/source/bastyp/fltlst.hxx2
-rw-r--r--sfx2/source/bastyp/frmhtml.cxx26
-rw-r--r--sfx2/source/bastyp/frmhtmlw.cxx30
-rw-r--r--sfx2/source/bastyp/helper.cxx10
-rw-r--r--sfx2/source/bastyp/mieclip.cxx2
-rw-r--r--sfx2/source/bastyp/minarray.cxx2
-rw-r--r--sfx2/source/bastyp/misc.cxx2
-rw-r--r--sfx2/source/bastyp/progress.cxx88
-rw-r--r--sfx2/source/bastyp/sfxhtml.cxx20
-rw-r--r--sfx2/source/bastyp/sfxresid.cxx2
-rw-r--r--sfx2/source/config/config.hrc6
-rw-r--r--sfx2/source/config/config.src2
-rw-r--r--sfx2/source/config/evntconf.cxx4
-rw-r--r--sfx2/source/control/bindings.cxx4
-rw-r--r--sfx2/source/control/ctrlitem.cxx32
-rw-r--r--sfx2/source/control/dispatch.cxx258
-rw-r--r--sfx2/source/control/macrconf.cxx32
-rw-r--r--sfx2/source/control/macro.cxx78
-rw-r--r--sfx2/source/control/minfitem.cxx4
-rw-r--r--sfx2/source/control/msg.cxx2
-rw-r--r--sfx2/source/control/msgpool.cxx8
-rw-r--r--sfx2/source/control/objface.cxx24
-rw-r--r--sfx2/source/control/querystatus.cxx42
-rw-r--r--sfx2/source/control/request.cxx108
-rw-r--r--sfx2/source/control/sfxstatuslistener.cxx8
-rw-r--r--sfx2/source/control/shell.cxx16
-rw-r--r--sfx2/source/control/sorgitm.cxx2
-rw-r--r--sfx2/source/control/statcach.cxx30
-rw-r--r--sfx2/source/control/unoctitm.cxx8
-rw-r--r--sfx2/source/dialog/about.cxx30
-rw-r--r--sfx2/source/dialog/alienwarn.cxx2
-rw-r--r--sfx2/source/dialog/alienwarn.hrc2
-rw-r--r--sfx2/source/dialog/alienwarn.src2
-rw-r--r--sfx2/source/dialog/basedlgs.cxx6
-rw-r--r--sfx2/source/dialog/dialog.hrc50
-rw-r--r--sfx2/source/dialog/dialog.src2
-rwxr-xr-xsfx2/source/dialog/dinfdlg.cxx114
-rw-r--r--sfx2/source/dialog/dinfdlg.hrc170
-rwxr-xr-xsfx2/source/dialog/dinfdlg.src16
-rw-r--r--sfx2/source/dialog/dinfedt.cxx18
-rw-r--r--sfx2/source/dialog/dinfedt.hrc10
-rw-r--r--sfx2/source/dialog/dinfedt.src2
-rw-r--r--sfx2/source/dialog/dockwin.cxx186
-rw-r--r--sfx2/source/dialog/filedlghelper.cxx148
-rw-r--r--sfx2/source/dialog/filedlghelper.src2
-rw-r--r--sfx2/source/dialog/filedlgimpl.hxx204
-rw-r--r--sfx2/source/dialog/filtergrouping.cxx138
-rw-r--r--sfx2/source/dialog/filtergrouping.hxx12
-rw-r--r--sfx2/source/dialog/intro.cxx2
-rw-r--r--sfx2/source/dialog/itemconnect.cxx2
-rw-r--r--sfx2/source/dialog/mailmodel.cxx40
-rw-r--r--sfx2/source/dialog/mailmodelapi.cxx62
-rw-r--r--sfx2/source/dialog/mailwindow.src2
-rw-r--r--sfx2/source/dialog/mgetempl.cxx70
-rw-r--r--sfx2/source/dialog/mgetempl.hrc2
-rw-r--r--sfx2/source/dialog/mgetempl.src2
-rw-r--r--sfx2/source/dialog/navigat.cxx2
-rw-r--r--sfx2/source/dialog/newstyle.cxx12
-rw-r--r--sfx2/source/dialog/newstyle.hrc12
-rw-r--r--sfx2/source/dialog/newstyle.src2
-rw-r--r--sfx2/source/dialog/partwnd.cxx8
-rw-r--r--sfx2/source/dialog/passwd.cxx32
-rw-r--r--sfx2/source/dialog/passwd.hrc2
-rw-r--r--sfx2/source/dialog/passwd.src2
-rw-r--r--sfx2/source/dialog/printopt.cxx20
-rw-r--r--sfx2/source/dialog/printopt.hrc60
-rw-r--r--sfx2/source/dialog/printopt.src2
-rw-r--r--sfx2/source/dialog/recfloat.cxx28
-rw-r--r--sfx2/source/dialog/recfloat.src2
-rw-r--r--sfx2/source/dialog/securitypage.cxx46
-rwxr-xr-xsfx2/source/dialog/securitypage.hrc2
-rw-r--r--sfx2/source/dialog/securitypage.src6
-rwxr-xr-xsfx2/source/dialog/sfxdlg.cxx2
-rw-r--r--sfx2/source/dialog/splitwin.cxx46
-rw-r--r--sfx2/source/dialog/srchdlg.cxx28
-rw-r--r--sfx2/source/dialog/srchdlg.hrc22
-rw-r--r--sfx2/source/dialog/srchdlg.src2
-rw-r--r--sfx2/source/dialog/styfitem.cxx4
-rw-r--r--sfx2/source/dialog/styledlg.cxx16
-rw-r--r--sfx2/source/dialog/tabdlg.cxx148
-rw-r--r--sfx2/source/dialog/taskpane.cxx14
-rw-r--r--sfx2/source/dialog/taskpane.src2
-rw-r--r--sfx2/source/dialog/templdlg.cxx226
-rw-r--r--sfx2/source/dialog/templdlg.hrc4
-rw-r--r--sfx2/source/dialog/templdlg.src4
-rw-r--r--sfx2/source/dialog/titledockwin.cxx14
-rw-r--r--sfx2/source/dialog/titledockwin.src2
-rw-r--r--sfx2/source/dialog/tplcitem.cxx8
-rw-r--r--sfx2/source/dialog/tplpitem.cxx10
-rw-r--r--sfx2/source/dialog/versdlg.cxx24
-rw-r--r--sfx2/source/dialog/versdlg.hrc24
-rw-r--r--sfx2/source/dialog/versdlg.src4
-rw-r--r--sfx2/source/doc/DocumentMetadataAccess.cxx27
-rw-r--r--sfx2/source/doc/Metadatable.cxx8
-rw-r--r--sfx2/source/doc/QuerySaveDocument.cxx2
-rw-r--r--sfx2/source/doc/SfxDocumentMetaData.cxx2
-rw-r--r--sfx2/source/doc/applet.cxx2
-rw-r--r--sfx2/source/doc/doc.hrc248
-rw-r--r--sfx2/source/doc/doc.src2
-rw-r--r--sfx2/source/doc/docfac.cxx40
-rw-r--r--sfx2/source/doc/docfile.cxx73
-rw-r--r--sfx2/source/doc/docfilt.cxx2
-rw-r--r--sfx2/source/doc/docinf.cxx2
-rw-r--r--sfx2/source/doc/docinsert.cxx2
-rw-r--r--sfx2/source/doc/docmacromode.cxx2
-rw-r--r--sfx2/source/doc/docstoragemodifylistener.cxx6
-rw-r--r--sfx2/source/doc/doctdlg.cxx36
-rw-r--r--sfx2/source/doc/doctdlg.hrc2
-rw-r--r--sfx2/source/doc/doctdlg.src2
-rw-r--r--sfx2/source/doc/doctempl.cxx2
-rw-r--r--sfx2/source/doc/doctempl.src2
-rw-r--r--sfx2/source/doc/doctemplates.cxx148
-rw-r--r--sfx2/source/doc/doctemplateslocal.cxx20
-rw-r--r--sfx2/source/doc/doctemplateslocal.hxx2
-rw-r--r--sfx2/source/doc/docvor.cxx96
-rw-r--r--sfx2/source/doc/docvor.hrc24
-rw-r--r--sfx2/source/doc/docvor.src4
-rw-r--r--sfx2/source/doc/frmdescr.cxx18
-rw-r--r--sfx2/source/doc/graphhelp.cxx74
-rw-r--r--sfx2/source/doc/graphhelp.hxx4
-rw-r--r--sfx2/source/doc/graphhelp.src2
-rw-r--r--sfx2/source/doc/guisaveas.cxx28
-rw-r--r--sfx2/source/doc/iframe.cxx22
-rw-r--r--sfx2/source/doc/new.cxx18
-rw-r--r--sfx2/source/doc/new.hrc2
-rw-r--r--sfx2/source/doc/new.src2
-rw-r--r--sfx2/source/doc/objcont.cxx32
-rw-r--r--sfx2/source/doc/objembed.cxx20
-rw-r--r--sfx2/source/doc/objitem.cxx8
-rwxr-xr-xsfx2/source/doc/objmisc.cxx64
-rw-r--r--sfx2/source/doc/objserv.cxx21
-rw-r--r--sfx2/source/doc/objstor.cxx50
-rw-r--r--sfx2/source/doc/objuno.cxx14
-rw-r--r--sfx2/source/doc/objxtor.cxx36
-rwxr-xr-xsfx2/source/doc/oleprops.cxx6
-rwxr-xr-xsfx2/source/doc/oleprops.hxx2
-rw-r--r--sfx2/source/doc/ownsubfilterservice.cxx2
-rw-r--r--sfx2/source/doc/plugin.cxx6
-rwxr-xr-xsfx2/source/doc/printhelper.cxx26
-rwxr-xr-xsfx2/source/doc/printhelper.hxx2
-rw-r--r--sfx2/source/doc/querytemplate.cxx2
-rw-r--r--sfx2/source/doc/querytemplate.hxx2
-rw-r--r--sfx2/source/doc/sfxacldetect.cxx6
-rw-r--r--sfx2/source/doc/sfxbasemodel.cxx141
-rw-r--r--sfx2/source/doc/sfxmodelfactory.cxx2
-rwxr-xr-xsfx2/source/doc/syspath.cxx2
-rw-r--r--sfx2/source/doc/syspath.hxx2
-rw-r--r--sfx2/source/doc/syspathw32.cxx12
-rw-r--r--sfx2/source/explorer/nochaos.cxx18
-rw-r--r--sfx2/source/inc/SfxDocumentMetaData.hxx2
-rw-r--r--sfx2/source/inc/alienwarn.hxx2
-rw-r--r--sfx2/source/inc/appbas.hxx2
-rw-r--r--sfx2/source/inc/appbaslib.hxx8
-rw-r--r--sfx2/source/inc/appdata.hxx8
-rw-r--r--sfx2/source/inc/applet.hxx2
-rw-r--r--sfx2/source/inc/doctemplates.hxx46
-rw-r--r--sfx2/source/inc/eventsupplier.hxx60
-rw-r--r--sfx2/source/inc/fltfnc.hxx2
-rw-r--r--sfx2/source/inc/fltoptint.hxx36
-rw-r--r--sfx2/source/inc/helper.hxx26
-rwxr-xr-xsfx2/source/inc/helpid.hrc522
-rw-r--r--sfx2/source/inc/hexplwnd.hxx24
-rw-r--r--sfx2/source/inc/iframe.hxx2
-rw-r--r--sfx2/source/inc/intro.hxx10
-rw-r--r--sfx2/source/inc/mailmodel.hxx34
-rw-r--r--sfx2/source/inc/mnucfga.hxx12
-rw-r--r--sfx2/source/inc/nfltdlg.hxx20
-rw-r--r--sfx2/source/inc/nochaos.hxx6
-rw-r--r--sfx2/source/inc/objmnctl.hxx10
-rw-r--r--sfx2/source/inc/objshimp.hxx36
-rw-r--r--sfx2/source/inc/openflag.hxx2
-rw-r--r--sfx2/source/inc/ownsubfilterservice.hxx6
-rw-r--r--sfx2/source/inc/partwnd.hxx12
-rw-r--r--sfx2/source/inc/plugin.hxx2
-rw-r--r--sfx2/source/inc/preview.hxx6
-rw-r--r--sfx2/source/inc/recfloat.hxx10
-rw-r--r--sfx2/source/inc/referers.hxx4
-rw-r--r--sfx2/source/inc/sfxlocal.hrc2
-rw-r--r--sfx2/source/inc/sfxpicklist.hxx54
-rw-r--r--sfx2/source/inc/sfxtypes.hxx10
-rw-r--r--sfx2/source/inc/sfxurlrelocator.hxx2
-rw-r--r--sfx2/source/inc/slotserv.hxx16
-rw-r--r--sfx2/source/inc/splitwin.hxx94
-rw-r--r--sfx2/source/inc/statcach.hxx64
-rw-r--r--sfx2/source/inc/templdgi.hxx256
-rw-r--r--sfx2/source/inc/tplcitem.hxx4
-rw-r--r--sfx2/source/inc/tplcomp.hxx102
-rw-r--r--sfx2/source/inc/versdlg.hxx62
-rw-r--r--sfx2/source/inc/virtmenu.hxx58
-rw-r--r--sfx2/source/inc/workwin.hxx212
-rw-r--r--sfx2/source/inet/inettbc.cxx4
-rw-r--r--sfx2/source/layout/factory.cxx2
-rw-r--r--sfx2/source/layout/sfxdialog.cxx2
-rw-r--r--sfx2/source/layout/sfxtabdialog.cxx2
-rw-r--r--sfx2/source/layout/sfxtabpage.cxx2
-rw-r--r--sfx2/source/menu/menu.hrc18
-rw-r--r--sfx2/source/menu/menu.src2
-rw-r--r--sfx2/source/menu/mnuitem.cxx28
-rwxr-xr-xsfx2/source/menu/mnumgr.cxx16
-rw-r--r--sfx2/source/menu/objmnctl.cxx6
-rwxr-xr-xsfx2/source/menu/thessubmenu.cxx52
-rw-r--r--sfx2/source/menu/thessubmenu.hxx16
-rw-r--r--sfx2/source/menu/virtmenu.cxx34
-rw-r--r--sfx2/source/notify/eventsupplier.cxx48
-rw-r--r--sfx2/source/notify/hintpost.cxx12
-rw-r--r--sfx2/source/statbar/stbitem.cxx34
-rw-r--r--sfx2/source/toolbox/imgmgr.cxx42
-rw-r--r--sfx2/source/toolbox/tbxitem.cxx32
-rw-r--r--sfx2/source/view/frame.cxx2
-rw-r--r--sfx2/source/view/frame2.cxx12
-rw-r--r--sfx2/source/view/frmload.cxx2
-rw-r--r--sfx2/source/view/impframe.hxx10
-rw-r--r--sfx2/source/view/impviewframe.hxx12
-rw-r--r--sfx2/source/view/ipclient.cxx8
-rw-r--r--sfx2/source/view/orgmgr.cxx110
-rw-r--r--sfx2/source/view/printer.cxx70
-rw-r--r--sfx2/source/view/prnmon.cxx68
-rw-r--r--sfx2/source/view/sfxbasecontroller.cxx180
-rw-r--r--sfx2/source/view/userinputinterception.cxx6
-rw-r--r--sfx2/source/view/view.hrc130
-rw-r--r--sfx2/source/view/view.src4
-rw-r--r--sfx2/source/view/viewfac.cxx4
-rw-r--r--sfx2/source/view/viewfrm.cxx35
-rw-r--r--sfx2/source/view/viewfrm2.cxx6
-rw-r--r--sfx2/source/view/viewimp.hxx20
-rw-r--r--sfx2/source/view/viewprn.cxx84
-rw-r--r--sfx2/source/view/viewsh.cxx26
-rw-r--r--sfx2/util/hidother.src236
-rw-r--r--sfx2/util/sfx.xml52
-rw-r--r--sfx2/workben/custompanel/ctp_factory.cxx10
-rw-r--r--sfx2/workben/custompanel/ctp_factory.hxx2
-rw-r--r--sfx2/workben/custompanel/ctp_panel.cxx2
-rw-r--r--sfx2/workben/custompanel/ctp_panel.hxx2
-rw-r--r--sfx2/workben/custompanel/ctp_services.cxx4
-rw-r--r--shell/inc/internal/basereader.hxx12
-rw-r--r--shell/inc/internal/columninfo.hxx18
-rw-r--r--shell/inc/internal/config.hxx2
-rw-r--r--shell/inc/internal/contentreader.hxx18
-rw-r--r--shell/inc/internal/dbgmacros.hxx2
-rw-r--r--shell/inc/internal/fileextensions.hxx10
-rw-r--r--shell/inc/internal/global.hxx8
-rw-r--r--shell/inc/internal/i_xml_parser_event_handler.hxx16
-rw-r--r--shell/inc/internal/infotips.hxx36
-rw-r--r--shell/inc/internal/iso8601_converter.hxx2
-rwxr-xr-xshell/inc/internal/metainforeader.hxx12
-rwxr-xr-xshell/inc/internal/propertyhdl.hxx14
-rw-r--r--shell/inc/internal/propsheets.hxx24
-rw-r--r--shell/inc/internal/registry.hxx6
-rw-r--r--shell/inc/internal/resource.h60
-rwxr-xr-xshell/inc/internal/shlxthdl.hxx14
-rwxr-xr-xshell/inc/internal/stream_helper.hxx2
-rw-r--r--shell/inc/internal/thumbviewer.hxx46
-rw-r--r--shell/inc/internal/types.hxx2
-rwxr-xr-xshell/inc/internal/utilities.hxx8
-rw-r--r--shell/inc/internal/xml_parser.hxx62
-rw-r--r--shell/inc/internal/zipfile.hxx74
-rw-r--r--shell/inc/kde_headers.h2
-rw-r--r--shell/inc/pch/precompiled_shell.cxx2
-rw-r--r--shell/inc/pch/precompiled_shell.hxx2
-rw-r--r--shell/qa/i_xml_parser_event_handler.hxx16
-rwxr-xr-xshell/qa/recent_docs.cxx14
-rw-r--r--shell/source/all/ooofilereader/autostyletag.cxx8
-rw-r--r--shell/source/all/ooofilereader/autostyletag.hxx8
-rw-r--r--shell/source/all/ooofilereader/basereader.cxx10
-rw-r--r--shell/source/all/ooofilereader/contentreader.cxx2
-rw-r--r--shell/source/all/ooofilereader/dummytag.hxx12
-rw-r--r--shell/source/all/ooofilereader/itag.hxx2
-rw-r--r--shell/source/all/ooofilereader/keywordstag.cxx4
-rw-r--r--shell/source/all/ooofilereader/keywordstag.hxx4
-rw-r--r--shell/source/all/ooofilereader/metainforeader.cxx2
-rw-r--r--shell/source/all/ooofilereader/simpletag.cxx6
-rw-r--r--shell/source/all/ooofilereader/simpletag.hxx4
-rw-r--r--shell/source/all/xml_parser.cxx48
-rw-r--r--shell/source/all/zipfile/zipexcptn.cxx14
-rw-r--r--shell/source/all/zipfile/zipexcptn.hxx2
-rw-r--r--shell/source/all/zipfile/zipfile.cxx80
-rw-r--r--shell/source/backends/gconfbe/gconfaccess.cxx18
-rw-r--r--shell/source/backends/gconfbe/gconfaccess.hxx2
-rw-r--r--shell/source/backends/gconfbe/orbit.h2
-rw-r--r--shell/source/backends/localebe/localebackend.cxx54
-rw-r--r--shell/source/backends/localebe/localebackend.hxx32
-rw-r--r--shell/source/backends/localebe/localebe.xml4
-rw-r--r--shell/source/backends/localebe/localebecdef.cxx8
-rw-r--r--shell/source/backends/macbe/macbackend.cxx6
-rw-r--r--shell/source/backends/macbe/macbackend.hxx2
-rw-r--r--shell/source/backends/macbe/macbecdef.cxx2
-rw-r--r--shell/source/backends/wininetbe/wininetbackend.cxx76
-rw-r--r--shell/source/backends/wininetbe/wininetbackend.hxx22
-rw-r--r--shell/source/backends/wininetbe/wininetbe.xml4
-rw-r--r--shell/source/backends/wininetbe/wininetbecdef.cxx8
-rw-r--r--shell/source/cmdmail/cmdmail.xml60
-rwxr-xr-xshell/source/cmdmail/cmdmailentry.cxx34
-rwxr-xr-xshell/source/cmdmail/cmdmailmsg.cxx106
-rw-r--r--shell/source/cmdmail/cmdmailmsg.hxx64
-rwxr-xr-xshell/source/cmdmail/cmdmailsuppl.cxx50
-rw-r--r--shell/source/cmdmail/cmdmailsuppl.hxx34
-rw-r--r--shell/source/tools/lngconvex/cmdline.cxx8
-rw-r--r--shell/source/tools/lngconvex/cmdline.hxx36
-rw-r--r--shell/source/tools/lngconvex/lngconvex.cxx12
-rw-r--r--shell/source/tools/regsvrex/regsvrex.cxx10
-rw-r--r--shell/source/unix/exec/shellexec.cxx58
-rw-r--r--shell/source/unix/exec/shellexec.hxx26
-rw-r--r--shell/source/unix/exec/shellexecentry.cxx22
-rw-r--r--shell/source/unix/exec/syssh.xml6
-rw-r--r--shell/source/unix/exec/urltest.cxx38
-rw-r--r--shell/source/unix/misc/gnome-open-url.c36
-rw-r--r--shell/source/unix/misc/open-url.c42
-rwxr-xr-xshell/source/unix/misc/open-url.sh6
-rw-r--r--shell/source/unix/misc/senddoc.c46
-rw-r--r--shell/source/unix/misc/senddoc.sh50
-rw-r--r--shell/source/unix/misc/uri-encode.c2
-rw-r--r--shell/source/unix/sysshell/recently_used_file.cxx46
-rw-r--r--shell/source/unix/sysshell/recently_used_file.hxx18
-rw-r--r--shell/source/unix/sysshell/recently_used_file_handler.cxx286
-rwxr-xr-xshell/source/unix/sysshell/recfile.map2
-rw-r--r--shell/source/win32/SysShExec.cxx88
-rw-r--r--shell/source/win32/SysShExec.hxx28
-rw-r--r--shell/source/win32/SysShentry.cxx40
-rwxr-xr-xshell/source/win32/shlxthandler/classfactory.cxx30
-rw-r--r--shell/source/win32/shlxthandler/classfactory.hxx20
-rw-r--r--shell/source/win32/shlxthandler/columninfo/columninfo.cxx58
-rw-r--r--shell/source/win32/shlxthandler/infotips/infotips.cxx64
-rwxr-xr-xshell/source/win32/shlxthandler/ooofilt/ooofilt.cxx242
-rwxr-xr-xshell/source/win32/shlxthandler/ooofilt/ooofilt.hxx24
-rw-r--r--shell/source/win32/shlxthandler/ooofilt/propspec.cxx12
-rw-r--r--shell/source/win32/shlxthandler/ooofilt/propspec.hxx10
-rwxr-xr-xshell/source/win32/shlxthandler/ooofilt/stream_helper.cxx32
-rw-r--r--shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx10
-rw-r--r--shell/source/win32/shlxthandler/propsheets/document_statistic.cxx64
-rw-r--r--shell/source/win32/shlxthandler/propsheets/document_statistic.hxx48
-rw-r--r--shell/source/win32/shlxthandler/propsheets/listviewbuilder.cxx128
-rw-r--r--shell/source/win32/shlxthandler/propsheets/listviewbuilder.hxx46
-rwxr-xr-xshell/source/win32/shlxthandler/propsheets/propsheets.cxx86
-rwxr-xr-xshell/source/win32/shlxthandler/shlxthdl.cxx180
-rw-r--r--shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx286
-rw-r--r--shell/source/win32/shlxthandler/util/dbgmacros.cxx26
-rw-r--r--shell/source/win32/shlxthandler/util/fileextensions.cxx28
-rw-r--r--shell/source/win32/shlxthandler/util/iso8601_converter.cxx50
-rw-r--r--shell/source/win32/shlxthandler/util/registry.cxx28
-rw-r--r--shell/source/win32/shlxthandler/util/utilities.cxx680
-rw-r--r--shell/source/win32/simplemail/senddoc.cxx208
-rw-r--r--shell/source/win32/simplemail/simplemapi.cxx50
-rw-r--r--shell/source/win32/simplemail/simplemapi.hxx40
-rw-r--r--shell/source/win32/simplemail/smplmail.xml48
-rw-r--r--shell/source/win32/simplemail/smplmailclient.cxx118
-rw-r--r--shell/source/win32/simplemail/smplmailclient.hxx18
-rw-r--r--shell/source/win32/simplemail/smplmailentry.cxx40
-rw-r--r--shell/source/win32/simplemail/smplmailmsg.cxx64
-rw-r--r--shell/source/win32/simplemail/smplmailmsg.hxx66
-rw-r--r--shell/source/win32/simplemail/smplmailsuppl.cxx26
-rw-r--r--shell/source/win32/simplemail/smplmailsuppl.hxx24
-rw-r--r--shell/source/win32/syssh.xml54
-rw-r--r--shell/source/win32/workbench/TestProxySet.cxx40
-rw-r--r--shell/source/win32/workbench/TestSmplMail.cxx48
-rw-r--r--shell/source/win32/workbench/TestSysShExec.cxx38
-rw-r--r--slideshow/inc/pch/precompiled_slideshow.cxx2
-rw-r--r--slideshow/inc/pch/precompiled_slideshow.hxx2
-rw-r--r--slideshow/qa/debug/nodetree.sh20
-rw-r--r--slideshow/qa/debug/timings.pl2
-rwxr-xr-xslideshow/qa/tools/mkeffects.pl192
-rw-r--r--slideshow/qa/tools/mktransitions.pl164
-rw-r--r--slideshow/source/engine/OGLTrans/OGLTrans_Shaders.cxx2
-rw-r--r--slideshow/source/engine/OGLTrans/OGLTrans_Shaders.hxx4
-rw-r--r--slideshow/source/engine/OGLTrans/OGLTrans_TransitionImpl.cxx152
-rw-r--r--slideshow/source/engine/OGLTrans/OGLTrans_TransitionImpl.hxx134
-rw-r--r--slideshow/source/engine/OGLTrans/OGLTrans_TransitionerImpl.cxx170
-rw-r--r--slideshow/source/engine/activities/accumulation.hxx26
-rw-r--r--slideshow/source/engine/activities/activitiesfactory.cxx296
-rw-r--r--slideshow/source/engine/activities/activitybase.cxx54
-rw-r--r--slideshow/source/engine/activities/activitybase.hxx48
-rw-r--r--slideshow/source/engine/activities/activityparameters.hxx40
-rw-r--r--slideshow/source/engine/activities/continuousactivitybase.cxx8
-rw-r--r--slideshow/source/engine/activities/continuousactivitybase.hxx10
-rw-r--r--slideshow/source/engine/activities/continuouskeytimeactivitybase.cxx12
-rw-r--r--slideshow/source/engine/activities/continuouskeytimeactivitybase.hxx18
-rw-r--r--slideshow/source/engine/activities/discreteactivitybase.cxx44
-rw-r--r--slideshow/source/engine/activities/discreteactivitybase.hxx22
-rw-r--r--slideshow/source/engine/activities/interpolation.hxx94
-rw-r--r--slideshow/source/engine/activities/simplecontinuousactivitybase.cxx22
-rw-r--r--slideshow/source/engine/activities/simplecontinuousactivitybase.hxx18
-rw-r--r--slideshow/source/engine/activitiesqueue.cxx20
-rw-r--r--slideshow/source/engine/animatedsprite.cxx24
-rw-r--r--slideshow/source/engine/animationfactory.cxx420
-rw-r--r--slideshow/source/engine/animationnodes/animationaudionode.cxx34
-rw-r--r--slideshow/source/engine/animationnodes/animationaudionode.hxx18
-rw-r--r--slideshow/source/engine/animationnodes/animationbasenode.cxx98
-rw-r--r--slideshow/source/engine/animationnodes/animationbasenode.hxx28
-rw-r--r--slideshow/source/engine/animationnodes/animationcolornode.cxx28
-rw-r--r--slideshow/source/engine/animationnodes/animationcolornode.hxx12
-rw-r--r--slideshow/source/engine/animationnodes/animationcommandnode.cxx14
-rw-r--r--slideshow/source/engine/animationnodes/animationcommandnode.hxx12
-rw-r--r--slideshow/source/engine/animationnodes/animationnodefactory.cxx192
-rw-r--r--slideshow/source/engine/animationnodes/animationpathmotionnode.cxx4
-rw-r--r--slideshow/source/engine/animationnodes/animationpathmotionnode.hxx16
-rw-r--r--slideshow/source/engine/animationnodes/animationsetnode.cxx80
-rw-r--r--slideshow/source/engine/animationnodes/animationsetnode.hxx8
-rw-r--r--slideshow/source/engine/animationnodes/animationtransformnode.cxx40
-rw-r--r--slideshow/source/engine/animationnodes/animationtransformnode.hxx14
-rw-r--r--slideshow/source/engine/animationnodes/animationtransitionfilternode.cxx2
-rw-r--r--slideshow/source/engine/animationnodes/animationtransitionfilternode.hxx14
-rw-r--r--slideshow/source/engine/animationnodes/basecontainernode.cxx22
-rw-r--r--slideshow/source/engine/animationnodes/basecontainernode.hxx24
-rw-r--r--slideshow/source/engine/animationnodes/basenode.cxx224
-rw-r--r--slideshow/source/engine/animationnodes/basenode.hxx72
-rw-r--r--slideshow/source/engine/animationnodes/generateevent.cxx30
-rw-r--r--slideshow/source/engine/animationnodes/generateevent.hxx10
-rw-r--r--slideshow/source/engine/animationnodes/nodetools.cxx24
-rw-r--r--slideshow/source/engine/animationnodes/nodetools.hxx18
-rw-r--r--slideshow/source/engine/animationnodes/paralleltimecontainer.cxx2
-rw-r--r--slideshow/source/engine/animationnodes/paralleltimecontainer.hxx12
-rw-r--r--slideshow/source/engine/animationnodes/propertyanimationnode.cxx28
-rw-r--r--slideshow/source/engine/animationnodes/propertyanimationnode.hxx8
-rw-r--r--slideshow/source/engine/animationnodes/sequentialtimecontainer.cxx18
-rw-r--r--slideshow/source/engine/animationnodes/sequentialtimecontainer.hxx20
-rw-r--r--slideshow/source/engine/animationnodes/setactivity.hxx28
-rw-r--r--slideshow/source/engine/attributemap.cxx12
-rw-r--r--slideshow/source/engine/color.cxx72
-rw-r--r--slideshow/source/engine/debug.cxx16
-rw-r--r--slideshow/source/engine/delayevent.cxx2
-rw-r--r--slideshow/source/engine/effectrewinder.cxx16
-rw-r--r--slideshow/source/engine/effectrewinder.hxx12
-rw-r--r--slideshow/source/engine/eventmultiplexer.cxx170
-rw-r--r--slideshow/source/engine/eventqueue.cxx46
-rw-r--r--slideshow/source/engine/expressionnodefactory.cxx80
-rw-r--r--slideshow/source/engine/rehearsetimingsactivity.cxx58
-rw-r--r--slideshow/source/engine/rehearsetimingsactivity.hxx22
-rw-r--r--slideshow/source/engine/screenupdater.cxx26
-rw-r--r--slideshow/source/engine/shapeattributelayer.cxx206
-rw-r--r--slideshow/source/engine/shapes/appletshape.cxx66
-rw-r--r--slideshow/source/engine/shapes/appletshape.hxx4
-rw-r--r--slideshow/source/engine/shapes/backgroundshape.cxx60
-rw-r--r--slideshow/source/engine/shapes/backgroundshape.hxx10
-rw-r--r--slideshow/source/engine/shapes/drawinglayeranimation.cxx300
-rw-r--r--slideshow/source/engine/shapes/drawinglayeranimation.hxx2
-rw-r--r--slideshow/source/engine/shapes/drawshape.cxx208
-rw-r--r--slideshow/source/engine/shapes/drawshape.hxx54
-rw-r--r--slideshow/source/engine/shapes/drawshapesubsetting.cxx116
-rw-r--r--slideshow/source/engine/shapes/drawshapesubsetting.hxx88
-rw-r--r--slideshow/source/engine/shapes/externalshapebase.cxx44
-rw-r--r--slideshow/source/engine/shapes/externalshapebase.hxx20
-rw-r--r--slideshow/source/engine/shapes/gdimtftools.cxx68
-rw-r--r--slideshow/source/engine/shapes/gdimtftools.hxx24
-rw-r--r--slideshow/source/engine/shapes/intrinsicanimationactivity.cxx38
-rw-r--r--slideshow/source/engine/shapes/intrinsicanimationactivity.hxx10
-rw-r--r--slideshow/source/engine/shapes/mediashape.cxx68
-rw-r--r--slideshow/source/engine/shapes/mediashape.hxx4
-rw-r--r--slideshow/source/engine/shapes/shapeimporter.cxx154
-rw-r--r--slideshow/source/engine/shapes/viewappletshape.cxx78
-rw-r--r--slideshow/source/engine/shapes/viewappletshape.hxx18
-rw-r--r--slideshow/source/engine/shapes/viewbackgroundshape.cxx46
-rw-r--r--slideshow/source/engine/shapes/viewbackgroundshape.hxx24
-rw-r--r--slideshow/source/engine/shapes/viewmediashape.cxx170
-rw-r--r--slideshow/source/engine/shapes/viewmediashape.hxx40
-rw-r--r--slideshow/source/engine/shapes/viewshape.cxx154
-rw-r--r--slideshow/source/engine/shapes/viewshape.hxx140
-rw-r--r--slideshow/source/engine/shapesubset.cxx24
-rw-r--r--slideshow/source/engine/slide/layer.cxx62
-rw-r--r--slideshow/source/engine/slide/layer.hxx4
-rw-r--r--slideshow/source/engine/slide/layermanager.cxx88
-rw-r--r--slideshow/source/engine/slide/layermanager.hxx30
-rw-r--r--slideshow/source/engine/slide/shapemanagerimpl.cxx60
-rw-r--r--slideshow/source/engine/slide/shapemanagerimpl.hxx28
-rw-r--r--slideshow/source/engine/slide/slideanimations.cxx8
-rw-r--r--slideshow/source/engine/slide/slideanimations.hxx10
-rw-r--r--slideshow/source/engine/slide/slideimpl.cxx204
-rw-r--r--slideshow/source/engine/slide/userpaintoverlay.cxx136
-rw-r--r--slideshow/source/engine/slide/userpaintoverlay.hxx8
-rw-r--r--slideshow/source/engine/slidebitmap.cxx26
-rw-r--r--slideshow/source/engine/slideshowcontext.cxx10
-rw-r--r--slideshow/source/engine/slideshowimpl.cxx532
-rw-r--r--slideshow/source/engine/slideview.cxx146
-rw-r--r--slideshow/source/engine/smilfunctionparser.cxx264
-rw-r--r--slideshow/source/engine/soundplayer.cxx24
-rw-r--r--slideshow/source/engine/sp_debug.cxx2
-rw-r--r--slideshow/source/engine/tools.cxx212
-rw-r--r--slideshow/source/engine/transitions/barndoorwipe.cxx8
-rw-r--r--slideshow/source/engine/transitions/barndoorwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/barwipepolypolygon.cxx2
-rw-r--r--slideshow/source/engine/transitions/barwipepolypolygon.hxx2
-rw-r--r--slideshow/source/engine/transitions/boxwipe.cxx4
-rw-r--r--slideshow/source/engine/transitions/boxwipe.hxx4
-rw-r--r--slideshow/source/engine/transitions/checkerboardwipe.cxx6
-rw-r--r--slideshow/source/engine/transitions/checkerboardwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/clippingfunctor.cxx50
-rw-r--r--slideshow/source/engine/transitions/clippingfunctor.hxx16
-rw-r--r--slideshow/source/engine/transitions/clockwipe.cxx2
-rw-r--r--slideshow/source/engine/transitions/clockwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/combtransition.cxx48
-rw-r--r--slideshow/source/engine/transitions/combtransition.hxx12
-rw-r--r--slideshow/source/engine/transitions/doublediamondwipe.cxx4
-rw-r--r--slideshow/source/engine/transitions/doublediamondwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/ellipsewipe.cxx2
-rw-r--r--slideshow/source/engine/transitions/ellipsewipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/fanwipe.cxx12
-rw-r--r--slideshow/source/engine/transitions/fanwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/figurewipe.cxx2
-rw-r--r--slideshow/source/engine/transitions/figurewipe.hxx4
-rw-r--r--slideshow/source/engine/transitions/fourboxwipe.cxx12
-rw-r--r--slideshow/source/engine/transitions/fourboxwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/iriswipe.cxx2
-rw-r--r--slideshow/source/engine/transitions/iriswipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/parametricpolypolygon.hxx2
-rw-r--r--slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx12
-rw-r--r--slideshow/source/engine/transitions/parametricpolypolygonfactory.hxx2
-rw-r--r--slideshow/source/engine/transitions/pinwheelwipe.cxx2
-rw-r--r--slideshow/source/engine/transitions/pinwheelwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/randomwipe.cxx4
-rw-r--r--slideshow/source/engine/transitions/randomwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/shapetransitionfactory.cxx108
-rw-r--r--slideshow/source/engine/transitions/slidechangebase.cxx90
-rw-r--r--slideshow/source/engine/transitions/slidechangebase.hxx48
-rw-r--r--slideshow/source/engine/transitions/slidetransitionfactory.cxx170
-rw-r--r--slideshow/source/engine/transitions/snakewipe.cxx30
-rw-r--r--slideshow/source/engine/transitions/snakewipe.hxx4
-rw-r--r--slideshow/source/engine/transitions/spiralwipe.cxx12
-rw-r--r--slideshow/source/engine/transitions/spiralwipe.hxx4
-rw-r--r--slideshow/source/engine/transitions/sweepwipe.cxx18
-rw-r--r--slideshow/source/engine/transitions/sweepwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/transitionfactorytab.cxx76
-rw-r--r--slideshow/source/engine/transitions/transitiontools.cxx4
-rw-r--r--slideshow/source/engine/transitions/transitiontools.hxx2
-rw-r--r--slideshow/source/engine/transitions/veewipe.cxx2
-rw-r--r--slideshow/source/engine/transitions/veewipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/waterfallwipe.cxx2
-rw-r--r--slideshow/source/engine/transitions/waterfallwipe.hxx2
-rw-r--r--slideshow/source/engine/transitions/zigzagwipe.cxx2
-rw-r--r--slideshow/source/engine/transitions/zigzagwipe.hxx2
-rw-r--r--slideshow/source/engine/unoviewcontainer.cxx30
-rw-r--r--slideshow/source/engine/usereventqueue.cxx220
-rw-r--r--slideshow/source/engine/waitsymbol.cxx28
-rw-r--r--slideshow/source/engine/waitsymbol.hxx4
-rw-r--r--slideshow/source/engine/wakeupevent.cxx18
-rw-r--r--slideshow/source/inc/activitiesfactory.hxx138
-rw-r--r--slideshow/source/inc/activitiesqueue.hxx18
-rw-r--r--slideshow/source/inc/activity.hxx8
-rw-r--r--slideshow/source/inc/animatableshape.hxx2
-rw-r--r--slideshow/source/inc/animatedsprite.hxx24
-rw-r--r--slideshow/source/inc/animation.hxx4
-rw-r--r--slideshow/source/inc/animationactivity.hxx6
-rw-r--r--slideshow/source/inc/animationeventhandler.hxx2
-rw-r--r--slideshow/source/inc/animationfactory.hxx62
-rw-r--r--slideshow/source/inc/animationfunction.hxx4
-rw-r--r--slideshow/source/inc/animationnode.hxx52
-rw-r--r--slideshow/source/inc/animationnodefactory.hxx10
-rw-r--r--slideshow/source/inc/attributableshape.hxx16
-rw-r--r--slideshow/source/inc/attributemap.hxx4
-rw-r--r--slideshow/source/inc/boolanimation.hxx4
-rw-r--r--slideshow/source/inc/coloranimation.hxx2
-rw-r--r--slideshow/source/inc/cursormanager.hxx4
-rw-r--r--slideshow/source/inc/debug.hxx2
-rw-r--r--slideshow/source/inc/delayevent.hxx24
-rw-r--r--slideshow/source/inc/disposable.hxx2
-rw-r--r--slideshow/source/inc/doctreenode.hxx32
-rw-r--r--slideshow/source/inc/doctreenodesupplier.hxx18
-rw-r--r--slideshow/source/inc/enumanimation.hxx4
-rw-r--r--slideshow/source/inc/event.hxx16
-rw-r--r--slideshow/source/inc/eventhandler.hxx2
-rw-r--r--slideshow/source/inc/eventmultiplexer.hxx220
-rw-r--r--slideshow/source/inc/eventqueue.hxx18
-rw-r--r--slideshow/source/inc/expressionnode.hxx4
-rw-r--r--slideshow/source/inc/expressionnodefactory.hxx32
-rw-r--r--slideshow/source/inc/externalmediashape.hxx4
-rw-r--r--slideshow/source/inc/framerate.hxx2
-rw-r--r--slideshow/source/inc/hslcolor.hxx20
-rw-r--r--slideshow/source/inc/hslcoloranimation.hxx2
-rw-r--r--slideshow/source/inc/hyperlinkarea.hxx8
-rw-r--r--slideshow/source/inc/hyperlinkhandler.hxx2
-rw-r--r--slideshow/source/inc/interruptabledelayevent.hxx18
-rw-r--r--slideshow/source/inc/intrinsicanimationeventhandler.hxx2
-rw-r--r--slideshow/source/inc/listenercontainer.hxx32
-rw-r--r--slideshow/source/inc/listenercontainerimpl.hxx58
-rw-r--r--slideshow/source/inc/mouseeventhandler.hxx2
-rw-r--r--slideshow/source/inc/numberanimation.hxx4
-rw-r--r--slideshow/source/inc/pairanimation.hxx2
-rw-r--r--slideshow/source/inc/pauseeventhandler.hxx2
-rw-r--r--slideshow/source/inc/rgbcolor.hxx26
-rw-r--r--slideshow/source/inc/screenupdater.hxx10
-rw-r--r--slideshow/source/inc/shape.hxx22
-rw-r--r--slideshow/source/inc/shapeattributelayer.hxx150
-rw-r--r--slideshow/source/inc/shapeattributelayerholder.hxx8
-rw-r--r--slideshow/source/inc/shapecursoreventhandler.hxx2
-rw-r--r--slideshow/source/inc/shapeimporter.hxx56
-rw-r--r--slideshow/source/inc/shapelistenereventhandler.hxx2
-rw-r--r--slideshow/source/inc/shapemanager.hxx4
-rw-r--r--slideshow/source/inc/shapemaps.hxx6
-rw-r--r--slideshow/source/inc/shapesubset.hxx20
-rw-r--r--slideshow/source/inc/slide.hxx38
-rw-r--r--slideshow/source/inc/slidebitmap.hxx18
-rw-r--r--slideshow/source/inc/slideshowcontext.hxx26
-rw-r--r--slideshow/source/inc/slideshowexceptions.hxx4
-rw-r--r--slideshow/source/inc/slideview.hxx2
-rw-r--r--slideshow/source/inc/smilfunctionparser.hxx92
-rw-r--r--slideshow/source/inc/soundplayer.hxx10
-rw-r--r--slideshow/source/inc/state.hxx6
-rw-r--r--slideshow/source/inc/stringanimation.hxx2
-rw-r--r--slideshow/source/inc/subsettableshapemanager.hxx12
-rw-r--r--slideshow/source/inc/tools.hxx142
-rw-r--r--slideshow/source/inc/transitionfactory.hxx28
-rw-r--r--slideshow/source/inc/transitioninfo.hxx52
-rw-r--r--slideshow/source/inc/unoview.hxx10
-rw-r--r--slideshow/source/inc/unoviewcontainer.hxx18
-rw-r--r--slideshow/source/inc/usereventqueue.hxx82
-rw-r--r--slideshow/source/inc/userpainteventhandler.hxx4
-rw-r--r--slideshow/source/inc/view.hxx10
-rw-r--r--slideshow/source/inc/vieweventhandler.hxx2
-rw-r--r--slideshow/source/inc/viewlayer.hxx16
-rw-r--r--slideshow/source/inc/viewrepainthandler.hxx2
-rw-r--r--slideshow/source/inc/viewupdate.hxx2
-rw-r--r--slideshow/source/inc/wakeupevent.hxx18
-rw-r--r--slideshow/test/demoshow.cxx70
-rw-r--r--slideshow/test/export.map2
-rw-r--r--slideshow/test/slidetest.cxx78
-rw-r--r--slideshow/test/tests.hxx2
-rw-r--r--slideshow/test/testshape.cxx4
-rw-r--r--slideshow/test/testview.cxx4
-rw-r--r--slideshow/test/views.cxx2
-rwxr-xr-xsolenv/bin/build.pl6
-rw-r--r--solenv/bin/modules/installer/control.pm7
-rw-r--r--solenv/bin/modules/installer/download.pm6
-rw-r--r--solenv/bin/modules/installer/epmfile.pm48
-rw-r--r--solenv/bin/modules/installer/simplepackage.pm144
-rwxr-xr-xsolenv/bin/modules/installer/windows/mergemodule.pm46
-rw-r--r--[-rwxr-xr-x]solenv/bin/subsequenttests2
-rw-r--r--solenv/bin/transform_description.pl4
-rw-r--r--solenv/inc/_tg_srs.mk20
-rw-r--r--solenv/inc/minor.mk6
-rw-r--r--solenv/inc/rules.mk2
-rw-r--r--solenv/inc/settings.mk3
-rw-r--r--solenv/inc/target.mk3
-rw-r--r--solenv/inc/tg_config.mk2
-rw-r--r--solenv/inc/tg_help.mk10
-rw-r--r--solenv/inc/tg_srs.mk2
-rwxr-xr-xsolenv/inc/tg_xmerge.mk108
-rwxr-xr-x[-rw-r--r--]solenv/inc/version.hrc2
-rwxr-xr-x[-rw-r--r--]solenv/inc/version_so.hrc4
-rw-r--r--sot/inc/absdev.hxx6
-rw-r--r--sot/inc/agg.hxx8
-rw-r--r--sot/inc/clsids.hxx2
-rw-r--r--sot/inc/filelist.hxx22
-rw-r--r--sot/inc/pch/precompiled_sot.cxx2
-rw-r--r--sot/inc/pch/precompiled_sot.hxx2
-rw-r--r--sot/inc/sot/exchange.hxx138
-rw-r--r--sot/inc/sot/factory.hxx12
-rw-r--r--sot/inc/sot/formats.hxx212
-rw-r--r--sot/inc/sot/object.hxx8
-rw-r--r--sot/inc/sot/sotdata.hxx16
-rw-r--r--sot/inc/sot/sotdllapi.h8
-rw-r--r--sot/inc/sot/sotref.hxx4
-rw-r--r--sot/inc/sot/storage.hxx44
-rw-r--r--sot/inc/stg.hxx40
-rw-r--r--sot/inc/storinfo.hxx2
-rw-r--r--sot/qa/complex/olesimplestorage/OLESimpleStorageUnitTest.java10
-rw-r--r--sot/qa/complex/olesimplestorage/Test01.java18
-rw-r--r--sot/qa/complex/olesimplestorage/TestHelper.java6
-rw-r--r--sot/source/base/exchange.cxx232
-rw-r--r--sot/source/base/factory.cxx2
-rw-r--r--sot/source/base/filelist.cxx22
-rw-r--r--sot/source/base/formats.cxx112
-rw-r--r--sot/source/base/object.cxx42
-rw-r--r--sot/source/sdstor/stg.cxx4
-rw-r--r--sot/source/sdstor/stgavl.cxx4
-rw-r--r--sot/source/sdstor/stgavl.hxx14
-rw-r--r--sot/source/sdstor/stgcache.cxx6
-rw-r--r--sot/source/sdstor/stgcache.hxx94
-rw-r--r--sot/source/sdstor/stgdir.cxx48
-rw-r--r--sot/source/sdstor/stgdir.hxx76
-rw-r--r--sot/source/sdstor/stgelem.cxx120
-rw-r--r--sot/source/sdstor/stgelem.hxx160
-rw-r--r--sot/source/sdstor/stgio.cxx16
-rw-r--r--sot/source/sdstor/stgio.hxx24
-rw-r--r--sot/source/sdstor/stgole.cxx34
-rw-r--r--sot/source/sdstor/stgole.hxx2
-rw-r--r--sot/source/sdstor/stgstrms.cxx6
-rw-r--r--sot/source/sdstor/stgstrms.hxx64
-rw-r--r--sot/source/sdstor/storage.cxx12
-rw-r--r--sot/source/sdstor/storinfo.cxx2
-rw-r--r--sot/source/sdstor/ucbstorage.cxx2
-rw-r--r--sot/source/sdstor/unostorageholder.cxx8
-rw-r--r--sot/source/sdstor/unostorageholder.hxx12
-rw-r--r--sot/source/unoolestorage/register.cxx10
-rw-r--r--sot/source/unoolestorage/xolesimplestorage.cxx44
-rw-r--r--sot/source/unoolestorage/xolesimplestorage.hxx18
-rw-r--r--sot/workben/testsot.cxx2
-rw-r--r--starmath/inc/action.hxx4
-rw-r--r--starmath/inc/applicat.hxx6
-rw-r--r--starmath/inc/config.hxx6
-rw-r--r--starmath/inc/dialog.hxx270
-rw-r--r--starmath/inc/document.hxx102
-rw-r--r--starmath/inc/edit.hxx66
-rwxr-xr-xstarmath/inc/format.hxx150
-rw-r--r--starmath/inc/node.hxx198
-rw-r--r--starmath/inc/parse.hxx244
-rw-r--r--starmath/inc/pch/precompiled_starmath.cxx2
-rw-r--r--starmath/inc/pch/precompiled_starmath.hxx2
-rw-r--r--starmath/inc/rect.hxx120
-rw-r--r--starmath/inc/smdll.hxx2
-rw-r--r--starmath/inc/smmod.hxx12
-rw-r--r--starmath/inc/starmath.hrc1302
-rw-r--r--starmath/inc/symbol.hxx16
-rw-r--r--starmath/inc/toolbox.hxx16
-rw-r--r--starmath/inc/types.hxx4
-rw-r--r--starmath/inc/unomodel.hxx6
-rw-r--r--starmath/inc/utility.hxx116
-rw-r--r--starmath/inc/view.hxx74
-rw-r--r--starmath/sdi/smath.sdi1106
-rw-r--r--starmath/sdi/smitems.sdi156
-rw-r--r--starmath/sdi/smslots.sdi2
-rw-r--r--starmath/source/accessibility.cxx40
-rw-r--r--starmath/source/accessibility.hxx102
-rw-r--r--starmath/source/action.cxx2
-rw-r--r--starmath/source/cfgitem.cxx66
-rw-r--r--starmath/source/cfgitem.hxx2
-rw-r--r--starmath/source/commands.src354
-rw-r--r--starmath/source/config.cxx18
-rw-r--r--starmath/source/detreg.cxx10
-rw-r--r--starmath/source/dialog.cxx198
-rw-r--r--starmath/source/dialog.hrc10
-rw-r--r--starmath/source/document.cxx46
-rw-r--r--starmath/source/edit.cxx34
-rw-r--r--starmath/source/eqnolefilehdr.cxx4
-rw-r--r--starmath/source/eqnolefilehdr.hxx2
-rw-r--r--starmath/source/format.cxx80
-rw-r--r--starmath/source/math_pch.cxx10
-rw-r--r--starmath/source/mathmlexport.cxx2
-rw-r--r--starmath/source/mathmlexport.hxx6
-rw-r--r--starmath/source/mathmlimport.cxx2
-rw-r--r--starmath/source/mathmlimport.hxx16
-rw-r--r--starmath/source/mathtype.cxx34
-rw-r--r--starmath/source/mathtype.hxx10
-rw-r--r--starmath/source/menu_tmpl.src2
-rwxr-xr-xstarmath/source/node.cxx270
-rwxr-xr-xstarmath/source/parse.cxx518
-rw-r--r--starmath/source/rect.cxx116
-rw-r--r--starmath/source/register.cxx10
-rw-r--r--starmath/source/smdetect.cxx2
-rw-r--r--starmath/source/smdetect.hxx2
-rw-r--r--starmath/source/smdll.cxx2
-rw-r--r--starmath/source/smmod.cxx24
-rwxr-xr-xstarmath/source/smres.src8
-rw-r--r--starmath/source/symbol.cxx26
-rw-r--r--starmath/source/symbol.src2
-rw-r--r--starmath/source/toolbox.cxx10
-rw-r--r--starmath/source/toolbox.hrc2
-rw-r--r--starmath/source/typemap.cxx2
-rw-r--r--starmath/source/types.cxx2
-rw-r--r--starmath/source/unodoc.cxx2
-rwxr-xr-xstarmath/source/unomodel.cxx120
-rw-r--r--starmath/source/utility.cxx32
-rwxr-xr-xstarmath/source/view.cxx90
-rw-r--r--starmath/util/hidother.src170
-rw-r--r--stlport/STLport-4.0.patch17
-rw-r--r--stoc/inc/bootstrapservices.hxx10
-rw-r--r--stoc/inc/pch/precompiled_stoc.cxx2
-rw-r--r--stoc/inc/pch/precompiled_stoc.hxx2
-rw-r--r--stoc/inc/stocservices.hxx14
-rw-r--r--stoc/source/bootstrap/bootstrap.xml412
-rw-r--r--stoc/source/bootstrap/services.cxx2
-rw-r--r--stoc/source/corereflection/base.hxx140
-rw-r--r--stoc/source/corereflection/corefl.xml56
-rw-r--r--stoc/source/corereflection/crarray.cxx18
-rw-r--r--stoc/source/corereflection/crbase.cxx32
-rw-r--r--stoc/source/corereflection/crcomp.cxx42
-rw-r--r--stoc/source/corereflection/crefl.cxx4
-rw-r--r--stoc/source/corereflection/crenum.cxx18
-rw-r--r--stoc/source/corereflection/criface.cxx112
-rw-r--r--stoc/source/corereflection/lrucache.hxx38
-rw-r--r--stoc/source/defaultregistry/defaultregistry.cxx370
-rw-r--r--stoc/source/implementationregistration/implreg.cxx496
-rw-r--r--stoc/source/implementationregistration/mergekeys.cxx16
-rw-r--r--stoc/source/implementationregistration/mergekeys.hxx2
-rw-r--r--stoc/source/inspect/insp.xml88
-rw-r--r--stoc/source/inspect/introspection.cxx316
-rw-r--r--stoc/source/invocation/inv.xml106
-rw-r--r--stoc/source/invocation/invocation.cxx246
-rw-r--r--stoc/source/invocation_adapterfactory/iafactory.cxx6
-rw-r--r--stoc/source/invocation_adapterfactory/invadp.xml58
-rw-r--r--stoc/source/javaloader/javaloader.cxx26
-rw-r--r--stoc/source/javaloader/javaloader.xml52
-rw-r--r--stoc/source/javavm/interact.cxx2
-rw-r--r--stoc/source/javavm/interact.hxx2
-rw-r--r--stoc/source/javavm/javavm.cxx22
-rw-r--r--stoc/source/javavm/javavm.hxx2
-rw-r--r--stoc/source/javavm/jen.xml54
-rw-r--r--stoc/source/javavm/jvmargs.cxx6
-rw-r--r--stoc/source/javavm/jvmargs.hxx2
-rw-r--r--stoc/source/loader/dllcomponentloader.cxx32
-rw-r--r--stoc/source/namingservice/namingservice.cxx8
-rw-r--r--stoc/source/namingservice/namingservice.xml50
-rw-r--r--stoc/source/proxy_factory/proxyfac.cxx40
-rw-r--r--stoc/source/proxy_factory/proxyfac.xml44
-rw-r--r--stoc/source/registry_tdprovider/base.hxx42
-rw-r--r--stoc/source/registry_tdprovider/functiondescription.cxx2
-rw-r--r--stoc/source/registry_tdprovider/functiondescription.hxx2
-rw-r--r--stoc/source/registry_tdprovider/methoddescription.cxx2
-rw-r--r--stoc/source/registry_tdprovider/methoddescription.hxx2
-rw-r--r--stoc/source/registry_tdprovider/rdbtdp_tdenumeration.cxx2
-rw-r--r--stoc/source/registry_tdprovider/rdbtdp_tdenumeration.hxx2
-rw-r--r--stoc/source/registry_tdprovider/structtypedescription.cxx2
-rw-r--r--stoc/source/registry_tdprovider/structtypedescription.hxx2
-rw-r--r--stoc/source/registry_tdprovider/td.cxx4
-rw-r--r--stoc/source/registry_tdprovider/tdcomp.cxx18
-rw-r--r--stoc/source/registry_tdprovider/tdconsts.cxx2
-rw-r--r--stoc/source/registry_tdprovider/tdef.cxx4
-rw-r--r--stoc/source/registry_tdprovider/tdenum.cxx14
-rw-r--r--stoc/source/registry_tdprovider/tdiface.cxx52
-rw-r--r--stoc/source/registry_tdprovider/tdmodule.cxx2
-rw-r--r--stoc/source/registry_tdprovider/tdprop.cxx2
-rw-r--r--stoc/source/registry_tdprovider/tdprovider.cxx4
-rw-r--r--stoc/source/registry_tdprovider/tdservice.cxx2
-rw-r--r--stoc/source/registry_tdprovider/tdsingleton.cxx2
-rw-r--r--stoc/source/security/access_controller.cxx100
-rw-r--r--stoc/source/security/file_policy.cxx56
-rw-r--r--stoc/source/security/lru_cache.h32
-rw-r--r--stoc/source/security/permissions.cxx2
-rw-r--r--stoc/source/security/permissions.h12
-rw-r--r--stoc/source/servicemanager/servicemanager.cxx54
-rw-r--r--stoc/source/simpleregistry/simpleregistry.cxx396
-rw-r--r--stoc/source/stocservices/stocserv.xml58
-rw-r--r--stoc/source/stocservices/stocservices.cxx22
-rw-r--r--stoc/source/tdmanager/lrucache.hxx38
-rw-r--r--stoc/source/tdmanager/tdmgr.cxx36
-rw-r--r--stoc/source/tdmanager/tdmgr_check.cxx58
-rw-r--r--stoc/source/tdmanager/tdmgr_common.hxx2
-rw-r--r--stoc/source/tdmanager/tdmgr_tdenumeration.cxx2
-rw-r--r--stoc/source/tdmanager/tdmgr_tdenumeration.hxx2
-rw-r--r--stoc/source/typeconv/convert.cxx144
-rw-r--r--stoc/source/uriproc/ExternalUriReferenceTranslator.cxx2
-rw-r--r--stoc/source/uriproc/ExternalUriReferenceTranslator.hxx2
-rw-r--r--stoc/source/uriproc/UriReference.cxx2
-rw-r--r--stoc/source/uriproc/UriReference.hxx2
-rw-r--r--stoc/source/uriproc/UriReferenceFactory.cxx2
-rw-r--r--stoc/source/uriproc/UriReferenceFactory.hxx2
-rw-r--r--stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTexpand.cxx2
-rw-r--r--stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTexpand.hxx2
-rw-r--r--stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.cxx2
-rw-r--r--stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.hxx2
-rw-r--r--stoc/source/uriproc/VndSunStarPkgUrlReferenceFactory.cxx2
-rw-r--r--stoc/source/uriproc/VndSunStarPkgUrlReferenceFactory.hxx2
-rw-r--r--stoc/source/uriproc/supportsService.cxx2
-rw-r--r--stoc/source/uriproc/supportsService.hxx2
-rw-r--r--stoc/test/excomp/example/ExampleComponent1.idl2
-rw-r--r--stoc/test/excomp/example/ExampleComponent2.idl2
-rw-r--r--stoc/test/excomp/example/XTest.idl4
-rw-r--r--stoc/test/excomp/excomp.cxx6
-rw-r--r--stoc/test/excomp/excomp1.cxx40
-rw-r--r--stoc/test/excomp/excomp1.xml46
-rw-r--r--stoc/test/excomp/excomp2.cxx58
-rw-r--r--stoc/test/excomp/excomp2.xml46
-rw-r--r--stoc/test/javavm/jvm_interaction/interactionhandler.cxx20
-rw-r--r--stoc/test/javavm/testapplet/TestApplet.java6
-rw-r--r--stoc/test/javavm/testcomponent/TestComponent.java20
-rw-r--r--stoc/test/javavm/testjavavm.cxx34
-rw-r--r--stoc/test/javavm/testjavavm.java4
-rw-r--r--stoc/test/language_binding.idl72
-rw-r--r--stoc/test/mergekeys_.cxx2
-rw-r--r--stoc/test/registry_tdprovider/testregistrytdprovider.cxx2
-rw-r--r--stoc/test/registry_tdprovider/types.idl2
-rw-r--r--stoc/test/security/test_security.cxx24
-rw-r--r--stoc/test/tdmanager/testtdmanager.cxx8
-rw-r--r--stoc/test/tdmanager/types.idl4
-rw-r--r--stoc/test/tdmanager/types2_incomp.idl2
-rw-r--r--stoc/test/tdmanager/types3_incomp.idl2
-rw-r--r--stoc/test/tdmanager/types4_incomp.idl4
-rw-r--r--stoc/test/tdmanager/types5.idl6
-rw-r--r--stoc/test/tdmanager/types5_incomp.idl4
-rw-r--r--stoc/test/tdmanager/types6_incomp.idl4
-rw-r--r--stoc/test/testconv.cxx48
-rw-r--r--stoc/test/testcorefl.cxx24
-rw-r--r--stoc/test/testcorefl.idl32
-rw-r--r--stoc/test/testiadapter.cxx112
-rw-r--r--stoc/test/testintrosp.cxx156
-rw-r--r--stoc/test/testintrosp.idl66
-rw-r--r--stoc/test/testloader.cxx4
-rw-r--r--stoc/test/testproxyfac.cxx42
-rw-r--r--stoc/test/testregistry.cxx78
-rw-r--r--stoc/test/testsmgr.cxx4
-rw-r--r--stoc/test/testsmgr2.cxx8
-rw-r--r--stoc/test/testsmgr_cpnt.cxx62
-rw-r--r--stoc/test/uriproc/test_uriproc.cxx2
-rw-r--r--stoc/test/uriproc/version.map2
-rw-r--r--store/inc/pch/precompiled_store.cxx2
-rw-r--r--store/inc/pch/precompiled_store.hxx2
-rw-r--r--store/inc/store/store.h2
-rw-r--r--store/inc/store/store.hxx4
-rw-r--r--store/inc/store/types.h2
-rw-r--r--store/source/lockbyte.cxx2
-rw-r--r--store/source/lockbyte.hxx2
-rw-r--r--store/source/object.cxx2
-rw-r--r--store/source/object.hxx2
-rw-r--r--store/source/storbase.cxx2
-rw-r--r--store/source/storbase.hxx2
-rw-r--r--store/source/storbios.cxx2
-rw-r--r--store/source/storbios.hxx2
-rw-r--r--store/source/storcach.cxx18
-rw-r--r--store/source/storcach.hxx2
-rw-r--r--store/source/stordata.cxx6
-rw-r--r--store/source/stordata.hxx2
-rw-r--r--store/source/stordir.cxx2
-rw-r--r--store/source/stordir.hxx2
-rw-r--r--store/source/store.cxx4
-rw-r--r--store/source/storlckb.cxx2
-rw-r--r--store/source/storlckb.hxx2
-rw-r--r--store/source/storpage.cxx4
-rw-r--r--store/source/storpage.hxx2
-rw-r--r--store/source/stortree.cxx4
-rw-r--r--store/source/stortree.hxx2
-rw-r--r--store/util/store.xml2
-rw-r--r--store/workben/t_base.cxx4
-rw-r--r--store/workben/t_file.cxx2
-rw-r--r--store/workben/t_store.cxx2
-rw-r--r--svl/inc/PasswordHelper.hxx4
-rw-r--r--svl/inc/adrparse.hxx2
-rw-r--r--svl/inc/broadcast.hxx14
-rw-r--r--svl/inc/cntnrsrt.hxx118
-rw-r--r--svl/inc/cntwids.hrc40
-rw-r--r--svl/inc/converter.hxx4
-rw-r--r--svl/inc/filenotation.hxx10
-rw-r--r--svl/inc/folderrestriction.hxx2
-rw-r--r--svl/inc/fstathelper.hxx6
-rw-r--r--svl/inc/inetdef.hxx2
-rw-r--r--svl/inc/inetmsg.hxx2
-rw-r--r--svl/inc/inetstrm.hxx2
-rw-r--r--svl/inc/instrm.hxx2
-rw-r--r--svl/inc/listener.hxx18
-rw-r--r--svl/inc/listeneriter.hxx22
-rw-r--r--svl/inc/lngmisc.hxx14
-rw-r--r--svl/inc/nfsymbol.hxx2
-rw-r--r--svl/inc/numuno.hxx22
-rw-r--r--svl/inc/outstrm.hxx2
-rw-r--r--svl/inc/pch/precompiled_svl.cxx2
-rw-r--r--svl/inc/pch/precompiled_svl.hxx4
-rw-r--r--svl/inc/pickerhelper.hxx2
-rw-r--r--svl/inc/pickerhistory.hxx4
-rw-r--r--svl/inc/pickerhistoryaccess.hxx4
-rw-r--r--svl/inc/poolcach.hxx12
-rw-r--r--svl/inc/strmadpt.hxx2
-rw-r--r--svl/inc/stylepool.hxx2
-rw-r--r--svl/inc/svl/aeitem.hxx28
-rw-r--r--svl/inc/svl/asiancfg.hxx2
-rw-r--r--svl/inc/svl/brdcst.hxx28
-rw-r--r--svl/inc/svl/cancel.hxx42
-rw-r--r--svl/inc/svl/cenumitm.hxx10
-rw-r--r--svl/inc/svl/cintitem.hxx18
-rw-r--r--svl/inc/svl/cjkoptions.hxx2
-rw-r--r--svl/inc/svl/cnclhint.hxx6
-rw-r--r--svl/inc/svl/cntwall.hxx32
-rw-r--r--svl/inc/svl/ctloptions.hxx20
-rw-r--r--svl/inc/svl/ctypeitm.hxx14
-rw-r--r--svl/inc/svl/custritm.hxx6
-rw-r--r--svl/inc/svl/dateitem.hxx24
-rw-r--r--svl/inc/svl/documentlockfile.hxx2
-rw-r--r--svl/inc/svl/eitem.hxx2
-rw-r--r--svl/inc/svl/filerec.hxx340
-rw-r--r--svl/inc/svl/flagitem.hxx20
-rw-r--r--svl/inc/svl/globalnameitem.hxx14
-rw-r--r--svl/inc/svl/hint.hxx6
-rw-r--r--svl/inc/svl/httpcook.hxx8
-rw-r--r--svl/inc/svl/ilstitem.hxx4
-rw-r--r--svl/inc/svl/imageitm.hxx6
-rw-r--r--svl/inc/svl/inethist.hxx2
-rw-r--r--svl/inc/svl/inettype.hxx4
-rw-r--r--svl/inc/svl/intitem.hxx6
-rw-r--r--svl/inc/svl/isethint.hxx8
-rw-r--r--svl/inc/svl/itemiter.hxx8
-rw-r--r--svl/inc/svl/itempool.hxx190
-rw-r--r--svl/inc/svl/itemprop.hxx20
-rw-r--r--svl/inc/svl/itemset.hxx92
-rw-r--r--svl/inc/svl/languageoptions.hxx34
-rw-r--r--svl/inc/svl/lckbitem.hxx18
-rw-r--r--svl/inc/svl/lockfilecommon.hxx4
-rw-r--r--svl/inc/svl/lstner.hxx22
-rw-r--r--svl/inc/svl/macitem.hxx28
-rw-r--r--svl/inc/svl/mailenum.hxx22
-rw-r--r--svl/inc/svl/memberid.hrc12
-rw-r--r--svl/inc/svl/metitem.hxx6
-rw-r--r--svl/inc/svl/nfkeytab.hxx2
-rw-r--r--svl/inc/svl/nfversi.hxx40
-rw-r--r--svl/inc/svl/nranges.hxx30
-rw-r--r--svl/inc/svl/ondemand.hxx2
-rw-r--r--svl/inc/svl/ownlist.hxx16
-rw-r--r--svl/inc/svl/poolitem.hxx46
-rw-r--r--svl/inc/svl/ptitem.hxx18
-rw-r--r--svl/inc/svl/rectitem.hxx18
-rw-r--r--svl/inc/svl/restrictedpaths.hxx2
-rw-r--r--svl/inc/svl/rngitem.hxx42
-rw-r--r--svl/inc/svl/sfontitm.hxx4
-rw-r--r--svl/inc/svl/sharecontrolfile.hxx2
-rw-r--r--svl/inc/svl/slstitm.hxx26
-rw-r--r--svl/inc/svl/smplhint.hxx52
-rw-r--r--svl/inc/svl/solar.hrc154
-rw-r--r--svl/inc/svl/srchcfg.hxx8
-rw-r--r--svl/inc/svl/srchdefs.hxx8
-rw-r--r--svl/inc/svl/srchitem.hxx160
-rw-r--r--svl/inc/svl/stritem.hxx2
-rw-r--r--svl/inc/svl/style.hrc12
-rw-r--r--svl/inc/svl/style.hxx148
-rw-r--r--svl/inc/svl/svarray.hxx112
-rw-r--r--svl/inc/svl/svdde.hxx4
-rw-r--r--svl/inc/svl/svl.hrc242
-rw-r--r--svl/inc/svl/svldata.hxx8
-rw-r--r--svl/inc/svl/svldllapi.h2
-rw-r--r--svl/inc/svl/svstdarr.hxx14
-rw-r--r--svl/inc/svl/szitem.hxx18
-rw-r--r--svl/inc/svl/undo.hxx136
-rw-r--r--svl/inc/svl/urlfilter.hxx4
-rw-r--r--svl/inc/svl/visitem.hxx8
-rw-r--r--svl/inc/svl/zforlist.hxx268
-rw-r--r--svl/inc/svl/zformat.hxx6
-rw-r--r--svl/inc/urihelper.hxx2
-rw-r--r--svl/inc/urlbmk.hxx16
-rw-r--r--svl/inc/whiter.hxx6
-rw-r--r--svl/inc/xmlement.hxx6
-rw-r--r--svl/qa/complex/ConfigItems/CheckConfigItems.java28
-rw-r--r--svl/qa/complex/ConfigItems/helper/AccessibilityOptTest.cxx60
-rw-r--r--svl/qa/complex/ConfigItems/helper/AccessibilityOptTest.hxx4
-rw-r--r--svl/qa/complex/ConfigItems/helper/ConfigItemTest.cxx16
-rw-r--r--svl/qa/complex/ConfigItems/helper/HistoryOptTest.cxx112
-rw-r--r--svl/qa/complex/ConfigItems/helper/HistoryOptTest.hxx2
-rw-r--r--svl/qa/complex/ConfigItems/helper/PrintOptTest.cxx44
-rw-r--r--svl/qa/complex/ConfigItems/helper/PrintOptTest.hxx26
-rw-r--r--svl/qa/complex/ConfigItems/helper/UserOptTest.cxx46
-rw-r--r--svl/qa/complex/ConfigItems/helper/UserOptTest.hxx2
-rw-r--r--svl/qa/complex/passwordcontainer/MasterPasswdHandler.java6
-rw-r--r--svl/qa/complex/passwordcontainer/PasswordContainerTest.java2
-rw-r--r--svl/qa/complex/passwordcontainer/PasswordContainerUnitTest.java10
-rw-r--r--svl/qa/complex/passwordcontainer/Test01.java24
-rw-r--r--svl/qa/complex/passwordcontainer/Test02.java40
-rw-r--r--svl/qa/complex/passwordcontainer/Test03.java40
-rw-r--r--svl/qa/complex/passwordcontainer/TestHelper.java16
-rw-r--r--svl/qa/export.map2
-rw-r--r--svl/qa/test_URIHelper.cxx2
-rw-r--r--svl/source/config/asiancfg.cxx30
-rw-r--r--svl/source/config/cjkoptions.cxx14
-rw-r--r--svl/source/config/ctloptions.cxx56
-rw-r--r--svl/source/config/itemholder2.cxx2
-rw-r--r--svl/source/config/itemholder2.hxx2
-rw-r--r--svl/source/config/languageoptions.cxx6
-rw-r--r--svl/source/config/srchcfg.cxx6
-rw-r--r--svl/source/filepicker/pickerhelper.cxx22
-rw-r--r--svl/source/filepicker/pickerhistory.cxx12
-rw-r--r--svl/source/filerec/filerec.cxx120
-rw-r--r--svl/source/fsstor/fsfactory.cxx24
-rw-r--r--svl/source/fsstor/fsstorage.cxx84
-rw-r--r--svl/source/fsstor/fsstorage.hxx38
-rw-r--r--svl/source/fsstor/oinputstreamcontainer.cxx16
-rw-r--r--svl/source/fsstor/oinputstreamcontainer.hxx10
-rw-r--r--svl/source/fsstor/ostreamcontainer.cxx48
-rw-r--r--svl/source/fsstor/ostreamcontainer.hxx26
-rw-r--r--svl/source/inc/fsfactory.hxx4
-rw-r--r--svl/source/inc/passwordcontainer.hxx110
-rw-r--r--svl/source/inc/poolio.hxx86
-rw-r--r--svl/source/items/aeitem.cxx4
-rw-r--r--svl/source/items/cenumitm.cxx2
-rw-r--r--svl/source/items/cintitem.cxx2
-rw-r--r--svl/source/items/cntwall.cxx2
-rw-r--r--svl/source/items/cstitem.src2
-rw-r--r--svl/source/items/ctypeitm.cxx6
-rw-r--r--svl/source/items/custritm.cxx2
-rw-r--r--svl/source/items/dateitem.cxx22
-rw-r--r--svl/source/items/eitem.cxx2
-rw-r--r--svl/source/items/flagitem.cxx12
-rw-r--r--svl/source/items/globalnameitem.cxx4
-rw-r--r--svl/source/items/ilstitem.cxx2
-rw-r--r--svl/source/items/imageitm.cxx4
-rw-r--r--svl/source/items/intitem.cxx2
-rw-r--r--svl/source/items/itemiter.cxx4
-rw-r--r--svl/source/items/itempool.cxx6
-rw-r--r--svl/source/items/itemprop.cxx34
-rw-r--r--svl/source/items/itemset.cxx142
-rw-r--r--svl/source/items/lckbitem.cxx10
-rw-r--r--svl/source/items/macitem.cxx12
-rw-r--r--svl/source/items/nranges.cxx50
-rw-r--r--svl/source/items/poolcach.cxx8
-rw-r--r--svl/source/items/poolio.cxx162
-rw-r--r--svl/source/items/poolitem.cxx40
-rw-r--r--svl/source/items/ptitem.cxx18
-rw-r--r--svl/source/items/rectitem.cxx12
-rw-r--r--svl/source/items/rngitem.cxx4
-rw-r--r--svl/source/items/rngitem_inc.cxx22
-rw-r--r--svl/source/items/sfontitm.cxx2
-rw-r--r--svl/source/items/sitem.cxx2
-rw-r--r--svl/source/items/slstitm.cxx20
-rw-r--r--svl/source/items/srchitem.cxx142
-rw-r--r--svl/source/items/stritem.cxx2
-rw-r--r--svl/source/items/style.cxx32
-rw-r--r--svl/source/items/stylepool.cxx2
-rw-r--r--svl/source/items/szitem.cxx12
-rw-r--r--svl/source/items/visitem.cxx2
-rw-r--r--svl/source/items/whassert.hxx24
-rw-r--r--svl/source/items/whiter.cxx2
-rw-r--r--svl/source/memtools/svarray.cxx6
-rw-r--r--svl/source/misc/PasswordHelper.cxx2
-rw-r--r--svl/source/misc/adrparse.cxx2
-rw-r--r--svl/source/misc/documentlockfile.cxx2
-rw-r--r--svl/source/misc/filenotation.cxx4
-rw-r--r--svl/source/misc/folderrestriction.cxx2
-rw-r--r--svl/source/misc/fstathelper.cxx2
-rw-r--r--svl/source/misc/inethist.cxx2
-rw-r--r--svl/source/misc/inettype.cxx8
-rw-r--r--svl/source/misc/lngmisc.cxx4
-rw-r--r--svl/source/misc/lockfilecommon.cxx2
-rw-r--r--svl/source/misc/mediatyp.src2
-rw-r--r--svl/source/misc/ownlist.cxx170
-rw-r--r--svl/source/misc/restrictedpaths.cxx4
-rw-r--r--svl/source/misc/sharecontrolfile.cxx2
-rw-r--r--svl/source/misc/strmadpt.cxx8
-rw-r--r--svl/source/misc/svldata.cxx2
-rw-r--r--svl/source/misc/urihelper.cxx2
-rw-r--r--svl/source/notify/brdcst.cxx2
-rw-r--r--svl/source/notify/broadcast.cxx24
-rw-r--r--svl/source/notify/cancel.cxx14
-rw-r--r--svl/source/notify/hint.cxx2
-rw-r--r--svl/source/notify/isethint.cxx10
-rw-r--r--svl/source/notify/listener.cxx2
-rw-r--r--svl/source/notify/listenerbase.cxx2
-rw-r--r--svl/source/notify/listenerbase.hxx14
-rw-r--r--svl/source/notify/listeneriter.cxx10
-rw-r--r--svl/source/notify/lstner.cxx2
-rw-r--r--svl/source/notify/smplhint.cxx2
-rw-r--r--svl/source/numbers/nbdll.cxx2
-rw-r--r--svl/source/numbers/numfmuno.cxx114
-rw-r--r--svl/source/numbers/numfmuno.hxx38
-rw-r--r--svl/source/numbers/numhead.cxx20
-rw-r--r--svl/source/numbers/numhead.hxx52
-rw-r--r--svl/source/numbers/numuno.cxx12
-rw-r--r--svl/source/numbers/supservs.cxx6
-rw-r--r--svl/source/numbers/supservs.hxx16
-rw-r--r--svl/source/numbers/zforfind.cxx2
-rw-r--r--svl/source/numbers/zforfind.hxx2
-rw-r--r--svl/source/numbers/zforlist.cxx474
-rw-r--r--svl/source/numbers/zformat.cxx8
-rw-r--r--svl/source/numbers/zforscan.cxx638
-rw-r--r--svl/source/numbers/zforscan.hxx104
-rw-r--r--svl/source/passwordcontainer/passwordcontainer.cxx2
-rw-r--r--svl/source/passwordcontainer/syscreds.cxx46
-rw-r--r--svl/source/passwordcontainer/syscreds.hxx14
-rw-r--r--svl/source/svdde/ddecli.cxx8
-rw-r--r--svl/source/svdde/ddedata.cxx2
-rw-r--r--svl/source/svdde/ddedll.cxx4
-rw-r--r--svl/source/svdde/ddeimp.hxx28
-rw-r--r--svl/source/svdde/ddeinf.cxx2
-rw-r--r--svl/source/svdde/ddeml1.cxx186
-rw-r--r--svl/source/svdde/ddeml2.cxx42
-rw-r--r--svl/source/svdde/ddemldeb.cxx2
-rw-r--r--svl/source/svdde/ddemldeb.hxx2
-rw-r--r--svl/source/svdde/ddemlimp.hxx332
-rw-r--r--svl/source/svdde/ddemlos2.h62
-rw-r--r--svl/source/svdde/ddestrg.cxx2
-rw-r--r--svl/source/svdde/ddesvr.cxx4
-rw-r--r--svl/source/svdde/ddewrap.cxx12
-rw-r--r--svl/source/svdde/ddewrap.hxx6
-rw-r--r--svl/source/svsql/converter.cxx2
-rw-r--r--svl/source/undo/undo.cxx26
-rw-r--r--svl/source/uno/pathservice.cxx2
-rw-r--r--svl/source/uno/registerservices.cxx4
-rw-r--r--svl/unx/inc/convert.hxx24
-rw-r--r--svl/unx/source/svdde/ddedummy.cxx10
-rw-r--r--svtools/bmpmaker/bmp.cxx40
-rw-r--r--svtools/bmpmaker/bmp.hrc32
-rw-r--r--svtools/bmpmaker/bmp.src2
-rw-r--r--svtools/bmpmaker/bmpcore.cxx22
-rw-r--r--svtools/bmpmaker/bmpcore.hxx50
-rw-r--r--svtools/bmpmaker/bmpsum.cxx12
-rw-r--r--svtools/bmpmaker/g2g.cxx30
-rw-r--r--svtools/inc/DocumentInfoPreview.hxx14
-rw-r--r--svtools/inc/QueryFolderName.hxx16
-rw-r--r--svtools/inc/acceleratorexecute.hxx8
-rw-r--r--svtools/inc/addresstemplate.hxx50
-rw-r--r--svtools/inc/apearcfg.hxx42
-rw-r--r--svtools/inc/asynclink.hxx2
-rw-r--r--svtools/inc/calendar.hxx362
-rw-r--r--svtools/inc/cliplistener.hxx8
-rw-r--r--svtools/inc/collatorres.hxx4
-rw-r--r--svtools/inc/contextmenuhelper.hxx24
-rw-r--r--svtools/inc/controldims.hrc82
-rw-r--r--svtools/inc/ctrlbox.hxx244
-rw-r--r--svtools/inc/ctrltool.hxx116
-rw-r--r--svtools/inc/dialogclosedlistener.hxx2
-rw-r--r--svtools/inc/dialogcontrolling.hxx2
-rw-r--r--svtools/inc/expander.hxx76
-rw-r--r--svtools/inc/extcolorcfg.hxx42
-rw-r--r--svtools/inc/filectrl.hxx66
-rw-r--r--svtools/inc/filedlg.hxx72
-rw-r--r--svtools/inc/filedlg2.hrc32
-rw-r--r--svtools/inc/fileview.hxx68
-rw-r--r--svtools/inc/fltdefs.hxx94
-rw-r--r--svtools/inc/fontsubstconfig.hxx30
-rw-r--r--svtools/inc/framestatuslistener.hxx18
-rw-r--r--svtools/inc/helpagentwindow.hxx20
-rw-r--r--svtools/inc/htmlkywd.hxx2
-rw-r--r--svtools/inc/htmltokn.h134
-rw-r--r--svtools/inc/imagemgr.hrc16
-rw-r--r--svtools/inc/imagemgr.hxx52
-rw-r--r--svtools/inc/imageresourceaccess.hxx2
-rw-r--r--svtools/inc/imgdef.hxx8
-rw-r--r--svtools/inc/indexentryres.hxx2
-rw-r--r--svtools/inc/inetimg.hxx38
-rw-r--r--svtools/inc/itemdel.hxx2
-rw-r--r--svtools/inc/ivctrl.hxx350
-rw-r--r--svtools/inc/localresaccess.hxx6
-rw-r--r--svtools/inc/pch/precompiled_svtools.cxx2
-rw-r--r--svtools/inc/pch/precompiled_svtools.hxx4
-rw-r--r--svtools/inc/prgsbar.hxx40
-rw-r--r--svtools/inc/roadmap.hxx28
-rw-r--r--svtools/inc/rtfkeywd.hxx2
-rw-r--r--svtools/inc/rtfout.hxx6
-rw-r--r--svtools/inc/rtftoken.h74
-rw-r--r--svtools/inc/ruler.hxx19
-rw-r--r--svtools/inc/scriptedtext.hxx2
-rw-r--r--svtools/inc/scrwin.hxx66
-rw-r--r--svtools/inc/sfxecode.hxx124
-rw-r--r--svtools/inc/soerr.hxx72
-rw-r--r--svtools/inc/sores.hxx290
-rw-r--r--svtools/inc/statusbarcontroller.hxx36
-rw-r--r--svtools/inc/stdmenu.hxx84
-rw-r--r--svtools/inc/svtools/AccessibleBrowseBoxObjType.hxx2
-rw-r--r--svtools/inc/svtools/FilterConfigItem.hxx28
-rw-r--r--svtools/inc/svtools/accessibilityoptions.hxx40
-rwxr-xr-xsvtools/inc/svtools/accessiblefactory.hxx2
-rwxr-xr-xsvtools/inc/svtools/accessibletable.hxx32
-rw-r--r--svtools/inc/svtools/accessibletableprovider.hxx100
-rw-r--r--svtools/inc/svtools/brwbox.hxx206
-rw-r--r--svtools/inc/svtools/brwhead.hxx6
-rw-r--r--svtools/inc/svtools/chartprettypainter.hxx4
-rw-r--r--svtools/inc/svtools/colctrl.hxx72
-rw-r--r--svtools/inc/svtools/colorcfg.hxx8
-rw-r--r--svtools/inc/svtools/colrdlg.hxx76
-rw-r--r--svtools/inc/svtools/editbrowsebox.hxx116
-rw-r--r--svtools/inc/svtools/editimplementation.hxx2
-rw-r--r--svtools/inc/svtools/editsyntaxhighlighter.hxx12
-rw-r--r--svtools/inc/svtools/ehdl.hxx2
-rw-r--r--svtools/inc/svtools/embedhlp.hxx12
-rw-r--r--svtools/inc/svtools/embedtransfer.hxx8
-rw-r--r--svtools/inc/svtools/extensionlistbox.hxx2
-rw-r--r--svtools/inc/svtools/fileurlbox.hxx10
-rw-r--r--svtools/inc/svtools/filter.hxx344
-rw-r--r--svtools/inc/svtools/fixedhyper.hxx2
-rw-r--r--svtools/inc/svtools/fltcall.hxx16
-rw-r--r--svtools/inc/svtools/fmtfield.hxx178
-rw-r--r--svtools/inc/svtools/generictoolboxcontroller.hxx10
-rw-r--r--svtools/inc/svtools/genericunodialog.hxx44
-rw-r--r--svtools/inc/svtools/grfmgr.hxx424
-rw-r--r--svtools/inc/svtools/headbar.hxx358
-rw-r--r--svtools/inc/svtools/helpid.hrc112
-rw-r--r--svtools/inc/svtools/helpopt.hxx24
-rw-r--r--svtools/inc/svtools/htmlcfg.hxx46
-rw-r--r--svtools/inc/svtools/htmlout.hxx10
-rw-r--r--svtools/inc/svtools/hyperlabel.hxx18
-rw-r--r--svtools/inc/svtools/imap.hxx62
-rw-r--r--svtools/inc/svtools/imapcirc.hxx28
-rw-r--r--svtools/inc/svtools/imapobj.hxx108
-rw-r--r--svtools/inc/svtools/imappoly.hxx36
-rw-r--r--svtools/inc/svtools/imaprect.hxx24
-rw-r--r--svtools/inc/svtools/inettbc.hxx58
-rw-r--r--svtools/inc/svtools/insdlg.hxx4
-rw-r--r--svtools/inc/svtools/javacontext.hxx10
-rw-r--r--svtools/inc/svtools/javainteractionhandler.hxx6
-rw-r--r--svtools/inc/svtools/langtab.hxx12
-rw-r--r--svtools/inc/svtools/menuoptions.hxx72
-rw-r--r--svtools/inc/svtools/miscopt.hxx66
-rw-r--r--svtools/inc/svtools/optionsdrawinglayer.hxx160
-rw-r--r--svtools/inc/svtools/parhtml.hxx118
-rw-r--r--svtools/inc/svtools/parrtf.hxx12
-rw-r--r--svtools/inc/svtools/popupmenucontrollerbase.hxx24
-rw-r--r--svtools/inc/svtools/popupwindowcontroller.hxx4
-rw-r--r--svtools/inc/svtools/printdlg.hxx158
-rw-r--r--svtools/inc/svtools/printoptions.hxx22
-rw-r--r--svtools/inc/svtools/prnsetup.hxx60
-rw-r--r--svtools/inc/svtools/roadmapwizard.hxx10
-rw-r--r--svtools/inc/svtools/stdctrl.hxx2
-rw-r--r--svtools/inc/svtools/stringtransfer.hxx16
-rw-r--r--svtools/inc/svtools/svicnvw.hxx234
-rw-r--r--svtools/inc/svtools/svlbitm.hxx182
-rw-r--r--svtools/inc/svtools/svlbox.hxx418
-rw-r--r--svtools/inc/svtools/svmedit.hxx114
-rw-r--r--svtools/inc/svtools/svmedit2.hxx14
-rw-r--r--svtools/inc/svtools/svparser.hxx76
-rw-r--r--svtools/inc/svtools/svtabbx.hxx166
-rw-r--r--svtools/inc/svtools/svtdata.hxx6
-rw-r--r--svtools/inc/svtools/svtdllapi.h2
-rw-r--r--svtools/inc/svtools/svtools.hrc546
-rw-r--r--svtools/inc/svtools/svtreebx.hxx381
-rw-r--r--svtools/inc/svtools/svxbox.hxx106
-rw-r--r--svtools/inc/svtools/syntaxhighlight.hxx32
-rw-r--r--svtools/inc/svtools/table/abstracttablecontrol.hxx4
-rw-r--r--svtools/inc/svtools/table/defaultinputhandler.hxx4
-rw-r--r--svtools/inc/svtools/table/gridtablerenderer.hxx4
-rw-r--r--svtools/inc/svtools/table/tablecontrol.hxx30
-rw-r--r--svtools/inc/svtools/table/tabledatawindow.hxx44
-rw-r--r--svtools/inc/svtools/table/tableinputhandler.hxx2
-rw-r--r--svtools/inc/svtools/table/tablemodel.hxx34
-rw-r--r--svtools/inc/svtools/table/tablerenderer.hxx4
-rw-r--r--svtools/inc/svtools/table/tabletypes.hxx2
-rw-r--r--svtools/inc/svtools/textdata.hxx142
-rw-r--r--svtools/inc/svtools/texteng.hxx338
-rw-r--r--svtools/inc/svtools/textview.hxx152
-rw-r--r--svtools/inc/svtools/textwindowpeer.hxx2
-rw-r--r--svtools/inc/svtools/toolbarmenu.hxx80
-rw-r--r--svtools/inc/svtools/toolboxcontroller.hxx26
-rwxr-xr-xsvtools/inc/svtools/toolpanel/decklayouter.hxx2
-rw-r--r--svtools/inc/svtools/toolpanel/drawerlayouter.hxx2
-rw-r--r--svtools/inc/svtools/toolpanel/paneltabbar.hxx2
-rw-r--r--svtools/inc/svtools/toolpanel/refbase.hxx2
-rw-r--r--svtools/inc/svtools/toolpanel/tabalignment.hxx2
-rw-r--r--svtools/inc/svtools/toolpanel/tabitemcontent.hxx2
-rwxr-xr-xsvtools/inc/svtools/toolpanel/tablayouter.hxx2
-rw-r--r--svtools/inc/svtools/toolpanel/toolpanel.hxx2
-rwxr-xr-xsvtools/inc/svtools/toolpanel/toolpaneldeck.hxx2
-rw-r--r--svtools/inc/svtools/transfer.hxx302
-rw-r--r--svtools/inc/svtools/treelist.hxx324
-rw-r--r--svtools/inc/svtools/ttprops.hxx32
-rw-r--r--svtools/inc/svtools/unitconv.hxx88
-rw-r--r--svtools/inc/svtools/urlcontrol.hxx10
-rw-r--r--svtools/inc/svtools/valueset.hxx326
-rw-r--r--svtools/inc/svtools/wizardmachine.hxx82
-rw-r--r--svtools/inc/svtools/wizdlg.hxx108
-rw-r--r--svtools/inc/svtools/wmf.hxx2
-rw-r--r--svtools/inc/svtools/xtextedt.hxx30
-rwxr-xr-xsvtools/inc/svtools/xwindowitem.hxx2
-rw-r--r--svtools/inc/sychconv.hxx4
-rw-r--r--svtools/inc/tabbar.hxx10
-rw-r--r--svtools/inc/taskbar.hxx2
-rw-r--r--svtools/inc/templatefoldercache.hxx10
-rw-r--r--svtools/inc/templdlg.hxx38
-rw-r--r--svtools/inc/testtool.hxx2
-rw-r--r--svtools/inc/tooltiplbox.hxx2
-rw-r--r--svtools/inc/txtattr.hxx108
-rw-r--r--svtools/inc/txtcmp.hxx2
-rw-r--r--svtools/inc/unoevent.hxx128
-rw-r--r--svtools/inc/unoimap.hxx2
-rw-r--r--svtools/inc/wallitem.hxx8
-rw-r--r--svtools/source/brwbox/brwbox1.cxx48
-rw-r--r--svtools/source/brwbox/brwbox2.cxx26
-rw-r--r--svtools/source/brwbox/brwbox3.cxx22
-rw-r--r--svtools/source/brwbox/brwhead.cxx4
-rw-r--r--svtools/source/brwbox/brwimpl.hxx6
-rw-r--r--svtools/source/brwbox/datwin.cxx4
-rw-r--r--svtools/source/brwbox/datwin.hxx114
-rw-r--r--svtools/source/brwbox/ebbcontrols.cxx14
-rw-r--r--svtools/source/brwbox/editbrowsebox.cxx86
-rw-r--r--svtools/source/brwbox/editbrowsebox.hrc20
-rw-r--r--svtools/source/brwbox/editbrowsebox.src2
-rw-r--r--svtools/source/brwbox/editbrowsebox2.cxx18
-rw-r--r--svtools/source/brwbox/editbrowseboximpl.hxx4
-rw-r--r--svtools/source/config/accessibilityoptions.cxx72
-rw-r--r--svtools/source/config/apearcfg.cxx26
-rw-r--r--svtools/source/config/colorcfg.cxx16
-rw-r--r--svtools/source/config/extcolorcfg.cxx64
-rw-r--r--svtools/source/config/fontsubstconfig.cxx20
-rw-r--r--svtools/source/config/helpopt.cxx116
-rw-r--r--svtools/source/config/htmlcfg.cxx102
-rw-r--r--svtools/source/config/itemholder2.cxx2
-rw-r--r--svtools/source/config/itemholder2.hxx2
-rw-r--r--svtools/source/config/menuoptions.cxx192
-rw-r--r--svtools/source/config/miscopt.cxx146
-rw-r--r--svtools/source/config/optionsdrawinglayer.cxx410
-rw-r--r--svtools/source/config/printoptions.cxx38
-rw-r--r--svtools/source/config/test/test.cxx32
-rw-r--r--svtools/source/contnr/cont_pch.cxx2
-rw-r--r--svtools/source/contnr/contentenumeration.cxx28
-rw-r--r--svtools/source/contnr/contentenumeration.hxx4
-rw-r--r--svtools/source/contnr/ctrdll.cxx2
-rw-r--r--svtools/source/contnr/fileview.hrc6
-rw-r--r--svtools/source/contnr/fileview.src2
-rw-r--r--svtools/source/contnr/imivctl.hxx568
-rw-r--r--svtools/source/contnr/imivctl1.cxx88
-rw-r--r--svtools/source/contnr/imivctl2.cxx18
-rw-r--r--svtools/source/contnr/ivctrl.cxx14
-rw-r--r--svtools/source/contnr/svcontnr.src2
-rw-r--r--svtools/source/contnr/svicnvw.cxx4
-rw-r--r--svtools/source/contnr/svimpbox.cxx116
-rw-r--r--svtools/source/contnr/svimpicn.cxx126
-rw-r--r--svtools/source/contnr/svlbitm.cxx60
-rw-r--r--svtools/source/contnr/svlbox.cxx54
-rw-r--r--svtools/source/contnr/svtabbx.cxx16
-rw-r--r--svtools/source/contnr/svtreebx.cxx33
-rw-r--r--svtools/source/contnr/templwin.cxx116
-rw-r--r--svtools/source/contnr/templwin.hrc50
-rw-r--r--svtools/source/contnr/templwin.hxx260
-rw-r--r--svtools/source/contnr/templwin.src4
-rw-r--r--svtools/source/contnr/tooltiplbox.cxx2
-rw-r--r--svtools/source/contnr/treelist.cxx34
-rw-r--r--svtools/source/control/asynclink.cxx2
-rwxr-xr-xsvtools/source/control/calendar.cxx434
-rwxr-xr-xsvtools/source/control/calendar.src2
-rwxr-xr-xsvtools/source/control/collatorres.cxx22
-rwxr-xr-xsvtools/source/control/ctrlbox.cxx18
-rwxr-xr-xsvtools/source/control/ctrlbox.src2
-rw-r--r--svtools/source/control/ctrldll.cxx2
-rwxr-xr-xsvtools/source/control/ctrltool.cxx102
-rwxr-xr-xsvtools/source/control/ctrltool.src2
-rw-r--r--svtools/source/control/filectrl.cxx2
-rw-r--r--svtools/source/control/filectrl.src2
-rw-r--r--svtools/source/control/filectrl2.cxx2
-rw-r--r--svtools/source/control/fileurlbox.cxx4
-rw-r--r--svtools/source/control/fixedhyper.cxx2
-rw-r--r--svtools/source/control/fmtfield.cxx96
-rw-r--r--svtools/source/control/headbar.cxx186
-rw-r--r--svtools/source/control/hyperlabel.cxx44
-rwxr-xr-xsvtools/source/control/indexentryres.cxx14
-rw-r--r--svtools/source/control/inettbc.cxx26
-rw-r--r--svtools/source/control/prgsbar.cxx10
-rw-r--r--svtools/source/control/roadmap.cxx74
-rw-r--r--svtools/source/control/ruler.cxx74
-rw-r--r--svtools/source/control/scriptedtext.cxx2
-rw-r--r--svtools/source/control/scrwin.cxx12
-rw-r--r--svtools/source/control/stdctrl.cxx2
-rw-r--r--svtools/source/control/stdmenu.cxx44
-rw-r--r--svtools/source/control/svxbox.cxx48
-rwxr-xr-xsvtools/source/control/tabbar.cxx6
-rw-r--r--svtools/source/control/taskbar.cxx102
-rw-r--r--svtools/source/control/taskbox.cxx2
-rw-r--r--svtools/source/control/taskmisc.cxx128
-rw-r--r--svtools/source/control/taskstat.cxx2
-rw-r--r--svtools/source/control/toolbarmenu.cxx52
-rw-r--r--svtools/source/control/toolbarmenuacc.cxx4
-rw-r--r--svtools/source/control/toolbarmenuimp.hxx14
-rw-r--r--svtools/source/control/urlcontrol.cxx4
-rw-r--r--svtools/source/control/valueacc.cxx8
-rwxr-xr-xsvtools/source/control/valueimp.hxx38
-rw-r--r--svtools/source/control/valueset.cxx280
-rw-r--r--svtools/source/dialogs/addresstemplate.cxx158
-rw-r--r--svtools/source/dialogs/addresstemplate.hrc100
-rw-r--r--svtools/source/dialogs/addresstemplate.src30
-rw-r--r--svtools/source/dialogs/colctrl.cxx58
-rw-r--r--svtools/source/dialogs/colrdlg.cxx58
-rw-r--r--svtools/source/dialogs/colrdlg.hrc2
-rw-r--r--svtools/source/dialogs/colrdlg.src2
-rw-r--r--svtools/source/dialogs/filedlg.cxx2
-rw-r--r--svtools/source/dialogs/filedlg2.cxx46
-rw-r--r--svtools/source/dialogs/filedlg2.hxx104
-rw-r--r--svtools/source/dialogs/filedlg2.src2
-rw-r--r--svtools/source/dialogs/formats.src2
-rw-r--r--svtools/source/dialogs/insdlg.cxx18
-rw-r--r--svtools/source/dialogs/mcvmath.cxx2
-rw-r--r--svtools/source/dialogs/mcvmath.hxx10
-rw-r--r--svtools/source/dialogs/printdlg.cxx64
-rw-r--r--svtools/source/dialogs/printdlg.hrc28
-rw-r--r--svtools/source/dialogs/printdlg.src2
-rw-r--r--svtools/source/dialogs/prnsetup.cxx46
-rw-r--r--svtools/source/dialogs/prnsetup.hrc34
-rw-r--r--svtools/source/dialogs/prnsetup.src2
-rw-r--r--svtools/source/dialogs/propctrl.cxx18
-rw-r--r--svtools/source/dialogs/propctrl.hxx6
-rw-r--r--svtools/source/dialogs/property.cxx100
-rw-r--r--svtools/source/dialogs/roadmapwizard.cxx6
-rw-r--r--svtools/source/dialogs/so3res.src8
-rw-r--r--svtools/source/dialogs/wizardmachine.cxx24
-rw-r--r--svtools/source/dialogs/wizardmachine.src2
-rw-r--r--svtools/source/dialogs/wizdlg.cxx4
-rw-r--r--svtools/source/edit/editsyntaxhighlighter.cxx46
-rw-r--r--svtools/source/edit/svmedit.cxx182
-rw-r--r--svtools/source/edit/svmedit2.cxx2
-rw-r--r--svtools/source/edit/sychconv.cxx68
-rw-r--r--svtools/source/edit/syntaxhighlight.cxx174
-rw-r--r--svtools/source/edit/textdat2.hxx188
-rw-r--r--svtools/source/edit/textdata.cxx8
-rw-r--r--svtools/source/edit/textdoc.cxx82
-rw-r--r--svtools/source/edit/textdoc.hxx100
-rw-r--r--svtools/source/edit/texteng.cxx180
-rw-r--r--svtools/source/edit/textund2.hxx82
-rw-r--r--svtools/source/edit/textundo.cxx44
-rw-r--r--svtools/source/edit/textundo.hxx38
-rw-r--r--svtools/source/edit/textview.cxx230
-rw-r--r--svtools/source/edit/textwindowpeer.cxx2
-rw-r--r--svtools/source/edit/txtattr.cxx2
-rw-r--r--svtools/source/edit/xtextedt.cxx20
-rw-r--r--svtools/source/filter.vcl/filter/FilterConfigCache.cxx16
-rw-r--r--svtools/source/filter.vcl/filter/FilterConfigCache.hxx98
-rw-r--r--svtools/source/filter.vcl/filter/FilterConfigItem.cxx42
-rw-r--r--svtools/source/filter.vcl/filter/SvFilterOptionsDialog.cxx34
-rw-r--r--svtools/source/filter.vcl/filter/SvFilterOptionsDialog.hxx14
-rw-r--r--svtools/source/filter.vcl/filter/dlgejpg.cxx10
-rw-r--r--svtools/source/filter.vcl/filter/dlgejpg.hrc2
-rw-r--r--svtools/source/filter.vcl/filter/dlgejpg.hxx18
-rw-r--r--svtools/source/filter.vcl/filter/dlgejpg.src2
-rw-r--r--svtools/source/filter.vcl/filter/dlgepng.cxx14
-rw-r--r--svtools/source/filter.vcl/filter/dlgepng.hrc2
-rw-r--r--svtools/source/filter.vcl/filter/dlgepng.hxx18
-rw-r--r--svtools/source/filter.vcl/filter/dlgepng.src2
-rw-r--r--svtools/source/filter.vcl/filter/dlgexpor.cxx56
-rw-r--r--svtools/source/filter.vcl/filter/dlgexpor.hrc2
-rw-r--r--svtools/source/filter.vcl/filter/dlgexpor.hxx66
-rw-r--r--svtools/source/filter.vcl/filter/dlgexpor.src4
-rw-r--r--svtools/source/filter.vcl/filter/filter.cxx202
-rw-r--r--svtools/source/filter.vcl/filter/filter2.cxx230
-rw-r--r--svtools/source/filter.vcl/filter/fldll.cxx2
-rw-r--r--svtools/source/filter.vcl/filter/gradwrap.cxx12
-rw-r--r--svtools/source/filter.vcl/filter/sgfbram.cxx2
-rw-r--r--svtools/source/filter.vcl/filter/sgvmain.cxx12
-rw-r--r--svtools/source/filter.vcl/filter/sgvspln.cxx2
-rw-r--r--svtools/source/filter.vcl/filter/sgvtext.cxx2
-rw-r--r--svtools/source/filter.vcl/filter/strings.hrc2
-rw-r--r--svtools/source/filter.vcl/filter/strings.src2
-rw-r--r--svtools/source/filter.vcl/igif/decode.cxx42
-rw-r--r--svtools/source/filter.vcl/igif/decode.hxx40
-rw-r--r--svtools/source/filter.vcl/igif/gifread.cxx102
-rw-r--r--svtools/source/filter.vcl/ixbm/xbmread.cxx66
-rw-r--r--svtools/source/filter.vcl/ixpm/rgbtable.hxx1318
-rw-r--r--svtools/source/filter.vcl/ixpm/xpmread.cxx120
-rw-r--r--svtools/source/filter.vcl/jpeg/jpeg.cxx80
-rw-r--r--svtools/source/filter.vcl/jpeg/jpeg.h26
-rw-r--r--svtools/source/filter.vcl/jpeg/jpegc.c26
-rw-r--r--svtools/source/filter.vcl/wmf/emfwr.cxx254
-rw-r--r--svtools/source/filter.vcl/wmf/emfwr.hxx80
-rw-r--r--svtools/source/filter.vcl/wmf/enhwmf.cxx176
-rw-r--r--svtools/source/filter.vcl/wmf/winmtf.cxx198
-rw-r--r--svtools/source/filter.vcl/wmf/winmtf.hxx734
-rw-r--r--svtools/source/filter.vcl/wmf/winwmf.cxx152
-rw-r--r--svtools/source/filter.vcl/wmf/wmf.cxx2
-rw-r--r--svtools/source/filter.vcl/wmf/wmfwr.cxx174
-rw-r--r--svtools/source/filter.vcl/wmf/wmfwr.hxx34
-rw-r--r--svtools/source/graphic/descriptor.cxx134
-rw-r--r--svtools/source/graphic/descriptor.hxx96
-rw-r--r--svtools/source/graphic/graphic.cxx64
-rw-r--r--svtools/source/graphic/graphic.hxx20
-rw-r--r--svtools/source/graphic/graphicunofactory.cxx8
-rw-r--r--svtools/source/graphic/grfattr.cxx44
-rw-r--r--svtools/source/graphic/grfcache.cxx274
-rw-r--r--svtools/source/graphic/grfcache.hxx84
-rw-r--r--svtools/source/graphic/grfmgr.cxx116
-rw-r--r--svtools/source/graphic/grfmgr2.cxx406
-rw-r--r--svtools/source/graphic/provider.cxx216
-rw-r--r--svtools/source/graphic/renderer.cxx88
-rw-r--r--svtools/source/graphic/transformer.cxx8
-rw-r--r--svtools/source/graphic/transformer.hxx16
-rw-r--r--svtools/source/hatchwindow/documentcloser.cxx4
-rw-r--r--svtools/source/hatchwindow/documentcloser.hxx6
-rw-r--r--svtools/source/hatchwindow/hatchwindow.cxx4
-rw-r--r--svtools/source/hatchwindow/hatchwindow.hxx2
-rw-r--r--svtools/source/hatchwindow/hatchwindowfactory.cxx6
-rw-r--r--svtools/source/hatchwindow/hatchwindowfactory.hxx4
-rw-r--r--svtools/source/hatchwindow/ipwin.cxx2
-rw-r--r--svtools/source/hatchwindow/ipwin.hxx10
-rw-r--r--svtools/source/inc/accessibletableimp.hxx4
-rw-r--r--svtools/source/inc/configitems/accessibilityoptions_const.hxx2
-rw-r--r--svtools/source/inc/filectrl.hrc4
-rw-r--r--svtools/source/inc/gifread.hxx110
-rw-r--r--svtools/source/inc/gradwrap.hxx36
-rw-r--r--svtools/source/inc/iodlg.hrc78
-rw-r--r--svtools/source/inc/jpeg.hxx58
-rw-r--r--svtools/source/inc/msgrd.hxx2
-rw-r--r--svtools/source/inc/msgwr.hxx2
-rw-r--r--svtools/source/inc/property.hxx472
-rw-r--r--svtools/source/inc/provider.hxx20
-rw-r--r--svtools/source/inc/renderer.hxx24
-rw-r--r--svtools/source/inc/sgfbram.hxx2
-rw-r--r--svtools/source/inc/sgffilt.hxx2
-rw-r--r--svtools/source/inc/sgvmain.hxx2
-rw-r--r--svtools/source/inc/sgvspln.hxx2
-rw-r--r--svtools/source/inc/svimpbox.hxx438
-rw-r--r--svtools/source/inc/svimpicn.hxx362
-rw-r--r--svtools/source/inc/svtaccessiblefactory.hxx2
-rw-r--r--svtools/source/inc/unoiface.hxx188
-rw-r--r--svtools/source/inc/xbmread.hxx36
-rw-r--r--svtools/source/inc/xpmread.hxx106
-rw-r--r--svtools/source/java/javacontext.cxx2
-rw-r--r--svtools/source/java/javaerror.src4
-rw-r--r--svtools/source/java/javainteractionhandler.cxx8
-rw-r--r--svtools/source/java/patchjavaerror.src4
-rw-r--r--svtools/source/misc/acceleratorexecute.cxx80
-rw-r--r--svtools/source/misc/chartprettypainter.cxx4
-rw-r--r--svtools/source/misc/cliplistener.cxx2
-rw-r--r--svtools/source/misc/dialogclosedlistener.cxx2
-rw-r--r--svtools/source/misc/dialogcontrolling.cxx2
-rw-r--r--svtools/source/misc/ehdl.cxx4
-rw-r--r--svtools/source/misc/ehdl.src2
-rw-r--r--svtools/source/misc/embedhlp.cxx20
-rw-r--r--svtools/source/misc/embedtransfer.cxx2
-rw-r--r--svtools/source/misc/errtxt.src2
-rw-r--r--svtools/source/misc/helpagent.src2
-rw-r--r--svtools/source/misc/helpagentwindow.cxx16
-rw-r--r--svtools/source/misc/imagemgr.cxx8
-rw-r--r--svtools/source/misc/imagemgr.src2
-rw-r--r--svtools/source/misc/imageresourceaccess.cxx8
-rw-r--r--svtools/source/misc/imap.cxx88
-rw-r--r--svtools/source/misc/imap2.cxx102
-rw-r--r--svtools/source/misc/imap3.cxx8
-rw-r--r--svtools/source/misc/itemdel.cxx4
-rw-r--r--svtools/source/misc/langtab.cxx34
-rw-r--r--svtools/source/misc/langtab.src4
-rw-r--r--svtools/source/misc/stringtransfer.cxx6
-rwxr-xr-xsvtools/source/misc/svtaccessiblefactory.cxx2
-rw-r--r--svtools/source/misc/svtdata.cxx2
-rw-r--r--svtools/source/misc/templatefoldercache.cxx134
-rw-r--r--svtools/source/misc/transfer.cxx128
-rw-r--r--svtools/source/misc/transfer2.cxx12
-rw-r--r--svtools/source/misc/unitconv.cxx57
-rw-r--r--svtools/source/misc/wallitem.cxx2
-rwxr-xr-xsvtools/source/misc/xwindowitem.cxx18
-rw-r--r--svtools/source/plugapp/commtest.cxx34
-rw-r--r--svtools/source/plugapp/commtest.hrc12
-rw-r--r--svtools/source/plugapp/commtest.src4
-rw-r--r--svtools/source/plugapp/testtool.hrc42
-rw-r--r--svtools/source/plugapp/testtool.src10
-rw-r--r--svtools/source/plugapp/ttprops.cxx2
-rw-r--r--svtools/source/productregistration/productregistration.cxx12
-rw-r--r--svtools/source/productregistration/productregistration.hxx12
-rw-r--r--svtools/source/productregistration/registrationdlg.cxx28
-rw-r--r--svtools/source/productregistration/registrationdlg.hrc22
-rw-r--r--svtools/source/productregistration/registrationdlg.hxx28
-rw-r--r--svtools/source/productregistration/registrationdlg.src2
-rw-r--r--svtools/source/svhtml/htmlkywd.cxx1098
-rw-r--r--svtools/source/svhtml/htmlout.cxx566
-rw-r--r--svtools/source/svhtml/htmlsupp.cxx18
-rw-r--r--svtools/source/svhtml/parhtml.cxx102
-rw-r--r--svtools/source/svrtf/parrtf.cxx82
-rw-r--r--svtools/source/svrtf/rtfkey2.cxx36
-rw-r--r--svtools/source/svrtf/rtfkeywd.cxx1300
-rw-r--r--svtools/source/svrtf/rtfout.cxx10
-rw-r--r--svtools/source/svrtf/svparser.cxx60
-rw-r--r--svtools/source/table/defaultinputhandler.cxx4
-rw-r--r--svtools/source/table/gridtablerenderer.cxx36
-rw-r--r--svtools/source/table/tablecontrol.cxx6
-rw-r--r--svtools/source/table/tablecontrol_impl.cxx82
-rw-r--r--svtools/source/table/tablecontrol_impl.hxx76
-rw-r--r--svtools/source/table/tabledatawindow.cxx12
-rw-r--r--svtools/source/table/tablegeometry.cxx2
-rw-r--r--svtools/source/table/tablegeometry.hxx2
-rw-r--r--svtools/source/toolpanel/drawerlayouter.cxx2
-rw-r--r--svtools/source/toolpanel/dummypanel.cxx2
-rw-r--r--svtools/source/toolpanel/dummypanel.hxx2
-rwxr-xr-xsvtools/source/toolpanel/paneldecklisteners.cxx2
-rwxr-xr-xsvtools/source/toolpanel/paneldecklisteners.hxx2
-rwxr-xr-xsvtools/source/toolpanel/paneltabbar.cxx2
-rw-r--r--svtools/source/toolpanel/paneltabbarpeer.cxx2
-rw-r--r--svtools/source/toolpanel/paneltabbarpeer.hxx2
-rw-r--r--svtools/source/toolpanel/refbase.cxx2
-rw-r--r--svtools/source/toolpanel/tabbargeometry.cxx4
-rw-r--r--svtools/source/toolpanel/tabbargeometry.hxx2
-rw-r--r--