Commit graph

310155 commits

Author SHA1 Message Date
Stephan Bergmann
710202f71c Missing newline
Change-Id: I8dd2d6f059b027122657e5000b95298e874e51e8
2012-08-02 08:49:32 +02:00
Takeshi Abe
d73ef723a2 sal_Bool -> bool
Change-Id: Id2addfc6e0c4e0b30281c9f3d22ec0624a61dab1
2012-08-02 10:25:28 +09:00
Michael Stahl
624bcdc302 Revert "StaticLibrary too"
This reverts commit 23e5bb6643.

Does not work, see previous commit
2012-08-01 23:12:08 +02:00
Michael Stahl
12981fd72b Revert "force depfile concat on deliver"
This reverts commit b8f7cc3c26.

This does not work, because there is no dependency between the
*Object .d files and the *Objects, and so the concat-deps races with
the compiler writing the dep files.
Introducing such a dependency would of course be reverting
8b5a984d45
2012-08-01 23:10:38 +02:00
Bjoern Michaelsen
79e1b9cb23 always compile from SRCDIR
* this helps getting nonbroken deps if using some ccache/CCACHE_BASEDIR combos

Change-Id: I401e55cc10b16aa5901348909237e97d05ab2761
2012-08-01 22:39:50 +02:00
Michael Stahl
e9da487938 filter-showIncludes: filter out system headers
A blacklist based approach doesn't seem easy since there are various
different SDKs, MFC, ATL and whatnot each potentially with an own
include path; so simply whitelist the known source and build dirs.

Change-Id: I93b27bd0ffbd57237da2d23afa95dea7c0785774
2012-08-01 21:00:13 +02:00
Noel Power
3514df0f78 add TabRatio api and detect macro at group shape fixes bnc#770708
Change-Id: I73eb612edaba21aa5bb07577b42bd31f8de2dd2a
2012-08-01 18:47:50 +01:00
Stephan Bergmann
13dc61da88 Proper quoting
Change-Id: Ib619ffc06d580acb5dc5f21ad6d0a439569bee2a
2012-08-01 18:45:48 +02:00
Thomas Arnhold
7910718259 Remove unused code: those classes are unused
Change-Id: Ibf41655d40c9534629bbb0dd5ae600791b42922d
2012-08-01 18:34:46 +02:00
Bjoern Michaelsen
23e5bb6643 StaticLibrary too
Change-Id: I2bda0e3117fb70353c52d5998e7784b6123ab38e
2012-08-01 18:28:26 +02:00
Bjoern Michaelsen
b8f7cc3c26 force depfile concat on deliver
* in some scenarios gcc (or ccache) generate relative paths
* thus we need to concat the depfiles in the same makerun as the compiles
* stiil not foolproof:
  - cd sw && make and abort with Ctrl-C
  - cd .. && make sw
  - now we have deps from mixed workdirs
* in the end we should likely always cd to SRCDIR before all compiles

Change-Id: I007da96f38ed2cfe403b692400f447764f6d6988
2012-08-01 18:25:23 +02:00
Bjoern Michaelsen
7917af89eb brown paperbag: set current_path_length too
Change-Id: Ie8e8f0b42b05a7d99fc81ad3a57e661758c12533
2012-08-01 18:25:23 +02:00
Tor Lillqvist
55a8ae6cf6 WaE: unused variable
Change-Id: I75e195be6bcedc972bc7c820c8c8efb648c91526
2012-08-01 19:19:05 +03:00
Tor Lillqvist
850d9be56d Bin no longer used iOS cppunit stuff that breaks build even
Change-Id: I78c71b22816834c66c8283e3d85e357b7b8d2836
2012-08-01 19:19:04 +03:00
Noel Power
ff54a3c291 simpler fix fo fdo#51336 - change vcl checkbox no-label behaviour
Change-Id: I1563dc2afc49c7b1115192db00fbd08a7524154e
2012-08-01 17:03:07 +01:00
Noel Power
d616ea80b2 Revert "additional fix for fdo#51336 for radiobuttons"
This reverts commit 2bc2d09bba.
2012-08-01 17:03:07 +01:00
Noel Power
59d9a39abc Revert "fdo#51336 - change vcl checkbox no-label behaviour"
This reverts commit a1345cd93a.
2012-08-01 17:03:07 +01:00
Stephan Bergmann
e3c2e0fab6 -Werror,-Wformat
Change-Id: Ie6fbcb1a11f47b54d3c697716b03f9891a1dea49
2012-08-01 16:51:39 +02:00
Norah Abanimy
15a79a36b1 Convert documents to follow the doxygen standard
Change-Id: I9086f6129f61afba6b7d0317248756cde34f075b
2012-08-01 16:15:08 +02:00
Caolán McNamara
0fc413a327 const SvXMLStyleIndexCmp_Impl up
Change-Id: I5bd75e73f2584364bbb749767529efc75aff3d15
2012-08-01 15:05:04 +01:00
Abdulmajeed Al-Abaulrazzaq
c9d5c88a96 Modifying comments to meet doxygen standards
Change-Id: If7c4162a49a7c7b612b6f480f6fbba75727ae1df
2012-08-01 15:41:41 +02:00
Ivan Timofeev
6657052e46 consider only fully visible items
Change-Id: I32d88e5206a96b316f29cf4ede04a6ac951d86d5
2012-08-01 17:03:00 +04:00
Ivan Timofeev
09eb412b2c gtk: listbox border was not rendered
remove extending of pixmapRect in the nPart == PART_WINDOW branch
and simplify code, since rControlRectangle, pixmapRect and widgetRect
are the same.

