Commit graph

300984 commits

Author SHA1 Message Date
Matúš Kukan
55cac8c903 unusedcode: remove XclObjId and unused typedefs 2012-02-10 21:41:48 +01:00
Matúš Kukan
a8326b3af4 hopefully we don't need this hack 2012-02-10 21:41:47 +01:00
Matúš Kukan
5cabaf5a32 fdo#39491 more of unnecessary include paths 2012-02-10 21:41:46 +01:00
Matúš Kukan
19b33ca42f fdo#39491 remove a few nonexistent include paths from SOLARINC 2012-02-10 21:41:46 +01:00
Matúš Kukan
12bf03351e fdo#39491 remove nonexistent include paths 2012-02-10 21:41:45 +01:00
Matúš Kukan
4b30ec9def fdo#39491 -I$(OUTDIR)/inc is set in SOLARINC 2012-02-10 21:41:45 +01:00
Matúš Kukan
e8a28be0dd move this include path to RepositoryExternal.mk 2012-02-10 21:41:44 +01:00
Rene Engelhard
659f381fe2 remove accidentially committed pyuno-py3 module from Makefile... 2012-02-10 21:35:46 +01:00
Kohei Yoshida
ce03ae64b5 Cleaned up ScDPSource and ScDPMember(s) a bit.
* boolean, string conversion.
* removing virtual keywords when it makes no sense.
* privatize methods that are called only from within.
* removed methods that are not used.
* etc.
2012-02-10 15:34:58 -05:00
Kohei Yoshida
e1bb54d77d String to rtl::OUString. 2012-02-10 15:34:58 -05:00
Kohei Yoshida
bc99c90e88 This method is still used on WIN32. 2012-02-10 14:51:30 -05:00
Markus Mohrhard
b434637108 WaE at mac tinderbox 2012-02-10 19:42:18 +01:00
Markus Mohrhard
82e349fd80 add XDataPilotTable2 test to ScDatPilotTableObj 2012-02-10 19:19:30 +01:00
Markus Mohrhard
c1589dbd45 add test code for XDataPilotTable2 2012-02-10 19:17:57 +01:00
Markus Mohrhard
85e0a91446 slowcheck should not be executed in module default target 2012-02-10 19:17:57 +01:00
Kohei Yoshida
50078bd1ef Fixed the accidental swapping of equality / non-equality condition.
This should fix Stephan's tinderbox error.
2012-02-10 12:07:18 -05:00
Jan Holesovsky
9951de4a10 fdo#42771: Fix crash when loading an invalid .fodt.
createTextCursorByRange() likes to throw runtime exception, even though it
just means 'we were unable to create the cursor'.
2012-02-10 17:56:32 +01:00
Petr Mladek
e0626ada2f add back close button to the about dialog
Some windowmanagers on small devides do not have the close window button,
so all dialogs should have its own way how to diappear.

It is now done like in other application. They use "Close" button instead
of "OK". They put it into the right side and delimit it by a line, so
it looks like another dialog in the application.
2012-02-10 17:38:48 +01:00
Eike Rathke
43aa1115c8 changes to "convert detdata.cxx in SC module to boost:ptr_vector"
* for includes from other modules use <> instead of "", i.e.
  <boost/ptr_container/ptr_vector.hpp>
* use size_t instead of int for container positions and count
* no need for DeleteAndDestroy(), in fact delete p followed by
  ptr_vector::erase() attempted to delete the instance twice and would crash
* adapted places that accessed DeleteAndDestroy() to operate on the vector
  instead
  * introduced GetDataVector() for that
* changed the DeleteOnTab() loop that used DeleteAndDestroy() to properly
  iterate over the container instead
* changed UpdateReference() to a loop using iterator
* changed operator==() to use size_t instead of sal_uInt16
  * note aside: mixing sal_uInt16 with a container's size isn't a good idea
* adapted places that access Count() and GetObject() to use size_t instead of
  sal_uInt16
