summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)AuthorFilesLines
2014-09-30xmloff: std::auto_ptr -> std::unique_ptrStephan Bergmann3-4/+4
Change-Id: I8baa6c0573af3629bacbf1891c3196c165883d9e
2014-09-29fdo#59299 Personas for bottom toolbarsMichael Jaumann1-0/+2
Change-Id: If823964bf3bb67563504db61b6c5d557cab89243 Reviewed-on: https://gerrit.libreoffice.org/11609 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-09-29vcl: std::auto_ptr -> std::unique_ptrStephan Bergmann3-4/+4
Change-Id: I5a08186b465b15311c63784506a0ca0e119286e2
2014-09-29vbahelper: std::auto_ptr -> std::unique_ptrStephan Bergmann2-4/+2
Change-Id: Ic1b28e7f79cc7dad6a045eb64e5191991533990d
2014-09-29unotools: std::auto_ptr -> std::unique_ptrStephan Bergmann1-1/+1
Change-Id: I07d536d0ffdc9e09d8d0799396ad6e6c6909cf45
2014-09-29toolkit: std::auto_ptr -> std::unique_ptrStephan Bergmann1-2/+1
Change-Id: I4566a0b7215b729f04591bed0ad5bed42f71f227
2014-09-29Resolves: fdo#80468 and fdo#81223 image/frame backgrounds wrongCaolán McNamara1-3/+0
writer has code to fill in missing new properties from the old properties if they exist. But xmloff is stripping them out before they get there. Don't strip them out, and add in a missing check for one of the archaic bg colors and add a regression test for fdo#81223 Change-Id: I9a541a9bee0a01c90f2c33383f1144ecd8b0bfff
2014-09-29MSVC 2012 apparently isn't ready yet for std::vector<std::unique_ptr<T>>Stephan Bergmann1-6/+3
...producing error messages about trying to access private undefined unique_ptr copy ctor etc. Partial revert of 014e7933af751bfe0a03867373b82efa806f3a3d "svtools: std::auto_ptr -> std::unique_ptr: ...changing HTMLOptions to std::vector<std::unique_ptr<...>> because boost::ptr_vector<...>::push_back only supports auto_ptr, not unique_ptr," going the awkward std::unique_ptr x(...); push_back(x.get()); x.release(); route instead (which could be simplified if boost::ptr_vector::push_back ever started to support unique_ptr). Change-Id: I15693030a0bbfdedbfdfbe76ede5d0c74f4e5b41
2014-09-29svx: std::auto_ptr -> std::unique_ptrStephan Bergmann7-7/+7
Change-Id: Ib70d974817bcdd9a582e9be28d28b007cdc3a7a7
2014-09-29svtools: std::auto_ptr -> std::unique_ptrStephan Bergmann7-10/+13
...changing HTMLOptions to std::vector<std::unique_ptr<...>> because boost::ptr_vector<...>::push_back only supports auto_ptr, not unique_ptr. Change-Id: Ie5f92bc40ce5425dc1c634b17addc2b0dd9bbda3
2014-09-29loplugin: cstylecastNoel Grandin3-9/+12
Change-Id: Iea517d2287bded4a702c73dfdd1f182023425d67
2014-09-29loplugin: cstylecastNoel Grandin1-1/+1
Change-Id: I53b69a488c70769cbb841db519bc28fd211dc087
2014-09-29loplugin: cstylecastNoel Grandin1-1/+1
Change-Id: I58ec00d6f8a4cc6188877db1330c5e32c9db12e5
2014-09-29sfx2: std::auto_ptr -> std::unique_ptrStephan Bergmann6-8/+8
Change-Id: I7bac4105494cdbbadd4c4d78ce1fcf03b8ccae6c
2014-09-28vcl: cleanup headers - remove comments, tabifyChris Sherlock13-759/+817
Change-Id: I718832960abe07450bc9fdda15297cb5e56f84e4 Reviewed-on: https://gerrit.libreoffice.org/11674 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
2014-09-27error C2513: 'const short' : no variable declared before '='Miklos Vajna1-0/+4
com/sun/star/beans/PropertyAttribute.hdl's OPTIONAL had a clash with some of the Windows headers. Change-Id: I26a4fdcd1a1d53596b82ebdaf609e0a0e9309697
2014-09-26add a RAII class that tries to acquire the SolarMutex and releases itMichael Stahl1-0/+47
Motivated by ScCompiler::IsMacro() which has an error return that does not release the SolarMutex. Change-Id: I064219bb3c0d68839a133101491d5f8828a26c7a
2014-09-26factorise odbc headers inclusionLionel Elie Mamane1-0/+104
it is complicated enough that we should implement that logic only once Change-Id: I0cc5ffb871223b27df825f21612e3c8f6f2febb3
2014-09-26oox: std::auto_ptr -> std::unique_ptrStephan Bergmann4-13/+7
Change-Id: I35d3cc04eb9bbc8b4446bc501ba35e058c1aa34a
2014-09-26tools: change INetURLObject::getData to return std::unique_ptrMichael Stahl1-1/+3
Life-cycle becomes a lot more obvious this way. Change-Id: I1ca99607f609a2223011c40447ad1cd9ca5ccaa5
2014-09-26fix build & better name for ERROR_INVALID_TABLELionel Elie Mamane1-2/+2
Change-Id: Ic7253575859766f18869159e4a8dd6b3d715850d
2014-09-26loplugin:inlinevisibleStephan Bergmann1-2/+2
Change-Id: Id2530063cd0302b65dcc82965f1b81c31b759b63
2014-09-26formula: std::auto_ptr -> std::unique_ptrStephan Bergmann4-14/+6
Change-Id: I7b4784abf5177e22a9df33c5d4faccfd39801b11
2014-09-26implement --with-system-odbc on windowsNoel Grandin1-2/+3
Change-Id: I1757b9ce74277b1c11533f41caeafaf9b88658ef
2014-09-26SvStream - rename WriteNumber methodsNoel Grandin1-2/+2
to Write?Int32AsString. Since the original name was so generic as to be meaningless. Change-Id: Iaaaf592904af51f2b9988fa8efb344c1b2bf9b0f
2014-09-26rip out all remaining uses of svxform::OTypeConversionClient and remove itLionel Elie Mamane1-32/+31
It just wraps around dbtools, which is linked directly now. Change-Id: If8d281962018a48a54858421e3490f5032658691
2014-09-26Resolves: fdo#83943 avoid infinite recursionCaolán McNamara1-0/+24
when attempting to make a cell visible when the parent simply isn't large enough to show any part of the cell Change-Id: I987c9b3be30a66a5e1e27ad9e452f2ca65330d9e
2014-09-26cleanup GUID/ClsId/CLSID typesNoel Grandin2-18/+12
- rename GUID to SvGUID so we don't need an #ifdef WIN32 - drop ClsId struct, since it is used interchangeably with GUID and has the same structure Change-Id: Idf5c14c82a6861ef585fb57896a9b12cfe40374c
2014-09-26fdo#75757: remove inheritance to std::vectorTakeshi Abe1-3/+18
from SfxFoundCacheArr_Impl, by typedef'ing it as boost::ptr_vector<SfxFoundCache_Impl>. Change-Id: Id0e50370b440fb53dbb56dabca9743b27a08b90d Reviewed-on: https://gerrit.libreoffice.org/11650 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-09-26filter: std::auto_ptr -> std::unique_ptrStephan Bergmann2-8/+4
Change-Id: Id1d0392e1dbd33de326aa2bd8cbcf8cc03bf7c90
2014-09-25Resolves: fdo#83010 remove svx::WrapFieldCaolán McNamara1-50/+0
in favour of a wrap property on NumericField Change-Id: I62c6bdb69a16f37ae6018a2fe41070fb18dbe4a0
2014-09-25Related: fdo#83010 implement wrapping on reaching NumericFormatter limitsCaolán McNamara1-0/+1
Change-Id: Ia88671cb71a0bcf8cb55ae0d88625b0f28092615
2014-09-25Related: fdo#83010 move NumericFormatter clipping to min/max into one placeCaolán McNamara1-0/+2
Change-Id: I60cfe651a6ec25fc7e482192d908acca25c1ad8b
2014-09-25vcl: comment timer classes at least minimally.Michael Meeks1-1/+4
Change-Id: Iabc76b3e78afa491a38fa04d648f48f15ac3870e
2014-09-25editeng: std::auto_ptr -> std::unique_ptrStephan Bergmann3-9/+3
Change-Id: I25e3599a37d720cbcf70ea13ab30234e54637d53
2014-09-25loplugin: cstylecastNoel Grandin1-1/+1
Change-Id: I75267bf44d0fd36ff316f59300efd31524da36ef
2014-09-25Start Center Template Manager TweaksEfe Gürkan YALAMAN1-0/+31
Template Manager and the related Start Center view has same transparent highlight color as Recent Documents. Also Template thumbnail containers should have the same size as Recent Docs view. Change-Id: I22e417a5c5ca5a849577d5a438a193371368fe24 Reviewed-on: https://gerrit.libreoffice.org/11467 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-09-25Remove unnecessary #includeStephan Bergmann1-1/+0
Change-Id: I7cc165095db24761d086680b70ef3ed81fd30f19
2014-09-25nHighlightedItem only ever set, never readCaolán McNamara1-4/+0
Change-Id: Ie4b1517e41e09df3c243b6d4ff124f50777e8bc0
2014-09-25Revert "fdo#73151 Always open Styles&Formatting dialog in the sidebar"Stephan Bergmann2-0/+11
This reverts commit 473ed449a4b6f550dc1af47a07c6e0ef243a98b2, which made JunitTest_toolkit_unoapi fail, as AccessibleDropDownListBox.createTestEnvironment (qadevOOo/tests/java/mod/_toolkit/AccessibleDropDownListBox.java) was no longer able to find its AccessilbeRole.COMBO_BOX AccessibleDropDownListBox, which it apparently expected to find in a docked stylist (cf. DesktopTools.dockStylist in AccessibleDropDownListBox.initialize).
2014-09-25fdo#39468: translationJennifer Liebel6-59/+49
Change-Id: I8ee3c1cf551f5b242d20cf244d728b79e68616ed Reviewed-on: https://gerrit.libreoffice.org/11637 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-09-25dbaccess: std::auto_ptr -> std::unique_ptrStephan Bergmann4-4/+4
Change-Id: I2b27aaf589fcbe4da1680f624a57be7ae62b0dc5
2014-09-25connectivity: std::auto_ptr -> std::unique_ptrStephan Bergmann10-10/+10
Change-Id: I796dc05d1846f140a56b5a6f14a69a239324ae5b
2014-09-25comphelper: std::auto_ptr -> std::unique_ptrStephan Bergmann5-8/+6
Change-Id: I364d6252f470dcc6d71a191f1249e95ca1f284ce
2014-09-25canvas: std::auto_ptr -> std::unique_ptrStephan Bergmann1-1/+1
Change-Id: I1b58132c3155d59c78ef3e2414129319ee5e9fcd
2014-09-24fdo#47302: Added insert->fields->page title buttonJennifer Liebel1-0/+13
Change-Id: Iebc8298a7e6a7d423d2667eec8a46a936cc4d2cd Reviewed-on: https://gerrit.libreoffice.org/11599 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-09-24fdo#62081: Add split menus to items in the style dropdownSzymon Kłos1-0/+3
I added buttons to the Style dropdown. Each button opens a menu. So far I added "apply style" and "edit style" options. Change-Id: I3b5c153a0674d06541d403bb0f34ec73418bb778 Reviewed-on: https://gerrit.libreoffice.org/11581 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-09-24fdo#73151 Always open Styles&Formatting dialog in the sidebarSamuel Mehrbrodt2-11/+0
This removes the floating window for Styles&Formatting as discussed in fdo#73151. Change-Id: I352d27a4d30632dcfda8963c23629e62ab850524 Reviewed-on: https://gerrit.libreoffice.org/11253 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-09-24Replace some std::auto_ptr function parameters with std::unique_ptrStephan Bergmann3-20/+11
Change-Id: Ic66d325fd9559c6dde9556c26e5b2a7e60376c49
2014-09-24Remove TokenMap::getUnicodeTokenName()Matúš Kukan1-3/+0
Change-Id: I778dc43085b6afbb6456cbf53fe8c95b624b75b3