summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-14rhbz#908674: Adapt rtl::Allocator::construct to C++11Stephan Bergmann
...otherwise, at least with some --with-system-boost versions and C++11 compilers, like with Fedora's boost-1.50.0-4.fc18.x86_64 and gcc-c++-4.7.2-8.fc18.x86_64, using this to copy-construct an instance of boost::unordered::detail::ptr_node<std::pair<rtl::OUString,Bootstrap_Impl*>> in the call to p_bootstrap_map->insert(...) in rtl_bootstrap_args_open (sal/rtl/source/bootstrap.cxx) would memcopy the ptr_node and fail to call rtl_uString_acquire, leading to memory corruption later on when rtl_uString_release is called one time too often. It is not entirely clear to me whether this is a shortcoming of the given Boost version, but this patch solves the problem and brings rtl::Allocator::construct in line with the (changed) Allocator requirements of C++11 anyway. The problem potentially lurks with every use of rtl::Allocator, but only showed now begining with LO 4.0 where e5111574fd904b38a3980ca4ea3d21cfcb22dea6 "Revert 'sb140: sb140: #i116981# clean up memory upon exit'" re-introduced code into rtl_bootstrap_args_open that inserts into a boost::unordered_map that uses rtl::Allocator. Change-Id: I3be22f59a8eb49d31458480c27f3ce15803c7fd4
2013-02-14Fix build against Mac OS X SDK 10.4Tor Lillqvist
Change-Id: I077afe48e0d375f75a8c35bc87c6c177b68512f7
2013-02-14use >= as mentioned in the UI, fdo#60798Markus Mohrhard
Change-Id: Iac6737e98eb0961de22036f42634ebad7d42dfcc
2013-02-14forgotten mnemonic widgetsCaolán McNamara
Change-Id: I5494b3f99f3e1145898dcfb5b17bc62861faa5f9
2013-02-14Updated coreCaolán McNamara
Project: help 46d9ef662c4e2825b3da02a9949ab19862df7422
2013-02-14adapt code to insert sheet .uiCaolán McNamara
Change-Id: Idba3ff98cecd47743d83ad444151117d5f457a7d
2013-02-14consistent 6px border and frame top alignmentCaolán McNamara
Change-Id: I802af4cc3654de1cdd750054c9b927cc576fa0a5
2013-02-14Converted Insert -> Sheet widget.Abdulelah Alarifi
Change-Id: I575c4257fcff1349243cbe54c4558839e6629e81 Reviewed-on: https://gerrit.libreoffice.org/2082 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-02-14Removed several useless macros: UNISTRING, USTR, USTR_ASCII, ASCII_STR, ↵Jean-Noël Rouvignac
ASCII_STRING, CONST_ASCII, ASCSTR, ASCII, DEFINE_CONST_UNICODE, DEFINE_CONST_OUSTRING Change-Id: I96d690bf9f9b319e9eeafcf218ec5ce87f21215f Reviewed-on: https://gerrit.libreoffice.org/1954 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
2013-02-14Updated coreCaolán McNamara
Project: help 3675e295d2fcd60b2cb62a45dc94ab3d9a16c745
2013-02-14TriState boxes created via the builder default to STATE_DONTKNOWCaolán McNamara
while classic ones default to "false", easiest thing to do here is to simply only query for their value if enabled Change-Id: I5b01d344a5310b9bbd8d59e9c53bef1a6bfee1ce
2013-02-14Widget for asian typographyOlivier Hallot
Change-Id: I70535593c3e06caca48ae8bc8b9476ae09210df8
2013-02-14CMIS: made it work with Lotus LiveCédric Bosdonnat
Making libcmis and LibreOffice work with Lotus Live service needed a few hacks to either better implement CMIS or workaround some bad implementations. As a general improvement, the CheckOut InfoBar isn't shown if the document can't be checked out.
2013-02-14CMIS: URL-decode username or it won't be shown properly in dialogCédric Bosdonnat
2013-02-14tools and unotools are already mentionedTor Lillqvist
Change-Id: I5600730c9f655cd2ee0cf59beca9f8d1247c5e34
2013-02-14SvxBackgroundTabPage: use XFillStyle enumMiklos Vajna
Change-Id: I8fb8765ed6ee2f879a170f4f9c51ee05b695304a
2013-02-14SvxBackgroundTabPage: select matching gradient entry on load, if possibleMiklos Vajna
Change-Id: Ie654fc795a3f46f1ff26a1ff5adb7e8ce9091851
2013-02-14SvxBackgroundTabPage: fix non-gradient preview in gradient frameMiklos Vajna
Change-Id: Ia7d64301a250bf51a6343f155144edced8e3bd09
2013-02-14fdo#57950: Remove some chained appends in filterMarcos Paulo de Souza
Change-Id: I2386eb47ad7190d626966020e96c1a7ddc07ab4a
2013-02-14Add findbar close icons to other icon-themes as wellJoren De Cuyper
So far I only add an icon to the galaxy theme. Therefore I add now the other icons on the other themes as well. Change-Id: Id852d1adb87c31ee45187a0a7b4bfead56c7b19f
2013-02-14Add this single-line fileTor Lillqvist
Change-Id: Ie7158a6bc09c9f6a276799c22eef560aa5570a11
2013-02-14Updated coreAndras Timar
Project: help ee22530d05859a866bb47700dbeeeed885e0c94e
2013-02-14Start on Bluetooth code for the Impress Remote for OS XTor Lillqvist
Work in progress. It sets up the SDP service record and registers it, and that seems to work. Does not do anything with it yet. I wonder if the current approach to use the standard SerialPort service class will work for Macs, as they by default have one SerialPort service running, "Bluetooth-PDA-Sync", whatever that is. There is no code in the Android app to handle the case of there being several Serial Port services on the computer it wants to connect to, so what happens then when there are two will be interesting to see. (I can't find in the Android API any way to enumerate services that use the same service class. If there was, the app could choose the correct one based on its name.) So probably we should pretty soon switch to using a dedicated service class UUID instead of using the standard serial port one. As we already have the app out in the wild it will probably have to be modified to look for both Serial Port and our own service then? Sigh. Change-Id: I1bee6403642e9b8953b5a8fa8fb5fe6a9dc76a09
2013-02-14move macro security dialog to xmlsecurityCaolán McNamara
split out security page and adapt code Change-Id: I51dbd48b2ff4f65f6806fac70bda27ee15d4e176
2013-02-14add a custom wrap prop to radiobuttons/checkboxesCaolán McNamara
Change-Id: Idccf3eceb8e9c8a42027dc837eb6d5b405fece67
2013-02-14make compilable on RHEL-6Caolán McNamara
Change-Id: I5d0e2c23af1972c84e999ad458ae47703d94e9e0
2013-02-14Updated coreCaolán McNamara
Project: help f7693017b6f2faa411a75a1827b2dcbcd8c9ca17
2013-02-14MODKEY_BigOrtho is never definedJulien Nabet
Change-Id: Ifd7c7f634860ced0021bf6c6b99d1e0ea0615a7c Reviewed-on: https://gerrit.libreoffice.org/2126 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
2013-02-14Get Labels.xcu out of configuration data.Matúš Kukan
Modify the file format, install separately into share/labels, and parse it using xmlreader when needed. Saves time on startup and reduces pointless configurarion size.
2013-02-14i18nisolang1 is not a module;)Tor Lillqvist
Change-Id: I3e239258e9f5d20c57a46f8c70b0558dfb7813ff
2013-02-14Updated coreAndras Timar
Project: help 0142ad19adb30534ba07908356f9139f0257c808
2013-02-14Build DESKTOP stuff for BUILD only if HOST is of type DESKTOPTor Lillqvist
The helplinker library has grown a dependency on the svt and tl libraries. But the helpcompiler module is needed to be built for the BUILD platform only if the HOST platform's BUILD_TYPE includes DESKTOP (or only if its BUILD_TYPE includes HELP?). We used to build helpcompiler and some other things for the BUILD platform depending on whether the BUILD platform's BUILD_TYPE included DESKTOP. Also, codemaker should surely be built for BUILD unconditionally, ant xmlhelp presumably not at all. Change-Id: I3df995ce6b92da4ce9eb35115cf3e8560e06f292
2013-02-14pyagenda: forgot this fileXisco Fauli
Change-Id: I7542a7c9ac3ab9d48251f0f5d39dbec17b5c475c
2013-02-14fdo#38820: bye bye java agenda wizardXisco Fauli
Hasta la vista, baby! Change-Id: Idb6b5f383667960918a8f1b9db653edbfc89c232
2013-02-14pyagenda: Register and Pack python agenda wizardXisco Fauli
Change-Id: I3fc2b0f4e014d358d416c230b0450dcbe5d76363
2013-02-14pyagenda: localise template at runtimeXisco Fauli
Change-Id: I80060f2c0a9ee014546632962e196b730a9e5c78
2013-02-13consistent 6 pixels borders around all option pagesCaolán McNamara
and center middle column of writer print options Change-Id: I344d114ec0dd87ef5de5a920acea9f39e0e89dfe
2013-02-13Updated coreCaolán McNamara
Project: help cfb84454cfafb8a06957230bc3ead85816ca624c
2013-02-13sal_Bool to bool.Kohei Yoshida
Change-Id: I2599e12a9072a0ea34c62a9fd7982dd4630c329f
2013-02-13ScDPValueData->ScDPValue. The last 'Data' sounds very redundant.Kohei Yoshida
Change-Id: I218315a0583ce6b0f10969b364a7a717ad309212
2013-02-13Switch integer constants to enum & prefix data members with 'm'.Kohei Yoshida
Change-Id: I13374e160bb369f64fc6e661c43db5da657cbfd9
2013-02-13dont echo ./g -z every time make is runPeter Foley
Change-Id: Id680d868ee77a8c52a030baddc8af97041d5a569
2013-02-13fix setup_native localization for macPeter Foley
Change-Id: Ifcd3a96e1e0d53bb7dabb3e8cda1846ca2d262be
2013-02-13SwIndexMarkPane::UpdateDialog: should use && instead of &Michael Stahl
Change-Id: I6c03ed4acba570b8ff222a59aae95444f50c536b
2013-02-13Fix scope + member variables not initializedJulien Nabet
Change-Id: I0a2c14246a814859c9752f96aaad9f28f6d59c75
2013-02-13Fix member variable 'RoadmapImpl::InCompleteHyperLabel' not initialized in CTRJulien Nabet
+ replace '<' by '!=' when comparing current it with end iterator Change-Id: Iea8416a5143aafdea863397c78b58512bb54b427
2013-02-13Add parenthesis to calm down cppcheckJulien Nabet
Change-Id: If62959d80c9a7e207291fff05b5e085b0c84866f
2013-02-13Reduce scope xrmmerge.cxxJulien Nabet
Change-Id: I70018ce13dc5dc45d59fdb339e9d0a14348a4195
2013-02-13Fix member variable m_pSdrObject not initialized in the constructorJulien Nabet
Change-Id: If957ac222b635aef0518c8d47f3f59351677cef5
2013-02-13Reduce scopeJulien Nabet
Change-Id: I6bdff92cee194d79af98227d48c68304ee56593b