* made GetObject() const and return const ScDetOpData*
* changed indentation to 4 spaces per level
2012-02-10 17:27:27 +01:00
Noel Grandin
d4a31e6ae2 convert detdata.cxx in SC module to boost:ptr_vector
converts usage of SV_DECL_PTRARR_DEL in sc/inc/detdata.hxx and associated code
to boost::ptr_vector
2012-02-10 17:27:27 +01:00
Norbert Thiebaud
90d1c9ff82 the PATH must be set properly, even with java disabled ... 2012-02-10 10:18:53 -06:00
Miklos Vajna
62b045a559 make cmd: custum -> custom 2012-02-10 17:06:24 +01:00
Elton Chung
ea1fa6963d Remove unused code 2012-02-10 15:42:53 +00:00
Caolán McNamara
4e022ca124 filter out Dde* cause they're not easy 2012-02-10 15:42:53 +00:00
Stephan Bergmann
cba3ac1eab Avoid deadlocks when disposing recursive JobQueue::enter
...where the outer JobQueue::enter blocks on m_cndWait after it has been reset
again due to m_lstJob.empty().
2012-02-10 16:26:00 +01:00
Petr Mladek
739100d0ab use system stdlibs by default (fdo#45074, fdo#45696)
this is second part of the fix for the two bugs
2012-02-10 15:31:19 +01:00
Caolán McNamara
fcb72a159b get libcdr to build under msvc 2012-02-10 14:25:55 +00:00
Alexander Bergmann
99b2adf721 Removed unused code 2012-02-10 14:20:52 +00:00
Caolán McNamara
740cf4a590 bah, we don't need these after all 2012-02-10 14:20:52 +00:00
Caolán McNamara
f484e0b078 best to filter out salhelper:: from unused I think 2012-02-10 14:20:52 +00:00
Caolán McNamara
21040f2288 hack around sdk installer breakage 2012-02-10 14:20:52 +00:00
Caolán McNamara
0b584c9442 drop TT workben 2012-02-10 14:20:51 +00:00
Jan Holesovsky
8912cf3075 fdo#40261: Fix crash in XML Form Document.
The data structure holding the UI elements in the browser listbox was a
terrible mess - it held the items in an unordered_map, but then accessed
them via a vector containing iterators to this unordered_map.

Fixed the problem (and cleaned all this up) by removing the vector of
iterators, and turning the unordered_map into a normal vector.  When we need
access by name, we just go through all the items; it is always just a handful
of them anyway.
2012-02-10 15:12:26 +01:00
Petr Mladek
0787025c13 use system stdlibs on Linux (fdo#45074, fdo#45696)
We use pretty old compiler for the official build, so it should be compatible
with most systems. The old system libraries breaked 3rd-party extensions.
There were also problems with exceptions hadnling.
2012-02-10 15:06:02 +01:00
Stephan Bergmann
8b65733bbd -Werror=sign-promo from cppunit; old GCC redux 2012-02-10 15:02:25 +01:00
Takeshi Abe
2b1758a2dc Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) to equalsAscii(...) 2012-02-10 23:01:07 +09:00
Tomcsik Bence
0572054621 fdo#45330 Improving layout of Confirm File Format dialog
Although fdo#45330 was a duplicate of fdo#45117 which was fixed
earlier, this patch makes the layout look better when the button
text is very long, because it resizes the boundary boxes of fixed
text and ruler, too. I've changed the sequence of
the functions in InitSize() and the size calculations.
2012-02-10 14:57:11 +01:00
Stephan Bergmann
8de63bac75 -Werror=sign-promo from cppunit 2012-02-10 13:35:35 +01:00
Matúš Kukan
d06a78c25b unotest: convert to gbuild 2012-02-10 13:35:34 +01:00
Luboš Luňák
31e236c5ef consistent constness for getFunctionSymbol() overloads
This is an inline function, so there should be no problems with binary
compatibility.
2012-02-10 13:34:05 +01:00
Miklos Vajna
c57da7aa44 dbaccess: DatabaseDataProvider is not in chart2 2012-02-10 13:25:06 +01:00
Tor Lillqvist
386161779b On Cygwin, Make wants to see Unix-style pathnames 2012-02-10 14:14:35 +02:00
Tor Lillqvist
cd2644df49 Don't source config_host.mk as such but put quotes around the variable values
Otherwise lines like:

export CLASSPATH=C:/PROGRA~2/Java/JDK16~2.0_2/jre/lib/rt.jar;.

will cause problems on Windows.
2012-02-10 14:14:21 +02:00
Tor Lillqvist
2e1faa12fa WaE: unreferenced local variable 2012-02-10 14:05:14 +02:00
Tor Lillqvist
ece70bbfec Silence silly MSVC "deprecation" warnings too 2012-02-10 14:04:43 +02:00
Tor Lillqvist
1c343fd6e3 Don't use the debugging CRT and different name when building LO for debugging 2012-02-10 14:04:12 +02:00
Tor Lillqvist
95e79b3ebd WaE: unreferenced local variable 2012-02-10 14:04:06 +02:00
Caolán McNamara
39bfd6c0bc can use direct operator[] variants 2012-02-10 11:09:08 +00:00
Caolán McNamara
9c19e79f19 extend unit test to islower 2012-02-10 11:09:08 +00:00
Carsten Niehaus
40cddfce8b Removing one obsolte GNUC check for GCC < 4.0.1
See https://bugs.freedesktop.org/show_bug.cgi?id=45131
2012-02-10 10:56:13 +01:00