summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-23installer: Remove unused -tab command-line option and TAB_ONLY flag.Tim Retout
Change-Id: Idcb8be8882db8f487ba9bda2ae8947ccd9d99712 Reviewed-on: https://gerrit.libreoffice.org/462 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2012-08-23Removing a non-virtual destructor.Kohei Yoshida
Change-Id: I1be79ef0e6b7d0626d057a6d52950301ea4dd169
2012-08-22We assume that this uno interface exists. No need to check it.Kohei Yoshida
Change-Id: Iee2125204106c49e5b8670d9cba95f3dcf3571f8
2012-08-22New unit test for pivot table's case insensitive string comparison.Kohei Yoshida
Change-Id: I31ddd3eedc5a93103ae7efd7ce8698e4dc247937
2012-08-22fdo#53929: Pivot table uses case insensitive string comparison.Kohei Yoshida
Change-Id: I65fa22ceeba37a15b70fe41b1dee26f1dde7d759
2012-08-22Abstract database connection from pivot cache to hide UNO API.Kohei Yoshida
This is the first step toward unit-testing the initialization code from the database source. Change-Id: I1a7882ba443fd71d4210fb2e2caa195fb71dab92
2012-08-22Remove extended initializer list -- use memset for BDADDR_ANY.Andrzej J.R. Hunt
Change-Id: Iea10ffdf6443a33c3dd6106b69c126945763b778
2012-08-22installer: Remove unused -javalanguage command-line option.Tim Retout
Change-Id: Ia6f52713dd3cf5ab7d5716c7b6a6f5c1440ed323
2012-08-22installer: Use hashref for replace_all_ziplistvariables_in_rtffileTim Retout
Also rewrite implementation of installer::scpzipfiles variable replacement functions, and add test case. Change-Id: Ic4548b9df8c50cbf2d3049052c637e859542a1e8
2012-08-22Get rid of my no longer needed fprintfs.Andrzej J.R. Hunt
Change-Id: Ic4878cb8c25e7a361d293968037430f7f956ddc1
2012-08-22more old module-description xml filesMatúš Kukan
Change-Id: I9ac503b073ee3f9b8e7958264ffcc26d9446c220
2012-08-22remove unused module-description xml filesMatúš Kukan
Change-Id: I531e47538f308ee43e0fe8d7db59f525e45942c3
2012-08-22fdo#51514: SwXBookmarks: only consider real bookmarks:Michael Stahl
Since CWS swrefactormarks2 the SwXBookmarks collection handles not only bookmarks but at least cross-ref marks as well, which then bother users when they show up in the Insert->Hyperlink dialog; remove non-bookmarks again. (regression from df6d312ca537402463e4eb0530f22b956600fc02) Change-Id: I6a64ba8a43468dd3ce1569e944371d3ef71f8824
2012-08-22SwTokenWindow::InsertAtSelection: fix STL assertion:Michael Stahl
error: attempt to copy-construct an iterator from a singular iterator. (regression from 39b8a5f87f55abe53488c9c3c35b65fb0df84cde) Change-Id: Iab29f4c356ea1cb5ca0f687bcfc5e54f185fbba3
2012-08-22 fpicker/source/office/iodlg.src.originalDave Richards
fpicker/source/office/iodlg.src.original fpicker/source/office/iodlg.src.original Change-Id: I5b2bf2a3900a729581d184931efdc98f39067813 Reviewed-on: https://gerrit.libreoffice.org/457 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2012-08-22fdo#51911 add Moldovan (ro-MD) to language selection listAndras Timar
Change-Id: I916097048b6c8767745bcdd56430d5d2cc832e71
2012-08-22Some cleanup for better localizationZolnai Tamás
First: localization tool can not recognize id because of empty line between id and its definition Second: same problem because of comment between type and id Change-Id: If42af406fab252ccae0a6bbc478bab8130210b21
2012-08-22Don't clear the database data cache here.Kohei Yoshida
This would result in the pivot cache being refreshed twice. This block of code was a leftover from the previous, non-cached version of pivot table, and this logic no longer applies today. In today's pivot table code, the cache gets refreshed first, then the table gets refreshed afterward. We should never clear the cache data during table refresh. Change-Id: Ida6fa1805463facf842cb9ea94f4c1afab716595
2012-08-22fdo#53640: Correctly cache source data coming from database backend.Kohei Yoshida
It was due to a simple misplacement of nRow = 0. Each record was labeled row 0. No wonder it screws up the result badly. Change-Id: Ia94f42a62f98a9bd7c9d34df3606351bb487931b
2012-08-22Bluetooth connection working (Linux).Andrzej J.R. Hunt
Change-Id: Iac77c3ce0ab0ea7bda3105c58859888e55e64d2d
2012-08-22another build integrating solution for androidMatúš Kukan
..since it also needs stuff from postprocess. In qa/desktop/Makefile, images_tango.zip is used. If that's not needed, the module can be placed between postprocess and packimages for now. Change-Id: I9951cce0c8da0fc75fd8a7b1246f4083bd38f705
2012-08-22fdo#53399 Word count is inconsistent and wrong with non-breaking spaceMuhammad Haggag
This change replaces lcl_IsSkippableWhitespace with a call to ICU's u_isspace, which covers all Unicode separators. It also updates and fixes one of the SwScanner unit tests. Bug details: SwScanner::NextWord skips whitespace before calling into ICU's BreakIterator. The function used to identify whitespace (lcl_IsSkippableWhitespace) doesn't cover the full category of Unicode separators (code [Zs], 18 in total. See: http://www.fileformat.info/info/unicode/category/Zs/index.htm). Since 0xA0 (no-break space) is not identified as whitespace and not skipped, we end up calling ICU starting at the position 0xA0, asking it to get us the boundary of the next word forward. ICU sees that it's called at the end of a word, and reverses the query direction to backward, and returns the word before. This causes NextWord to think we've hit the end of the string and call it a day, terminating word count for the rest of the line. Change-Id: I29c89ddb0b26e88da822501253898856b28e3fa5 Reviewed-on: https://gerrit.libreoffice.org/453 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2012-08-22do not deliver these module-description xml filesMatúš Kukan
Change-Id: Ife2f42b3a917ece10dc7ee9fcd83f1558084c4f1 Reviewed-on: https://gerrit.libreoffice.org/454 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2012-08-22embed extension's help tree into main help treeBence Babati
Change-Id: Iddb3c542f50078b13c7d420b528aa704a5cb0767
2012-08-22Change rtl::OUString to OUStringRicardo Montania
My first commit. Any problem, question, warnings, please tell me. Change-Id: Ibb02fe15776f3ffe74ddb9488c63a45c447bb493
2012-08-22Pining for the fjordsTor Lillqvist
Change-Id: If0915cfc755031d2cb6a6e822f5682bb7ced71ad
2012-08-22New attempt to have the "android" module built at a suitable timeTor Lillqvist
Yes, I know that eventually what now is known as "tail_build" will be all there is left. So by that time, by definition nothing can be built "after tail_build". Will have to handle that then. Change-Id: I47d228ca7156520db10630861ce52b015a7a169c
2012-08-22Depend on the tail_end module insteadTor Lillqvist
Change-Id: Icc0c17c66c6e5e2166a34e232acb69c0b434a44c
2012-08-22Resolves: rhbz#841092 don't crash on empty portions (a11y?)Caolán McNamara
Change-Id: Ibd08fa09370580bff12f19f867219098f0d4980e
2012-08-22fdo#52451: Some name changes to be consistent with other prop names.Kohei Yoshida
We use IMPORT EXPORT flags, so let's stick with the term 'Export' as opposed to 'FileSave'. Also, the file type's extensions are given without the star-dot (*.), so let's strip that as well. Change-Id: Ibde05058f7acb6ae149382009e78f3f10a71d543
2012-08-22Resolves: rhbz#842292 crash in calling callback whose instance was deletedCaolán McNamara
Change-Id: I4cc04d59f48b42cc105703daa9983dd7c9f7af62
2012-08-22Replace use_internal_api with use_udk_api etc. where appropriateStephan Bergmann
Change-Id: I5e216ca01830a6568159ee8e9265938667f201a1
2012-08-22logerrit: --code-review=2 in review implies --submitMiklos Vajna
Change-Id: Ibd21dfdb76536ea0e0a71791a91ec87e31d49960
2012-08-22restore executable permissionEike Rathke
was lost with 2c47c9989e308ddef22066607795eb3feef9f76b Change-Id: Iee6f2caa2e934ed998c186e12a3f8b433fb64574
2012-08-22flock is not portable, so use different approachTor Lillqvist
Change-Id: I4a864ddd3681101c8c5d0943d2761ac85bf4161f
2012-08-22oox: fix doxygen errors in ole headersMiklos Vajna
Change-Id: Iae78fa7487e2646b1ba61101c5e39d304388a5c6
2012-08-22Untabify where appropriateTor Lillqvist
Change-Id: I0af786208356493928129406fd7d03f0912834f3
2012-08-22Build also the DocumentLoader test Android app with gbuildTor Lillqvist
Serialize the Ant cleaning and building of android/abs-lib so that one Ant is not cleaning it while another is building something that depends on it. Change-Id: I22fde47bf84208fa129b8f6a65a2314c885451a0
2012-08-22Resolves: rhbz#846775 Clipboard must be disposed before SelectionCaolán McNamara
Change-Id: I968bc6da85cd444d504b08f85300a1fe251cdeee
2012-08-22callcatcher: update listCaolán McNamara
Change-Id: Id297f32de5fba9d17fec89d2f8ea21c5d1a2a4bc
2012-08-22fdo#53888: svx: fix dependencies:Michael Stahl
It appears that since cd0046bca0691fdca45a030903b7cde3bfee544c, 2 tinderboxes fail on including the generated sqlbison.hxx; it turns out one of the inclusions of that in svx is unnecessary and the other is used to call a virtual function, which can apparently be done without linking; just link svx to dbtools anyway, that should fix the build. Change-Id: I7f7b1c4e9561c4dd2b820b173d05bdd5d4c6ba6d
2012-08-22sal_Bool to boolTakeshi Abe
Change-Id: I75dd089b34c94831bfdfd0e02585af7609013a08
2012-08-22Remove dead codeTakeshi Abe
Change-Id: Ib5e794495b542ed96b5424d1aec38c4dd60ae182
2012-08-22Remove unused functionTakeshi Abe
Change-Id: I1888bb21ad55f919a25a96b5c8090d1194be51de
2012-08-22Use typedef instead of trivial inheritanceStephan Bergmann
Change-Id: I66155e362d5f44f9be8114099c46473ac846340c
2012-08-22tolerate pkg-config on MacOSX when building mozilla, and allow to overideNorbert Thiebaud
Change-Id: Ia1c47ccda6c1fd94e8f4b1b6e6c1650abf791c74
2012-08-22cosmetic: consistant configure message related to MozillaNorbert Thiebaud
Change-Id: I589bd95e0cb9b2bf534f76ebcb4f6bd28edf5370
2012-08-22restore printing a summary of the imprtant warnings at the end of autogenNorbert Thiebaud
Change-Id: Ie0e257d0b2cf961dfe5907e7af7ffa8795be62f7
2012-08-22fdo#46249: UCBContentHelper::GetTitle must not fail for void propertyStephan Bergmann
This was a regression introduced with 2af9040d38af7c7353855415dbea0134585058f3 "Cleaned up utl::UCBContentHelper." GetSize exhibited the same problem and has also been fixed. IsYounger exhibits a similar problem, but has not been addressed, as it is unclear what to return in case no dates can be compared; it is only used in one place (handling SID_EDITDOC in SfxViewFrame::ExecReload_Impl, sfx2/source/view/viewfrm.cxx) where, it appears, only contents for which DateModified /does/ yield a non-void value are relevant. Change-Id: Iff9f5e1ed6f45eede117713d64a265b98f6862b1
2012-08-22fix StackOverflowException in climakerPeter Foley
Change-Id: I640eddb4496d295d3cea9f45875b415d419060f4 Reviewed-on: https://gerrit.libreoffice.org/448 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>