Change-Id: I253851fad558e525cd533bb3576a9bba82187e53
2012-08-01 17:02:59 +04:00
Michael Stahl
8291d41667 Revert "sorted_vector: turn Find parameter into template"
This reverts commit 3e3acee762.

It was a nice idea, but C++ is not yet ready for it; with the travesty
of parametric polymorphism in C++ the find_unique inside the definition
of find_unique actually refers to find_unique<Value, Compare>, so there
is no way to actually refer to template<Value, Compare> find_unique
inside its definition.  Thanks to Luboš Luňák for explaining
the problem to me.  Somehow this does work in GCC 4.7 even with
-std=c++98, likely by accident.
2012-08-01 14:59:10 +02:00
Caolán McNamara
7e579295c8 convert SvXMLAutoStylePoolNamesP_Impl to a std::set
Change-Id: I839edf8d0e941f78f6f6f9e6a9117f76587a5f39
2012-08-01 13:54:51 +01:00
Caolán McNamara
3515019f8a include svl/svdde.hxx
Change-Id: Ib8696dad1905cbcd12d6c3dd42720eea3f883c6f
2012-08-01 13:54:51 +01:00
Cédric Bosdonnat
9490643712 Fix for a236f8318a
To get footnotes sorted properly one need to:
  * actually use the comparator class
  * compare on the offsets value (and not there pointers)

Change-Id: Ie86802c7a92602bfbb4d2a603afe06f621e392a3
2012-08-01 14:39:11 +02:00
Eike Rathke
21cb8210c7 resolved fdo#53012 crash in CSV fixed width import
8cd05e9cf1 changed from using String to
OUString. ScCsvGrid::ImplSetTextLineFix() attempted to copy excess
characters (always CSV_MAXSTRLEN if greater than field width) where
String::Copy() silently ignored the excess length but OUString::copy()
may result in invalid memory accesses and asserts in dbgutil build.

Change-Id: Ic9f7f38d6f2bbd770d6356e1304de8e39c09e30b
2012-08-01 13:59:13 +02:00
Michael Stahl
3e3acee762 sorted_vector: turn Find parameter into template
Enforces same type parameters for sorted_vector and Find, and makes
it easier to use.

Change-Id: Ide456a48f015cb0a9dea7a0bf2bcf2ccad527fd1
2012-08-01 12:54:06 +02:00
Michael Stahl
77165efb4e Revert "WaE: indexes past the end of an array"
This reverts commit 51e3df40bc.

The fix was correct at the time it was done, but unfortunately now it
conflicts with 89f08dce89, which fixes the
same problem by changing the definition of DFF_ANIM_PROPERTY_ID_COUNT.
2012-08-01 12:54:06 +02:00
Luboš Luňák
78f1e95df4 workaround for KFileDialog remembering its settings
Change-Id: I6f473c246408684c5d952a2161645e4fe76873ea
2012-08-01 12:09:56 +02:00
Jean-Baptiste FAURE
63e0644040 vertically align and enlarge fields in cond.formatting dialog
add more room in several fields: usefull for FR translation
reorder the code by levels/lines in the dialog

Change-Id: I2c4cbaf926ade87b35a5900ab5461477e0157822
2012-08-01 11:09:21 +01:00
Luboš Luňák
e62c67d8d4 do not let LO's autoextension handling interfere with KFileDialog's(fdo#52546)
Change-Id: I73263a74d7b9bbf4a99e86773854e69f747e19d5
2012-08-01 11:37:35 +02:00
Miklos Vajna
a69691ff8c fdo#45724 testcase
Change-Id: I27811a6e35cd07dd117831eb9dee177c54f9ff50
2012-08-01 10:57:10 +02:00
Miklos Vajna
f5a98e08e7 test::BootstrapFixture: make GraphicConverter work
Change-Id: I566448db441eaa324cf619630a2e87cb8cbaeb99
2012-08-01 10:57:10 +02:00
Miklos Vajna
12a35ec890 fdo#45724 improve WW8 textbox export
If there is no default value, but there is a current one, export that
instead.

Change-Id: I01af5cfa641b061b0aeb959e579bca66340781e9
2012-08-01 10:57:09 +02:00
Miklos Vajna
684539e19e fdo#45724 fix WW8 export of textbox default background color
regression from 5609c512cd

Change-Id: I5f3ce73943b2805b7de1ae41699e605af9086b15
2012-08-01 10:57:09 +02:00
Tor Lillqvist
5009c09737 Warn that the CoreText code is WIP
Change-Id: Ibd02466bac2120fe9f378f564c44524bd902c009
2012-08-01 10:22:29 +03:00
Tor Lillqvist
c7c2367742 Add own declaration for the since long deprecated KillPicture()
Still present in the framework in 10.8, so this code will continue to
link and work, one hopes... But this really is a sad "solution".

Change-Id: I2571185f412e7252887bab3e0ae02c72cd756677
2012-08-01 09:36:36 +03:00
Tor Lillqvist
71573ba4ed Building against SDKs 10.7 and 10.8 seems to succeed now
Change-Id: I22c94844eb109f9ab81a434692272d2c392c2202
2012-08-01 08:24:13 +03:00
Takeshi Abe
088915c36b sal_Bool -> bool
Change-Id: I82157e89d04eda35525c5a540504e6a8d18bc86c
2012-08-01 10:06:16 +09:00
Fridrich Štrba
8df3fbe524 Fix mingw build of svl
Change-Id: I9992dba75903fea3d31be73de69e49f439df3a41
2012-07-31 22:30:34 +02:00
Michael Stahl
68303dee45 DdeServices has forward declarations so can't be typedef'd
Change-Id: I1455d380cbb8b096255a0d3cb402ff0dc4d35996
2012-07-31 22:01:45 +02:00
Michael Stahl
0f618909d3 SwpHintsArray::DeleteAtPos: Apple GCC unused variable warning
Change-Id: Idc56569da52554a5478fc23548b8d3395648a2bf
2012-07-31 21:58:32 +02:00
Takeshi Abe
134028c616 fdo#50269: bitmap area fill pattern reversed in LO3.5.x
this partially reverted 619ea0c6d3
in order to retain a hack for non-black background color

Change-Id: I89d89cedb5e27e2a05b1ecc13569e4899d1743d2
2012-07-31 20:32:56 +01:00
Tor Lillqvist
16ae7484b0 Add declaration of the very deprecated FMGetATSFontRefFromFont
Change-Id: I6a1b0ee2e7e012080774d29ea6ea5db5e9229d82
2012-07-31 22:19:38 +03:00
Michael Stahl
28a48f2aab svarray.hxx: 'e's pining for the fjords...
Change-Id: I3eeb257092a76744482ebd2d0eccaa29ead8a644
2012-07-31 20:27:40 +02:00
Michael Stahl
dd5bea1d82 remove commented out SV_DECL_OBJARR
Change-Id: Ie89a34c9dd8c71f25102cfb6f304c32fed99b4a8
2012-07-31 20:26:46 +02:00
Michael Stahl
4cbb646ddb convert SwSortElements to boost::ptr_multiset
Change-Id: Ia52f23a4bdad60a89c70e47089a82ef5dbd8dfda
2012-07-31 20:26:46 +02:00
Michael Stahl
3bf99d6c62 SwHTMLPosFlyFrms: fix STL conversion:
It appears that the operator== for SwPosFlyFrm always returns false,
so cf0e08c6b8 changed the semantics;
use std::mulitset to fix it.

Change-Id: Ib7a8ebe56e146d21c265e60ad68c6b4a319dfe98
2012-07-31 20:26:46 +02:00