2011-08-02  Petr Mladek  <pmladek@suse.cz>  [807c3f3a3a350d10c7d51c70ee2653de73c94d1c]

Version 3.3.4.1, tag libreoffice-3.3.4.1 (3.3.4-rc1)


2011-07-27  Caolán McNamara  <caolanm@redhat.com>  [da00d21426b1480e47732bd6721b7ac0fccf220b]

Resolves: fdo#38955 set selection request as done for macro recorder

Signed-off-by: Kohei Yoshida <kyoshida@novell.com>

2011-05-31  Petr Mladek  <pmladek@suse.cz>  [631630de93e96b82e3b94ee4b5c388e40305ff77]

Version 3.3.3.1, tag libreoffice-3.3.3.1 (3.3.3-rc1)


2011-05-04  Bjoern Michaelsen  <bjoern.michaelsen@canonical.com>  [3152922a95e18814e32bcf8bc29c872077d05a65]

lp#775608: Libreoffice Calc's PRODUCT function doesn't calculate correctly.

Signed-off-by: Kohei Yoshida <kyoshida@novell.com>

2011-03-21  Kohei Yoshida  <kyoshida@novell.com>  [8f34ffa5677bfc86ef5aa33811955c577f8799c3]

Fix seg faults on sheet deletion.

Sometimes a simple sheet removal causes segfault in certain types of
documents.  Not always reproducible, but this fix is certainly safer.
(n#680272)

Signed-off-by: Noel Power <nopower@novell.com>

2011-03-11  Tibby Lickle  <tibbylickle@googlemail.com>  [e54c3699db11dc1bcc7bd7fa069c9c4124715839]

Disabled auto-complete in Calc filter dialog - fix for bug 34898.

A hyphen character caused auto-complete to kick in, changing the user's choice of conditional operator to "=". This was not changed back if auto-complete option is overridden.

Signed-off-by: Kohei Yoshida <kyoshida@novell.com>

2011-03-08  Petr Mladek  <pmladek@suse.cz>  [9210ccb8cf4d50babe7a3a8bb6445a19d17178bd]

Version 3.3.2.1, tag libreoffice-3.3.2.1 (3.3.2-rc1)


2011-03-08  Kohei Yoshida  <kyoshida@novell.com>  [1ebf64611845c4324ddb930d685365b6cb83382b]

Properly invalidate cached sheet XML streams during reference update.

Failure to invalidate sheet streams during reference update caused
formula cross referenceing between sheets to totallly get borked.

The bug was originally reported in i#116833.

Signed off by Petr Mladek <pmladek@suse.cz>

2011-03-07  Kohei Yoshida  <kyoshida@novell.com>  [a200691a5081bb4b1f2008da6e503d73c0c70b85]

Make sure these values are positive; we use them to resize arrays.

This fixes fdo#34350.

Signed-off-by: Michael Meeks <michael.meeks@novell.com>

2011-03-03  Kohei Yoshida  <kyoshida@novell.com>  [863d358b594750d68f0cbb9692c7f0023589cee9]

I forgot to say that the last commit was signed off by Thorsten.

Commit hash: e301739e4439be4214de0ff9b1bd6c2142d6806e
Signed-off-by: Thorsten Behrens <thb@documentfoundation.org>

2011-03-03  Kohei Yoshida  <kyoshida@novell.com>  [e301739e4439be4214de0ff9b1bd6c2142d6806e]

Fixed incorrect cursor navigation. (fdo#33756)

Block selection with keyboard was incorrect when the selected range
included hidden cells.  This also fixes one crasher on block
selection during formula reference mode i.e. type '=SUM(' and select
range via keyboard afterward.

2011-03-03  Kohei Yoshida  <kyoshida@novell.com>  [3c9f5bcc67e077448aaade2f0aed597e9afc1326]

Better fix for fdo#31939.

Turns out that the token array's recalc mode is set to "recalc always"
when it contains a volatile token during compilation.  We can re-use
that to mark the token array volatile before the interpretation starts.
The end result is the same, with better performance since we can avoid
re-scanning of the token array.

Signed-off-by: Michael Meeks <michael.meeks@novell.com>

2011-03-03  Kohei Yoshida  <kyoshida@novell.com>  [2108280e847a78da3cc401dd07dbcfd9bab3e7d1]

Go through all tokens to look for a volatile one. (fdo#31939)

When a volatile token is inside a conditional function (such as IF),
*and* the evaluation of that conditional skips the volatile token
it would incorrectly mark the cell non-volatile.  The solution is
to scan through all tokens in the token array in the beginning of
the calculation and mark the cell volatile if one is found.

2011-02-27  Jean-Baptiste Faure  <jbf.faure@orange.fr>  [90db49dae7076e255a6f37787492f5206682cb41]

Changed label size and position for BTN_GENERAL_PREC, FT_PREC and ED_PREC

FT_PREC overwrote BTN_GENERAL_PREC so that French translation was truncated

2011-02-18  Kohei Yoshida  <kyoshida@novell.com>  [4f5dedef46bb48b19f063536b3c55cd8e46a9d41]

Properly update column and row header selections. (fdo#34383)

When making range selection by mouse, Calc wouldn't highlight the
new range in the column and row headers.  It was because we weren't
calling ScTabView::SelectionChanged() when the selection range
is updated.  This SelectionChanged() call then puts in queue a
re-paint request for column and row headers.

2011-01-27  Jani Monoses  <jani.monoses@canonical.com>  [d4d6a678bf169eebee2fe4d71c8ec66de6898d6e]

Remove unused declaration

Signed-off-by: Michael Meeks <michael.meeks@novell.com>

2011-01-21  Kohei Yoshida  <kyoshida@novell.com>  [96bee1507119ca0525845022019d90f0694996aa]

Fixed incorrect page number in page preview mode. (fdo#33155)

When the window is large enough to show several 'Page X' strings,
the page number was not properly incremented.  This commit fixes
it.

2011-01-21  Kohei Yoshida  <kyoshida@novell.com>  [ed46df1fcb5869818f5f74e0c7a5b19c65102e83]

Fixed incorrect import of cell attributes from Excel documents.

When a cell with non-default formatting attribute starts with non-first
row in a column, the filter would incorrectly apply the same format to
all the cells above it if they didn't have any formats.  This commit
fixes it.

2011-01-13  Kohei Yoshida  <kyoshida@novell.com>  [af63319fcdeea3f9b5018eab83ef5a9e64905446]

Reverting the merge commit 0fe55349b05fae496a86a3fa958d184f0453916c.

I created a patch between before and after the merge commit, and
reverse-applied it.  This is because if you revert a merge commit
in git you are denying all future merges from that branch.  I wasn't
sure if we really wanted that.

Signed-off-by: Petr Mladek <pmladek@suse.cz>

2011-01-13  Kohei Yoshida  <kyoshida@novell.com>  [5ada5635cff38af87830b091b36159cf80e4cf5d]

Revert "This is also part of the merge."

This reverts commit 0fe55349b05fae496a86a3fa958d184f0453916c.

Signed-off-by: Petr Mladek <pmladek@suse.cz>

2011-01-11  Petr Mladek  <pmladek@suse.cz>  [c900e3db767518b7a60eaf24bdf298c94315f685]

Please, ignore the previous message; it was for the libreoffice-3-3-0 branch

This is 'libreoffice-3-3' - the stable branch for the 3.3.x releases.
Only safe changes, reviewed by anoter person are allowed.

If you want to build something cool, unstable, and risky, use master.

2011-01-11  Petr Mladek  <pmladek@suse.cz>  [15d298ba7c4e89b043b3077e17747ba027a62c43]

Branch libreoffice-3-3-0

This is 'libreoffice-3-3-0' - the stable branch for the 3.3.0 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 3.3.x release,
please use the 'libreoffice-3-3' branch.

If you want to build something cool, unstable, and risky, use master.

2011-01-10  Petr Mladek  <pmladek@suse.cz>  [90cd1207c2da465fff97051f11c7103ec330fb92]

Version 3.3.0.3, tag libreoffice-3.3.0.3 (3.3-rc3)


2011-01-07  Kohei Yoshida  <kyoshida@novell.com>  [0fe55349b05fae496a86a3fa958d184f0453916c]

This is also part of the merge.


2011-01-07  Kohei Yoshida  <kyoshida@novell.com>  [c64adfe893eea2d86c46a07ec9c3f99a7b465734]

Merge commit 'ooo/OOO330_m19' into libreoffice-3-3

Conflicts:
	sc/source/core/data/table2.cxx
	sc/source/core/data/table3.cxx

2011-01-06  Kurt Zenker  <kz@openoffice.org>  [1509a04294f7134ebdda348d969af25354f90e23]

CWS-TOOLING: integrate CWS calc64


2011-01-06  Kurt Zenker  <kz@openoffice.org>  [a09c206998f92f799ba408aeae8263ac1159b683]

CWS-TOOLING: integrate CWS ooo33gsl13


2011-01-05  Kohei Yoshida  <kyoshida@novell.com>  [c8a34b04115ed5c1c87bf879f577e711c25c3831]

Make more room for Portuguese locale. (fdo#32823)

Signed-off-by: 	   Michael Meeks <michael.meeks@novell.com>

2011-01-05  Niklas Nebel  <nn@openoffice.org>  [2e7856016590b7c2ac910eaabd5cf860ba135520]

calc64: remove a warning


2011-01-05  Niklas Nebel  <nn@openoffice.org>  [0c2ccbd2fe129b2c7adf368a8a1fb855bf22fc02]

calc64: #i116164# performance of filters with many filtered ranges


2010-12-29  Kohei Yoshida  <kyoshida@novell.com>  [208ef6386f934012bcc7bbdbc2271ebd04952536]

Remove bogus check for numerical sheet names. (fdo#32570)

We apparently put numerical sheet name into quotes somewhere else,
so checking for a number followed by a '.' and flagging it as bad
is not only necessary, it's not appropriate.  E.g. we do support
other formula syntax where the sheet-to-reference separator is not
'.' (Excel A1 and Excel R1C1), thereby making this test even more
inappropriate.

Signed-off-by: Jan Holesovsky <kendy@suse.cz>

2010-12-22  Kohei Yoshida  <kyoshida@novell.com>  [25aea9775c2e6777c998d2db7d2d5d5314129fd0]

Actually the object doesn't have to be a cell note.

The same problem happens even when the object is not a cell note,
but, say, a regular text box.  Let's not check whether or not the
object is a cell note.

Signed-off-by: Caolán McNamara <caolanm@redhat.com>

2010-12-22  Kohei Yoshida  <kyoshida@novell.com>  [9d59ebed31d016c44f91f8b4587f9852ba65e5b4]

Avoid double-paste when pasting text into cell comment. (fdo#32572)

Original patch is from Caolan.  I re-worked it to handle more use
cases.

Signed-off-by: Caolán McNamara <caolanm@redhat.com>

2010-12-18  Petr Mladek  <pmladek@suse.cz>  [a619953e638d7579f688674e9f7ce3a1042d5db5]

Version 3.3.0.2, tag libreoffice-3.3.0.2 (3.3-rc2)


2010-12-14  Kohei Yoshida  <kyoshida@novell.com>  [c1fe450afdc7234c549de3dfac61a620ff213169]

Remove trailing spaces too when parsing csv's simple numbers.


2010-12-14  Caolán McNamara  <caolanm@redhat.com>  [d81a90edf1c9e17eaaff77cb00d49051a5a7d151]

WaE, shadowed warning


2010-12-14  Kohei Yoshida  <kyoshida@novell.com>  [c2e6be18f38240106a3811445d993d35be12a790]

We need to reset i to 0 after parsing spaces.


2010-12-14  Kohei Yoshida  <kyoshida@novell.com>  [6a28e8397ae7a913dc7af1d2bcb3590ce975c1ac]

The previous commit would skip *all* spaces.  This is the right fix.


2010-12-14  Kohei Yoshida  <kyoshida@novell.com>  [15254fc821d2bbed205e814c689b19cafaf1eb8a]

When parsing numbers, ignore preceding spaces.

Also, increment the char pointer and use it directly, which is
faster than accessing char via [] in each iteration.

2010-12-11  Eike Rathke [er]  <eike.rathke@oracle.com>  [8839ada2ba12033f1c7d7ab23f59353e036dbbb2]

ooo33gsl13: #i115906# obtain correct data range for external references * Apparently ScTable::GetFirstDataPos() never worked as intended and selected   the first non-empty row of the first non-empty column instead of also taking   following columns into account where non-empty rows may be on top of that. * Caller of ScDocument::ShrinkToDataArea() must check the return value, if   false there is no data in the area passed and the values obtained may be out   of bounds, not in order or unmodified. * In ScExternalRefMgr a call of ScDocument::ShrinkToUsedDataArea() was   intended instead of ScDocument::ShrinkToDataArea(). For this changed the   return of ShrinkToUsedDataArea() to flag if there is any data and added an   out parameter to flag if the area was shrunk. * Sanitized arguments and slightly optimized ScTable::ShrinkToUsedDataArea()   to not have to check for >0 and <MAX on each iteration. (transplanted from 31b53a2ec7e32f9560464f8a3b9f6c3e07b29083)


2010-12-08  Kohei Yoshida  <kyoshida@novell.com>  [a0bdbcf6481ab9176a7c763284991887d00161ff]

Make the string 'New Record' localizable. (fdo#32209)

This string was hard-coded in the code to be always in English.  This
change makes it localizable.

Signed-off-by: Caolán McNamara <caolanm@redhat.com>

2010-12-07  Kohei Yoshida  <kyoshida@novell.com>  [9e338f0677ab068e1bf792db11123b646938edbc]

Display correct record information in Data Form dialog. (fdo#32196)

I had accidentally removed the part that constructed correct string
to display.  Recovered it, and modified it to use OUStringBuffer
instead of sprintf to construct the string.

Signed-off-by: Norbert Thiebaud <nthiebaud@gmail.com>

2010-12-01  Petr Mladek  <pmladek@suse.cz>  [7dc09f19bc5c182ebabb52482db10f828882aad0]

Version 3.3.0.1, tag LIBREOFFICE_3_3_0_1 (3.3-rc1)


2010-11-30  Kohei Yoshida  <kyoshida@novell.com>  [c10648b5aa8b023b6ec3508e8f593c03fb782340]

Changed header license for new files from ooo-build.


2010-11-30  Kohei Yoshida  <kyoshida@novell.com>  [6683ad4daa97331d1ce06136421cd8ec56190b24]

Don't forget to store sheet index of merged cell range to be re-merged.

This fixes fdo#31805.

2010-11-30  Kohei Yoshida  <kyoshida@novell.com>  [04608abcf80b8182509a9fc8b5f0d8088c47e045]

Skip hidden cells while expanding range selection.

This commit happily fixes fdo#31796.

2010-11-29  Kohei Yoshida  <kyoshida@novell.com>  [9938610417b58421ec07386406e0604815c77eaa]

Extracted methods that may be used in another place.


2010-11-29  Kohei Yoshida  <kyoshida@novell.com>  [cbdf7c36bd1128757d4e30d52976717d4ca67b8d]

Removed unused code.


2010-11-29  Kohei Yoshida  <kyoshida@novell.com>  [d8e814b2b0966efb1cc40223bd0025c96b1d825e]

Don't update visible ranges for invisible panes.


2010-11-29  Kohei Yoshida  <kyoshida@novell.com>  [052488532d2237ea12a6cfd72d6e38350e5ae122]

Re-calculate visible range when switching sheets.

Visible range of the current sheet is used to decide whether or not
to render cell cursor.  Failing to do that was causing the cursor
to disappear when switching sheets while the cursor on the current
sheet was invisible. (fdo#31753)

2010-11-29  Kohei Yoshida  <kyoshida@novell.com>  [42485a770ac22f501b6bf6e94215dd42d267c48f]

Fixed use of incorrect integer type during import of outlines.

I was supposed to use SCSIZE to store column / row position but was
incorrectly using sal_uInt8.  This caused import of outlines from
Excel document to entirely get screwed when the outline positions
were > 255, and it was understandably so. :-P (fdo#31833)

2010-11-29  Kohei Yoshida  <kyoshida@novell.com>  [2ad4ec8e3a5960e1bbbcb0d917ac16acdf0f1729]

More strict parsing of external range names.

This is to prevent parsing formula strings such as '=A#REF!' as valid
external range names.  Ideally we should express any formula including
invalid refs simply as '=#REF!' in all cases, but we are not there
yet. (fdo#31741)

2010-11-25  Thorsten Behrens  <tbehrens@novell.com>  [5e643c11ece034c6d1f0a7174fc63b1a9fa1e5d3]

Put show credits entry into all app ui configs


2010-11-25  Katarina Machalkova  <kmachalkova@suse.cz>  [c9b21c9580204dc3b5541900f613dc13be1ae5f9]

Fixed crash in xls export caused by off-by-one iterator

(this is for bnc#653533 and fdo#31141)

2010-11-19  Kohei Yoshida  <kyoshida@novell.com>  [5d8e16bda040c8bc64d1619d034e5c49217fbf03]

No automatic width adjustment of the dropdown popups. (fdo#31710)

Let's not automatically adjust the width of the dropdown popups of
the Values combo boxes in the standard filter dialog.  It looks
better that way.

2010-11-18  Kohei Yoshida  <kyoshida@novell.com>  [5d75f3d8c0689b3dea34747ca4334096ff66913c]

Make VLOOKUP work with an external reference once again. (fdo#31718)


2010-11-18  Tor Lillqvist  <tlillqvist@novell.com>  [27d40392c0164cd616c621b3500adac237a23ca2]

Add workaround to avoid pasting data from OOo Calc as an OLE object

Help for fdo#31077.

2010-11-18  Kohei Yoshida  <kyoshida@novell.com>  [88fb06d76f75c2b907d3ed024dec53cf11a382e0]

Disable document modify and broadcasting of changes on range names.

We don't need to set document status modified & broadcast changes
on every single addition of range names during document import.
Doing so would make the document import painfully slow esp with
docs with lots of range names defined. (n#634257)

Note: this is a backport of the same fix from master.  Please don't
merge this back into master.

2010-11-17  Kohei Yoshida  <kyoshida@novell.com>  [f853b153ceb623624a9a531535b1e1cac5bc58a7]

Changing margins in print preview should mark the document modified.

This fixes fdo#31219.

2010-11-16  Jan Holesovsky  <kendy@suse.cz>  [5a946db883d73807253caafa44d197f7acfb48da]

Merge commit 'ooo/OOO330_m15' into libreoffice-3-3


2010-11-12  Tor Lillqvist  <tml@hemulen.(none)>  [b4feaa937670e58b2a0a6209c0f76674af35dea4]

Merge branch 'feature/pptx-export-ooxml11' into libreoffice-3-3


2010-11-12  obo  <obo@openoffice.org>  [b6ea51bd625595ff923a1695b2137e476aaa0d52]

CWS-TOOLING: integrate CWS calc63


2010-11-11  Jan Holesovsky  <kendy@suse.cz>  [8f416acd20a702f4dbb28f28b0e01b98d0e87925]

Merge commit 'ooo/OOO330_m14' into libreoffice-3-3


2010-11-11  Petr Mladek  <pmladek@suse.cz>  [2e9051f0ecc9dd334d05936dd58dc17775301ca9]

Version 3.2.99.3, tag LIBREOFFICE_3_2_99_3 (3.3-beta3)


2010-11-11  Niklas Nebel  <nn@openoffice.org>  [e89b22dab8ee99c494150d5ccd1f78ba0c8fe502]

calc63: #i115512# RoundValueAsShown: don't round to -1 digits for unlimited precision


2010-11-09  Tor Lillqvist  <tlillqvist@novell.com>  [ab1d9ed24f22a4b840f49ba8ba6cc3a55840d3f7]

Fix Windows build error

Include <windows.h> explicitly, surrounded by the prewin.h and
postwin.h headers. Also #undef ERROR to avoid a clash. Approved by
caolan.

2010-11-09  obo  <obo@openoffice.org>  [c74ef5767ef2f670aab7401bb331bf8a0ba83c17]

CWS-TOOLING: integrate CWS calc62


2010-11-08  Kohei Yoshida  <kyoshida@novell.com>  [3a06b860b69fdbe25317b44c4b13581bd88e736c]

Fixed a crash on importing named ranges on higher sheets.

When importing xls document containing named ranges on sheets higher
than 256 (max number of sheets Calc supports currently), Calc would
crash.  We need to check for the upper boundary condition before
accessing the array by index to prevent crash. (n#649941)

2010-11-08  Niklas Nebel  <nn@openoffice.org>  [a92726be8f251b1cd4d8c0c9413308ee3011ef55]

calc62: #i115431# if #VALUE! doesn't fit into the cell, always use hashes


2010-11-08  Niklas Nebel  <nn@openoffice.org>  [e939353f9c1486f149a481b25a2c57103189c9bb]

calc62: #i115431# treat DataPilot filter field numbers as relative to the sheet, set MK_ERR bit for errors


2010-11-07  Tor Lillqvist  <tlillqvist@novell.com>  [4b11adaf8ae282636c1a7f400485dca90c7f8f3a]

Fix compilation error


2010-11-05  Kurt Zenker  <kz@openoffice.org>  [2d9884e79d5885ee708e29dbd21b13ad0c3e6631]

CWS-TOOLING: integrate CWS calc33stopper2


2010-11-03  Kohei Yoshida  <kyoshida@novell.com>  [55cd5ed89d0eb1f3be976d592438fa9f8fabc52d]

Set correct default formula syntax value in case it's not explicitly set.

When starting from a fresh config, Calc failed to assign default 'Calc A1'
syntax unless the user specifically goes to the Options page and sets the
formula syntax in the Calc - Formula options page.  This caused e.g.
print range editing to fail miserably. (fdo#31041)

2010-11-02  Daniel Rentz [dr]  <daniel.rentz@oracle.com>  [1a647a5e1b76e24cf250ef66dc9604e956e3112d]

calc33stopper2: #i115313# revert calculation of scaling factor for drawing layer to behaviour of OOo 3.2


2010-11-01  Jan Holesovsky  <kendy@suse.cz>  [287d59ff7b1002f698ecf4a4e7a6a08ec4e6269a]

Merge branch 'master' of ssh://git.freedesktop.org/git/libreoffice/calc


2010-11-01  Caolán McNamara  <caolanm@redhat.com>  [9a6aaec770b8974c4266c956838d5f2849241f3e]

there's something very odd going on here


2010-11-01  Jan Holesovsky  <kendy@suse.cz>  [0721832dce822121f1d0332367710371b7b48746]

Merge commit 'ooo/OOO330_m13'


2010-11-01  Caolán McNamara  <caolanm@redhat.com>  [1a7305a40c8268d93f1705a99bbfa196217b9d7e]

give another go at enabling this test using rdb copies and only for Linux


2010-10-31  Joost Eekhoorn  <joost.eekhoorn@gmail.com>  [62b9c0782c978213a267acb1b29f40d8ddcadc7d]

use RTL_CONSTASCII_USTRING_PARAM


2010-10-31  Joost Eekhoorn  <joost.eekhoorn@gmail.com>  [f2129a34f7a11702655ca0d351a8bd616cf3d9f9]

use RTL_CONSTASCII_USTRING_PARAM


2010-10-31  Joost Eekhoorn  <joost.eekhoorn@gmail.com>  [ab2d21c508f7e4bd4e7bd589e391aafa55d7d715]

use RTL_CONSTASCII_USTRING_PARAM


2010-10-31  Joost Eekhoorn  <joost.eekhoorn@gmail.com>  [33eafa027d082a7f554cabf52f5809a9afc82c2f]

use RTL_CONSTASCII_USTRING_PARAM


2010-10-30  Gert Faller  <gertfaller@aliceadsl.fr>  [deed86a648da07a0cee8dd7f328e534722f06986]

Use RTL_CONSTASCII_USTRINGPARAM macro


2010-10-29  Muthu Subramanian K  <sumuthu@novell.com>  [246c6b2c1ff8f2d14225438fa2f32386037820f8]

Disabling commentPr export - since MSO is yet to support this.


2010-10-28  Kohei Yoshida  <kyoshida@novell.com>  [5d5738ac9cc7e73f40dcb6a6888e32a496dc283b]

Allow activation of cell even when the document is read-only.

This behavior is very handy when checking for referenced cells
visually by pressing F2.  No cell content modification is allowed
of course. (n#647982)

2010-10-28  Caolán McNamara  <caolanm@redhat.com>  [0ab872e1fc7d32525e296f0ace5a9efd6035b102]

add modelines to .hxx files as well


2010-10-28  Caolán McNamara  <caolanm@redhat.com>  [c202e534d44ed2dc10ed82c2317f1ab281ab0fa8]

Lets try a local copy

lets copy them, on the theory that someone might be editing them during the
test

2010-10-28  Cédric Bosdonnat  <cedricbosdo@openoffice.org>  [1e5f0d00b30f5fd85fd224fc73cc26d5ecbc2099]

Fixed a condition: the filter needs to be checked for NULL in every case


2010-10-28  obo  <obo@openoffice.org>  [2a75245b7f40a23fc5d866912aa8dacd3637448f]

CWS-TOOLING: integrate CWS calc61


2010-10-27  Niklas Nebel  <nn@openoffice.org>  [c929d0319d72247a9fb3db00aac412a3ef836589]

calc61: #i115266# handle multiple selection for printing, return valid settings for invalid selection, catch exception from getRenderer


2010-10-27  Katarina Machalkova  <kmachalkova@suse.cz>  [30447aa878487763f426eaf1c5f135139a95d3ea]

Merged xlsx-shared-oox-chart-export-part1.diff from ooo-build


2010-10-27  Norbert Thiebaud  <nthiebaud@gmail.com>  [2961601093ef8527f0b3352f32868a0f7b94916e]

remove vos reference from uno xml descriptions


2010-10-27  Thorsten Behrens  <tbehrens@novell.com>  [b0839380bdcdd175fa05ea7a09b8f1df52917dc9]

Revert "enable this again ;-)"

This reverts commit 263f325e3fcd629a445b36a5bf7487731996a813. Cannot
register configmgr on at least two different platforms.

2010-10-26  Caolán McNamara  <caolanm@redhat.com>  [263f325e3fcd629a445b36a5bf7487731996a813]

enable this again ;-)


2010-10-26  Caolán McNamara  <caolanm@redhat.com>  [7c16a220cb20f9c0b2a9af9adb2c03ec6ba30aad]

need salhelper now to build


2010-10-25  Norbert Thiebaud  <nthiebaud@gmail.com>  [4df20220a7ae3119141f572a12a2b887d7a12c50]

Finally, gut the vos module out of the build


2010-10-25  Norbert Thiebaud  <nthiebaud@gmail.com>  [1c3d4c35f42ab9ad4ed726623cd24d24891a0fe5]

remvove vos/macros.h usage


2010-10-25  Norbert Thiebaud  <nthiebaud@gmail.com>  [336b645aeed33d2bad4850af2d4b811b29972701]

merge vosremoval-mutex.diff

In practice the changeset is 'inspired' by vosremoval-mutex.diff
but was essentially redone manually

2010-10-25  Norbert Thiebaud  <nthiebaud@gmail.com>  [56a52533d446c89592f838f3b50c97d6b7ff3961]

merge vosremoval-reference.diff


2010-10-25  Norbert Thiebaud  <nthiebaud@gmail.com>  [e8c6a8e214441ac19a4e39511c757c8085c89366]

Use a SolarMutexGuard rather that direct acquire/release on the SolarMutex


2010-10-25  Norbert Thiebaud  <nthiebaud@gmail.com>  [f272c0cca18856f6fe1d8213314d581f3f77e1ba]

Replace a suspicious Guard on a solar mutex.

This site use a OClearableGuard that is being converted to a SolarMutexGuard
Guard will do... What is suspicious is the point where it is cleared.
It seems that it is way to early to serve its declared purpose.

2010-10-25  Norbert Thiebaud  <nthiebaud@gmail.com>  [5a1c98320a53b37ae53c3e1ef6ddddbfe4f75de3]

replace ScUnoGuard by SolarMutexGuard

ScUnoGaurd provide a Guard wrapper around Application::GetSolarMutex().
This is now provided by the class SolarMutexGuard.

2010-10-25  Norbert Thiebaud  <nthiebaud@gmail.com>  [93b7b336bcf40b92f595323898228442279fae29]

use SolarMutexGuard to guard the SolarMutex


2010-10-25  obo  <obo@openoffice.org>  [c26e034840bb7bde528e0636395577cc98133db7]

CWS-TOOLING: integrate CWS calc33stopper1


2010-10-24  Jan Holesovsky  <kendy@suse.cz>  [61f44441e91938dde4a71ccc610df0ce3c3ba3d0]

Merge commit 'ooo/OOO330_m12'


2010-10-23  Kohei Yoshida  <kyoshida@novell.com>  [57b695a2a5f69190f54e33f610e2a4a9fcca19b1]

When launching the ref input window, we need to select the initial string.

Launching the reference input window from the formula wizard dialog did not
set initial selection over the whole reference string.  For instance, type
=ABS(A1) in a cell, open up the formula wizard dialog, then click the
reference button to launch the reference input which has 'A1' inside, this
string.  Because 'A1' was not selected, when you click on another cell it
would not overwrite the old reference string.

This commit fixes it.

2010-10-23  Kohei Yoshida  <kyoshida@novell.com>  [dcc9d619df1b2b8f77b25930206bdaf747ca6ab7]

Fix incorrect display of references from the formula input wizard.

When launching the reference input dialog from the formula input
wizard, it would not display the sheet name & it always displayed
the reference as range.  This change fixes it. (fdo#30904)

2010-10-23  Jesús Corrius  <jesus@softcatala.org>  [7aa1f521decd012fbb025bd3905e945074c44bd2]

Make for_each less ambiguous for VC++ 10


2010-10-22  Daniel Rentz [dr]  <daniel.rentz@oracle.com>  [ed8dc81ebfb48d90b1a96fb9a7fc3b2bb5eba6d2]

calc33stopper1: #i79854# do not create defined names in Calc for functions


2010-10-22  Niklas Nebel  <nn@openoffice.org>  [64953c94a4a92f0ff77476b853480630387d7b3e]

calc33stopper1: #i115183# no reinterpret_cast between ScDBFunc* and ScTabView*


2010-10-22  Kevin Hunter  <hunteke@earlham.edu>  [e77a1674e9e73d22c4088fdd03eea7d03ffe2af0]

Translate some comments, and remove some dead code


2010-10-21  René Kjellerup  <rk.katana.steel@gmail.com>  [bad79a54415a62f1ceeb6cf02ac926924dd7b895]

Few more translations and a minor clean up.


2010-10-21  Caolán McNamara  <caolanm@redhat.com>  [28ad1e7dcf70f390bd2fa3ff96eff847429aea08]

rhbz#636521 Don't record undo info during escher conversion


2010-10-21  Kohei Yoshida  <kyoshida@novell.com>  [149490915fc1c3ccce250a0a69a8c93320a3cb49]

Fix the regression for range array input (e.g. {=A1:A5}).

Typing in =A1:A5 and expanding to create a range array was broken.
This change will fix that. (fdo#30882)

2010-10-21  Andras Timar  <timar@fsf.hu>  [9fe87047580c7a2893ac290fb90edb67b76b3a90]

fixed an i18n problem

Constructing "string + ordinal number" terms programmatically is
an i18n issue, because in some languages (e.g. in Hungarian)
ordinal number should precede the string. The patch solves
http://bug.openscope.org/browse/OOO-85 reported by a Hungarian
localizer ("Oldal 1" should be "1. oldal"). There are more
occurences of this construction in the code of LibreOffice
but this was highly visible and it is correct in Hungarian Excel.

2010-10-20  Katarina Machalkova  <kmachalkova@suse.cz>  [026c85ff21efaf569b9a40dff83ef5027d0292b9]

Undoing pptx filter as a separate lib ( + related changes)

Shared ppt + pptx filter will be merged from cws later

2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [e114713e26a65460cf275fb8b3d66107724c92c9]

disable as there's reports of failure coming in that need to be addressed


2010-10-20  Kohei Yoshida  <kyoshida@novell.com>  [167cff40a6bca04fc5e022919723a974f7a45d0b]

Fixed a crash on importing docs with database functions.

When iterating through an empty column via ScDBQueryDataIterator it
caused segfalut. (fdo#30861)

2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [762458843f8b0fb426f1e702739d63b2d69f9575]

try and reenable this again, and see if it pass buildbot this time


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [a28a0b3bdcf9d5fc16518ad2c589782eb4fcbba0]

WaE, misordered init list


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [d43dad0ab30fedcfac1794a1076fac370c639117]

remove unused variables


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [fe974ca4c6b725af94f239152388e20125cd5ea5]

WaE, unused parameter


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [59f66a4d3cb55bb4f1828ab3ff04cf5b1b20ff14]

WaE, unused parameter


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [93082e0bc131fd665cd8ec49ba4083db20d3faa7]

WaE, silence warnings


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [fe78d55ed69990d673486f15861dd38a68a80edc]

WaE, unused variable


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [7f3a905e0f6ed5b2a0e68c5e4c7ad6ffef0ecd87]

WaE, unused parameter


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [f58e3c9fb5e1acb2c656813e98af628886930f36]

WaE, remove warning


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [b362efae4cbca5a2b5b908e0e22de126a5662d37]

unused variables


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [9554bab9c4dc8fcd7cfff78c403180e148146ad8]

WaE unused parameters


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [cdaa2ccb9268d0bdaf2045b8706241da10a0527c]

WaE unused parameters


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [4d6fb7b3ea074fd9ab50a82c2fcdbfb44d2bb9d3]

WaE, silence warning


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [4b8c2b555e917688806dab6f564f3468e71ec91d]

WaE, unused variable


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [10c35431b006764c45b14dbcc897a9c4de6ccc57]

WaE, unused variable


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [b59d2c013a219ca842b43b296d9bb24b72f22dc6]

WaE, unused parameters


2010-10-20  Caolán McNamara  <caolanm@redhat.com>  [c7e11450db0b8648f21951182444a8f891a10479]

WaE, silence warning


2010-10-20  Povilas Kanapickas  <povilas.kanapickas@gmail.com>  [0757ca32642413593fbeb8318ad58c3cfbb6e358]

Removed lots of dead code.


2010-10-19  Caolán McNamara  <caolanm@redhat.com>  [b55a8d6eb2b712e60dcbf27cb6a8283820a05e60]

add local .res dir into the resourcepath


2010-10-19  Caolán McNamara  <caolanm@redhat.com>  [cdaeb296c3bf15c998413325185254a99785ca87]

disable this for the moment, some more tweaks required apparently


2010-10-19  Katarina Machalkova  <kmachalkova@suse.cz>  [1ef92988d1004d7c6d3ee51b33c711ab45faee42]

Merged oox-smartart-import.diff from ooo-build


2010-10-19  Katarina Machalkova  <kmachalkova@suse.cz>  [c456440dbd0f2bd5a7744b49d77eebb904590482]

Merged xlsx-shared-oox-drawingml-fix-shapes-map-crash.diff


2010-10-19  Caolán McNamara  <caolanm@redhat.com>  [06f7beb563118492dc630b80bbe55552de01aac1]

add mode lines


2010-10-19  Caolán McNamara  <caolanm@redhat.com>  [d8d257c5c1b229b11b20982a0c47d2fb6ed91bfc]

add headless and invisible arguments


2010-10-19  Caolán McNamara  <caolanm@redhat.com>  [dfcc0994a8988c8e48bdcd9c5573e5587de3dc15]

get a basic cppunit test for sc up and running


2010-10-17  David Tardon  <dtardon@redhat.com>  [50182b7f91269faf86ca2a1a477c932a4d5d02dc]

clean up after removal of empty makefiles


2010-10-16  Michael Meeks  <michael.meeks@novell.com>  [87c97a7564db848e7fd6b5fc97a52a0330213637]

Add hacked up unit test pieces for NortySpock


2010-10-16  Jesús Corrius  <jesus@softcatala.org>  [cc7b5a3cfec17e0c773ee025c638a73d22fb8aa9]

Make calls to unary_function and binary_function less ambiguous for VC10


2010-10-16  René Kjellerup  <rk.katana.steel@gmail.com>  [8ff255eaccab2bafecefd46be6c5d336aef213e8]

small chart2 cleanups


2010-10-16  Kenneth Venken  <kenneth.venken@gmail.com>  [92fe008acb59d600d674dd06c0e91869bb9c718f]

some patches that replace sizeof(a)/sizeof(a[0]) with SAL_N_ELEMENTS(a)


2010-10-16  Muthu Subramanian K  <sumuthu@novell.com>  [fa9fb64fc7ea9a3332367019d086bf5551f4930b]

Minor fixes for commentPr export merge.


2010-10-16  Muthu Subramanian K  <sumuthu@novell.com>  [381b99b434a5bd2402f7813eacda15094aba3bab]

Adding support for importing charts using InternalData.

This is similar to sc's chart importer.

2010-10-16  Muthu Subramanian K  <sumuthu@novell.com>  [537da0d932acabd5342f571d0217c4e5061eb663]

UNO APIs for size and moveProtect of notes.


2010-10-16  Muthu Subramanian K  <sumuthu@novell.com>  [d12eacce0e17c49b06cea3c9969aeb33cefa2209]

CommentPr Export feature. Also includes note's shape-size export.


2010-10-16  Muthu Subramanian K  <sumuthu@novell.com>  [86358630d4816789f6bf1aad2b8a344807634e93]

Reset vml counters for a new save.


2010-10-16  Muthu Subramanian K  <sumuthu@novell.com>  [aecf50d59d0587cce910e1bfd3cdb4e453cf6fe1]

Merging sc-xml-with-xls-ext.diff from patches.

These changes allow xml files with .xls extensions
to be opened in calc.

2010-10-15  Cédric Bosdonnat  <cedricbosdo@openoffice.org>  [13d8dee0f2825e66f9f6f82c83128dfdd3f166f2]

Added tpcompatibility.odj to exceptions


2010-10-15  Noel Power  <noel.power@novell.com>  [6ca8e6ab0c3b7d39d45fb938345703985f1bdb2d]

fix build link error


2010-10-14  Kohei Yoshida  <kyoshida@novell.com>  [e7f45c57c8588c08b738e087b2dbc71161460859]

Fixed conflicting resource IDs.


2010-10-14  René Kjellerup  <rk.katana.steel@gmail.com>  [b69eee82a5e289468afdfd8e50ea75b8685d7159]

translated and spell corrected a few comments in the view code


2010-10-14  Noel Power  <noel.power@novell.com>  [7019b25524f5436b94651685130d4d4054e47a0a]

fix bad STR_COUNT


2010-10-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [fcd5e60bd75c32931b8f2fc1bb43ab1fb37b6e15]

CWS-TOOLING: integrate CWS calc60


2010-10-13  Kohei Yoshida  <kyoshida@novell.com>  [c0aac7c892688678544a2dd339064f081cc7fbfa]

Merge branch 'master' into feature/calc-key-binding-compat

Conflicts:
	sc/source/ui/attrdlg/scdlgfact.cxx

2010-10-13  Kohei Yoshida  <kyoshida@novell.com>  [764e33d386f7e881e1563c009f5069e33a0ee5f4]

Let's use Ctrl-Shift-D to launch selection list in LibreOffice.

The legacy OOo used Ctrl-D for launching selection list, but we
use Ctrl-D for "fill down".  Luckily Ctrl-Shift-D is not taken.

2010-10-13  Kohei Yoshida  <kyoshida@novell.com>  [7b289bde77fcf33ffe2114828c969401d5bda7a0]

Slightly reworked the Compatibility option page.

This looks better than the old one.  I took the design from the
Security option page.

2010-10-13  Kohei Yoshida  <kyoshida@novell.com>  [bc6e1f649f9e86daaaba8c22155de6cb7c342c76]

Cleaned up my debug statements.


2010-10-13  Kohei Yoshida  <kyoshida@novell.com>  [916f7a73cd2372e4ba6ee31d574c741ff6398c2f]

Resolved the issue of swapping .uno:Delete and .uno:ClearConents not working.

Removing key events first then setting new key events solved this.
This is one of those quirks of this accelerator configuration UNO
service...

2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [e6df329808c4b8e3c06cfd8614ffdf71aa967bcc]

Fixed build of sc (ctor of XclObjAny has 2 params)


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [b968c2f1fc8e71dd44d7c67da77603012da7bedb]

Merged oox-sc-notes.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [26edd0d746a57cd7353c0931dbd4e604abe52b22]

Merged ooxml-sc-internal-hlink-export.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [47f4d561b5c44c239925edb84d242abfdb11f12e]

Merged ooxml-sc-showdropdown-fix.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [2969dce8a1ea07a30eedd4a59bf3f69a89a307ee]

Merged ooxml-sc-paneexport.cxx from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [e2fe8b83fad41cab0d0db9ca73adfa56b8fd918c]

Merged ooxml-sc-page-date.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [ad17361f991e06ba2b48ba5bc806e1589488fa44]

Merged xlsx-shared-xlsx-export-perf-rowbuffer.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [230ed9ef8b6efb7ebc75b5e6d90e35cb680cad70]

Merged xlsx-shared-xlsx-export-no-more-svstream-sotstorage.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [41dce2a8e86caa9c2dff1e7b9da9246e4f258ad1]

Merged xlsx-shared-oox-calc-export-sotstorage-init.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [68c780b3efc0afc65db44a50aea067cb606f4f90]

Merged xlsx-shared-oox-calc-export-export-pivot-content.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [bd47174b3fcadda86fa6f568a90cdf97721d884f]

Merged xlsx-shared-xlsx-export-cell-style-max-builtin.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [469bdf8c402b8149f31a14698fec622c4e6f2ae1]

Merged xlsx-shared-xlsx-export-skip-auto-format.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [f6a7fcff8868858d50799af4320c45a8cb8b5c79]

Merged xlsx-shared-xlsx-export-simple-autofilter.diff from ooo-buil


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [5fced3b5d58afa378cce03c8937ff8c39d546ea1]

Merged xlsx-shared-xlsx-export-set-xml-2007-flavour.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [9db5edb4a753b684b99bf3bde060fd727b22d69a]

Merged xlsx-shared-xlsx-arabic-export-crash.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [1f3075f834ea6b524b9e56992c24f82225db521d]

Merged xlsx-shared-xlsx-shared-import-and-export.diff from ooo-build


2010-10-13  Katarina Machalkova  <kmachalkova@suse.cz>  [d96bc3bf83a539526c783825f569c82f9147bcc7]

Merged xlsx-shared-xlsx-snapshot.diff from ooo-build


2010-10-13  Kohei Yoshida  <kyoshida@novell.com>  [220a15591a371989e9fccf40c14a86a6dfc82e1a]

Initial attempt to reset key bindings.

This is not working yet.  For some reason only the last key binding
gets set, while all the others get ignored...

2010-10-13  Noel Power  <noel.power@novell.com>  [63cb2de15fc42c2defa97422cf1d21f98a88cd50]

Merge branch 'master' of ssh://noelp@git.freedesktop.org/git/libreoffice/calc


2010-10-13  Noel Power  <noel.power@novell.com>  [b381c6c5072b260069ee8ab497c19a19a320d5c6]

Merge commit 'origin/master' fix conflicts and more trailing ws

Conflicts:
	sc/source/ui/undo/undodat.cxx
	sc/source/ui/vba/excelvbahelper.cxx
	sc/source/ui/vba/vbadialog.cxx
	sc/source/ui/vba/vbahelper.cxx
	sc/source/ui/vba/vbapagesetup.cxx

2010-10-13  Niklas Nebel  <nn@openoffice.org>  [0e506a681fecf457343b34de468859552b1fff5d]

calc60: #i115025# SetRowHeightRange: compare height directly to mpRowHeights sum value


2010-10-13  Noel Power  <noel.power@novell.com>  [4e63e44c55f3c0ab6fa38ad62c5b0ab7fbbd09f0]

replace old header ( that I deleted ) with spanking new one


2010-10-13  Jan Holesovsky  <kendy@suse.cz>  [bd83ad4734389c86ae6ae8972d7ce050c169220e]

Merge commit 'ooo/OOO330_m10'


2010-10-13  Noel Power  <noel.power@novell.com>  [bef01b6751dc826beff29426ad6ac3c3a5f9dbcc]

Merge branch 'vba' fix conflics, trailing ws & tab issues

additionally the following iz patches are rolled up with this commit i#113356, i#112998 i#113955 i#113358 i#113515 i#112531 i#112596 i#112530

2010-10-13  Sebastian Spaeth  <Sebastian@SSpaeth.de>  [7eabce1eea341ab1d29fb01010fddb1cce2b7a9b]

Add vim/emacs modelines to all source files

Fixes #fdo30794
Based on bin/add-modelines script (originally posted in mail
1286706307.1871.1399280959@webmail.messagingengine.com)

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>

2010-10-13  Kohei Yoshida  <kyoshida@novell.com>  [712583d4c2c4d564e50151d59e2fbac3585c00f4]

ScDocOptions::CopyTo() no longer used.  Nuked.


2010-10-13  Kohei Yoshida  <kyoshida@novell.com>  [319964cc550b757ccc3472e3403a21992a070cc1]

Remove the "insert new sheet" tab when the document is in read-only mode.

When the document is in read-only mode, we shouldn't show the insert
sheet tab. (fdo#30678)

2010-10-12  Kohei Yoshida  <kyoshida@novell.com>  [0d82cea0ed9b9e80d04d61cc2b5e4a50e10e2d4c]

Took care of loading and saving of the new option value.

The new option value is now persistent with the Options dialog, but
key bindings don't get reset yet.

2010-10-11  Kohei Yoshida  <kyoshida@novell.com>  [a7637019cf4702dde00f24152222f8bd2dcb53f1]

Made the list box a little wider.


2010-10-11  Kohei Yoshida  <kyoshida@novell.com>  [49475215c5b14c0cace46fc153d8eb4546e47001]

fdo#30559: Added new tab page 'Compatibility' in the Options dialog.

This is the first cut: more changes to come.

2010-10-11  Caolán McNamara  <caolanm@redhat.com>  [c4712cc4f3f8cf5e68d8d6b717e6f1f4a9b445f0]

#i107273# release accessibilty contexts before editengine


2010-10-11  David Tardon  <dtardon@redhat.com>  [72ce39a2522d55edd7b26ecf962618f9d52b432e]

#i113737# implement XMLCodeNameProvider::getElementType


2010-10-10  Norbert Thiebaud  <nthiebaud@gmail.com>  [8900e588f30e48216795edbe500d3ff6eece4617]

merge vosremoval-thread patch


2010-10-09  Norbert Thiebaud  <nthiebaud@gmail.com>  [da8101702661c03364a747f5e5a6c026c00d8c21]

missing include for SAL_N_ELEMENTS


2010-10-09  Kayo Hamid  <revol.code@yahoo.com>  [7b8d6eb623cb41413c126cb42c066c572800b268]

Use SAL_N_ELEMENTS macro


2010-10-09  Thorsten Behrens  <tbehrens@novell.com>  [41ccd9bedb00c3bc0aff2c8ed923d9ec1acedd97]

valgrind-fixes.diff: Valgrind fixes


2010-10-08  Petr Mladek  <pmladek@suse.cz>  [ef8d1e8f04820e0b435583bd2a48fddb7f445efc]

Merge branch 'master' of ssh://pmladek@git.freedesktop.org/git/libreoffice/calc


2010-10-08  Petr Mladek  <pmladek@suse.cz>  [8e07faec50d16ca715031272139c643e844bf497]

Version 3.2.99.2, tag LIBREOFFICE_3_2_99_2 (3.3-beta2)


2010-10-08  obo  <obo@openoffice.org>  [92c2e0db5c9d4d0a65048138c3a9fe59a47fa5de]

CWS-TOOLING: integrate CWS sw33bf10


2010-10-08  obo  <obo@openoffice.org>  [d81eda10143c9444fea0f6042deff3f3b88bfd85]

CWS-TOOLING: integrate CWS ooo33gsl10


2010-10-07  Norbert Thiebaud  <nthiebaud@gmail.com>  [fd94b527a6d36c41c82d4738022d9c7675a15231]

FASTBOOL to bool conversion


2010-10-06  Cédric Bosdonnat  <cedricbosdo@openoffice.org>  [40c5a4cd3f9ca327b8299a455d6fb70d1eceef29]

fate#307731, fate#307730: Adds dotted and dashed border lines


2010-10-06  Niklas Nebel  <nn@openoffice.org>  [39a12901d9ced9b043e2a4103440405653db4d6b]

ooo33gsl10: #i114944# handle AutoFilter button position on RTL sheets


2010-10-06  Jan Holesovsky  <kendy@suse.cz>  [fe5efbdef8d91b7f5bdfb3e21e28c78f453842d4]

Merge commit 'ooo/OOO330_m9'


2010-10-06  Noel Power  <noel.power@novell.com>  [c76ef5619cebf8ebd31db94d15a0861905783a4e]

fix non functioning select


2010-10-06  Noel Power  <noel.power@novell.com>  [7f9110235f1655f99a13dbfaea3d4b53f9ce0cf8]

initial commit for vba blob ( not including container_control stuff )


2010-10-06  Noel Power  <noel.power@novell.com>  [8d786dbd40ba7fe53baabc4a0e279d8a47a7f5d1]

initial commit for vba blob ( not including container_control stuff )


2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [13d88caf87ba995c0559418229f7b512dd035653]

Better performance on Excel doc import.

Don't set cached range on every single cell import when loading
Excel document with external ref cache.  This would become a major
performance bottleneck with a document with large cache.

2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [c9d53a9a25770f6736c5f2342d57c237bde2f23e]

Ported calc-extref-interpreter-rework-*.diff from ooo-build.

Re-structured the interpreter code to handle external references with
ocPush, instead of ocExternalRef.  This is necessary in order to
support shifting of references in the same way you can with internal
references.

In addition, this change allows re-using of document instances already
loaded when accessing external references that point to one of already
loaded documents.  Previously, Calc would load the same document from
disk even when the document was already loaded.

(n#628876)

2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [e44ae4649718f0b93195780d8bd5ff352596de90]

Ported calc-dp-sort-fix.diff from ooo-build.

This change fixes the data pilot field options dialog, to display
the name of a data field "<name> - <function>" to be consistent with
the rest of the data pilot UI.  This change also fixes failure to
calculate result when a data field's result is relative to another
data field & the referenced data field used custom name.
(n#629920)

2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [3ee0958e2350988b115729fae361563244fb750d]

Ported dde-reconnect-on-load-*.diff from ooo-build.

Improve reliability of DDE connections between documents opened in LO.
With this change, LO tries to reconnect to a DDE server document upon
opening if that server document is being listened to by one of the
open documents.

Also, the old implementation would load a DDE server document
invisible, and would never close it when the user updates the link.
This had the consequence that when the user tries to open this
document while it's loaded hidden, it causes some weird focus issues,
and closing it and opening it again would disconnect the DDE
connection.  The new implementation closes the server document
immediately after the DDE link update is complete.

This change also fixes a bug in Calc where DDE link updates to cells
would fail when the formula syntax is set to something other than Calc
A1.

2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [612ed0cc35ff1a4724f519f6662468e142edb445]

Ported calc-english-func-names-*.diff from ooo-build.

Add option to switch to English function names instead of the
localized ones.  In some locales (especially in Hungary) the users are
more accustomed to the English function names rather other than
translated names (i#38765).

2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [c1cfb775ee4382505372b5e41886cfec9357a78e]

Ported calc-perf-ods-import-row-heights.diff from ooo-build.

Avoid re-calculating cell note positions on every single row height
change during import.  That makes file load take forever.

2010-10-05  Petr Mladek  <pmladek@suse.cz>  [d97be14b9c7493d17b4fc31fadf374abdb06311f]

more removed include guards using fixguard.py


2010-10-05  Petr Mladek  <pmladek@suse.cz>  [cc5b0c6794480975828bb36fcaa9cff3a0f6df56]

remove include guards using fixguard.py


2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [e3eb198b71d8b1662043baed0ddb1aaedc71b7b5]

Ported calc-cell-270-degree-fix.diff from ooo-build.

This patch fixes a bug where cell text disappeared under certain
conditions esp when the text is vertically oriented & the automatic
spell checking was ON.

n#640112

2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [7ce3c5e1c8e32529eae6f7d9ebc71184dd7b8d9a]

Ported calc-distributed-cell-text-*.diff from ooo-build.

This feature enables horizontal 'distributed' alignment and vertical
'justified' and 'distributed' alignments for cell contents in Calc.
Note that this feature relies on ODF 1.2 extended in order for the
relevant cell attributes to be saved in ODS.

2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [87af8ec8345117fd1cfcd05eb02bc5e4128a207a]

Ported calc-formula-variable-sep-config-check-sc.diff from ooo-build.

This code handles situations where the formula arg separator is in
conflict with the locale specific decimal and/or thousand separators.

2010-10-05  Kohei Yoshida  <kyoshida@novell.com>  [7287f0bc10ffbc7d3ef6066b1adde375a878d2d8]

Removed unused local variables, per compiler warnings.


2010-10-05  Caolán McNamara  <caolanm@redhat.com>  [ceb084ca7f782cdad702c82acc941f21db326fa4]

silence warning


2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [2e70348418cc27c4da65db95a087e8b7088e0d4f]

Port calc-xls-import-mem-footprint.diff from ooo-build.

This change reduces memory footprint of column row attribute import
from Excel document, from the previous 20 MB per sheet (!) down to
near zero.  With the test document I had, the memory use during
import dropped from 1.6 GB to 224 MB.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [b2b6efc8fc37bf85109a7133c3ab51ceaeb723f5]

Fixed a build breakage by adding a missing global string ID.

STR_UNDO_INSERT_CURRENT_DATE was not defined; probably lost during
conflict resolution of the previously ported patch.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [a942680c9c876b9d5f17b6f9c94a67c1762ac3b9]

Ported calc-insert-current-time-sc.diff from ooo-build.

This enables quick insertion of current date and time into current
cell, via command.  By default, these commands are bound to

* Ctrl-';'
* Ctrl-Shift-';'

respectively.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [e0bf78d6f572000cf5f9dda2a85dd15a8b350e18]

Ported calc-insert-new-sheet-tab-sc.diff from ooo-build.

Display a 'plus' button at the right end of the sheet tabs, to allow
quick insertion of new sheets.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [7c5ca3a2ec39576045b4fb3c1739acdb39a15f96]

Ported calc-subtotal-function-update.diff from ooo-build.

With this change, Calc correctly recalculates cells containing
SUBTOTAL function when sheet's filtering state changes, instead of
recalculating all formula cells that listens to those ranges whose
filtering state has changed.  The latter is wrong since the values
of the filtered ranges haven't changed.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [3662d82718f30fdc26a48e7918b5cfd3e7460f2d]

Ported calc-xls-import-biff2-file-sheet-name.diff from ooo-build.

When importing an old Excel 2.1 worksheet file, the file name should
become the sheet name.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [7009566d8229416fa203928d5defd83aee2014d1]

Ported calc-perf-outlining-with-notes.diff from ooo-build.


2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [bc6ca48ca3139818695179bc6e88fbaa23e16356]

Ported calc-formula-r1c1-parser-fix.diff from ooo-build.

This fixes parsing of address strings with '-' e.g. R[-1]C when in
Excel R1C1 mode.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [445e3596a1c044fdee75e5438ebdcd859a0e3945]

Ported calc-formula-r1c1-ui-fix.diff from ooo-build.

This fixes incorrect display of cell addresses in the UI when the
formula syntax mode is Excel R1C1.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [2be957ecb812c50898d45d6123e5a61b7ece0d7d]

Ported calc-formula-matrix-no-autocalc.diff from ooo-build.

This patch allows formula to be recalculated if it's during matrix
calculation even if the auto recalc flag is OFF.  This is needed
when calculating a formula whose result is a matrix which previously
only calculated the top-left cell when the auto recalc was OFF.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [7a0b5870500e035f9916778f2d98f6bd68a1a698]

And several fixes against the previous commit wrt xls import perf.


2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [05d67b3436f17455a63ef7df11d5595ae43a66fc]

Ported calc-perf-xls-import-cellstyles.diff from ooo-build.

Like the previous commit, this one improves performance of large
xls files.

2010-10-04  Kohei Yoshida  <kyoshida@novell.com>  [27cc87b983cfc95e59d3872c8e2e45d756cfd57d]

Ported calc-perf-ods-import-cellstyles.diff from ooo-build.

This patch improves import performance of large ods files.

2010-10-04  Norbert Thiebaud  <nthiebaud@gmail.com>  [481cbafe6b477e8a9c90ab53f8fa2cb20df21804]

native bool support in SvXMLUnitConverter


2010-10-04  Norbert Thiebaud  <nthiebaud@gmail.com>  [56e4318580b235b8a0fa8e43dadf3b142f2a0327]

Convert all Query/Put Value() to bool


2010-10-04  David Hobley  <davidh@sharpblue.org>  [884b50cd7231a06405ce163f782583fad4120623]

More or OD style's comments removal


2010-10-04  J. Graeme Lingard  <jgraeme+git@gmail.com>  [61a1235436393ed0d4300ad11aa5b1fd6597e934]

Remove redundant #include directives & comments


2010-10-04  J. Graeme Lingard  <jgraeme+git@gmail.com>  [e97bff820b226b1a44823f96aef4d162e793a7d1]

Remove redundant #include directives & comments


2010-10-02  Kalman Szalai - KAMI  <kami911@gmail.com>  [fbba6e7ffb3dad1285e1f74d0ebb10e78eb18f31]

Code cleanup after i80528


2010-10-02  Kohei Yoshida  <kyoshida@novell.com>  [adf8b51c2f28a03151d5bee8b61a695cfddbf4a2]

Added new files created by calc-perf-import-dbf-sc.diff.

* inc/docparam.hxx
* source/core/data/docparam.cxx

2010-10-02  Andras Timar  <timar@fsf.hu>  [e929bc223589023c413ea084def927b5cf1e9c0f]

make CustomUnitText "Pixel" localisable, #i35956#


2010-10-01  Kohei Yoshida  <kyoshida@novell.com>  [9d3ac5fea51dc634251dc555bf01bd95d82f4459]

Ported calc-toggle-relative-ref-fix.diff from ooo-build.

This corrects the code used for the Shift-F4 toggle relative / absolute
reference feature in Calc, to adopt for configurable argument separators.

2010-10-01  Kohei Yoshida  <kyoshida@novell.com>  [afedafe83cedb9dd5cf05640849520b4707a822d]

Ported calc-perf-import-dbf-sc.diff from ooo-build

This speeds up import of dBase (dbf) files 4-5 times.

2010-10-01  Luke Symes  <allsymes@gmail.com>  [739bc8f733c78a10eabb442042fde01da866347f]

Removed more commented out code.

I went through all files under clone/calc/* that had "//#include" and
tidied them up a bit.

2010-10-01  Luke Symes  <allsymes@gmail.com>  [9903d5a611403253addf310b427723db27760f94]

Finished removing //CHINA comments and odd dead code from sc/source/ui/*


2010-10-01  Luke Symes  <allsymes@gmail.com>  [48e69e8d726a8dce921a665f1679ef2ca6c250f9]

Removed more //CHINA comments from sc/source/ui/*.


2010-09-30  Sean McNamara  <smcnam@gmail.com>  [7ef0667167a9374a874f2070a527c0fd1442de81]

Fixed build breakage.


2010-09-30  Michael Meeks  <michael.meeks@novell.com>  [9d460736c59f0bbe4488cc51b15eafcf715c681a]

 Remove some //CHINA comments and dead code

Hi, I have removed some //CHINA comments, dead code, and reworked some
comments in a few files under clone/calc.

From Luke Symes <allsymes@gmail.com>

2010-09-29  Kohei Yoshida  <kyoshida@novell.com>  [b60e1f97f78f42b263915538f7bfaab86c967807]

Ported statusbar-fancy-modified-status-sc.diff from ooo-build.


2010-09-29  Kohei Yoshida  <kyoshida@novell.com>  [3b1933b66f8f4526146404baf5a6ba631ec35c55]

Ported autocorrect-accidental-caps-lock-sc.diff from ooo-build.


2010-09-29  Justin Malcolm  <malcolm.justin@gmail.com>  [10812e78236ef8e00c6d2bfad3998bea20ac88e1]

I think that this eliminates the remaining //UNUSED comments

There were still some of these comments (actually, a lot of them).
The most recent attachment should get rid of the last of them.
(fd#30442)

2010-09-29  Daniel Rentz [dr]  <daniel.rentz@oracle.com>  [1fac3846804727924c30919bba18d04c40cc4fe2]

sw33bf10: #i105461# write missing parts of OBJLBSDATA sub record


2010-09-29  Norbert Thiebaud  <nthiebaud@gmail.com>  [3096ad6a4119534379f0476e2ae2bfde20b1ed2e]

Removed some other UNUSED comment


2010-09-29  Norbert Thiebaud  <nthiebaud@gmail.com>  [3d400824f3431d78a9ecc28e5b71e7b96fced44b]

Removed some UNUSED comment


2010-09-28  Justin Malcolm  <malcolm.justin@gmail.com>  [0d9b86479b9cb9208079ead14479becab8dc24d3]

This gets rid of a great number of the comments

There are a great number of places in calc where code is commented out
with lines staring in "//UNUSED".  Since 'git' is being used, there is
no reason to keep old code like this in comments.

2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [2f9832ae58e684a49e03d7c0eaa38f6d55832d4a]

Ported calc-xls-export-row-height-wrapped-text.diff from ooo-build.


2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [8767fd0a8dbf79c7d4257f45f1be9227fd24abe7]

Ported calc-perf-rowheight-no-progress-bar.diff from ooo-build.


2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [b0e86d17c246e7201159c222b61f9fa9325bc7b1]

Ported calc-perf-filtering-with-notes.diff from ooo-build.


2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [98727f5db702a858bbabf1694f523baa66fe2630]

Ported calc-auto-tab-complete.diff from ooo-build.


2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [f5b004165ad5de31e7a8d9dadc238059c7b4a5ce]

Ported calc-find-replace-skip-filtered-sc.diff from ooo-build.


2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [119b9645e95dd8df08dc57b7358958714fbf7cab]

Ported calc-ods-sheet-protection-sc.diff from ooo-build.


2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [148af7b5a75760a111af8f533ea05e8ebb9271f9]

Forgot to add new files created by cws-koheicopyborder-sc.diff.


2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [962395bad2a70dbbfe950949c432e3e0321da5da]

Port cws-koheicopyborder-sc.diff from ooo-build.


2010-09-28  Kohei Yoshida  <kyoshida@novell.com>  [2126737afee2d35f5d8cfca1064a37eed7850fee]

Remove datapilot autoformat feature.

This reverts commit 1cd57db36c14e98190311ceed238c01f2dd60eea.

The current datapilot autoformat feature was done by "duct-taping"
two separate features together which don't mix well and cause stability
issues.  This feature needs to be re-implemented the right way in the
future.

2010-09-28  Fridrich Štrba  <fridrich.strba@bluewin.ch>  [e90a1a17583d778cde0b5ed76da6d2ca512c4f41]

Replace the "Help Support" menu item by the "License Information" one


2010-09-16  Tor Lillqvist  <tlillqvist@novell.com>  [69eaecca670e51ae074b92e3c2fa0321c456769c]

Update .gitignore for Windows builds


2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [a06b28b814ef06dd23f4f14eff9736cc4ae52142]

ooo-build-resources-sc-sc-hrc.diff: Migrated


2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [be324baced0b7fada4e0792505155f10578f1d70]

calc-enhanced-merge-cells-sc.diff

n#213205, i#67243, i#101042
Merging/unmerging of cells on multiple sheets & merge center icon.

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [64c43addcd6bb9ce2dde27fa996baa513870c283]

calc-html-csv-import-force-text-cell.diff: Migrated

n#523414
set cell format to Text when a string format is requested, and don't
prepend ' in front of the value.

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [7b2297f149ffbcece78a3c0107b006be38618087]

calc-autofilter-shrink-selection.diff: Migrated

n#514164,  shrink selection to data area before setting autofilter.

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [49af023527783e80bec13bb4cdce7b43cac1f262]

calc-cursor-split-view.diff: show cursor in non-active panes

n#433834

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [9b2c8e0cd13c2a90237dfb9d0cf15952cc2d931b]

calc-selection-fixed-cursor-fix.diff: Migrated

n#595822, when making selection, don't move the cursor position.

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [d3091706329af9b5ccb9e2f92682325238c1ec0a]

calc-selection-fixed-cursor.diff: Migrated

n#502717, i#21869, i#97093, when making selection, don't move the cursor position

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [d1b875b6f76d47a70e1e33ef252e1aa7c3a24889]

chart-highlight-selection-fix.diff: Migrated

n#568016, correctly highlight disjoint ranges in chart mode

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [9fc957451f6fff3fddb0621d6bcd07496771f18f]

sc-uninitialized-var-fix.diff: initialize data members for sure


2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [99eeb6a36391aa807b4cc5c1b25f3d7982baaffa]

calc-jump-on-formula-ref-sc.diff: Migrated

n#464359, i#101018

allow ctrl-[ and ctrl-] to jump to references used in a formula expression.

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [1a48865c4e70a98aa4126b8f4e1e8f7ac8d744c0]

calc-autoinput-case-insensitive-matching.diff: no case matching on autoinput

n#472395, i#101046

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [8c05a4f470c292245e298e4b216036a558babb16]

calc-filter-dbf-precision.diff: import/export precision of value cells fix

n#479025, i#101045

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [0835648ea0ceaa1f35ee601fd4b958f1847940b2]

calc-find-replace-empty-cells-sc.diff: Support find and replace empty cells

i#49380, n#415352

2010-09-16  Kohei Yoshida  <kyoshida@novell.com>  [124af355f1e7db0000314d75e81cfebed48fe0d5]

Pushing new files


2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [5906fdea4c8e93b62f3881995887f60cd63e2f48]

calc-xls-disable-adjust-row-height.diff: Don't adjust row height on xls load

Don't adjust row height on xls load for better layout preservation and
faster file load.

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [ec9ce165466cb367baa728719e2fd07f23165d03]

calc-external-defined-names-enable.diff: Enable external defined names

Enable external defined name import on xls documents.

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [a4a2aaa4c31905cedf36b31087775a0d2aa8b92e]

chart-subtitle-xls-export.diff: Export chart subtitle

i#92357

Squeeze chart's subtitle into the 2nd line of the main title when exporting
to xls.

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [cb37186e710013bbb10971a8084ca7565579d6f8]

calc-formula-variable-separators-sc.diff: formula separators changeable

n#447164, i#92056

Make the formula separators changeable per locale setting, and add new
configuration page for formula syntax and separators.

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [29c61288c525f692b75801547b82fd394c38fb0d]

sc-sheet-gridline-toggle.diff: Toggle gridline display per sheet.

i#14893

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [4bf4083b86c093772e98fa8b9b7e208cb1dd5b0e]

calc-dp-default-new-sheet.diff: default output to new sheet

i#50886

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [506ae185457f00ff390261301fada4620e120f00]

sc-fit-to-width-height-skip-breaks.diff: Increase Excel compatibility

n#404232, n#404563, i#94698

ignore manual breaks when the "fit to x pages wide and x pages tall" option
is used, for Excel interoperability.

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [edd18ccae4cb396f85e167e13169672fdea300db]

sc-cellformat-icon-toggle.diff:  Cell number format toolbar icons togglable

n#358548, i#86377

Make cell number format toolbar icons togglable & remove the standard format
button.

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [21da24d9f65fbc8d7c4d58543d5902048cf96958]

sc-cellbackground-over-gridlines.diff: Have cell bg paint over the gridlines

n#361360, i#3907

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [2e8133c7f6c0065a0e6457c4ee1421491dbb6f44]

sc-dbrange-dynamic-resize.diff: Dynamically resize filtered range.

n#352662, i#85305

Dynamically resize filtered range when new data rows are present.

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [07633360157600a9fa3677a3c116f345f3159da3]

enable-sheet-protection-options.diff: Enable sheet protection options


2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [188130067b80960fd509078f2e23fc1636e694ab]

chart-odf-always-calc-a1.diff: always store ranges in ODF using A1 syntax

n#463305

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [fb6af8f7fc95beac17e411d43e91696de6aa13d8]

sc-overwrite-char-font-attrs.diff: overwrite character level font attributes

n#374580, i#53545, i#96853

Overwrite character level font attributes when changing them at cell level

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [f12df5f7f25315018247d6dd2fa80ab0be562d28]

sc-excel-chart-default-xlabels.diff: Change x-y plot chart numbering scheme

n#257079, i#83679

Change default numbering scheme of x-y plot chart from Row 1, Row2, ... to
1, 2, 3... when the X labels are not explicitly given.  This is what Excel
does.

2010-09-15  Jonathan Pryor  <jpryor@novell.com>  [3a53dde9e481dcd36f1c937bf3074c908554ce62]

sc-drwlayer-units.diff: Unit conversion fixes in ScDrawLayer

i#83735

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [791b263acad96f3b40aed5912620ae733bf1d0d7]

calc-multiline-pattern-fix.diff: Fix bolding in multi-line cell contents

n#359690, n#437137, i#99291

For multi-line cell contents, bolding the first line shouldn't bold the
entire cell.

2010-09-15  Kohei Yoshida  <kyoshida@novell.com>  [2f40ebf58d72e536c6506646a314706849fd8f8e]

sc-natural-sort.diff: Add a 'Natural' variant of sorting

i#26565

2010-09-15  Jonathan Pryor  <jpryor@novell.com>  [5f30f6f057e9fe6bf4ae1e719fcf67827189c483]

calc-filter-xml-free-context.diff: Don't use pShapeContext after deleting it

n#467536

2010-09-15  Jonathan Pryor  <jpryor@novell.com>  [4bfb2e399db2a6c88a3fda7a2d0a11c6ab002b76]

sc-print-lines.diff: print & page preview for files containing only lines

n#351468, i#85076

2010-09-15  Jonathan Pryor  <jpryor@novell.com>  [dcfa8ebe1ca2822c18fc73165f59ebf28d4faa46]

sc-print-selected-sheets.diff: Make Print Preview consistent with Print output

n#335684, i#45497

2010-09-15  Jonathan Pryor  <jpryor@novell.com>  [ffea8f5a08299fadbd56eca474b8821a2eaf0ad6]

sc-extra-cell-margins.diff: Add extra padding the the cell height

n#361358

2010-09-15  Jonathan Pryor  <jpryor@novell.com>  [0093d35f1927140c985430b186f2636e131633ee]

sc-xls-builtin-name-scope.diff: Print_Area/_Titles only for sheet local names

n#191005, n#257422

2010-09-15  Jody Goldberg  <jody@gnome.org>  [c597e24275469fbb14ab8210d455a5643208c229]

sc-read-only-colrow-resize.diff: Allow resizing Cols/Rows if document is R/O

n#165980

2010-09-15  Jody Goldberg  <jody@gnome.org>  [595233ddf6584a3fd7c5a067c0e4e49aa7024894]

sc-dp-gridlayout.diff: Something with grid layout :)

i#68544, n#190970

2010-09-15  Jody Goldberg  <jody@gnome.org>  [c6735c0de2bbed4593ebd8060807aefe94a9941f]

sc-change-record-dnd.diff: Allow dnd in Change record mode for Data source

i#44982

2010-09-15  Jody Goldberg  <jody@gnome.org>  [1cd57db36c14e98190311ceed238c01f2dd60eea]

sc-datapilot-autoformat.diff: Provision for data-pilot to give autoformat

i#37388, bxc#62162

2010-09-15  Jody Goldberg  <jody@gnome.org>  [0eb01487f8e06b2a9b407f5eae7f295f481bd182]

sc-filters-fill-fix.diff: fix Autofill doesnt fill filtered rows

bxc#62499

2010-09-15  Jody Goldberg  <jody@gnome.org>  [ffcbfa8d1022e71c21e13fc78952e44aa92a4c54]

sc-autofilter-empty-nonempty.diff: adds to Autofilter Empty-NonEmpty options

i#35578, bxc#62165

2010-09-15  Michael Meeks  <michael.meeks@novell.com>  [1656163f7c097abe32bcc52e87af8e742e024f98]

default-no-registration-menu.diff: Remove registration from menu.


2010-09-14  obo  <obo@openoffice.org>  [3777925071dfc0289cc0ec7de9cf5ce942105949]

CWS-TOOLING: integrate CWS calc59


2010-09-14  obo  <obo@openoffice.org>  [e9fdb8635e42de65da6ad043b16e032a871530d0]

CWS-TOOLING: integrate CWS dba33i


2010-09-14  obo  <obo@openoffice.org>  [03c89b4caaea56cba69f6a94cf942aa6a3c71a0c]

CWS-TOOLING: integrate CWS impress200


2010-09-07  Jan Holesovsky  <kendy@suse.cz>  [eb4914f043304ba7d164733509794104c7ea5b33]

Merge commit 'ooo/OOO330_m6'


2010-09-01  Niklas Nebel  <nn@openoffice.org>  [89e87ff83a65aca71eeb70126f3f4d1146297466]

calc59: compiler warning


2010-09-01  Niklas Nebel  <nn@openoffice.org>  [c8821620007e23a011ef8ceabe3560a754faaef9]

calc59: #i114256# Don't move DataPilot fields to orientations that the source doesn't support


2010-09-01  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [abab7634a5ec281f5606d10c3647a6f05011706f]

dba33i: #i111146# completely put the responsibility for remembering/restoring view data, when switching to the print preview and back, to SFX In particular, the following changes have been applied - the SfxViewFactory now supports a programmatic API name, as documented in XModel2.getAvailableViewControllerNames - the new SFX_IMPL_NAMED_VIEWFACTORY, complementing the existing SFX_IMPL_VIEWFACTORY, allows to create view   factories for such named views - SfxViewFrame::SwitchToViewShell_Impl has been extended to recognize the case where a non-PrintPreview view   is exchanged with another view. In this case, it preserves the view's view data at the model - Calc's own mechanism for preserving the standard view's view data, and restoring it when coming back from   the print preview, has been removed completely.

What probably is left here is to migrate the other applications from SFX_IMPL_VIEWFACTORY to SFX_IMPL_NAMED_VIEWFACTORY.
This way, they could also benefit from the new mechanism. Also, the UNO API would then be more precise, as the
view names would be speaking then, instead of the current "view<number>" names.
2010-08-30  Niklas Nebel  <nn@openoffice.org>  [aa1ce74fbfc75a7f1d611a56da6e2cc18fdfdd8e]

calc59: #i114202# save table:show-empty attribute only if valid in ScDPSaveDimension


2010-08-30  Frank Schoenheit [fs]  <frank.schoenheit@oracle.com>  [d83475610402026e855d7e6a68518aca4cecccd0]

dba33h: merge after pulling OOO330.m6


2010-08-26  Christian Lippka  <christian.lippka@oracle.com>  [b85c2871a3e7637b5702ac5e92e0c77036bec05e]

impress200: merge


2010-08-26  Ivo Hinkelmann  <ihi@openoffice.org>  [0815e6f3086d4513fb1dfed2a0ff8e83a3589afc]

CWS-TOOLING: integrate CWS calc58


2010-08-25  Thorsten Behrens  <thb@openoffice.org>  [5ada8056e6204b7f236f9f7009984eff5219e82b]

linkwarn-dlg-in-apps.diff: Wire up link warning dlg in applications.

n#348149

2010-08-25  Ivo Hinkelmann  <ihi@openoffice.org>  [51cfacc73ee6162c82dbb735448f5321a2a57269]

CWS-TOOLING: integrate CWS mib18


2010-08-24  Jan Holesovsky  <kendy@suse.cz>  [b97c8f3364575ea36b5b43e73cb92eb8e82178a1]

Update .gitignore.


2010-08-20  Thomas Benisch  <tbe@openoffice.org>  [1d0dc690de7aa8ef1fd93d26578251248fd66d9a]

calc58: #i113948# office crashes after resizing chart


2010-08-20  Thomas Benisch  <tbe@openoffice.org>  [db48b114e54b6ceaebd4d77fbb0de1d41a0d69ca]

calc58: #i113946# undo does not work for deleting shapes


2010-08-20  Jan Holesovsky  <kendy@suse.cz>  [05dcf0fc5a2792165c42ba2b2497ed22fbb4e872]

Create .gitignore.


2010-08-19  Eike Rathke [er]  <eike.rathke@oracle.com>  [3fa83707418cb221c94dcbe32864e5555b618159]

calc58: #i113879# add ScMatrix::CloneIfConst() and regard only temporary matrices created by the interpreter as mutable


2010-08-18  Eike Rathke [er]  <eike.rathke@oracle.com>  [baac8ebc6989a5771b5d1903e5e8f4014ecafeac]

calc58: #i113739# make N return 0 for all strings again


2010-08-18  Jan Holesovsky  <kendy@suse.cz>  [d7bfded184e58761062efeefaeb8f8ffc594c2db]

Merge commit 'ooo/OOO330_m4'


2010-08-18  Eike Rathke [er]  <eike.rathke@oracle.com>  [ac9660fc7e47b2a7eecdb0c749ee46f592a70635]

calc58: #i113820# make TEXT treat string results and inline strings identical to referenced cell text


2010-08-13  Daniel Rentz  <dr@openoffice.org>  [8676b47d16a1670a4d6ebbc610e8a00abd2367f7]

mib18: rebase to OOO330m4


2010-08-11  Kurt Zenker  <kz@openoffice.org>  [1f33e9500443f6c947294c0776236c4808ddd262]

CWS-TOOLING: integrate CWS l10nfixer01


2010-08-11  Kurt Zenker  <kz@openoffice.org>  [7665242e65546f0c60077165193252ae959e4ecd]

CWS-TOOLING: integrate CWS calc57


2010-08-11  Andreas Bregas  <ab@openoffice.org>  [6423ab81e71f7090d61e81b8992878ce7de43f27]

mib18: Merge


2010-08-10  Daniel Rentz  <dr@openoffice.org>  [772dd5e59b0b28c3e24cac6ae52ea0141b39c240]

mib18: adjusted service name to match VBA symbol


2010-08-10  Michael E. Bohn  <mbn@openoffice.org>  [9725c306fd4502fc6de7d4acf5c302427310a20d]

mib18: #163259# implementation of global symbol Excel


2010-08-10  Michael E. Bohn  <mbn@openoffice.org>  [ff7c55aff1293fb51c8ab268d0f478480b0c5685]

heads merged


2010-08-10  Michael E. Bohn  <mbn@openoffice.org>  [80722e0f75ad7d3204f39a580df2f48412e001c3]

mib18: #163120# adding the entrypoint for symbol Debug


2010-08-10  Daniel Rentz  <dr@openoffice.org>  [6e0de8945fbfbee500e0fc9bfa26aaa67abeafa4]

mib18: #163243# enable regular expressions in VBA symbol Range.Find


2010-08-10  Daniel Rentz  <dr@openoffice.org>  [d0093c4e1b54648d1e09c16b389519fdf2564f6e]

mib18: #163246# add VBA symbol Worksheet.ProtectScenarios


2010-08-10  Michael E. Bohn  <mbn@openoffice.org>  [b9876f93ddc6eaa0e5cf4aaf62cd19d3a08776c4]

mib18: #163148# creation og basic modules in library Standard during Workbooks.add


2010-08-06  Andreas Bregas  <ab@openoffice.org>  [80e4fe02a80b90182180c409d2f4f803562e02b8]

mib18: Merge


2010-08-05  Daniel Rentz  <dr@openoffice.org>  [81cec496df67c85bb1b64ef7d15c9f73987882a0]

mib18: #162503# do not create a new Worksheet object in Workbook.ActiveSheet but return existing object supporting VBA module access


2010-08-05  Daniel Rentz  <dr@openoffice.org>  [f8de76963edcb8017ea104448b3a7b9a9ddb49b8]

calc57: #i113529# do not touch res strings in ooo330


2010-08-05  Daniel Rentz  <dr@openoffice.org>  [1e497a2092b4c20d4c5d0100c1436fbb2e8ab355]

calc57: #i113529# expand text fields to allow to fit for all languages


2010-08-04  Daniel Rentz  <dr@openoffice.org>  [36f709143ffc8056ece58e93e155a6dab9831cd9]

mib18: #162938# add VBA symbol Worksheet.AutoFilterMode


2010-08-04  Daniel Rentz  <dr@openoffice.org>  [c650f967f769e4da07f669f60e1f7a636d7e9614]

mib18: #163200# full rework of VBA symbols Application.Intersect and Application.Union


2010-08-04  Daniel Rentz  <dr@openoffice.org>  [5fa3d6e55b2ab5aac185c10293f8c6a1b7264e63]

mib18: #163198# VBA Names collection must return VBA Name objects


2010-08-04  Daniel Rentz  <dr@openoffice.org>  [783c57ec2174b11b06ec29ecb1ae6b9b87996bf6]

mib18: #163195# set correct parent for range returned by VBA ActiveCell symbol


2010-08-04  Daniel Rentz  <dr@openoffice.org>  [32876274fc8fae906bdb52e76059ddedadfa8572]

mib18: #162937# extract all integer and floating values from an 'Any' for Boolean parameters


2010-08-04  Daniel Rentz  <dr@openoffice.org>  [faa445a0730322e8522999ffb30fdde97bb9b9b9]

mib18: #162039# clear covered cells when merging via VBA MergeCells symbol


2010-08-03  Ivo Hinkelmann  <ihi@openoffice.org>  [fb4adbfd5d4bc6cdcb8aeb4ac3187cd50f74caa4]

CWS-TOOLING: integrate CWS mib17


2010-08-02  Daniel Rentz  <dr@openoffice.org>  [2f2b4dbec9cbbb61110b6244f5cd1e983ba78e0d]

calc57: #i113469# increase width of DataPilot field popup


2010-08-02  Daniel Rentz  <dr@openoffice.org>  [f517daebba9a963bf679ebec0de2ecae5008411a]

calc57: #i113442# increase width of 'Import Options' dialog


2010-08-02  Daniel Rentz  <dr@openoffice.org>  [8b8d8fcc27b2fddbda6ceb4935f98828a933c245]

calc57: wntmsci12 compiler warnings


2010-08-02  Ivo Hinkelmann  <ihi@openoffice.org>  [b851785e7a38478cbb5715058fe799e52e96f042]

CWS-TOOLING: integrate CWS calc56


2010-07-30  Daniel Rentz  <dr@openoffice.org>  [0075e623e044c0822774455ad5fe79c68d35a101]

mib17: #163146# XLS import: do not skip hidden names, do not rename sheet-local names, add Worksheet.Names VBA symbol -- #i112849# fix crash when closing Calc document


2010-07-29  Eike Rathke [er]  <eike.rathke@oracle.com>  [8fdb7e7150c877e1a79d20640b0feef9b49b0cfd]

calc57: #i113429# adapt manual row/column breaks when inserting/deleting rows/columns and undo/redo


2010-07-28  Daniel Rentz  <dr@openoffice.org>  [315ac439e6339bba65c483f84dabb8139b058956]

mib17: compiler warning


2010-07-28  Niklas Nebel  <nn@openoffice.org>  [393ace64f221e4bffe3521f6a4f09fae7532a88a]

calc57: #i113390# handle filter options in ScExternalRefManager::loadSrcDocument


2010-07-28  Niklas Nebel  <nn@openoffice.org>  [ee1e23fb2246594d6747c3263efad40c095bbcc5]

calc57: #i110370# don't accidentally throw away print settings stored in the file (patch from cloph)


2010-07-28  Niklas Nebel  <nn@openoffice.org>  [78b5815bad567be77f9641e82be621815e1bbbe0]

calc57: #i113432# restore fix for i94951: catch IndexOutOfBoundsException in ScXMLTableRowCellContext::DoMerge


2010-07-28  Daniel Rentz  <dr@openoffice.org>  [fe94883da29ce532d077b2b28ef553f00e180fac]

mib17: resolved conflict after rebase corrected


2010-07-28  Carsten Driesner  <cd@openoffice.org>  [12af3bc9529e5b1f51309d3bd1a8cce750123afd]

l10nfixer01: #i113441# Remove wrong user defined text attribute for the Search&Replace function within the findbar.xml files


2010-07-27  Daniel Rentz  <dr@openoffice.org>  [fc15354f5f4079a627fcdd73d44d89072ea09817]

mib17: rebase to OOO330_m2


2010-07-27  Daniel Rentz  <dr@openoffice.org>  [79d42b75f89411d2abb36431a3f7f0eb50ec5d98]

mib17: rebase to DEV300_m84


2010-07-27  Daniel Rentz  <dr@openoffice.org>  [01c056a891fda72b6600875f5b8b0dd4c8230912]

mib17: move VBA specific interfaces into vba subdir


2010-07-27  Andreas Bregas  <ab@openoffice.org>  [43bfd10553cd895186d9c04b4d033fa75b40e8a5]

mib17: merge


2010-07-27  Mikhail Voytenko  <mav@openoffice.org>  [e314076dceca46ebb3e08509658ff5150b14f358]

mib17: merging


2010-07-27  Daniel Rentz  <dr@openoffice.org>  [f6238c8dd45c32f93cb83b65aa908617f0535252]

mib17: #i112634# prepare loading VBA with document events from ODF and XLSM


2010-07-26  Ingrid Halama  <iha@openoffice.org>  [03fb083f2493fd2660b33efbb8ff94b01abe2373]

calc56: #i113419# preserve 3D scheme while adding a new series - merge


2010-07-26  Ingrid Halama  <iha@openoffice.org>  [11a4672acfe936485d7fcc6b239bbce7db5db042]

calc56: #i113419# preserve 3D scheme while adding a new series


2010-07-21  Jens-Heiner Rechtien  <hr@openoffice.org>  [2c9c72de2c3a2bdc6bbdc58d1ac5d390d85ac4fe]

CWS-TOOLING: integrate CWS unoawt2


2010-07-19  Eike Rathke [er]  <erAck@sun.com>  [c43e829cc9855a3cb3084097327d10b440cc0099]

calc56: #i113254# fix GetRange()


2010-07-19  Eike Rathke [er]  <erAck@sun.com>  [b7c5ec39ffb564b95b18bd8ec7bf1c588bccb945]

calc56: WaE Windows


2010-07-19  Eike Rathke [er]  <erAck@sun.com>  [08f5ecb5ff57d81dd29daf0ea16f55e0000b7c94]

calc56: merge


2010-07-19  Eike Rathke [er]  <erAck@sun.com>  [54868cbc33b7a62a04e1a81a7aef9e24cec18609]

calc56: WaE Windows


2010-07-19  Eike Rathke [er]  <erAck@sun.com>  [b3c69e0aaf50627298705576f3781deb2ef54e08]

calc56: WaE Windows


2010-07-19  Niklas Nebel  <nn@openoffice.org>  [f9c77a41c3ebb3ec855b50eb9f5488943abd4720]

calc56: merge with OOO330_m1


2010-07-16  Eike Rathke [er]  <erAck@sun.com>  [5c1061feb4fd351335b1ca9deab248a533d17bc6]

calc56: #i112882# in ODFF accept ORG.OPENOFFICE.EASTERSUNDAY as an alias for EASTERSUNDAY


2010-07-16  Eike Rathke [er]  <erAck@sun.com>  [dbbfe0dfd57bbeebcf01c3332e0317e58c2af3af]

calc56: #i108385# make TEXT return text if text was passed, handling text formats that include a @ code


2010-07-16  Eike Rathke [er]  <erAck@sun.com>  [82af8ebbb0acb91e9130d8db166ebba2a881d1ac]

calc56: #i113139# various performance improvements for 1MB rows, especially with large hidden segments


2010-07-15  Daniel Rentz  <dr@openoffice.org>  [80b8a7ebe17abd51f40cc5faa3fdcf6fd02e5e49]

mib17: #i112634# do not use an UNO interface to handle VBA BeforeSave and BeforePrint events


2010-07-15  Niklas Nebel  <nn@openoffice.org>  [329bdc892cd9cbbf59f04d5211a33d8d14679932]

calc56: #i113159# check if GetTextEditOutlinerView is null in thesaurus state method


2010-07-15  Niklas Nebel  <nn@openoffice.org>  [9ce15db06f0349a9ce2befd9b104ab45dd51f0bf]

calc56: #i113160# use XSingleComponentFactory to load external DataPilotSource implementation


2010-07-13  Kurt Zenker  <kz@openoffice.org>  [28178fc81cca238a4527fe7572f03fddf14e9790]

CWS-TOOLING: integrate CWS ooo33gsl02_OOO330


2010-07-12  Niklas Nebel  <nn@openoffice.org>  [fede542c63277884a8f6a397b13f900d2d4cd91a]

calc56: #i102690# correct attribute names diagonal-bl-tr-widths and diagonal-tl-br-widths


2010-07-12  Daniel Rentz  <dr@openoffice.org>  [e959bd8eaa184d9c9f081eef72c7c87e0b249677]

mib17: #i112634# API changes


2010-07-09  Daniel Rentz  <dr@openoffice.org>  [11ffe926b0b044674651e863b0bed45874e6a4f0]

mib17: restrict export of codenames to ODF to VBA enabled documents


2010-07-09  Daniel Rentz  <dr@openoffice.org>  [3feb4be5b4fd8448d4a20785f5f2eacd1e4577df]

mib17: remove unused static var


2010-07-09  Niklas Nebel  <nn@openoffice.org>  [f244ca83847ca8c360a295bbf935fd0156c93dc3]

calc56: #i112745# draw edit cells and printer-metrics text before DataPilot buttons


2010-07-09  Daniel Rentz  <dr@openoffice.org>  [e130dffed0332c64e354d42940c0ed82f764836e]

mib17: compiler warnings


2010-07-09  Niklas Nebel  <nn@openoffice.org>  [b3e6d1432ea134fb3abe5a1a57bb7891e5ce675c]

#i113045# SetTextToWidthOrHash: do the single-character width calculations in logic units


2010-07-07  Daniel Rentz  <dr@openoffice.org>  [a5705f6f2cf6d5a07a4e0d9974ef44385237c75d]

mib17: adjusted codename handling in xls filter, do not restrict vba event handling to xls files


2010-07-07  Niklas Nebel  <nn@openoffice.org>  [4befc3abc6245e0294d536e2aad6bf485b47477f]

#i112250# #i113022# better handling of automatic decimals for small values or equal cells


2010-07-06  Daniel Rentz  <dr@openoffice.org>  [0635ddfa883cd62183753804c4c0915475f3cc2d]

mib17: #i112634# add VBA sheet event handling, based on a patch from Noel Power


2010-07-05  Niklas Nebel  <nn@openoffice.org>  [0e83b06dad8d264e64529ec6dcacc8f08739e46c]

#i112745# get the right font size for ScDPFieldButton, clip text to bounding box


2010-07-05  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [f5b61fbe07fc675b7ff9646c03ea1f359c76e903]

ooo33gsl02: #i112873# change NativeWidget methods to be prepared for mapmodes


2010-07-02  Ingrid Halama  <iha@openoffice.org>  [26d59863bbc657dcd2455cb1d330b00a4502bed7]

calc56: #i112501# remove unused method


2010-07-02  Ingrid Halama  <iha@openoffice.org>  [66ac82a83ca7d62692bf4cc4bd459fc3893afebf]

calc56: #i112385# loosing 3D scheme settings


2010-07-02  Ingrid Halama  <iha@openoffice.org>  [eb4a6583e074d24dbcb6fce86629a766fa10f9db]

calc56: #i112666# broken UNO API tests due to broken method XDiagram::setPosition() and wrongly flagged properties


2010-07-02  Eike Rathke [er]  <erAck@sun.com>  [1a230ceddefe4991bd44d5b899bf63698d06af47]

calc56: #i112849# Prevent hash from accessing dangling pointers


2010-07-01  Niklas Nebel  <nn@openoffice.org>  [248c89e1546f336f42fdf37b3d3ee777307f57db]

#i112858# don't access invalid resources in ScTabBgColorDlg


2010-07-01  Niklas Nebel  <nn@openoffice.org>  [42e0af8954e30de44b10c820db52794fdf1b3bed]

#i112436# use InterpretDirtyCells instead of SetDirty for charts in xls import


2010-07-01  Andreas Bregas  <ab@openoffice.org>  [3ed00acdeb3014d8491ecd3e71fb035ae8ed6a8e]

mib17: #111144# Enable calls to module function via Sheet object


2010-06-24  obo  <obo@openoffice.org>  [245209045b5335a401553595ad9ac13ed864932e]

masterfix: #i10000# change fileheader


2010-06-23  Daniel Rentz  <dr@openoffice.org>  [54581ce35685d0cc4bb6aeec1713c0f5792aac7d]

mib17: #i109119 add Events menu entry


2010-06-23  obo  <obo@openoffice.org>  [abaedc357b56a2214762bc1fdceded65645149c2]

CWS-TOOLING: integrate CWS calc55


2010-06-23  obo  <obo@openoffice.org>  [1085111559bb616cdcce09f6b98d82ab1447e695]

koheirowlimitperf: #i109369# #i109373# #i109384# #i109385# #i109386# #i109387# #i109388# #i109389# #i109391# #i109934# #i109935# #i110116# #i111531# #i111887# #i112190# #i30215# increased the row limit to 1 million, and integrated lots of speed optimization and bug fixes to ensure Calc remains usable after the row limit increase.


2010-06-23  Niklas Nebel  <nn@openoffice.org>  [c5af83ae71ae9f2600e16330d6a7df21451ec2a5]

unoawt2: #i112622# convert cell style names to pointers after creating a style


2010-06-22  obo  <obo@openoffice.org>  [7ae2b9c1e03f125a5a25829b541d3d6d1c1cd83b]

CWS-TOOLING: integrate CWS mingwport30


2010-06-22  obo  <obo@openoffice.org>  [aad9b7c81579a4231db0dfcb6ceecb00f27a405d]

CWS-TOOLING: integrate CWS cmcfixes75


2010-06-22  obo  <obo@openoffice.org>  [b61446bebd0af7250ce5ba00f92242b1ac98c307]

CWS-TOOLING: integrate CWS mba33issues01


2010-06-22  obo  <obo@openoffice.org>  [8a4007bd23082db16293db0a6275a1e3345643b9]

CWS-TOOLING: integrate CWS dr76


2010-06-22  obo  <obo@openoffice.org>  [42bcac19bdbfbe4d7883c6a44ac44de5835c880e]

CWS-TOOLING: integrate CWS mib16


2010-06-21  Daniel Rentz  <dr@openoffice.org>  [540790a4b7c9fcbbff372237002245c53bfd48c2]

dr76: rebase to m83


2010-06-21  Daniel Rentz  <dr@openoffice.org>  [5e77841d5f4970af60562123a93a059c2f32a7c4]

mib16: rebase to m83


2010-06-21  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [e3067d7a280a6f75ce3cc550f3159eb8bb19ba94]

unoawt2: if the DataPilotSource supports XComponent, dispose it, so it can free its resources


2010-06-21  obo  <obo@openoffice.org>  [1b0e2047b58c69907dbc919ca00bb0e6c4e6dcb4]

CWS-TOOLING: integrate CWS calctabcolor


2010-06-18  tono  <tono@openoffice.org>  [f9521004a8b11d1af3b9c84d3ec2beb809c05633]

Merge backout


2010-06-18  tono  <tono@openoffice.org>  [530123c25c9dfdd61887cf1b42f5141fa4e6349c]

Backed out changeset: f63af3433bcb


2010-06-18  tono  <tono@openoffice.org>  [ec81a58becbe919adde19cc969fc58f5cd1a7848]

Backed out changeset: d80a58fd55d9


2010-06-18  Mikhail Voytenko  <mav@openoffice.org>  [5be25b52c52916c287544a7289d68a6570b88ab0]

rebase to m83


2010-06-18  obo  <obo@openoffice.org>  [abafeb0665893406d84f44dc22425717337b5b09]

CWS-TOOLING: integrate CWS tl79


2010-06-18  Thomas Lange [tl]  <tl@openoffice.org>  [fea30dee6f63e0002e6c769242eb3fff2b266ef4]

cws tl79: merge with DEV300_m83


2010-06-18  obo  <obo@openoffice.org>  [9f504729942515b13b08f031b1865bf94dcaeb7b]

CWS-TOOLING: integrate CWS tl78v3


2010-06-18  obo  <obo@openoffice.org>  [b9e6efc1e2a57c41c9b1160d8f43673b0bb5d349]

CWS-TOOLING: integrate CWS tl78


2010-06-17  Daniel Rentz  <dr@openoffice.org>  [7ed82e988a5820e9b33861a1620750ef7636fb41]

mib16: windows compiler warning


2010-06-17  Mathias Bauer  <mba@openoffice.org>  [d3866e1bb16893d1b82cc7a46cb588c194bf9c1b]

CWS mba33issues01: rebase to m83


2010-06-17  Niklas Nebel  <nn@openoffice.org>  [6f02878909a45c178b48d6eadfd9c04c86ceda51]

calc55: merge with DEV300_m83


2010-06-17  Daniel Rentz  <dr@openoffice.org>  [24d7dd114e700677784a0dfbf9eb3b526a967e8c]

mib16: rebase to m82


2010-06-16  Daniel Rentz  <dr@openoffice.org>  [f525f324592da309c81147fc69ed15dbf99dae3e]

mib16: missing throw decl


2010-06-15  Mikhail Voytenko  <mav@openoffice.org>  [41928d9e7c6cd921c2bf89081f42294e4d049e3a]

tl78v2: #i112427# Support password to modify in calc and writer ODF documents


2010-06-15  Daniel Rentz  <dr@openoffice.org>  [3b82bb1566db3da82e11a1a166ac458eebb4c422]

mib16: contributed bugfixes and various new symbols in VBA compatibility implementation


2010-06-15  Daniel Rentz  <dr@openoffice.org>  [5ac2cde7cad685ef5fe0e4fb4801ef15d0d5e7fc]

mib16: contributed bugfixes and various new symbols in VBA compatibility implementation


2010-06-15  Niklas Nebel  <nn@openoffice.org>  [6d4e3cc46ae5bd252d5af78dafe9dce5f50b1e0d]

calctabcolor: extend EXCEPTIONSFILES to compile without warnings on Solaris


2010-06-15  Kohei Yoshida  <kyoshida@novell.com>  [0db2f927ec31ab13f06620e44f46bdde995da135]

calctabcolor: re-applied the change that reduces indentation levels to _ExportAutoStyles().


2010-06-15  Kohei Yoshida  <kyoshida@novell.com>  [86b800917399a314ad3c1847103ddcd649856c3d]

calctabcolor: tabs to whitespaces.


2010-06-15  Kohei Yoshida  <kyoshida@novell.com>  [0f53b8abe10694f90e1721d12fbc34e2e02a08b7]

calctabcolor: reverted change in _ExportAutoStyles() to baseline.


2010-06-15  Kohei Yoshida  <kyoshida@novell.com>  [28631e7ba8dc18ecce2be0ec02e6e18df02f2cdc]

calctabcolor: tabs to whitespaces.


2010-06-15  Kohei Yoshida  <kyoshida@novell.com>  [058a86b92f1fd71c5a6429dcc17ff40d2c724617]

calctabcolor: fixed wrong bracing & indentation.


2010-06-15  tono  <tono@openoffice.org>  [8148f8e5bef5c91c8caec67379b0ef946a4ed83b]

i#111956: MinGW port fix: dependency to shared library: pure porting fix


2010-06-15  obo  <obo@openoffice.org>  [a157711cab1d59951b46b2c2462f0bad4e500a66]

CWS-TOOLING: integrate CWS unoawt


2010-06-15  obo  <obo@openoffice.org>  [8f21cd5889d0e30f8db9763594cf6105ec0541d9]

CWS-TOOLING: integrate CWS chart47


2010-06-15  obo  <obo@openoffice.org>  [8071871de4bc648111e70bbcdaa8e187dee193de]

CWS-TOOLING: integrate CWS fwk139


2010-06-15  Kohei Yoshida  <kyoshida@novell.com>  [c2639a16b033be6b92d641aa1a2dea08ae768ab2]

calctabcolor: rebased to DEV300_m82.


2010-06-14  Kohei Yoshida  <kyoshida@novell.com>  [4ce8d44394251edbc2d4fef2330a9d02a4482cfe]

calctabcolor: #i5560# We need to also be able to load the table:tab-color attribute names in addition to the tableooo:tab-color names.


2010-06-14  Kohei Yoshida  <kyoshida@novell.com>  [a754b746caefba68cfa727435d1d91bae0fd8c2b]

calctabcolor: #i5560# Preserve tab colors during undo of table deletion.


2010-06-14  Kohei Yoshida  <kyoshida@novell.com>  [25fdd5e9fe2f45567b736beb8ce92f8678111c78]

calctabcolor: #i5560# Copy tab color when copying tables.


2010-06-14  obo  <obo@openoffice.org>  [8eb4dc82860236b2415368e0360bfc3646db2503]

CWS-TOOLING: integrate CWS tl80


2010-06-14  obo  <obo@openoffice.org>  [87ccba8959b3c9bc7f7f289462ad9917a1eaf4a5]

CWS-TOOLING: integrate CWS vcl111


2010-06-14  obo  <obo@openoffice.org>  [68807aac87440afba6611ffb1c14e1e837296f44]

CWS-TOOLING: integrate CWS calc54


2010-06-14  Thomas Lange [tl]  <tl@openoffice.org>  [c91cc2278601c0a3fd086135cb31de4b405297e1]

CWS tl80: merge with DEV300_m82


2010-06-14  Niklas Nebel  <nn@openoffice.org>  [c1152bc11bcefee44b5e5d1deb32fbd1eff07ad9]

calc55: make eOp member non-const to prevent MSVC C4510 warning


2010-06-11  Caolán McNamara  <cmc@openoffice.org>  [332ee9864c472e3b5f37105fb51f34a5d99eea09]

cmcfixes75: merge with DEV300 m81


2010-06-11  Caolán McNamara  <cmc@openoffice.org>  [fed0b932f41ee753643f1761132ced1937e4edd6]

cmcfixes75: #i110565# extra radio button


2010-06-11  obo  <obo@openoffice.org>  [8b10c0d5b6064c671f7f175550a0db88644f0a3c]

#i10000# fix for build bot (by GH)


2010-06-10  Niklas Nebel  <nn@openoffice.org>  [1eb700334399c64396211d4261bd8d6ea2478f72]

calc55: merge with DEV300_m81


2010-06-09  Eike Rathke [er]  <erAck@sun.com>  [4e3bcff6b424f7810bc75d7c4c061551b85bd183]

calc55: dumb ass MSVC, ScCompiler::IsOpCode::FunctionName : default constructor could not be generated; maybe moving the struct to file scope helps?


2010-06-09  obo  <obo@openoffice.org>  [3d6941e793b0322bcccaad826a792d6ff9abe5e3]

CWS-TOOLING: integrate CWS tl74


2010-06-09  obo  <obo@openoffice.org>  [97846150e249c40bea6ca268dc4c7a8fc7e3619d]

CWS-TOOLING: integrate CWS koheiextref01


2010-06-09  obo  <obo@openoffice.org>  [9b8d04c3aec9eabe387606cc77c0aaee220ce98f]

CWS-TOOLING: integrate CWS findbar01


2010-06-09  Thomas Lange [tl]  <tl@openoffice.org>  [5940ce5799758b2dc531fd7a07eb16a7e114aad8]

cws tl74: merge with DEV300_m81


2010-06-09  Caolán McNamara  <cmc@openoffice.org>  [f82ee6506e46e0238a04cbaa5a9575346c72789c]

cmcfixes75: merge with DEV300 m81


2010-06-09  obo  <obo@openoffice.org>  [79a9c7fb9a0c681f30e8cf1f988d3cb35d1af3ae]

CWS-TOOLING: integrate CWS chartpositioning


2010-06-08  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [a4823d636671b8682fc740ca781faab405a17275]

Automated merge with http://x42-so4:8009/ooo


2010-06-07  Eike Rathke [er]  <erAck@sun.com>  [2653b8bd3b5f0c2787cb7d7cf09431572fab57e3]

calc55: #i110288# corrected uk_qt and uk_gal factors


2010-06-07  Eike Rathke [er]  <erAck@sun.com>  [00e051d7c5d69dc662d93e2d14d3299f5bb3ea99]

calc55: merge


2010-06-07  Eike Rathke [er]  <erAck@sun.com>  [a8dd34ef3463bdb32661e73587163c2c3157f337]

calc55: #i110229# some alias names for functions renamed in ODFF drafts, and USER. prefix for macro functions


2010-06-07  Niklas Nebel  <nn@openoffice.org>  [a61da76eb8bb197681b8e173af093fd9c2a85009]

#i94570# keep DataPilot table names unique, get document from DocShell in RefreshDPObject


2010-06-07  Eike Rathke [er]  <erAck@sun.com>  [b4213a7e78b9034318531af81629505e3145a0fb]

calc55: merge


2010-06-07  Eike Rathke [er]  <erAck@sun.com>  [222b0f35292a5f7ca77593a893e0cdab13108000]

calc55: #i40309# #i31656# #i103458# improved accuracy of Bessel functions; patch from <regina>


2010-06-07  Niklas Nebel  <nn@openoffice.org>  [bb551c49cfe1a5c922bc4fc3ddf00e1b9c930b82]

calc55: #i112185# remove unreferenced files (implementation is in ScDPResultMember)


2010-06-07  Thomas Lange [tl]  <tl@openoffice.org>  [d483c60adf5b417982b6b27deba72890355d7f77]

cws tl79: merge with DEV300_m80


2010-06-05  tono  <tono@openoffice.org>  [2a0726c3dbbd83a64032e6e78176decb5ac1179e]

mingwport30: merge with DEV300 m80


2010-06-04  Thomas Benisch  <tbe@openoffice.org>  [577c42293f4b89ad84048314679b6a3c1e3cb434]

calc55: #i112084# All charts in a Calc document are loaded when saving the document


2010-06-04  Niklas Nebel  <nn@openoffice.org>  [83f4f8b725a029dab48fedc29fd28605b6e9dadc]

calc55: #i112123# when loading, don't initialize StdPrecision in DocOptions from configuration


2010-06-04  Thomas Benisch  <tbe@openoffice.org>  [415dfb2195079ea24a957b79a003830ed104b7a2]

calc55: #i112094# chart data table dialog cannot be disabled via UNO API


2010-06-04  Thomas Benisch  <tbe@openoffice.org>  [67b42548422c5df51a799c78cfbea89fa8612439]

calc55: #i112094# chart data table dialog cannot be disabled via UNO API


2010-06-04  Thomas Benisch  <tbe@openoffice.org>  [87fe723f239e147a52facb8cb807b466af13e78e]

calc55: #i112094# chart data table dialog cannot be disabled via UNO API


2010-06-04  Thomas Benisch  <tbe@openoffice.org>  [c92f98fc5fca3a8efa0016f84b85a07aee7c5144]

calc55: #i112094# chart data table dialog cannot be disabled via UNO API


2010-06-04  Thomas Benisch  <tbe@openoffice.org>  [2efe6e005b73f734d38fe5c2fae770982d07b166]

calc55: #i112094# chart data table dialog cannot be disabled via UNO API


2010-06-04  Ingrid Halama  <iha@openoffice.org>  [af6ccc27c22a9fd072a324e033a36dc02d46e350]

calc55: #i112035# loading some old chart document fails


2010-06-04  Niklas Nebel  <nn@openoffice.org>  [68339f9f1013911a226c8d365f258196e890a9df]

calc55: #i112116# width of 'E' can be different from digits


2010-06-04  Ivo Hinkelmann  <ihi@openoffice.org>  [20109cf04cc1e64f1d73f81c0f9710985dd7b7a7]

CWS-TOOLING: integrate CWS slidecopy


2010-06-03  Niklas Nebel  <nn@openoffice.org>  [eb8f96ee443dac6497ac28358f63b14e1154768f]

calc55: #i112071# property DataFieldCount is optional


2010-06-03  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [843557c722f300580c06e41e1a04b6eaed51d78c]

slidecopy: merge after copying in CWS renaissance2


2010-06-03  Carsten Driesner  <cd@openoffice.org>  [1ab90b14ac3be47b4a6467463f6ff9ba6abab534]

fwk139: Merge changes


2010-06-03  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [22d6f8ae32226b519ada9961b542866b2a4cc22d]

unoawt: merged in latest changes from CWS slidecopy (rebase to m80)


2010-06-03  Mikhail Voytenko  <mav@openoffice.org>  [ee2d85dedf9583b1e8b5f4c81b86c2a2fb67336c]

fwk139: #i10000# avoid warnings on solaris


2010-06-03  Ingrid Halama  <iha@openoffice.org>  [c24e6b3d81efc51e5bd5c7fd6d31a73abf76c1bb]

chart47: #i112078# disabled test sch.ChartLegend::com::sun::star::beans::XPropertySet


2010-06-03  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [563525645790c99c4e41e006e39f3ee3d3781b75]

slidecopy: merged latest DEV300.m80 changes


2010-06-03  Thomas Lange [tl]  <tl@openoffice.org>  [b69c4ead59508686a00702609b1108e484c182a9]

cws tl78: merge with DEV300_m80


2010-06-03  Ivo Hinkelmann  <ihi@openoffice.org>  [79a8c4405977b1984c3ed362e2d071d206948044]

CWS-TOOLING: integrate CWS renaissance2


2010-06-03  Mikhail Voytenko  <mav@openoffice.org>  [74eb04c893034c4852afccc6d6f2999e45da677f]

tl78: #i110383# password to modify support for binary types only


2010-06-02  Niklas Nebel  <nn@openoffice.org>  [be261b47da03943078f6efcdebf6a9d4d6a8a1fe]

calc55: #i112025# new csv import options must be at the end of the options string


2010-06-02  Mathias Bauer  <mba@openoffice.org>  [5c18aa3ead1bdacd7ae4bae2067ecdf5026ff5ff]

CWS mba33issues01: merge to m80


2010-06-01  Ingrid Halama  <iha@openoffice.org>  [eb817acd630b6e8e52f33478fad0074c5319a1bf]

chart47: #i110702# translation for 'display legend' is truncated


2010-06-01  Ingrid Halama  <iha@openoffice.org>  [baae33143ccd6eccd69eaf41a1ed50d151cceec8]

chart47: #i110300# allow also longs for property DataRowSource


2010-06-01  Ingrid Halama  <iha@openoffice.org>  [ad07aa503ce89ed85a3631606ab5b4ff2b9f75bf]

chart47: #i109770# enable chart tests again


2010-06-01  Ingrid Halama  <iha@openoffice.org>  [d8f5c743b9025a854cc61b9a64a778cfcf642a94]

chart47: #i111967# #i83832# some properties are wrongly marked BOUND


2010-06-01  Christian Lippka  <christian.lippka@sun.com>  [24341ca31da6556ce47df48b14d0535e24a7e64d]

cws renaissance2: rebase m80


2010-06-01  Ingrid Halama  <iha@openoffice.org>  [9fab9614e21e85da1cf323ffc712a44a6f244fac]

chart47: merge with DEV300_m80


2010-05-31  Caolán McNamara  <cmc@openoffice.org>  [acbb8aecdcaa555be5bfe90496d64ae9c2074bcc]

cmcfixes74: merge with DEV300 m80


2010-05-31  Caolán McNamara  <cmc@openoffice.org>  [6a897ad85a6d54c8f983e4d7f4b3f78c2d19397b]

cmcfixes75: merge with DEV300 m80


2010-05-31  Joerg Skottke [jsk]  <jsk@openoffice.org>  [16915026efb528ee817131e557ba38bb8c328a9f]

findbar01: Local merge with remote repo


2010-05-31  tono  <tono@openoffice.org>  [1e02f8a354ce16cf0cfb277a40565a8698825d42]

i#111956: MinGW port fix: dependency to shared library


2010-05-31  Ingrid Halama  <iha@openoffice.org>  [f9e4c6277ba690ddef2e856aa30de43ab6175991]

chart47: #i87138# enable test again


2010-05-31  Ingrid Halama  <iha@openoffice.org>  [2386a8546241a3820b5d9ac6d6ea441ea4c55777]

chart47: #i83867# enable test again


2010-05-28  Ingrid Halama  <iha@openoffice.org>  [3e999d846b9b44964db5f06d960347cb8b1aab10]

chart47: #i83857##i83706##i83831##i83866##i87138##i87295# cleanup UNO API tests


2010-05-28  Ingrid Halama  <iha@openoffice.org>  [bc7b36d9705776213865c1828f92cd0ceea6bd87]

chart47: #i79087# prevent deadlock + prevent null pointer access


2010-05-28  Ingrid Halama  <iha@openoffice.org>  [14960c839b342db293d2575ce2b0f0ffa9de0645]

chart47: #i79087# prevent deadlock + reduce vector to single diagram


2010-05-28  Daniel Rentz  <dr@openoffice.org>  [4ae8c58509a1b085e4206b69ff8b40c997a48816]

dr76: update to DEV300_m79


2010-05-28  Vladimir Glazunov  <vg@openoffice.org>  [12749c4c0e36dbf776c3bb31c456d0a6181b8a91]

CWS-TOOLING: integrate CWS calc53


2010-05-28  Vladimir Glazunov  <vg@openoffice.org>  [2a535305431a19da303b95ceef45fd74d6fc2497]

CWS-TOOLING: integrate CWS koheiautodecimal


2010-05-27  Ingrid Halama  <iha@openoffice.org>  [d183b1b35f61752082a923a37bf67c87fc871067]

chart47: #i79087# prevent deadlock while changing scale vie API


2010-05-27  Vladimir Glazunov  <vg@openoffice.org>  [ee023be1e2cb081dbf4a682dfaf92c43a3d609ab]

CWS-TOOLING: integrate CWS sb120


2010-05-27  Thomas Lange [tl]  <tl@openoffice.org>  [aa7a01ebb919631726972d9b3b0d252980eadf17]

cws tl79: merge with DEV300_m79


2010-05-27  Wu Yan  <wuy@openoffice.org>  [c2dc16f0c7d2be70861e70a88c06c79658bc8a63]

findbar01: #i111848#, #i111852# change title of findbar and show/hide the findbar according to specification


2010-05-26  Niklas Nebel  <nn@openoffice.org>  [1fa1e4e7311886b5d83e9f432b58c93fcfbd3f80]

calc54: merge with DEV300_m79


2010-05-26  Kohei Yoshida  <kyoshida@novell.com>  [0bfd2419f3b3ce49f786675c8a85e1eb91475799]

rebased to DEV300_m78


2010-05-26  Niklas Nebel  <nn@openoffice.org>  [8deff343687b331662f13cee93c73e19439c04f6]

calc54: #i111857# don't always create empty mpTableData for external service in BuildAllDimensionMembers


2010-05-26  Ingrid Halama  <iha@openoffice.org>  [a6c1b0d04a425192e307dad56bcb6446a6fc13ab]

chart47: #i86555# prevent deadlock while changing title vie API


2010-05-26  Caolán McNamara  <cmc@openoffice.org>  [bd6c6607419e4986d5d385747675a833f0f24e0c]

cmcfixes74: merge with DEV300 m79


2010-05-26  Caolán McNamara  <cmc@openoffice.org>  [3713a067ec4407490b06184d2d4748a04b8f1387]

cmcfixes75: merge with DEV300 m79


2010-05-26  Carsten Driesner  <cd@openoffice.org>  [39c8d43cd4abb39e589a48e8974229369d75bddd]

findbar01: Merge changes from m78


2010-05-26  Ingrid Halama  <iha@openoffice.org>  [464de3d6e0050792928225e8f5783415f9e7f8cc]

chart47: #i79087# reduce assertions 'Trying to set a read-only property'


2010-05-26  Ingrid Halama  <iha@openoffice.org>  [8c0dd186515a74a8ff68d462c90715919479938f]

chart47: #i83868# correct test and assertion for property 'SymbolBitmapURL'


2010-05-25  Thomas Lange [tl]  <tl@openoffice.org>  [4b25d74d97206a6d90e0df7e3a893efeec8b209c]

cws tl79: #i110254# security tab page in 'File/Properties'


2010-05-25  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [c239a0583e9e760f5c288e0f8cdf4a27a4ee1c25]

unoawt: completely separated the controller functionality of a wizard page from the wizard page itself, by moving the canAdvance method from OWizardPage to the IWizardPage interface, which in this course has been renamed to IWizardPageController. This will later on allow to have implementations where the TabPage is provided by an external component (e.g. as UNO Service), but the controlling of those pages is still intercepted and handled internally.


2010-05-21  Niklas Nebel  <nn@openoffice.org>  [0c3f49cc3a3ca0aff2e2c748ffa0d4097356b607]

calc54: #i54993# when fitting pages to width or height, ignore manual breaks in that direction


2010-05-21  Daniel Rentz  <dr@openoffice.org>  [4c01e846ff93eaa25d730c92293482db7012f94d]

dr76: #i103453# import visual area for embedded documents


2010-05-21  Kurt Zenker  <kz@openoffice.org>  [ca70505c0f9779abdc3623a136ffde96ffaff354]

CWS-TOOLING: integrate CWS npower13_objectmodules


2010-05-21  Ingrid Halama  <iha@openoffice.org>  [beb66b56a8325e9bf6f4be51dbcb0d4048b024be]

chart47: #i83831# problems with character properties at title


2010-05-21  Niklas Nebel  <nn@openoffice.org>  [9805d10638ae1bd005fdfb855dadfab168341a11]

calc54: #i111754# leave out source-service password attribute as long as DataPilotSource doesn't specify the content


2010-05-21  Ivo Hinkelmann  <ihi@openoffice.org>  [6c2daaedbf5861683e62e3f979b7ea91b5ee35da]

CWS-TOOLING: integrate CWS ab75


2010-05-21  Niklas Nebel  <nn@openoffice.org>  [b6ca8caa570d1fcf9ef77c1892aa47ce14277aa8]

calc54: #i111745# don't access GetObjectManager for BIFF5 export


2010-05-21  Daniel Rentz  <dr@openoffice.org>  [6910da13d5cac23ee289ae6e46b57c875d95def8]

npower13_objectmodules: rebase and merge with DEV300_m78


2010-05-20  Niklas Nebel  <nn@openoffice.org>  [fb2798ab89859486fe3f39d53027354001129483]

calc54: #i105964# IsHidden in CellProtection must always be saved as hidden-and-protected


2010-05-20  Henning Brinkmann  <hbrinkm@openoffice.org>  [29c520c31d26dafa12152d9040901c7599cbed69]

tl78: merge


2010-05-20  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [7e1e953edd200579a5aeaaf0bab4397f7d4fe3f3]

rebase to DEV300_m78


2010-05-20  sb  <sb@openoffice.org>  [0e8482f620da72462a37de944dad6629b6538084]

sb120: merged in DEV300_m78


2010-05-20  Caolán McNamara  <cmc@openoffice.org>  [46faa702887f821d3fa929f99f05172d388e6a87]

cmcfixes75: merge with DEV300 m78


2010-05-20  Vladimir Glazunov  <vg@openoffice.org>  [e31c4198b427344337175b43223b34b2bed92e35]

CWS-TOOLING: integrate CWS sdfindall


2010-05-19  Ingrid Halama  <iha@openoffice.org>  [e31b7ab520edc15e3af0d8d766286a7a77b9d6fe]

chart47: #i109770# #i110253# prevent null access on empty m_aModel and reduce assertions 'already disposed'


2010-05-19  Niklas Nebel  <nn@openoffice.org>  [a267aa6b8e5900648ff7419ff19d4caae4d8ba1d]

calc54: #i111710# Strings from EditEngine items are now in editeng resource


2010-05-19  Thomas Lange [tl]  <tl@openoffice.org>  [33af7ce8c4ff1167b80fc1afa79622932ad230c3]

cws tl79: #i110254# new security tap page in 'File/Properties'


2010-05-18  Kohei Yoshida  <kyoshida@novell.com>  [84542907bdb960d41f473984685e60aec2a37c3e]

koheiautodecimal: #i111387# fix for the fix.  The previous fix caused a crash.


2010-05-18  Mathias Bauer  <mba@openoffice.org>  [dff9751451672a4556ac3c7986bf17f30d088ac3]

CWS mba33issues01: #i99402#: typo RapairPackage


2010-05-18  Mathias Bauer  <mba@openoffice.org>  [d8f7108482c444df8e72859f385591192b40d6f1]

CWS mba33issues01: #i83367#: pass object name correctly


2010-05-17  Ingrid Halama  <iha@openoffice.org>  [79821a066b6097d273572e80eec734ddf0bb933a]

chart47: #i109770# #i110253# reduce assertions 'already disposed or closed'


2010-05-17  Ingrid Halama  <iha@openoffice.org>  [12bb628c2dc64ea42b00c1b7b38e1c4336efd73e]

chart47: #i109770# #i110253# don't paint anything if no model is available


2010-05-17  Ingrid Halama  <iha@openoffice.org>  [c4d312113e755370162281577d1e97fa4f31df79]

chart47: #i109770# #i110253# reduce assertions caused by a wrong z-axis contained in a 2D bar chart


2010-05-13  Kohei Yoshida  <kyoshida@novell.com>  [385701e4f3c501c37d43f8142f4abc43142ee49c]

calctabcolor: Removed code that was not intended.


2010-05-12  Kohei Yoshida  <kyoshida@novell.com>  [bc82cb560ca0c947cd71f6f2a52700302f7df1b5]

koheiautodecimal: #i111559# Fixed a bug in automatic adjustment when the printer matrices are used.


2010-05-12  Niklas Nebel  <nn@openoffice.org>  [1a185c4250292110e19b51d50efcfd3ecb3ddcaf]

calc54: #i99904# FillAuto: initialize pStyleSheet outside of the inner loop


2010-05-11  Kohei Yoshida  <kyoshida@novell.com>  [7c7aa919269c232dd07e7866082aa25c247dd5bc]

rebased to DEV300_m77.


2010-05-11  Ingrid Halama  <iha@openoffice.org>  [6d14a760ca1ba752521c399f490b74d49c9842c2]

#i111524# crash caused by TickmarkHelper::getMaxTickCount gets Inf interval count


2010-05-11  Carsten Driesner  <cd@openoffice.org>  [8c6c9b96958e9c8493ef3edfaf9875bb2a470804]

fwk139: Rebase to DEV300m77


2010-05-11  Thomas Lange [tl]  <tl@openoffice.org>  [738a35d287c74daae1f796d796e84b45172b25a9]

cws tl80: merge with DEV300 m77


2010-05-11  Andreas Bregas  <ab@openoffice.org>  [fb891104bee8c9089d4a3c0d7824566c9834e12c]

ab75: merge with DEV300_m77


2010-05-11  Ivo Hinkelmann  <ihi@openoffice.org>  [41c0e20c0fee58a66cf26e4f746e2e03708e4af3]

CWS-TOOLING: integrate CWS npower14miscfixes


2010-05-11  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [33e8e19cf365b0d8853654834de2bfa1d130fd79]

unoawt: merge after pulling from CWS slidecopy


2010-05-10  Ingrid Halama  <iha@openoffice.org>  [77325cde4c8dc157203e4877a1160703bace22c6]

chartpositioning: #i100778# for exploded pie charts use the offset of the series as radius for excluding positioning


2010-05-10  Ingrid Halama  <iha@openoffice.org>  [48f8256c1985559f0a717090e1514f8903efebad]

chart47: #i109770# #i110253# reduce assertions 'already disposed or closed'


2010-05-10  Ivo Hinkelmann  <ihi@openoffice.org>  [52de98965fa3f69f064d93d6688d89869cc8e01c]

CWS-TOOLING: integrate CWS dr73


2010-05-10  Ingrid Halama  <iha@openoffice.org>  [db052e3dbc41145e18d9798ae791c96cd53617f2]

chartpositioning: #i100778# switch to manual positioning if shapes are added via user interface


2010-05-10  Ivo Hinkelmann  <ihi@openoffice.org>  [373119bffa080ebe139ad649988324e7edeac0fa]

CWS-TOOLING: integrate CWS chart45


2010-05-10  Ivo Hinkelmann  <ihi@openoffice.org>  [16cad4da6536523be408ca1e90b394f071b73abb]

CWS-TOOLING: integrate CWS calcautocrash


2010-05-10  Ingrid Halama  <iha@openoffice.org>  [45f10580f59f84ca69adc591b85db631f38c1b68]

chart47: #i109770# #i110253# remove assertion caused by state without diagram during initialization


2010-05-10  Ingrid Halama  <iha@openoffice.org>  [4fc66960149b60ca783a533d7ed8c846f8605bc1]

chart47: #i109770# guard drawmodel destructor with solar mutex


2010-05-07  Ingrid Halama  <iha@openoffice.org>  [de80fb7519c2388de13bb1ec71b9decf5d61fb6a]

chart47: #i111456# use 9 sub intervals per default for logarithmic scales


2010-05-07  Niklas Nebel  <nn@openoffice.org>  [56ad4a6d138ed6c40299fc3d679d0e4ae3f51a46]

calc54: #i111462# in ScDPResultMember::LateInitFrom, reset InitChild flag only temporarily


2010-05-07  Ingrid Halama  <iha@openoffice.org>  [597d263dbaefcf6f767abf4c76d5ad9786b69e19]

chart47: #i111102# remove assertion


2010-05-07  Niklas Nebel  <nn@openoffice.org>  [d76de54662d5139c4f860be475aef7829f1eec76]

calc54: #i111435# in ScDPGroupTableData::CalcResults use dimension indexes including groups


2010-05-07  Thomas Lange [tl]  <tl@openoffice.org>  [317acb4f89a0ff572d9470b5075eea75dc3f80a8]

cws tl78: fixing windows specific build problems after merging with DEV300_m77


2010-05-06  Niklas Nebel  <nn@openoffice.org>  [342e7ad0346b4aa1a8b119dd6bfcc1ca879cdd1f]

calc54: #i111421# use lcl_GetTableVars in GetDataResultPositionData


2010-05-05  Ingrid Halama  <iha@openoffice.org>  [f17dd5b09b563867254d128e58334af30bf1c1b9]

chartpositioning: #i100778# simplify user interface: reduce sizing options to new excluding mode only


2010-05-05  Kohei Yoshida  <kyoshida@novell.com>  [8028fc70095223f143ff16ff90f0c50e0ece6dab]

koheiautodecimal: #i111387# Disable text wrapping when the cell value is numeric.


2010-04-30  Niklas Nebel  <nn@openoffice.org>  [7de2224d89f26d7748411635260f2e9260f66b29]

calc54: #i111293# correct parentheses


2010-04-29  Thomas Lange [tl]  <tl@openoffice.org>  [66a69bd92896891ec1bf982d5f20929d558023bb]

cws tl78: merge with DEV300 m77


2010-04-29  Niklas Nebel  <nn@openoffice.org>  [ba8281c9e284b562740b9d14fa137e556b39c3c2]

calc53: merge with DEV300_m77


2010-04-29  Niklas Nebel  <nn@openoffice.org>  [a4090098c1352eddbe32c5f78cce85edf53bbbac]

calc53: #i100879# add table style for cached tables only if there are cached tables


2010-04-29  Kohei Yoshida  <kyoshida@novell.com>  [bbacdbcac4226cc980d4d5a4e802b24e8af70590]

rebased to m77.


2010-04-28  Kohei Yoshida  <kyoshida@novell.com>  [12ab4cce333b19697dc7fa61ebaa6f7412de04a5]

koheiextref01: #i110595# Trim columns below the last non-empty row, to prevent Calc from adding the trailing empty cells.


2010-04-28  Christian Lippka  <christian.lippka@sun.com>  [89d32cea6048c27f97f31b3b6bd37e4dc6a310d6]

renaissance2: rebase m77


2010-04-28  Niklas Nebel  <nn@openoffice.org>  [3fcf09bf00afd179aea01513d981b8b133f27664]

calc53: #i111231# some spring cleaning


2010-04-28  Wu Yan  <wuy@openoffice.org>  [cc74e61b8caaf4d4f5a7f035d14afcdb91cd0e85]

findbar01: enhancements for findbar


2010-04-28  Thomas Lange [tl]  <tl@openoffice.org>  [7fdfa39cd7515f631eb52cb3c2bc46560fba33cc]

cws tl79: merge


2010-04-27  Mihaela Kedikova  <misheto@openoffice.org>  [9cf0689395833343418f347ca7841ebc196f1fc3]

gridcontrol_03: merge with DEV300_m77


2010-04-27  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [2d92ae464cf4f221f6a5fdc9667d731461a37402]

vcl111: #i105472# add style to omit pointer evasion of help window


2010-04-27  Thomas Lange [tl]  <tl@openoffice.org>  [804d16e9d16505bbf30942b9e8d8e3b2eafe9a9a]

cws tl79: merge with DEV300_m77


2010-04-26  Niklas Nebel  <nn@openoffice.org>  [f5d8d129f33451bf25e6d98f58c60eb0d1015200]

calc53: #i109009# make sure the function and syntax tip help windows are removed before their parents (modified patch from cmc)


2010-04-26  Niklas Nebel  <nn@openoffice.org>  [4c9b8ddd0c0796eef8d4108765644c1d8a21226d]

calc53: #i111158# set PageIncludesNonprintableArea property in getRenderer


2010-04-23  Niklas Nebel  <nn@openoffice.org>  [e1b3299af0f2c41838ad02c27cda2930331b8d5a]

calc53: #i85342# DrawEdit, screen display and formatting for printer: use ScEditUtil for paper size width


2010-04-22  Kohei Yoshida  <kyoshida@novell.com>  [2f41f278bfad92a576dd2963ea71c193d110e3c1]

Tab to whitespace.


2010-04-22  Kohei Yoshida  <kyoshida@novell.com>  [4704bb8c1c3e7bac137ea4ccd2efb98825faaba0]

koheiautodecimal: #i111074# When querying max precision, ignore unlimited precision, or use 2 in case all cell's precisions are unlimited.


2010-04-22  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [5d2c3b60378124a7f054d5eff3d62abba2d56ac5]

slidecopy: removed accelerator/*/default.xml - they're not used for a long time now ... (accelerator config is now in Accelerators.xcu in officecfg. No need to confuse people with those dead files)


2010-04-22  Thomas Lange [tl]  <tl@openoffice.org>  [5f5945a1abcefca14b8ecdf5d4e8427736ddde64]

cws tl80: #i110341# problems with spell check dialog fixed


2010-04-21  Caolán McNamara  <cmc@openoffice.org>  [77d7ad9e9735ca5a4c9c0277434e20c0f5bbeea5]

cmcfixes74: merge with DEV300 m75


2010-04-21  sb  <sb@openoffice.org>  [7f7f7eee2833d01a9bc1b5bbd9acd895d8549750]

sb120: merged in DEV300_m77


2010-04-21  Niklas Nebel  <nn@openoffice.org>  [a4460a8b62261af583e8b836f8148af40b267994]

calc53: #i111044# correct DataPilot item sorting from popup window


2010-04-21  sb  <sb@openoffice.org>  [4343104c1af1f0f9051d018871c4c2404175d79f]

sb120: #i109728# disable fragile sc/qa/unoapi for now


2010-04-21  sb  <sb@openoffice.org>  [bd85cdcead3d2a33eef57175803ef708e7458815]

sb120: #i111032# disabled failing test for now


2010-04-20  Niklas Nebel  <nn@openoffice.org>  [06739c8c1dde0aeddb6b50de4316bc6a0b4ad625]

calc53: #i110911# write required xlink:type attributes, column element for cached table


2010-04-20  Jens-Heiner Rechtien  <hr@openoffice.org>  [b4395d40681412984e19ea9115e1a2b4b4b5253e]

DEV300 masterfix: #i10000#: fix WaE: unhandled enumeration values


2010-04-20  npower Developer  <npower@openoffice.org>  [d33b22e807d2f965657e12f2662a8efad78a6775]

ab75: #i110417# improve ErrObj behaviour


2010-04-19  sb  <sb@openoffice.org>  [e68f8743bd0aedd060d62dbefa86606b0eff3cf1]

sb120: #i109770# disable fragile chart2/qa/unoapi testing for now


2010-04-19  Kohei Yoshida  <kyoshida@novell.com>  [cf6ec281016f63d8e9664efff78451c6b568ccc9]

koheiautodecimal: rebased to DEV300_m76.


2010-04-19  Niklas Nebel  <nn@openoffice.org>  [e3767c6f7e4a4391396d66c6cce48a140f7e6746]

calc53: #i110260# don't create medium with invalid URL


2010-04-19  Niklas Nebel  <nn@openoffice.org>  [aa434ab9675b188a73c917093f2edc4725a453c7]

calc53: #i110829# MarkListHasChanged: remove cell selection only if there are selected drawing objects


2010-04-19  Niklas Nebel  <nn@openoffice.org>  [21c19106375473895356e6f306d7803885f70cc6]

calc53: #i110979# don't mix number format indexes from different number formatters


2010-04-16  Daniel Rentz  <dr@openoffice.org>  [757e5e83358f9b3afcee46930a5ddf74dc53027b]

npower13_objectmodules: uppercase UNO constants


2010-04-16  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [60d36644de7fcf8e7c661fbef9d5f324284efb37]

slidecopy: now using SID_TASK_PANE in all applications, also in Impress. Implies registering the respective child window in the apps, not in SFX. Also implies getting rid of SID_RIGHT_PANE in Impress. Also, renamed SID_TASK_PANE in Impress to SID_SHOW_TOOL_PANEL, which better fits its purpose, and avoids confusion with SID_TASKPANE.


2010-04-16  Jens-Heiner Rechtien  <hr@openoffice.org>  [fd4d6f2e1fca751e19c2d93eaef9784478038728]

DEV300: merge masterfix ea9085d6db4c@DEV300


2010-04-16  Niklas Nebel  <nn@openoffice.org>  [e0c6b162d68bf5d7baae00da910364a74669b17a]

calc53: #i110941# web query import: correct handling of merged cells


2010-04-16  Jens-Heiner Rechtien  <hr@openoffice.org>  [2f711e6622169bc6434a1b1ebd8abe68d69a4666]

CWS-TOOLING: integrate CWS calcfilterrange


2010-04-16  Jens-Heiner Rechtien  <hr@openoffice.org>  [65b6d4a66400e055614d8a159b31d452a5645863]

CWS-TOOLING: integrate CWS sb118


2010-04-15  sb  <sb@openoffice.org>  [1d68dde60cd5761593d533963b2aa55653c29791]

sb120: merged in backout from cws/sb118


2010-04-14  Niklas Nebel  <nn@openoffice.org>  [6faaf689bba4a316cc2a3601ab9dc6ac2c1bbb92]

calc53: #i89332# allow html or csv instead of preselected xls in ScFilterDetect::detect, no more registration of csv for xls extension


2010-04-14  Thomas Benisch  <tbe@openoffice.org>  [78a7db631cab0113c4c020423f1440f97c8d577b]

chart45: #i110805# Chartshapes: Toolbarbuttons can't be opened


2010-04-14  Thomas Benisch  <tbe@openoffice.org>  [3c43c1b27b6858d50771e1cc805b64245d82f4e7]

chart45: #i110805# Chartshapes: Toolbarbuttons can't be opened


2010-04-14  Daniel Rentz  <dr@openoffice.org>  [9009800049415242f1673197b388dfe47fb65395]

npower13_objectmodules: make vba import available in oox filters


2010-04-14  sb  <sb@openoffice.org>  [96d0771c4c3c6a5509852ceb8242dbc4f68ec3bd]

sb118: merged in backout


2010-04-14  Ingrid Halama  <iha@openoffice.org>  [b370dfc3f2d7b0e3fab493d40772cdc57158232c]

#i110743# build WarningError on unxlngx6


2010-04-14  npower Developer  <npower@openoffice.org>  [f42b3e72341f87473b7d5c9676f91d5b91a001dd]

npower13_objectmodules: add a CodeName property for Sheet and Document/Model objects


2010-04-14  Thomas Lange [tl]  <tl@openoffice.org>  [0fa614adbb3d27b3d6aa6b3897bc13ae51081aca]

cws tl74: merge with DEV300 m76


2010-04-14  sb  <sb@openoffice.org>  [d8f41d6537bae40b5d5eb7617def4dd884e9651e]

sb120: #i110862# disabled failing test


2010-04-13  npower Developer  <npower@openoffice.org>  [9300dcbbb0d81e2f19b6b0fdcb3b2a102c9985fc]

npower13_objectmodules: #i110724# fix for union and some clean up for determining multicell property values ( using SfxItemSet )


2010-04-13  Niklas Nebel  <nn@openoffice.org>  [0939ee8d17a865c3bcf9b53c9ec6dfdaee005877]

calc53: #i110853# don't always cancel HTML export


2010-04-13  Ingrid Halama  <iha@openoffice.org>  [421b79628c3ab4c193885e26c6c83b484a037845]

chart45: avoid assertion during scenario from issue #i110849#


2010-04-13  sb  <sb@openoffice.org>  [7b9a0cd400402faac91fc6d15c97bf1eb3b56629]

sb122: merged in cws/calcautocrash to fix sc/qa/unoapi problem with sc.ScDataPilotFieldGroupItemObj


2010-04-13  Ingrid Halama  <iha@openoffice.org>  [89e82d6fae52b2ee5ebd8da30d1b084de3e10353]

chart45: #i110849# crash after copying chart


2010-04-12  Kohei Yoshida  <kyoshida@novell.com>  [f230c532bf6ba3238a88ac71784cfa0e33cc4c23]

koheiautodecimal: #i110634# Don't export negative decimal-places esp. when the standard precision is "unlimited" (i.e. has an internval value of 65535 which would become -1 whne casted to *signed* 16-bit integer).


2010-04-12  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [680e0d87d8613120aa00fb29ba3d1faca9567a84]

slidecopy: merge


2010-04-12  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [cc3fcf72fad22892e1ee7b3797a9cc99052419ff]

merge with DEV300_m76


2010-04-12  Caolán McNamara  <cmc@openoffice.org>  [a801921aea8746dfca4da1fa37b9cf3faba71988]

sdfindall: merge with DEV300 m76


2010-04-12  Caolán McNamara  <cmc@openoffice.org>  [3080d30aee79b9166973725a07bfeb2c576c834b]

cmcfixes74: #i110565 use radio buttons for mutually exclusive options in menus


2010-04-12  Caolán McNamara  <cmc@openoffice.org>  [5d92bcf7cc613329e8e1cdae0f1275d56b41abbe]

cmcfixes74: #i110565 move the radiobuttons work to sdfindall


2010-04-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [7075ddccf64fbb59f002dbd29276ade0147ab123]

dba321a: #i10000# remove dublicate method: static void lcl_SkipBytesInBlocks (merge problem


2010-04-12  Christian Lippka  <christian.lippka@sun.com>  [1b56f81da8ac83ae8493fe3c20c5062cd52e3fae]

renaissance2: rebase m76


2010-04-12  Niklas Nebel  <nn@openoffice.org>  [61da4affffbbdd5e9b9de822bdfde0e4ebe6c6f8]

calc53: #i110751# remove unused functions again


2010-04-12  Niklas Nebel  <nn@openoffice.org>  [fbdc7196007cdfc4ba578c6188a477da0fbd53cb]

calc53: #i110799# use IsValidReference in getReferredCells


2010-04-11  sb  <sb@openoffice.org>  [658eee1218c5d9af1b297a1afab25bf67870422f]

sb120: merged in DEV300_m76 via cws/sb118


2010-04-11  sb  <sb@openoffice.org>  [e45305308113131baa4136a68ec4a41a6ac52145]

sb118: merged in DEV300_m76


2010-04-09  Niklas Nebel  <nn@openoffice.org>  [a1d3242b3910e80c0b3546619015657145f9a2e1]

calcautocrash: #i110721# move MacroInterpretIncrementer to ScDPTableDataCache::InitFromDoc


2010-04-09  Niklas Nebel  <nn@openoffice.org>  [9f352b9f9d2649e371d0b4ba45c7e4747b995438]

calc321stopper2: #i110692# ExportToComponent: reset stream flags if source stream not available


2010-04-13  Niklas Nebel  <nn@openoffice.org>  [e1d6fd9a8d2a3270ecbc5f0c30b791ead81c4f02]

fwk140: #i108978# copy sheets from stream only if a SFX event was notified before saving


2010-04-12  Ingrid Halama  <iha@openoffice.org>  [e515881b244e95d9c10d856c5d12b03489ea9911]

fwk140: #i110766# avoid crash on changing com.sun.star.chart.ChartDataRowSource


2010-04-09  Caolán McNamara  <cmc@openoffice.org>  [cbaeebca55dea1baa9bb54ccd8723ea9c2a59394]

cmcfixes74: #i110717 fix new && || + meaningless const warnings


2010-04-09  Ingrid Halama  <iha@openoffice.org>  [ab00b10a9ed0781ba9cd8c44af01e9361fa1e8fb]

chartpositioning: merge with DEV300_m76


2010-04-09  Caolán McNamara  <cmc@openoffice.org>  [b21be76c5c81ff444f0477ac916c57c646fe3583]

cmcfixes74: merge with DEV300 m76


2010-04-09  Ingrid Halama  <iha@openoffice.org>  [fce73d8921c6abc75ee2fbf45af85aab966eae65]

chart45: merge with DEV300_m76


2010-04-08  npower Developer  <npower@openoffice.org>  [9756403b5445d3f957f02edaeec737087f9a2377]

npower13_objectmodule: merge heads ( from merge to DEV300_m75 )


2010-04-08  Caolán McNamara  <cmc@openoffice.org>  [53ac03935ca1b5a0b386a55f56384d65d9d95da3]

cmcfixes74: #i110565 use checkboxes in popupmenus for mutually exclusive options instead of checkboxes


2010-04-08  Caolán McNamara  <cmc@openoffice.org>  [6adbf27d656629e17ebe1142ebb9a257decab62a]

cmcfixes74: #i110565 use checkboxes in menus for mutually exclusive options instead of checkboxes


2010-04-08  Daniel Rentz  <dr@openoffice.org>  [1a44edc4fa8e2e4b1f5754861bbe16ca65c984fb]

tl78: #i109779# import/export password-to-modify


2010-04-08  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [42a0d25e33393d291ad9cb1838f65956b9cfaf4f]

slidecopy: add SID_TASKPANE support to Calc, Writer/Web, Writer/Global, Math, Writer/Form, Writer/Report, XMLForm


2010-04-08  Caolán McNamara  <cmc@openoffice.org>  [60f440e7a5622a34d6d89c8226aa355139329712]

sdfindall: merge with DEV300 m75


2010-04-07  npower Developer  <npower@openoffice.org>  [e17b34c6010ae42a379d1e18c864b014ddb1f9ff]

npower13_objectmodule: #i110672# fix Application.ThisWorkbook ( from dr )


2010-04-07  sb  <sb@openoffice.org>  [2407c73cc9e4778130f8478e59f44af213776fca]

sb120: merged in re/DEV300_next towards DEV300_m76 via cws/sb118


2010-04-07  sb  <sb@openoffice.org>  [7a51cf8ed4358539c9940a2bf5bdf54474789863]

sb118: merged in re/DEV300_next towards DEV300_m76


2010-04-06  Ingrid Halama  <iha@openoffice.org>  [6cc9f1841da25bf2159f5acad60497c756685bc6]

chartpositioning: #i100778# do only calculate inner rectangle if necessary


2010-04-06  Ingrid Halama  <iha@openoffice.org>  [19e60998f880943b9774aec6fd2eb4f0c4ac32fc]

chartpositioning: #i100778# use size inclusive axes and axis titles for 3D charts


2010-04-06  Ingrid Halama  <iha@openoffice.org>  [6d69e6ba650a6332cf2450d8a4a675d4aa2b6ec6]

chartpositioning: #i100778# correct inner rectangle in case of 3D charts if outer rectangle is used for sizing


2010-04-01  Vladimir Glazunov  <vg@openoffice.org>  [464b494e0b298c87757f177ad92c2c99bf0cb77c]

#i10000# some catch-up fixes


2010-04-01  Ingrid Halama  <iha@openoffice.org>  [3f652870ab263e0d501a820a9c1d7f4fb324d6db]

chartpositioning: #i100778# changed default to exclude axes


2010-04-01  Ingrid Halama  <iha@openoffice.org>  [9b039eddfc3f98e9e764b9e334fce6f0f563d7f5]

chartpositioning: #i98398# compiler warnings


2010-03-31  Ingrid Halama  <iha@openoffice.org>  [ac953d3420a1ad5dda91e39e5a106dc76380d151]

chartpositioning: #i100778# fixed typo


2010-03-31  Ingrid Halama  <iha@openoffice.org>  [81fd983210d3b0b111dc5a0bd92f8d8c68412433]

chartpositioning: #i98398# treat diagram size without title sizes (correct ODF import/export, correct diagram sizing per mouse, correct API for import)


2010-03-30  Mikhail Voytenko  <mav@openoffice.org>  [f99dc2586e3e1dc1bee71f3c72fb6bbce89b98ae]

tl78: #i110383# support password to modify


2010-03-30  Mikhail Voytenko  <mav@openoffice.org>  [472c78a409ba579b9932cc224d64f385df0bdb63]

tl78: #i110383# support password to modify


2010-03-30  Ingrid Halama  <iha@openoffice.org>  [ddae2d8a0479c2e61b7f08c561863ed28cedb877]

chartpositioning: #i100778# avoid assertions upon opening of pos&size dialog


2010-03-26  Ingrid Halama  <iha@openoffice.org>  [3c1a951c99a8bdbc4b87e31cd744354c66082cb5]

chart45: #i106812# correct Undo for ranges


2010-03-26  Ingrid Halama  <iha@openoffice.org>  [fec4fbfcb9751467356c2a05ba12107105e5909a]

chart45: make more failsafe


2010-03-25  Ingrid Halama  <iha@openoffice.org>  [e5aea8494b9994cff05981e81da53822bcafef95]

chart45: #i80377# don't wrap wide legends so early


2010-03-24  Ingrid Halama  <iha@openoffice.org>  [25feedae4ddddabe421aad547df08a5fb2014f3a]

chart45: #i106966# actvating chart by double click opens area dialog


2010-03-24  Thomas Lange [tl]  <tl@openoffice.org>  [0baceff0c0d6b0225b5fb5d480d435224b26086c]

cws tl78: merge with DEV300_m75


2010-03-24  Vladimir Glazunov  <vg@openoffice.org>  [82b0b58859ab47ed143e737f3eb9d894cf7b1bd5]

CWS-TOOLING: integrate CWS chart43


2010-03-24  Thomas Lange [tl]  <tl@openoffice.org>  [ecbfbd97b0ff96c7d2f61e61260ff216dd97674b]

cws tl74: merge with DEV300_m75


2010-03-23  Vladimir Glazunov  <vg@openoffice.org>  [2229eed522ac49c46c38e7621745b0ca8cc80689]

CWS-TOOLING: integrate CWS chartlayout


2010-03-23  Mihaela Kedikova  <misheto@openoffice.org>  [6ee31d9f5669f88959d8309b9b47f621f85258a7]

gridcontrol_03: merge with DEV300_m75


2010-03-23  Vladimir Glazunov  <vg@openoffice.org>  [e233c6a79465480b77ebd0561078a7cb3a143b01]

CWS-TOOLING: integrate CWS datapilotperf


2010-03-23  Vladimir Glazunov  <vg@openoffice.org>  [80263a964643a6fe92f606fec473341bb50a35d5]

CWS-TOOLING: integrate CWS autorecovery


2010-03-22  Vladimir Glazunov  <vg@openoffice.org>  [2fc5945e825e5c45b0475ee975e0cb2ee353e14e]

CWS-TOOLING: integrate CWS kohei04


2010-03-22  Vladimir Glazunov  <vg@openoffice.org>  [aa9e4a2b1ff00bca018a530a9d54a501fcec2485]

CWS-TOOLING: integrate CWS koheicsvimport


2010-03-22  Vladimir Glazunov  <vg@openoffice.org>  [4bcd349e5329db6881ef32e87992454fd30ac143]

CWS-TOOLING: integrate CWS calc52


2010-03-22  Andreas Bregas  <ab@openoffice.org>  [2febf50d9290a32efcc20425345567a796e5a929]

npower14miscfixes: merge with DEV300_m75


2010-03-21  Christian Lippka  <cl@openoffice.org>  [7de305c9f93358499cae7c581071f2bd4a987e0f]

Adding PopupMenuController to allow PopupMenuControllerBase dervivates to be used in toolbars


2010-03-19  Ingrid Halama  <iha@openoffice.org>  [448d0d662ffad37bd6f92e7cf655d2ddbf28e547]

chartpositioning: merge with DEV300_m75 (part2)


2010-03-19  Thomas Lange [tl]  <tl@openoffice.org>  [c5ce367dee41a575a8006f293936279ff76f50df]

cws tl79: #i110254# new 'Security' tab page


2010-03-17  Ingrid Halama  <iha@openoffice.org>  [6899bbe6e61d3b5fba8fd4bda33b77911607813c]

chartpositioning: merge with DEV300_m75


2010-03-17  Niklas Nebel  <nn@openoffice.org>  [15404292a14db0d2918b62771bbbe29fba2987db]

dr73: merge with DEV300_m75


2010-03-17  Christian Lippka  <cl@openoffice.org>  [16005645b5e9a274ee8e04ba75f4e99919d67f11]

renaissance2: rebase m75


2010-03-15  Ingrid Halama  <iha@openoffice.org>  [aea0cfb16ccc34b81998d51de84f2413f79a897a]

chart43: merge with DEV300_m75


2010-03-12  Christian Lippka  <christian.lippka@sun.com>  [55b9d0a1a9e991677334ef3ca1d4af7c051c98ae]

renaissance2: merge to m73


2010-03-12  Eike Rathke [er]  <erAck@sun.com>  [f122fb6f447fb1c7efb3bc4b87ed5fbff80dd277]

dr73: #i103152# description of T()


2010-03-12  Eike Rathke [er]  <erAck@sun.com>  [7cd7fb0edf3d596a48ef441867eaa0aaf0e0d4ca]

dr73: branch merge


2010-03-11  sb  <sb@openoffice.org>  [354ac8ae93f33a86e947f1eb731bf8db5f28b136]

merged in re/DEV300_next towards DEV300_m75


2010-03-11  Niklas Nebel  <nn@openoffice.org>  [eeab187a6e75f4240ca058409e87e1fb033d8fe8]

dr73: #i110008# UpdateReference for shared formulas: call MoveRelWrap, but with the old position


2010-03-11  Ivo Hinkelmann  <ihi@openoffice.org>  [88820339f4ee0a126bc686b5fde6812abd07490e]

masterfix DEV300: #i10000# WaE fix


2010-03-11  Niklas Nebel  <nn@openoffice.org>  [6ec4883fbfd42463840d79e9d874cd3be506559d]

dr73: #i109987# SetDocSize: only grow, don't shrink


2010-03-11  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [24407e42e27b3137fbafcb5338bc200728e22650]

autorecovery: merged changes from m74. Still need to find out how to re-do two patches (to module_hidden_ooo.scp and file_ooo.scp in scp2/source/ooo) which do not apply anymore.


2010-03-10  Ingrid Halama  <iha@openoffice.org>  [f769729ecdc4c185a1abf2c0bd427f66c2320c26]

chart43: #i109770# ChartView::getExplicitValuesForAxis accessing destroyed VCoordinateSystem


2010-03-10  Ingrid Halama  <iha@openoffice.org>  [ab2bbad3c25a9c3b370d75153104ce8bfb760240]

#i110034# while copy-paste of chart and cell ranges the chart looses its data references


2010-03-10  Vladimir Glazunov  <vg@openoffice.org>  [b5b7713079653182986e6a8d781ff8c930c5cd0d]

CWS-TOOLING: integrate CWS datapilotapi


2010-03-10  Kohei Yoshida  <kyoshida@novell.com>  [5601b161ae6500d67ebade6dc426f9675444f88b]

koheiextref01: Have ScExternalRefManager::ApiGuard take ScDocument pointer, to make its declaration one-liner.


2010-03-10  Eike Rathke [er]  <erAck@sun.com>  [6ce9e112d3d3a40ee6f399ee1c1b0e740224c418]

dr73: wipe segdefs*.hxx, unused since win16


2010-03-10  Ingrid Halama  <iha@openoffice.org>  [121ce9b7bc3ca740d8a53177f40d19237bc13e95]

chart43: chart copy/paste within selection: adapt complex ranges instead of simple rectangular range


2010-03-10  Vladimir Glazunov  <vg@openoffice.org>  [c503a8b7485936659f153c82faa2f89231821b66]

CWS-TOOLING: integrate CWS chartmultiline


2010-03-10  Ingrid Halama  <iha@openoffice.org>  [c664945bd079f197c20a1d014a92653aa55274f7]

chart43: cleanup some chart code


2010-03-10  Ingrid Halama  <iha@openoffice.org>  [c3136b39653bfd5de2d3efbd065c10872a0338e7]

chartmultiline: merge with DEV300_m74


2010-03-09  Ingrid Halama  <iha@openoffice.org>  [4a09f11ebd9f6a1be4e3fe15e82e9a1d46452e95]

chartmultiline: merge with DEV300_m74


2010-03-09  Kohei Yoshida  <kyoshida@novell.com>  [bfcf5b3686674e3b4fa60b20a9305ec774a5c874]

koheiextref01: #i108404# Disable interaction handler when interpreting formula strings via UNO API.


2010-03-09  Ingrid Halama  <iha@openoffice.org>  [efc9a9ce4b68c6a0ad3cd4add22cb0d5dedf6855]

chart43: #i99562# delete secondary axis automatically if last series is deleted that was attached to it


2010-03-09  Ingrid Halama  <iha@openoffice.org>  [d75ca99f51d258b9cc40689aa54eb0d15bafc78c]

chart43: #i109881# added missing virtual destructor


2010-03-09  Ingrid Halama  <iha@openoffice.org>  [fbffa5c03ce9f80a2829bb5110cb21779ace258b]

chart43: #i109977# make axes and grids deletable via delete key


2010-03-09  Kohei Yoshida  <kyoshida@novell.com>  [73dc0a2b8fac097c133cbf479594329302f3cfbb]

kohei04: Squash those useless __EXPORT macros.


2010-03-09  Kohei Yoshida  <kyoshida@novell.com>  [fdd56a2c2f6f9ecacd155a521c6948aa88480ffe]

kohei04: tab to whitespace & BOOL to bool etc to make MSVC compiler happy.


2010-03-09  Niklas Nebel  <nn@openoffice.org>  [0f9073a5d2fde1270ccf2edf4bef1bb78e53a4a3]

datapilotperf: 64-bit buildbot error


2010-03-09  Eike Rathke [er]  <erAck@sun.com>  [1c76edd3f55de3e23cdf2ae61abe931e88e045e6]

dr73: #i109861# make N(cell_reference_resulting_in_string) return 0 again


2010-03-09  Ingrid Halama  <iha@openoffice.org>  [5f7162fdc6fda41b29ea504ec539ef68d63dc499]

#i78934# correct geometry for stacked pyramids


2010-03-09  Ingrid Halama  <iha@openoffice.org>  [e207555179db224b6a85d92822ab70d3b5bd5c94]

chart43: #i29848# chart-copy references original data instead of copied data


2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [958bf3d662dd5d1957e0d9e0ccd6dd1440622671]

koheiextref01: #i108064# Disable things that are not necessary in external doc cache.

Doing that also prevents circular access of external references, which would cause
a pretty bad hang.
2010-03-08  Eike Rathke [er]  <erAck@sun.com>  [aabe95b80454b4a38ecae81d01b5bababe2e7082]

dr73: branch merge


2010-03-08  Eike Rathke [er]  <erAck@sun.com>  [38fac6e5a1f73af248ce2a9c7a4cfc76220f7bb5]

dr73: #i94695# when filtering on date disregard time fraction of cells formatted as date; reworked patch from <kohei>


2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [2da94f3b3d09d33cbdaaecf3c14eb7f7cbe8599b]

koheiextref01: #i109168# Allow creation of static sheet cache via UNO API for external references.

This is to keep the sheet cache 'static' during import of xlsx documents.  The same trick
is performed during import of xls and ods documents.
2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [3b78b9d25f83426cec4987c9d56d9cd8946f182e]

koheiextref01: added inline comment.


2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [5094e36d0c3e8dccecb8178c24bbbee9eeb57663]

koheiextref01: #i108404# Use interaction handler during loading of external document.

We need to enable interaction handler during loading of external documents, in order
to allow loading of encrypted documents, which require password input from the user.
2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [1ca57e4d7df3d63171555b32e80a3844c6b375ca]

koheiextref01: #i109101# Fixed incorrect parsing of cached string cell values.

The xml parser tends to break text into multiple pieces in presence of '#'.
The original code only picked up the last piece of the set, which truncated the
stored cache value.  We should pick up all the fragments during the import.
2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [6b0929a9c0a10fb42cd4c4bdac403683f6df1633]

koheiextref01: added comments.


2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [1be7de9122cc460abf83723c51088ae9c30d235a]

koheiextref01: #i109101# Fixed external ref URL parser to pick up sheet names with '#' correctly.


2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [5f5918f43ba4b4a41d8376b8faef5a872815b2d0]

koheiextref01: inline comment change.


2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [379ec22cd196ab51c2b7f8f34e60843dd4b3c848]

koheiextref01: removed unused method.


2010-03-08  Kohei Yoshida  <kyoshida@novell.com>  [6d62a09d7129ae6f235108ade0e9607b2a7a7eb0]

koheiextref01: i#109170# Iterate through the formula cell list in the external ref mgr to mark used references.

The old code scanned *all* formula cells in the entire document, to see if any external references exist in the
document.  Now that the external ref mgr tracks formula cells with external references better, let's use that
list, to be more efficient.
2010-03-08  Ingrid Halama  <iha@openoffice.org>  [70587a93c58e8e88ba79a6578a81580c2444faf5]

chart43: #i29848# chart-copy references original data instead of copied data


2010-03-08  Ingrid Halama  <iha@openoffice.org>  [f9b7efb85129c32ea74ff6eecd1dbde59a46bff4]

chart43: #i91035# default fonts too small


2010-03-08  Niklas Nebel  <nn@openoffice.org>  [83b8bd60372be663d168177e096286ca95707e4c]

dr73: #i109782# fixed some typos


2010-03-08  Ingrid Halama  <iha@openoffice.org>  [fba92c05f629f2776620d8c3b838f2e5882c5be6]

chart43: #i103778# Use Rounded as default corner style for borders


2010-03-08  sb  <sb@openoffice.org>  [50136d1d8b9e8143a341a96847bcaaadf7a2c5a8]

sb118: #i109517# disabled further fragile unoapi tests


2010-03-07  Kohei Yoshida  <kyoshida@novell.com>  [3f68c2ce68682e1e30e8eeedbff6662601e4aaae]

koheiextref01: Forgot to remove this unused method.


2010-03-06  Kohei Yoshida  <kyoshida@novell.com>  [f2893564b32b5124911daf5068aba870040b88ef]

koheiextref01: Forgot to remove debug code.


2010-03-05  Kohei Yoshida  <kyoshida@novell.com>  [a89f43a17261d97b17e30f1d5e0597385b8cef92]

koheiextref01: #i103739# #i109170# Breaking links permanently turn formula cells into static cells, to prevent the links from being generated again upon reload.  Also simplified the mechanism of tracking formula cells containing external references.  The new way works better, more reliable and less code.


2010-03-05  Kohei Yoshida  <kyoshida@novell.com>  [87afc6e820c5ca2ad235dce61e2a606e88be5614]

koheiextref01: I forgot to initialize data members properly.


2010-03-05  Kohei Yoshida  <kyoshida@novell.com>  [692c0a8ac9ec39c20605870d20816795d4f0f786]

merged to DEV300_m72.


2010-03-05  Niklas Nebel  <nn@openoffice.org>  [5064b7ef8009da75ad3df0bfe066b3dd8309b0dc]

dr73: #i100534# pvfundlg belongs into scui lib only


2010-03-05  Kohei Yoshida  <kyoshida@novell.com>  [a0b7d90a5045751258daf926ed9b37c3734d1731]

koheiextref01: Turned several functions const because they don't modify the states of the classes.


2010-03-05  Niklas Nebel  <nn@openoffice.org>  [165d7e9ded8d9d7e5bf0040230bdbb5cc6e3c88c]

calc52: #i109200# #i109812# fix DCOUNT and related functions


2010-03-05  Thomas Lange [tl]  <tl@openoffice.org>  [550b967d6e240ebfa4f0b5aa6919e8fb5b532ee5]

cws tl78: merge


2010-03-04  npower Developer  <npower@openoffice.org>  [f9b2be404edcd106e397685c2b137be7acf540d0]

npower14miscfixes: wae removal


2010-03-04  sb  <sb@openoffice.org>  [a74daf8303cf71278dbb688bf6d4fa32017a93b5]

merged in re/DEV300_next towards DEV300_m74


2010-03-04  Daniel Rentz  <dr@openoffice.org>  [830ae6f1551a861f9c417e4916c626aeeb4c8f01]

tl78: #i109779# add password2modify to XLS filters


2010-03-04  Daniel Rentz  <dr@openoffice.org>  [c833ac08235a63aa3a0bb600b0d895c4812ad1e7]

tl78: #i109779# add password2modify to XLS filters


2010-03-03  npower Developer  <npower@openoffice.org>  [3b7e061708f16802e60e3d1d9764082b03d376b1]

npower13_objectmodule: #i109734# smooth out logic for tab copy ( and associated creation of new basic module )


2010-03-03  Daniel Rentz  <dr@openoffice.org>  [6bceec500192baf97ad0500cdafac6c205c9b371]

tl78: #i109779# password2modify: preparations in oox, import from xlsx


2010-03-03  npower Developer  <npower@openoffice.org>  [ca441a4fb69d06f267ee4eeebe4b36b99c20fbb1]

npower13_objectmodule: some cleanup


2010-03-03  Ingrid Halama  <iha@openoffice.org>  [b74bc7a2c179a21cc9a4756f5add06338f41d5f3]

#i109781# charts should be bigger by default


2010-03-03  Ingrid Halama  <iha@openoffice.org>  [82474c2b70f90c5d5eccf96f0bdcb75d6d1db65a]

#i109771# no black borders around symbols + #i74910# very thick borders protrude over the legend


2010-03-03  Ivo Hinkelmann  <ihi@openoffice.org>  [a92bba324c4686371ca7e8d7bb94ce2df1de2cbf]

CWS-TOOLING: integrate CWS chartshapes


2010-03-03  Niklas Nebel  <nn@openoffice.org>  [8cd5bcb45053c2cb9f97d05ac53f7a81537aa69c]

dr73: #i73766# InitRangeFinder: adjust flags for second part of reference


2010-03-03  Ingrid Halama  <iha@openoffice.org>  [e64f0f0866ebf10b7f9d1f7cd41c6e6ce028020a]

chart43: #i109767# no black borders per default for laminar chart types - realisitc look per default for 3D charts


2010-03-03  Thomas Benisch  <tbe@openoffice.org>  [23be6a23f46a3df9a45b660dbfaf7eeff4e508e1]

chartshapes: merge with DEV300_m72


2010-03-02  Ingrid Halama  <iha@openoffice.org>  [2b345fab5a019dd7b587097b2b87bf9dfb2bc181]

chart43: remove compiler warning


2010-03-02  Niklas Nebel  <nn@openoffice.org>  [b7939b44754124a85153c93838946950b605a743]

dr73: #i108245# error handling in protect/unprotect


2010-03-02  Ingrid Halama  <iha@openoffice.org>  [7fd6bde3e1ecf190b5a9fd1595e753f1d240ab94]

chart43: #i109744# walls are too dark, #i78934# pyramids are too dark


2010-03-02  npower Developer  <npower@openoffice.org>  [19bc6db6ca1c69285982abd7f634396d2e201991]

npower13_objectmodule: #i109734# resolve macros after basic is loaded, fix error with 'Me' rtlfunc


2010-03-02  Niklas Nebel  <nn@openoffice.org>  [4ea045568915ec7d10265aa46264d7ea53cdc063]

dr73: #i109570# fixed a typo


2010-03-02  Niklas Nebel  <nn@openoffice.org>  [9e63ae494510137aa9fa1c72f8d36ae7e42af53c]

#i109350# use ScUnoHelpFunctions::GetEnumFromAny for Function property again


2010-03-02  npower Developer  <npower@openoffice.org>  [2e6f19accc5fb53b4aceace40d59aa5581ae6f70]

npower13_objectmodule: #i109734# object module stuff


2010-03-01  npower Developer  <npower@openoffice.org>  [4c5de6bc2e0e722b6452774a99d597e443c9c8b6]

npower14miscfixes: #i109706#


2010-03-01  Thomas Benisch  <tbe@openoffice.org>  [5dd9ae27f2dbc8983d8650d5480647ff8c1bbed3]

chartshapes: merge with DEV300_m72


2010-02-26  Kohei Yoshida  <kyoshida@novell.com>  [7f13b4c601eafaeb92c1d3712a20df9f58f7e5f0]

calctabcolor: Fixed a build breakage by adjusting for the svx split.  Some headers have moved to editeng.


2010-02-26  Kohei Yoshida  <kyoshida@novell.com>  [3a94561bae7c825ea9b0fda580c483c6ae3a6c47]

calctabcolor: #i109365# Removed some of unused methods.


2010-02-26  Kohei Yoshida  <kyoshida@novell.com>  [15bd4c2b379ad57d4af3050fa0bcdadc463d8ade]

calctabcolor: Fixed a build breakage due to the svx split.


2010-02-26  npower Developer  <npower@openoffice.org>  [8f4b223e12ff82507aab339579b4be34f0deb1f8]

npower14miscfixes: #i109644# don't load vba stuff for odf document ( untill you go into vbamode in basic )


2010-02-26  Kohei Yoshida  <kyoshida@novell.com>  [7bfca35105ab5320ad69d693684e6d6a2b3358b8]

calctabcolor: resynced with the repository to get more recent changes in.


2010-02-26  Kohei Yoshida  <kyoshida@novell.com>  [42dc12206956b6c4a5444af80c1663bc94fba3f7]

calctabcolor: rebased to m72.


2010-02-26  Ingrid Halama  <iha@openoffice.org>  [c117f3018cdd4f78102dc30e836d9f16732e73e6]

chart43: merge with DEV300_m72


2010-02-26  Thomas Lange [tl]  <tl@openoffice.org>  [b318aed0ef0174071fce27c57a015b4a8f85a50d]

cws tl74: merge with DEV300_m72


2010-02-25  Ingrid Halama  <iha@openoffice.org>  [6bd9012210a4ad276075f65fd8a996ff8241f918]

chart43: merge with DEV300_m72


2010-02-25  sb  <sb@openoffice.org>  [c959e24ddee22e6232df8d8c727ff228c068b4f0]

sb118: merged in DEV300_m72


2010-02-25  Ingrid Halama  <iha@openoffice.org>  [f7592b3e65b91cb35b3a53532f64481f4303a7e9]

chart43: #i109594# floor too thick


2010-02-24  Ingrid Halama  <iha@openoffice.org>  [af8789bc94acf4d51b28923f8719c5ab88809c1f]

#i109566# floor is too large for bar charts with multiple series


2010-02-24  Eike Rathke [er]  <erAck@sun.com>  [dfc1fc6c1933389d1e963ca919db30c74550764c]

calcfilterrange: #i109553# #160403# for filters (AutoFilter, StandardFilter, AdvancedFilter) shrink selected area to used data area and expand single selected row down to end of data


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [d25fb62226dc8b86120e92a1f417efce95a331c1]

calctabcolor: Moved 'TabColor' name definition to a more appropriate place.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [f10c26ac30a7a04a8a34db18d039e88b6dcce032]

calctabcolor: Various code cleanups...


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [46cb4861c8b35369fae4a5e29c9ecc5b3e6e22be]

calctabcolor: A little cleanup


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [8683bac180ddbe6734ea6706258b8593fddd7f44]

calctabcolor: Squashed another unused variable.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [4b4bfead08da97020939905bb7417af7ede25281]

calctabcolor: Initialize a variable, to keep buildbot happy.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [c71e97364643a655bbb9840a544a1bcefd3225dc]

calctabcolor: Removed excessive invalidation during undo redo; tab color change doesn't equal data change.  Let's not broadcast any data changes.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [653fde44e54cb13078a20e7ac8314941c6db21e2]

calctabcolor: Further simplified the undo class for setting tab colors.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [fd72738f6bb8bed20937fef0c245f100e0a2b7a0]

calctabcolor: Cleaned up a bit.

1) Keep the name of a struct shorter.
2) Data members should start with an 'm'.

that sort of stuff...
2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [6ae57261d8556e5799130589bac059f3b3532e46]

calctabcolor: No need to declare the tab color list variable in parent scope.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [b11294d6c900eac893bff93d70490dd4e0c75724]

calctabcolor: Use STL's container instead of using an internal List.  We should avoid using List at all cost!


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [6b5962fa71db4253202775a2bae62df297a5c732]

calctabcolor: Check for NULL, and return NULL not FALSE because the function's return type is a pointer.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [f5df90a26dd981352e1cc27b559bc82e5bd4f35c]

calctabcolor: More tab to whitespace conversions & removed those ugly "Added by ..." markers.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [7565d84071ab31729adcf45df137eea63744d29f]

calctabcolor: Fix a crasher; don't forget to check for NULL pointers.

The Tab color would crash when you clicked on the Help button to launch the
help window, then closed.
2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [51314406e0e43a92c17b703734abf8604d889e3b]

calctabcolor: Tab to whitespace.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [8036122f25e1f2411c48972b30720ca0b6559356]

calctabcolor: Use static constant values instead of macro define for more type safety.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [b4a014327c247137b8838fdedc19280c70527d03]

calctabcolor: A blank line.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [d284ba79b0c814d92276439c6255e0fcd7a5cc31]

calctabcolor: Reduce indent levels by early bailout.


2010-02-23  Kohei Yoshida  <kyoshida@novell.com>  [27871d117701302ebea90a601905be34624c5e0d]

calctabcolor: Switch to using style:table-properties to store the tab color, as discussed on the ODF TC's mailing list.


2010-02-23  Ingrid Halama  <iha@openoffice.org>  [a3cd777072396ed8d8039f6cc90816d0945f2ee8]

#i78934# revert test change for thickness of cylinders as they do overlap currently


2010-02-23  Ingrid Halama  <iha@openoffice.org>  [4badaccf8ec5dbd8879d9a23dbf30aae605d2191]

#i78934# changed default illumination for better shading and more neutral colors


2010-02-23  Ingrid Halama  <iha@openoffice.org>  [98c820c9e588c3b69cb832d346c0e90cf16d9d4e]

#i78934# changed geometry for cones, pyramids and cylinder for better shading


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [1993f4fd950660a730d387346d4f00d5113360e9]

calctabcolor: Reworked Excel import/export to get them to work.


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [d87e5ac5e43d30686bb48a0dea43f296a43daa5d]

calctabcolor: Tab color is an attribute for extended ODF 1.2.  Treat it as such.


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [1c73e165c5d6be15ac8ca180099d53cbbc79cb8c]

calctabcolor: Changing a tab color should set the stream invalid, in order to save the tab color attribute to the sheet during export.


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [3ba1aab36a6f561dec5cb658f0797236a6e4ee88]

calctabcolor: Import tab colors from ods.


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [90e1baf1c6076fbb0ef787ae3b2f7576fb156b2c]

calctabcolor: Export tab colors to ods via UNO's property.


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [2308b2759401615a1449819324c20163de5b0a2a]

calctabcolor: Import tab colors from view settings in case the documents store tab colors as view settings.


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [c372247ffdc08f833ee1d0a8ba8e7ae8cfd711ba]

calctabcolor: Entirely removed storage of tabcolor from ScViewDataTable.


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [f8e96e8bed1ae031a319a71ea9abaab86763f8f7]

calctabcolor: BOOL to bool.


2010-02-22  Kohei Yoshida  <kyoshida@novell.com>  [db9615eec951ef8ee97529d1399b9b5a403b14d6]

calctabcolor: Added data member to ScTable to store tab color.


2010-02-22  sb  <sb@openoffice.org>  [415ba9933e959bd88aafa954643bc12ba8e1a576]

sb118: #i109517# disabled unoapi tests affected by that issue


2010-02-22  sb  <sb@openoffice.org>  [9998b71ccd5792b2b20950efb2234a5a87419dec]

sb118: #i109512# do not operate on invalidated iterators


2010-02-19  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [5d973268d2b1835f151c0230e260adf9d58c5d2b]

Automated merge with ssh://hg@hg.services.openoffice.org/cws/dba33e


2010-02-17  Ingrid Halama  <iha@openoffice.org>  [b25e5dbb84dae8d3bea3c83bc38857c00f8bd235]

chart43: #i109371# defect legend after switching from pie to bar chart via API


2010-02-17  Thomas Benisch  <tbe@openoffice.org>  [b0b421c6dcb93db7e1081b055db2bf419b768f1d]

chartlayout: merge with DEV300_m71


2010-02-17  Thomas Benisch  <tbe@openoffice.org>  [1a7f91877e99772e5381bbbf1d7399ebb0dbd3e6]

chartlayout: #i109336# Improve auto positioning in chart


2010-02-17  Vladimir Glazunov  <vg@openoffice.org>  [315cc25e3f1ec5ee7c0adb5b8e51b036d54b603a]

CWS-TOOLING: integrate CWS changefileheader2


2010-02-17  Kohei Yoshida  <kyoshida@novell.com>  [7bda65ff163feb3678846fa7f01bb261765a9dec]

calctabcolor: merged from the repo.


2010-02-17  Kohei Yoshida  <kyoshida@novell.com>  [362e2eda44ff0e9218745e6e5095de832b49f77f]

calctabcolor: rebased to m71.


2010-02-16  sb  <sb@openoffice.org>  [bf3d73ef36f29380685ce592b272c3283ec0fd2f]

sb118: adapted remaining */qa/unoapi tests to new framework


2010-02-16  sb  <sb@openoffice.org>  [2bd564bf854ea632cf3d0bd78ddc620ca5483ce4]

sb118: handle --without-junit gracefully


2010-02-15  Vladimir Glazunov  <vg@openoffice.org>  [c930185f68b483c6ffe12b5f31c4ffb524784516]

CWS-TOOLING: integrate CWS cmcfixes71


2010-02-15  Ingrid Halama  <iha@openoffice.org>  [8a9d96d4cdb97c6f6b83353ccf02d971cde28a6d]

chartmultiline: compiler warnings


2010-02-12  sb  <sb@openoffice.org>  [db2877c55244da8a6b0764bba59f1c5f36805ec0]

sb118: chart2/qa/unoapi to new test framework


2010-02-12  Vladimir Glazunov  <vg@openoffice.org>  [68bb4c0307a4297e5a7d935459eb2b8f4868cc3c]

CWS-TOOLING: integrate CWS kohei03


2010-02-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [ccbdeff63641f7b20d10a1b83ce8d4eb6c1c6a0c]

changefileheader2: #i10000#: convert files with CR/LF characters to CR only


2010-02-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [3253a7b54dbd5d2bd98dc055c6b4d540862e4f28]

#i10000#: remove obsolete empty files; trim duplicated header content


2010-02-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [f789f423c79cb68fdf253cbc0291139436e80ec8]

changefileheader2: #i109125#: change source file copyright notice from Sun Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)


2010-02-12  Thomas Lange [tl]  <tl@openoffice.org>  [244825e2cbfb9781b18e0ecbfc4b964ab646cbcf]

cws tl74: merge


2010-02-11  Kohei Yoshida  <kyoshida@novell.com>  [b8e20eb1ed49f646514836352ea7c8fe440115b4]

koheiextref01: #i109168# Reworked the design of the external cache table.

With this change, the cache table no longer stores empty cells at all,
with no exceptions.  Instead, it keeps track of cached ranges to determine
whether a cell is empty or unretrieved.  This change also helps simplify
the logic of getting the value of an external cell.
2010-02-11  Ingrid Halama  <iha@openoffice.org>  [c24b0f4f61a02f3f82006389c2e5e1ce51565242]

chartmultiline: #i82971# complex categories (#i109161# range segmentation detection fails for discontinuous ranges)


2010-02-11  Niklas Nebel  <nn@openoffice.org>  [85fee43f4459f6aed5e0a85d2e6610bdb28d7a3a]

datapilotperf: fix buildbot errors


2010-02-10  Ingrid Halama  <iha@openoffice.org>  [10c6b382e7aee81e4dc8a627319db8d8ac4144f4]

chartmultiline: #i82971# complex categories (#i109100# listbox for categories is empty in YAxis format dialog)


2010-02-09  Kohei Yoshida  <kyoshida@novell.com>  [76b4a6bdea2ff0269cbbbcb804f008d151ca7da7]

koheicsvimport: #i102141# Use the global 'use US English' option only when the Automatic language option is selected.


2010-02-09  Ingrid Halama  <iha@openoffice.org>  [b32bcad2b1052b84a25d93ea59b4c73e3d141120]

chartmultiline: compilerwarnings


2010-02-08  Niklas Nebel  <nn@openoffice.org>  [f94c03b9cc8304bef3611c33841d104241fafd80]

datapilotperf: #i109057# don't set subtotal function as display name


2010-02-08  Niklas Nebel  <nn@openoffice.org>  [0e56b6c9d776eca72ebff7c745151ffa01a776a9]

datapilotperf: do nothing in RefreshCache for external service


2010-02-08  Niklas Nebel  <nn@openoffice.org>  [6b102075c1ae403942cfcd83be1ff9b192bf921f]

datapilotperf: compile without warnings


2010-02-08  Niklas Nebel  <nn@openoffice.org>  [d7dfca6184ceb8ae4a3bf727565ef3075a1e5213]

datapilotperf: don't clear undo history in RecalcPivotTable


2010-02-08  Niklas Nebel  <nn@openoffice.org>  [d00ef4d412da2fd59730b5479003a5f6416b4e3c]

datapilotperf: RefreshDPObject, copied from svn revision 277984


2010-02-08  sb  <sb@openoffice.org>  [d32a60fe287e6a362e78fa26d1f759957408dc70]

sb118: merged in DEV300_m71


2010-02-05  Niklas Nebel  <nn@openoffice.org>  [7e8f7c914fc5db17d9a8d5dcda2335c82d23e285]

datapilotperf: GetMemberById instead of GetMemberByIndex, so it works with groups


2010-02-05  Niklas Nebel  <nn@openoffice.org>  [43503fe210c02cf62ffb06fdd51e381714a2a287]

datapilotperf: #i108928# crash in show details dialog (moved from kohei04)


2010-02-05  Niklas Nebel  <nn@openoffice.org>  [eed29bd1b350011ebc2170a891de43443d411a0d]

datapilotperf: adapted to m71


2010-02-05  Vladimir Glazunov  <vg@openoffice.org>  [ad29ee75ae721392632cfd24c232e3e9ec80c4c8]

CWS-TOOLING: integrate CWS svxsplit


2010-02-05  Mathias Bauer  <mba@openoffice.org>  [5a1c1ea924900ca28d79c38b5b51ec4f44c0e92b]

cws svxsplit: some corrections after merge


2010-02-04  Niklas Nebel  <nn@openoffice.org>  [945ca4914ae950aaac8b452a1655fa7081dcb5a0]

datapilotperf: merge with DEV300_m71


2010-02-04  Mathias Bauer  <mba@openoffice.org>  [1a3778e9ab62f113094b7a4de171fe55478086f1]

CWS svxsplit: merge with m71


2010-02-04  Ingrid Halama  <iha@openoffice.org>  [b37582e528565114bda4ed5400d0acb5e445380e]

chartmultiline: #i82971# complex categories (part8 - change assignment of leading empty cells)


2010-02-04  Vladimir Glazunov  <vg@openoffice.org>  [3554f1e3e0bdfa936ecd49f7d3b4c93be59b8c43]

CWS-TOOLING: integrate CWS ab71


2010-02-04  Niklas Nebel  <nn@openoffice.org>  [8f7c0c33a40c0ea31f12ecf007eb18540f5d9347]

datapilotapi: #i108948# use ScUnoHelpFunctions::GetStringProperty for new property LayoutName


2010-02-04  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [7fd0a5d65a1487111f2c47118cbedd5873547bb5]

autorecovery: commit resolved merge (after rebase to m71)


2010-02-03  Kohei Yoshida  <kyoshida@novell.com>  [0f56496f7af825d61a0d8e61acd1fd08f5afaa5d]

kohei04: #i108928# fixed a crasher.


2010-02-03  Kohei Yoshida  <kyoshida@novell.com>  [32643c73e1ccb3df74c35695f7097f1b3baf22ec]

rebased to m71.


2010-02-03  Kohei Yoshida  <kyoshida@novell.com>  [4e8ed738a767552c66552c6e61ed0c2386c0b6d2]

rebased to m71.


2010-02-03  Niklas Nebel  <nn@openoffice.org>  [7a25fc8ea701b6a8c0592720bc7438dcb97886aa]

datapilotperf: manual migration of changes by Wang Xu Ming from svn to hg


2010-02-03  Niklas Nebel  <nn@openoffice.org>  [7dd301b3262923ed7180450dabb84a2f00fd69dc]

datapilotapi: merge with DEV300_m71


2010-02-03  Caolán McNamara  <cmc@openoffice.org>  [a6b2b501f11df50ace212341d1fd57248b1025c9]

cmcfixes71: merge with DEV300 m71


2010-02-03  Ingrid Halama  <iha@openoffice.org>  [78d5d6c10f2ff93eaeaf6ed7f032c9d1793b5b40]

chartmultiline: #i108907# columns are to small for default labels


2010-02-03  Christian Lippka  <cl@openoffice.org>  [b826ebbe13fcd74d7ccf20831148e81366e7f885]

hg resync m70


2010-02-01  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [43f5391aaa3eca34a7dc919212d29e61bbee9c73]

autorecovery: more sophisticated configuration data for interaction handlers The generic css.task.InteractionHandler implementation in module uui is now able to instantiate "sub handlers", i.e. components to delegate a request to, based on the type of the request, and some configuration data.

The "old" (and now deprecated) configuration scheme at org.openoffice.ucb.InteractionHandler did not contain type
information, so any handlers registered there were always called when no default implementation for a given request
was available.

The "new" configuration scheme at org.openoffice.Interaction contains UNO type information. That is, a given handler
implementation can declare itself responsible for an arbitrary set of UNO types, and for each of those types, whether
it is also responsible for sub types.
The generic interaction handler implementation uses this configuration data, when it encounteres an interaction
request it cannot fullfill itself, to instantiate a component to delegate the request to.

As with the "old" data, such a component is required to support the css.task.XInteractionHandler2 interface. Also,
if it supports css.lang.XInitialization, then it will be initialized with a name-value pair, the name being
"Parent", the value being the XWindow interface of the parent window for any message boxes.

As an examplary implementation for this feature, the css.sdb.InteractionHandler has been deprecated. Now the
css.sdb.DatabaseInteractionHandler is reponsible for database-related interactions, and the new configuration scheme
is pre-filled with data assigning this responsibility.

Consequently, a lot of places previously creating an css.sdb.InteractionHandler have been modified to create the
default css.task.InteractionHandler.
2010-02-01  Ivo Hinkelmann  <ihi@openoffice.org>  [64666f2a50a08fa43c5c83ed000bdecc26d72740]

#i10000# removed include


2010-01-29  Kohei Yoshida  <kyoshida@novell.com>  [e58f88df2f031d5b4278974df62f11f86a63d0ef]

rebased to m70


2010-01-29  Kohei Yoshida  <kyoshida@novell.com>  [4d03926ff0c816548e3724cf2fdc61797cf3fc6c]

koheicsvimport: #i108756# Fixed the tab order of controls in the CSV options dialog.


2010-01-29  Kohei Yoshida  <kyoshida@novell.com>  [6e1410795e2ef48fe9b5eddb3d3dae3670f219a6]

koheicsvimport: #i108754# Follow up to my previous commit.

We need to ignore the execute() call when exporting to an html document.
My previous change caused the character set dialog to show up during
html export, which was not correct.
2010-01-29  Kohei Yoshida  <kyoshida@novell.com>  [d9c7ecca78392b20bfa0da48c43f3f48f10f80c5]

koheicsvimport: #i108754# Make sure that the html options dialog won't get launched on export.

BTW, with this change, the character set dialog gets launched on html export instead.... :-/
2010-01-29  Kohei Yoshida  <kyoshida@novell.com>  [395cef9ec9b2bc2219d099a571c462cb4557e7a7]

koheicsvimport: #i108755# Moved the new check boxes to the left by 9 pixels.

They should be aligned with the "Separated by" radio button.
2010-01-29  Ingrid Halama  <iha@openoffice.org>  [4164680b9c359174f0ee1e27ccfc89aa43c9c1c9]

chartmultiline: fixed compiler warnings


2010-01-29  sb  <sb@openoffice.org>  [9c59df52cb936e905249783c72a8667a54ae77f4]

sb118: #i108776# changed addsym.awk to also export STLport num_put symbols, and simplified it by requiring that first section is labeled UDK_3_0_0; adapted map files accordingly, replacing many individual ones with solenv/src templates


2010-01-29  Kohei Yoshida  <kyoshida@novell.com>  [11c949cd4ef31670099a62f78bb0022ac2dcdd8b]

koheicsvimport: #i108754# Call FreeResources() in the ctor & remove textimportoptions from LIB1OBJFILES.


2010-01-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [0b2a5c8d1a41700496755e2922d38169b9febd67]

ab71: merge with DEV300_m63


2010-01-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [59cfcb6475349527d0ea6bd6b99d8d0cdb91f28f]

ab71: merge with DEV300_m54


2010-01-29  Ivo Hinkelmann  <ihi@openoffice.org>  [605ee852c77129661a7d60f1fbab3543193a3009]

CWS-TOOLING: integrate CWS koheidatapilot03


2010-01-29  Ivo Hinkelmann  <ihi@openoffice.org>  [ceca813f0c5f174ddae44797e9a1a5318036fa14]

CWS-TOOLING: integrate CWS dba32z_DEV300


2010-01-29  Ivo Hinkelmann  <ihi@openoffice.org>  [147012dcff0ef99865a21200a6a34722f191a12d]

CWS-TOOLING: integrate CWS chart32stopper_DEV300


2010-01-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [385075c256d69ec85eb454171f30a23c776a38e4]

koheidatapilot03: merge with DEV300_m63


2010-01-28  Ingrid Halama  <iha@openoffice.org>  [e5bebb2f9d3642c47e2cbdbda54cc05760154d60]

chartmultiline: merge with DEV300_m70


2010-01-28  Ingrid Halama  <iha@openoffice.org>  [d79563957faa9a96c6d97046edc469e17e06b028]

chartmultiline: #i82971# complex categories (part7 - add toolbox item for insertion of a complex category column within the chart data table )


2010-01-28  Ingrid Halama  <iha@openoffice.org>  [37a56f8fb1b465b0e336e5cdbc36b826f0c95e0c]

chartmultiline: #i82971# complex categories (part6 - allow editing of complex categories within chart data table )


2010-01-27  Kohei Yoshida  <kyoshida@novell.com>  [bf7748b5b236cba3d47790224bd7db31d73f5665]

branch merge


2010-01-27  Kohei Yoshida  <kyoshida@novell.com>  [66aee6949d479afcebbf561f452335c7d95b1e2e]

kohei03: #i104769# Fixed the chart update problem for real.

My previous fix was not sufficient.  I forgot to:
1) set the "used" flag to the listener when inserting it, which caused
   the listener to get removed right after it was inserted.
2) Set all chart objects "dirty" upon import.  Because of that, the
   timer didn't start when the document initially loaded.
2010-01-26  Ivo Hinkelmann  <ihi@openoffice.org>  [80d35c0eaf9fc8aea71f68ba10870445c8c1f6ce]

CWS-TOOLING: integrate CWS impress181


2010-01-26  Daniel Rentz  <dr@openoffice.org>  [54dc94905dc205ff8a57b46409d895134291a83c]

#i108547# allow modifications in readonly document when loading msooxml


2010-01-25  Kohei Yoshida  <kyoshida@novell.com>  [b2abcb023cefd3a2446e8778de528abe75750635]

koheicsvimport: #i108645# Store the dialog parameters only when the OK is pressed.


2010-01-25  Thomas Benisch  <tbe@openoffice.org>  [6057b06769d3889a99ffc134f51b6739d378bc2c]

chartshapes: #i12587# line styles are not saved


2010-01-23  Caolán McNamara  <cmc@openoffice.org>  [9b66d72ad19dcb4068377541f47523221bcacc97]

cmcfixes71: #i108597# fix uninit warnings


2010-01-22  Thomas Benisch  <tbe@openoffice.org>  [7bfe5d62b57f186e0bb51c92113c75a8a7aad704]

chartshapes: #i12587# line styles are not saved


2010-01-22  Thomas Benisch  <tbe@openoffice.org>  [0f62eb84ef9ea562c7cf54efeb97ffef5e6e424b]

chartshapes: #i12587# line styles are not saved


2010-01-22  Ingrid Halama  <iha@openoffice.org>  [16c824b8279158c7c98c10939bb40ff3a7e3f71c]

chartmultiline: #i82971# complex categories (part5 - correct limiting space causing text break)


2010-01-22  Ingrid Halama  <iha@openoffice.org>  [5eea02583f6064daf4055c21d0aa4696514d7f61]

chartmultiline: #i82971# complex categories (part4 - detect complex categories when creating charts from cell ranges and when detecting the arguments later (adapt implementation of XDataProvider->createDataSource & detectArguments) ) + #i86188#


2010-01-21  Mathias Bauer  <mba@openoffice.org>  [cc7e1af06dbd01e3c6ded44e0774599eea901951]

resync to DEV300_m70


2010-01-21  sb  <sb@openoffice.org>  [22f3bf34e207166cd4493a5386c463ccaa3decad]

sb118: merged in DEV300_m70


2010-01-21  Frank Schönheit  <fs@openoffice.org>  [5f5627b03d8381162cdcda82262df0ef4857b885]

copying nn's fix from CWS dba321a herein, original commit comment: #i108488# #i108512# don't remove SC_MF_SCENARIO in ScAttrArray::InsertRow, block-wise skipping in zip stream


2010-01-20  Kohei Yoshida  <kyoshida@novell.com>  [21ceb03071fa9ba016df47f3a0882f2b370f09af]

calctabcolor: removed compiler warnings.


2010-01-20  Kohei Yoshida  <kyoshida@novell.com>  [27a085bbfbb48e0666478afcde4f4f24c96bfe91]

calctabcolor: pathoptions.hxx moved from svtools to unotools.


2010-01-20  Niklas Nebel  <nn@openoffice.org>  [6c82ade8526327ebb255b99ba29d214b7c6c24d4]

 #i108488# #i108512# don't remove SC_MF_SCENARIO in ScAttrArray::InsertRow, block-wise skipping in zip stream


2010-03-31  Daniel Rentz  <dr@openoffice.org>  [29af3fbec22028549ed404c7923d2fbd33c75849]

calc321stopper1: #i109372# reintroduced default values for arguments


2010-03-31  Daniel Rentz  <dr@openoffice.org>  [56a9377c1633aed9b5f776f2fd3d97d97325a544]

calc321stopper1: #i109372# on insert/remove rows/columns/cells: do not update cell position in note caption data before the cells have been moved in the document model


2010-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [bba639466f6af68db64311b9cc66a53c3147388e]

CWS-TOOLING: integrate CWS dtardon02


2010-04-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [a6f63a6597dd913ee02f478ce1f96c34a445f619]

CWS-TOOLING: integrate CWS writerfilter07


2010-04-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [c691944cb23b22a0e585a92edb1a8a8c0e40971f]

CWS-TOOLING: integrate CWS dr75


2010-04-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [4dce57e1fe918ac4084969b3503f6f782dd6c934]

CWS-TOOLING: integrate CWS dr74


2010-03-23  Henning Brinkmann  <hbrinkm@openoffice.org>  [1ab30fa758cd79cc933c0cd7175c8debc70c5f2b]

writerfilter07: merged DEV300_m75


2010-03-12  David Tardon  <dtardon@openoffice.org>  [60915f171b4a5e76043f55b99bdc5f6bfce81940]

dtardon02: #i108503# #i108505# #i108507# #i108508# #i110035# clean up makefiles and #includes


2010-03-11  David Tardon  <dtardon@openoffice.org>  [8a1826f912425d28c1f9df829fc79c154d9e3414]

dtardon02: #i108503# remove empty files in sc


2010-02-12  Henning Brinkmann  <hbrinkm@openoffice.org>  [e7e68430fe6bcd786e6935021017bb042464903f]

writefilter07: merged DEV300_m71


2010-01-27  Daniel Rentz  <dr@openoffice.org>  [da90e03dc66535d8d06937ce3cf1628c6f93e240]

dr75: rebase merge


2010-01-27  Henning Brinkmann  <hbrinkm@openoffice.org>  [d96beb53f91f7bf001b9090e29449c2242261669]

writerfilter07: merged DEV300_m70


2010-01-26  Daniel Rentz  <dr@openoffice.org>  [b165f9516b697c6c88448f2f6b89f1287f3aaec0]

dr75: #i93948# correct position of checkbox in DataPilot field options dialog


2010-01-20  Kohei Yoshida  <kyoshida@novell.com>  [59de4aa3d5afbd48488a9867fd44ad77a0f9c55c]

koheicsvimport: more static_cast's to keep MSVC compiler happy.


2010-01-20  mb93783  <mb93783@v60x-so15.Germany.Sun.COM>  [7320ab91a63195413ee690d235894df188b35bfe]

#i107450#: some missing line ends


2010-01-19  Kohei Yoshida  <kyoshida@novell.com>  [852036f85921980c0703f67ee4b38c35e088e20f]

koheicsvimport: remove warning on Windows.


2010-01-19  Kohei Yoshida  <kyoshida@novell.com>  [2e4b3273aacbea001e67d861d11981843367bbae]

rebased to DEV300_m69.


2010-01-19  Kohei Yoshida  <kyoshida@novell.com>  [8a304cddea233f679bb8578c9591b1117123087a]

Rebased to DEV300_m69.


2010-01-19  hb  <hbrinkm@openoffice.org>  [49ca72e713b15fefd20e338769e09e11f2e3ac26]

merged DEV300_m69


2010-01-18  sj  <sj@openoffice.org>  [2b782b6ecc96d6f7e50e69f94781cb8d3525b9fc]

#i108328# fixed textorientation problem


2010-01-15  Daniel Rentz  <dr@openoffice.org>  [0dc5de73887c9bcb9a6f2e2a27c0fdd4259d69d6]

chartpositioning: #i86609# BIFF8 export of manual title position


2010-01-15  Mathias Bauer  <mba@openoffice.org>  [baf1eacdf3a2238a5685abddd9e7388ecb6556c5]

#i107450#: warning on unxmacxi fixed


2010-01-15  Kurt Zenker  <kz@openoffice.org>  [bdb66f32bdfa2ab9e5eb4751b64b13d8828cb5bb]

CWS-TOOLING: integrate CWS printerpullpages


2010-01-15  Kohei Yoshida  <kyoshida@novell.com>  [43b9b50b71af9972f1f09364e7a6c205d12e05d0]

kohei04: rebased to DEV300_m69.


2010-01-15  Thomas Benisch  <tbe@openoffice.org>  [b55ffba82b61ce265b8a56607451c90f817105aa]

dr75: #i101099# [Collaboration] Changes are not correctly shown


2010-01-15  Kurt Zenker  <kz@openoffice.org>  [80f450df6fbc81482c8d63e53b329593d0423aec]

CWS-TOOLING: integrate CWS fwk120


2010-01-15  Kurt Zenker  <kz@openoffice.org>  [3966a5adaf9804a7e8c297d2d91b28405e239b2f]

CWS-TOOLING: integrate CWS dba33b


2010-01-15  Daniel Rentz  <dr@openoffice.org>  [4e9752ec0eef2b7fd63b6231c63e79df2242f38f]

dr74: merge with DEV300_m69


2010-01-15  Daniel Rentz  <dr@openoffice.org>  [c8da47976e87c6953b80f5a833845983a0f2656a]

dr74: migrate changes to hg


2010-01-15  Ocke Janssen [oj]  <Ocke.Janssen@sun.com>  [53e047a535428c0a4a3534b8c23b9cc41292a152]

dba33b: merge


2010-01-15  Ocke Janssen [oj]  <Ocke.Janssen@sun.com>  [4fd96c6398d2502201cc21d8f4163804cb882ad9]

dba33b: merge m69


2010-01-15  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [497ff2f88adfe43ff8c6004862229f9982470404]

solve some merge problems


2010-01-14  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [002b5b5855ec3649a15819faae9fde9bc6bddabf]

undo previous erroneous change, solar.hrc belongs to svl instead vcl now


2010-01-14  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [67dbe5e49b8275f7d5c70da987bd9f86aadb0b19]

rebase to DEV300_m69


2010-01-14  Kurt Zenker  <kz@openoffice.org>  [ba21106efe15df35e3a8e5fd9028b91c1907d19b]

CWS-TOOLING: integrate CWS calc32stopper8_DEV300


2010-01-14  Daniel Rentz  <dr@openoffice.org>  [37de0ddef9d5e681a5de8991117f9a7b8e5770a3]

chartpositioning: #i86609# more work on importing chart title positions


2010-01-14  Ingrid Halama  <iha@openoffice.org>  [17799ea97423ef4ec80a54db572423f8b5ebf1a4]

#i108122# data label from categories crashes office when having no categories


2010-01-14  Ingrid Halama  <iha@openoffice.org>  [29e1ea0ced10e53503330bd1df6e1245bc9adae1]

#i108313# & #i108281# pie charts without series crashes office


2010-01-13  Mathias Bauer  <mba@openoffice.org>  [f9c48f3dba5accc237678a257596c5dd2e079a36]

#i107450#: move more code out of svx


2010-01-13  Niklas Nebel  <nn@openoffice.org>  [30dd1b81c14ef7b91a4f647f597a21671dd2c1cc]

datapilotapi: #i108295# XModifyBroadcaster in ScDataPilotTableObj


2010-01-13  Ingrid Halama  <iha@openoffice.org>  [3b156feb946859894ebf4cceadfa8d0362aa4c43]

chartmultiline: #i82971# complex categories (part3 - complex categories for internal data + load/save + copy/paste) + cleanup


2010-01-12  sb  <sb@openoffice.org>  [e49328add2fd1aeed93dde25426c5cf1d126d09d]

sb118: #i108269# first step of removing tcsh support


2010-01-12  Daniel Rentz  <dr@openoffice.org>  [5a9cf3fffc804e6c046ba71210e289a73bb584f4]

kohei03: #i10000# compiler warning


2010-01-12  Daniel Rentz  <dr@openoffice.org>  [f41dc7d11a6c47b95a0ed25c957078f3a4081254]

kohei03: #i10000# compiler warning


2010-01-12  Daniel Rentz  <dr@openoffice.org>  [13f3b7fd0123cb6debea03516c1e2a7e7969e096]

kohei03: #i10000# compiler warning


2010-01-12  Thomas Benisch  <tbe@openoffice.org>  [f7a496fa83abe52bc4bb5b18e2e945773857f585]

dr75: #i100423# Formula input into cell range fails if parentheses are highlighted


2010-01-09  Mathias Bauer  <mba@openoffice.org>  [688f5b4161bd5dc6192d1b99cbb3a6f7ba41ed14]

#i107450#: error in pch file


2010-01-09  sb  <sb@openoffice.org>  [601115e5facf892c5355927daa4030297685450b]

sb118: merged in DEV300_m69


2010-01-08  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [2b828a689867f54c66c84d2841a0ea04be61a42a]

autorecovery: merge after rebase to m69


2010-01-08  Mathias Bauer  <mba@openoffice.org>  [86d09706a82ceedc22810137bdd0356c0c557515]

#i107450#: build all other modules with new editeng lib


2010-01-08  Daniel Rentz  <dr@openoffice.org>  [4b6077b6d1596a18f0796178a7bfcaa5a557978a]

chartpositioning: #i86609# set correct plot area size for pie charts


2010-01-08  Kohei Yoshida  <kyoshida@novell.com>  [801a6be88363a770cea2bf960a58e93340ca2a36]

kohei03: Removed a meaningless line.


2010-01-08  Kohei Yoshida  <kyoshida@novell.com>  [033b163619df463cb2265a44d72d38390169530a]

kohei03: A little more change to keep MacIntel happy.

There were still some parts that were illegally accessing private members.
I hope this commit will finally eliminiate all of such cases.
2010-01-08  Kohei Yoshida  <kyoshida@novell.com>  [d2e3ac53c803b0e8ff2593d1ce678ad854aebc28]

kohei03: removed compiler warnings on windows.

On Windows, we apparently build with warnings as errors, so these warnings
caused the build to fail in sc.  Hopefully this commit will rectify that.
2010-01-08  Kohei Yoshida  <kyoshida@novell.com>  [8967e3cdb373e54751fa3f1275bd7b62e5b83dab]

kohei03: Fix a build breakage.

Apparently some headers have been relocated from svtools to svl.
2010-01-08  Ingrid Halama  <iha@openoffice.org>  [a48c55f1c72686c4c73d4fdb8ffe789a96ddb9ec]

chart43: #i108122# data label from categories crash without categories


2010-01-08  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [303f3cf05734a0b4dabe7293bc8037f9f8998957]

autorecovery: need to compile some files (which indirectly include sfxbasemodel.hxx) with exception support


2010-01-07  Kohei Yoshida  <kyoshida@novell.com>  [bdc5a09defa9ce72e642acb13341daba62471e50]

kohei03: Worked around a build error on MacIntel.

The version of gcc that Mac uses does not grant private access to
friend classes from a nested class, even though its parent class
has friend privilage to that class.  I worked around it by having
the nested class call functions of its parent class in order to
access private members of ScColumn/ScTable/ScDocument.
2010-01-07  Kohei Yoshida  <kyoshida@novell.com>  [3f1ac2e3c881a55cf00280f65501d87b31083e04]

kohei03: Some code cleanup.

Mostly tab to whitespace conversion.
2010-01-07  Kohei Yoshida  <kyoshida@novell.com>  [c0ff2d14400ae8698533d49dabe292c96f091515]

kohei03: rebased to DEV300_m69.


2010-01-07  Kohei Yoshida  <kyoshida@novell.com>  [e98e74438fb8398d6706ed17182670db8598a645]

kohei03: resurrect Daniel's change that was lost during the last rebase.


2010-01-07  Kohei Yoshida  <kyoshida@novell.com>  [9464e1333b09d97573bb8851070c13edd900702f]

kohei03: remove XclExpMMS once again.  It's no longer there in the baseline, but keep XclExpInterfaceEnd because we still need it.


2010-01-07  Daniel Rentz  <dr@openoffice.org>  [6ef13668074583af6c010a36d20eff8270459021]

chartpositioning: #i86609# BIFF import/export of chart legend/plot area positions


2010-01-07  Kohei Yoshida  <kyoshida@novell.com>  [eb512eacc10344f3d4b348e41acc2890d7f271ba]

kohei03: rebased to DEV300_m68.


2010-01-06  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [a671e5c16e13d5e84d3fa82fc52ab0e940b46c7b]

autorecovery: allow creating SFX-based documents which do not support the XDocumentRecovery interface For this purpose, the SFX document factory methods got an additional parameter respectively flag ("DocumentRecoverySupport" resp. SFXMODEL_DISABLE_DOCUMENT_RECOVERY). This flag is used by database documents to remove the interface from sub documents (aka forms/reports). In this course, some of the functionality around those SFXMODELL_* flags, previously duplicated in all applications, has been consolidated into a new SfxObjectShell constructor.


2010-01-06  Thomas Lange [tl]  <tl@openoffice.org>  [9b53707b12d008e94e31cf170e1d77a6b8f2927c]

cws tl74: merge with DEV300_m68; AND Unix LF conversion for some files!


2010-01-05  Henning Brinkmann[hbrinkm]  <hbrinkm@openoffice.org>  [b0d065ada0231e7ff677814f0952d035ec14ea59]

writerfilter07: merged DEV300_m68


2010-01-05  Mathias Bauer  <mba@openoffice.org>  [c5ed2315092536d480e821add08c215ff67833a1]

merge commit for m68


2010-01-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [145dce38af8630b3312e5e2065b32b681d32cc61]

CWS-TOOLING: integrate CWS calc32stopper7_DEV300


2010-01-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [a3cb074800abce2e2623076d8397f84fa1cc12bb]

CWS-TOOLING: integrate CWS sb116


2010-01-04  Niklas Nebel  <nn@openoffice.org>  [2ad51363da95c2e4d63da33dfc4cb39aeeaa62d9]

#i108005# build token array for goal seek with value instead of string token


2010-01-04  Christian Lippka  <christian.lippka@sun.com>  [e24351adc0e457f8d0b867feb7be2c1134a1b4b0]

merging m68


2010-01-04  Christian Lippka  <christian.lippka@sun.com>  [04c03560c3f2c2b510aec68aee9f841426f76d72]

merge to m68


2009-12-21  Ingrid Halama  <iha@openoffice.org>  [20ea3f93bb992269ae2fdb6ee9e899a13b38078b]

chartmultiline: split internal data from internal data provider


2009-12-18  Daniel Rentz  <daniel.rentz@sun.com>  [8a178f3662179217ba3f91a78a4608f0516fd943]

chartpositioning: #i86609# BIFF and OOXML import: object positioning in charts (chart title, plot area)


2009-12-18  Ingrid Halama  <iha@openoffice.org>  [2d38eed2514f4cca9e294ab04c279735892e695e]

chartmultiline: cleanup chart data and impl model stuff


2009-12-17  Eike Rathke  <er@openoffice.org>  [8f575babf9a8e29305e158934261268dd80b351c]

#i107741# HasRefListExpressibleAsOneReference is supposed to detect one reference, really do so


2009-12-17  Henning Brinkmann[hbrinkm]  <hbrinkm@openoffice.org>  [bcc61853c64fd93e1f003caed8bd419c488d5d6f]

writerfilter07: merged DEV300_m67


2009-12-16  Kohei Yoshida  <kyoshida@novell.com>  [2b8dee4dc0f5d748827a9f99dba564862fd3cfe3]

kohei03: #i107729# check for null pointer before de-referencing it.

This prevents a crash on importing xls files with embedded charts that
are formatted in a certain manner.
2009-12-15  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [6647ef2625c047215c667a1770e5fddcc5bd8134]

autorecovery: SfxViewFrame's SfxFrame is a reference now, no pointer (it can never be NULL)


2009-12-15  Mathias Bauer  <mba@openoffice.org>  [4fd0af8621a652989a949922ec41db6167113e86]

#i107706#: liquidate goodies module


2009-12-15  Daniel Rentz  <daniel.rentz@sun.com>  [3c598904d6b7b537f43830d8cf46bf3cd485e41e]

#i107439# BIFF export: write external link data correctly


2009-12-15  Niklas Nebel  <nn@openoffice.org>  [7b470671cb8dd1c9439a77f779ea7ae2206f9717]

#i107694# correct order of source name, object name


2009-12-15  Ingrid Halama  <iha@openoffice.org>  [e71dc60c6a9e02063e8c4fe3bd94e9ad3cdf6465]

chartmultiline: #i82971# complex categories (part2 - hierarchical axis label display)


2009-12-15  Vladimir Glazunov  <vg@openoffice.org>  [560bd7c6144c1b17b25f313d6ea81bb86a66766d]

CWS-TOOLING: integrate CWS jl146_DEV300


2009-12-14  Vladimir Glazunov  <vg@openoffice.org>  [c4fa6c6f7af6167bea78a404f34c40fbe2dde1b6]

CWS-TOOLING: integrate CWS calc32stopper6_DEV300


2009-12-14  Vladimir Glazunov  <vg@openoffice.org>  [5e2a3643fa7d4adb72268c4908c71faaac433f0d]

CWS-TOOLING: integrate CWS os139_DEV300


2009-12-12  Mathias Bauer  <mba@openoffice.org>  [99d84d3ffcf3b8e49df21abbecaf17659d89557b]

#i107450#: changes caused by header cleanup in svx


2009-12-11  Niklas Nebel  <nn@openoffice.org>  [eff71667ee668ea568cbddf4ece87fbacebba818]

datapilotapi: #i42199# API access to all types of DataPilot tables


2009-12-11  Vladimir Glazunov  <vg@openoffice.org>  [08299079a7265c5f175fe5d65727181dda8c0b97]

CWS-TOOLING: integrate CWS fwk129_DEV300


2009-12-10  Mathias Bauer  <mba@openoffice.org>  [14c89ff666d1df3d52cde3dc9b41ee60cd482b98]

#i107450#: move SvxSearchIten to svl


2009-12-10  Mathias Bauer  <mba@openoffice.org>  [61c1c53c2b0a595bb7712c380de37f7875f5e1ea]

#i107450#: remove SdrObject dependency from OutlinerForwarder; EditEnginePool for ItempropertySet of EditObjects; split unoprov.hxx+cxx


2009-12-10  Vladimir Glazunov  <vg@openoffice.org>  [330fbe8d4d2a579b1e89b2e55c6951eb49bec3c4]

CWS-TOOLING: integrate CWS os137


2009-12-09  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [752747e943c7c7d760550fbc0ef679ef930180e8]

dba33b: merge CWS head with head resulting from pulling DEV300_m67


2009-12-09  Vladimir Glazunov  <vg@openoffice.org>  [4757c697ff2c5c5aa2c79ed9591669b25f7a8be1]

CWS-TOOLING: integrate CWS killnonpro


2009-12-09  Eike Rathke  <er@openoffice.org>  [27723585b29d727762cae2d7595507508354bca7]

#i107501# #i107518# ScRange::Parse_XL_Header: reset external doc name if it was none


2009-12-08  Kurt Zenker  <kz@openoffice.org>  [d90bbfeabe782e839d5e443c80c6ed470acd5b7d]

masterfix: #i10000# crash in sc fixed


2009-12-08  Henning Brinkmann[hbrinkm]  <hbrinkm@openoffice.org>  [691993e48e355999385a2b510c5d8647a2d7a5b8]

writerfilter07: merged DEV300_m66


2009-12-07  Thomas Benisch  <tbe@openoffice.org>  [e0db49db64e1f27edd2b49488cbb7f291a04888e]

chartshapes: merge with DEV300_m66


2009-12-07  Thomas Lange [tl]  <tl@openoffice.org>  [8ef4540383e2139f5748c93242e2eeded4e679d5]

#i104312# fixed print objetcs for pictures and graphics; nopw works for drawing objects as well and does not effect form controls


2009-12-07  sb  <sb@openoffice.org>  [4a99ea57f3a14cf6fd25e922a445c4fd0b5b7251]

merged in DEV300_m66


2009-12-05  Mathias Bauer  <mba@openoffice.org>  [a7a6ea4294796bb79c1501883e8b0bb90f8afdd4]

merge to m67


2009-12-05  Kohei Yoshida  <kyoshida@novell.com>  [38e2703ddb838d0464da3abe6f0a51dc2b805fca]

kohei04: #i107458# Removed hard-coded range separators.

Previously, range separators were hard-coded for each address convention.  But
in the new code the separators are independent of address conventions or
grammars.  This code was one of the left-overs of the previous implementation.
2009-12-03  Kurt Zenker  <kz@openoffice.org>  [670a70fb30c08dbb2b1b2d7289ecccd7141c4a7b]

CWS-TOOLING: integrate CWS validityref


2009-12-03  Kurt Zenker  <kz@openoffice.org>  [56eb24ff35b9da3fc88c662aa6fe0862dce123b8]

update to current version


2009-12-03  Kurt Zenker  <kz@openoffice.org>  [779ec66e0763b45952afe32634d8170d9a77c2eb]

CWS-TOOLING: integrate CWS calc32stopper5_DEV300


2009-12-02  Kohei Yoshida  <kyoshida@novell.com>  [7c55fc1eb5df79bc69e99eca84520cdc86f4f5d5]

Tab to whitespace.


2009-12-02  Kohei Yoshida  <kyoshida@novell.com>  [d88347fc96df214275709c757731662480154961]

Reverted my change involving ConvertParam struct passed to the Convert method.

Since we are not storing array size before the formula tokens are parsed, we
don't need this change anymore.
2009-12-02  Kohei Yoshida  <kyoshida@novell.com>  [defc668b5208290e44eeffef98ee2541ec88ef79]

Defer defining of matrix size until the data are actually read.


2009-12-02  Kohei Yoshida  <kyoshida@novell.com>  [48d4a9630b0f43fd08f5f6e08e8c7c767ca7a596]

#i107339# Allow ScMatrix objects to be re-sizable.


2009-12-02  Kurt Zenker  <kz@openoffice.org>  [aac51b647bfe188ad9b62200020faaf9b2a86a56]

CWS-TOOLING: integrate CWS npower12


2009-12-02  mb93783  <mb93783@v60x-so15.Germany.Sun.COM>  [c6384e9624fa6c98ac958b778a95f96ba3cb2983]

merge to m66


2009-12-01  Ingrid Halama  <iha@openoffice.org>  [edd64689341ab47754851c0a5dbb35a41bafdd03]

chartmultiline: #i97893# import categories from multiple lines (fixed), #i82971# display complex categories hierarchically (part1)


2009-11-30  Kohei Yoshida  <kyoshida@novell.com>  [447ded0a11596816f63f1946ae841bf025b7d745]

#i107342# Disable context menus on protected cells when 1) the sheet is protected, and 2) selection of protected cells is disallowed.

Note that this is just an internal refactoring & will not affect Calc's current behavior.
2009-11-30  Kohei Yoshida  <kyoshida@novell.com>  [ee58ed75cd7ab6905b8c081562547cca5961f37f]

#i107340# Correctly import xls's record containing sheet protection options.


2009-11-30  Kohei Yoshida  <kyoshida@novell.com>  [f34a71dd04ebc7b4b0d8101235aafe8c97ccdeb2]

#i107339# more reliably determine in-line array size.


2009-11-30  Kohei Yoshida  <kyoshida@novell.com>  [07e116f14b518ecc906de10ddc3fc06094c9b368]

#i107338# Fixed incorrect parsing of cell ranges in R1C1 parser.


2009-11-30  Daniel Rentz  <dr@openoffice.org>  [874942252deefdf31fb03aa708ec6284b300f52f]

#i107275# ScRefTokenHelper::compileRangeRepresentation - allow parentheses enclosing the entire expression


2009-11-30  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [df4c03dbd9455dfc5f1f4832c2a7ea5776cfde4b]

[CWS autorecovery] forgot to remove some includes


2009-11-30  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [fdad65ba57bb2343652cfeb7352b5da5d4f30014]

[CWS autorecovery] merged SfxTopViewFrame into SfxViewFrame SfxTopViewFrame was the only class deriving from the abstract class SfxViewFrame, so both can effectively be treated as one class. This change was done to make subsequent refactorings easier.


2009-11-27  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [79904053be159a593fabd0598ba6d8a44668f38f]

[CWS autorecovery] merged SfxTopFrame into SfxFrame SfxTopFrame was the only class deriving from the abstract class SfxFrame, so both can effectively be treated as one class.


2009-11-26  Henning Brinkmann[hbrinkm]  <hbrinkm@openoffice.org>  [01c3676a11b29ad1327f0b1d03bc9bac3327097b]

writefilter07: merged DEV300_m65


2009-11-26  Kohei Yoshida  <kyoshida@novell.com>  [9c861bfb8c9a6f8e2a09ac04b46ec356852cd5d6]

When deleting a query entry, I need to append an empty one.

We need to ensure that the size of the query entries don't change
after deleting a query entry.
2009-11-25  Thomas Lange  <tl@openoffice.org>  [592d7c2976c753e3acea39e0601e2a02eab81968]

#i51258# thesaurus for right click context menu


2009-12-16  Jens-Heiner Rechtien  <hr@openoffice.org>  [e137771de6c91e3d6ffa8f8fed35c33f395f8a34]

tl74: merge with DEV300 m60


2009-11-25  Vladimir Glazunov  <vg@openoffice.org>  [d101cd02a4b28d4a98e2116cef2a8371cff4db85]

CWS-TOOLING: integrate CWS controltextrendering


2009-11-24  Daniel Rentz  <dr@openoffice.org>  [1379d7408a3b327575eff4c937507beb14d96239]

#i107170# use current script for default cell style


2009-11-24  Ingrid Halama  <iha@openoffice.org>  [ff17a97528a6ed06ac2ff2ceba33b2cf21e330a6]

chartmultiline: cleanup


2009-11-24  Vladimir Glazunov  <vg@openoffice.org>  [751d105fdb666170061ba08767a5fc396a05664d]

CWS-TOOLING: integrate CWS calc32stopper4_DEV300


2009-11-24  Niklas Nebel  <nn@openoffice.org>  [9b849f026279c4da7e777d4dcc52368c04d23f3f]

#i107151# Compare/CompareMat: call Pop for svEmptyCell


2009-11-24  Vladimir Glazunov  <vg@openoffice.org>  [3f63e1c1e2750bde4fbed97e2f96405b0ae0774c]

CWS-TOOLING: integrate CWS c07v026_DEV300


2009-11-24  Ingrid Halama  <iha@openoffice.org>  [406e35eacdc6f6a3a0992b9b6779a2de5716b333]

chartmultiline: remove unsued concept 'UnusedData'


2009-11-23  Mathias Bauer  <mba@openoffice.org>  [0aab10cae7f300672110493f070256815450227e]

merge commit for m65


2009-11-23  Frank Schoenheit [fs]  <frank.schoenheit@sun.com>  [dd75ce134b20f75dea74e0d973c0440c39b56d0a]

[CWS autorecovery] removed SfxCancellable/SfxCancelManager, and (part of) its transitive closure No real-life use cases for this exist anymore, since nowadays document loading happens synchronously all the time.


2009-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [38c60cd2d0768098e1194239daaf29afeabac2f7]

CWS-TOOLING: integrate CWS calc32stopper5 2009-11-12 13:18:26 +0100 dr  r277477 : #i105267# missing in exception files list 2009-11-12 11:13:57 +0100 dr  r277472 : CWS-TOOLING: rebase CWS calc32stopper5 to branches/OOO320@277373 (milestone: OOO320:m4) 2009-11-11 17:27:10 +0100 dr  r277466 : #i105267# remember all existing copies of ScAccessibeEditLineTextData in the ScTextWnd instance (text input line) 2009-11-04 09:59:49 +0100 dr  r277334 : dump even more BIFF records written by XL12 2009-10-27 19:11:37 +0100 dr  r277231 : few dumper additions 2009-10-27 17:17:10 +0100 nn  r277225 : #i106343# check if pDocShell is set in GetFormatter 2009-10-26 14:54:15 +0100 dr  r277178 : #i106194# OOXML: load form controls from binary streams 2009-10-26 14:14:01 +0100 dr  r277177 : #i106194# OOXML: load form controls from binary streams


2009-11-20  Ingrid Halama  <iha@openoffice.org>  [344462421c85ec1ef9ba84183d3de78458f8f91c]

chartpositioning: #i100778# chart positioning excluding labels


2009-11-19  Niklas Nebel  <nn@openoffice.org>  [053536111d2fb021999868c9db0bfc4f5e560fdc]

#i106854# get source stream directly from document's storage instead of a temporary SfxMedium


2009-11-19  Thomas Benisch  <tbe@openoffice.org>  [24c65e03363b1562f0212b61f9a55531c4f6dfd9]

#i12587# Inserting/editing arbitrary text objects in chart


2009-11-18  Kohei Yoshida  <kohei@openoffice.org>  [2770ed909390863c8fd049a78e5fe41aec89bc14]

The default visibility of grand total is actually true, not false.


2009-11-18  Kohei Yoshida  <kohei@openoffice.org>  [472236f8c291bf82efbda6af913dafd8d1b83840]

Actually this is wrong.


2009-11-18  Kohei Yoshida  <kohei@openoffice.org>  [ced879e44497aba03bf228d669f4ba406f797cb6]

#i106975# When custom grand total name is not used, write the xml data the old way.


2009-11-18  Kohei Yoshida  <kohei@openoffice.org>  [9818c3ba1a0ad23463b423bbc32cd194935dc882]

#i106975# data-pilot-grand-total is also new in ODF 1.2 extended.


2009-11-18  Thomas Benisch  <tbe@openoffice.org>  [f64f510f5fafda6eb65151ebd086b1d2dbc6975c]

#i12587# Inserting/editing arbitrary text objects in chart


2009-11-17  Kohei Yoshida  <kohei@openoffice.org>  [8f7824cf36be90cfb11627ae7633840cac067b23]

#i106975# Don't export tableooo:display-name attributes unless the specified ODF version is 1.2 extended or later.


2009-11-17  Kohei Yoshida  <kohei@openoffice.org>  [2ff2bea81d2b00559b6aa60c1d274b23562775dd]

#i106975# Use tableooo namespace when exporting datapilot's display names.


2009-11-16  Kohei Yoshida  <kohei@openoffice.org>  [b9776d5932ee52e788fa6e9ba6feb53bf2af5c11]

#i106583# Use the up-to-date output range when refreshing datapilot tables.


2009-11-16  Kohei Yoshida  <kyoshida@novell.com>  [8708120c89c12f51e981e983230aafe7156a64b3]

Removed a compiler warning wrt initialization ordering of data members.


2009-11-16  Kohei Yoshida  <kyoshida@novell.com>  [06d199da4ad9f3c48f961c378eafcdc205ab25a3]

#i26826# #i46511# initial implementation of automatic decimal adjustment.

Just applied patches from ooo-build.  There still may be issues that need
to be worked out.
2009-11-16  Christian Lippka  <christian.lippka@sun.com>  [9682f4954566afb9ca8a63ebef9d6c87f1b1d490]

merge


2009-11-16  Niklas Nebel  <nn@openoffice.org>  [ac20256cd79718d244387591333378d3c38e7065]

validityref: merge with DEV300_m64


2009-11-16  Niklas Nebel  <nn@openoffice.org>  [c1cee8c0e8e0b93d9719b86584bfc94a72f69465]

validityref: #i103899# manual migration from svn (contribution from PengYunQuan)


2009-11-13  Kurt Zenker  <kz@openoffice.org>  [74ffeb5bea3ff682473ed5c282762e04d453c207]

CWS-TOOLING: integrate CWS cmcfixes66


2009-11-13  Kurt Zenker  <kz@openoffice.org>  [ce9641d0b89b07fdffc8d8014e77e5816ebc09a6]

CWS-TOOLING: integrate CWS changehc02


2009-11-13  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [22c2a9b2065014ef031671e1f3bf8c8fc0f939e6]

merge with DEV300_m64


2009-11-13  sj  <sj@openoffice.org>  [6e570cbd024c666989e9be5c7a47bb2801645297]

impress181: #i76407,160798# fixed some text orientation problems for the Excel import filter


2009-11-13  Henning Brinkmann[hbrinkm]  <hbrinkm@openoffice.org>  [3944d5b546edfed85ea52b9877fab63c370c0320]

writerfilter07: merged DEV300_m64


2009-11-13  sb  <sb@openoffice.org>  [1299f12ad3c21a543b60929a2fb32a9159a7f29d]

sb116: #i106845# removed obsolete IRIX port


2009-11-12  Thomas Benisch  <tbe@openoffice.org>  [6f75e1d3cf20c3d0b1a51935d989dfb4d722f99e]

#i12587# Inserting/editing arbitrary text objects in chart


2009-11-11  sb  <sb@openoffice.org>  [697c509a98944d870a54411cadd9fc2dd3e6529b]

sb116: merged in DEV300_m64


2009-11-11  Mathias Bauer  <mba@openoffice.org>  [26e5bd00517f0e2a43ae830e0cda3a7b6f634347]

#i103496#: sandbox removed


2009-11-10  os  <os@openoffice.org>  [e4e1b16b3ea6d61ca12802b6ddd82e89be694952]

rebase


2009-11-06  Thomas Benisch  <tbe@openoffice.org>  [15359bbbce72948e51c50b1aaa831c0dcdb12f89]

#i12587# Inserting/editing arbitrary text objects in chart


2009-11-06  Caolán McNamara  <cmc@openoffice.org>  [003e3bb1a0a225db40d3cdde531014dcf594db40]

cmcfixes66: #i106674# fix remaining new[]/delete mismatches


2009-11-05  Mathias Bauer  <mba@openoffice.org>  [869faaf623de8de7b6054f5e09dc41f494516ef7]

forgot to add filter to build.lst of apps using msfilter


2009-11-04  Thomas Benisch  <tbe@openoffice.org>  [6d546eb6e3d708115a62e2f33ac558dd120aef06]

#i12587# Inserting/editing arbitrary text objects in chart


2009-11-04  mb93783  <mb93783@macpro-dev1>  [8dd3760888b9d39b41bbc3a1a56489e84535da2d]

#i106432#, #i103496#: some fixes found while building on more platforms


2009-11-03  Philipp Lohmann [pl]  <Philipp.Lohmann@Sun.COM>  [f7798559f9a204ae3b2beb56f3b8ee540a2e75ed]

#i104678# use high contrast mode setting instead of IsDark (paradigm shift begun with issue i35482)


2009-11-02  Mathias Bauer  <mba@openoffice.org>  [367d73647d1b2ca855cce5f6cafc0c51e69e73ee]

#i106421#: create new cui resource file


2009-11-02  Michael Stahl  <mst@openoffice.org>  [44f9a955f336f5b2c716a170621d705a4e298fc8]

#i105745#: tools/stream.hxx: API change:  make SvMemoryStream::GetSize() private  introduce new public SvMemoryStream::GetEndOfData()


2009-11-01  Mathias Bauer  <mba@openoffice.org>  [f79522f0366fc57aba70cc134749836be0f714ea]

merge commit for DEV300_m63


2009-10-31  Mathias Bauer  <mba@openoffice.org>  [956a6b2d748327d8252caa9ca64d31cd307b411a]

#i106421#: move msfilter to filter


2009-10-30  os  <os@openoffice.org>  [d8f6e7516305ed09590cc8dabafe29c0f06a08ea]

#i58212# Chinese translation changed to Chinese Conversion


2009-10-29  Ivo Hinkelmann  <ihi@openoffice.org>  [d6cb45764569841983ce793685974288f8170b79]

CWS-TOOLING: integrate CWS c07v026_OOO320 2009-10-19 10:26:11 +0200 mav  r277008 : #b6886425# use standard solution to encode the URL for the Gnome 2009-10-19 08:38:28 +0200 mav  r276998 : #b6886425# encode the URL correctly for the Gnome 2009-10-07 12:49:32 +0200 os  r276749 : #b6887668# resize items depending on the item text length 2009-09-28 18:42:32 +0200 dr  r276499 : #b6883075# shrink print ranges to Excel sheet limits 2009-09-28 16:50:25 +0200 od  r276497 : #b6882166# method <SwSectionFrm::SimpleFormat(..)>            - assure notification on position changes, otherwise the layout will not be correct. 2009-09-15 18:31:37 +0200 dr  r276185 : #b6872823# check cursor before using, patch by aw 2009-09-09 10:52:52 +0200 od  r275975 : #b6879723# correct handling of new list level attributes regarding paragraph indent values, 	   especially in case of OOo 2.0 and former hidden compatibility option "Ignore first line 	   indent on numbering" 2009-09-08 11:10:31 +0200 od  r275918 : #b6876367# method <lcl_SetTxtFmtColl(..)> 	   - do not reset list attributes at paragraph, if its applied list style 	     will not change due to the newly applied paragraph style. 2009-09-07 12:48:58 +0200 obo  r275890 : Merge from c07v025 into this CWS


2009-10-27  Henning Brinkmann  <hbrinkm@openoffice.org>  [fa29c4f11bec543d0a17ddfa064f56efb52f965c]

merged last changes


2009-10-27  Henning Brinkmann  <hbrinkm@openoffice.org>  [ab9b81c7e09640e57a32f93afdcb598f775802b5]

merged DEV300_m62


2009-10-27  Thomas Benisch  <tbe@openoffice.org>  [72571f682775eacb57c5205df675dadee39ee733]

#i12587# Inserting/editing arbitrary text objects in chart


2009-10-27  Release Engineers  <releng@openoffice.org>  [17afeb05f38050f8e93b59279e67a0860b2b760b]

Create DEV300_m63 milestone tag from trunk@277194


2009-10-26  Mathias Bauer  <mba@openoffice.org>  [641aa500b6a387ef66e4041d5419c54aff30c871]

wrong merge conflict resolution


2009-10-26  Mathias Bauer  <mba@openoffice.org>  [1961ea82c5b5420860f94cf8459f22166134a68c]

merge commit for m62


2009-10-23  Thomas Benisch  <tbe@openoffice.org>  [8839b7d3183dd24535ab82d6273c6eb08dc2fa9d]

#i12587# Inserting/Editing arbitrary text objects in chart


2009-12-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [8f5b18dad456d453dadaff17feaaf9b4124b1e54]

chartshapes: merge with DEV300 m62


2009-10-23  Niklas Nebel  <nn@openoffice.org>  [5d520cd937375f3ef91ece7cf72890b7749714cc]

#i101139# MoveTable: nDestTab must be target position, not APPEND


2009-10-23  Frank Schönheit  <frank.schoenheit@sun.com>  [3f14fa60d8a4a019abcb989bb3a5fcbba9e818ed]

step 0 of an UNOization of the css.form.(X)FormController implementation: move the API to css.form.runtime, so we can later add new API chunks without breaking compatibility of the existing API in css.form


2009-10-22  Niklas Nebel  <nn@openoffice.org>  [2c653b6b01ed243c8383577f4dadb8c566f4d4e9]

#i106045# renaming a sheet has to reset all xml stream flags


2009-10-21  Vladimir Glazounov  <vg@openoffice.org>  [c1fb7a6b11a9623371496e4f3694bdc5c5eaaf97]

CWS-TOOLING: integrate CWS calc32stopper3 2009-10-12 14:26:09 +0200 er  r276833 : disable dump again 2009-10-12 13:46:57 +0200 er  r276832 : #i102294# setValue: yet another DST glitch 2009-10-12 13:21:48 +0200 iha  r276828 : #i105767# Y axis vanishes in case of zero rotated axis title 2009-10-08 01:49:20 +0200 er  r276772 : NextSymbol: actually do reset ODF reference detection on file/sheet separator 2009-10-08 00:18:58 +0200 er  r276771 : #i101639# use TabIDs in cached RangeArrays, not RefData Tabs 2009-10-07 19:25:47 +0200 er  r276767 : #i105200# UpdateBroadcastAreas: hash key changes, remove area from all slots and reinsert 2009-10-05 17:20:44 +0200 er  r276690 : #i105365# SI prefixes for ang, ang3, m/h, m/hr 2009-10-05 16:21:29 +0200 er  r276686 : #i105161 intersection has higher precedence than union


2009-10-21  Thomas Benisch  <tbe@openoffice.org>  [96a047ce3a7cb0b8fe536945dba9eb80e842884e]

#i12587# Inserting/editing arbitrary text objects in chart


2009-10-21  Thomas Benisch  <tbe@openoffice.org>  [7134b301345cb3dea999da2c0ec4c09c80509125]

#i12587# Inserting/editing arbitrary text objects in chart


2009-10-21  Niklas Nebel  <nn@openoffice.org>  [61035834050bf728aed06bc745c0806f200c85fa]

#i106045# invalidate stream positions for sheet operations, better handling of loaded formula results


2009-10-20  Release Engineers  <releng@openoffice.org>  [a5dedc525d9df9464045fe5401bd01d71120fffe]

Create DEV300_m62 milestone tag from trunk@277034


2009-10-19  Kohei Yoshida  <kyoshida@novell.com>  [6379f51e12206ebe68f1598f854141cce6b29679]

#i104769# Reverted the change with the dirty flag of ScFormulaCell.


2009-10-19  Niklas Nebel  <nn@openoffice.org>  [ecb600e313c57c7178ad9f747ed5f8ca94f88bf7]

#i105960# SID_UNDO and friends are no longer volatile


2009-10-19  Mathias Bauer  <mba@openoffice.org>  [2f63c7cffbc096eb0686797f8de1ce940495460d]

#i103496#: move some fontsubstitution stuff from vcl to unotools to get xmloff vcl free


2009-10-16  Kohei Yoshida  <kyoshida@novell.com>  [da03ae5ad460a9da97d984d214755ff9b1f0f906]

(hopefully) rebased to DEV300_m61.


2009-10-16  Kohei Yoshida  <kyoshida@novell.com>  [456bac0aad267816b93233bcee3d9ca429884b7d]

reverted commits 263183 and 263184 to fix broken export of CF records.


2009-10-15  Kohei Yoshida  <kyoshida@novell.com>  [e9bac9b0f903964a4b307c08aeca12eaf814e953]

#i105940# When populating the cache table, increase the macro level to ensure that formula cells are interpreted properly.


2009-10-15  Kohei Yoshida  <kyoshida@novell.com>  [d73a13fb31ee3abb61ee737264c7a540f75c7f4f]

#i105933# Replaced other WriteZeroBytes() with WriteZeroBytesToRecord() in other places except for the hyperlink record.


2009-10-15  Kohei Yoshida  <kyoshida@novell.com>  [164e8b18c8139aabf414206894b4b324d053defc]

Support slice settings in WriteZeroBytesToRecord().


2009-10-16  Mathias Bauer  <mba@openoffice.org>  [7077908aacdce0baf758e60c3f897924f7edec5f]

#i103496#: split svtools; improve ConfitItems


2009-10-15  Kohei Yoshida  <kyoshida@novell.com>  [ae8e9fc1a41f98663d56875e88fcea1a0f667713]

#i105933# Re-enable encryption at the end of INTERFACEEND record & properly encrypt zero bytes in the CF records.


2009-10-15  Daniel Rentz  <dr@openoffice.org>  [000970a3236d2d8b6029577b28d01bfcd29798fc]

wntmsci12 warning


2009-10-15  Daniel Rentz  <dr@openoffice.org>  [ec3c6a40f01f298cf01e5557b597e446e53839e0]

wntmsci12 warning


2009-10-14  Kurt Zenker  <kz@openoffice.org>  [1495cebc0077b1dbe98b401de301ba5869f883d1]

CWS-TOOLING: integrate CWS calc32stopper2 2009-10-01 12:42:16 +0200 dr  r276592 : #i104992# and more typos... 2009-10-01 12:42:13 +0200 nn  r276591 : #i105512# SetDocOptions: update number formatter if it already exists 2009-09-30 19:03:58 +0200 dr  r276573 : #104992# oops, forgotten to skip a byte 2009-09-30 16:07:17 +0200 dr  r276560 : #i103540# check valid vector size 2009-09-29 14:20:45 +0200 dr  r276529 : dump some more BIFF records 2009-09-29 13:00:22 +0200 dr  r276526 : dump some more BIFF records 2009-09-28 14:34:14 +0200 dr  r276490 : #i104057# missing exception file 2009-09-28 10:35:42 +0200 dr  r276483 : #i105325# set correct format while opening zip package 2009-09-25 19:07:32 +0200 dr  r276475 : #i104992# handle cell styles built-in in Calc correctly 2009-09-25 19:06:46 +0200 dr  r276474 : #i104992# handle cell styles built-in in Calc correctly 2009-09-25 17:37:28 +0200 dr  r276472 : #i105219# missing include 2009-09-25 12:32:24 +0200 dr  r276435 : #i10000# rebase error: renamed variable 2009-09-25 11:34:53 +0200 dr  r276431 : CWS-TOOLING: rebase CWS calc32stopper2 to trunk@276429 (milestone: DEV300:m60) 2009-09-24 18:59:23 +0200 dr  r276427 : 160550# preserve write-protection password in roundtrip 2009-09-24 18:54:43 +0200 dr  r276426 : 160550# preserve write-protection password in roundtrip 2009-09-22 11:38:17 +0200 dr  r276353 : #160550# the property has to be integer of course 2009-09-21 18:52:06 +0200 dr  r276342 : #160550# new internal property WriteProtectinPassword 2009-09-21 18:22:40 +0200 dr  r276340 : #i104057# load sheets substreams according to offsets in SHEET records 2009-09-21 18:11:00 +0200 dr  r276338 : #i104057# load sheets substreams according to offsets in SHEET records 2009-09-17 20:07:33 +0200 dr  r276255 : #i104057# BIFF5/BIFF8: order of sheet substreams may be different to sheet order, use stream offset provided in SHEET records


2009-10-14  Daniel Rentz  <dr@openoffice.org>  [1c4017e96d11831dbac12f7d316fb8318ba9a969]

wntmsci12 warnings


2009-10-13  Frank Schönheit  <fs@openoffice.org>  [518f8cdf4cd905f67fefdbc26a7132e58eb9ab2f]

#i10000#


2009-11-16  Jens-Heiner Rechtien  <hr@openoffice.org>  [2708f69fde25d9dff6c7802b50270f77f50d5dbf]

controltextrendering: merge changes from DEV300_m61


2009-10-13  Daniel Rentz  <dr@openoffice.org>  [b9e3a3da0986b6db688799a75eaddacabecb575a]

missing exceptions file


2009-10-13  Daniel Rentz  <dr@openoffice.org>  [8bb4e32a28c0452b7b08f7efc26e22959d271b27]

missing exceptions file


2009-10-13  Daniel Rentz  <dr@openoffice.org>  [cef0a34a99727a623d67e52a01ea21a254ed14fe]

unx warning


2009-10-12  Daniel Rentz  <dr@openoffice.org>  [eab26846bcbe1c7a5983957c88a3c86cc1fef676]

missing usings


2010-01-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ee0f96a2fa46ae91e80c04c889da10e6612ec8ae]

koheidatapilot03: merge with DEV300_m60


2009-10-12  Noel Power  <npower@openoffice.org>  [e9836920f5d1b686bf9fc131593015290405ec3c]

logs should be generated not saved


2009-10-09  Philipp Lohmann  <Philipp.Lohmann@Sun.COM>  [8d17b9b5f8ae107f3e4893a81901f62d780bddea]

merge with m61


2009-10-08  hg  <hg@oosvn01.>  [b0bfe98660676c385786e3acfc81303207f05877]

merge with m55


2009-10-07  Noel Power  <npower@openoffice.org>  [8396d62e10753fbb6f73c2f55d41c95161002d46]

fix selection issue


2009-10-07  Noel Power  <npower@openoffice.org>  [663626ab4c18848568a7771f20b8825544cc10a8]

warning as error fixes


2009-10-06  Thomas Benisch  <tbe@openoffice.org>  [e18606aab75366977d12fb869aceec4b10764249]

#i12587# Inserting/editing arbitrary text objects in chart


2009-10-06  Thomas Benisch  <tbe@openoffice.org>  [1af7c6d49cb9a84c86872c81e92d43e9134f48f4]

#i12587# Inserting/editing arbitrary text objects in chart


2009-10-06  Release Engineers  <releng@openoffice.org>  [ede4334898a767dc31f886da7aade9b46f70fda3]

Create DEV300_m61 milestone tag from trunk@276697


2009-10-06  Mathias Bauer  <mba@openoffice.org>  [a752cca57191ffc40def0ea1364691df86b25671]

#103496#: move VCL free ConfigItems to unotools


2009-10-02  Thomas Benisch  <tbe@openoffice.org>  [7f626bd0cf5a9b0054ad5a51b70cb645f970275d]

#i12587# Inserting/editing arbitrary text objects in chart


2009-10-02  Thomas Benisch  <tbe@openoffice.org>  [9cbd7552577fd95acec3969c9b701b642529c499]

#i12587# Inserting/editing arbitrary text objects in chart


2009-10-01  Vladimir Glazounov  <vg@openoffice.org>  [5fa6b5a0d8a2480824e881a583a3113281581dd2]

CWS-TOOLING: integrate CWS sw32bf04 2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build) 2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case 2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case 2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case 2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default 2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0 2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks 2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition 2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx 2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively 2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc) 2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String


2009-10-01  Thomas Benisch  <tbe@openoffice.org>  [61117b04dcd73317c65c8e95665adc60cf850c40]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-30  Thomas Benisch  <tbe@openoffice.org>  [92d5cf731922d8a9401474b6827de4dd6acc5231]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-30  Thomas Benisch  <tbe@openoffice.org>  [603152aa5c5a9d46d1f573b47bd53c94262b538f]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-30  Thomas Benisch  <tbe@openoffice.org>  [7eef74a7571cb3825efd020cc9811167e10cb429]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-30  Thomas Benisch  <tbe@openoffice.org>  [50ac980aab71561576d2ead0adcf9b89cd844835]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-30  Thomas Benisch  <tbe@openoffice.org>  [bc1d5d1d6ed08a5648cb880a0594e7a0c4c59d59]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-30  Thomas Benisch  <tbe@openoffice.org>  [efdd781181fca7ef609d765e65b7312d087d4757]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-30  Thomas Benisch  <tbe@openoffice.org>  [f4b78b7d27a3a123fd8f1e6bac8ad0fa84285ec8]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-30  Noel Power  <npower@openoffice.org>  [2514e50cc2e9d0d63eb8bd20d4e8cd19a049511c]

add some comments


2009-09-30  Kohei Yoshida  <kyoshida@novell.com>  [097577e5aaa2e754e31f511c23c69e3f4d0e9ff1]

fixed build breakage in sc.


2009-09-30  Kohei Yoshida  <kyoshida@novell.com>  [ceec268c2e65ac1b2ca8df19b920d7d49f93f1e8]

rebased to DEV300_m60.


2009-09-30  Kohei Yoshida  <kyoshida@novell.com>  [61acfe5500111b41ab72d29ab90bdfb64ace4d34]

rebased to DEV300_m60.


2009-09-29  Kohei Yoshida  <kyoshida@novell.com>  [422b6c146638d68243bbb0c4ec26b92c2b75c0be]

rebased to DEV300_m60.


2009-09-29  Noel Power  <npower@openoffice.org>  [11599592daff77a843f5453753af0ed685f05927]

tweak VBAGlobals creation/insertion, also restore overwritten visibility controls bits to moved ( erm delete and created in another director ) file. Add missing bits to enable Application.Quit and use preprocessor to include some uncompiled code


2009-09-29  Thomas Benisch  <tbe@openoffice.org>  [67e4da15e06f03248873a945cfa789fb4df8e7b6]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-28  Mathias Bauer  <mba@openoffice.org>  [5c1fb3b063bcd02395cb2afd9214e51dd8650a0b]

merge problems


2009-09-25  Mathias Bauer  <mba@openoffice.org>  [02ba2302b0e2557c2576cde59ef57ef87e703f58]

merge commit


2009-09-24  Release Engineers  <releng@openoffice.org>  [24ee591902cc334b55072aca915f06771e2a8a92]

Create DEV300_m60 milestone tag from trunk@276428


2009-09-23  Noel Power  <npower@openoffice.org>  [d2fe5ad0b6c1cb7bde5ceac814e27b17d1c43cb4]

warnings as errors


2009-09-23  Noel Power  <npower@openoffice.org>  [422ccf26a1b166773bc7b988f4d68ccda291821a]

trim unwanted patches that crept in while importing stuff from ooo-build


2009-09-19  Mathias Bauer  <mba@openoffice.org>  [3160bc7e650701f38987b38832f6a641df453afa]

better dependencies for sdi files


2009-09-18  Noel Power  <npower@openoffice.org>  [fd5b69ec1122b0e885e8e82cd684cd4971c7e057]

new and removed files


2009-09-18  Noel Power  <npower@openoffice.org>  [1cab3d63faaf6c3d782e32dca9bd68d39286d60f]

initial commit of code reorg, existing files that are modified


2009-09-18  Ivo Hinkelmann  <ihi@openoffice.org>  [ec92cc9ab227d63231723c5f673b243217f52009]

CWS-TOOLING: integrate CWS calc32stopper1 2009-09-15 15:43:23 +0200 dr  r276180 : newpic 2009-09-15 15:41:13 +0200 dr  r276179 : newpic 2009-09-15 14:58:14 +0200 dr  r276178 : #i104905# fixed note handling while importing from external data 2009-09-15 13:47:43 +0200 dr  r276173 : #i104905# fixed note handling while importing from database 2009-09-15 11:56:00 +0200 dr  r276164 : #i104155# prevent crash loading docx 2009-09-15 10:40:43 +0200 dr  r276154 : #i104990# 2009-09-15 10:27:31 +0200 dr  r276152 : #i104990# enable saving BIFF8 with password/encryption 2009-09-15 10:26:40 +0200 dr  r276151 : #i104990# enable saving BIFF8 with password/encryption 2009-09-14 19:13:11 +0200 dr  r276145 : #i105007# missing cleanup for deleted headers 2009-09-14 19:06:57 +0200 dr  r276144 : #i105007# missing cleanup for deleted headers 2009-09-14 18:53:39 +0200 dr  r276143 : #i104915# prevent crashes and misbehaviour when dealing with note cells: enter matrix, enter mult.op 2009-09-14 13:57:00 +0200 dr  r276109 : #160184# make drilldown working in exported pivottables, ported to DEV300 2009-09-11 15:16:08 +0200 nn  r276068 : #i104987# MoveBlock: pass bCut parameter 2009-09-11 15:15:22 +0200 nn  r276067 : #i104986# CopyToClip: correct order of parameters 2009-09-11 09:45:59 +0200 dr  r276053 : correct milestone


2009-09-18  Jens-Heiner Rechtien  <hr@openoffice.org>  [7015d343b762f06aef9117b0e0232d5a25ed5a02]

CWS-TOOLING: integrate CWS mba32issues02 2009-09-17 mb93783 merge commit 2009-09-03 tb121644 #i104748 - slot unification to .uno:PasteSpecial 2009-09-01 mba #101455#: code simplification 2009-08-31 mb93783 iso locales for norwegian builds are nb and nn, not no 2009-08-25 mba merge to m55 2009-07-29 mba cleanup after rebase 2009-07-29 mba #i103200#: wrong order of first and last name in CJK UI 2009-07-27 mba adding dictionary changes from broken svn CWS 2009-07-27 mba adding dictionary changes from broken svn CWS 2009-07-27 mba apply patch from broken svn CWS


2009-09-17  Kohei Yoshida  <kyoshida@novell.com>  [5b7d52a660c76bd8214f205f8658164d9e405955]

forgot to add two more new files.


2009-09-17  Kohei Yoshida  <kyoshida@novell.com>  [8fc18f7a42b4f0e3b7fa30cea0d3d6ac2dafd914]

Fixed build breakages.  Now the whole thing builds.


2009-09-17  Kohei Yoshida  <kyoshida@novell.com>  [96c86c2006ebdc79e489d27e0771e74fd2962889]

#i5560# Applied & adjusted for the latest codebase the patches from go-oo. The original patches were contributed by Daniel Watson.


2009-09-17  Ivo Hinkelmann  <ihi@openoffice.org>  [c64ee49bb8dee3895edaee7111d548816bb83116]

CWS-TOOLING: integrate CWS encsig09 2009-09-14 15:11:29 +0200 oc  r276125 : #i105049# MacroSignatur needs Macro 2009-09-09 17:09:46 +0200 jl  r276005 : #i103989# could not signe encrypted doc containing a formular object 2009-09-09 13:11:24 +0200 jl  r275985 : #i103989# could not signe encrypted doc containing a formular object 2009-09-08 15:54:02 +0200 mav  r275934 : #i103906# fix the automation test scenario ( tempfile should be writable for the user ) 2009-09-07 14:01:39 +0200 mav  r275895 : #i103906# fix the problem with reload 2009-09-07 09:34:48 +0200 mav  r275871 : #i104786# do the ODF version check only for ODF documents 2009-09-07 08:19:06 +0200 mav  r275870 : #i104389# fix text 2009-09-06 22:24:21 +0200 mav  r275867 : #i104786# check the consistency of ODF version 2009-09-06 22:23:24 +0200 mav  r275866 : #i104786# check the consistency of ODF version 2009-09-06 22:23:00 +0200 mav  r275865 : #i104786# check the consistency of ODF version 2009-09-06 22:22:36 +0200 mav  r275864 : #i104786# check the consistency of ODF version 2009-09-06 22:22:03 +0200 mav  r275863 : #i104786# check the consistency of ODF version 2009-09-02 17:09:30 +0200 mav  r275722 : #i104715# let repairing mechanics use the streams correctly 2009-09-01 16:52:49 +0200 mav  r275670 : #i104389# notify user not to trust the corrupted document 2009-09-01 16:31:37 +0200 mav  r275668 : #i104389# use vnd.sun.star.zip: protocol to access zip files 2009-09-01 16:30:32 +0200 mav  r275667 : #i104389# use vnd.sun.star.zip: protocol to access zip files 2009-09-01 16:22:13 +0200 jl  r275666 : #i104339# small content change 2009-09-01 14:20:42 +0200 jl  r275660 : #i103519# remove some debug output 2009-09-01 13:51:52 +0200 jl  r275659 : #i103519# NSS uses '\' for escaping in distinguished names 2009-09-01 12:49:47 +0200 mav  r275655 : #i104389# use zip-mode to read from jar files 2009-09-01 12:40:22 +0200 mav  r275653 : #i104389# use zip-mode to read from jar files 2009-09-01 12:32:29 +0200 mav  r275652 : #i104389# use constants 2009-08-31 21:58:00 +0200 mav  r275637 : #i10000# fix warning 2009-08-31 21:11:17 +0200 mav  r275636 : #i104227# adding of scripting signature removes the document signature 2009-08-31 20:55:05 +0200 mav  r275635 : #i103905# ZipStorage supports Compressed property 2009-08-31 20:53:55 +0200 mav  r275634 : #i103905# adjust macro signature transfer to usage of ZipStorage 2009-08-31 15:30:49 +0200 jl  r275609 : #i103989# warning is shown as long the user does not click 'OK' 2009-08-31 14:36:10 +0200 jl  r275608 : #i103989# changed warning text when signing macro and there is a document signature. This warning is only displayed once 2009-08-31 13:34:41 +0200 mav  r275603 : #i104452# disable macros in repaired documents 2009-08-31 13:33:42 +0200 mav  r275602 : #i104452# disable macros in repaired documents 2009-08-31 13:03:56 +0200 jl  r275600 : #i45212# signature dialog could not be started when using read-only documents 2009-08-31 09:26:13 +0200 mav  r275583 : #i104578# store the additional entry as the last one to workaround parsing problem in OOo3.1 and later 2009-08-30 20:54:25 +0200 mav  r275562 : #i10000# adopt for unix 2009-08-30 10:56:00 +0200 mav  r275561 : CWS-TOOLING: rebase CWS encsig09 to trunk@275331 (milestone: DEV300:m56) 2009-08-28 16:34:00 +0200 mav  r275539 : #i104578# write necessary info in manifest.xml for ODF1.2 encrypted document 2009-08-28 14:04:22 +0200 mav  r275533 : #104587# fix handling of readonly streams 2009-08-28 13:58:10 +0200 mav  r275531 : #i104389# fix the broken document handling 2009-08-28 11:40:39 +0200 mav  r275522 : #i104389# fix the signature streams check 2009-08-27 21:48:12 +0200 mav  r275509 : #i103927# show the warning 2009-08-27 21:47:48 +0200 mav  r275508 : #i103927# show the warning 2009-08-27 16:45:59 +0200 jl  r275495 : #i45212# remove unused variable 2009-08-27 16:34:00 +0200 jl  r275494 : #i103989# 2009-08-27 13:54:28 +0200 jl  r275482 : #i103519# fixed replacement of 'S' by 'ST' 2009-08-27 12:32:21 +0200 mav  r275472 : #i10000# fix warning 2009-08-27 11:58:11 +0200 mav  r275467 : #i104389# handle the entry path correctly 2009-08-26 17:18:35 +0200 jl  r275438 : #i103519# subject and issuer distinguished names were not properly displayed. The strings were obtained by system functions (Windows, NSS), which use quotes to escape the values, when they contain special characters 2009-08-26 11:00:20 +0200 mav  r275403 : #i10000# fix warnings 2009-08-26 08:25:45 +0200 mav  r275392 : #i10000# fix warning 2009-08-26 08:02:22 +0200 mav  r275391 : #i10000# adopt for linux 2009-08-26 07:40:30 +0200 mav  r275390 : #i10000# fix warning 2009-08-26 07:35:28 +0200 mav  r275389 : #i10000# use correct include file name 2009-08-25 15:01:41 +0200 jl  r275356 : #i103989# better check for mimetype of streams 2009-08-25 09:07:09 +0200 mav  r275335 : CWS-TOOLING: rebase CWS encsig09 to trunk@274622 (milestone: DEV300:m54) 2009-08-24 18:17:02 +0200 mav  r275329 : #i103927# check the nonencrypted streams 2009-08-24 18:14:14 +0200 mav  r275328 : #i103927# check the nonencrypted streams 2009-08-24 17:59:34 +0200 mav  r275327 : #i103927#,#i104389# check the package consistency and nonencrypted streams 2009-08-24 16:18:28 +0200 jl  r275323 : #i103989# added comment 2009-08-24 13:08:47 +0200 jl  r275305 : #i45212# #i66276# only write the X509Certificate element once and allow to add remove several certificates at a time 2009-08-21 12:57:28 +0200 ufi  r275239 : 104339 2009-08-21 08:39:05 +0200 jl  r275213 : #i10398# comparing URIs of signed files with the 'element list' 2009-08-20 13:39:47 +0200 jl  r275178 : #i10398# displaying 'new partially signed' status in the status bar 2009-08-20 13:35:39 +0200 jl  r275177 : #i10398# displaying 'new partially signed' status in the status bar 2009-08-20 13:29:06 +0200 jl  r275176 : #i10398# displaying 'new partially signed' status in the status bar 2009-08-20 13:26:21 +0200 jl  r275175 : #i10398# displaying 'new partially signed' status in the status bar 2009-08-20 12:05:09 +0200 ufi  r275170 : i104339 2009-08-19 12:24:54 +0200 jl  r275146 : #i10398# displaying 'old signature' icon and status in signature dialog 2009-08-18 15:18:48 +0200 jl  r275111 : #i103989# document signatures containing manifest.xml are now validated according to the final ODF1.2 spec 2009-08-18 11:41:06 +0200 mav  r275087 : #i103927# detect if encrypted ODF1.2 document contains nonencrypted streams 2009-08-18 11:35:13 +0200 mav  r275085 : #i103927# detect if encrypted ODF1.2 document contains nonencrypted streams 2009-08-14 17:32:41 +0200 jl  r274999 : #i103989# using c14n tranformation for XML streams 2009-08-14 15:27:43 +0200 jl  r274987 : #i103989# remove special handling for encrypted document streams in UriBindingHelper::OpenInputStream, since we use zip storage this is not necessary anymore 2009-08-14 15:08:10 +0200 jl  r274983 : #i103989# Showing a message when adding or removing a macro signature, that the document signature will be removed 2009-08-14 14:57:27 +0200 jl  r274982 : #i103989# accesing Sequence at invalid index 2009-08-11 08:55:02 +0200 mav  r274846 : #i103905# let signing service know if there is already a valid document signature 2009-08-10 11:33:37 +0200 jl  r274799 : #i103905# do not truncate the stream 2009-08-10 10:43:47 +0200 mav  r274797 : #i103905# provide the storage version 2009-08-07 16:58:46 +0200 jl  r274780 : #i103989# 2009-08-07 16:56:19 +0200 jl  r274779 : #i103989# using odf version string etc. 2009-08-07 15:20:53 +0200 mav  r274771 : #i103905# provide the storage version 2009-08-07 15:19:12 +0200 mav  r274770 : #i103905# provide the storage version 2009-08-07 12:41:45 +0200 mav  r274758 : #103930# do not store thumbnail in case of encrypted document 2009-08-07 12:36:52 +0200 mav  r274757 : #i103905# provide the storage version 2009-08-07 12:15:54 +0200 mav  r274754 : #i103760# the signed state is not lost on saving 2009-08-07 12:06:19 +0200 mav  r274753 : #i103760# avoid warning regarding signature removal on export 2009-08-07 12:06:01 +0200 mav  r274752 : #i103760# avoid warning regarding signature removal on export 2009-08-06 08:47:34 +0200 mav  r274703 : #i103905# allow to transport ODF version to the signing component 2009-08-05 21:34:42 +0200 mav  r274701 : #i103905# allow to transport ODF version to the signing component 2009-08-05 15:48:17 +0200 mav  r274683 : #i103905# allow to transport ODF version to the signing component 2009-08-05 14:58:12 +0200 jl  r274673 : #i103989# documentsignature now signes all streams except documentsignatures.xml, all streams are processed as binary files 2009-08-05 12:00:32 +0200 mav  r274648 : #i103905# allow to transport ODF version to the signing component 2009-08-04 10:57:04 +0200 jl  r274612 : #i103989# added XInitialization 2009-07-31 10:32:27 +0200 mav  r274516 : #i103905# use zip storage to sign documents 2009-07-30 14:01:33 +0200 mav  r274489 : #i103906# optimize the usage of temporary medium 2009-07-30 14:00:28 +0200 mav  r274488 : #i103906# optimize the usage of temporary medium 2009-07-30 13:59:09 +0200 mav  r274487 : #i103906# optimize the usage of temporary medium 2009-07-30 13:50:44 +0200 mav  r274485 : #i103906# optimize the usage of temporary medium 2009-07-30 13:49:53 +0200 mav  r274484 : #i103906# optimize the usage of temporary medium 2009-07-30 13:49:13 +0200 mav  r274483 : #i103906# optimize the usage of temporary medium 2009-07-30 13:47:09 +0200 mav  r274482 : #i103905#,#i103906# let the signing process use zip-storage; optimize the usage of temporary medium 2009-07-21 09:10:31 +0200 mav  r274159 : CWS-TOOLING: rebase CWS encsig09 to trunk@273468 (milestone: DEV300:m51) 2009-05-05 08:39:01 +0200 mav  r271496 : #i100832# allow to sign macros only when there are any


2009-09-17  Ivo Hinkelmann  <ihi@openoffice.org>  [98bb436d85dbe27495b10b1ae7447de2ce804ef0]

CWS-TOOLING: integrate CWS defaultdoclang 2009-08-21 14:44:21 +0200 cmc  r275260 : CWS-TOOLING: rebase CWS defaultdoclang to trunk@275001 (milestone: DEV300:m55) 2009-08-10 17:43:32 +0200 cmc  r274833 : CWS-TOOLING: rebase CWS defaultdoclang to trunk@274622 (milestone: DEV300:m54) 2009-07-24 11:46:58 +0200 cmc  r274297 : CWS-TOOLING: rebase CWS defaultdoclang to trunk@274203 (milestone: DEV300:m53) 2009-07-10 12:22:16 +0200 cmc  r273884 : #i99577# tweak the widths a bit 2009-07-08 15:17:58 +0200 cmc  r273834 : #i99577 tidy up indentation 2009-07-04 16:09:18 +0200 cmc  r273721 : #i99577# a "default" document language that reflects what the locale language is


2009-09-17  Ivo Hinkelmann  <ihi@openoffice.org>  [bd46a3480efd0d7dc3f14b322d583d22698aad6b]

CWS-TOOLING: integrate CWS dr69 2009-09-09 11:45:28 +0200 dr  r275979 : suncc failure 2009-09-09 11:33:34 +0200 dr  r275977 : gcc warning 2009-09-09 11:09:02 +0200 er  r275976 : #i87171# reworked name check for creating defined names 2009-09-09 10:38:02 +0200 dr  r275973 : adapt changes in oox base class 2009-09-09 10:21:03 +0200 dr  r275969 : remove faulty pagesize stuff 2009-09-09 10:20:13 +0200 dr  r275968 : remove faulty pagesize stuff 2009-09-08 20:24:39 +0200 nn  r275958 : #i104899# interpret cells when creating chart listener after loading 2009-09-08 16:05:37 +0200 er  r275937 : ScXMLDDELinkContext::EndElement: Excel writes bad ODF <table:dde-link> <table:table> without <table:table-column>'s table:number-columns-repeated attribute; be lenient ... 2009-09-08 13:14:54 +0200 er  r275925 : #i103315# handle external references in Excel's ODF msoxl namespace 2009-09-07 17:37:18 +0200 dr  r275907 : #i104753# crash when deleting cell with note 2009-09-07 14:02:29 +0200 dr  r275896 : #i103520# reworked sheet name buffer to resolve internal hyperlinks, fix almost all remaining problems with external links in BIFF, fix auto color import for BIFF 2009-09-06 20:01:05 +0200 er  r275862 : #i35913# fix regression introduced by integration of CWS fhawfixes1; patch from <wsfulton> 2009-09-05 18:32:00 +0200 er  r275847 : #i104156# merge #i103918# from uncloned dr68ooo311 2009-09-05 18:19:23 +0200 er  r275846 : #i104156# merge #i103317# from uncloned dr68ooo311 2009-09-05 17:32:12 +0200 er  r275844 : #i104484# glueState: correct casts in range bounds; patch from <cmc> slightly modified 2009-09-03 17:26:38 +0200 dr  r275764 : #i103520# handle apostrophs in sheet names in internal URLs 2009-09-03 17:21:26 +0200 dr  r275763 : #i95271# show text formatting in temp notes 2009-09-03 12:24:52 +0200 dr  r275747 : unused declaration 2009-09-02 21:33:03 +0200 dr  r275727 : #i96438# cleanup color handling in xls filter, extend VML color parser 2009-09-02 15:39:57 +0200 dr  r275715 : #158571# #i96438# accept also VML colors in the form '#RRGGBB [xyz]' 2009-09-02 15:16:36 +0200 dr  r275714 : #158571# #i96438# set note text 2009-09-02 14:59:33 +0200 dr  r275713 : #158571# #i96438# load custom line dashes from DrawingML and VML 2009-09-02 11:53:35 +0200 dr  r275702 : #158571# #i96438# import VML fill gradients 2009-08-31 19:28:10 +0200 dr  r275632 : #158571# #i96438# more vml formatting 2009-08-31 14:29:30 +0200 dr  r275606 : #158571# #i96438# changed handling of xml token ids/names 2009-08-28 18:25:26 +0200 dr  r275545 : #158571# #i96438# preparations for and basic support of VML shape formatting, load spreadsheet cell notes position, formatting, and visibility 2009-08-25 19:08:31 +0200 dr  r275378 : #i103390# dump BIFF STYLEEXT 2009-08-25 18:28:50 +0200 dr  r275377 : #i103390# improve built-in style handling 2009-08-25 18:27:38 +0200 dr  r275376 : #i103390# improve built-in style handling 2009-08-04 18:49:40 +0200 dr  r274629 : CWS-TOOLING: rebase CWS dr69 to trunk@274622 (milestone: DEV300:m54)


2009-09-17  hb137859  <hb137859@x42-so34>  [54a59a748af6f3d2cbe72201bd9ed89d6973ca30]

merged DEV300_m59


2009-09-17  Thomas Lange  <tl@openoffice.org>  [43f2d30dc3cdd12408bc00bf5b94f8e5591b522f]

#i1601# Sentence case, Title case, and Toggle case transliteration added


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [b0315ff1546c2c73e6b1a49998e07083750602f5]

removed previously commented out code block.  ScDBQueryDataIterator only processes one field; it is no longer necessary to wrap around over multiple columns.


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [a9d6758becf64fcefd6fd2433750cd6284378c95]

last cleanup - use vector to store an array of ScQueryEntry, instead of the old-fashioned c-style dynamic array.


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [675fbe248d9ea774ae3385f08bee24a5feba7b93]

don't modify the return value unless the search is successful.


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [51bbc3a562d49e8be72ef9a75daf1ec1c382986b]

removed the duplicated ScTable::ValidQuery.


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [8f12b006543bb7ad6193673f85cbef91cd2e88fb]

code cleanup.


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [b3fba08cb8f014509d8101fd757bf2c26950630a]

#i102750# fixed DGET.


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [40a3f4faac968cece156339a97cdbf1461615510]

Moved the string flag from the iterator to the query param struct.


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [5a40adcdd575f213c4a669067c93b9c7e6e4d383]

renamed: ScDBQueryValueIterator -> ScDBQueryDataIterator.


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [925eb1c5d59c384055621379f0f46d8ae3210300]

changed signature of ScDBQueryValueIterator's methods to allow retrieving string values.


2009-09-16  Ivo Hinkelmann  <ihi@openoffice.org>  [b7c4bf840ee95c82b8a2df28483b0ccfe83626e6]

CWS-TOOLING: integrate CWS impressnotes01 2009-09-11 13:52:41 +0200 cl  r276061 : CWS-TOOLING: rebase CWS impressnotes01 to trunk@276043 (milestone: DEV300:m58) 2009-09-10 15:44:57 +0200 cl  r276039 : #i103139# continued work on the impress annotation feature 2009-09-10 14:52:31 +0200 cl  r276032 : #i103139# continued work on the impress annotation feature 2009-09-10 14:50:32 +0200 cl  r276031 : #i103139# continued work on the impress annotation feature 2009-09-10 14:48:29 +0200 cl  r276030 : #i103139# continued work on the impress annotation feature 2009-09-10 11:36:11 +0200 cl  r276027 : #i103139# continued work on the impress annotation feature 2009-09-09 20:22:41 +0200 cl  r276018 : #i103139# continued work on the impress annotation feature 2009-09-09 20:21:45 +0200 cl  r276017 : #i103139# continued work on the impress annotation feature 2009-09-09 19:32:29 +0200 sj  r276015 : #i103139# added import of comments (ppt binary) 2009-09-09 19:31:07 +0200 sj  r276014 : #i103139# added import of comments (ppt binary) 2009-09-09 19:16:41 +0200 cl  r276011 : #i103139# continued work on the impress annotation feature 2009-09-09 19:15:19 +0200 cl  r276010 : #i103139# continued work on the impress annotation feature 2009-09-09 16:27:19 +0200 cl  r276001 : #i104579# fixed isEmptyPresObj() 2009-09-09 15:12:02 +0200 cl  r275997 : #i103139# continued work on the impress annotation feature 2009-09-09 15:06:29 +0200 sj  r275996 : #i103139# added import of comments (ppt binary) 2009-09-09 14:53:01 +0200 cl  r275995 : #i103139# continued work on the impress annotation feature 2009-09-09 14:51:32 +0200 cl  r275994 : #i103139# continued work on the impress annotation feature 2009-09-09 12:11:17 +0200 cl  r275982 : #i103139# continued work on the impress annotation feature 2009-09-09 11:47:55 +0200 cl  r275981 : #i103139# continued work on the impress annotation feature 2009-09-09 11:47:23 +0200 cl  r275980 : #i103139# continued work on the impress annotation feature 2009-09-09 11:44:47 +0200 cl  r275978 : #i104315# added missing tab pages 2009-09-08 16:04:44 +0200 cl  r275936 : #i103139# continued work on the impress annotation feature 2009-09-08 16:03:28 +0200 cl  r275935 : #i103139# continued work on the impress annotation feature 2009-09-08 11:45:47 +0200 cl  r275920 : #i103139# continued work on the impress annotation feature 2009-09-08 11:41:51 +0200 cl  r275919 : #i103139# continued work on the impress annotation feature 2009-09-07 18:30:55 +0200 cl  r275910 : #i103139# continued work on the impress annotation feature 2009-09-07 18:29:37 +0200 cl  r275909 : #i103139# continued work on the impress annotation feature 2009-09-07 17:25:43 +0200 cl  r275905 : #i103139# continued work on the impress annotation feature 2009-09-07 12:00:28 +0200 cl  r275884 : #i103139# continued work on the impress annotation feature 2009-09-06 14:14:00 +0200 cl  r275859 : #i103139# continued work on the impress annotation feature 2009-09-05 20:57:24 +0200 cl  r275854 : #i103139# continued work on the impress annotation feature 2009-09-05 20:56:29 +0200 cl  r275853 : #i103139# continued work on the impress annotation feature 2009-09-05 20:55:27 +0200 cl  r275852 : #i103139# continued work on the impress annotation feature 2009-09-05 20:11:42 +0200 cl  r275851 : #i103139# continued work on the impress annotation feature 2009-09-05 20:11:09 +0200 cl  r275850 : #i103139# continued work on the impress annotation feature 2009-09-05 17:43:33 +0200 cl  r275845 : #i103139# continued work on the impress annotation feature 2009-09-05 17:04:41 +0200 cl  r275843 : #i103139# continued work on the impress annotation feature 2009-09-05 17:03:26 +0200 cl  r275842 : #i103139# continued work on the impress annotation feature 2009-09-05 17:02:53 +0200 cl  r275841 : #i103139# continued work on the impress annotation feature 2009-09-05 13:15:04 +0200 pl  r275839 : #i104823# WB_NEEDSFOCUS 2009-09-05 13:14:41 +0200 pl  r275838 : #i104823# WB_NEEDSFOCUS 2009-09-04 17:48:21 +0200 cl  r275826 : #i103139# continued work on the impress annotation feature 2009-09-04 17:35:03 +0200 cl  r275825 : #i103139# continued work on the impress annotation feature 2009-09-04 17:15:46 +0200 cl  r275824 : #i103139# continued work on the impress annotation feature 2009-09-04 17:12:54 +0200 cl  r275823 : #i103139# continued work on the impress annotation feature 2009-09-04 17:05:23 +0200 cl  r275822 : #i103139# continued work on the impress annotation feature 2009-09-04 16:48:28 +0200 cl  r275820 : #i103139# continued work on the impress annotation feature 2009-09-04 16:44:02 +0200 cl  r275818 : #i103139# continued work on the impress annotation feature 2009-09-04 16:43:23 +0200 cl  r275817 : #i103139# continued work on the impress annotation feature 2009-09-04 16:06:04 +0200 cl  r275812 : #i103139# continued work on the impress annotation feature 2009-09-04 16:05:45 +0200 cl  r275811 : #i103139# continued work on the impress annotation feature 2009-09-04 15:04:33 +0200 cl  r275806 : #i103139# continued work on the impress annotation feature 2009-09-04 11:43:14 +0200 cl  r275795 : #i103139# continued work on the impress annotation feature 2009-09-04 11:27:10 +0200 cl  r275793 : #i103139# continued work on the impress annotation feature 2009-09-04 11:10:02 +0200 cl  r275792 : #i103139# continued work on the impress annotation feature 2009-09-04 11:07:05 +0200 cl  r275790 : #i103139# continued work on the impress annotation feature 2009-09-04 11:05:01 +0200 cl  r275789 : #i103139# continued work on the impress annotation feature 2009-09-04 10:55:51 +0200 cl  r275785 : #i103139# renamed notes to comments 2009-09-04 10:54:57 +0200 cl  r275784 : #i103139# renamed notes to comments 2009-09-03 20:37:35 +0200 cl  r275772 : #i103139# continued work on the impress annotation feature 2009-09-03 20:35:31 +0200 cl  r275771 : #i103139# continued work on the impress annotation feature 2009-09-01 18:17:55 +0200 cl  r275680 : #i103139# continued work on the impress annotation feature 2009-09-01 18:15:08 +0200 cl  r275678 : #i103139# continued work on the impress annotation feature 2009-09-01 18:13:38 +0200 cl  r275677 : #i103139# continued work on the impress annotation feature 2009-08-18 12:35:42 +0200 cl  r275089 : fixed merge error 2009-08-18 11:39:58 +0200 cl  r275086 : CWS-TOOLING: rebase CWS impressnotes01 to trunk@275001 (milestone: DEV300:m55) 2009-07-30 13:45:10 +0200 cl  r274481 : fixed merge errrors 2009-07-30 13:41:21 +0200 cl  r274480 : fixed merge errrors 2009-07-30 13:39:40 +0200 cl  r274478 : fixed merge errrors 2009-07-22 18:07:30 +0200 cl  r274256 : CWS-TOOLING: rebase CWS impressnotes01 to trunk@273858 (milestone: DEV300:m52) 2009-07-21 17:21:31 +0200 cl  r274208 : merging 2009-07-20 14:28:34 +0200 cl  r274137 : #i103139# annotation support for impress 2009-07-20 14:28:04 +0200 cl  r274136 : #i103139# annotation support for impress 2009-07-20 14:27:20 +0200 cl  r274135 : #i103139# annotation support for impress 2009-07-20 14:21:17 +0200 cl  r274134 : #i103139# annotation support for impress 2009-07-20 14:20:56 +0200 cl  r274133 : #i103139# annotation support for impress 2009-07-20 14:20:09 +0200 cl  r274132 : #i103139# annotation support for impress 2009-07-20 14:19:00 +0200 cl  r274131 : #i103139# annotation support for impress 2009-07-20 14:17:50 +0200 cl  r274130 : #i103139# annotation support for impress 2009-07-20 14:12:24 +0200 cl  r274129 : #i103139# annotation support for impress 2009-07-20 13:52:03 +0200 cl  r274128 : #i103139# annotation support for impress 2009-07-20 13:51:11 +0200 cl  r274127 : #i103139# annotation support for impress 2009-07-20 13:48:59 +0200 cl  r274126 : #i103139# annotation support for impress 2009-07-20 13:43:56 +0200 cl  r274125 : #i103139# annotation support for impress 2009-07-20 13:31:55 +0200 cl  r274123 : #i103139# annotation support for impress 2009-07-20 13:30:45 +0200 cl  r274122 : #i103139# annotation support for impress


2009-09-16  Ivo Hinkelmann  <ihi@openoffice.org>  [9d2859b37189b8945f1c0e21983c2c35379d9789]

CWS-TOOLING: integrate CWS l10nframework01


2009-09-16  Release Engineers  <releng@openoffice.org>  [397c7236d706b3b916a746686c91d474a77a8ccd]

Create DEV300_m59 milestone tag from trunk@276191


2009-09-16  Kohei Yoshida  <kyoshida@novell.com>  [174c3c8921e6b7670e9be665c33a35e48fce690c]

#i102750# fixed DCOUNT and DCOUNT2.


2009-09-15  Kohei Yoshida  <kyoshida@novell.com>  [273d64160792ffa17bfa2e13f305edba5d5e76c5]

skip empty matrix values when iterating through them.


2009-09-15  Kohei Yoshida  <kyoshida@novell.com>  [9953c707b8af906ed186f1fae8ed00852ab93ff6]

removed some debug statements.


2009-09-15  Kohei Yoshida  <kyoshida@novell.com>  [744013922c0b36bfce776b12fcee765e31e59b99]

check whether or not the data range has header row.


2009-09-15  Kohei Yoshida  <kyoshida@novell.com>  [5fb9855a91f4f6d8ee8c188b7798b780d2b06c43]

added static method to fill query options that are always the same for all database function queries.


2009-09-15  Kohei Yoshida  <kyoshida@novell.com>  [c296053f9b9363516cf2c751962bf3a9621286b4]

#i102750# fully functioning ValidQuery() equivalent for the external db ranges.


2009-09-15  Kohei Yoshida  <kyoshida@novell.com>  [0af00b1302b5e1ba52e60d0bc5f3c8ecdd2b19f5]

#i102750# supported external db range for DSUM for by-value query entries.


2009-09-14  Kohei Yoshida  <kyoshida@novell.com>  [bc61b4b70e110f9e8dce1c8abe42af3ac125e3a8]

Made string matching case insensitivive where it needs to be.


2009-09-14  Kohei Yoshida  <kyoshida@novell.com>  [34de9817c7e2e395a47cfbe5b07b3188be189402]

added javadoc comments for methods & fixed internal range access bug.


2009-09-14  Kohei Yoshida  <kyoshida@novell.com>  [8d790f307a7c3415d8408fed9b9e304a2223f170]

#i102750# moved fillQueryEntries() into the base class and made it non-virtual.  Now DBSum works with an external range as the query range.


2009-09-14  Kohei Yoshida  <kyoshida@novell.com>  [a8eaf97b25a736d38352f1e0454e0dc0adc4753a]

#i102750# More refactoring of query parameter code.


2009-09-14  Kurt Zenker  <kz@openoffice.org>  [21a6601c046f274c7f75569aed8004ba21d25fac]

#i10000# build break fixed


2009-09-14  Kurt Zenker  <kz@openoffice.org>  [785b06b3909cadb26d72c9ff24ebec79518e38b3]

CWS-TOOLING: integrate CWS chart41 2009-09-07 11:17:59 +0200 iha  r275880 : #i104854# ODF: Fallback to bar chart for surface charts as long as surface charts are not implemented 2009-09-03 10:07:24 +0200 iha  r275745 : #i104020# Y axis scaling  problem with stock chart 2009-09-02 17:11:42 +0200 iha  r275723 : #i103984# XChartDataArray / setDataArray broken 2009-09-02 17:05:16 +0200 iha  r275721 : #i103984# XChartDataArray / setDataArray broken 2009-08-31 18:18:21 +0200 iha  r275629 : #i103076# ODF, chart from MS-Office2007sp2 doesn't load  caused be different  xlink:href syntax 2009-08-28 18:35:52 +0200 iha  r275548 : #i103460# ODF charts without svg:width and svg:height are not imported correctly 2009-08-28 18:35:25 +0200 iha  r275547 : #i103460# ODF charts without svg:width and svg:height are not imported correctly 2009-08-28 18:25:45 +0200 iha  r275546 : #i103460# ODF charts without svg:width and svg:height are not imported correctly 2009-08-28 18:23:21 +0200 iha  r275544 : #i103460# ODF charts without svg:width and svg:height are not imported correctly 2009-08-28 18:18:34 +0200 iha  r275543 : #i103460# ODF charts without svg:width and svg:height are not imported correctly 2009-08-27 15:57:20 +0200 iha  r275490 : #i104160# report designer broken


2009-09-11  Kurt Zenker  <kz@openoffice.org>  [cc6b2214f4d109c075466e0792d6e1a9ec1915c8]

CWS-TOOLING: integrate CWS odff06 2009-09-10 18:58:49 +0200 dr  r276042 : #i104954# excel export: fixed broken handling of unary operators 2009-09-06 19:30:43 +0200 er  r275861 : warnings 2009-09-05 19:48:41 +0200 er  r275849 : warnings; wntmsci12 tries to be too smart 2009-09-05 19:37:47 +0200 er  r275848 : warnings 2009-09-03 22:45:42 +0200 er  r275776 : #i5658# GetCellValueOrZero: missed the formula cell case 2009-09-03 14:28:41 +0200 er  r275752 : #i90759# better description of ZTEST 2009-09-03 03:34:03 +0200 er  r275739 : warnings 2009-09-03 03:31:19 +0200 er  r275738 : warnings 2009-09-03 03:16:46 +0200 er  r275737 : warnings 2009-09-03 03:11:42 +0200 er  r275736 : CELLTYPE_DESTROYED only if DBG_UTIL 2009-09-03 03:06:31 +0200 er  r275735 : warnings 2009-09-03 03:00:30 +0200 er  r275734 : warnings 2009-09-03 02:32:35 +0200 er  r275733 : fix broken rebase merge 2009-09-02 22:27:53 +0200 er  r275730 : CWS-TOOLING: rebase CWS odff06 to trunk@275331 (milestone: DEV300:m56) 2009-09-02 14:45:05 +0200 er  r275712 : #i5658# calculate with string operands as long as they unambiguously represent an integer or ISO 8601 date and/or time value 2009-08-29 22:05:31 +0200 er  r275559 : #i99140# CONVERT_ADD new conversions as per ODFF; patch from <lvyue>, slightly changed 2009-08-25 13:23:59 +0200 er  r275349 : #i90759# rewording of ZTEST description 2009-08-21 00:10:22 +0200 er  r275204 : #i82007# correct description of POWER and parameters; patch from <regina> 2009-08-20 23:58:20 +0200 er  r275203 : #i74704# B correct calculation for SP arguments 0 and 1; patch from <regina> 2009-08-20 22:58:57 +0200 er  r275201 : #i90759# ZTEST correct calculation using the 3rd parameter sigma 2009-08-14 17:55:45 +0200 er  r275000 : #i81214# LOOKUP with single values, data arrays and result arrays; based on a patch from <lvyue> 2009-08-11 00:47:48 +0200 er  r274845 : unxlngi6 compiler warnings 2009-08-11 00:43:06 +0200 er  r274844 : unxlngi6 compiler warnings 2009-08-10 23:59:05 +0200 er  r274843 : #91351# make HYPERLINK accept and return numeric values, propagate errors 2009-07-08 18:46:00 +0200 dr  r273846 : #i102022# export 3D refs to cond. formats and data validation 2009-07-02 17:59:40 +0200 dr  r273667 : #i102702# adapt changes from sc/source/filter/excel 2009-07-02 15:20:37 +0200 dr  r273656 : #i102702# reimplementation of formula token class export 2009-07-02 14:41:02 +0200 er  r273653 : a surrogate with value 0x10000 is also valid (ran into when testing #i99900# Calc's UNICHAR function), and Unicode ends at 0x10ffff 2009-07-01 00:10:16 +0200 er  r273536 : #i99900# iterateCodePoints: check index against string length to avoid assertion; caught this when testing Calc's new UNICHAR function, with the result of a surrogate pair forming one character. 2009-07-01 00:03:57 +0200 er  r273535 : #i99900# new UNICODE and UNICHAR functions; patch from <tanchengbiao> 2009-06-15 16:42:06 +0200 er  r272999 : merge patch from #i102701 2009-06-15 11:15:16 +0200 dr  r272970 : #i102702# in BIFF, the SKIP flag may be missing for the tAttrSkip token 2009-06-11 13:27:46 +0200 er  r272867 : CWS-TOOLING: rebase CWS odff06 to trunk@272827 (milestone: DEV300:m50) 2009-04-30 18:28:02 +0200 er  r271423 : #i94618# on status bar, ignore error of cell for COUNT and COUNTA if selection; patch from <kohei> 2009-04-30 13:58:44 +0200 er  r271413 : get rid of that ugly mail address thingie in RTL_LOGFILE_CONTEXT_AUTHOR introduced by CWS frmdlg ... 2009-04-30 12:32:44 +0200 er  r271411 : #i94618# do not display error of cell for COUNT and COUNTA status bar functions 2009-04-30 01:32:38 +0200 er  r271399 : #i101316# improve accuracy of STDEV on equal values; patch from <regina> 2009-04-30 01:18:54 +0200 er  r271398 : #i97605# improve accuracy of ASINH and ACOSH; patch from <regina> 2009-04-30 00:46:00 +0200 er  r271397 : #i59153# improve accuracy of MOD; patch from <regina> 2009-04-30 00:29:43 +0200 er  r271396 : #i69069# improve accuracy of NORMSDIST and POISSON; patch from <regina> 2009-04-29 23:53:28 +0200 er  r271395 : #i100119# NORMDIST and LOGNORMDIST optional parameters, plus improvement in accuracy also of NORMSDIST (part of i69069); patch from <regina> 2009-04-28 18:22:07 +0200 er  r271337 : #i97052# REPLACE with no length of text to be removed simply inserts new text; patch from <lvyue>, slightly modified 2009-03-24 17:29:36 +0100 er  r269982 : #i97091# moved implementation of erf() and erfc() from scaddins to sal to provide C99 functions for compilers lacking it


2009-09-11  Kurt Zenker  <kz@openoffice.org>  [8ab0b546c97dac635c2a04e772d9f912102dc76d]

CWS-TOOLING: integrate CWS chartuseability01 2009-09-07 17:26:44 +0200 iha  r275906 : CWS-TOOLING: rebase CWS chartuseability01 to trunk@275801 (milestone: DEV300:m57) 2009-08-27 13:48:16 +0200 iha  r275481 : #7049# listbox to select chart elements 2009-08-27 11:54:53 +0200 iha  r275464 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-26 16:49:58 +0200 iha  r275435 : #i102820# added missing case 'floor' 2009-08-26 15:33:51 +0200 iha  r275427 : #i102820# make 'insert legend' work properly 2009-08-25 16:35:00 +0200 ufi  r275369 : i104087 2009-08-25 15:12:17 +0200 iha  r275360 : #i104087# 'Object Properties' -> 'Format Selection' 2009-08-25 15:11:31 +0200 iha  r275359 : #i104087# 'Object Properties' -> 'Format Selection' 2009-08-25 15:11:15 +0200 iha  r275358 : #i104087# 'Object Properties' -> 'Format Selection' 2009-08-25 11:57:43 +0200 iha  r275344 : #i104087# changed behavior of insert menu 2009-08-18 12:53:54 +0200 oc  r275093 : #i104082,104086,104089# multiple changes because of changed chartUI 2009-08-10 16:46:17 +0200 ufi  r274824 : i104083 i104087 i104090 2009-08-07 14:04:34 +0200 iha  r274763 : #7049# listbox to select chart elements 2009-08-07 13:06:05 +0200 iha  r274760 : #7049# listbox to select chart elements 2009-08-07 13:05:06 +0200 iha  r274759 : #7049# listbox to select chart elements 2009-08-07 12:32:31 +0200 iha  r274756 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-07 12:31:54 +0200 iha  r274755 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-06 19:00:48 +0200 iha  r274742 : #i103593# make insert menu behavior selection dependent 2009-08-06 19:00:14 +0200 iha  r274741 : #i103593# make insert menu behavior selection dependent 2009-08-06 15:34:01 +0200 iha  r274731 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-06 14:39:20 +0200 iha  r274728 : #i86146# ease adding R-squared value with an equation 2009-08-06 14:37:02 +0200 iha  r274727 : #i86146# ease adding R-squared value with an equation 2009-08-06 13:37:54 +0200 iha  r274724 : #i86146# ease adding R-squared value with an equation 2009-08-06 13:37:15 +0200 iha  r274723 : #i86146# ease adding R-squared value with an equation 2009-08-06 13:04:27 +0200 iha  r274722 : #i103593# make insert menu behavior selection dependent 2009-08-06 13:03:35 +0200 iha  r274721 : #i103593# make insert menu behavior selection dependent 2009-08-05 18:26:31 +0200 iha  r274693 : #i104033# inconsistent wording 'error indicator' <-> 'error bar' 2009-08-05 16:51:45 +0200 iha  r274688 : #i104028# rename font tabpage 'Characters'->'Font' 2009-08-05 16:30:21 +0200 iha  r274685 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-05 15:34:11 +0200 iha  r274680 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-05 15:32:43 +0200 iha  r274679 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-05 15:31:26 +0200 iha  r274678 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-05 15:17:51 +0200 iha  r274676 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-05 15:16:22 +0200 iha  r274675 : #i58163# #i69422# #i102820# enhance chart context menu 2009-08-05 14:58:59 +0200 iha  r274674 : #7049# listbox to select chart elements 2009-08-05 14:33:54 +0200 iha  r274669 : #7049# listbox to select chart elements 2009-08-05 14:22:17 +0200 iha  r274665 : #7049# listbox to select chart elements 2009-08-05 13:21:05 +0200 iha  r274656 : #i102820# offer insertion of several elements in context menu also if nothing is selected 2009-08-05 11:56:06 +0200 iha  r274647 : #7049# listbox to select chart elements 2009-08-05 11:43:40 +0200 iha  r274645 : #7049# listbox to select chart elements 2009-07-24 19:46:50 +0200 iha  r274318 : #i58163# #i69422# #i102820# enhance chart context menu 2009-07-24 16:23:13 +0200 iha  r274313 : #i58163# #i69422# #i102820# enhance chart context menu 2009-07-24 16:13:22 +0200 iha  r274311 : #i58163# #i69422# #i102820# enhance chart context menu


2009-09-10  Release Engineers  <releng@openoffice.org>  [077574a53512824a398065fe352235fb6dd87a54]

Create DEV300_m58 milestone tag from trunk@276042


2009-09-10  Kohei Yoshida  <kyoshida@novell.com>  [65d8a382139b465d50d56eb2909286cf70574ad0]

rebased to DEV300_m57.


2009-09-10  Kohei Yoshida  <kyoshida@novell.com>  [abeb53d109e7c310eecdc6d1f16a89896cb5aa8b]

rebased to DEV300_m57.


2009-09-10  Kohei Yoshida  <kyoshida@novell.com>  [8f2acb18d37401b6b3cf33482c575cf4aed9c7e7]

#i102750# renamed several classes to make them sound more associated with database ranges.


2009-09-09  Kohei Yoshida  <kyoshida@novell.com>  [44d07ab4f69317a8624c58b88f510e01902ca7ec]

#i102750# more work toward supporting external refs in DB functions.  Still a long way to go...


2009-09-09  Kohei Yoshida  <kyoshida@novell.com>  [5a9783e305852ab2cd3ef81b04df6d552fec7730]

#i102750# initial refactoring in an effort to support external references in DSUM, DGET etc.  Not finished yet.


2009-09-09  Mathias Bauer  <mba@openoffice.org>  [e901d3e3e0e407095fece2463f43036d66d52722]

merge commit to DEV300_m57


2009-09-09  Oliver Bolte  <obo@openoffice.org>  [6932a49811640d8170b524626d5507dacf75b42c]

CWS-TOOLING: integrate CWS koheimultirangecopy 2009-08-29 08:19:57 +0200 kohei  r275558 : A bit of cleanup & comments. 2009-08-29 08:10:31 +0200 kohei  r275557 : removed duplicated code block. 2009-08-29 07:30:33 +0200 kohei  r275556 : #i104551# fixed it. 2009-08-28 17:23:28 +0200 kohei  r275541 : #i104553# fixed a crash on pasting over existing data.  This also fixes notes being destroyed as originally reported in the IZ entry. 2009-08-27 23:36:17 +0200 kohei  r275510 : #i104550# fixed.  All I had to do was to call MarkToSimple() before examining the geometry of the marked ranges. 2009-08-27 18:04:11 +0200 kohei  r275501 : CWS-TOOLING: rebase CWS koheimultirangecopy to trunk@275331 (milestone: DEV300:m56) 2009-08-21 11:37:20 +0200 dr  r275228 : #i10000# another wntmsci12 warning 2009-08-21 09:33:32 +0200 dr  r275218 : #i10000# sunncc warnings 2009-08-20 20:01:15 +0200 kohei  r275196 : Let's not initialize a variable with itself, which is not yet initialized.  This was obviously a silly human error. 2009-08-05 23:24:16 +0200 kohei  r274702 : correct error message on matrix fragment. 2009-08-05 20:00:12 +0200 kohei  r274699 : removed header includes for indexmap.hxx. 2009-08-05 19:54:24 +0200 kohei  r274698 : removed ScIndexMap entirely - we don't need this any more. 2009-08-05 19:53:01 +0200 kohei  r274697 : Removed duplicated methods that use ScIndexMap.  We should now use ScRangeData::IndexMap across the board. 2009-08-05 18:45:17 +0200 kohei  r274695 : Refactored code to remove redundant ScDocument::CopyToClip method. 2009-07-21 18:03:54 +0200 kohei  r274209 : #i25855# initial commit of the patch from ooo-build.  It's buildable.


2009-09-08  Thomas Benisch  <tbe@openoffice.org>  [fe0104cfa0eaa8e971e40c1438bbce0090825a3b]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-08  Thomas Benisch  <tbe@openoffice.org>  [38b4a351cd415c941494abcb7c236fb324863350]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-08  Oliver Bolte  <obo@openoffice.org>  [0240ccbd00adba13b985dcb85ee2fed547ce041c]

CWS-TOOLING: integrate CWS vcl104


2009-09-08  Thomas Benisch  <tbe@openoffice.org>  [4297fa01a3f202f33f9ed9c1391e477f74172f16]

#i12587# Inserting/editing arbitrary text objects in chart


2009-09-08  Oliver Bolte  <obo@openoffice.org>  [8e1005283a7fb3f087131d24240f5a4f325d3c9d]

CWS-TOOLING: integrate CWS oj18 2009-08-21 15:08:49 +0200 oj  r275263 : wrong check 2009-08-21 08:56:01 +0200 oj  r275215 : missing not 2009-08-20 07:27:13 +0200 oj  r275164 : use new method from global 2009-08-19 10:22:35 +0200 oj  r275138 : call GetLocale instead of pLocale 2009-08-18 10:39:32 +0200 oj  r275082 : missing header include 2009-08-18 10:09:44 +0200 oj  r275081 : new methods at global 2009-08-18 10:09:00 +0200 oj  r275080 : unused var 2009-08-18 08:59:04 +0200 oj  r275078 : move files from classes to xml 2009-08-17 14:58:16 +0200 oj  r275056 : CWS-TOOLING: rebase CWS oj18 to trunk@275001 (milestone: DEV300:m55) 2009-08-17 13:29:44 +0200 oj  r275047 : compile error 2009-08-17 13:27:47 +0200 oj  r275045 : compile error 2009-08-17 11:44:54 +0200 oj  r275040 : add dep 2009-07-22 14:26:05 +0200 oj  r274240 : move unused services into fwl 2009-07-22 14:25:35 +0200 oj  r274239 : move unused services into fwl 2009-07-22 13:47:45 +0200 oj  r274233 : remove some unused code 2009-07-22 09:06:20 +0200 oj  r274219 : export dbtoolsclient dbcharsethelper for sc 2009-07-22 08:48:58 +0200 oj  r274218 : create NumberFormatter on demand 2009-07-22 08:39:23 +0200 oj  r274217 : change char to sal_Char 2009-07-22 07:33:34 +0200 oj  r274214 : export dbtoolsclient dbcharsethelper for sc 2009-07-22 07:30:04 +0200 oj  r274213 : late init of numberformatter and breakiterator 2009-07-22 07:28:55 +0200 oj  r274212 : export dbtoolsclient dbcharsethelper for sc 2009-07-21 13:43:28 +0200 oj  r274196 : check if quick start is enbaled 2009-07-21 13:40:09 +0200 oj  r274195 : check config entry for UiEventsLogger 2009-07-21 13:37:40 +0200 oj  r274194 : code refactoring, remove of duplicate code and some late inits and removale of not needed files 2009-07-21 13:35:38 +0200 oj  r274193 : code refactoring, remove of duplicate code and some late inits and removale of not needed files 2009-07-21 13:33:41 +0200 oj  r274192 : doc meta data will now be created on demand 2009-07-21 13:13:40 +0200 oj  r274187 : load ldap functions on demand 2009-07-21 13:03:17 +0200 oj  r274183 : late init of TransliterationImpl 2009-07-21 12:36:10 +0200 oj  r274180 : late init of charClass


2009-09-07  Oliver Bolte  <obo@openoffice.org>  [daeedabf4bef5cba3c0cb5f5d87bda3d2f581149]

CWS-TOOLING: integrate CWS calcsheetdata 2009-08-13 16:18:48 +0200 nn  r274950 : #i102616# shared/remote files, better handling of formula results 2009-08-12 11:17:30 +0200 nn  r274884 : CWS-TOOLING: rebase CWS calcsheetdata to trunk@274622 (milestone: DEV300:m54) 2009-08-12 10:30:47 +0200 nn  r274881 : #i102616# some clean-up 2009-08-11 19:01:18 +0200 nn  r274876 : #i102616# store loaded namespaces, so prefixes remain valid 2009-08-11 19:00:49 +0200 nn  r274875 : #i102616# store loaded namespaces, so prefixes remain valid 2009-08-10 19:12:04 +0200 nn  r274835 : #i102616# detective, notes, encoding, error handling 2009-08-07 11:18:46 +0200 nn  r274751 : #i102616# use new method SvXMLAutoStylePoolP::AddNamed 2009-08-07 11:18:15 +0200 nn  r274750 : #i102616# new method SvXMLAutoStylePoolP::AddNamed 2009-08-06 18:02:42 +0200 nn  r274740 : #i102616# modification: shapes, notes, pending row heights; skip sheets in export iterator 2009-08-05 18:41:59 +0200 nn  r274694 : #i102616# handle text styles in notes 2009-08-03 18:55:59 +0200 nn  r274594 : #i102616# handle text styles in cells 2009-07-31 19:00:06 +0200 nn  r274548 : #i102616# handle styles for notes 2009-07-28 16:46:20 +0200 nn  r274414 : missed a conflict 2009-07-28 14:01:56 +0200 nn  r274404 : CWS-TOOLING: rebase CWS calcsheetdata to trunk@274203 (milestone: DEV300:m53) 2009-07-23 18:28:47 +0200 nn  r274278 : #i102616# handle table styles 2009-07-22 15:40:24 +0200 nn  r274244 : #i102616# handle row styles 2009-07-21 20:09:37 +0200 nn  r274211 : #i102616# handle column styles 2009-07-16 13:00:18 +0200 nn  r274043 : #i102616# invalidate all stream positions when inserting/deleting sheets 2009-07-15 17:41:15 +0200 nn  r274021 : #i102616# don't collect cell styles twice for copied sheets 2009-07-14 18:36:11 +0200 nn  r273985 : #i102616# allow to query stream position, clear buffer 2009-07-14 18:32:10 +0200 nn  r273984 : #i102616# allow to specify a name for an autostyle 2009-07-09 22:01:23 +0200 nn  r273870 : #i102616# copy stream for unchanged sheets 2009-07-08 18:11:42 +0200 nn  r273844 : #i102616# store stream positions of sheets 2009-06-24 19:08:18 +0200 nn  r273363 : #i102616# detect changed sheets since loading 2009-06-09 15:53:32 +0200 nn  r272774 : #i102616# store automatic cell style information after loading


2009-09-07  Oliver Bolte  <obo@openoffice.org>  [7d4b4231540c4602fdaaa7fb78e3e6c46d50c621]

CWS-TOOLING: integrate CWS dr72 2009-08-26 10:24:00 +0200 dr  r275402 : #i92645# CODEPAGE is encrypted... 2009-08-24 14:37:36 +0200 dr  r275316 : #i10000# enable exceptions for xlroot.cxx 2009-08-24 14:33:15 +0200 dr  r275313 : #i10000# link openssl under solaris correctly 2009-08-21 17:41:16 +0200 dr  r275267 : #i10000# unxlngi6 warning 2009-08-21 15:35:56 +0200 dr  r275265 : #i10000# remove files again, already deleted in previous milestone... 2009-08-21 11:24:57 +0200 dr  r275227 : #160401# port to DEV300 2009-08-21 09:53:45 +0200 dr  r275221 : #i92645# full support for encrypted Word2007 files 2009-08-21 09:50:52 +0200 dr  r275219 : #i92645# final changes for decryption 2009-08-20 19:48:40 +0200 dr  r275195 : #i104370# missing parentheses, patch from cmc 2009-08-20 18:28:22 +0200 dr  r275193 : #i92645# rework package decryption to repair 'Reload Document' functionality 2009-08-20 13:55:14 +0200 dr  r275179 : #i92645# add new property names 2009-08-19 19:24:21 +0200 dr  r275159 : #160401# open writeprotected files read-only, merged to DEV300 2009-08-18 14:41:47 +0200 dr  r275109 : #i92645# add 'Aborted' property 2009-08-18 11:20:34 +0200 dr  r275084 : #i92645# write back password to medium 2009-08-17 17:52:51 +0200 dr  r275066 : #i92645# detect Word2007 docs with oox detection impl, this adds support of encryped Word2007; correct detection of templates and macro-enabled docs 2009-08-17 17:51:31 +0200 dr  r275065 : #i92645# detect Word2007 docs with oox detection impl, this adds support of encryped Word2007; correct detection of templates and macro-enabled docs 2009-08-17 11:06:39 +0200 dr  r275035 : #i92645# more password handling 2009-08-17 11:05:21 +0200 dr  r275034 : #i92645# use new password input mechanism for BIFF filter and dumper in oox 2009-08-14 16:33:53 +0200 nn  r274996 : #i104228# DelBroadcastAreasInRange: remove area from hash_set before deleting 2009-08-14 16:27:12 +0200 nn  r274995 : #i104059# restore a change lost in the integration of fhawfixes1 2009-08-14 16:24:00 +0200 dr  r274994 : #i92645# adapt BIFF import to latest changes 2009-08-14 16:21:30 +0200 dr  r274993 : #i92645# adapt BIFF import to latest changes 2009-08-14 16:20:43 +0200 dr  r274992 : #i92645# do not add default passwords to media descriptor 2009-08-13 19:20:45 +0200 dr  r274965 : #i92645# add a helper to request a document password 2009-08-13 19:09:35 +0200 dr  r274964 : #i92645# add a helper to request a document password 2009-08-13 19:09:03 +0200 dr  r274963 : #i92645# add a helper to request a document password 2009-08-13 14:35:01 +0200 dr  r274946 : #i92645# comment typo 2009-08-13 14:33:47 +0200 dr  r274945 : #i92645# add a helper to request a document password 2009-08-13 14:04:47 +0200 dr  r274941 : #i92645# add a helper to request a document password 2009-08-13 14:04:22 +0200 dr  r274940 : #i92645# add a helper to request a document password 2009-08-13 11:16:27 +0200 dr  r274927 : #i42303# show quick help if field name too long for button 2009-08-13 10:55:48 +0200 dr  r274925 : #i31600# cut field name and add ellipsis, if too long for button 2009-08-12 18:47:26 +0200 dr  r274914 : #i92645# ask user for a password 2009-08-12 18:02:39 +0200 dr  r274909 : #i104183# move svtools/DocPasswordRequest to comphelper to be able to use it in oox 2009-08-12 16:59:11 +0200 dr  r274906 : #i104183# move svtools/DocPasswordRequest to comphelper to be able to use it in oox 2009-08-12 16:41:18 +0200 dr  r274905 : #i104183# move svtools/DocPasswordRequest to comphelper to be able to use it in oox 2009-08-12 16:40:33 +0200 dr  r274904 : #i104183# move svtools/DocPasswordRequest to comphelper to be able to use it in oox 2009-08-12 16:40:08 +0200 dr  r274903 : #i104183# move svtools/DocPasswordRequest to comphelper to be able to use it in oox 2009-08-12 16:39:30 +0200 dr  r274902 : #i104183# move svtools/DocPasswordRequest to comphelper to be able to use it in oox 2009-08-12 16:15:28 +0200 dr  r274899 : #i104183# move svtools/DocPasswordRequest to comphelper to be able to use it in oox 2009-08-11 19:51:12 +0200 dr  r274877 : #i92645# open encrypted MSOOXML package protected with standard XL password 'VelvetSweatshop'


2009-09-05  Kohei Yoshida  <kohei@openoffice.org>  [79dab8670e4cdd6d0fd2d3ec1067e7b91721603d]

resurrected one formerly unused method to fix build breakage.


2010-01-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [06f228744d3d59cc606467a2fd29f877d82c4223]

koheidatapilot03: merge with DEV300_m57


2009-09-04  Thomas Benisch  <tbe@openoffice.org>  [68094ee2ea671d4f751940186a7370077c5f6f3e]

#i12587# build error


2009-09-04  Release Engineers  <releng@openoffice.org>  [e059706b680ad54b567fc016f8adb7f984fc566a]

Create DEV300_m57 milestone tag from trunk@275796


2009-09-03  Kohei Yoshida  <kyoshida@novell.com>  [7cc7de904e47f2d0b5c68171b27fc66fc1415158]

#i103598# fixed it so that when an external link changes it would set a modified flag to the document.


2009-09-03  Kohei Yoshida  <kyoshida@novell.com>  [cc8459e58bc556078592c82fdf534483e1d2bc8f]

#i104769# fixed by registering a chart listener for each imported chart upon import of xls document.


2009-09-03  Kohei Yoshida  <kohei@openoffice.org>  [cfeccaaf5a8e7e78c52edbcc47444a439e7af19c]

#i104742# shrink selected soure data to the data area when making datapilot table from cell range.


2009-09-03  Kohei Yoshida  <kohei@openoffice.org>  [50a276a84549ff2c97c21afc5c451b01aab1fad4]

#i104742# ported some code from ooo-build to implement shrinking of db data area.


2009-09-03  Kohei Yoshida  <kohei@openoffice.org>  [c997e203f980da2e8eafc5aea14bac84ef74f645]

slight comment cleaning


2009-09-02  Kohei Yoshida  <kohei@openoffice.org>  [268b8c7a74476e498e6d187ad0e28f571e4d3d1f]

Fixed a bug where field arrow buttons didn't indicate the presence of hidden members when the name of a field was a layout name.


2009-09-02  Kohei Yoshida  <kohei@openoffice.org>  [b63bdf71c5c0133702005562db95744c7f1751e6]

More use for ScDPLabelData::getDisplayName().


2009-09-02  Kohei Yoshida  <kohei@openoffice.org>  [b121a3819f74e881b25668f5c5499787cc31f27b]

added getDisplayName() to ScDPLabelData, to keep the client code a little cleaner.


2009-09-02  Kohei Yoshida  <kohei@openoffice.org>  [ec5437d5b09a18336c191b983091c03fb53f9c53]

Fixed a bug where the layout names of field members get lost when updating the table from the layout dialog.


2009-09-02  Thomas Benisch  <tbe@openoffice.org>  [b17a89dbb5f5378c55dae76503971a7c800d8ef1]

#i12587# warning


2009-09-02  Daniel Rentz  <dr@openoffice.org>  [759e238aecc140805ec5b8273d31d901eadd02fc]

#i10000# missing include


2009-12-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [316dfc04a2eb94b20f8508ba93facc98b2937bd0]

chartshapes: merge with DEV300 m55


2009-09-02  Kohei Yoshida  <kohei@openoffice.org>  [b9494a5ea4d9184713be05c87d628d24777c1bb2]

Show display names (aka layout names) of fields in the dp layout dialog and its child dialogs.


2009-09-02  Kohei Yoshida  <kohei@openoffice.org>  [1a8a80e53568dcfb56787db27de9483b131ae8c7]

Initial work toward showing the display names (aka layout names) for field and field members when appropriate.  Refactored ScDPLabelData quite a bit.  I'm not entirely done with this yet.


2009-09-01  Kohei Yoshida  <kyoshida@novell.com>  [3efd47955f956d09cc9fd4213eab136a947316b3]

#i102671# Cache the value returned from PieChart::getMaxOffset() for massive performance gain with pie charts with lots of slices.


2009-09-01  Kohei Yoshida  <kyoshida@novell.com>  [f1a97d0b3c2662557be53f00761e5116168bb58e]

#i102671# Cache the data sequence returned from ScChart2DataSequence::getData() to improve performance for pie charts (with lots of slices).


2009-09-01  Kohei Yoshida  <kohei@openoffice.org>  [cbca3fd60417d80730e22079233b3b32bb009f55]

When assigning a display name to subtotal output, we should allow it only when the subtotal type of 'Automatic'.


2009-08-28  Kohei Yoshida  <kohei@openoffice.org>  [fab0e3e6d845352807c71cde97464f20be924c6e]

fixed a build breakage.


2010-01-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [687309e0cf45875b9f76f8efff09545c75c593a9]

koheidatapilot03: merge with DEV300_m56


2009-08-27  Vladimir Glazounov  <vg@openoffice.org>  [82ac86cda581abb06bd8e755707079c4236f1ef0]

CWS-TOOLING: integrate CWS hr64_DEV300 2009-07-21 13:24:57 +0200 hr  r274189 : #i99576#: re-enable optimization for tabcont.cxx 2009-07-21 13:17:18 +0200 hr  r274188 : #i99592: disable -xspace optimization for Solaris x86 and SunStudio 12, due to some mis-optimzation in sc and elsewhere. SunStudio 12 update 1 is OK, but needs a few unrelated changes which will be implemented in DEV300 code line


2009-08-27  Kohei Yoshida  <kohei@openoffice.org>  [050393dd0ca845e7c3fbc8c909d0023ed5939d11]

Use the new PopupMenuFloatingWindow instead of FloatingWindow for popup menu specific stuff.


2009-08-26  Kohei Yoshida  <kohei@openoffice.org>  [e71274d83b5be916847177ba19091c63d7e4ea16]

Use the new "fake focus" flag of Window to simulate focus state, in order to implement tab stops inside floating windows.


2009-08-26  Kohei Yoshida  <kohei@openoffice.org>  [4f5bcd0cf63e775c7f2b96bc327d47caf806f38e]

TAB key to cycle through controls.


2009-08-26  Release Engineers  <releng@openoffice.org>  [bfafd8a7f67233a85f3dd4bc02f585f7933e3cf8]

CWS-TOOLING: integrate CWS aw075 2009-08-12 18:26:05 +0200 aw  r274912 : #i97672# use SelectionMaximumLuminancePercent to limit the hilight color to be not too invisible 2009-08-12 18:25:53 +0200 aw  r274911 : #i97672# use SelectionMaximumLuminancePercent to limit the hilight color to be not too invisible 2009-08-12 18:25:20 +0200 aw  r274910 : #i97672# Added SelectionMaximumLuminancePercent to decide which maximum luminance for the selection color to accept from the system 2009-08-12 18:00:17 +0200 aw  r274908 : #i97672# added SelectionMaximumLuminancePercent which limits the luminance of the system's selection color to a maximum luminance (default is 70) 2009-08-11 14:01:07 +0200 aw  r274859 : #i104150# take over values from transparence percent field even when disabled 2009-08-11 13:59:33 +0200 aw  r274858 : #i103500# corrected the transparent SC overlay pixel alignment 2009-08-11 12:42:46 +0200 jsk  r274854 : #i103937# Added two new controls to options/view page for transparency and opacity 2009-08-10 16:20:02 +0200 aw  r274823 : #i97672# Adapting MF_SELECTION to #i35956# 2009-08-04 17:50:42 +0200 aw  r274626 : #i102109# need to use AlphaMask instead of Bitmap 2009-08-04 17:03:25 +0200 aw  r274624 : #i103982# corrected OutlinerParaObject owvership in GetBackgroundTextForwarder() 2009-08-04 12:18:11 +0200 aw  r274614 : #i97672# corrected warning due to member initialisation 2009-08-03 11:54:16 +0200 aw  r274571 : #i99268# corrected SdrExchangeView::GetObjGraphic 2009-07-31 14:22:57 +0200 aw  r274529 : #i101520# added support for not correct 3d polygons for 3D polygon object which is used over API from chart directly 2009-07-31 13:25:20 +0200 aw  r274527 : #i97672# added disabling selection options when system does not support them; slightly corrected positions 2009-07-31 13:20:32 +0200 aw  r274526 : #i102706# Do not merge closed polygons when converting MetaFiles to SdrObjects 2009-07-30 18:03:07 +0200 aw  r274499 : #i102175# corrected 1870 degree rotation situation for MetaFile paints 2009-07-30 17:06:31 +0200 aw  r274496 : #i103709# corrected HitTest for callouts and DrawingLayer text objects 2009-07-29 18:55:22 +0200 aw  r274465 : #i102956# corrected CutFindProcessor to back-transform all found cuts to the starting 3D coordinate system 2009-07-29 13:38:40 +0200 aw  r274448 : #i103720# corrected mpAsynchLoadEvent usage 2009-07-29 12:48:12 +0200 aw  r274447 : #i96762# cleanup: spaces 2009-07-28 19:11:31 +0200 aw  r274427 : #97672# first version of reworked selection with changeable transparency and frame 2009-07-28 19:09:39 +0200 aw  r274425 : #97672# first version of reworked selection with changeable transparency and frame 2009-07-28 19:09:27 +0200 aw  r274424 : #97672# first version of reworked selection with changeable transparency and frame 2009-07-28 19:09:14 +0200 aw  r274423 : #97672# first version of reworked selection with changeable transparency and frame 2009-07-28 19:08:59 +0200 aw  r274422 : #97672# first version of reworked selection with changeable transparency and frame 2009-07-28 19:08:47 +0200 aw  r274421 : #97672# first version of reworked selection with changeable transparency and frame 2009-07-28 15:44:50 +0200 aw  r274411 : #i102556# corrected TextLayouterDevice::getTextBoundRect implementation and usage; empty Rectangles were not handled correctly 2009-07-23 17:48:36 +0200 aw  r274277 : #i102063# implemented in-between OLE content holder (SdrOleContentPrimitive2D) and it's decomposition. Cleaned up diverse OLE graphic preparations 2009-07-22 12:55:12 +0200 aw  r274227 : #i102109# extended OutputDevice::DrawTransparent (the version with TransparenceGradient) to work correctly with AntiAliased content 2009-07-21 13:31:12 +0200 aw  r274191 : #i102611# changed scaling of Z-Range for Z-Buffer for ZBufferProcessor3D 2009-07-20 20:06:46 +0200 aw  r274155 : #i103500# moved OverlayObjectCell back to use discrete coordinates for rectangle list 2009-07-16 17:33:26 +0200 aw  r274065 : #i103530# corrected parameter preparation for MetaFile::Rotate call


2009-08-26  Vladimir Glazounov  <vg@openoffice.org>  [9c728d854da9f9eddee6dbc30da4bb98c880b387]

CWS-TOOLING: integrate CWS swa11y32_2nd 2009-08-13 13:04:09 +0200 mav  r274936 : #i104204# remove support for Ctrl-Tab 2009-08-13 09:59:22 +0200 od  r274924 : #i93269# method <atk_wrapper_focus_idle_handler(..)> 	 - emit also object:state-changed:focus, if cursor is inside <XAccessibleText> object 2009-08-11 12:15:11 +0200 tl  r274851 : CWS-TOOLING: rebase CWS swa11y32_2nd to trunk@274622 (milestone: DEV300:m54) 2009-07-14 17:35:03 +0200 tl  r273982 : 2009-07-10 10:46:39 +0200 tl  r273879 : CWS-TOOLING: rebase CWS swa11y32 to trunk@273468 (milestone: DEV300:m51) 2009-07-01 14:00:25 +0200 mav  r273577 : #i102879# the text of the button should not change 2009-07-01 13:16:19 +0200 od  r273574 : #159496# method <GetHelpAnchor_Impl(..)> 	 - do not release the solar mutex 2009-06-29 15:29:10 +0200 od  r273476 : #i95042# method <CreateXWindow(..)> 	 - return instance <VCLXComboBox> for <Window> instance of type <MetricBox>. 	   note: <MetricBox> is inherited from <ComboBox> 2009-06-23 15:49:32 +0200 mav  r273283 : #i101967# fix tab-control implementation 2009-06-22 13:56:22 +0200 od  r273229 : #i100938# method <text_wrapper_get_run_attributes(..)> 	  - always provide start_offset and end_offset 	  - do _not_ increment the end_offset provide by <accessibility::TextSegment> instance 2009-06-02 12:09:03 +0200 mav  r272492 : #i101959# Let the additional dialog window add its childred to the parents tab-hierarchy 2009-06-02 09:55:39 +0200 mav  r272484 : #i102015# allow to have indirect child windows in tab-hierarchy 2009-06-02 09:49:42 +0200 mav  r272482 : #i102015# Let the windows containing the extension dialog controls add controls to the tab hierarchy 2009-05-27 15:45:33 +0200 od  r272354 : #i101012# method <SvxIconChoiceCtrl_Impl::EntrySelected(..)> 	  - emit vcl event LISTBOX_SELECT only in case that the given entry is selected. 2009-05-27 09:54:36 +0200 od  r272333 : #i92103# map UNO-API accessible events list box entry expanded/collapsed 	 to corresponding atk events. 2009-05-27 09:52:15 +0200 od  r272331 : #i92103# process list box entry expanded/collapsed events 2009-05-27 09:49:19 +0200 od  r272330 : #i92103# emit vcl event list box entry expanded/collapsed 2009-05-26 10:42:05 +0200 od  r272283 : #i93269# correct fix: check success of <queryInterface> call 2009-05-04 15:52:04 +0200 od  r271469 : #i92103# new vcl event ids VCLEVENT_LISTBOX_ENTRY_EXPANDED and VCLEVENT_LISTBOX_ENTRY_COLLAPSED 2009-05-04 15:10:20 +0200 od  r271460 : #i92103# refine definition of new constants 2009-05-04 14:36:44 +0200 od  r271454 : #i92103# new constants for indicating that a list box entry is 	 expanded respectively collapsed. 2009-04-30 16:09:40 +0200 od  r271421 : #i93269# method <atk_wrapper_focus_idle_handler(..)> 	 - emit text_caret_moved event for <XAccessibleText> object, 	   if cursor is inside the <XAccessibleText> object. 2009-04-22 14:00:10 +0200 tl  r271105 : warning-free code 2009-04-22 09:17:30 +0200 tl  r271073 : CWS-TOOLING: rebase CWS swa11y32 to trunk@270723 (milestone: DEV300:m46) 2009-04-20 12:53:03 +0200 cd  r270974 : #i83639# Check extendedhelp state to provide correct tool tip text 2009-04-03 13:07:13 +0200 tl  r270471 : #i63983# changed accessible object names to empty strings 2009-04-01 15:52:09 +0200 tl  r270336 : #i90991# accessible names and description for paragraphs should be empty 2009-04-01 15:12:42 +0200 tl  r270333 : #i90991# accessible names and description for paragraphs should be empty 2009-04-01 15:10:34 +0200 tl  r270331 : warning-free code 2009-04-01 12:54:44 +0200 tl  r270319 : #i89176# Implementation of XAccessibleMultiLineText in EditEngine 2009-04-01 12:52:56 +0200 tl  r270318 : #i89176# Implementation of XAccessibleMultiLineText in EditEngine 2009-03-27 18:31:01 +0100 tbe  r270166 : #i92143# text getRangeExtents reports incorrect 'x' values for spreadsheet cells 2009-03-13 13:43:54 +0100 tl  r269476 : #i94322# ImpEditView::ShowCursor and nPara == USHRT_MAX problem fixed 2009-03-12 10:27:30 +0100 tl  r269366 : warning-free code; unresolved external dbg_out when compiling with debug=t 2009-03-11 12:40:31 +0100 tl  r269312 : warning-free code Solaris x86 2009-03-10 15:49:01 +0100 tl  r269279 : #i86443# handle GetColumnCount() == 0 2009-03-10 10:48:32 +0100 cl  r269254 : #i91742# name cells for accessibility 2009-03-09 17:06:33 +0100 cl  r269203 : #i91742# call init on accessible cells


2009-08-26  Vladimir Glazounov  <vg@openoffice.org>  [23f6a9d5f7ca9af7bf01492e962daa2e2381fdda]

CWS-TOOLING: integrate CWS chart40 2009-08-05 10:28:53 +0200 iha  r274640 : CWS-TOOLING: rebase CWS chart40 to trunk@274622 (milestone: DEV300:m54) 2009-07-31 18:03:11 +0200 iha  r274546 : #i91420# number of lines on chart type dialog is incorrect 2009-07-23 15:51:13 +0200 iha  r274275 : correct detection of old chart files b6700820 2009-07-23 15:10:30 +0200 iha  r274273 : #i103287# some lines vanish on import of some old files (opacity-problem) 2009-07-23 13:42:10 +0200 iha  r274268 : #i103588# Chart in report cause crash 2009-07-23 10:57:14 +0200 iha  r274264 : #i95503# Enter key does not work in source ranges dialog 2009-07-22 10:25:02 +0200 iha  r274221 : #i103713# ambiguous && || 2009-07-20 12:59:02 +0200 iha  r274120 : #i103468# remove warning


2009-08-26  Henning Brinkmann  <hbrinkm@openoffice.org>  [0586b34b2d22a622eaa1564a04fd3eefc1b99a63]

merged DEV300_m56


2009-08-26  Release Engineers  <releng@openoffice.org>  [d888c1b0809eb3857b0cb7b9574bf4f455482be5]

CWS-TOOLING: integrate CWS fillednetchart 2009-07-22 17:48:07 +0200 oc  r274255 : #i103584# new testcase for fillednetchart added 2009-07-22 17:42:41 +0200 oc  r274254 : #i103584# Case 8 set to maximum 4 because of new fillednetchart 2009-07-13 17:29:40 +0200 iha  r273946 : CWS-TOOLING: rebase CWS fillednetchart to trunk@273858 (milestone: DEV300:m52) 2009-07-03 15:04:36 +0200 dr  r273704 : #i102667# import/export of filled radar charts 2009-07-03 09:50:28 +0200 dr  r273680 : #i102677# import filled radar charts from MSOOXML 2009-06-11 18:21:05 +0200 iha  r272896 : #i64752# filled net chart 2009-06-11 17:30:46 +0200 iha  r272892 : #i64752# filled net chart 2009-06-11 17:07:11 +0200 iha  r272889 : #i64752# filled net chart 2009-06-11 16:25:01 +0200 iha  r272883 : #i64752# filled net chart 2009-06-11 16:15:10 +0200 iha  r272878 : #i64752# filled net chart


2009-08-26  Kohei Yoshida  <kohei@openoffice.org>  [4b137f919f3af3abcad22ffa76709d40114159bf]

read the highlighted menu of the parent popup when the child popup gets dismissed.


2009-08-26  Kohei Yoshida  <kohei@openoffice.org>  [574c3b9e0e4fe499751dc97a26d94b1400a989fa]

changed endSubMenu() to not rely on the open timer data to dismiss the sub menu.


2009-08-26  Kohei Yoshida  <kohei@openoffice.org>  [37ec49787a5c319f3700cf9c88fb9e77ec0f571a]

clear selected menu item when the popup ends.


2009-08-26  Kohei Yoshida  <kohei@openoffice.org>  [1bb55ba13a1ed1f9b3d441898f77e33fd57e80c8]

Fire a menu highlight event on menu item selection change, to get the accessibility to work correctly.


2009-08-25  Kohei Yoshida  <kohei@openoffice.org>  [470ec5c5121c4d44e297c11c68ff60e60cbce5e7]

Reorganized accessible menu implementation so that the toplevel window is treated as menu.  It's cleaner and less complicated this way.


2009-08-25  Vladimir Glazounov  <vg@openoffice.org>  [bb89c4132f4b2c9e8d071eb8812e2a28e89ac8aa]

CWS-TOOLING: integrate CWS koheicoderemoval02 2009-07-24 Kohei Yoshida Resurrected one method that was now used after the rebase.  Now the entire sc module builds. 2009-07-24 Kohei Yoshida Rebased to DEV300_m53. 2009-07-23 Kohei Yoshida resolved conflict during merge to DEV300_m52. 2009-05-09 Kohei Yoshida #i95953# partially applied Caolan's patch. 2009-05-09 Kohei Yoshida #i101326# Removed old pivot implementation code that was already disabled. 2009-05-09 Kohei Yoshida More unused methods commented out. 2009-05-09 Kohei Yoshida More unused methods commented out. 2009-05-08 Kohei Yoshida Removed more unused methods, mostly related to binfilter methods. 2009-05-08 Kohei Yoshida #i95953# the first round of unused method removal, based solely on Caolan's list.  All removed methods were double-checked manually to make sure they are really unused, followed by a build test with debug on.


2009-08-25  Release Engineers  <releng@openoffice.org>  [9e8e36433e326a33d9c69de35b4e5dfdbe7b7cc5]

CWS-TOOLING: integrate CWS ooxml03 2009-08-11 12:16:50 +0200 kendy  r274852 : CWS-TOOLING: rebase CWS ooxml03 to trunk@274622 (milestone: DEV300:m54) 2009-07-17 17:55:14 +0200 hbrinkm  r274100 : resolved warning on unxlngi6.pro 2009-07-15 17:11:09 +0200 kendy  r274015 : #i96319# With the disabled docx pieces, libmsword is not a UNO library. 2009-07-15 13:38:36 +0200 hbrinkm  r274010 : removed unresolved symbols 2009-07-13 16:06:11 +0200 hbrinkm  r273943 : resolved warnings 2009-07-10 14:01:03 +0200 hbrinkm  r273889 : changes to make compile on Windows 2009-06-22 19:46:17 +0200 kendy  r273252 : #i96319# Disable the DOCX export, it's not perfect yet... 2009-06-22 13:04:32 +0200 kendy  r273219 : CWS-TOOLING: rebase CWS ooxml03 to trunk@272827 (milestone: DEV300:m50) 2009-06-11 17:11:39 +0200 kendy  r272890 : #i96319# Fix regression in the Word 95 output of hyperlinks. 2009-06-05 17:53:08 +0200 kendy  r272710 : #i96319# Fix regression in Word 95 output (wrong style number when nodes recurse). 2009-06-03 00:19:27 +0200 kendy  r272529 : #i96319# Fix regression in output of the section breaks. 2009-05-29 18:30:19 +0200 kendy  r272475 : CWS-TOOLING: rebase CWS ooxml03 to trunk@272291 (milestone: DEV300:m49) 2009-05-29 09:58:02 +0200 kendy  r272435 : #i102354# Don't write the debug info directly to the document. 2009-05-28 15:57:01 +0200 kendy  r272411 : #i102260# Revert another trivial fix. 2009-05-26 16:43:07 +0200 kendy  r272310 : #i102260# Disable fix of FILLIN fields. 2009-05-26 14:14:09 +0200 kendy  r272302 : #i96319# Fix regression in the calculation of size of cells. 2009-05-26 01:42:29 +0200 kendy  r272274 : #i96319# Fix a regression - don't export RES_PARATR_LINESPACING and RES_UL_SPACE with every style. [And additionally some beautification.] 2009-05-23 00:37:44 +0200 thb  r272212 : #i102156# added XFastSAXSerializable plus implementation 2009-05-22 16:43:09 +0200 kendy  r272201 : CWS-TOOLING: rebase CWS ooxml03 to trunk@271830 (milestone: DEV300:m48) 2009-05-14 23:37:02 +0200 thb  r271924 : #i10000# post-filter split fixes - make non-pro compile again 2009-05-14 22:35:54 +0200 thb  r271923 : #i10000# post-svx split fixes - both librpt and librptui need libsvx 2009-05-14 21:39:08 +0200 thb  r271922 : #i10000# post-svx split work - getting nonpro build working again 2009-05-11 09:11:23 +0200 kendy  r271740 : #i99638# svxcore library is not a UNO library. 2009-04-29 17:31:45 +0200 kendy  r271389 : #i96319# Fixed a corner case in docx export of nested tables. Actually, this even simplifies the code a bit :-) 2009-04-29 12:10:08 +0200 kendy  r271364 : #i96319# Fix output of spacing in docx. 2009-04-29 10:56:43 +0200 kendy  r271357 : #i96319# Fix an endless loop in the docx export of bookmarks. 2009-04-29 01:06:21 +0200 kendy  r271348 : #i96319# Fix output of cell width and height. 2009-04-27 13:29:02 +0200 kendy  r271264 : #i96319# Fix output of section columns (their number + widths) for docx. 2009-04-24 15:51:23 +0200 kendy  r271219 : #i96319# Fix output of dates - xsi:type=... should be there only for dcterms. 2009-04-23 18:27:28 +0200 kendy  r271190 : #i96319# Fix output of gridCol's. 2009-04-23 17:13:44 +0200 kendy  r271184 : #i96319# Avoid incorrect double output of tcPr. 2009-04-22 15:58:10 +0200 kendy  r271125 : #i96319# Fix the output of the nested tables after all the rebases. 2009-04-20 15:16:48 +0200 kendy  r270989 : #i96319# More correct output of the nodes. 2009-04-20 13:27:06 +0200 kendy  r270976 : #i96319# Make it build after the rebase to m46 again; maybe does not run yet. 2009-04-10 23:00:46 +0200 kendy  r270725 : CWS-TOOLING: rebase CWS ooxml03 to trunk@270723 (milestone: DEV300:m46) 2009-04-09 17:31:44 +0200 kendy  r270716 : #i96319# Fix output of headers/footers. 2009-04-09 16:42:13 +0200 kendy  r270715 : #i99638# Fix visibility for the debug build of svx. 2009-04-03 10:27:50 +0200 kendy  r270466 : #i99683# One forgotten gid_File_Filter_Emp -> gid_File_Filter_Sdfilt. 2009-03-06 16:19:03 +0100 kendy  r269013 : #i99638# Remove SpecialProgress-related methods and members, not used any more, and breaks linking on Win32. 2009-03-06 09:43:55 +0100 kendy  r268974 : #i99638# Resolve some more unresolved symbols on Win32. 2009-03-05 23:01:39 +0100 kendy  r268946 : #i99638# Export less SdStyleSheetPool symbols. 2009-03-05 15:31:23 +0100 kendy  r268910 : #i99638# MSVC needs struct WW8_PdAttrDesc declared, otherwise fails to link. 2009-03-04 14:15:23 +0100 kendy  r268826 : #i99638# More Win32-related build fixes. 2009-03-04 13:47:48 +0100 kendy  r268823 : #i99638# Disable pptx export again, brougth in by mistake. 2009-03-04 09:54:00 +0100 kendy  r268786 : #i99638# Deliver also isvxcore.lib and isvxmsfilter.lib. 2009-03-03 17:42:25 +0100 kendy  r268773 : #i99638# SdrModel::setUnoModel() should not be inline. 2009-03-03 17:25:59 +0100 kendy  r268770 : #i99638# Ugh, revert. 2009-03-03 17:05:16 +0100 kendy  r268765 : #i99638# Make ObjectContact dll private. 2009-03-03 15:35:41 +0100 kendy  r268733 : #i99638# More destructors visible for Win32 linking. 2009-03-03 14:26:23 +0100 kendy  r268726 : #i99638# Make some destructors visible, and change one static inline to static to Win32 linking happy. 2009-03-03 10:42:12 +0100 kendy  r268712 : #i99638# More moving stuff around to make Win32 linking happy. 2009-03-03 09:48:17 +0100 kendy  r268708 : #i99638# Reduce the includes, needed for Win32 linking. 2009-03-03 08:48:00 +0100 kendy  r268705 : #i99638# ImpGetResStr() visibility markup moved to the header. 2009-03-02 16:30:17 +0100 kendy  r268664 : #i99638# Fix visibility problems that appeared on x86. 2009-02-27 22:25:57 +0100 kendy  r268618 : #i96319# Better definition of DBG in utils.hxx. 2009-02-27 21:53:17 +0100 kendy  r268616 : #i96319# License for utils.hxx, define DBG only for the debug builds. 2009-02-27 21:44:25 +0100 kendy  r268615 : #i96319# Fixed types for printf etc. parameters. 2009-02-27 17:23:17 +0100 kendy  r268607 : #i96319# Fix build after the rebase. 2009-02-27 15:12:49 +0100 kendy  r268597 : CWS-TOOLING: rebase CWS ooxml03 to trunk@268395 (milestone: DEV300:m42) 2009-02-27 12:37:57 +0100 kendy  r268580 : #i96319# Fix build dependency in oox. 2009-02-26 22:02:06 +0100 kendy  r268547 : #i99683# Move ppt import to a separate library. The ppt export is already separate, so it makes sense to give there the import as well.  The current library 'emp' was renamed to 'scfilt', it links against svxmsfilter, and few symbols had to be made visible (28 of them). 2009-02-26 14:36:25 +0100 kendy  r268520 : #i99638# Whitespace fixes. 2009-02-26 14:31:35 +0100 kendy  r268518 : #i99638# Split svx into svxcore, svxmsfilter and the rest. SvxImportMSVBasic's SaveOrDelMSVBAStorage(), GetSaveWarningOfMSVBAStorage(), and GetMSBasicStorageName() must go to svxcore (because of Writer). 2009-02-26 00:16:32 +0100 kendy  r268471 : #i99638# Split libsvx into 3 pieces - svxcore, svxmsfilter, and svx (the rest). This contains: - the split (based on inter-object dependencies)   - svxcore is actually a closure on a graph where the objects are     vertexes, and where there's an edge between 2 vertexes when one needs     symbol from the second ;-) - maybe still could be split, but that     will be most probably harder to achieve   - svxmsfilter is a subset that is needed just by the filters of the MS     Office formats   - the new svx contains the rest that did not fit the above 2 - visibility for svxcore   - some svxcore symbols had to be exposed for svxmsfilter or svx - adaption of modules linking against svx   - in some cases, linking just against svxcore is enough 2009-02-25 23:35:03 +0100 kendy  r268470 : #i99545# Get rid of struct ConstAsciiString, and use simple #define's instead - it's a pre-requisite for a svx split, and also saves memory on x86-64, and some symbol names. 2009-02-25 22:39:02 +0100 kendy  r268468 : #i96319# Get rid of the now unneecessary debug class DOCX. 2009-02-17 20:35:29 +0100 kendy  r268190 : #i96319# WW8 filter rework + docx export License header + whitespace fixes. 2009-02-17 20:02:39 +0100 kendy  r268189 : #i96319# WW8 filter rework + docx export Add license header to preset-definitions-to-shape-types.pl. 2009-02-17 19:58:11 +0100 kendy  r268188 : #i96319# WW8 filter rework + docx export oox does not have to depend on FASTSAXLIB. 2009-02-17 17:05:34 +0100 kendy  r268182 : #i96319# WW8 filter rework + docx export Fix the sax compilation, apparently some of the changes were missing. 2009-02-17 13:04:14 +0100 kendy  r268163 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Fix output of shape paths (point components can be either 16 or 32 bit). [And also implement a fallback for the missing shapes - treated as rectangle.] 2009-02-17 13:03:56 +0100 kendy  r268162 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Correction of some values. Now the shapes seem to be good enough; time to abandon them ;-) 2009-02-17 13:03:37 +0100 kendy  r268161 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Better detection of consts. 2009-02-17 13:03:19 +0100 kendy  r268160 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Fixed the 'sun' shape. 2009-02-17 13:03:00 +0100 kendy  r268159 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Better check for unneeded 'prod's. 2009-02-17 13:02:42 +0100 kendy  r268158 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Fix the adj values. 2009-02-17 13:02:23 +0100 kendy  r268157 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Fix pentagon and star5 shapes. 2009-02-17 13:02:04 +0100 kendy  r268156 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Fix most of the 'star' shapes by preventing an overflow. 2009-02-17 13:01:41 +0100 kendy  r268155 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * fixed build after resolving conflicts 2009-02-17 13:01:19 +0100 kendy  r268154 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * added TODO comment 2009-02-17 13:00:59 +0100 kendy  r268153 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * implemented adjustments export in custom shapes 2009-02-17 13:00:40 +0100 kendy  r268152 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * partially refactored EscherPropertyContainer::CreateCustomShapeProperties    extracted 3 helper functions, which are now used in ooxml export 2009-02-17 13:00:17 +0100 kendy  r268151 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * make mAny member of DrawingML protected, so that ShapeExport can access it  * export connector shape  * added DrawingML::WriteConnectorConnections  * fixed bezier shape outline export (regression fix) 2009-02-17 12:59:54 +0100 kendy  r268150 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * make EscherConnectorListEntry structure public, so that it can be used by ooxml export 2009-02-17 12:59:34 +0100 kendy  r268149 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * added mapping of shapes to shape IDs  * cleaned a bit shape name generation 2009-02-17 12:59:13 +0100 kendy  r268148 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Fixed some of the text shapes, 166/202. In the 202, I counted even shapes that are marked 'should not be used' (and their definition is missing) even in the documentation.  The only really missing shapes are those that use general arcTo... 2009-02-17 12:58:53 +0100 kendy  r268147 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Found missing shapes, now 159/202. 2009-02-17 12:58:36 +0100 kendy  r268146 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Optimize the amount of formulas a bit. Adds one more shape that previously reached the top amount of formulas ;-) 2009-02-17 12:58:15 +0100 kendy  r268145 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Implemented quadratic beziers, 144/202 now. I was unable to use 'qb', it did not produce good results, no idea why :-( Instead used 'c' - cubic bezier - and recounted the control points (mathematically equivalent representation).  The downside is that for some shapes I run out of formulas :-( - TODO later. 2009-02-17 12:57:56 +0100 kendy  r268144 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Fix presetShapeDefinitions.xml, there's an error there. 2009-02-17 12:57:31 +0100 kendy  r268143 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Implemented cubicBezTo + few formulas, now 136/202. 2009-02-17 12:57:11 +0100 kendy  r268142 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Fixed units of sin/cos, which makes it now 118/202. Realized that some of the shapes are 'too small' - like <10 units, insetad of ~21600; have to look at that. 2009-02-17 12:56:43 +0100 kendy  r268141 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: More arcTo shapes, 116/202 now. 2009-02-17 12:56:21 +0100 kendy  r268140 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Better conversion of */ (fixes some shapes).  Implemented nostroke/nofill. 2009-02-17 12:56:01 +0100 kendy  r268139 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: More formulas, and partially implemented 'arcTo' - 93/202 shapes now. 2009-02-17 12:55:39 +0100 kendy  r268138 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Radically changed the conversion of formulas to be able to implement +/. [...and actually implemented it ;-), 60/202 shapes now.] 2009-02-17 12:55:19 +0100 kendy  r268137 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Shape types generation plugged to the build, 53/202 shapes now. 2009-02-17 12:54:57 +0100 kendy  r268136 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: More predefined shapes generated (thanks to 'pin' translation). 2009-02-17 12:54:36 +0100 kendy  r268135 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Script that creates the predefined shape types + the definitions. The shape types themselves come from the OOXML documentation; the script just converts them from DrawingML to a VML representation in a C++ file. The converter is not feature-complete yet, resulting in some missing shapes. Also it is not yet part of the build (makefile.mk not modified yet). 2009-02-17 12:54:10 +0100 kendy  r268134 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export:     + Fixed a regression on sections output     + Columns break has to be postponed to the next paragraph     + Implemented sections properly     + Columns formatting properties exported 2009-02-17 12:53:49 +0100 kendy  r268133 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> haven't I fixed those problems? 2009-02-17 12:53:29 +0100 kendy  r268132 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export:      + table alignment is now exported 2009-02-17 12:53:07 +0100 kendy  r268131 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Integrate VMLExport with Calc for Comment export. Few minor changes needed to VMLExport so that Calc could customize the behavior.  Specifically, Calc needed to be able to:   - Explicitly specify the //v:shape/@type attribute value so that Excel     wouldn't show a diagonal "arrow" underneath the note text instead of     showing an actual box.   - Add custom Escher properties such as "hidden", etc.   - Insert the //v:shape/x:ClientData element before //v:shape is closed. 	* oox/inc/oox/export/vmlexport.hxx, oox/source/export/vmlexport.cxx: 	  - Make Commit(), StartShape(), and EndShape() protected so that Calc 	    can override those methods 	    - StartShape() is needed to add //v:shape/@type 	    - Commit() is needed to add new Escher properties 	    - EndShape() is needed to generate //v:shape/x:ClientData. 	  - Add AddShapeAttribute() method, so Calc can set the 	    //v:shape/@type value. 	  - Output "visibility:hidden" for the ESCHER_Prop_fHidden property. 2009-02-17 12:52:46 +0100 kendy  r268130 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Finish the transition of VMLExport from 'sw' to 'oox' + few trivial fixes. The VML export code is now accessible as oox::vml::VMLExport. The (not that related) fixes include SAL_DLLPUBLIC_EXPORT -> OOX_DLLPUBLIC change and few warning fixes. 2009-02-17 12:52:24 +0100 kendy  r268129 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Moved vmlexport.[hc]xx to oox. 2009-02-17 12:52:04 +0100 kendy  r268128 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Cleanup before we move to oox. 2009-02-17 12:51:41 +0100 kendy  r268127 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export: Some more features for tables export 2009-02-17 12:51:21 +0100 kendy  r268126 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export:      + nested tables export refinement      + export row height and table headers 2009-02-17 12:50:58 +0100 kendy  r268125 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Initialize a local variable. 2009-02-17 12:50:34 +0100 kendy  r268124 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export:      fixed table layout for nested tables.      Fixed nested tables output 2009-02-17 12:50:13 +0100 kendy  r268123 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export:      added support of nested tables. Still needs to be heavily      tested. Some problems are occuring with the grid layout. 2009-02-17 12:49:49 +0100 kendy  r268122 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Change SAL_DLLPUBLIC_EXPORT to SW_DLLPUBLIC which is more appropriate here. 2009-02-17 12:49:28 +0100 kendy  r268121 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Fix line-callout-3 translation. The `line-callout-3' callout was being mapped to the `accentBorderCallout90' OOXML callout, which Excel didn't like at all.  Changing this to `borderCallout3' produces OOXML that Excel will load. Not sure what mso-spt49 is supposed to be, but given the other mso-spt* values I think accentBorderCallout90 makes more sense (but cannot find such a value in the OOXML XSD files). 2009-02-17 12:49:05 +0100 kendy  r268120 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Fix refactoring of DrawingML::WritePolyPolygon(). The original version only checked rPoly.GetFlags() for every item *after* the first item -- i.e. the first item was skipped.  Change the `for' loop start index to follow this behavior. 2009-02-17 12:48:42 +0100 kendy  r268119 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Fix Bezier output. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit The //a:cubicBezTo element (?5.1.11.7) requires that there be *three* //a:pt child elements.  Ensure that this is the case (otherwise Excel yells at me about invalid DrawingML if I export a free-form shape). This also cleans up the code slightly, by moving out a `if(j==0)` block to before the for loop, and re-indenting the code to simplify understanding. 2009-02-17 12:48:22 +0100 kendy  r268118 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Flush documentation. 2009-02-17 12:48:00 +0100 kendy  r268117 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export:      + implemented table cell margins and fixed grid layout      + reapplied missing patch from m34 about default spacing of  paragraphs 2009-02-17 12:47:40 +0100 kendy  r268116 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Migrate Calc to use ShapeExport. Minor snafu here: XML_nvPr is valid only within Impress, so if Calc exports it Excel doesn't like the resulting documents.  Remove XML_nvPr output from ShapeExport and replace with calls to ShapeExport::WriteNonVisualProperties(). PowerPointShapeExport can thus override ShapeExport::WriteNonVisualProperties() to generate the required //p:nvPr elements. 	* oox/inc/oox/export/shapes.hxx: Declare 	  ShapeExport::WriteNonVisualProperties(). 	* oox/source/export/shapes.cxx: 	* - Replace XML_nvPr generation with calls to 	    WriteNonVisualProperties(). 	  - Get the GraphicObject name property from the shape instead of 	    generating "Picture N" values (if the shape has a Name property). 	  - Generate a GraphicObject Description attribute, if present. 	  - Remove unused method parameter names (to remove warnings). 2009-02-17 12:47:15 +0100 kendy  r268114 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * fixed few shape names, which were missing Shape at the end  * fixed mso-spt202 custom shape translation, which was causing problems with word wrapping  * enabled wrap attribure for bodyPr tag  * fixed 2 compiler warnings 2009-02-17 12:46:55 +0100 kendy  r268113 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export: column spans in tables are now exported 2009-02-17 12:46:33 +0100 kendy  r268112 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx:    + Fixed table structure output    + Output table borders    + Fixed borders output 2009-02-17 12:46:11 +0100 kendy  r268111 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Excercise ShapeExport::WriteShape(). Refactor PowerPointExport::WriteShapeTree() to use ShapeExport::WriteShape(), overloading ShapeExport virtual Write* methods as appropriate to insert support for additional shapes. 	* oox/source/export/shapes.cxx: Correct the shape names (often by 	  appending "Shape") so that the table lookup works as expected. 2009-02-17 12:45:49 +0100 kendy  r268110 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Implement multiplexing ShapeExport::WriteShape(). What got me started on this whole "migrate large fractions of sd into oox" binge was PowerPointExport::WriteShapeTree(), which included a "multiplexer" -- a method that took the XShape's shape type and translated it into a (set of) member function(s) to call to convert the shape. I needed just such a multiplexer for Calc, and was loathe to copy/paste it. However, PowerPointExport::WriteShapeTree() is far more complicated for something to go into oox, dealing as it does with grouping and myriad other sd-specific details.  Thus, an overhaul: All the ShapeExport::Write* methods are now virtual.  The multiplexing ShapeExport::WriteShape() method will consult a string type -> member function lookup table, and if a matching member function is found it will be invoked. This allows subclasses to customize behavior. If no matching conversion member function is found, then ShapeExport::WriteUnknownShape() is invoked, allowing subclasses to transparently handle additional shapes w/o special-casing the WriteShape() call. 	* oox/inc/oox/export/shapes.hxx, oox/source/export/shapes.cxx: Make 	  Write* methods virtual; Add WriteUnknownShape(); Replace the 	  (non-functional) WriteShapeTree() with the multiplexing 	  WriteShape(), and provide a hashtable mapping shape type to 	  conversion method. 2009-02-17 12:45:28 +0100 kendy  r268109 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Move Impress DrawingML Export code into oox::drawingml::ShapeExport. Begin moving sharable sd/source/filter/eppt/epptooxml.cxx DrawingML code into oox::drawingml::ShapeExport, so that DrawingML elements (w/ different namespaces) can use the same export code. WARNING: the migration makes the assumption that mXPropSet comes from mXShape, that is:     Reference< XPropertySet > mXPropSet( mXShape, UNO_QUERY ); If this is wrong, things will obviously break. This *should* be correct, as the altered code path rooted in PowerPointExport::WriteShapeTree() calls PPTWriterBase::GetShapeByIndex(), which ensures that mXPropSet is the XPropertySet for the mXShape instance:     Any aAny( mXShape->queryInterface( ::getCppuType( (const Reference< XPropertySet >*) 0 ) ));     aAny >>= mXPropSet; 	* oox/inc/oox/export/shapes.hxx, oox/source/export/shapes.cxx: Sync 	  with the above removed PowerPointExport methods. 2009-02-17 12:45:11 +0100 kendy  r268108 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Deliver inc/oox/export/shapes.hxx. 2009-02-17 12:44:51 +0100 kendy  r268107 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Abstract out sd's shape export code. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit DrawingML is an evil, evil thing -- it's highly duplicative.  For example, the <cNvPr/> element has been duplicated no less than four times into different XML namespaces: ?4.4.1.12, ?5.1.2.1.8, ?5.2.2.3, ?5.6.2.8, i.e. in the following XML namespaces (from the XSD files):     http://schemas.openxmlformats.org/drawingml/2006/chartDrawing     http://schemas.openxmlformats.org/drawingml/2006/main     http://schemas.openxmlformats.org/drawingml/2006/picture     http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing     http://schemas.openxmlformats.org/presentationml/2006/main In all these cases, they all have the same attributes, the same parent elements, and the same child elements.  They are, for all intents and purposes, identica EXCEPT for the XML namespace. Instead of rampantly duplicating sd's shape export code and doing s/XML_p/XML_???/g (i.e. replace the namespace), I'm refactoring sd's export code into oox::drawingml::ShapeExport.  The ShapeExport constructor takes the target XML namespace as a parameter, and generates all XML relative to this namespace. 	* inc/oox/export/drawingml.hxx: Add DrawingML::GetFB() and 	  DrawingML::GetFS() accessor methods, which are needed by 	  ShapeExport. 	* source/export/makefile.mk: Add shapes.cxx to the build. 	* inc/oox/export/shapes.hxx, source/export/shapes.cxx: Declare and 	  implement oox::drawingml::ShapeExport. 2009-02-17 12:44:32 +0100 kendy  r268106 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * extracted paragraph adjustment translation  * added text wrap (commented out as it doesn't work flawlessly yet) 2009-02-17 12:44:12 +0100 kendy  r268105 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export: now able to export the tables structures 2009-02-17 12:43:53 +0100 kendy  r268104 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Fixed a bug in doc table export. 2009-02-17 12:43:34 +0100 kendy  r268103 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Fixed several build bugs:      + strange integer conversion      + unexported symbol dbg_out      + Reintegrated missing patches from m34      + Reupdated scp2 module to flag libmsword as a uno component 2009-02-17 12:43:15 +0100 kendy  r268102 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Change hardcoded numbers into sprm constants. 2009-02-17 12:42:58 +0100 kendy  r268101 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Make the tables build even with the docx-related changes. 2009-02-17 12:42:38 +0100 kendy  r268100 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Write shapes defined by paths. 2009-02-17 12:42:14 +0100 kendy  r268099 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export: implemented paraSnapToGrid & suppressAutoHyphens 2009-02-17 12:41:54 +0100 kendy  r268098 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export: Implemented ParaScriptSpace and its friends 2009-02-17 12:41:32 +0100 kendy  r268097 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx export: Keep with next paragraph 2009-02-17 12:41:11 +0100 kendy  r268096 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx: Fixed tab position export, left margin was missing 2009-02-17 12:40:48 +0100 kendy  r268095 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> TOX export:    + fixed export fields expression containing tabs    + fixed the begin element of fields like TOX, Hyperlinks and index marks    + implemented export of index marks (same missing things than binary filter) 2009-02-17 12:40:28 +0100 kendy  r268094 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Export the core revision document property. The mapping between revision and getEditingCycles() was found by perusing the existing OLE Structured Storage output source. 2009-02-17 12:40:10 +0100 kendy  r268093 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Preparations for the predefined shape types. 2009-02-17 12:39:50 +0100 kendy  r268092 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Implemented the most interesting stroke properties. 2009-02-17 12:39:31 +0100 kendy  r268091 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Minimal working TOX export, not fully tested yet.  Implemented DocxExport::AppendBookmark method 2009-02-17 12:39:11 +0100 kendy  r268090 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Implemented the most interesting fill properties. 2009-02-17 12:38:53 +0100 kendy  r268089 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> VML: Output of lines. 2009-02-17 12:38:35 +0100 kendy  r268088 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Thanks to kendy, dateToW3CDTF is now useless 2009-02-17 12:38:16 +0100 kendy  r268087 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Uncomplete merge + change the timestamp generation with the use of strftime 2009-02-17 12:37:58 +0100 kendy  r268086 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> + Fixes in core properties export:      - the first keyword was duplicated,      - the CreationTime in apps.xml was written several times  + Refactored the fields output to prepare the place for TOX: now    using a stack of fields to output  + Refactored the Hyperlink export implementation to handle links with    anchors in documents 2009-02-17 12:37:36 +0100 kendy  r268085 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> MS Word begins to like the VML generated by the docx export :-) We can export basic groups, rects and ellipses now; TODO other shapes and lots of properties. 2009-02-17 12:37:18 +0100 kendy  r268084 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Propagate bounding rectangle in EscherEx::Commit(). Ignored in EscherEx itself, but mandatory for the VML export. 2009-02-17 12:36:59 +0100 kendy  r268083 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Comment out output of XML_TotalTime (xProperties->getEditingDuration()), breaks here. #i96319# WW8 filter rework + docx export confuses MS Office terribly. 2009-02-17 12:36:42 +0100 kendy  r268082 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> The boost datetime conversion broke from time to time, no idea why :-( Now using the most trivial approach... 2009-02-17 12:36:24 +0100 kendy  r268081 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Implementation of few basic VML shapes and properties. 2009-02-17 12:36:06 +0100 kendy  r268080 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Add EscherPropertyContainer::GetOpts() to be able to get all the options at once. 2009-02-17 12:35:48 +0100 kendy  r268079 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Include "tokens.hxx" instead of <oox/core/tokens.hxx>. The latter attempts to take the version from solver which is not there yet when building from scratch ;-) 2009-02-17 12:35:28 +0100 kendy  r268078 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Forgot to remove an include. Compiler didn't crash on it... strange 2009-02-17 12:35:10 +0100 kendy  r268077 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Merged the properties export code with the one of jonp.  In fact, only the date formatting code of mine has been  kept to replace jon's one. 2009-02-17 12:34:49 +0100 kendy  r268076 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Export of core properties migrated to oox module 2009-02-17 12:34:23 +0100 kendy  r268075 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Add some trace/debugging information. Some of the app/core properties are #ifdef'd, as I don't know what XDocumentProperties attribute is the appropriate mapping. My suspicion is that many of the remaining app/core properties may be found within the DocumentStatistics attribute, and thus I print out the document statistics found. (So far, I'm not seeing any from Calc, but this may bear some fruit with .docx or .pptx export...) 2009-02-17 12:34:01 +0100 kendy  r268074 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Document Properties: skip empty elements. 	* xmlfilterbase.cxx (writeElement): Don't generate an element if the 	  element has no value. 2009-02-17 12:33:35 +0100 kendy  r268073 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Initial stab at exporting document properties. Short, short version: to export document properties call XmlFilterBase::exportDocumentProperties(Reference<XDocumentProperties>). 	* oox/inc/oox/core/xmlfilterbase.hxx, oox/source/core/xmlfilterbase.cxx: 	  Add and implement XmlFilterBase::exportDocumentProperties(), which 	  generates docProps/core.xml and docProps/app.xml. 	* oox/source/token/tokens.txt: Add XML_vt element. 	* sc/source/filter/excel/excdoc.cxx: call 	  XmlFilterBase::exportDocumentProperties(). 	* sc/source/filter/excel/expop2.cxx: Remove sfx2::SaveOlePropertySet() 	  call, as it isn't useful for OOXML output. 2009-02-17 12:33:17 +0100 kendy  r268072 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Beginnings of the VML export. The shapes are exported, but with no attributes - so their position is not written yet, etc. 2009-02-17 12:32:54 +0100 kendy  r268070 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Do more EscherEx methods virtual. We want to re-use EscherEx for the export of VML.  For this, some of the methods have to be made virtual so that we can change them to do what we need ;-) 2009-02-17 12:32:26 +0100 kendy  r268069 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Removed debug fprintf's 2009-02-17 12:32:09 +0100 kendy  r268068 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx: bookmarks now exported 2009-02-17 12:31:52 +0100 kendy  r268067 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * export polypolygons  * export transformation defined by rectangle 2009-02-17 12:31:35 +0100 kendy  r268066 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Split text runs to be able to insert bookmark tags 2009-02-17 12:31:18 +0100 kendy  r268065 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Enum for specifying the document type to DrawingML. Various document types need it differently... 2009-02-17 12:30:57 +0100 kendy  r268064 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Provide an appropriate //Relationship/@Target value. 	* oox/source/export/drawingml.cxx: The //Relationship/@Target value 	  needs to be a path relative to the DrawingML document.  For Excel, 	  the DrawingML is in xl/drawings/drawing*.xml, while the embedded 	  media is in xl/media/image*.  Thus, to get from 	  xl/drawings/drawing*.xml to xl/media/image*, we need 	  "../media/image", not "media/image". 	  Without this change, Excel throws an error when loading the 	  Spreadsheet, as it can't find the resource. 2009-02-17 12:30:35 +0100 kendy  r268063 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fixed output of the properties that are written at </pPr> or </rPr> time. Fixes the most annoying "the first run has strange properties" bug, and generally improves the quality of output of styles a lot. 2009-02-17 12:30:16 +0100 kendy  r268062 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Generate valid DrawingML. The DrawingML is a hack, with hard-coded values in various places that have no business being hardcoded, but it is valid, and Excel does load the DrawingML without error.  (It instead errors out because xl/drawings/_rels/drawing1.xml.rels contains an invalid file path. :-( 	* oox/inc/oox/export/drawingml.hxx, oox/source/export/drawingml.cxx: 	  Add a WriteBlipFill() overload which takes the XML namespace as an 	  argument.  This is necessary because Excel wants a <xdr:blipFill/> 	  element, not <a:blipFill/>, and I don't want to have to duplicate 	  the rest of the WriteBlipFill() logic within sc. 2009-02-17 12:29:59 +0100 kendy  r268061 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Remove one of the 2 fixes of the same problem ;-) 2009-02-17 12:29:32 +0100 kendy  r268060 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Few whitespace fixes. 2009-02-17 12:29:12 +0100 kendy  r268059 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Basic output of images works, both embedded as well as linked. Still some TODOs in FlyFrameGraphic(), to be solved later... 2009-02-17 12:28:51 +0100 kendy  r268058 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Add TwipsToEMU() to oox/export/utils.hxx. 2009-02-17 12:28:30 +0100 kendy  r268057 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Fix the build. DrawingML::WriteImage(const Graphic&) needs to have a Graphic type in scope. 2009-02-17 12:28:10 +0100 kendy  r268056 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Change define FSEND -1 to const sal_Int32 FSEND = -1. The former can hide errors, like startElementNS( ..., "xyz" FSEND ), because it compiles without warning, but then gets part of the string, and we end up without a sentinel. 2009-02-17 12:27:50 +0100 kendy  r268055 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Docx export: Dropdown field now exported 2009-02-17 12:27:28 +0100 kendy  r268054 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Add the xdr token. The `xdr' token is used as the XML namespace in Spreadsheet DrawingML documents. 2009-02-17 12:27:08 +0100 kendy  r268053 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> With a bit of cheating, images can be written... Everything (but the image itself) is hardcoded so far. 2009-02-17 12:26:47 +0100 kendy  r268052 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Write the location of the image as media/image, not ../media/image. Hopefully it does not break pptx - but for docx it's necessary. 2009-02-17 12:26:24 +0100 kendy  r268051 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Improved mergeTopMarks(). - instead of bool, it accepts MergeMarksEnum with values MERGE_MARKS_APPEND,   MERGE_MARKS_PREPEND, and MERGE_MARKS_POSTPONE, which should be more readable - MERGE_MARKS_POSTPONE is a new thing, it allows to write output that is   written with the next mergeTopMarks() - useful when you get some data too   early and need to write them after the end of data that you are just   writing. 2009-02-17 12:26:05 +0100 kendy  r268050 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Output of images; framework is mostly done, but disabled due to problems with order. [So far it would be output inside rPr which is not what we want ;-)] 2009-02-17 12:25:41 +0100 kendy  r268049 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Intoduced OUString DrawingML::WriteImage( const Graphic& rGraphic ). Additionally - added the possibility to write images to word/ subdir in the zip container,   not just ppt/ - added 'wp' to the known tokens - fixed Graphic::GetLink() in vcl to be 'const' - added svx and vcl to the dependencies of oox 2009-02-17 12:25:18 +0100 kendy  r268048 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> merged binary and ooxml filters export. 2009-02-17 12:24:55 +0100 kendy  r268047 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Core properties created (still have to write the dates) 2009-02-17 12:24:32 +0100 kendy  r268046 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Added support for GetExpression and SetExpression fields (only in text format). 2009-02-17 12:24:09 +0100 kendy  r268045 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Some more fields supported 2009-02-17 12:23:49 +0100 kendy  r268044 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Some more fields 2009-02-17 12:23:27 +0100 kendy  r268043 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Write also numbering type "none". 2009-02-17 12:23:07 +0100 kendy  r268041 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Numbering finished, implemented the rest of the level information. 2009-02-17 12:22:45 +0100 kendy  r268040 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx fields exports: the start of the way 2009-02-17 12:22:23 +0100 kendy  r268039 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Write abstract numbering definitions including the levels. Not all of the information is written yet, but will be soon ;-) 2009-02-17 12:22:00 +0100 kendy  r268038 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Implementation of the abstract numbering definitions, not yet finished. 2009-02-17 12:21:39 +0100 kendy  r268037 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Output numbering definition instances. Abstract numbering definitions are still TODO. 2009-02-17 12:21:21 +0100 kendy  r268036 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename OutListTab() -> NumberingDefinitions(), and OutListTabLevels() -> AbstractNumberingDefinitions(). This is better aligned with what is used in the docx documentation. 2009-02-17 12:21:00 +0100 kendy  r268035 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Changed the ColorToHex to support the "auto" value  Code cleaning according to kendy's remarks 2009-02-17 12:20:37 +0100 kendy  r268034 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> table horizontal merge 2009-02-17 12:20:15 +0100 kendy  r268033 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> impl_convertColor() is not necessary, we already have impl_ColorToHex(). 2009-02-17 12:19:52 +0100 kendy  r268032 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx Line numbering 2009-02-17 12:19:31 +0100 kendy  r268031 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> docx: Implemented Section Types 2009-02-17 12:19:09 +0100 kendy  r268030 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> FIX for borders: documents with no section border didn't wrote completely 2009-02-17 12:18:50 +0100 kendy  r268029 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Fixed some output errors for paragraphs borders 2009-02-17 12:18:31 +0100 kendy  r268028 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Fixed docx page border export problems and added color support 2009-02-17 12:18:13 +0100 kendy  r268027 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Beginning of page borders implementation 2009-02-17 12:17:54 +0100 kendy  r268026 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * export line arrow ends 2009-02-17 12:17:34 +0100 kendy  r268025 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * make helper function GetLineArrow public so that it can be used in ooxml export    put it in EscherPropertyContainer class (static method) 2009-02-17 12:17:16 +0100 kendy  r268024 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> renamed AppendRelation to AddRelation. 2009-02-17 12:16:58 +0100 kendy  r268023 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Fixed hyperlinks style. Fixed having a run of text before the hyperlink 2009-02-17 12:16:39 +0100 kendy  r268022 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Initialize m_pHyperlinkAttrList to NULL. 2009-02-17 12:16:17 +0100 kendy  r268021 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> Fixed the Hyperlink output  Partly fixed the language Id output 2009-02-17 12:15:54 +0100 kendy  r268020 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * fix type mismatch in gradient code  * add flip and rotation parameters to shape transformation 2009-02-17 12:15:29 +0100 kendy  r268019 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * finished gradient fill 2009-02-17 12:15:07 +0100 kendy  r268018 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com>  + docx URL export: output is still wrong 2009-02-17 12:14:44 +0100 kendy  r268017 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * export linear and axial gradients 2009-02-17 12:14:27 +0100 kendy  r268016 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * export line joint type 2009-02-17 12:14:05 +0100 kendy  r268015 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * export dashed lines 2009-02-17 12:13:48 +0100 kendy  r268014 : #i96319# WW8 filter rework + docx export From: Cedric Bosdonnat <cbosdonnat@novell.com> cast problems fixed 2009-02-17 12:13:25 +0100 kendy  r268013 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> * added outline export  * wrapped debug printfs in DBG  * fix text color and typeface placement  * do not write empty runs  * do not write empty paragraph properties  * added end paragraph properties - need to be filled later 2009-02-17 12:13:02 +0100 kendy  r268012 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> export language and fonts are now accepted by msppt 2009-02-17 12:12:44 +0100 kendy  r268011 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> re-enable pptx export - it was disabled by ooxml02 changes committed to git repo 2009-02-17 12:12:22 +0100 kendy  r268010 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> fix build 2009-02-17 12:12:04 +0100 kendy  r268009 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Merge ooxml02 fixes. 2009-02-17 12:11:43 +0100 kendy  r268008 : #i96319# WW8 filter rework + docx export From: Radek Doulik <rodo@novell.com> move drawingml export to oox/ from sd/ 2009-02-17 12:11:20 +0100 kendy  r268007 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Revert commit 8b63649bf0a5d14703459bbf31e1599d592a5dff. It was already fixed easier way. 2009-02-17 12:11:00 +0100 kendy  r268006 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> oox fixes to help sc compile... 	* inc/oox/core/contexthandler2.hxx, 	  inc/oox/drawingml/chart/modelbase.hxx, 	  inc/oox/drawingml/customshapeproperties.hxx, 	  inc/oox/helper/attributelist.hxx, inc/oox/ppt/pptimport.hxx, 	  inc/oox/ppt/slidepersist.hxx: #include <oox/core/tokens.hxx> not 	  "tokens.hxx" as these files are deployed into solver, and there is 	  no "tokens.hxx" in other modules (such as sc). 	* prj/d.lst: Deliver enough header files to let sc build some more... 2009-02-17 12:10:34 +0100 kendy  r268005 : #i96319# WW8 filter rework + docx export From: Jonathan Pryor <jpryor@novell.com> Deliver tablestylelist.hxx. 	* d.lst: Deliver inc/oox/drawingml/table/tablestylelist.hxx, as it's 	  needed by sc export. 2009-02-17 12:10:13 +0100 kendy  r268004 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fix few warnings in sw, and disable DocxExport::WriteNumbering() for now. 2009-02-17 12:09:56 +0100 kendy  r268003 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Add empty implementations of 2 abstract import XmlFilterBase methods. To be able to instantiate DocxExportFilter again... 2009-02-17 12:09:35 +0100 kendy  r268002 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Resolve an unresolved, forgotten chunk [GetAttr() -> GetFmtAttr()]. 2009-02-17 12:09:08 +0100 kendy  r268001 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Field work seems to compile now. Contains also a rename of OutField() to OutputField() to match better the other changes. 2009-02-17 12:08:46 +0100 kendy  r268000 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fix build, WriteOutliner() is now in WW8Export. 2009-02-17 12:08:26 +0100 kendy  r267999 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> OutListTab() split into 2 methods [OutListTab() and OutListTabLevels()]. Also introduced a general WW8Export::WriteNumbering() which calls the needed methods.  OutListTabLevels() is planned to be reused in docx export as well. 2009-02-17 12:08:09 +0100 kendy  r267998 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> DupNumRuleWithLvlStart() renamed to DuplicateNumRule(). 2009-02-17 12:07:40 +0100 kendy  r267997 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Check for max numbering level can be in ParaNumRule(). 2009-02-17 12:07:20 +0100 kendy  r267996 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Few whitespace changes. 2009-02-17 12:06:49 +0100 kendy  r267995 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> GetId( const SwNumRule& rNumRule ) should not be const. If the first thing it does is a const_cast<...>( this ), then something is wrong ;-) 2009-02-17 12:06:29 +0100 kendy  r267994 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Redlining: Save author and date. 2009-02-17 12:06:07 +0100 kendy  r267993 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Output redlining. So far just insertion and deletion of text, and without author and timestamp. 2009-02-17 12:05:45 +0100 kendy  r267992 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Write the font table. 2009-02-17 12:05:27 +0100 kendy  r267991 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Get ready to output the fonts. 2009-02-17 12:05:06 +0100 kendy  r267990 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fix namespace of relation id, and output of headers and footers works now... It's r:id, not w:id ;-) 2009-02-17 12:04:40 +0100 kendy  r267988 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Write actual headers and footers in docx. #i96319# WW8 filter rework + docx export 2009-02-17 12:04:17 +0100 kendy  r267987 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> A small cleanup. 2009-02-17 12:04:00 +0100 kendy  r267986 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fix the regression, caused by SetupSectionPositions() not being virtual (accidentally). 2009-02-17 12:03:40 +0100 kendy  r267985 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> another iteration of numbering, utterly broken, but not crashing anything 2009-02-17 12:03:18 +0100 kendy  r267984 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> SectionProperties() code is now common for binary and docx. Unfortunately binary output does not pass the tests now. 2009-02-17 12:02:49 +0100 kendy  r267983 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Improving the SectionProperties() method to be shared between ww8 and docx. Not there yet, but getting closer ;-)  The docx code is still a placeholder only. 2009-02-17 12:02:29 +0100 kendy  r267982 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> some more work towards the numbering.xml 2009-02-17 12:02:08 +0100 kendy  r267981 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Get rid of rLnNumInfo and aLineNum. 2009-02-17 12:01:44 +0100 kendy  r267980 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> We are in attribute output already. 2009-02-17 12:01:21 +0100 kendy  r267979 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Get rid of unsigned int nHdFtGroup. 2009-02-17 12:01:03 +0100 kendy  r267978 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Introduce WW8AttributeOutput::SectionProperties(). The goal is to share this between ww8 and docx. 2009-02-17 12:00:45 +0100 kendy  r267977 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Be careful, m_pSections/CurrentSectionInfo() might be NULL. 2009-02-17 12:00:22 +0100 kendy  r267976 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Write section properties even for the last section. 2009-02-17 11:59:59 +0100 kendy  r267975 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Output sections (w:sectPr) and columns. 2009-02-17 11:59:34 +0100 kendy  r267974 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> WW8_SepInfo: Move to constructor, what belongs there. 2009-02-17 11:59:14 +0100 kendy  r267973 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Remove an obsolete commented out piece. 2009-02-17 11:58:53 +0100 kendy  r267972 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Output columns break (when the section has more columns). 2009-02-17 11:58:35 +0100 kendy  r267971 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Hook the output of the docx sections to the right place. 2009-02-17 11:58:17 +0100 kendy  r267970 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename OutputSfxBreakItems() to OutputSectionBreaks(). 2009-02-17 11:57:58 +0100 kendy  r267969 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Remove an non-needed comment, add an interesting one. 2009-02-17 11:57:39 +0100 kendy  r267968 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Get rid of OutputPageSectionBreaks(), dissolve it into other methods. 2009-02-17 11:57:19 +0100 kendy  r267967 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fix regression in AttributeOutputBase::FormatBreak(). git bisect, thank you so much! :-) 2009-02-17 11:57:00 +0100 kendy  r267966 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Move pDop and pFib to WW8Export. 2009-02-17 11:56:42 +0100 kendy  r267965 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Implement DocxExport::PrepareNewPageDesc(). 2009-02-17 11:56:24 +0100 kendy  r267964 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Improve WW8Export::PrepareNewPageDesc(). 2009-02-17 11:56:04 +0100 kendy  r267963 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Move part of WW8_WrPlcSepx::OutHeaderFooter() to MSWordExportBase::WriteHeaderFooterText(). 2009-02-17 11:55:27 +0100 kendy  r267961 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Share OutHeader() nad OutFooter() (remove copy'n'paste). 2009-02-17 11:55:06 +0100 kendy  r267960 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename WriteKFTxt1() to WriteHeaderFooterText() and move it to MSWordExportBase. 2009-02-17 11:54:41 +0100 kendy  r267959 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> extracting the ParaNumRule to MSWordExportBase 2009-02-17 11:54:20 +0100 kendy  r267958 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> write out w:numPr node into document.xml + converting some tabs to 4 spaces 2009-02-17 11:53:56 +0100 kendy  r267957 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> MSWordSections split into the base and WW8 specific (WW8_WrPlcSepx). [WW8_WrPlcSepx was the original name of MSWordSections - let it there to decrease confusion ;-)] 2009-02-17 11:53:31 +0100 kendy  r267956 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fix docx export crash by initializing pSepx. 2009-02-17 11:53:11 +0100 kendy  r267955 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> MSWordExportBase::OutputPageSectionBreaks() is now common for binary and docx. 2009-02-17 11:52:48 +0100 kendy  r267954 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> AttributeOutputBase::FormatPageDescription() is now common for binary and docx. 2009-02-17 11:52:28 +0100 kendy  r267953 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> write an empty numbering stream 2009-02-17 11:52:06 +0100 kendy  r267952 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> some more of the spacing 2009-02-17 11:51:39 +0100 kendy  r267951 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename WW8_WrPlcSepx to MSWordSections. 2009-02-17 11:51:19 +0100 kendy  r267950 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Move pSepx initialization to the WW8_WrPlcSepx constructor. 2009-02-17 11:50:53 +0100 kendy  r267949 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fixed styles id's (in styles.xml). Now the styles seem to work pretty well. 2009-02-17 11:50:33 +0100 kendy  r267948 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename AttributeOutput's Style() to ParagraphStyle(), that is more correct. 2009-02-17 11:50:11 +0100 kendy  r267947 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> FormatBreak() is now in the common AttributeOutputBase. And pageBreakBefore works now... 2009-02-17 11:49:49 +0100 kendy  r267946 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Few obvious m_rWW8Export -> GetExport() in WW8AttributeOutput::FormatBreak(). 2009-02-17 11:49:28 +0100 kendy  r267945 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Add PageBreakBefore() to AttrbuteOutput's. It's a preparation for moving FormatBreak() to the generic AttributeOutputBase, and also kills some copy and paste. 2009-02-17 11:49:08 +0100 kendy  r267944 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Debug output of attributes is not needed any more, remove. 2009-02-17 11:48:46 +0100 kendy  r267943 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Don't create a new AttributeOutput in WW8_WrPlcSepx::WriteKFTxt(). 2009-02-17 11:48:25 +0100 kendy  r267942 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Move pEnd and pFtn from MSWordExportBase to WW8Export. 2009-02-17 11:48:03 +0100 kendy  r267941 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Now outputting footnotes and endnotes. Their styles are not output correctly yet, thus the number of the footnote resp. endnote is not distinguished from the text of the paragraph. Another problem that <w:endnoteRef/> is missing. 2009-02-17 11:47:42 +0100 kendy  r267940 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Output of footnote/endnote references. And it's prepared for the output of footnote.xml resp. endnote.xml as well. 2009-02-17 11:47:21 +0100 kendy  r267939 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> some more para properties: widows control, para-splitting and incomplete implementation of spacing 2009-02-17 11:46:59 +0100 kendy  r267938 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Make a bit more obvious what's happenning with AttributeLists. 2009-02-17 11:46:38 +0100 kendy  r267937 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Part of the footnote/endnote stuff is shared now between binary and docx. It is just a small part, but better than nothing ;-)  I'm not sure that sharing more is possible/reasonable at all... 2009-02-17 11:46:16 +0100 kendy  r267936 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> adding paragraph indentation 2009-02-17 11:45:56 +0100 kendy  r267935 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename AddWordBookmark() -> AppendWordBookmark(). 2009-02-17 11:45:36 +0100 kendy  r267934 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Remove 2nd param from AppendBookmark(), nobody was using that anyway. 2009-02-17 11:45:19 +0100 kendy  r267933 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Readability improvements in WW8_WrPlcSubDoc::WriteGenericPlc(). 2009-02-17 11:44:53 +0100 kendy  r267932 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Better readable WW8_WrPlcSubDoc::WriteGenericTxt(). 2009-02-17 11:44:35 +0100 kendy  r267931 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Move WriteSpecialText() from WW8Export to MSWordExportBase. 2009-02-17 11:44:12 +0100 kendy  r267930 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Support for color value 'auto' - used often in the styles. 2009-02-17 11:43:48 +0100 kendy  r267929 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Comment the mark()/mergeTopMarks() magic for paragraphs + par. properties. 2009-02-17 11:43:31 +0100 kendy  r267928 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Remove the styles debug output. 2009-02-17 11:43:14 +0100 kendy  r267927 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Output of styles reworked. The ooxml stuff is implemented as well, but not tested yet. 2009-02-17 11:42:54 +0100 kendy  r267926 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Output word/styles.xml - empty one for now. 2009-02-17 11:42:36 +0100 kendy  r267925 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> Paragraph properties framework + tab stop + paragraph justification + converting some tabs to 4 spaces 2009-02-17 11:42:18 +0100 kendy  r267924 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> More preparations for outputting the styles table in docx. 2009-02-17 11:41:56 +0100 kendy  r267923 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Initialize pStyles even for docx. MSWordStyles was changed so that it can be initialized from any pDoc, it needs WW8Export just for writing ww8 styles. 2009-02-17 11:41:36 +0100 kendy  r267922 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename WW8WrtStyle to MSWordStyles. 2009-02-17 11:41:14 +0100 kendy  r267921 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Uncomment nStyleBeforeFly = GetId( lcl_getFormatCollection( *this, &rNode ) ); 2009-02-17 11:40:50 +0100 kendy  r267920 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> oops, write actually the lang property 2009-02-17 11:40:24 +0100 kendy  r267919 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> character kerning and character language 2009-02-17 11:40:06 +0100 kendy  r267918 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> implement font names and also the asian layout part of run properties 2009-02-17 11:39:41 +0100 kendy  r267917 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> this looks like a typo, it should be EndBracket for this one, I assume 2009-02-17 11:39:21 +0100 kendy  r267916 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> removing some unnecessary warnings 2009-02-17 11:38:56 +0100 kendy  r267915 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> OutputTableNode() finally moved to MSWordExportBase. EndTableRow() from *AttributeOutput gets too much parameters now, but unfortunately, at the moment it was the easiest solution.  As more functionality will move to the actuall cell output, this will get a bit nicer I hope ;-) 2009-02-17 11:38:36 +0100 kendy  r267913 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Trivial output of table cells. Still not complete, OutputTableNode() still contains some WW8-only stuff. 2009-02-17 11:38:10 +0100 kendy  r267912 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Reduced code in DocxAttributeOutput::RunText()/impl_RunText(). 2009-02-17 11:37:51 +0100 kendy  r267911 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> handle also tabs :) 2009-02-17 11:37:28 +0100 kendy  r267910 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> generically filter out any character that is ascii < 0x20 from the string we write to the file 2009-02-17 11:37:10 +0100 kendy  r267909 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> wrap debug output in #if #endif statements 2009-02-17 11:36:48 +0100 kendy  r267908 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> StartTableRow(), EndTableRow(), and TableRowProperties() for *AttributeOutput. And the appropriate rework in OutputTableNode() (still no ooxml output yet, but getting closer. 2009-02-17 11:36:29 +0100 kendy  r267907 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> StartTable() and EndTable() for *AttributeOutput. And the appropriate rework in OutputTableNode() [which is still let in WW8Export, but it's move to MSWordExportBase is close ;-)]. 2009-02-17 11:36:09 +0100 kendy  r267906 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Improve readability in OutputTableNode; Out_SfxBreakItems -> MSWordExportBase. Out_SfxBreakItems was also renamed to OutputSfxBreakItems. 2009-02-17 11:35:50 +0100 kendy  r267905 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Cosmetic change: OutputFlyFrameImpl() -> OutputFlyFrame_Impl(). 2009-02-17 11:35:30 +0100 kendy  r267904 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Change WW8SaveData into SaveData() and RestoreData() methods. WW8SaveData was hard to extend to be able to handle WW8Export and DocxExport at the same time; so instead there are now SaveData() and RestoreData() virtual methods in MSWordExportBase, and the appropriate additions are solved directly in WW8Export (nothing for DocxExport [yet?]). 2009-02-17 11:35:12 +0100 kendy  r267903 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Write line breaks. 2009-02-17 11:34:54 +0100 kendy  r267902 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> More from WW8Export::ExportDocument_Impl() to MSWordExportBase::ExportDocument(). 2009-02-17 11:34:36 +0100 kendy  r267901 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename StoreDoc() to ExportDocument(), and move it to MSWordExportBase. The format-dependant parts were moved to a virtual ExportDocument_Impl(). 2009-02-17 11:34:19 +0100 kendy  r267900 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Explicitely default construct maMarkStack [to be safe ;-)]. 2009-02-17 11:34:01 +0100 kendy  r267899 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fix few crashes in DocAttributeOutput.cxx (missing FSNS() in vararg). 2009-02-17 11:33:43 +0100 kendy  r267898 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Rename writeMarked() to mergeTopMarks() and improve the implementation. Just writing the top mark is not enough; in more complex scenarios it would destroy the order completely.  This way we have better control over what's happening, and can nest the mark()/mergeTopMarks()/mergeTopMarks( true ) as necessary directly in the start/end tags. 2009-02-17 11:33:25 +0100 kendy  r267897 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Use serializer's mark() and writeMarked() to change order of <t> and <rPr> ... instead of using m_aText to remember the content of the text.  That wouldn't work later anyway - we will probably need to change the order of the paragraph properties and text runs as well which will be done easily using mark() and writeMarked() as well. 2009-02-17 11:33:06 +0100 kendy  r267896 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Outputting docx runs with attributes works now. 2009-02-17 11:32:48 +0100 kendy  r267895 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> The msword filter compiles again. Added empty implementations of the virtual methods to DocxExport and DocxAttributeBase [printing 'TODO Blah::bleh()' ;-)].  The thing binary output still passes the testsuite, yay! 2009-02-17 11:32:30 +0100 kendy  r267894 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> OutputTextNode() is not virtual any more and sits in MSWordExportBase. Lots of stuff has been moved around again - mostly from WW8Export to MSWordExportBase (for the gerenalized stuff) and to WW8AttributeOutput (for the 'hardcore' output of bytes/sprms/data/...)  At the moment, it compiles, but the docx part of the filter does not link thanks to the missing implementation of DocxAttributeOutput methods (the new ones). 2009-02-17 11:32:11 +0100 kendy  r267893 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Documentation updates. 2009-02-17 11:31:48 +0100 kendy  r267892 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Change harcoded sprm ids to consts (reused from writerfilter). This adds a build dependency of sw on writerfilter - hopefully it's OK. 2009-02-17 11:31:28 +0100 kendy  r267891 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Get rid of *NodeOutput classes, the code belongs directly to *Export. The callbacks I moved to newly created classes NodeOutputBase, WW8NodeOutput, or DocxNodeOutput respectively in fact should not be in separate classes, but directy in MSWordExportBase, WW8Export, or DocxExport respectively.  This commit moves them accordingly. 2009-02-17 11:31:06 +0100 kendy  r267890 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> bUnicode -> m_rWW8Export.bWrtWW8; it's the same in this context. 2009-02-17 11:30:44 +0100 kendy  r267889 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Remove unnecessary {} block. 2009-02-17 11:30:24 +0100 kendy  r267888 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Several German comments to English. 2009-02-17 11:30:08 +0100 kendy  r267887 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Move pO cleanup directly into aAttrIter.OutAttr(). 2009-02-17 11:29:44 +0100 kendy  r267886 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Shorten WW8NodeOutput::TextNode() by moving SwFmtDrop output to a separate method. 2009-02-17 11:29:22 +0100 kendy  r267885 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Unified the use of m_rWW8Export.pO in WW8NodeOutput::TextNode(). In some cases, it was used as m_rWW8Export.pO, in the others as only pO (but meaning the same thing).  Changed all the occurences to the simple pO to improve readability. 2009-02-17 11:29:00 +0100 kendy  r267884 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> and other attributes coming in; we start to have all the more or less easy ones covered now 2009-02-17 11:28:43 +0100 kendy  r267883 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> some more attributes are comming in 2009-02-17 11:28:26 +0100 kendy  r267882 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Create DocxNodeOutput. The basic one with a trivial implementation of TexNode() method so that it at least outputs all the paragraphs as one text run. 2009-02-17 11:28:03 +0100 kendy  r267881 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> WriteText() moved from WW8Export do MSWordExportBase. And some refactoring implied by the move. 2009-02-17 11:27:35 +0100 kendy  r267880 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> some more character attributes implemented 2009-02-17 11:27:18 +0100 kendy  r267879 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> some text attributes + build fixes (not very informative, but it is me) 2009-02-17 11:26:57 +0100 kendy  r267878 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> WW8Export holds an instance of WW8NodeOutput. Instead of creating a new one with every call of WW8Export::WriteText(). 2009-02-17 11:26:35 +0100 kendy  r267877 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Get rid of aWW8NodeFnTab callbacks. Introduce NodeOutputBase/WW8NodeOutput instead, and change the OutWW8_* functions to the WW8NodeOutput methods. 2009-02-17 11:26:13 +0100 kendy  r267876 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> pCurPam and pOrigPam back to MSWordExportBase. Looks necessary there... 2009-02-17 11:25:52 +0100 kendy  r267875 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> DocxAttributeOutput implementation. So far just bare bones printing TODO's to stderr + output of real <w:b/> and <w:i/>; also nothing instantiates it yet. 2009-02-17 11:25:30 +0100 kendy  r267874 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Fixed a problem that more attributes were exported than necessary. 2009-02-17 11:25:10 +0100 kendy  r267873 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Moving more stuff from MSWordExportBase to WW8Export. pCurPam and pOrigPam, pO, and pTableStream and pDataStream.  Hopefully I won't have to move them back at some stage ;-) 2009-02-17 11:24:49 +0100 kendy  r267872 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Cosmetic. 2009-02-17 11:24:27 +0100 kendy  r267871 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> fix nondebug build too 2009-02-17 11:24:07 +0100 kendy  r267870 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> After rework - even saves a trivial document :-) 2009-02-17 11:23:45 +0100 kendy  r267869 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> SwWW8Writer and the attributes rework compiles now. Of course, no idea yet if it works at all. 2009-02-17 11:23:25 +0100 kendy  r267868 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Ancestor of MSWordExportBase for docx. Just a dump of the work, still just writing the 'Hello, world!' document [if it compiled, which it does not ;-)] 2009-02-17 11:23:03 +0100 kendy  r267867 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Instead of callbacks, use virtual functions to output attributes. This is just a dump of the rewrite, for sure does not compile.  All the SwWW8Out_ callbacks were moved to a class dedicated for output - WW8AttributeOutput.  It is a descendant of AttributeOutputBase; there will be a separate implementation for the docx case. 2009-02-17 11:22:43 +0100 kendy  r267866 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Partial split of SwWW8Writer. Introduced a new structure - the logic of the filter will be in class MSWordExportBase, from which we will derive WW8Export and DocxExport. SwWW8Writer has been split into WW8Export (for the logic) and SwWW8Writer (for the actual access to the stream).  For most of the methods it means renaming SwWW8Writer::MethodName() to WW8Export::MethodName() + cleaning access to the attributes/other methods. All this is not finished yet, and does not even compile - but it is necessary to dump the current status ;-) 2009-02-17 11:22:25 +0100 kendy  r267865 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> do the filter forwarding the pure UNO way (hell expensive, but no build dependency on anything) 2009-02-17 11:22:06 +0100 kendy  r267864 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> yay, we have the same component doing the import and export for word 2007 2009-02-17 11:21:46 +0100 kendy  r267863 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> more work towards having the import and export in the same component 2009-02-17 11:21:20 +0100 kendy  r267862 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> starting to forward export in writerfilter 2009-02-17 11:20:58 +0100 kendy  r267860 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> trying to fix some of the registration stuff 2009-02-17 11:20:35 +0100 kendy  r267859 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Exporting a real document. So far just a hardcoded 'Hello, world!' of course ;-) 2009-02-17 11:20:13 +0100 kendy  r267858 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Renamed DocxWriter to DocxExportFilter. (...and also the files that contain it) 2009-02-17 11:19:52 +0100 kendy  r267857 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> The initial exporter. Can be chosen from the menu, but so far we can just get a SwDoc* in the exportDocument() method, and consequently the exported file has zero size. 2009-02-17 11:19:30 +0100 kendy  r267854 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Simple output of the styles. As just the <w:b/> and <w:i/> attributes work for now, the output is not much helpful ;-) - but as a proof-of-concept, this must be enough... 2009-02-17 11:15:14 +0100 kendy  r267852 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> The fonts are between <w:fonts> and </w:fonts>. 2009-02-17 11:11:06 +0100 kendy  r267851 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Proof-of-concept saving the fonts (word/fontTable.xml). As with the previous commits, it is just dumped to stderr. 2009-02-17 11:08:36 +0100 kendy  r267850 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Proof-of-concept saving attributes of the text runs. Still using the DOCX debug class, which will be gone in the real implementation. 2009-02-17 11:04:40 +0100 kendy  r267848 : #i96319# WW8 filter rework + docx export From: Jan Holesovsky <kendy@suse.cz> Proof-of-concept save of paragraphs/runs/text. The paragraph pieces of DOCX just get dumped to stdout while saving the 'normal' DOC.  This is just a hacky way of doing it, will be cleaned up (and converted to actual output to a stream) when I get the attributes, and distinction between main document/headers/footers/etc. right. 2009-02-17 11:02:54 +0100 kendy  r267847 : #i96319# WW8 filter rework + docx export From: Fridrich Strba <fstrba@novell.com> Make writerfilter export filter too (at least formally) 2009-02-16 22:48:29 +0100 kendy  r267840 : CWS-TOOLING: rebase CWS ooxml03 to trunk@267171 (milestone: DEV300:m41)


2009-08-24  Release Engineers  <releng@openoffice.org>  [f8a8dd6bacc03646fc25ff2675abe4d4fd51c6e1]

Create DEV300_m56 milestone tag from trunk@275330


2009-08-22  Kohei Yoshida  <kohei@openoffice.org>  [f765f84b5164acd143439d139a09049f3ee845fa]

more cleanup


2009-08-22  Kohei Yoshida  <kohei@openoffice.org>  [89973dfbb94fee736ed35f6f8352376964345ce4]

forgot to remove debug statement.


2009-08-22  Kohei Yoshida  <kohei@openoffice.org>  [d34747e40c03ed2174ad97d593a56785c6553627]

Use ScAccessibleStateSet to share state set implementation.


2009-08-22  Kohei Yoshida  <kohei@openoffice.org>  [6482287c8384f6d4706f15647310bf652b8871d0]

More code cleanup & wrote a separate XAccessibleStateSet implementation that can be shared across classes.


2009-08-22  Kohei Yoshida  <kohei@openoffice.org>  [b7b4711ee209f6e8530b9c0a40e17b95cc4c4880]

code cleanup.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [b9abec5e65968ac7d77d65bc33a11b3d3c83b733]

fixed a build breakage.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [e455b74b71be1d3c80c0013fb156bd09addb8fbf]

When a menu action is fired via accessible object, we need to make sure that all the popup windows get dismissed.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [232846564306676c550c7f5dfb0febb640176310]

Supported execution of menu items from the accessible object.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [c42220522dc28446239bac9f0beebdad33f70f18]

more debug statements removed.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [4ecbb34fc8951d5e32cc8d582e5dcfe9129788b2]

forgot to remove debug statements.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [b7d856d69f4662b7ba6ffe31c70a8e8d0eb676b0]

Ensure correct menu hierarchy when selecting an arbitrary menu item from the accessible object.


2009-08-21  Thomas Benisch  <tbe@openoffice.org>  [6d828f599d6523ab7349d5edfafa4361382a5899]

#i12587# Inserting/editing arbitrary text objects in chart


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [ca28ff3029923daf6d1a0773c7bf3cc56967e53d]

remove the MenuItem class declaration - it was a wrong idea.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [28c9096b7161c779686765cae55fe9359171b70b]

renamed structs.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [844b257a8e70032692346c6a783be8f0c5bfea42]

Broke long method declarations into several lines.


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [35b1bb5ecaf594dbf02a8aa33d515af86816b597]

removed debug statements & more dynamic type checking (this will be replaced later).


2009-08-21  Kohei Yoshida  <kohei@openoffice.org>  [0fac6e3a9c73738f43c542d8c04e2c991246cfcd]

Let's not duplicate menu's selected state with the accessible object; we can easily query the Window instance for that.  This also fixed a crasher when accessing menus from accerciser.


2009-08-20  Kohei Yoshida  <kohei@openoffice.org>  [076276bd4962fdb5e492d27fa83d5efb383f0a43]

removed all my printf statements.


2009-08-20  Kohei Yoshida  <kohei@openoffice.org>  [d7893a00fcfeb67202d427681af12ffdcb2a7908]

Added accessible objects for the remainder of the standard widgets.


2009-08-20  Kohei Yoshida  <kohei@openoffice.org>  [debdd84f7fe843173eeeb67152ac77331da78211]

My first cut on implementing accessibility for the new datapilot field popup window.  This is still work-in-progress, with lots of debug statements everywhere.


2009-08-19  Thomas Benisch  <tbe@openoffice.org>  [149a71f03f23f0a0e0b478156cd9f9007501dd75]

#i12587# Inserting/editing arbitrary text objects in chart


2009-08-19  Henning Brinkmann  <hbrinkm@openoffice.org>  [224c2eb27e95c636399c040ad591bebc2179c04c]

merged DEV300_m55


2009-08-18  Thomas Benisch  <tbe@openoffice.org>  [89056716528d28efeb3add5cb07960944f3ce378]

#i12587# Inserting/editing arbitrary text objects in chart


2009-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [c68197a5938094a36848c97f93079464cd0ecc76]

CWS-TOOLING: integrate CWS graphite01 2009-08-06 11:09:01 +0200 hdu  r274708 : #i10000# fix build breaker for SYSTEM_GRAPHITE=NO 2009-07-21 12:01:52 +0200 hdu  r274174 : #i93645# fix include files for EXT_USE_STLPORT 2009-07-21 11:51:07 +0200 hdu  r274173 : #i93645# convert line-endings of files to be patched 2009-07-21 10:49:01 +0200 hdu  r274170 : #i93645# adjust makefile.vc8 for HH-RelEng env (thanks ause) 2009-07-20 05:21:32 +0200 kstribley  r274105 : attempt to fix Windows build error caused by NULL variable in nmake file 2009-07-16 10:22:36 +0200 hdu  r274032 : #i69129# also use solar minor version to find graphite lib 2009-07-16 05:36:06 +0200 kstribley  r274029 : allow windows build to have Graphite disabled with SAL_DISABLE_GRAPHITE 2009-07-15 13:59:22 +0200 hdu  r274011 : #i69129# default to ENABLE_GRAPHITE=TRUE 2009-07-15 13:19:54 +0200 hdu  r274008 : #i93645# ignore compile warnings for graphite 2009-07-15 13:18:25 +0200 hdu  r274006 : #i93645# stlport needs libmath, use solar minor version to find matching libs 2009-07-15 09:21:13 +0200 hdu  r273989 : #i100000# avoid compile warning 2009-07-14 12:19:08 +0200 hdu  r273963 : CWS-TOOLING: rebase CWS graphite01 to trunk@273858 (milestone: DEV300:m52) 2009-07-13 06:54:56 +0200 kstribley  r273912 : change to use standard file headers 2009-07-13 05:39:14 +0200 kstribley  r273911 : Remove unnecessary change to configure.in as reported by Rene 2009-07-10 16:58:44 +0200 hdu  r273902 : #i100000# fix compile for precompiled-header support 2009-07-02 13:48:26 +0200 kstribley  r273647 : #69129# fix a graphite bug which could crash with fonts containing obscure GDL positioning rules 2009-07-02 01:44:02 +0200 rene  r273616 : #i10000# we need to link with -licuuc 2009-07-01 04:02:20 +0200 kstribley  r273540 : restore missing sdf files from base 2009-07-01 04:01:40 +0200 kstribley  r273539 : restore missing sdf files from base 2009-07-01 04:01:12 +0200 kstribley  r273538 : restore missing sdf files from base 2009-07-01 03:59:41 +0200 kstribley  r273537 : restore missing sdf files from base 2009-06-29 10:16:51 +0200 kstribley  r273456 : #i69129# fixes a bug which caused occasional incorrect linebreaking when graphite is asked to render a part of a cluster not containing a base 2009-06-27 10:43:58 +0200 kstribley  r273445 : #i69129# added kashida support for justified RTL text 2009-06-01 12:57:06 +0200 kstribley  r272476 : CWS-TOOLING: rebase CWS graphite01 to trunk@272291 (milestone: DEV300:m49) 2009-05-26 10:50:06 +0200 kstribley  r272286 : #i69129# fixes a build error when NDEBUG is not defined 2009-05-25 13:14:06 +0200 kstribley  r272237 : #i69129# enable debugging by fixing compile warnings 2009-05-25 13:07:47 +0200 kstribley  r272234 : #i69129#  added env variable to disable GRAPHITE at run time on linux and fixed a bug with a rare attachment sequence 2009-04-20 17:39:25 +0200 kstribley  r271001 : CWS-TOOLING: rebase CWS graphite01 to trunk@270723 (milestone: DEV300:m46) 2009-04-18 07:11:33 +0200 kstribley  r270957 : #i101178# attempt to fix buildbot builds by reordering configure.in 2009-04-14 17:37:07 +0200 kstribley  r270801 : #i93645# tweak configure to enable graphite by default on windows and linux to assist testing with tinderbox build 2009-04-14 16:33:17 +0200 kstribley  r270796 : #i96925# another fix for rtl fallback and add optional debug info in MultiSalLayout 2009-04-08 13:27:55 +0200 kstribley  r270641 : #i69129# fix features after a bad merge 2009-04-08 13:26:34 +0200 kstribley  r270640 : #i69129# add a patch for WinFont 2009-03-24 12:37:54 +0100 kstribley  r269937 : #i69129# fix build error due to locale being included in method for features 2009-03-24 12:36:10 +0100 kstribley  r269936 : #i93645# change patch variable and fix configure 2009-03-20 04:18:56 +0100 kstribley  r269776 : CWS-TOOLING: rebase CWS graphite01 to trunk@269297 (milestone: DEV300:m43) 2009-03-01 13:10:59 +0100 kstribley  r268622 : added a patch to improve handling of a font with bad graphite language feature tables #i93645# 2009-02-12 04:50:51 +0100 kstribley  r267631 : #i93645# fix windows build for graphite 2.3.1 and remove unnecessary patch 2009-02-10 04:48:50 +0100 kstribley  r267535 : #i93645# fix a build error with stlport on Ubuntu 8.10 x86 2009-02-10 03:51:10 +0100 kstribley  r267534 : #i69129# remove legacy config_office 2009-02-07 19:12:54 +0100 kstribley  r267482 : #i93645# upgrade to using silgraphite-2.3.1 2009-02-02 18:17:57 +0100 kstribley  r267290 : #i69129# backout unwanted checkin 2009-02-02 17:44:03 +0100 kstribley  r267281 : #i69129# backout erroneous update to aclocal.m4 2009-02-01 10:05:03 +0100 kstribley  r267236 : #i69129# fix build error due to locale being added to set font attributes 2009-02-01 06:02:52 +0100 kstribley  r267235 : #i69129# fix erroneous merge 2009-01-31 16:24:56 +0100 kstribley  r267234 : #i69129# update configure.in solenv.in in their new locations with enable graphite 2009-01-31 10:53:18 +0100 kstribley  r267232 : CWS-TOOLING: rebase CWS graphite01 to trunk@267171 (milestone: DEV300:m41) 2008-12-17 04:17:33 +0100 kstribley  r265577 : #i93645# remove superfluous autoreconf check and autoconf patch 2008-12-16 10:07:20 +0100 rene  r265529 : fix aclocal.m4 breakage 2008-12-16 05:13:29 +0100 kstribley  r265520 : #i93645# change to autoconf && configure 2008-12-16 04:39:48 +0100 kstribley  r265519 : #i93645# modified LD_FLAGS so that system graphite isn't pulled in by accident and fixed autoconf problem 2008-12-15 14:16:25 +0100 rene  r265497 : check for working STL 2008-12-15 12:53:39 +0100 rene  r265473 : revert broken check 2008-12-15 11:59:21 +0100 kstribley  r265472 : #i93645# added check for system STL, since this is a requirement for system graphite to work correctly and moved the position of the check further down 2008-12-15 11:55:34 +0100 kstribley  r265471 : #i93645# remove references to gr3ooo to allow system graphite to be used 2008-12-12 18:48:18 +0100 rene  r265437 : fix link for system-graphite 2008-12-12 18:46:45 +0100 rene  r265436 : the tarball is in graphite, remove obsolete check 2008-12-12 18:22:22 +0100 rene  r265433 : typo; re-autoconf 2008-12-12 17:35:26 +0100 rene  r265432 : actually implement SYSTEM_GRAPHIT checks (as already checked for in makefile.mks) but remove the checks in graphit itself and move to BUILD_TYPE 2008-12-12 08:08:33 +0100 kstribley  r265387 : #i69129# 2 of the patched files need windows line endings so patch works on linux as well as windows 2008-12-12 08:04:41 +0100 kstribley  r265386 : #i69129# rtl fallback fix which prevents caching of segments with fallback 2008-12-08 04:28:12 +0100 kstribley  r264969 : results of running autoconf with graphite config changes #i69129# 2008-12-05 08:12:47 +0100 kstribley  r264886 : backout unintential change at r264884 2008-12-05 06:26:33 +0100 kstribley  r264884 : #i96925# fixes for uniscribe fallback 2008-12-05 06:11:37 +0100 kstribley  r264883 : #i69129# improvements to windows graphite code, including caching of sila table lookup 2008-12-02 13:28:51 +0100 kstribley  r264694 : #i93645# add graphite library and append to patch 2008-11-27 06:47:10 +0100 kstribley  r264445 : #69129# fix rtl loop bug and rtl caching problem 2008-11-27 06:42:20 +0100 kstribley  r264444 : add caching for GraphiteFontAdaptor 2008-11-14 15:57:03 +0100 kstribley  r263681 : #69129# add graphite addtional files from cvs 2008-11-14 15:54:47 +0100 kstribley  r263680 : #69129# fix for modified resolution api 2008-11-13 16:24:09 +0100 kstribley  r263652 : #69129# add skeleton to build graphite module library 2008-11-13 16:22:19 +0100 kstribley  r263651 : #69129# add skeleton to build graphite module library 2008-11-13 16:16:10 +0100 kstribley  r263650 : #69129# migrate from cvs 2008-11-13 15:26:54 +0100 kstribley  r263646 : #69129# add a module for the graphite library


2009-08-15  Philipp Lohmann  <pl@openoffice.org>  [95956f783df4b604803ef0eb65070b570f8ee549]

#i92516# move solar.hrc to vcl


2009-08-15  Philipp Lohmann  <pl@openoffice.org>  [ce029d49d9a918fbcb04e77a7d70843c77087339]

#i92516# move solar.hrc to vcl


2009-08-14  Thomas Benisch  <tbe@openoffice.org>  [b94fd5782feebc935af97556f3bc937880d5862a]

#i12587# Inserting/editing arbitrary text objects in chart


2009-08-14  Release Engineers  <releng@openoffice.org>  [c67040a28564fb2fddf8cd19d1744e71fead773d]

Create DEV300_m55 milestone tag from trunk@275000


2009-08-12  Thomas Benisch  <tbe@openoffice.org>  [dbe2341d1b56d88c62893ab98677b37c5204d3c6]

#i12587# Inserting/editing arbitrary text objects in chart


2009-08-10  Philipp Lohmann  <pl@openoffice.org>  [189bd2fd0e2876438e93ec218ff83d25477d8bd3]

#i92516# more changes for final UI spec


2009-08-10  Thomas Benisch  <tbe@openoffice.org>  [15dfb787a033eff1950639f290063a0122c315c1]

#i12587# Inserting/editing arbitrary text objects in chart


2009-08-07  Kohei Yoshida  <kyoshida@novell.com>  [8e9ad0ad92a688f1cf68afd299995ddfe5416c93]

merged DEV300_m54.


2009-08-07  Kohei Yoshida  <kyoshida@novell.com>  [34548c2324546e02bf47072e44e7dd25f5140330]

* removed several files from version control because they are no longer present on the file system. * hg claims two files are modified in solenv, but taking a diff turns up nothing.  Well, I'll commit them anyway.


2009-08-07  Release Engineers  <releng@openoffice.org>  [26f5cc34d5c4d44b0e17588ac3c0e2efd97274f3]

CWS-TOOLING: integrate CWS calcooo311_DEV300 2009-08-04 13:55:19 +0200 er  r274617 : #i102356# add patch flag for i18npool lib 2009-08-03 17:29:15 +0200 dr  r274589 : #i103968# ported fix from DEV300, new pie charts lose point color 2009-07-29 23:20:00 +0200 er  r274467 : #i103861# Shared formula and named range relative reference wrap with different grid sizes; patch from <kohei>


2009-08-06  Kohei Yoshida  <kyoshida@novell.com>  [c58c57245acc1af7c0e11317532a7b8f13f50c69]

Change the identity of the import option dialog.

Change the identity of the import option dialog from lang chooser to
text import options, since the dialog now contains more than just the
language option.
2009-08-06  Daniel Rentz  <dr@openoffice.org>  [6197c579ae5f2992660d745e8215e62a64efe3cf]

#i12587# reorg of svx/EscherEx class (separate class EscherExGlobal for global stuff shared through multiple instances of EscherEx), export of shapes embedded in Calc charts to BIFF8; #i55183# write child anchor instead of client anchor for charts/OLE/controls embedded in shape groups


2009-08-06  Henning Brinkmann  <hbrinkm@openoffice.org>  [8a7671da0d162d91c718297ec13b9528d1852c26]

merged DEV300_m54


2009-08-04  Release Engineers  <releng@openoffice.org>  [18fa4527cadde6de3622ebcf2781d7abe0b14b26]

Create DEV300_m54 milestone tag from trunk@274621


2009-08-03  Kohei Yoshida  <kohei@openoffice.org>  [f52d0540bb342d0b01a234800484af1dcd0ebd62]

Launch the popup window right-aligned with the cell if the cell is wider than the width of the popup.


2009-08-03  Kohei Yoshida  <kohei@openoffice.org>  [e834623af0e8af31f2aa5d658ecfd04fb846d0c1]

Fixed naming inconsistency: Src -> Scr


2009-08-03  Kohei Yoshida  <kohei@openoffice.org>  [1e33e35811080599793ab2c216a3cb3af4c0b24d]

Fixed text zooming issue where the text was not scaling properly per current zoom level.


2009-08-03  Thomas Benisch  <tbe@openoffice.org>  [e32530c8a6d3e2c8bbc9c5ca949ed1c970b733ad]

#i12587# warning


2009-08-03  Thomas Benisch  <tbe@openoffice.org>  [2ead979188e5df27e0263a76c46702f67ab4292a]

#i12587# compile error


2009-08-03  Daniel Rentz  <dr@openoffice.org>  [42fa77c0874e1794d2503598215a6bab75d1d334]

#i12587# suncc warning


2009-08-01  Philipp Lohmann  <pl@openoffice.org>  [0796dfd07c36a09dbae77b61b5fe8dba9651fbfa]

#i92518# lates UI changes


2009-08-01  Philipp Lohmann  <pl@openoffice.org>  [2e23f369af454dcc706ce952fb8b57f96b77d34d]

#i92518# lates UI changes


2009-08-01  Kohei Yoshida  <kohei@openoffice.org>  [7e176895d4a93622c7721c36c096dd4def65ea2e]

dismiss the popup window when the sheet is scrolled etc.


2009-08-01  Kohei Yoshida  <kohei@openoffice.org>  [9c51f69c92a5203045a3488cda98b53ac48824cd]

Button pressing animation for autofilter buttons.


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [599b5dcf26f0632ba2dd1c978d28663174a1724f]

Extracted the autofilter hit handling code into its own method.


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [835e7d31dd5e99faf2d0da2332ba511a84079193]

Draw the autofilter arrow button the same way as the field popup button.  This will temporarily break autofilter's push animation and mouse pointer hit analysis.  Also made the popup button a little wider.


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [4e9030d2e12c3c9668952ea21150134ee41bd7d3]

Draw black border around the popup arrow.  It looks better this way.


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [7cfb0782bc22b33516018dc234ecf259576491b7]

Handle optional property values of DataPilotSource more gracefully.  We need to allow the data provider to not support those optional properties.


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [f757b52519a29779e059eb6d58518aa03fdcab5c]

We append an extra title row only for xls import, not for ods import.


2009-07-31  Thomas Benisch  <tbe@openoffice.org>  [743c791f78bea678010d93748a186ce885759425]

#i12587# Inserting/editing arbitrary text objects in chart


2009-07-31  Daniel Rentz  <dr@openoffice.org>  [d73b6d5c56613761af7f1cb30f67aead86b6c2cb]

#i12587# preparation for chart-shapes: count DFF drawings dynamically


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [8a7e8f818cae346d0e4e2f2ccb4a7da73cce31b2]

Don't forget to update the toggle-all check box after each single selection.


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [9f4d44bf81dd2cbd48121fb5e9bdf80041b23170]

Quick help strings for the single-selection buttons per spec from IBM.


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [085d641d8b5ca7564a62323402ba55f82940597a]

Implemented single-select buttons.  It's fully functional.


2009-07-31  Kohei Yoshida  <kohei@openoffice.org>  [4a08e7ab422d30009fea4afcd2f8e9ff38b51c64]

Implemented "toggle all" check box per IBM's spec.


2009-07-30  Kohei Yoshida  <kohei@openoffice.org>  [4e4df0fa06f401e14254a1228ec428f0a872afc3]

removed unused method.


2009-07-30  Kohei Yoshida  <kohei@openoffice.org>  [d211e1db3aeb14b964cbe898e912473c2591df42]

Removed unused code after the switch to SvxCheckListBox.


2009-07-30  Kohei Yoshida  <kohei@openoffice.org>  [374a105e3856b823637817b8c1133d128ca471a3]

Used SvxCheckListBox to implement the check list box instead of rolling my own.


2009-07-30  Mathias Bauer  <mba@openoffice.org>  [8ae3706686f8f21caf395c0950331b7536affbf2]

more dependencies fixed


2009-07-30  Kohei Yoshida  <kohei@openoffice.org>  [fcc8c1f79e0c97d1c8ada9f651f58e0b33c6ae81]

Ctrl-D to launch the dp field popup window, the same way it launches the page field window.


2009-07-30  Kohei Yoshida  <kohei@openoffice.org>  [503b0e2cb64558483d42ef0d614d7cd4cb9132c5]

Draw borders around the list member box.


2009-07-29  Daniel Rentz  <dr@openoffice.org>  [959e4e2862fd45beb60bf80575dad4a9c46c8421]

#i12587# small fixes for BIFF import, preparations for BIFF export


2009-07-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [8db622fc0307b21084742e816116d2e9d8dabb68]

CWS-TOOLING: integrate CWS dr71 2009-07-07 16:26:00 +0200 dr  r273805 : #i10000# unused variables 2009-07-07 10:27:14 +0200 dr  r273780 : CWS-TOOLING: rebase CWS dr71 to trunk@273468 (milestone: DEV300:m51) 2009-07-01 11:28:24 +0200 dr  r273559 : #101471# special handling for XL library functions in ODF formulas (EUROCONVERT) 2009-06-29 17:48:46 +0200 dr  r273478 : #i101471# typo 2009-06-29 17:35:16 +0200 dr  r273477 : #i101471# import msoxl: formulas from conditional formatting and data validation 2009-06-18 13:45:17 +0200 dr  r273115 : #101471# changed interface css.sheet.XFormulaParser 2009-06-18 13:44:43 +0200 dr  r273114 : #101471# changed interface css.sheet.XFormulaParser 2009-06-17 17:29:23 +0200 dr  r273089 : #i101471# extend the XFormulaParser interface with a ReferencePosition parameter, make rel-refs from msoxl: namespace working 2009-06-17 17:28:39 +0200 dr  r273088 : #i101471# extend the XFormulaParser interface with a ReferencePosition parameter 2009-06-17 17:28:19 +0200 dr  r273087 : #i101471# extend the XFormulaParser interface with a ReferencePosition parameter 2009-06-17 17:27:19 +0200 dr  r273086 : #i101471# extend the XFormulaParser interface with a ReferencePosition parameter, remove that property from FormulaParser service 2009-06-17 12:52:20 +0200 dr  r273059 : #i101471# import cell formulas from msoxl: namespace 2009-06-16 11:40:50 +0200 dr  r273013 : #i101471# import formula namespace from xml elements 2009-06-12 18:34:13 +0200 dr  r272935 : #i101471# external formula parser for oox in odf 2009-06-12 18:33:13 +0200 dr  r272934 : #i101471# external formula parsers 2009-06-12 18:29:46 +0200 dr  r272933 : #i101471# external formula parsers 2009-06-05 15:53:47 +0200 dr  r272705 : #i101471# provide OOX formula parser as UNO service


2009-07-28  Philipp Lohmann  <pl@openoffice.org>  [41e042dc348316358b709875c745392fd4c42dea]

#i92518# adapt UI spec


2009-10-08  hg  <hg@oosvn01.>  [50c2667e1330ef37eb653a92d5e949c156ad4809]

merge with m53


2009-07-28  Thomas Benisch  <tbe@openoffice.org>  [2d2ea67d50d086cfd965f438f97550f9a5bbbb9f]

#i12587# Inserting/editing arbitrary text objects in chart


2009-07-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [1a1709cea4cc33e45b48243bc81569818634c421]

CWS-TOOLING: integrate CWS chart39 2009-06-30 16:55:46 +0200 iha  r273522 : #i103209# im-/export attribute xlink:href at chart:chart element + some cleanup in naming 2009-06-30 16:45:59 +0200 iha  r273521 : #i102701# apply patch for P1 issue on dev300m50 to be able to save again 2009-06-30 16:32:32 +0200 iha  r273520 : #i103209# im-/export attribute xlink:href at chart:chart element + some cleanup in naming 2009-06-29 10:04:34 +0200 iha  r273454 : #i103147# ODF, workaround broken files with a missing table:cell-range-address at the plot-area 2009-06-26 19:31:16 +0200 iha  r273437 : #i103147# ODF, workaround broken files with a missing table:cell-range-address at the plot-area 2009-06-25 10:36:28 +0200 iha  r273367 : #i101968# text values in data range cause incorrect x values 2009-06-24 17:34:18 +0200 iha  r273357 : #i102428# x values are wrong in xy-scatter-chart with own data table if empty cells are contained in x values 2009-06-24 10:16:25 +0200 iha  r273317 : #i99915# wrong matrix translation causes broken chart display for small values 2009-06-19 17:20:06 +0200 iha  r273174 : #i78025# charts own borders are not completely visible 2009-06-19 17:18:41 +0200 iha  r273172 : #i102950# don't paint additional borders for charts 2009-06-11 16:27:54 +0200 iha  r272884 : CWS-TOOLING: rebase CWS chart39 to trunk@272827 (milestone: DEV300:m50) 2009-06-09 17:50:10 +0200 iha  r272790 : #i97222# when converting a chart via API to 3D categories get lost and for line,area&xy the stacking mode is wrong 2009-06-09 16:00:27 +0200 iha  r272775 : #i98319# data point properties get lost while copying charts from calc to impress 2009-06-09 10:26:51 +0200 iha  r272755 : #i98392# correct orienation of gradient fillings on 3D walls 2009-05-29 10:35:16 +0200 iha  r272436 : #i100529# Plot missing values - leave gap fails for smoothed lines 2009-05-04 18:20:31 +0200 iha  r271478 : #i99841# Title with Vertically stacked attribute is wrong after editing 2009-05-04 18:03:01 +0200 iha  r271477 : #i101050# avoid a corner in closed lines, which are smoothed by spline 2009-05-04 16:45:18 +0200 iha  r271472 : #i101050# avoid crash in case the normals sequence has less points than the polygon


2009-07-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [cf66e1d3606ddc8da1d93e748e4b07875357d4f0]

CWS-TOOLING: integrate CWS calc51 2009-07-17 15:47:46 +0200 er  r274098 : #i101544# more thorough reference checking in chart data ranges; also prevent some possible crash if invalid ranges were to be passed to document/cell access. 2009-07-16 14:20:11 +0200 er  r274051 : #i101544# let ScRefTokenHelper::compileRangeRepresentation() fail on all possible non-reference occasions 2009-07-07 10:11:40 +0200 nn  r273776 : #i35579# don't use long instead of sal_Int32 2009-07-03 16:41:39 +0200 nn  r273711 : msvc warnings 2009-07-03 14:18:45 +0200 nn  r273698 : msvc warning 2009-07-03 11:30:41 +0200 nn  r273685 : #i35579# move new tokens to the end 2009-07-03 10:12:55 +0200 nn  r273681 : CWS-TOOLING: rebase CWS calc51 to trunk@273468 (milestone: DEV300:m51) 2009-06-30 17:57:30 +0200 nn  r273529 : #i103027# EnterData: if it's a formula, don't pass EditTextObject to undo 2009-06-29 14:31:18 +0200 er  r273474 : #i101544# #i101645# #i102388# applied diff from CWS dr68ooo311 2009-06-29 10:30:20 +0200 nn  r273457 : #i103161# DeleteCells: always leave list action 2009-06-24 16:16:34 +0200 nn  r273353 : gcc warnings 2009-06-17 11:50:28 +0200 tbe  r273055 : #i35579# Standard filter requires more options 2009-06-17 11:44:22 +0200 tbe  r273054 : #i35579# Standard filter requires more options 2009-06-17 11:22:23 +0200 tbe  r273052 : #i35579# Standard filter requires more options 2009-06-15 18:29:32 +0200 nn  r273006 : #160063# UseFormulaData: check parenthesis position 2009-06-12 15:41:16 +0200 nn  r272923 : #i99250# handle range lists in DoAutoOutline (patch from dtardon) 2009-06-11 15:07:05 +0200 nn  r272874 : #i86943# GetNextPos: skip overlapped cells 2009-06-11 11:17:37 +0200 nn  r272856 : #i97726# EnterData: get text from EditTextObject for repeat string of undo action 2009-06-10 20:45:07 +0200 nn  r272839 : #i102566# minimum amount of code between updates of calculation progress (patch by cmc) 2009-06-10 20:22:02 +0200 nn  r272838 : #i69524# PasteFile: specify target for SID_OPENDOC 2009-06-09 17:33:08 +0200 nn  r272789 : #i16615# absolute/relative reference conversion for cell ranges (patch by gaojingmei)


2009-07-27  Kohei Yoshida  <kyoshida@novell.com>  [0b7b314d54f0f17490cdd0115ec057ee18d92b7b]

fixed build breakages.  sc module is now buildable.


2009-07-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [5686c082b93d793f0ac7eb46a0b73e74e2825864]

CWS-TOOLING: integrate CWS cmcfixes60 2009-07-03 21:56:04 +0200 cmc  r273718 : #i103313# org.openoffice.System not org.openoffice.Setup for looking up default locale 2009-07-01 17:15:31 +0200 cmc  r273606 : #i102636# extra rounding precision 2009-07-01 11:04:47 +0200 cmc  r273556 : #i100000# workaround build issue 2009-06-30 17:27:41 +0200 cmc  r273525 : #i102636# extra rounding precision 2009-06-30 09:42:46 +0200 cmc  r273491 : #i102634# numbers got mixed up somehow 2009-06-30 09:19:56 +0200 cmc  r273490 : CWS-TOOLING: rebase CWS cmcfixes60 to trunk@273468 (milestone: DEV300:m51) 2009-06-22 12:54:45 +0200 cmc  r273217 : #i103000# micro-optimization to remove unused symbols from fpicker etc. 2009-06-19 10:06:21 +0200 cmc  r273148 : #i102932# put same type into an Any as we take out of that Any, affect 64bit 2009-06-13 17:38:42 +0200 cmc  r272957 : #i102742# gcc44 warnings, return of const primitive type doesn't mean anything 2009-06-13 16:22:40 +0200 cmc  r272955 : #i102737# keep existing logic and silence new gcc44 warnings 2009-06-13 16:06:25 +0200 cmc  r272954 : #i102736# confirm existing logic to be gcc44 warnings free 2009-06-10 19:40:24 +0200 cmc  r272837 : #i87461# 64bit color lossage 2009-06-10 19:23:38 +0200 cmc  r272836 : #i102636# tidy up UI rounding errors


2009-07-27  Kohei Yoshida  <kyoshida@novell.com>  [f910cd44a8e8fe5341ffb783f09c9b3362a779c5]

#i97416# initial porting of patches from ooo-build, to implement modified csv import option dialog.


2009-07-27  Kohei Yoshida  <kyoshida@novell.com>  [1cff304e93f239c6d54857485ca04c5a04d5e7de]

#i102141# initial port of patches from ooo-build, to implement a new HTML option dialog & associated changes in the core.


2009-07-27  Kohei Yoshida  <kyoshida@novell.com>  [e8c22b35389ac481cb18c2242f11d507f3f8acdf]

#i3687# #i97416#: initial porting of patches from ooo-build.


2009-07-24  Thomas Benisch  <tbe@openoffice.org>  [e0cdfbcf4bce5554075a29f472f28c1cfbe74b9a]

#i12587# Inserting/editing arbitrary text objects in chart


2009-07-23  Philipp Lohmann  <pl@openoffice.org>  [361b4f557ccf1246bdcf2292898b268321f09708]

#i92516# adapt new UX spec


2009-07-23  Thomas Benisch  <tbe@openoffice.org>  [944091e7367a849e778df425eef55bb41fbd969b]

#i12587# Inserting/editing arbitrary text objects in chart


2009-07-22  Philipp Lohmann  <pl@openoffice.org>  [663c42b6498eca57c49f5d51daa30fc3fd0488e5]

#i92516# adapt to new UI spec


2009-07-22  Thomas Benisch  <tbe@openoffice.org>  [ab5d62e79781bbeed920ee149d2c97f03851624f]

#i12587# Inserting/editing arbitrary text objects in chart


2009-07-22  Thomas Benisch  <tbe@openoffice.org>  [9a5b8cdbdf60e4cb0b201f05d56468304f479b98]

#i12587# Inserting/editing arbitrary text objects in chart


2009-07-21  Daniel Rentz  <dr@openoffice.org>  [439d144944c06c3f0a866e423851ec8b8bc4cb18]

#i12587# first insert the chart shape into drawing page, then convert the chart document


2009-07-21  Thomas Benisch  <tbe@openoffice.org>  [ff6c8114c28bc6ac264041280e39f6350c72c1f1]

#i12587# Inserting/editing arbitrary text objects in chart


2009-07-21  Release Engineers  <releng@openoffice.org>  [1e9765badffdfe0de3689e1947be9e0ecfd9e5cb]

Create DEV300_m53 milestone tag from trunk@274201


2009-07-17  Release Engineers  <releng@openoffice.org>  [c3708f14a873f075ea861ae5a5d838447bf7043e]

#i10000# rearranged id's


2009-07-17  Daniel Rentz  <dr@openoffice.org>  [30a07c002fb0df78667d76441cae8880be5d517c]

#i12587# import shapes embedded in charts and chart sheets from BIFF5/BIFF8


2009-07-15  Ivo Hinkelmann  <ihi@openoffice.org>  [24c746b9949f2dfed633a0b6b3b7da7a34545675]

CWS-TOOLING: integrate CWS dr68 2009-06-19 17:43:48 +0200 oc  r273175 : #i102946# some lines for new dialog added 2009-06-19 14:17:45 +0200 oc  r273158 : #i102946# three lines added 2009-05-19 11:56:14 +0200 dr  r272065 : #i99677# wrong attribute name 2009-05-18 18:37:05 +0200 dr  r272045 : #i10000# suncc warning 2009-05-05 16:46:13 +0200 dr  r271536 : #i10000# adoptions after rebase to master containing dr67 2009-05-05 16:01:19 +0200 dr  r271530 : #i10000# adoptions after rebase to master containing dr67 2009-05-04 14:20:39 +0200 dr  r271453 : CWS-TOOLING: rebase CWS dr68 to trunk@271427 (milestone: DEV300:m47) 2009-04-28 17:01:14 +0200 dr  r271332 : CWS-TOOLING: rebase CWS dr68 to trunk@270723 (milestone: DEV300:m46) 2009-04-23 12:21:40 +0200 dr  r271149 : #i100688# missing checkins 2009-04-23 12:18:16 +0200 dr  r271147 : #i100978# relations path handling 2009-04-22 19:25:45 +0200 nn  r271136 : #i49491# show navigator for double click on document position status bar control 2009-04-22 11:28:36 +0200 nn  r271085 : #i60401# small text change 2009-04-21 16:53:23 +0200 dr  r271044 : #i10000# missing dtor 2009-04-20 13:39:25 +0200 nn  r270977 : #i60401# add dialog to extend sort range (patch from maoyg) 2009-04-08 12:11:08 +0200 dr  r270630 : #i100943# prevent assertion when loading chart with empty category ranges 2009-04-07 19:03:00 +0200 dr  r270609 : #i100688# missing bits for OLE 2009-04-07 17:14:06 +0200 dr  r270605 : ported fix for #i100710# 2009-04-07 17:12:50 +0200 dr  r270604 : #i10000# wae 2009-04-07 15:31:55 +0200 dr  r270598 : import system colors moved to FilterBase class, more rework on fill and color contexts 2009-04-06 15:00:03 +0200 dr  r270552 : #i99677# prevent recursive loading of the current document 2009-04-03 18:28:42 +0200 dr  r270515 : added import of brightness/contrast and mono/grayscale color effects for image shapes 2009-04-03 17:36:03 +0200 dr  r270509 : cache already imported embedded graphics 2009-04-03 16:46:34 +0200 dr  r270500 : more rework on bitmap fill and graphic object handling 2009-03-31 12:28:10 +0200 dr  r270271 : #i10000# unxlngi6 wae 2009-03-31 09:04:10 +0200 dr  r270261 : CWS-TOOLING: rebase CWS dr68 to trunk@270033 (milestone: DEV300:m45) 2009-03-30 17:42:05 +0200 dr  r270249 : #i91122# add missing doc 2009-03-30 17:37:08 +0200 dr  r270248 : #i91122# add missing doc 2009-03-30 16:59:15 +0200 dr  r270241 : #i99677# add import of ActiveX scrollbar controls 2009-03-30 14:30:36 +0200 dr  r270230 : #i91122# missing/wrong documentation 2009-03-30 13:03:38 +0200 dr  r270220 : #i99677# add import of ActiveX combobox and spinbutton controls 2009-03-27 11:46:59 +0100 dr  r270144 : #i99677# import ActiveX listbox controls (Forms.ListBox.1) 2009-03-26 19:58:00 +0100 dr  r270104 : #i99677# move more OLE import code into ole submodule 2009-03-26 15:15:02 +0100 dr  r270082 : #i100546# add import of chart bitmap fills, add import of X/Y offset in tiled bitmap fills of all shapes 2009-03-25 12:54:59 +0100 dr  r270018 : #i99677# import ActiveX edit text control (Forms.TextBox.1) 2009-03-24 10:59:29 +0100 dr  r269921 : #i99677# moved import of OLE StdHlink to 'ole' submodule, added string import helpers to BinaryStreamBase class, removed implementation of ST_XString import from docprop in favour of the implementation in class AttributeList 2009-03-24 10:40:18 +0100 dr  r269919 : #i100502# implicit precedence of '&&' was intended 2009-03-24 10:18:29 +0100 dr  r269917 : #i100502# missing parentheses 2009-03-23 15:17:48 +0100 dr  r269876 : #i99677# more code reorg, added graphic helper and OLE helper object per filter, added OLE/control import to PPTX/XLSX filter, moved helpers from XmlFilterBase to FilterBase 2009-03-19 12:45:20 +0100 dr  r269740 : #i99677# interface changes in oox 2009-03-18 15:51:50 +0100 dr  r269683 : #i99677# improved relation handling (internal/external), added preprocessor for VML streams to eat MS specific instructions, added OCX ToggleButton/OptionButton import, added DIB import for BIFF (page background picture, lots of other minor improvements 2009-03-16 15:25:30 +0100 dr  r269551 : #i99677# import excel form control client data (printable, cell link) 2009-03-13 18:37:17 +0100 dr  r269494 : #i99677# import image controls and check boxes 2009-03-12 15:08:18 +0100 dr  r269420 : #i10000# rebase problems 2009-03-12 14:43:09 +0100 dr  r269418 : #i10000# rebase problems 2009-03-12 14:42:41 +0100 dr  r269417 : #i10000# missing delivered header 2009-03-12 13:57:06 +0100 dr  r269405 : #i10000# typos 2009-03-12 12:58:52 +0100 dr  r269391 : CWS-TOOLING: rebase CWS dr68 to trunk@269297 (milestone: DEV300:m43) 2009-03-12 11:11:46 +0100 dr  r269374 : #i99677# first step to import BIFF8 page background 2009-03-12 10:21:53 +0100 dr  r269364 : #i99677# rework of graphic import in entire filter, added import of AX Label controls 2009-03-09 16:44:50 +0100 dr  r269202 : #i99677# import some formatting attributes of command buttons 2009-03-05 15:31:46 +0100 dr  r268911 : #i99677# use VML shape client data to import excel VML shape positions 2009-03-05 11:39:48 +0100 dr  r268888 : #i99677# create UNO control shapes from VML control shapes 2009-03-05 11:38:59 +0100 dr  r268886 : #i99677# change attribute Shapes to DrawPage for import of embedded form controls 2009-03-05 11:30:40 +0100 dr  r268885 : #i99677# change attribute Shapes to DrawPage for import of embedded form controls 2009-03-04 18:46:05 +0100 dr  r268860 : adapt namespace ids according to oox 2009-03-04 18:43:49 +0100 dr  r268859 : #i99677# more VML import rework 2009-03-03 13:38:36 +0100 dr  r268721 : #i99677# more cleanup for VML filter 2009-03-03 13:13:15 +0100 dr  r268719 : #i99807# do not iterate beyond end of std::list 2009-03-02 11:55:49 +0100 dr  r268644 : add ST_XString support (encoded characters in attribute values) 2009-02-26 17:07:18 +0100 dr  r268542 : #i99677# first steps of ax control import: dummy AX base classes, reimplement VML import (hopefully without breaking anything), register embedded AX controls at VML drawing 2009-02-23 17:43:50 +0100 dr  r268365 : #i99426# remaining work on scenario import 2009-02-19 16:56:25 +0100 dr  r268295 : #i99426# base implementations for scenarios import


2009-07-13  Kohei Yoshida  <kohei@openoffice.org>  [970ca89a557e8c333dea0baf0acb5cd9d1d45d89]

#i103512# fixed a crasher bug.


2009-07-10  Mathias Bauer  <mba@openoffice.org>  [266cd0883881d4b062d9e24a335ae7897be4ea9f]

#i103452#: replace PRODUCT by !DBG_UTIL; replace assert by OSL_ASSERT where possible


2009-07-13  Thomas Lange  <tl@openoffice.org>  [9ae1620b977aac4488e00142b514c271c6a09b0e]

undoing r273933 which was accidently commited on master m51


2009-07-13  Thomas Lange  <tl@openoffice.org>  [a47bc23a2b59be67ddc9032323c680a8f66f4e47]

#i1601# sentence case transliteration


2009-07-09  Release Engineers  <releng@openoffice.org>  [92d2522cb42d7f70ef998930b419fd8158717cbb]

Create DEV300_m52 milestone tag from trunk@273857


2009-07-08  Release Engineers  <releng@openoffice.org>  [583eecc5bfa14803c949278910a5329d837ca95f]

#i10000# fix for error from dr70


2009-07-03  Release Engineers  <releng@openoffice.org>  [7891c97150152346a2070e1c9c7a32b28eec4423]

CWS-TOOLING: integrate CWS dba32c 2009-06-29 20:53:25 +0200 fs  r273484 : #i103138# Rectangle conversion 2009-06-29 20:51:50 +0200 fs  r273483 : #i103138# yet more refactoring, now also setting the proper zoom level at the proper point in time 2009-06-29 13:40:26 +0200 fs  r273470 : added svn:ignore to ignore output paths 2009-06-29 10:08:54 +0200 fs  r273455 : #i103138# refactored the code for positioning/zooming the control Basically, we now allow adjustControlGeometry_throw (formerly known as positionControl_throw and setControlZoom) to take an additional ViewTransformation parameter, describing the transformation to obtain the actual control position/size. Consequently, positionControl itself also allows for a ViewTransformation parameter. This has become necessary since during painting, the device which we created our control for might not necessarily have a proper MapMode set. In this case, if we would use this map mode for calculating the control's position/size, this would lead to wrong results. Note that this problem was introduced by the fix for #i101398#: During the fix, we postponed the control creation to a later time (when it is really needed). At this later time, the MapMode at the device is broken, at the earlier time where we formerly crearted the control (createPrimitive2DSequence), it is not yet broken. Whether or not the MapMode is defined as "broken" might depend on one's point of view, however ... I consider it broken, since: - we need the map mode to obtain the proper zoom level, which is to be forwarded to the control - there are scenarios where the MapMode is *not* set to MAP_PIXEL (in those scenarios, everything works   fine), and there are scenarios where it *is* set to MAP_PIXEL (in those the bug 103138 appears). It somehow feels wrong that one cannot rely on the device's map mode this way, but on the other hand one has no possibility to obtain the current zoom by other means. Note that one issue (still to be submitted) is left: In the page pane of a Draw/Impress document, controls have a wrong text size. This is because in this pane, the above-mentioned "broken" map mode is used, which means the controls have a zoom of "1:1" set, which is wrong here. 2009-06-25 13:41:35 +0200 msc  r273380 : #100000# the tabs changed die to new properties 2009-06-24 12:42:40 +0200 msc  r273330 : #102082# remove issue warning 2009-06-22 10:43:14 +0200 fs  r273201 : createPrimitive2DSequence: care for being disposed 2009-06-18 12:35:13 +0200 oj  r273109 : #i102305# make nooptfiles for gcc 2009-06-17 12:14:37 +0200 oj  r273056 : #i102305# fix for linux 2009-06-17 07:20:22 +0200 oj  r273046 : #i102305# move ValueTransfer into the for loop to avoid a crash under Linux 2009-06-17 07:17:28 +0200 oj  r273045 : #i102305# use varchar 2009-06-15 14:11:27 +0200 fs  r272983 : added since tag 2009-06-15 12:11:39 +0200 oj  r272973 : #i102305# SAL_DLLPUBLIC_EXPORT inserted 2009-06-15 11:08:53 +0200 fs  r272969 : #i10000# 2009-06-15 09:25:13 +0200 fs  r272963 : merging fix for P1 issue #i102701# 2009-06-11 11:31:24 +0200 fs  r272858 : #i10000# copied the fix which before the rebase was done in ../dialog/macropg.src 2009-06-11 09:38:14 +0200 fs  r272846 : CWS-TOOLING: rebase CWS dba32c to trunk@272827 (milestone: DEV300:m50) 2009-06-02 09:53:10 +0200 fs  r272483 : #i10000# 2009-05-29 15:55:03 +0200 fs  r272465 : #i100818# 2009-05-29 12:58:43 +0200 fs  r272452 : don't apply comphelper::getString on possibly VOID any 2009-05-29 10:38:35 +0200 oj  r272437 : #i101519# handle where condition 2009-05-29 09:53:39 +0200 fs  r272434 : #i100818# call into releaseStubs /without/ locked GlobalMutex 2009-05-28 07:53:44 +0200 oj  r272375 : #i101369# parse tree changed 2009-05-27 14:53:36 +0200 fs  r272347 : #i10000# 2009-05-27 09:29:15 +0200 oj  r272327 : #i101626# check for double before hard cast 2009-05-27 09:13:58 +0200 oj  r272326 : #i101626# handle void correctly 2009-05-27 08:04:39 +0200 oj  r272321 : #i102256# wrong method signature used 2009-05-27 07:55:52 +0200 oj  r272320 : #i101519# look up parameter typ if used in function 2009-05-27 06:49:07 +0200 oj  r272319 : #i101519# set parameter from rowset as well 2009-05-26 13:30:56 +0200 oj  r272297 : #i101987# impl XBatchExecution 2009-05-26 12:44:34 +0200 oj  r272293 : #i101700# check if group is not set 2009-05-26 12:16:53 +0200 oj  r272290 : #i101369# resolved some reduce7reduce problems with boolean_term and search_condition 2009-05-26 12:12:42 +0200 oj  r272289 : #i101369# fix for or on one line criteria 2009-05-25 16:02:25 +0200 fs  r272257 : #i999704# +PROPERTY_MOUSE_WHEEL_BEHAVIOR 2009-05-25 16:01:55 +0200 fs  r272256 : merging the changes from CWS dba32b herein 2009-05-25 15:49:57 +0200 fs  r272254 : #i999704# 2009-05-25 15:32:57 +0200 fs  r272252 : #i99704# grid columns also to respect the MouseWheelBehavior property 2009-05-25 15:23:43 +0200 fs  r272251 : don't pass empty Anys to ::comphelper::getString 2009-05-25 14:48:43 +0200 fs  r272248 : merged changes from CWS dba32b herein 2009-05-25 14:44:40 +0200 fs  r272247 : #i99704# support new MouseWheelBehavior property 2009-05-25 14:43:18 +0200 fs  r272246 : #i99704# WheelWithoutFocus (peer property) superseded by MouseWheelBehavior (model property) 2009-05-25 14:41:03 +0200 fs  r272245 : #i99704# no need to set the mouse wheel behavior at the peer, this is now a model property, having the right default 2009-05-25 14:39:31 +0200 fs  r272243 : removed dead import 2009-05-25 14:35:36 +0200 fs  r272242 : the new EnableVisible doesn't make sense for grid columns 2009-05-25 14:34:33 +0200 fs  r272241 : #i99704# +MouseWheelBehavior - allow to enable/disable the mouse wheel for the control, or make it focus-dependent 2009-05-25 14:26:11 +0200 fs  r272240 : #i99704# change MouseSettings wheel flag (NoWheelActionWithoutFocus) to a three-state option, allowing to completely ignore the mouse wheel 2009-05-23 21:35:59 +0200 fs  r272213 : localize 'sub component opened/closed' event 2009-05-22 21:42:47 +0200 fs  r272211 : #i102003# 2009-05-22 21:42:20 +0200 fs  r272210 : grammar 2009-05-22 21:36:10 +0200 fs  r272209 : #i102140# load only once, not twice, and show error messages during loading (and during any form action, that is) asynchronously 2009-05-22 21:35:11 +0200 fs  r272208 : #i102140# +clear 2009-05-22 14:50:30 +0200 fs  r272194 : #i102139# for newly created DB docs, set the MacroExecutionMode to USE_CONFIG 2009-05-22 12:03:42 +0200 fs  r272180 : #i88878# provided by noel.power@novell.com implement a visibility property (EnableVisible) for toolkit controls, and usage in forms and UNO dialogs 2009-05-15 15:37:31 +0200 fs  r271942 : #i100671# corrected some @since tags, so autodoc has better chances of correctly reading them 2009-05-15 15:33:11 +0200 fs  r271940 : don't call comphelper::getFOO for VOID values 2009-05-15 15:08:31 +0200 fs  r271937 : includes 2009-05-15 13:39:22 +0200 fs  r271934 : #i101398# createPrimitive2DSequence: when we already have a control, use the old code. In particular, call positionControlForPaint 2009-05-15 12:33:48 +0200 fs  r271933 : make the geometry a part of the ControlPrimitive2D's identity 2009-05-15 10:15:44 +0200 fs  r271928 : #i10000# 2009-05-14 20:55:38 +0200 fs  r271921 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique 2009-05-14 20:55:31 +0200 fs  r271920 : #i101398# don't reuse the name PRIMITIVE_ID_CONTROLPRIMITIVE2D, make the name of our own ControlPrimitive2D unique 2009-05-14 20:23:23 +0200 fs  r271919 : #i101622# 2009-05-14 16:04:38 +0200 fs  r271898 : don't use comphelper::getInt32 on voids 2009-05-14 16:04:12 +0200 fs  r271897 : merge fix for issue whose number just slipped my memory ... (originally fixed in CWS dba32b) 2009-05-14 15:36:55 +0200 fs  r271895 : merging changes from DEV300:m48 2009-05-07 14:43:19 +0200 fs  r271670 : #i101477# 2009-05-07 14:37:30 +0200 fs  r271668 : #i101477# 2009-05-07 09:27:30 +0200 oj  r271628 : #i101343# remove pch 2009-05-06 09:36:02 +0200 fs  r271568 : getFoo: diagnostics 2009-05-04 09:23:06 +0200 oj  r271438 : CWS-TOOLING: rebase CWS dba32c to trunk@271427 (milestone: DEV300:m47) 2009-04-29 23:18:13 +0200 fs  r271394 : #i101398# use a dedicated 2DPrimitive for UNO Controls, which is able to provide the B2DRange *without* actually creating the control 2009-04-29 13:52:25 +0200 fs  r271366 : #i101308#


2009-07-03  Release Engineers  <releng@openoffice.org>  [2b954fb11782e3e0f5a02ca496fdd4713a6f997d]

CWS-TOOLING: integrate CWS dr70 2009-06-09 13:52:02 +0200 dr  r272770 : #i101930# SXC import broken 2009-06-05 11:50:16 +0200 dr  r272675 : #i10000# compiler warning 2009-06-05 11:24:39 +0200 dr  r272674 : #i10000# compiler warning 2009-06-05 10:35:22 +0200 dr  r272668 : #i10000# compiler warning 2009-06-04 16:53:32 +0200 dr  r272646 : CWS-TOOLING: rebase CWS dr70 to trunk@272291 (milestone: DEV300:m49) 2009-06-04 14:50:45 +0200 dr  r272633 : #i10000# compiler warning 2009-06-03 18:50:57 +0200 dr  r272603 : #i101930# fix ODS export of uninit'ed notes, do not craete note captions in UpdatePendingRowHeights 2009-05-28 11:11:17 +0200 dr  r272384 : #i101930# note captions must be created before changing row/column size 2009-05-27 15:48:44 +0200 iha  r272356 : #i101925# metafile creation is requested superfluously during inplace editing 2009-05-27 15:46:44 +0200 iha  r272355 : #i101925# metafile creation is requested superfluously during inplace editing 2009-05-27 15:06:58 +0200 iha  r272349 : #i101928# superfluous paint calls while entering and editing charts 2009-05-27 15:01:08 +0200 iha  r272348 : #i101928# superfluous paint calls while entering and editing charts 2009-05-26 14:43:39 +0200 dr  r272303 : #i101930# import performance: invisible cell notes cache caption data 2009-05-22 18:44:19 +0200 dr  r272205 : #i101930# preparations for uninitialized notes (performance), adapted ODF import filter 2009-05-14 19:50:43 +0200 dr  r271918 : #i101930# 'recycle' the shapes already created while loading cell notes 2009-05-06 16:07:45 +0200 dr  r271598 : #i100827# improve performance of HTML query filter, patch by mmeeks, slightly modified 2009-05-06 11:02:38 +0200 dr  r271577 : #i100827# improve performance of HTML query filter, patch by mmeeks 2009-05-06 10:50:13 +0200 dr  r271575 : #i86650# improve performance of HTML query filter 2009-05-05 10:09:44 +0200 nn  r271502 : #i101428# better handling of non-existing view data 2009-04-29 16:42:57 +0200 nn  r271384 : #i101428# after loading, update row heights per sheet on demand


2009-07-03  Release Engineers  <releng@openoffice.org>  [220c5f9de6dfe8e7a9b343be0480be3d4d3ca3cb]

CWS-TOOLING: integrate CWS koheiformula03 2009-04-24 17:45:29 +0200 kohei  r271229 : #i101330# Extend Excel's maximum column to Calc's maximum column upon import. 2009-04-14 21:45:35 +0200 kohei  r270810 : #i101048# fixed - now the autofilter menu item is disabled when the current cursor overlaps a datapilot table. 2009-04-14 21:41:22 +0200 kohei  r270809 : #i101047# fixed by removing all merge flags when a new row is inserted.  The old code did remove merge flags, but it didn't remove SC_MF_BUTTON flag. 2009-04-14 18:00:16 +0200 kohei  r270806 : #i101091# fixed the issue.  When creating a data sequence via passing a range representation, the syntax must be the Calc A1 syntax regardless of current formula syntax.  However, for other operations that affects chart's UI, the syntax must be the current formula syntax. In the future we should have an API to directly pass formula reference tokens to chart objects. 2009-04-14 17:46:36 +0200 kohei  r270804 : #i101090# fixed the issue of referenced ranges not being highlighted & formula tooltip not working when the separators are not ';'. 2009-04-14 17:37:55 +0200 kohei  r270802 : #i101043# Fixed.  Defining a named range via the named range box should now work for non-default formula syntax. 2009-04-14 17:35:08 +0200 kohei  r270800 : #i101041#  Fixed.  Always interpret DDE's address using the Calc A1 syntax regardless of current formula syntax.


2009-07-02  Release Engineers  <releng@openoffice.org>  [9aaf80e791554eb568df3fd27d9c97472a84c68f]

CWS-TOOLING: integrate CWS bubblechart 2009-06-17 08:41:14 +0200 hde  r273051 : i101635: added new charttype bubble 2009-06-17 08:39:37 +0200 hde  r273050 : i101635: created new testcase tCreateNewBubbleChart 2009-06-17 08:38:07 +0200 hde  r273049 : i101635: created new testcase tCreateNewBubbleChart 2009-06-15 15:22:32 +0200 hde  r272991 : 101635 2009-06-11 12:44:01 +0200 iha  r272864 : rebase to dev300m50 2009-06-10 23:27:54 +0200 iha  r272841 : CWS-TOOLING: rebase CWS bubblechart to trunk@272827 (milestone: DEV300:m50) 2009-06-04 18:07:35 +0200 iha  r272649 : #i64689# Bubble Chart 2009-06-04 17:26:44 +0200 iha  r272647 : #i64689# Bubble Chart 2009-06-04 11:24:25 +0200 iha  r272618 : #i64689# add more spacing between bubbles and data labels 2009-05-26 18:05:23 +0200 ufi  r272314 : i101637 2009-04-22 14:37:50 +0200 iha  r271115 : #i64689# bubble chart 2009-04-21 17:52:23 +0200 iha  r271052 : #i64689# bubble chart 2009-04-21 17:50:48 +0200 iha  r271051 : #i76728# type icon for xy chart 2009-04-21 17:25:52 +0200 iha  r271049 : #i76728# type icon for xy chart 2009-04-09 11:18:09 +0200 iha  r270685 : #i100977# autoscaling works not correct if missing values should be treated as zero 2009-04-08 16:39:43 +0200 iha  r270656 : #i64689# bubble chart - missing value treatment 2009-04-08 15:13:25 +0200 iha  r270655 : #i64689# bubble chart - remove unused code 2009-04-08 15:12:19 +0200 iha  r270653 : #i64689# bubble chart - determine sereis length correctly on export 2009-04-08 14:22:43 +0200 iha  r270650 : #i64689# bubble chart - remove unused code 2009-04-08 14:12:09 +0200 iha  r270646 : #i64689# bubble chart - export domains even if no main sequence was found 2009-04-08 14:11:07 +0200 iha  r270645 : #i64689# bubble chart - don't replace missing size values with 1.0 2009-04-07 16:20:22 +0200 iha  r270602 : #i64689# bubble chart - do not offer percent values for data label display for xy and bubble chart 2009-04-07 16:17:42 +0200 iha  r270601 : remove superfluous code 2009-04-06 16:39:32 +0200 iha  r270569 : #i64689# bubble chart -correct automatic numberformat detection for axis, data table and data label + transport data label numberformat during copy paste in addition to axis numberformat 2009-04-02 17:33:33 +0200 iha  r270427 : use input string for formatting in data table during edit 2009-04-02 16:00:29 +0200 iha  r270413 : #i64689# bubble chart - when creating a new series within the data table give it the same number format as the former series, thus the new bubble size values can be edited with the same format immidiately 2009-04-02 11:25:33 +0200 iha  r270385 : #i64689# bubble chart -correct automatic numberformat detection for axis, data table and data label + transport data label numberformat during copy paste in addition to axis numberformat 2009-04-01 11:32:03 +0200 iha  r270312 : #i64689# bubble chart - add further parameter for view creation 2009-03-31 17:52:08 +0200 iha  r270291 : #i64689# bubble chart - scale bubble size with diagram size 2009-03-31 13:38:13 +0200 iha  r270278 : #i64689# bubble chart - wrong size for small values < 1 2009-03-27 19:11:07 +0100 iha  r270169 : #i64689# bubble chart 2009-03-27 19:07:11 +0100 iha  r270168 : #i64689# bubble chart - remove unused code 2009-03-27 18:33:57 +0100 iha  r270167 : #i64689# bubble chart - create no shape for invalid sizes 2009-03-27 15:18:21 +0100 iha  r270157 : #i76728# type icon for xy chart 2009-03-27 14:34:38 +0100 iha  r270156 : #i64689# bubble chart - correct scaling 2009-03-27 14:27:27 +0100 iha  r270155 : #i64689# bubble chart - images 2009-03-27 14:25:45 +0100 iha  r270154 : #i64689# bubble chart - images 2009-03-27 11:38:57 +0100 iha  r270142 : #i64689# bubble chart - values-size is the main series 2009-03-27 11:30:20 +0100 iha  r270140 : #i64689# correct order of sequences after load thus switching charttypes afterwards produces expected results now 2009-03-26 10:22:55 +0100 iha  r270056 : #i64689# bubble chart 2009-03-24 17:45:15 +0100 iha  r269984 : #i64689# bubble chart - user properties from points (not only from the series) 2009-03-24 15:10:57 +0100 dr  r269954 : #i64989# export bubble charts to xls 2009-03-24 14:55:29 +0100 dr  r269952 : #i64989# import bubble charts from xls 2009-03-24 14:54:46 +0100 dr  r269950 : #i64989# import bubble charts from ooxml 2009-03-23 18:59:08 +0100 iha  r269895 : further cleanups possible with new member m_aGlobalSeriesImportInfo 2009-03-23 16:54:04 +0100 iha  r269886 : #i64689# bubble chart - a single sequence must be interpreted as sizes because of ODF specification 2009-03-23 16:50:43 +0100 iha  r269885 : #i64689# save&load bubble chart 2009-03-20 19:30:29 +0100 iha  r269826 : CWS-TOOLING: rebase CWS bubblechart to trunk@269781 (milestone: DEV300:m44) 2009-03-19 11:30:33 +0100 iha  r269732 : #i64689# rename SchXMLCategoriesDomainContext to SchXMLCategoriesContext avoid confusion with domains 2009-03-18 17:11:13 +0100 iha  r269693 : #i64689# add charttype bubble 2009-03-18 17:09:22 +0100 iha  r269692 : #i64689# remove unused code 2009-03-13 12:18:26 +0100 iha  r269467 : #i64689# corrected lineends 2009-03-12 11:25:14 +0100 iha  r269376 : #i64689# bubble chart (part 1)


2009-07-02  Release Engineers  <releng@openoffice.org>  [66bef901d9f73dea5e649f6240895b457fcc6b9b]

CWS-TOOLING: integrate CWS aw065 2009-06-17 13:48:12 +0200 aw  r273068 : #99385# corrected small error in SCs selection visualisation 2009-06-16 15:45:28 +0200 wg  r273021 : i102838 2009-06-16 12:46:07 +0200 wg  r273016 : i102833 2009-06-11 17:40:29 +0200 aw  r272895 : #i98870# added implementation for getPageCount helper 2009-06-11 16:39:54 +0200 aw  r272885 : #i102663#, #i102667#, #i98870# incluide file typo corrected 2009-06-11 16:24:07 +0200 aw  r272881 : #i102663#, #i102667#, #i98870# changes to SdrText, it's usage in SdrTextPrimitive2D and to OverlayObject base implementation. Also support for PageCountField added 2009-06-11 16:23:52 +0200 aw  r272880 : #i102663#, #i102667#, #i98870# changes to SdrText, it's usage in SdrTextPrimitive2D and to OverlayObject base implementation. Also support for PageCountField added 2009-06-09 13:50:29 +0200 aw  r272769 : #i98917# added support for the OverlayHatchRectanglePrimitive to follow rotation with it's hatch; simplified OverlayHatchRect 2009-06-09 13:04:06 +0200 aw  r272766 : #i98870# re-added PageNumber identification in SdrTextPrimitive2D::get2DDecomposition 2009-06-08 18:56:05 +0200 aw  r272744 : #i99385# added some last corrections to OverlayObjects in SD (had to do some merges on resync, needed to optically check and correct) 2009-06-08 11:17:57 +0200 aw  r272725 : cws aw065: corrections after resync 2009-06-08 11:02:25 +0200 aw  r272723 : cws aw065: corrections after resync 2009-06-08 10:36:22 +0200 aw  r272722 : cws aw065: corrections after resync 2009-06-05 18:57:06 +0200 aw  r272712 : CWS-TOOLING: rebase CWS aw065 to trunk@272291 (milestone: DEV300:m49) 2009-06-05 14:56:34 +0200 aw  r272690 : #i89784# stripped old stuff no longer needed due to text-to-polygon conversion using primitives 2009-06-05 14:50:07 +0200 aw  r272688 : #102091# removed on-model-lock suppression for SdrObject::ActionChanged() 2009-06-05 14:47:29 +0200 aw  r272687 : #102091# corrected local value buffering in ScenePrimitive2D::get2DDecomposition 2009-06-03 17:53:32 +0200 aw  r272599 : #i89784# version before stripping 2009-06-03 17:52:18 +0200 aw  r272598 : #i89784# version before stripping 2009-05-28 17:15:47 +0200 aw  r272420 : #i101872# old stuff removed/stripped 2009-05-28 17:15:32 +0200 aw  r272419 : #i101872# old stuff removed/stripped 2009-05-28 17:15:15 +0200 aw  r272418 : #i101872# old stuff removed/stripped 2009-05-28 17:14:45 +0200 aw  r272417 : #i101872# old stuff removed/stripped 2009-05-28 12:13:56 +0200 aw  r272396 : #i101872# stable hybrid state 2009-05-28 12:13:46 +0200 aw  r272395 : #i101872# stable hybrid state 2009-05-28 12:13:35 +0200 aw  r272394 : #i101872# stable hybrid state 2009-05-28 12:13:20 +0200 aw  r272393 : #i101872# stable hybrid state 2009-05-28 12:13:05 +0200 aw  r272392 : #i101872# stable hybrid state 2009-05-28 12:12:51 +0200 aw  r272391 : #i101872# stable hybrid state 2009-05-15 16:56:02 +0200 aw  r271952 : #i101872# HitTest unifications 2009-05-15 16:55:22 +0200 aw  r271951 : #i101872# HitTest unifications 2009-05-15 16:55:12 +0200 aw  r271950 : #i101872# HitTest unifications 2009-05-15 16:55:01 +0200 aw  r271949 : #i101872# HitTest unifications 2009-05-15 16:54:51 +0200 aw  r271948 : #i101872# HitTest unifications 2009-05-15 16:54:35 +0200 aw  r271947 : #i101872# HitTest unifications 2009-05-15 16:54:22 +0200 aw  r271946 : #i101872# HitTest unifications 2009-05-12 19:08:38 +0200 aw  r271834 : #i101684# corrected AutoShape's preparation of text transformation due to different definitions in TextBounds 2009-05-12 15:44:49 +0200 aw  r271827 : #i89784# expanded TextLayouterDevice::getTextOutlines() to support DXArray and X-Font scaling 2009-05-11 19:40:40 +0200 aw  r271790 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 19:40:25 +0200 aw  r271789 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 19:40:12 +0200 aw  r271788 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 13:01:53 +0200 aw  r271765 : #i99385# corrections and optimizations 2009-05-08 14:48:40 +0200 aw  r271718 : #i1016180# added optimizations in model operations when model is locked 2009-05-08 14:11:45 +0200 aw  r271716 : #i101679# added flush() calls to OverlayManager when interaction step is prepared 2009-05-07 17:44:03 +0200 aw  r271689 : #i99385# last corrections/changes 2009-05-07 17:43:47 +0200 aw  r271688 : #i99385# last corrections/changes 2009-05-07 13:20:09 +0200 aw  r271654 : #i99385# added changes from WFH 2009-05-07 13:19:38 +0200 aw  r271653 : #i99385# added changes from WFH 2009-05-07 13:19:11 +0200 aw  r271652 : #i99385# added changes from WFH 2009-05-07 11:33:17 +0200 aw  r271643 : #i99385# corrections after resync 2009-05-07 11:17:31 +0200 aw  r271642 : #i99385# corrections after resync 2009-05-06 18:46:53 +0200 aw  r271609 : CWS-TOOLING: rebase CWS aw065 to trunk@271427 (milestone: DEV300:m47) 2009-05-05 18:24:03 +0200 aw  r271548 : #i101443# force new text decomposition when TextBackgroundColor has changed 2009-05-05 17:44:42 +0200 aw  r271542 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:32 +0200 aw  r271541 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:20 +0200 aw  r271540 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:09 +0200 aw  r271539 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 15:48:38 +0200 aw  r271527 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:48:15 +0200 aw  r271526 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:48:03 +0200 aw  r271525 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:47:51 +0200 aw  r271524 : #i99385# 2nd round, usages checked and corrected 2009-04-27 18:33:10 +0200 aw  r271300 : #i99385# state commit after all implementations are done 2009-04-27 15:36:53 +0200 aw  r271283 : #i99385# state commit after all implementations are done 2009-04-27 15:27:49 +0200 aw  r271280 : #i99385# state commit after all implementations are done 2009-04-27 15:27:33 +0200 aw  r271279 : #i99385# state commit after all implementations are done 2009-04-27 15:27:00 +0200 aw  r271278 : #i99385# state commit after all implementations are done 2009-04-27 15:26:15 +0200 aw  r271277 : #i99385# state commit after all implementations are done 2009-04-27 15:25:40 +0200 aw  r271275 : #i99385# state commit after all implementations are done 2009-04-27 15:25:19 +0200 aw  r271274 : #i99385# state commit after all implementations are done 2009-04-27 15:24:00 +0200 aw  r271272 : #i99385# state commit after all implementations are done 2009-03-19 17:12:00 +0100 aw  r269757 : #i100360# corrected bitmap's PefSize calculation for bitmap filled objects when Bitmap is Pixel-based on it's mapping 2009-02-19 17:09:47 +0100 aw  r268298 : #i98917# corrected attributes 2009-02-19 17:09:30 +0100 aw  r268297 : #i98917# corrected attributes 2009-02-19 17:08:22 +0100 aw  r268296 : #i98917# corrected attributes 2009-02-19 11:56:25 +0100 aw  r268268 : #i98870# added extra code to react on PageNumber change 2009-02-18 16:57:24 +0100 aw  r268243 : #i98917# in OverlayHatchRect::getGeometry the rotation was not applied to the TopLeft of the centered rectangle, but to the already extended one, thus the visualisation was rotating around the wrong edge


2009-07-01  Release Engineers  <releng@openoffice.org>  [0671b11c48b86b03b235751695bf6e05a18505d1]

CWS-TOOLING: integrate CWS scsheetprotection02 2009-06-18 16:48:14 +0200 kohei  r273124 : #i102906# Fix a crasher when loading an xls document with unsupported encrytpion. 2009-06-15 14:02:00 +0200 dr  r272982 : #i10000# compiler warnings 2009-04-13 23:06:21 +0200 kohei  r270740 : Renamed SetData() to SetDataFromDocument(), in order to resolve name clash with the method of the same name in class Window.  This caused a compiler warning on Solaris Intel. 2009-04-13 04:09:59 +0200 kohei  r270729 : CWS-TOOLING: rebase CWS scsheetprotection02 to trunk@270723 (milestone: DEV300:m46) 2009-02-23 16:13:45 +0100 kohei  r268361 : added tabprotection.obj to the exception file list.  Apparently the older versions of boost::shared_ptr rely on C++ exceptions for its implementation. 2009-02-18 19:59:05 +0100 kohei  r268253 : Switched to using ::boost::shared_ptr to wrap a pimpl class, because using ::std::auto_ptr in this header breaks the build on win32.  The MSVC implementation of ::std::auto_ptr has some weird quirks... 2009-02-17 21:47:13 +0100 kohei  r268192 : fixed linkage issue due to library split. 2009-02-17 04:50:34 +0100 kohei  r267842 : CWS-TOOLING: rebase CWS scsheetprotection02 to trunk@267171 (milestone: DEV300:m41) 2009-02-17 02:36:10 +0100 kohei  r267841 : reverted the last commit, to re-surrect the removed src files. 2009-02-03 22:02:34 +0100 kohei  r267342 : removed the src files to prevent them from being entered into the translation process.  The dialogs that need the strings are not yet enabled in the code, so their removal will not cause any harm. 2009-01-14 12:24:29 +0100 dr  r266280 : #i10000# wntmsci12 compiler warnings #4 2009-01-14 09:35:46 +0100 dr  r266267 : #i10000# wntmsci12 compiler warnings #3 2009-01-13 15:42:07 +0100 dr  r266231 : #i10000# wntmsci12 compiler warnings #2 2009-01-13 13:18:28 +0100 dr  r266216 : #i10000# wntmsci12 compiler warnings 2009-01-07 03:59:11 +0100 kohei  r265943 : remove the fscking compiler warnings. 2009-01-06 15:55:32 +0100 kohei  r265925 : removed compiler warnings that caused the buildbot build to fail.... 2009-01-05 23:24:59 +0100 kohei  r265888 : Undoing my own local build fix to work around the libmoz... issue. 2008-12-30 21:39:58 +0100 kohei  r265833 : Duh!  Sheet protection was supposed to be disabled. :-/ 2008-12-23 20:25:55 +0100 kohei  r265792 : recovered the code block that was accidentally removed during cws rebase. 2008-12-23 19:03:19 +0100 kohei  r265791 : fixed breakage in ods export filter due to rebase to m38. 2008-12-23 16:41:49 +0100 kohei  r265787 : CWS-TOOLING: rebase CWS scsheetprotection02 to trunk@265758 (milestone: DEV300:m38) 2008-12-23 05:37:47 +0100 kohei  r265768 : deliberately forget document and sheet passwords when importing from or exporting to excel, to emulate the current behavior. 2008-12-23 05:12:59 +0100 kohei  r265767 : removed commented-out unused method ScDocument::SetAutoFilterFlags(). 2008-12-23 05:05:19 +0100 kohei  r265766 : removed one duplicate method and made associated changes with the removal, and a little more code cleanup. 2008-12-23 04:24:58 +0100 kohei  r265765 : a typo in in-line comment 2008-12-23 04:23:08 +0100 kohei  r265764 : remove fprintf statement that blatantly prints out document encryption password to stdout.  not a good practice. 2008-12-23 04:14:21 +0100 kohei  r265763 : we actually don't want to clear all options, because if we do, then we would no longer be able to select any cells on a protected sheet. 2008-12-23 04:07:10 +0100 kohei  r265762 : * minor code cleanup (indentation inconsistencies & use of tab) * fixed unprotecting a sheet with password to make it work again. 2008-12-23 03:22:50 +0100 kohei  r265761 : reverted all the new functionalities to the existing ones, while keeping the new code in as much as I could. 2008-12-22 23:11:08 +0100 kohei  r265760 : in xls export filter, renamed two unknown records into records of known name. 2008-12-22 22:34:50 +0100 kohei  r265759 : temporarily disable password capability on file export for MS Excel 97. 2008-12-22 17:01:21 +0100 kohei  r265754 : CWS-TOOLING: rebase CWS scsheetprotection02 to trunk@264807 (milestone: DEV300:m37) 2008-11-26 03:12:58 +0100 kohei  r264335 : recovered a method that was actually used. 2008-11-25 21:51:10 +0100 kohei  r264334 : CWS-TOOLING: rebase CWS scsheetprotection02 to trunk@264325 (milestone: DEV300:m36) 2008-10-08 19:57:35 +0200 kohei  r262094 : changed description string to make it less technical. 2008-10-01 05:56:58 +0200 kohei  r261986 : migrated from the cvs-based cws. 2008-10-01 05:55:19 +0200 kohei  r261985 : migrated from the cvs-based cws. 2008-10-01 05:55:00 +0200 kohei  r261984 : migrated from the cvs-based cws.


2009-06-29  Release Engineers  <releng@openoffice.org>  [2ce35ff1d2f8f7ddb7ee2901a2047a8c91f76411]

Create DEV300_m51 milestone tag from trunk@273467


2009-06-19  Kohei Yoshida  <kohei@openoffice.org>  [2caa44d865e1da22ae1deda268bf52b0b2af1e54]

#i100619# initial commit of patches from ooo-build that implement new datapilot field popup window.


2009-06-19  Kohei Yoshida  <kohei@openoffice.org>  [915df89ab73643ad77d0ea986d6f1ceb3fbfc230]

Re-activate imports of hidden fields from xls per Daniel's input.


2009-06-19  Kohei Yoshida  <kohei@openoffice.org>  [2ed4b61c436a176bf917c671a31290ad1dbee6e9]

Store custom display names with ods documents.  Note that this relies on proposed file format change that is not yet officially in the ODF spec.


2009-06-19  Kohei Yoshida  <kohei@openoffice.org>  [6aa1d7f4fa8bdcd8096c40899f106ca55cb362d5]

#i22029# #i81335# applied & adjusted the patch from ooo-build. This enables changing the names of fields, field members and grand total names.


2009-06-19  Kohei Yoshida  <kohei@openoffice.org>  [1ec2548d8f68ed889eec0c47d7241120dda44997]

added grid layout bits.


2009-06-19  Kohei Yoshida  <kohei@openoffice.org>  [240a8ae38889b7fb3869d5727293557aa831ba8f]

adding autoformat index member to dp object.


2009-06-17  Andreas Bregas  <ab@openoffice.org>  [3a83df4234d4285ffabc9c342bb471a950d21799]

#i102261# OLE control event handler support


2009-06-17  Ivo Hinkelmann  <ihi@openoffice.org>  [58148036214d18299fc83218737171f1382369d9]

CWS-TOOLING: integrate CWS l10ncleanup04 2009-05-28 13:46:54 +0200 ihi  r272407 : remove forgotten sdf's 2009-05-25 22:32:35 +0200 ihi  r272273 : no WITH_LANG fix 2009-05-25 20:45:58 +0200 ihi  r272272 : remove some comments 2009-05-25 19:55:21 +0200 ihi  r272271 : svx dialog -> cui l10n move 2009-05-25 18:30:58 +0200 ihi  r272268 : build fix 2009-05-18 16:32:02 +0200 ihi  r272033 : bash fix 2009-05-18 16:31:32 +0200 ihi  r272032 : bash fix 2009-05-14 16:23:39 +0200 ihi  r271901 : #i79750# Translation moved to l10n module 2009-05-11 23:36:05 +0200 ihi  r271793 : #i79750# Translation moved into own module


2009-06-16  Ivo Hinkelmann  <ihi@openoffice.org>  [004a2e627309401ff9dd84d27f908e81e21c5e43]

CWS-TOOLING: integrate CWS fwk103 2009-05-26 12:44:25 +0200 mst  r272292 : #i100727# - svtools/inc/svtools/parhtml.hxx, svtools/source/svhtml/parhtml.cxx:   + fix warning: rename method to prevent overloading 2009-05-19 13:42:31 +0200 mav  r272075 : #i101356# add comment 2009-05-19 10:56:24 +0200 mav  r272062 : #i101356# register the singleton correctly 2009-05-19 10:25:42 +0200 mav  r272060 : #i101356# register the singleton correctly 2009-05-18 12:48:48 +0200 mav  r272013 : #i91306# fix the typo 2009-05-14 08:50:06 +0200 mav  r271871 : #i101356# reduce the amount of macros 2009-05-13 13:26:08 +0200 mav  r271858 : #i101356# reduce the amount of macros 2009-05-13 11:29:16 +0200 mav  r271849 : #i101356# reduce the amount of macros 2009-05-12 12:09:42 +0200 mav  r271815 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 12:03:20 +0200 mav  r271814 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 11:58:48 +0200 mav  r271813 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 11:53:05 +0200 mav  r271812 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 11:48:36 +0200 mav  r271810 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 11:43:45 +0200 mav  r271809 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 11:39:38 +0200 mav  r271808 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 11:37:38 +0200 mav  r271806 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 11:33:58 +0200 mav  r271805 : #i101356# allow to generate a small log if a document can not be stored 2009-05-12 11:30:01 +0200 mav  r271804 : #i101356# allow to generate a small log if a document can not be stored 2009-05-06 17:43:38 +0200 mst  r271607 : #i100727# - svtools/source/svhtml/parhtml.cxx:   + adapt code to renaming of HTML constants (sb107) 2009-05-05 11:14:18 +0200 mav  r271507 : #i101222# avoid warning 2009-05-05 10:27:23 +0200 mav  r271505 : #i101426# send the modified() notification only when the document can be modified 2009-05-05 10:25:07 +0200 mav  r271504 : #i101426# send the modified() notification only when the document is modified 2009-05-05 08:42:48 +0200 mav  r271497 : CWS-TOOLING: rebase CWS fwk103 to trunk@271427 (milestone: DEV300:m47) 2009-04-30 13:32:11 +0200 mav  r271412 : #i100518# check the template folders quietly 2009-04-29 20:04:25 +0200 mst  r271393 : - sw/source/filter/html/swhtml.cxx:   + fix wrong initialization order in constructor 2009-04-28 12:28:46 +0200 mav  r271319 : #i99142# set the error correctly 2009-04-28 08:44:48 +0200 mav  r271305 : #i99050# clear hidden flag if necessary 2009-04-28 08:40:10 +0200 mav  r271304 : #i99050# avoid crash 2009-04-22 07:40:11 +0200 mav  r271056 : #i101093# lets not affect the performance 2009-04-15 09:30:47 +0200 cd  r270820 : #i99771# Fix warnings for gcc 4.4 2009-04-15 09:19:52 +0200 cd  r270819 : #i99771# Fix warnings for gcc 4.4 2009-04-15 08:42:34 +0200 cd  r270817 : #i99771# Fix warnings for gcc 4.4 2009-04-14 14:31:01 +0200 mav  r270768 : #i99493# fix typo 2009-04-01 12:45:43 +0200 mst  r270317 : fix #i100727# - svtools/inc/svtools/svparser.hxx, svtools/source/svrtf/svparser.cxx,   sfx2/inc/sfx2/docfile.hxx, sfx2/source/doc/{objmisc.cxx,docfile.cxx}:   + move SvKeyValue stuff from sfx2 to svtools - svtools/inc/svtools/parhtml.hxx, svtools/source/svhtml/parhtml.cxx,   sfx2/inc/sfx2/sfxhtml.hxx, sfx2/source/bastyp/sfxhtml.cxx:   + move ParseMetaOptions() and GetEncodingByMIME() from SfxHTMLParser (sfx2)     to HTMLParser (svtools)   + make HTMLParser::ParseMetaOptions() a virtual function   + HTMLParser::ParseMetaOptions() calls GetExtendedCompatibilityTextEncoding()   + new template method HTMLParser::AddMetaUserDefined() - svtools/source/svhtml/makefile.mk:   + enable exceptions for parhtml.cxx - dbaccess/source/ui/misc/HtmlReader.cxx,   sc/source/filter/html/htmlpars.cxx:   + remove encoding related code duplication - sw/source/filter/html/{swhtml{.hxx,.cxx},htmlfld.cxx}:   + new SwHTMLParser::AddMetaUserDefined() for import of     DOCINFO field subtypes INFO[1-4]   + do not use DocumentInfo for import of DOCINFO field subtypes INFO[1-4] 2009-03-31 17:01:35 +0200 mav  r270288 : #i91214# fix typo 2009-03-31 15:19:41 +0200 mav  r270285 : #i100123# allow to turn OOo locking mechanics off 2009-03-31 15:00:36 +0200 mav  r270284 : #i100123# allow to turn OOo locking mechanics off 2009-03-31 12:19:13 +0200 mav  r270270 : #i100123# taking the lock file over throws no exception 2009-03-30 13:57:21 +0200 mav  r270227 : #i100351# fix the typo 2009-03-30 13:47:26 +0200 mav  r270225 : #i99885# let OK be default button 2009-03-29 19:38:55 +0200 mav  r270190 : CWS-TOOLING: rebase CWS fwk103 to trunk@270033 (milestone: DEV300:m45) 2009-03-16 16:39:48 +0100 mav  r269558 : #i93558# convert the attributes as well 2009-03-13 15:35:55 +0100 mav  r269488 : #i93558# improve manifest.xml parsing 2009-03-13 08:47:00 +0100 mav  r269454 : #i96205# allow to remove password on SaveAs 2009-03-12 13:36:07 +0100 mav  r269398 : #i91306# show special error in case of shared document 2009-03-12 13:33:35 +0100 mav  r269397 : #i91306# introduce the new error-message 2009-03-12 11:40:42 +0100 mst  r269378 : fix #i90877# - svtools/source/uno/unoevent.cxx:   + use proper operator delete[] 2009-02-26 15:23:10 +0100 mav  r268526 : #i91214# do not use ATL 2009-02-26 14:19:06 +0100 mav  r268516 : #i98909# integrate the patch 2009-02-10 17:29:52 +0100 cd  r267568 : #i98649# Make sure that we catch the NoSuchElementException when a module is not installed.


2009-06-15  Ivo Hinkelmann  <ihi@openoffice.org>  [a07990f65724f1eacc7f1c1c2c6cc3d2e2b7e6e9]

CWS-TOOLING: integrate CWS fhawfixes1 2009-06-03 17:24:54 +0200 fredrikh  r272595 : i102444 2009-06-03 16:58:38 +0200 fredrikh  r272594 : i102477 2009-06-03 16:33:41 +0200 fredrikh  r272585 : i102476 2009-06-03 15:39:59 +0200 fredrikh  r272582 : i102444 2009-06-03 11:03:38 +0200 fredrikh  r272547 : i102451 2009-06-02 18:26:24 +0200 fredrikh  r272526 : i102444 2009-06-02 18:21:43 +0200 fredrikh  r272525 : i95309 2009-06-02 18:21:10 +0200 fredrikh  r272524 : i95309 2009-06-02 18:20:26 +0200 fredrikh  r272523 : i102287 2009-06-02 18:19:59 +0200 fredrikh  r272522 : i102287 2009-06-02 18:19:37 +0200 fredrikh  r272521 : i102287 2009-06-02 18:19:23 +0200 fredrikh  r272520 : i102287 2009-06-02 18:19:05 +0200 fredrikh  r272519 : i102287 2009-06-02 18:18:44 +0200 fredrikh  r272518 : i102287 2009-06-02 18:16:51 +0200 fredrikh  r272517 : i102287 2009-06-02 18:16:13 +0200 fredrikh  r272516 : i102287 2009-06-02 18:15:49 +0200 fredrikh  r272515 : i102287 2009-06-02 18:14:24 +0200 fredrikh  r272514 : i102452 2009-06-02 17:57:04 +0200 fredrikh  r272513 : i102451 2009-06-02 13:57:46 +0200 fredrikh  r272502 : i102444 2009-06-02 13:24:29 +0200 fredrikh  r272497 : i102287 2009-06-02 12:44:01 +0200 fredrikh  r272495 : i102287 2009-06-01 13:25:03 +0200 fredrikh  r272477 : CWS-TOOLING: rebase CWS fhawfixes1 to trunk@272291 (milestone: DEV300:m49) 2009-05-27 17:50:23 +0200 fredrikh  r272363 : i102310 2009-05-27 16:23:37 +0200 fredrikh  r272359 : i102093 2009-05-27 16:18:50 +0200 fredrikh  r272358 : i102218 2009-05-27 15:58:58 +0200 fredrikh  r272357 : i102306 2009-05-27 11:14:59 +0200 fredrikh  r272336 : i102287 2009-05-27 10:18:48 +0200 fredrikh  r272334 : i102286 2009-05-25 15:33:07 +0200 fredrikh  r272253 : i102221 2009-05-25 13:08:52 +0200 fredrikh  r272235 : i102218 2009-05-19 14:06:59 +0200 fredrikh  r272077 : i102058


2009-06-15  Ivo Hinkelmann  <ihi@openoffice.org>  [77e9b14d2f991a5388affdabe871514379e8bd72]

CWS-TOOLING: integrate CWS calc50 2009-05-28 12:32:46 +0200 nn  r272399 : gcc warning 2009-05-28 10:56:48 +0200 nn  r272382 : CWS-TOOLING: rebase CWS calc50 to trunk@272291 (milestone: DEV300:m49) 2009-05-27 14:24:52 +0200 nn  r272343 : #i50825# DataPilotUpdate: prevent overwriting source data above the table 2009-05-26 18:29:21 +0200 nn  r272316 : #i50019# allow borders for multiple cell ranges 2009-05-26 13:43:36 +0200 nn  r272300 : #i101960# UpdateExternalRefLinks: set document modified 2009-05-25 18:01:23 +0200 nn  r272267 : #i102056# copied from CWS calc311fixes 2009-05-20 12:24:22 +0200 nn  r272114 : #i59672# ExecFilter/SC_AUTOFILTER_CUSTOM: select database range (patch from gaozm) 2009-05-15 18:24:44 +0200 nn  r271961 : #i100544# correct ScTokenConversion::ConvertToTokenArray 2009-05-13 17:45:02 +0200 nn  r271866 : #i101869# DeleteRange: before broadcasting, check if EndListening removed the note cells 2009-05-13 12:43:31 +0200 nn  r271856 : #i101806# correct reference undo for inserting/deleting columns/rows across sheets 2009-05-11 18:44:46 +0200 nn  r271783 : #i101725# don't copy hash_set with pointers from the other collection 2009-05-11 17:54:21 +0200 nn  r271780 : #i101690# correct merge error in frmdlg integration 2009-05-07 15:28:55 +0200 nn  r271674 : #i96940# check for negative count in fillAuto 2009-05-07 13:47:58 +0200 nn  r271661 : #i101512# SetCompileForFAP is in formula::FormulaCompiler 2009-05-07 13:47:27 +0200 nn  r271660 : #i101512# use SetCompileForFAP for CompileTokenArray 2009-05-05 18:47:03 +0200 nn  r271551 : #i73074# RepeatDB: re-evaluate advanced filter source range 2009-05-05 18:23:21 +0200 nn  r271546 : #i97857# use GetInputString for direct reference as validity range source 2009-05-05 17:38:23 +0200 nn  r271538 : #i95834# better enable/disable handling of next/previous buttons (patch by cmc)


2009-06-12  Ivo Hinkelmann  <ihi@openoffice.org>  [98e560ea9476aba58f0b526051eaa8459fff2703]

CWS-TOOLING: integrate CWS unifypaper01 2009-05-27 17:14:41 +0200 cmc  r272362 : #i92819#, psprint moved into vcl 2009-05-19 15:45:46 +0200 cmc  r272083 : #i92819# having difficultly in getting this right under windows 2009-05-18 18:04:22 +0200 cmc  r272043 : #i92819# missing some export magic somewhere 2009-05-18 15:34:18 +0200 cmc  r272028 : #i92819# get depends right 2009-05-18 11:50:43 +0200 cmc  r272010 : ##i92819# fix import/export stuff 2009-05-18 10:07:00 +0200 cmc  r272000 : #i92819# fix window imp name 2009-05-16 15:17:23 +0200 cmc  r271975 : #i92819# fix win paper names 2009-05-16 11:11:29 +0200 cmc  r271974 : #i92819# std::abs prolematic for msvc 2009-05-15 15:36:56 +0200 cmc  r271941 : #i92819# handle missing setting, at least on mac 2009-05-15 10:13:44 +0200 cmc  r271927 : #i92819# adjust for moved page dialog 2009-05-14 13:47:14 +0200 cmc  r271887 : remove dead files that reappeared 2009-05-14 09:57:17 +0200 cmc  r271872 : CWS-TOOLING: rebase CWS unifypaper01 to trunk@271830 (milestone: DEV300:m48) 2009-05-11 12:27:18 +0200 cmc  r271763 : #i92819# check return value 2009-05-06 17:28:25 +0200 cmc  r271602 : #i92819# these B4/B5s are the JIS ones according to their dimensions 2009-05-06 17:17:03 +0200 cmc  r271601 : #i92819# micro-optimization 2009-05-03 18:20:48 +0200 cmc  r271434 : #i92819# paper libs 2009-05-03 16:08:32 +0200 cmc  r271433 : CWS-TOOLING: rebase CWS unifypaper01 to trunk@271427 (milestone: DEV300:m47) 2009-04-06 15:33:37 +0200 cmc  r270556 : CWS-TOOLING: rebase CWS unifypaper01 to trunk@270033 (milestone: DEV300:m45) 2009-03-12 14:36:35 +0100 cmc  r269415 : #i92819# merge paper utilities 2009-03-11 13:44:27 +0100 cmc  r269328 : CWS-TOOLING: rebase CWS unifypaper01 to trunk@269297 (milestone: DEV300:m43) 2009-03-09 14:42:07 +0100 cmc  r269190 : remove config_office from synced version 2009-03-09 14:34:50 +0100 cmc  r269187 : CWS-TOOLING: rebase CWS unifypaper01 to trunk@268395 (milestone: DEV300:m42) 2009-03-09 12:11:29 +0100 cmc  r269077 : CWS-TOOLING: rebase CWS unifypaper01 to trunk@265758 (milestone: DEV300:m38) 2009-03-06 17:17:39 +0100 cmc  r269027 : #i92819# paper goo 2008-12-04 11:29:30 +0100 cmc  r264826 : CWS-TOOLING: rebase CWS unifypaper01 to trunk@264807 (milestone: DEV300:m37) 2008-11-26 10:33:06 +0100 cmc  r264357 : CWS-TOOLING: rebase CWS unifypaper01 to trunk@264325 (milestone: DEV300:m36) 2008-11-21 14:09:36 +0100 cmc  r264138 : #i92819# paper consolidation


2009-06-11  Philipp Lohmann  <pl@openoffice.org>  [cb92b46fa9968b0c4b4867228f3c96a4a9b9fd00]

make compile again, needs adaption ?


2009-10-08  hg  <hg@oosvn01.>  [0a4bc39a674866ab0ccdf20b4dbbb54d9b644339]

merge with m50


2009-06-11  Thomas Benisch  <tbe@openoffice.org>  [369291ae960f880de621f3af92e2b3d4b69e785c]

#i12587# Inserting/Editing arbitrary text objects in chart


2009-06-11  Thomas Benisch  <tbe@openoffice.org>  [433311a5d62d52dc52c4d469d1e60ad644869ef1]

#i12587# Inserting/Editing arbitrary text objects in chart


2009-12-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [79cda7f75141c3c60d82061767d3e6b37b657f28]

chartshapes: merge with DEV300 m50


2009-06-10  Release Engineers  <releng@openoffice.org>  [77d519324af0ec405a22a65f3770e62a2141425f]

Create DEV300_m50 milestone tag from trunk@272824


2009-06-09  Thomas Benisch  <tbe@openoffice.org>  [5fa660d4c88a9ee574a43f365a0d01ba50629a1b]

#i12587# Inserting/editing arbitrary text objects in chart


2009-06-08  Niklas Nebel  <nn@openoffice.org>  [aa69560162e8d02cff71ad4a9b2c1b4c70fc90ba]

#i101309# re-initialize ScPrintUIOptions default values from print options


2009-06-05  Thomas Benisch  <tbe@openoffice.org>  [fec0dadee78c251daad038b4c277f3cf15b3e873]

#i12587# Inserting/editing arbitrary text objects in chart


2009-06-05  Niklas Nebel  <nn@openoffice.org>  [21d59df0bb81aef395fa9b8a25fe0ea5b528fa48]

#i101309# handle 'print content' selection


2009-06-05  Thomas Benisch  <tbe@openoffice.org>  [5f7ef581bcd75f81218174e78c818c28274f31dd]

#i12587# Inserting/editing arbitrary text objects in chart


2009-06-05  Kurt Zenker  <kz@openoffice.org>  [ba7ef44a3ab1e7c8e105f0818bbb4eb517eb48a6]

CWS-TOOLING: integrate CWS dba32b 2009-06-03 14:58:08 +0200 fs  r272581 : #i102439# 2009-05-29 13:56:18 +0200 fs  r272456 : remove the sub form when the 'add subform' setting changes from <true/> to <false/>, not only its controls 2009-05-29 13:19:27 +0200 fs  r272454 : display '(Default)' instead of an empty string when a control has the default font 2009-05-28 20:49:18 +0200 fs  r272428 : #i98162# getFirstSelectedValue: do not return reference to a temporary 2009-05-27 15:30:22 +0200 msc  r272353 : #102303# 2009-05-26 13:03:06 +0200 fs  r272295 : spelling 2009-05-26 12:59:54 +0200 fs  r272294 : merge m48 version to get latest cygwin related fixes 2009-05-25 14:02:06 +0200 fs  r272239 : remove references to local files, needed for debugging sessions only 2009-05-25 14:01:16 +0200 fs  r272238 : #i102021# ensure members such as bNumberFormat are initialized before actually returning them 2009-05-25 13:10:20 +0200 fs  r272236 : #i10000# reset ENABLE_EVOAB2 2009-05-22 06:44:45 +0200 oj  r272167 : #i99104# add import handler for calc-sett 2009-05-22 06:42:27 +0200 oj  r272166 : #i99104# impl NullDate as member 2009-05-22 06:36:22 +0200 oj  r272165 : #i99104# handle nulldate from parent model 2009-05-22 06:33:13 +0200 oj  r272164 : #i99104# export and import calculation-settings and nulldate 2009-05-22 06:27:50 +0200 oj  r272163 : #i99104# export and import calculation-settings and nulldate 2009-05-20 13:29:58 +0200 oj  r272118 : #i99911# handle invalid name 2009-05-20 13:28:49 +0200 oj  r272117 : #i101261# handle different rowsets 2009-05-20 11:29:55 +0200 msc  r272111 : #i100000# 2009-05-20 11:28:27 +0200 msc  r272110 : merge in change from dba32a 2009-05-20 11:27:38 +0200 msc  r272109 : #102082# CTRL + C does not work 2009-05-20 09:43:36 +0200 oj  r272106 : clean up includes 2009-05-20 09:32:15 +0200 oj  r272105 : #i99060# merge error resovled now VERTICAL_ALIGN is in both stmt 2009-05-20 08:37:21 +0200 msc  r272104 : add workaround for issue #102010# 2009-05-20 08:10:12 +0200 oj  r272103 : #i99104# use numberformatkey 2009-05-20 08:07:02 +0200 oj  r272102 : #i99104# use column info from rowset 2009-05-20 08:04:43 +0200 oj  r272101 : #i102032# use a special column type where prec and scale are the values currently set at the column 2009-05-20 08:03:04 +0200 oj  r272100 : #i102032# correct type info, we have to use SQL defined type names 2009-05-19 10:27:02 +0200 oj  r272061 : #i99104# export null-date 2009-05-19 08:26:53 +0200 oj  r272056 : #i99104# export null-date 2009-05-18 13:15:10 +0200 msc  r272014 : add issue #102019# 2009-05-18 11:33:07 +0200 msc  r272005 : add issue #102019# 2009-05-18 08:59:45 +0200 msc  r271996 : add workaroud for issue #102010# 2009-05-15 10:21:24 +0200 msc  r271929 : #101944# 2009-05-11 21:18:30 +0200 fs  r271792 : #i99914# 2009-05-08 13:52:06 +0200 oj  r271715 : #i96423# remember column span 2009-05-08 11:26:19 +0200 oj  r271708 : #i98605# impl new scale mode 2009-05-08 10:33:35 +0200 fs  r271706 : SendUserCall: only call into the shape notification routine for UserCall types where this is necessary (performance issue) 2009-05-07 20:52:44 +0200 fs  r271698 : outsource ShapeProperty from shapepropertynotifier.hxx 2009-05-07 20:43:33 +0200 fs  r271697 : #i99056# use notifyShapePropertyChange, instead of getShapePropertyChangeNotifier - the latter throws if no shape exists, yet 2009-05-07 20:33:58 +0200 fs  r271696 : #i99056# +notifyShapePropertyChange: allow notifying chages without checking whether there actually already exists an SvxShape 2009-05-07 16:22:15 +0200 fs  r271679 : #i10000# cygwin needs quotes around the classpath 2009-05-07 16:21:37 +0200 fs  r271678 : #i10000# cygwin needs quotes around the classpath 2009-05-07 16:01:11 +0200 oj  r271677 : #i99914# notify parent handler 2009-05-07 15:54:54 +0200 fs  r271676 : #i10000# cygwin needs some quoting 2009-05-07 14:49:48 +0200 oj  r271672 : #i99277# quote alias name 2009-05-07 14:48:12 +0200 oj  r271671 : #i92538# add ~ in front of type 2009-05-07 14:37:13 +0200 oj  r271667 : #i99118# change type from char to varchar 2009-05-07 14:36:23 +0200 oj  r271666 : #i99118# clear dest columns when changing to create new table 2009-05-07 13:35:32 +0200 oj  r271657 : #i94467# handle type 0 as double as well 2009-05-07 13:20:49 +0200 oj  r271655 : i99743# setNull when varchar is no text 2009-05-07 12:58:06 +0200 fs  r271651 : initialize the SdrObject's property change notifier after the ctor, if necessary 2009-05-07 11:47:18 +0200 fs  r271647 : #i10000# 2009-05-07 10:57:16 +0200 fs  r271639 : OPropertyBrowserController::propertyChange: care for the current property state, too, and properly forward it to the UI 2009-05-07 10:18:14 +0200 fs  r271636 : onNewComponent: do not ask the map for grid columns, it will throw 2009-05-07 10:09:55 +0200 fs  r271634 : #i101623# 2009-05-07 09:53:44 +0200 fs  r271631 : #i101622# 2009-05-06 21:55:53 +0200 fs  r271615 : #i10000# 2009-05-06 21:10:42 +0200 fs  r271611 : #i10000# 2009-05-06 13:11:48 +0200 fs  r271583 : #i10000# 2009-05-05 22:29:31 +0200 fs  r271559 : proper assertion message 2009-05-05 22:29:03 +0200 fs  r271558 : diagnostics 2009-05-05 22:16:16 +0200 fs  r271557 : #i10000# 2009-05-05 13:50:32 +0200 fs  r271513 : #i10000# 2009-05-05 10:21:50 +0200 fs  r271503 : #i10000# 2009-05-05 09:30:26 +0200 fs  r271501 : why did those survive the rebase -C step? 2009-05-05 09:18:12 +0200 fs  r271500 : #i10000# 2009-05-04 17:08:17 +0200 fs  r271475 : CWS-TOOLING: rebase CWS dba32b to trunk@271427 (milestone: DEV300:m47) 2009-05-04 14:51:26 +0200 fs  r271456 : line ends 2009-04-30 15:55:27 +0200 fs  r271418 : NewURL -> PublicConnectionURL 2009-04-22 21:18:34 +0200 fs  r271141 : #i100944# 2009-04-22 09:12:26 +0200 oj  r271071 : #i101261# little code change 2009-04-22 09:11:43 +0200 oj  r271070 : #i101261# only ask for parameters which aren't set before 2009-04-22 09:11:25 +0200 oj  r271069 : #i101261# new grabage container for nodes 2009-04-22 09:11:02 +0200 oj  r271068 : #i101261# new grabage container for nodes 2009-04-22 09:10:44 +0200 oj  r271067 : #i101261# new grabage container for nodes 2009-04-22 09:10:21 +0200 oj  r271066 : #i101261# only ask for parameters which aren't set before 2009-04-22 09:08:24 +0200 oj  r271065 : #i101261# only ask for parameters which aren't set before 2009-04-22 09:07:25 +0200 oj  r271064 : #i101261# only ask for parameters which aren't set before 2009-04-22 08:49:07 +0200 oj  r271062 : #i77501# preview only when needed 2009-04-22 08:45:44 +0200 oj  r271061 : #i101261# new prop max rows 2009-04-22 08:44:18 +0200 oj  r271060 : #i101261# create dataprovider earlier to avoid the wrong legend in chart 2009-04-22 08:42:48 +0200 oj  r271059 : #i101261# handle parameter 2009-04-17 21:00:23 +0200 fs  r270954 : #i98350# 2009-04-17 13:54:19 +0200 fs  r270942 : #i99565# 2009-04-17 13:51:34 +0200 fs  r270940 : #i101153# only localize the (potentially) localizable properties when there really is support at the control model 2009-04-17 11:43:14 +0200 fs  r270932 : removed superfluous include 2009-04-17 10:10:15 +0200 fs  r270926 : #i10000# 2009-04-17 10:02:36 +0200 fs  r270925 : #i10000# 2009-04-17 09:15:13 +0200 fs  r270918 : #i99056# some more refactoring of the recently introduced property change notification mechanism for UNO shapes 2009-04-17 09:14:56 +0200 fs  r270917 : #i99056# some more refactoring of the recently introduced property change notification mechanism for UNO shapes 2009-04-17 09:13:25 +0200 fs  r270915 : #i99056# some more refactoring of the recently introduced property change notification mechanism for UNO shapes 2009-04-17 08:30:34 +0200 fs  r270914 : removed unotools/servicehelper.hxx in favour of the (duplicated) comphelper/servicehelper.hxx 2009-04-16 21:05:25 +0200 fs  r270903 : #i10000# 2009-04-16 20:43:43 +0200 fs  r270902 : #i99056# shape notification outsourced to the SdrObject, this is what all other shape implementations (which only aggregate an SvxShape) have access to, too 2009-04-16 15:57:36 +0200 fs  r270891 : #i99056# make SetUnoControlModel virtual 2009-04-16 15:44:02 +0200 fs  r270890 : #i99056# let the ScShapeObj notify changes in its Anchor property 2009-04-16 15:36:47 +0200 fs  r270889 : #i99056# enable the sheet anchor type property, too 2009-04-16 15:33:45 +0200 fs  r270887 : #i99056# shape notification outsourced to the SdrObject, this is what all other shape implementations (which only aggregate an SvxShape) have access to, too 2009-04-15 14:53:13 +0200 fs  r270844 : #i10000# 2009-04-15 13:08:29 +0200 fs  r270836 : #i10000# 2009-04-15 12:28:14 +0200 fs  r270832 : #i10000# 2009-04-15 10:59:14 +0200 fs  r270827 : #i10000# 2009-04-15 09:41:08 +0200 oj  r270823 : fix issues found with findbugs and pmd 2009-04-14 21:08:04 +0200 fs  r270808 : #i99056# implement SheetAnchorType - now the only thing missing to enable it is the proper notification when it is modified 2009-04-14 17:09:00 +0200 fs  r270799 : #i99056# implement XServiceInfo for the ScShapeObj 2009-04-14 17:07:55 +0200 fs  r270798 : #i99056# implement TextAnchorType, partially implement SheetAnchorType 2009-04-14 15:54:05 +0200 fs  r270786 : #i99056# SwXShape: notify changes of the AnchorType property 2009-04-14 15:47:32 +0200 fs  r270785 : #i99056# deliver shapepropertynotifier.hxx 2009-04-14 15:46:54 +0200 fs  r270784 : diagnostics 2009-04-14 15:08:28 +0200 fs  r270781 : #i99056# outsourced the SvxShape's property change notification code into a dedicated class 2009-04-14 14:41:09 +0200 fs  r270773 : #i99056# outsourced the SvxShape's property change notification code into a dedicated class 2009-04-14 14:37:23 +0200 fs  r270772 : in dtor, remove the properties from the temporary component context 2009-04-14 14:36:34 +0200 fs  r270771 : getWeakUnoShape made const 2009-04-14 12:23:08 +0200 oj  r270757 : #i101064# add missing braces 2009-04-14 12:21:25 +0200 oj  r270756 : #i101065# add braces for gcc 4.3.2 2009-04-14 12:17:45 +0200 oj  r270755 : #i101059# add dep for manifest 2009-04-09 12:06:58 +0200 oj  r270686 : #i93100# use OptimalSize from control to get height 2009-04-08 09:56:55 +0200 oj  r270619 : #i92537# handle calculations in the select columns as well 2009-04-08 09:30:39 +0200 oj  r270615 : #i96657# throw error message when the key doesn't have any columns 2009-04-07 12:08:26 +0200 oj  r270592 : #i77501# impl preview of the executed report 2009-04-07 12:01:56 +0200 oj  r270591 : #i77501# impl preview of the executed report 2009-04-07 11:41:03 +0200 oj  r270590 : #i77501# impl preview of the executed report 2009-04-07 11:39:32 +0200 oj  r270589 : #i77501# impl preview of the executed report 2009-04-07 11:29:25 +0200 oj  r270588 : #i77501# convert dos to unix lineends 2009-04-07 11:28:23 +0200 oj  r270587 : #i77501# impl preview of the executed report 2009-04-07 11:16:50 +0200 oj  r270586 : #i77501# impl preview of the executed report 2009-04-07 11:16:00 +0200 oj  r270585 : #i77501# impl preview of the executed report 2009-04-07 11:15:44 +0200 oj  r270584 : #i77501# impl preview of the executed report 2009-04-07 11:15:28 +0200 oj  r270583 : #i77501# impl preview of the executed report 2009-04-07 11:15:04 +0200 oj  r270582 : #i77501# impl preview of the executed report 2009-04-06 15:38:54 +0200 fs  r270559 : merge changes from CWS dba32a herein 2009-04-03 15:56:16 +0200 fs  r270494 : ImpSvMEdit::Resize: do multiple iterations, if necessary 2009-04-03 14:35:49 +0200 fs  r270487 : #i10000# 2009-04-03 13:17:16 +0200 fs  r270476 : #i99056# display geometry information for controls, too 2009-04-03 13:16:37 +0200 fs  r270475 : #i99056# better ordering of the geometry properties 2009-04-03 13:16:07 +0200 fs  r270473 : #i99056# now that SvxShape supports property change listeners, forward add/remove requests to it 2009-04-03 13:13:18 +0200 fs  r270472 : #i99056# at SvxShape, allow for PropertyChangeListeners for Size/Position 2009-04-03 09:29:27 +0200 oj  r270456 : #i94571# use correct prop name 2009-04-03 09:14:54 +0200 fs  r270451 : merge changes from CWS dba32a herein 2009-04-02 17:00:51 +0200 fs  r270424 : better diagnostics 2009-04-02 16:35:19 +0200 fs  r270421 : diagnostics 2009-04-02 16:34:50 +0200 fs  r270420 : #i99056# mxUnoShape not accessible anymore, use impl_setUnoShape instead 2009-04-02 16:32:48 +0200 fs  r270419 : #i99056# make getUnoShape cheaper: keep the pointer to the SvxShape all the time, so there's no need to ask for it in getUnoShape. As a consequence, we will later be able to use the pointer in scenarious where performance (potentially) matters 2009-04-02 16:31:13 +0200 fs  r270417 : merge changes from CWS dba32a herein 2009-04-02 16:23:16 +0200 fs  r270414 : merge changes from CWS dba32a herein 2009-04-02 14:10:35 +0200 fs  r270405 : #i10000# 2009-04-02 14:06:26 +0200 fs  r270404 : merge changes from CWS dba32a herein 2009-04-02 14:03:03 +0200 fs  r270401 : #i10000# 2009-04-02 13:58:13 +0200 fs  r270400 : #i10000# 2009-04-02 12:59:44 +0200 fs  r270397 : merge changes from CWS dba32a herein 2009-04-02 12:46:30 +0200 fs  r270396 : #i99056# let the form page maintain a mapping between control models and control shapes 2009-04-02 12:44:07 +0200 fs  r270395 : merge changes from CWS dba32a herein 2009-04-02 12:42:06 +0200 fs  r270394 : merge changes from CWS dba32a herein 2009-04-02 12:35:20 +0200 fs  r270393 : #i10000# precompiled header 2009-04-02 12:05:31 +0200 fs  r270392 : merge changes from CWS dba32a herein 2009-04-02 12:00:42 +0200 fs  r270391 : merge changes from CWS dba32a herein 2009-04-02 11:47:26 +0200 fs  r270390 : merge changes from CWS dba32a herein 2009-04-02 11:39:15 +0200 oj  r270389 : #i94467# foxpro impl several new types 2009-04-02 11:35:58 +0200 fs  r270387 : merge changes from CWS dba32a herein 2009-04-01 14:10:51 +0200 fs  r270329 : merge changes from CWS dba32a herein 2009-03-31 17:29:50 +0200 fs  r270290 : merge changes from CWS dba32a herein 2009-03-30 14:53:56 +0200 fs  r270233 : #i100417# don't set grid column widths to 0, but to <void/> 2009-03-30 12:31:03 +0200 oj  r270213 : #i100552# wrong orb used 2009-03-30 12:19:20 +0200 oj  r270212 : #i98303# convertlike corrected to sal_Unicode 2009-03-30 11:58:25 +0200 fs  r270210 : merge changes from CWS dba32a herein 2009-03-30 11:38:16 +0200 oj  r270205 : remove duplicate code from merge 2009-03-30 11:02:27 +0200 fs  r270202 : merge changes from CWS dba32a herein 2009-03-30 11:02:19 +0200 fs  r270201 : merge changes from CWS dba32a herein 2009-03-30 10:31:26 +0200 oj  r270200 : #i100665# only throw exception and do not drop table 2009-03-30 09:36:24 +0200 fs  r270195 : assertion text 2009-03-28 20:21:58 +0100 fs  r270187 : #ii10000# 2009-03-28 20:19:54 +0100 fs  r270186 : removed unused help ids 2009-03-28 20:19:40 +0100 fs  r270185 : removed unused help ids 2009-03-28 20:19:10 +0100 fs  r270184 : #i100237# +DefaultState/XReset 2009-03-28 00:29:29 +0100 fs  r270177 : CWS-TOOLING: rebase CWS dba32b to trunk@270033 (milestone: DEV300:m45) 2009-03-27 22:56:46 +0100 fs  r270173 : #i100237# DEFAULT_CHECKED -> DEFAULT_STATE 2009-03-27 22:55:52 +0100 fs  r270172 : #i100237# DefaultState property for buttons, enabled only when Toggle=Yes 2009-03-27 22:54:15 +0100 fs  r270171 : #i100237# DEFAULT_CHECKED -> DEFAULT_STATE 2009-03-27 22:53:54 +0100 fs  r270170 : #i100237# introduce a DefaultState property for buttons, which implies buttongs supporting XReset, which needed some refactoring 2009-03-27 13:31:41 +0100 fs  r270152 : ignore output paths 2009-03-27 11:23:44 +0100 fs  r270139 : tuned behavior with respect to invalid keys/values 2009-03-27 09:57:14 +0100 fs  r270136 : don't allow Double.NaN 2009-03-27 09:56:16 +0100 fs  r270135 : talk about Double.NaN 2009-03-26 12:14:30 +0100 fs  r270067 : removed unused parameter 2009-03-26 12:14:02 +0100 fs  r270066 : removed widening conversion when checking keys 2009-03-26 09:17:34 +0100 fs  r270053 : separated the enumerator functionality into a dedicated interface, this way not burdening XMap with it 2009-03-26 09:17:11 +0100 fs  r270052 : separated the enumerator functionality into a dedicated interface, this way not burdening XMap with it 2009-03-26 09:16:49 +0100 fs  r270051 : separated the enumerator functionality into a dedicated interface, this way not burdening XMap with it 2009-03-25 21:55:20 +0100 fs  r270044 : #i100541# properly calculat bNeedScrollBox 2009-03-25 12:56:17 +0100 fs  r270019 : renamed the previously introduced error condition 2009-03-25 12:11:48 +0100 fs  r270015 : #i100095# when the error messages contain non-trivial details (SQLState/ErrorCode), then always display the 'Details' button 2009-03-25 12:10:05 +0100 fs  r270012 : renamed the previously introduced error condition 2009-03-25 12:01:04 +0100 fs  r270011 : #i100095# when no address book (or respective profile) can be found, then use a dedicated ErrorCondition 2009-03-25 10:29:07 +0100 fs  r270003 : add missing localization 2009-03-25 10:23:12 +0100 fs  r270001 : in preparation of #i1000095#: rework the error handling, allow using css.sdb.ErrorCondition values, plus allow propagating the nsresult 2009-03-25 10:21:55 +0100 fs  r270000 : in preparation of #i1000095#: rework the error handling, allow using css.sdb.ErrorCondition values, plus allow propagating the nsresult 2009-03-20 23:05:38 +0100 fs  r269829 : XMap::getSize removed 2009-03-20 23:05:19 +0100 fs  r269828 : changes as suggested by sb 2009-03-20 23:04:56 +0100 fs  r269827 : enhanced documentation 2009-03-20 15:31:40 +0100 fs  r269815 : changes as suggested by sb 2009-03-20 13:23:52 +0100 oj  r269804 : #i92538# correct the zorder that fixedtext is infront of control 2009-03-20 12:59:38 +0100 oj  r269801 : #i94571# paraadjust now supports BLOCK 2009-03-20 12:58:11 +0100 oj  r269800 : #i94571# export style with data style 2009-03-20 12:57:05 +0100 oj  r269799 : #i94571# text align is now paraadjust 2009-03-20 12:37:02 +0100 fs  r269797 : enum keys only accepted if they have the exact type, not if they have *any* enum type 2009-03-20 12:28:31 +0100 fs  r269794 : some changes requested by sb 2009-03-20 08:52:47 +0100 fs  r269780 : doc 2009-03-20 07:37:31 +0100 oj  r269779 : #i99913# only notifiy when values are different 2009-03-20 07:36:58 +0100 oj  r269778 : #i99913# add undoenv as listener at the dataprovider 2009-03-19 22:52:52 +0100 fs  r269771 : added comment 2009-03-19 22:40:06 +0100 fs  r269770 : +testEnumeration 2009-03-19 22:39:41 +0100 fs  r269769 : implemented enumeration, getKeySet, and getValues. Should be finished now. 2009-03-19 14:01:01 +0100 oj  r269743 : #i99913# reset the modified state when selecting an object 2009-03-19 12:19:54 +0100 lla  r269739 : #i72390# cleanups 2009-03-19 09:25:27 +0100 fs  r269727 : #i10000# 2009-03-18 23:37:02 +0100 fs  r269708 : extended checks for value type acceptance 2009-03-18 23:36:41 +0100 fs  r269707 : fixed value type checks 2009-03-18 14:59:56 +0100 fs  r269678 : initial complex test case for the new css.container.Map implementation 2009-03-18 14:59:24 +0100 fs  r269677 : verifyExpectedException moved to base class (in complexlib), and renamed to assureException for consistency 2009-03-18 14:58:35 +0100 fs  r269676 : removed unused imports 2009-03-18 14:58:03 +0100 fs  r269675 : first implementation of the new css.container.Map service (not completed, yet) 2009-03-18 14:57:17 +0100 fs  r269674 : base class for UNO components, freeing you from some repeating work 2009-03-18 14:55:53 +0100 fs  r269672 : +assureException: call a given method with given parameters on a given object, ensure that a given exception is thrown by the method implementation 2009-03-18 14:54:58 +0100 fs  r269671 : +getComponentContext 2009-03-18 14:54:00 +0100 fs  r269670 : isEmpty returns a boolean, not a long 2009-03-18 14:14:43 +0100 oj  r269663 : #i99743# now text also supports null 2009-03-18 13:54:14 +0100 oj  r269660 : #i99223# remove check for 2 params 2009-03-18 13:33:35 +0100 oj  r269659 : #i99060# replace text::ParagraphVertAlign with style::VerticalAlignment 2009-03-18 13:32:18 +0100 oj  r269658 : #i99060# don't set void property when void isn't allowed 2009-03-18 13:31:11 +0100 oj  r269657 : #i99060# handle vertical alignment 2009-03-18 13:28:28 +0100 oj  r269656 : #i99060# remove unused elements from sytle 2009-03-18 09:35:42 +0100 lla  r269639 : #i72390# cleanups 2009-03-18 09:31:20 +0100 lla  r269638 : #i72390# add ButtonList 2009-03-18 09:30:46 +0100 lla  r269637 : #i72390# renamed interface 2009-03-18 09:30:15 +0100 lla  r269636 : #i72390# use ButtonList instead of ImageList 2009-03-18 09:29:05 +0100 lla  r269635 : #i72390# new ButtonList, cleanups 2009-03-18 09:26:34 +0100 lla  r269634 : #i72390# cleanups 2009-03-17 12:21:20 +0100 oj  r269590 : #i99222# remove assertion 2009-03-17 12:17:22 +0100 oj  r269589 : #i98605# impl scale mode 2009-03-17 12:10:42 +0100 oj  r269588 : #i98605# impl scale mode 2009-03-17 11:40:15 +0100 oj  r269584 : #i96944# doesn't create equation for shapes 2009-03-17 11:33:16 +0100 oj  r269583 : #i96423# switch calc from float to long 2009-03-16 15:19:18 +0100 fs  r269550 : #i41930# enable zoom for embedded/outplace documents 2009-03-16 14:25:54 +0100 oj  r269542 : #i93734# remove ContextSensitive 2009-03-16 14:21:58 +0100 oj  r269541 : #i99274# page header before group header 2009-03-16 14:18:23 +0100 oj  r269539 : #i99110# fix value type 2009-03-16 14:14:16 +0100 fs  r269537 : line ends 2009-03-16 14:11:06 +0100 fs  r269535 : line ends 2009-03-16 14:08:34 +0100 fs  r269534 : #i100087# (provided my np): allow for polymorphic types with more than one parameter 2009-03-16 12:30:31 +0100 oj  r269521 : compile error 2009-03-16 12:19:12 +0100 oj  r269519 : compile error 2009-03-16 10:39:28 +0100 oj  r269511 : compile error under linux with swap 2009-03-13 10:33:04 +0100 oj  r269462 : CWS-TOOLING: rebase CWS dba32b to trunk@269297 (milestone: DEV300:m43) 2009-03-12 14:37:25 +0100 fs  r269416 : interface SequenceOutputStreamTest is unneeded, and pollutes the namespace here :) 2009-03-12 14:35:07 +0100 fs  r269414 : not needed 2009-03-12 14:34:15 +0100 fs  r269413 : preparation for multiple tests in this module 2009-03-12 14:33:02 +0100 fs  r269412 : ShowTargets was moved from module integration.forms to module complexlib 2009-03-12 14:32:48 +0100 fs  r269411 : helper class for projects containing multiple complex test cases (and following a certain structure) 2009-03-12 14:00:14 +0100 fs  r269407 : proper module after the move 2009-03-12 13:59:10 +0100 fs  r269406 : superseded by ../makefile.mk 2009-03-12 13:47:38 +0100 fs  r269403 : not needed anymore 2009-03-12 13:45:46 +0100 fs  r269402 : moved, in preparation of adding more test cases here, with a common infrastructure 2009-03-12 13:45:07 +0100 fs  r269401 : moved from ../ 2009-03-12 13:43:59 +0100 fs  r269400 : moved to ./comphelper, in preparation of adding more test cases here, with a common infrastructure 2009-03-12 13:29:47 +0100 oj  r269396 : #i99914# set parent on dataprovider 2009-03-12 13:10:35 +0100 oj  r269393 : #i99832# check thrown exception and show error 2009-03-12 13:08:10 +0100 fs  r269392 : reorganizing tests 2009-03-12 12:52:55 +0100 oj  r269390 : #i99118# convert formatkey in numberformat 2009-03-12 12:34:53 +0100 fs  r269388 : new API tests 2009-03-12 12:29:05 +0100 fs  r269386 : Map not yet committed 2009-03-12 12:28:36 +0100 fs  r269385 : oops, forgot the SequenceInputStream during the previous refactoring 2009-03-12 12:12:39 +0100 oj  r269384 : #i99104# set HasCategories prop 2009-03-12 12:12:08 +0100 oj  r269383 : #i99104# check HasCategories even for internal dataprovider 2009-03-12 12:10:40 +0100 oj  r269382 : #i99104# set HasCategories prop 2009-03-12 10:51:49 +0100 fs  r269373 : #i10000# exception specifications 2009-03-12 10:49:18 +0100 fs  r269372 : #i10000# exception specifications 2009-03-12 10:44:02 +0100 fs  r269371 : #i10000# exception specifications 2009-03-12 10:30:55 +0100 fs  r269368 : refactored the UNO service registration in this module, using the helper classes provided by comphelper itself, so you have less effort when extending the list of to-be-registered components 2009-03-12 10:30:37 +0100 fs  r269367 : module-local includes 2009-03-12 07:05:54 +0100 oj  r269357 : #i99104# database dataprovider doesn't need dataranges and diagramdata 2009-03-11 10:58:28 +0100 oj  r269306 : #i99911# check if name of the report is a valid file name 2009-03-11 10:03:23 +0100 oj  r269299 : #i99666# the report is new when the HierarchicalDocumentName is empty 2009-03-10 11:32:45 +0100 oj  r269258 : #i99221# use fallback for language 2009-03-10 10:48:40 +0100 oj  r269255 : #i99433# now use OStringBuffer 2009-03-10 10:36:21 +0100 fs  r269252 : initial version of (X)Map 2009-03-10 09:52:23 +0100 oj  r269246 : #i99433# now use OStringBuffer 2009-03-10 08:56:13 +0100 oj  r269240 : #i99655# patch applied 2009-03-09 07:35:33 +0100 lla  r269058 : #i10000# wrong variable assignment fixed 2009-03-06 17:20:40 +0100 fs  r269030 : some explicit defaults 2009-03-06 17:20:30 +0100 fs  r269029 : #i98600# 2009-03-06 14:40:34 +0100 fs  r269009 : #i87692# during reload, prevent the document being modified just because of some control content changes ... 2009-03-06 12:52:20 +0100 lla  r268997 : #i10000# ambigous problem with FontWeight fixed 2009-03-06 11:39:32 +0100 fs  r268989 : #i10000# (approved by pl): use --without-t1-library configure option 2009-03-06 10:55:43 +0100 fs  r268986 : #i99953# depends on xmlscript module now 2009-03-06 10:54:04 +0100 fs  r268985 : #i99953# also adjust the event names found in dialogs embedded in the forms 2009-03-06 09:53:41 +0100 fs  r268977 : #i10000# 2009-03-06 09:30:41 +0100 lla  r268973 : #i10000# merge problems 2009-03-05 17:52:34 +0100 fs  r268932 : #i98593# for sub components which are actually controlled by a DocumentDefinition (aka XComponentSupplier aka XCommandProcessor), close them by executing the 'close' command, not by suspending/closing the controller (which cannot be intercepted) 2009-03-05 11:41:56 +0100 fs  r268889 : default the drop down line count for list/combo boxes to 20 2009-03-05 11:39:10 +0100 fs  r268887 : do not display empty error messages 2009-03-02 10:13:57 +0100 lla  r268639 : #i91541# CWS rebase m41 to m42 2009-03-02 09:06:27 +0100 lla  r268635 : #i10000# add ';' to strings 2009-02-26 11:18:00 +0100 fs  r268492 : reportdesign depends on REPORTBUILDER, not REPORTDESIGN 2009-02-26 10:11:38 +0100 lla  r268489 : CWS-TOOLING: rebase CWS dba32b to trunk@268395 (milestone: DEV300:m42) 2009-02-26 09:04:11 +0100 lla  r268488 : CWS-TOOLING: rebase CWS dba32b to trunk@268395 (milestone: DEV300:m42) 2009-02-24 12:09:13 +0100 lla  r268392 : #i91541# #i91542# cleanups 2009-02-24 08:08:06 +0100 lla  r268382 : merge all dba32a changes into dba32b 2009-02-24 07:14:55 +0100 lla  r268381 : merge all dba32a changes into dba32b 2009-02-23 21:44:28 +0100 fs  r268377 : oops ... don't tamper with m_aListSourceValues at the end of loadData 2009-02-23 20:57:05 +0100 fs  r268376 : #i98162# don't hold the values as strings, but as ORowSetValue, this way preserving their type, and being agnostic to different result/rowset implementations doing different to-string-conversations 2009-02-23 20:55:44 +0100 fs  r268375 : getObject: throwFunctionNotSupportedException, instead of silently returning NULL 2009-02-23 20:55:20 +0100 fs  r268374 : #i98162# some more supported types 2009-02-23 20:54:43 +0100 fs  r268373 : #i98162# +operator != 2009-02-20 09:35:39 +0100 fs  r268306 : #i99422# for a font, display the font name, the style, and the size 2009-02-20 09:33:45 +0100 fs  r268305 : #i99422# in the property browser, FONT supersedes CHARFONTNAME: the aggregated FormComponentHandler displays them more nicely now 2009-02-19 16:12:06 +0100 fs  r268293 : #i99372# recognize DataType::FLOAT as numeric 2009-02-19 15:43:12 +0100 fs  r268291 : #i99415# 2009-02-19 15:40:15 +0100 fs  r268290 : #i99242# lcl_firstFocussableControl: take disabled controls into account 2009-02-19 15:34:36 +0100 fs  r268289 : #i99396# properly decode the base name of the URL when using it as title 2009-02-19 15:19:05 +0100 fs  r268287 : #i98247#


2009-06-05  Thomas Benisch  <tbe@openoffice.org>  [e00caafe3e2736e2894081776f06eaafbbdc50de]

#i12587# Inserting/editing arbitrary text objects in chart


2009-06-04  Kurt Zenker  <kz@openoffice.org>  [a9ca9d17e1274de594c71b92063e30f495affbb8]

CWS-TOOLING: integrate CWS calclinkfixes 2009-04-27 11:47:56 +0200 nn  r271258 : #i101273# Uno broadcasts in DoRecalc/DoHardRecalc 2009-04-24 17:20:19 +0200 nn  r271226 : #i101304# don't load source file of external ref for empty cells in the cached data 2009-04-24 14:15:43 +0200 nn  r271212 : #i101319# handle merged cells and row groups when loading cached data for external refs


2009-06-04  Kurt Zenker  <kz@openoffice.org>  [1d070072c13a881854fa35ff7145eedbc621886c]

CWS-TOOLING: integrate CWS clnoundo 2009-05-18 09:40:22 +0200 wg  r271998 : i102011 2009-04-28 12:20:24 +0200 cl  r271318 : CWS-TOOLING: rebase CWS clnoundo to trunk@270723 (milestone: DEV300:m46) 2009-04-02 11:37:14 +0200 cl  r270388 : #i100371# check valid positions all the time to avoid crashes during model lock 2009-03-30 13:02:27 +0200 cl  r270219 : #i100371# do not create undo actions in drawing layer during load 2009-03-30 12:59:41 +0200 cl  r270218 : #i100371# do not create undo actions in drawing layer during load 2009-03-30 12:55:06 +0200 cl  r270217 : #i100371# do not create undo actions in drawing layer during load 2009-03-30 12:53:27 +0200 cl  r270216 : #i100371# do not create undo actions in drawing layer during load 2009-03-30 12:49:28 +0200 cl  r270215 : #i100371# added EnableUndo() and IsUndoEnabled()


2009-06-04  Thomas Benisch  <tbe@openoffice.org>  [83b1fb11203a82d6cb93ee2f3a2721a6eefb8340]

#i12587# Inserting/editing arbitrary text objects in chart


2009-06-04  Kurt Zenker  <kz@openoffice.org>  [73741db55cb6a95000350e17302aa9041d57f396]

CWS-TOOLING: integrate CWS chart37 2009-05-22 09:10:36 +0200 iha  r272170 : #i102130# color of pies is not loaded correctly 2009-04-27 17:16:20 +0200 iha  r271294 : #i24203# compiler problem 2009-04-27 16:43:21 +0200 iha  r271292 : #i101281# missing API documentation for secondary axis title properties 2009-04-27 15:26:05 +0200 hde  r271276 : #i100987 2009-04-27 15:24:42 +0200 hde  r271273 : #i100987 2009-04-24 15:08:33 +0200 iha  r271214 : #i100995# crash with some logarithmic scalings 2009-04-22 18:50:56 +0200 dr  r271134 : #i82177# write out deleted point labels 2009-04-22 18:40:48 +0200 iha  r271133 : #i101281# missing API documentation for secondary axis title properties 2009-04-22 16:39:42 +0200 dr  r271128 : #i82177# extensions for bubble charts 2009-04-22 14:37:00 +0200 dr  r271114 : #i82177# import/export data label type and separator 2009-04-22 14:36:24 +0200 dr  r271113 : #i82177# import/export data label type and separator 2009-04-21 15:25:26 +0200 dr  r271038 : #i82177# import data label type and separator from BIFF8 CHFR records 2009-04-21 14:37:16 +0200 dr  r271037 : #i82177# dump BIFF8 chart future records 2009-04-20 17:44:27 +0200 iha  r271002 : #i96898# reduce library exports 2009-04-20 13:01:13 +0200 iha  r270975 : #i24203# rotate data labels - help ids 2009-04-20 11:40:33 +0200 dr  r270969 : #i96600# export of axis scaling/positioning properties 2009-04-16 16:02:31 +0200 dr  r270892 : #i69599# keep Y axis left in 3d charts 2009-04-15 18:16:46 +0200 dr  r270859 : #i69599# import of axis position settings 2009-04-15 18:16:01 +0200 dr  r270858 : #i69599# correct handling of logarithmic crossing axes 2009-04-14 16:27:48 +0200 dr  r270794 : #i96599# handle auto axis position on logarithmic axes 2009-04-09 19:59:51 +0200 dr  r270722 : #i96599# import axis crossing settings, fix import of logarithmic scaling settings 2009-04-09 18:26:00 +0200 iha  r270720 : #i96898# reduce library exports 2009-04-09 15:17:04 +0200 iha  r270710 : #i96898# reduce library exports 2009-04-09 10:50:14 +0200 dr  r270682 : #i24203# import/export of data label rotation, fixed some other broken stuff too 2009-04-08 16:54:54 +0200 dr  r270657 : #i24203# import rotation for data point labels 2009-04-06 18:19:17 +0200 iha  r270571 : #i100876# Axis scaling settings dialog wrong after API usage (anys different from double type) 2009-04-06 15:57:05 +0200 iha  r270567 : #i100105# #i58585# leftover  -> 2009-04-06 15:55:48 +0200 iha  r270564 : #i58585# leftover  -> 2009-04-02 16:41:07 +0200 iha  r270422 : #i99721# remove unused code 2009-04-02 14:29:03 +0200 iha  r270407 : #i99721# remove unused code 2009-03-26 10:58:23 +0100 iha  r270059 : #i96898# reduce library exports 2009-03-26 10:13:49 +0100 iha  r270055 : #i96898# reduce library exports 2009-03-25 09:39:13 +0100 iha  r269998 : CWS-TOOLING: rebase CWS chart37 to trunk@269781 (milestone: DEV300:m44) 2009-03-24 17:56:56 +0100 iha  r269986 : #i96898# reduce library exports 2009-03-24 16:56:44 +0100 iha  r269974 : #i99721# remove unused code 2009-03-24 16:48:48 +0100 iha  r269970 : #i89731# remove unused string 2009-03-24 15:44:04 +0100 iha  r269961 : remove unused code 2009-03-24 15:22:45 +0100 iha  r269959 : remove unused code 2009-03-24 15:17:17 +0100 iha  r269957 : remove unused code 2009-03-24 11:14:53 +0100 iha  r269923 : #i24203# rotate data labels 2009-03-09 12:10:25 +0100 hde  r269076 : #i99300# 2009-03-06 15:56:26 +0100 iha  r269011 : #i93953# Source Format for secondary axis without data 2009-02-17 15:59:05 +0100 iha  r268177 : avoid warning during build 2009-02-17 15:01:59 +0100 iha  r268173 : avoid warning during build 2009-02-13 09:39:03 +0100 ufi  r267693 : i96999 2009-02-11 15:12:35 +0100 iha  r267604 : removed unused string 2009-02-11 14:00:29 +0100 iha  r267600 : #i96999# Corrected wording from 'correlation coefficient' to 'coefficient of determination' 2009-02-11 10:56:45 +0100 iha  r267584 : #i89731# typo in resource string 2009-02-11 10:01:29 +0100 iha  r267582 : #i89031# compile error on asian windows systems 2009-02-10 16:15:16 +0100 iha  r267552 : #i24203# rotate data labels 2009-02-04 18:00:33 +0100 iha  r267395 : #i98893# don't export defaults to file 2009-02-04 15:48:15 +0100 iha  r267390 : #i92128# asian typography for chart elements 2009-02-04 15:17:41 +0100 iha  r267386 : #i92128# asian typography for chart elements 2009-01-30 14:41:10 +0100 iha  r267197 : CWS-TOOLING: rebase CWS chart37 to trunk@267171 (milestone: DEV300:m41)


2009-06-03  Kurt Zenker  <kz@openoffice.org>  [2c372e620c234a029316c2b58ee4527d618df56d]

CWS-TOOLING: integrate CWS os128 2009-04-22 12:58:26 +0200 b_michaelsen  r271093 : #i101084# using the frames enumeration for other SwXFrames-queries; also added a complex test to ensure the behavior to be the same 2009-04-20 14:53:03 +0200 mav  r270987 : #i101219# adjust the testcases to test memory cache and temporary file cache 2009-04-20 14:52:09 +0200 mav  r270986 : #i101219#,#i99077# use memory to cache data; no precopying on commit 2009-04-20 14:39:21 +0200 mav  r270984 : #i101219# use memory to cache data 2009-04-20 14:39:08 +0200 mav  r270983 : #i101219# use memory to cache data 2009-04-20 14:38:45 +0200 mav  r270982 : #i101219# use memory to cache data 2009-04-17 07:37:52 +0200 os  r270912 : CWS-TOOLING: rebase CWS os128 to trunk@270723 (milestone: DEV300:m46) 2009-04-15 14:54:18 +0200 b_michaelsen  r270845 : #i101084# using frame enumerations for paragraph export for better performance 2009-04-15 14:52:54 +0200 b_michaelsen  r270843 : #i101084# implemented XEnumerationAccess interface on framesets 2009-04-03 17:08:10 +0200 mav  r270504 : #i100722# do not compress streams of known compressed types per default 2009-04-03 13:49:50 +0200 os  r270484 : resync error fixed 2009-04-03 12:55:32 +0200 mav  r270470 : #i100722# do not compress streams of known compressed types per default 2009-04-03 10:00:58 +0200 os  r270463 : resync error fixed 2009-04-03 09:52:53 +0200 os  r270462 : resync error fixed 2009-04-03 09:10:14 +0200 os  r270449 : #i99568# string compare operator of hash_map changed 2009-04-03 09:03:49 +0200 os  r270446 : #i100683# normalize file URLs 2009-04-02 11:09:27 +0200 os  r270381 : #i100683# making URLs relative without file access 2009-04-02 09:04:42 +0200 os  r270366 : CWS-TOOLING: rebase CWS os128 to trunk@270033 (milestone: DEV300:m45) 2009-03-31 08:08:37 +0200 os  r270258 : #i100683# reducing calls to URIHelper::simpleNormalizeMakeRelative() 2009-03-19 17:06:22 +0100 os  r269756 : #i99568# XTolerantMultiPropertySet activated 2009-03-16 11:46:14 +0100 os  r269517 : wrong commit to #i97471# removed 2009-03-16 11:36:50 +0100 os  r269514 : #i97471# SwDrawTextShell::Init(): mouse double click and key input in group objects at the same time: prevent crash 2009-03-13 11:08:54 +0100 os  r269464 : #i99568# static SfxItemPropertySet 2009-03-13 11:03:22 +0100 os  r269463 : #i99568# static SfxItemPropertySet 2009-03-11 12:59:27 +0100 os  r269320 : #i99568# WhichId of properties handled from ScDocOptionsObj added 2009-03-06 09:09:58 +0100 os  r268972 : #i99568# SfxItemPropertySet improvements 2009-03-05 20:54:43 +0100 os  r268942 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 20:19:52 +0100 os  r268941 : #i99568# SfxItemPropertySet improvements 2009-03-05 20:05:03 +0100 os  r268940 : #i99568# SfxItemPropertySet improvements 2009-03-05 18:54:47 +0100 os  r268936 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 17:51:38 +0100 os  r268931 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 17:33:03 +0100 os  r268930 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 15:53:00 +0100 os  r268920 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 15:52:50 +0100 os  r268919 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 15:50:41 +0100 os  r268918 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 15:41:04 +0100 os  r268916 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 15:40:40 +0100 os  r268915 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 10:16:20 +0100 os  r268881 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-05 10:15:55 +0100 os  r268880 : #i99568# Sfx/SvxItemPropertySet improvements 2009-03-03 08:40:09 +0100 os  r268704 : ScTableSheetObj::GetItemPropertyMap fixed 2009-03-03 07:50:00 +0100 os  r268703 : SfxItemProperty set as pointer 2009-03-03 07:49:46 +0100 os  r268702 : SfxItemProperty set as pointer 2009-03-02 08:15:37 +0100 os  r268631 : minor fix 2009-03-02 07:58:38 +0100 os  r268630 : minor fix 2009-02-27 13:03:25 +0100 os  r268584 : exports 2009-02-27 11:17:04 +0100 os  r268567 : debug code removed 2009-02-27 11:04:07 +0100 os  r268565 : duplicate return removed 2009-02-27 10:17:37 +0100 os  r268558 : syntax fixed 2009-02-27 09:56:14 +0100 os  r268554 : #i99568# type mix fixed 2009-02-27 09:40:56 +0100 os  r268553 : #i99568# exports changes reverted 2009-02-25 12:50:54 +0100 os  r268433 : #i99568# SfxItemPropertySet rework 2009-02-25 12:13:39 +0100 os  r268432 : #i99568# SfxItemPropertySet rework 2009-02-25 12:12:47 +0100 os  r268431 : #i99568# SfxItemPropertySet rework 2009-02-25 12:10:27 +0100 os  r268430 : #i99568# SfxItemPropertySet rework 2009-02-25 12:09:36 +0100 os  r268429 : #i99568# SfxItemPropertySet rework 2009-02-25 12:07:39 +0100 os  r268428 : #i99568# SfxItemPropertySet rework 2009-02-25 11:59:35 +0100 os  r268427 : #i99568# SfxItemPropertySet rework 2009-02-25 11:52:52 +0100 os  r268425 : #i99568# SfxItemPropertySet rework 2009-02-25 11:49:17 +0100 os  r268424 : #i99568# SfxItemPropertySet rework 2009-02-25 11:45:17 +0100 os  r268423 : #i99568# SfxItemPropertySet rework 2009-02-11 11:39:04 +0100 os  r267587 : #i57008# use registration of index marks at SwUnoCallback


2009-06-02  Kurt Zenker  <kz@openoffice.org>  [7c7377dc78e2b722c069d46d01f192aed5606723]

CWS-TOOLING: integrate CWS calcperf04 2009-04-23 12:47:25 +0200 er  r271155 : CWS-TOOLING: rebase CWS calcperf04 to trunk@270723 (milestone: DEV300:m46) 2009-04-22 13:49:45 +0200 er  r271104 : #i101254# performance area broadcasters: replace ::std::set with ::std::hash_set; have broadcaster slots per sheet instead of document wide lumps 2009-04-16 15:04:58 +0200 nn  r270886 : #i101126# ScFormatRangeStyles::GetStyleNameIndex: pass row before which to remove 2009-04-16 11:26:33 +0200 nn  r270874 : #i101126# ScUniqueCellFormatsObj: collect ranges without ScRangeList::Join 2009-04-15 15:07:34 +0200 er  r270846 : merged #i95967# changesets 263482,263483 for performance testcases 2009-03-06 12:48:52 +0100 nn  r268996 : #i99960# don't get null date from the model repeatedly 2009-03-06 12:47:21 +0100 nn  r268995 : #i99959# don't use GetInputString in ScXMLExport::WriteCell 2009-03-03 17:30:25 +0100 er  r268772 : #i99828# NextNewToken: some string handling optimization, i.e. less toUpper calls


2009-05-29  Thomas Benisch  <tbe@openoffice.org>  [975100569b63c28fe9522a2b8069c091fb3711de]

#i12587# Inserting/editing arbitrary text objects in chart


2009-05-29  Thomas Benisch  <tbe@openoffice.org>  [eea96bdd62d3bf3bf16953c397679d8101477f3b]

#i12587# Inserting/editing arbitrary text objects in chart


2009-05-29  Thomas Benisch  <tbe@openoffice.org>  [dfd9dfc905e91700b7348cc7f14f09980a2636d6]

#i12587# Inserting/editing arbitrary text objects in chart


2009-05-28  Philipp Lohmann  <pl@openoffice.org>  [435cabc6ac4398c040533c27121bc5fff9c0f1bc]

#i96402# SetDuplexMode


2009-05-27  Philipp Lohmann  <pl@openoffice.org>  [9990bdfcefca4eac4f1ba32cfe001132a4698970]

print range changes


2009-05-27  Philipp Lohmann  <pl@openoffice.org>  [35f75ba8ebfcecde0745ea61079648a42e482c86]

print range changes, dependency UI


2009-05-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [20ec7a9c4c9f1a71d391ec689c54746310357c2b]

#i10000#: XclImpChChart::ReadChProperties( XclImpStream& rStrm ) double declared and defined


2009-05-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [9e3bdc288cf89d30c5168ed97faf95f1b4b53cbd]

#i10000#: EXC_CHPROPS_SHOWVISCELLS -> EXC_CHPROPS_SHOWVISIBLEONLY


2009-05-22  Philipp Lohmann  <pl@openoffice.org>  [c8d95b4d10748c13d600aed95cd402d1df3fd5c9]

#i101309# need the page range controls app specific


2009-05-20  Niklas Nebel  <nn@openoffice.org>  [dec951529e5519c2579f01156e133c7c65f3ecce]

#i101309# handle page selection string


2009-05-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [1cac4ffd2f0bf1ec7a9472b2e19cc9eb9bf24b7b]

#i10000#: fix CRLF. Sigh


2009-05-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [56dd3bf5bf4af58db303f06d2d6d078a00042ada]

CWS-TOOLING: integrate CWS impress169 2009-05-13 17:37:21 +0200 sj  r271865 : #i100942# applied patch, removed oversafe buffer check (now without warnings on 64 bit platform) 2009-05-13 12:27:18 +0200 sj  r271855 : #i101769# fixed line/fill attributes for graphic objects 2009-05-12 10:25:17 +0200 cl  r271799 : report correct minimum cell hight for empty cells 2009-04-28 17:29:46 +0200 cl  r271334 : fixed merge error 2009-04-28 16:18:01 +0200 cl  r271330 : fixed build error 2009-04-28 12:38:09 +0200 cl  r271320 : #i100129# images for new layouts 2009-04-27 19:12:06 +0200 cl  r271302 : CWS-TOOLING: rebase CWS impress169 to trunk@270723 (milestone: DEV300:m46) 2009-04-20 19:13:28 +0200 sj  r271012 : #i100942# applied patch, removed oversafe buffer check 2009-04-09 18:00:01 +0200 sj  r270719 : #158488# added rectangular gradient support 2009-04-09 17:49:52 +0200 sj  r270718 : #158488# added rectangular gradient support 2009-04-09 17:46:24 +0200 sj  r270717 : #158488# added rectangular gradient support 2009-03-26 18:16:34 +0100 cl  r270098 : #i99867# applied patch from jlcheng to correctly register table design pane 2009-03-26 18:12:11 +0100 cl  r270097 : #i100220# leave some items default so they are not overridden if a new table style is set 2009-03-26 18:11:10 +0100 cl  r270096 : #i100220# clear only those items that are also in the style when assigning a new table layout 2009-03-26 15:56:24 +0100 cl  r270085 : #i99977# listen to outliner and dispose if outliner dies 2009-03-26 15:47:29 +0100 cl  r270084 : #i99977# made the Outliner a SfxBroadcaster so others can listen for its death 2009-03-24 19:10:05 +0100 sj  r269991 : #i100490# fixed text resize problem 2009-03-23 14:31:11 +0100 sj  r269872 : #i96083# added patch, (dubious && and ||) 2009-03-19 17:55:11 +0100 sj  r269764 : #i100275# applied patch, row height is now correct even for rows containing no text 2009-03-18 18:10:52 +0100 sj  r269701 : #i93616# solved performance problem when loading document 2009-03-18 16:20:40 +0100 sj  r269688 : removing unused code 2009-03-18 16:19:22 +0100 sj  r269687 : removing unused code 2009-03-18 16:17:54 +0100 sj  r269686 : removing unused code 2009-03-18 10:28:07 +0100 cl  r269643 : #i100029# let cells be disposed as soon as the table model is disposed 2009-03-17 15:56:50 +0100 cl  r269614 : #i99984# new impress photo layouts 3x2 and 2x2 2009-03-17 15:36:35 +0100 cl  r269611 : #i99984# adding new impress photo layouts 3x2 and 2x2 2009-03-16 18:43:48 +0100 cl  r269564 : #i55224# correct internal links if pages are changed 2009-03-16 16:40:38 +0100 cl  r269559 : #i55224# correct internal hyperlinks if slides are changed/renamed 2009-03-16 15:34:12 +0100 cl  r269553 : #i99427# invalidate slots after promote/demote 2009-03-13 18:18:20 +0100 sj  r269492 : #i92421# fixed loop if loading encrypted ppt file 2009-03-13 14:51:58 +0100 sj  r269481 : #i93002# fixed crash if saving presentation without master title placeholder 2009-03-13 12:26:21 +0100 sj  r269468 : #i100147# do not exceed the max point count if creating simple polygon via ::GetSimple 2009-03-12 17:00:45 +0100 sj  r269427 : #i82518# justifying rectangles for arc/pie and chord actions, fixed round rectangle problem


2009-05-18  Jens-Heiner Rechtien  <hr@openoffice.org>  [73c534f79edb26667cf7ce355716aad15f33a58e]

CWS-TOOLING: integrate CWS koheichart01 2009-05-15 06:32:38 +0200 hde  r271925 : header fixed 2009-04-14 16:23:35 +0200 hde  r270792 : #100231# 2009-04-14 16:13:48 +0200 hde  r270790 : #100231# 2009-04-14 15:56:14 +0200 hde  r270787 : #100231# 2009-04-14 14:28:40 +0200 hde  r270767 : #100231# 2009-04-14 14:27:30 +0200 hde  r270766 : #100231# 2009-04-14 09:43:07 +0200 hde  r270749 : #100231# 2009-04-14 09:25:52 +0200 hde  r270748 : #100231# 2009-03-25 16:18:26 +0100 iha  r270034 : #i91578# removed compiler warning 2009-03-25 03:20:36 +0100 kohei  r269992 : fixed a silly typo in in-line comment. 2009-03-24 17:03:57 +0100 kohei  r269977 : Let's use row and column's hidden flags, instead of width/height, to determine cell's hidden state. 2009-03-24 16:53:10 +0100 kohei  r269973 : The chart positioner no longer needs to skip hidden cells, as hidden cells are handled elsewhere. 2009-03-24 16:50:12 +0100 kohei  r269971 : the index should be 0-based (although chart2 doesn't appear to make use of this data any more). 2009-03-24 16:47:56 +0100 kohei  r269969 : Skip hidden cells during cache (re-)build, when the include hidden cells flag is false.  Also avoid adding data cache when the cell is hidden. 2009-03-24 06:05:53 +0100 kohei  r269909 : fixed the build breakage after the resync. 2009-03-24 06:05:34 +0100 kohei  r269908 : fixed the build breakage after the resync. 2009-03-23 23:38:36 +0100 kohei  r269900 : CWS-TOOLING: rebase CWS koheichart01 to trunk@269781 (milestone: DEV300:m44) 2009-03-17 13:11:40 +0100 iha  r269597 : #i91578# import IncludeHiddenCells from xlsx 2009-03-17 12:56:09 +0100 iha  r269594 : #i91578# import IncludeHiddenCells from xls correctly 2009-03-17 12:49:13 +0100 iha  r269592 : #i91578# import IncludeHiddenCells from xls correctly 2009-03-16 17:03:55 +0100 iha  r269561 : #i91578# remove unused variable 2009-03-16 10:22:30 +0100 iha  r269509 : #i91578# changed wording 2009-03-04 17:07:16 +0100 iha  r268846 : #i91578# display of hidden cells - remove unused property 'IsHidden' 2009-03-04 17:04:22 +0100 iha  r268845 : #i91578# display of hidden cells - remove unused property 'IsHidden' 2009-03-04 17:03:43 +0100 iha  r268844 : #i91578# display of hidden cells - remove unused property 'IsHidden' 2009-03-04 16:24:30 +0100 iha  r268843 : #i91578# display of hidden cells - added missing property description 2009-03-04 15:13:04 +0100 iha  r268835 : #i91578# display of hidden cells - remove unused code 2009-03-04 14:38:44 +0100 iha  r268832 : #i91578# display of hidden cells - reset state corretly when doing undo/redo 2009-03-04 13:42:10 +0100 iha  r268822 : #i81209# #i91578# display of hidden cells - don't show hidden cells per default but keep the hidden ranges 2009-03-04 13:40:10 +0100 iha  r268821 : #i81209# #i91578# display of hidden cells - don't show hidden cells per default but keep the hidden ranges 2009-03-04 13:37:05 +0100 iha  r268820 : #i81209# #i91578# display of hidden cells - don't show hidden cells per default but keep the hidden ranges 2009-03-03 11:18:39 +0100 iha  r268713 : #i91578# display of hidden cells - hide control if the functionality is not offered by the data provider 2009-03-02 17:41:37 +0100 kohei  r268684 : removed unintended change from DEV300_m38, which was probably introduced due to some sort of problem during rebase. 2009-02-27 18:51:34 +0100 iha  r268613 : #i91578# display of hidden cells - interface redesign: data provider+sequences are now controlled by the chart via a new parameter 'IncludeHiddenCells' thus unwanted values can be removed early in the communication 2009-02-27 18:45:48 +0100 iha  r268612 : #i91578# display of hidden cells - interface redesign: data provider+sequences are now controlled by the chart via a new parameter 'IncludeHiddenCells' thus unwanted values can be removed early in the communication 2009-02-27 18:44:17 +0100 iha  r268611 : #i91578# display of hidden cells - interface redesign: data provider+sequences are now controlled by the chart via a new parameter 'IncludeHiddenCells' thus unwanted values can be removed early in the communication 2009-02-27 18:35:09 +0100 iha  r268610 : #i91578# display of hidden cells - copy-paste-scenario: export hidden flag per column on copy for migration to locale table during import upon paste 2009-02-19 06:47:56 +0100 kohei  r268257 : also, set the default value of a cached cell to NaN just in case. 2009-02-19 06:42:08 +0100 kohei  r268256 : Set the IsValue flag to false by default so that an empty cell is properly flaged as non-value. This fixes the broken missing value treatment. 2009-02-18 20:16:30 +0100 iha  r268255 : #i91578# display of hidden cells - radio button 'leave gap' was not clickable anymore 2009-02-17 17:57:24 +0100 iha  r268185 : #i91578# display of hidden cells - corrected range highlighting 2009-02-17 15:39:52 +0100 iha  r268174 : #i91578# display of hidden cells - still display data point value in tip help of data points in writer 2009-02-17 11:21:00 +0100 iha  r267861 : #i91578# display of hidden cells - do not show a space nor a legend entry for hidden series 2009-02-17 11:15:14 +0100 iha  r267853 : #i91578# display of hidden cells - do not show a space nor a legend entry for hidden series 2009-02-16 16:48:10 +0100 iha  r267826 : #i91578# display of hidden cells - group related ids and minimize changes 2009-02-16 14:32:11 +0100 iha  r267813 : #i91578# display of hidden cells - don't share resource identifier as this easily produces conflicts -> move IDs for series options page into a separate file 2009-02-16 13:21:44 +0100 iha  r267795 : #i91578# display of hidden cells - remove unused member 2009-02-16 13:13:40 +0100 iha  r267794 : #i91578# display of hidden cells - remove unused methods 2009-02-16 13:00:10 +0100 iha  r267792 : #i91578# display of hidden - avoid unnecessary data copy 2009-02-16 11:40:41 +0100 iha  r267785 : #i91578# display of hidden - corrected typo 2009-02-16 11:28:39 +0100 iha  r267783 : #i91578# display of hidden - set correct dirty state in method setIncludeHiddenCells 2009-02-13 17:04:50 +0100 iha  r267734 : #i91578# corrected position and visibility of the controls for display of hidden cells in case of stock charts 2009-02-13 15:30:17 +0100 iha  r267724 : #i91578# charts without category range and charts with data from writer table were broken causes by features changes for display of hidden cells 2009-01-14 19:47:28 +0100 kohei  r266330 : #i91578# Fixed the issue with incorrect tooltip category values. 2009-01-05 22:27:03 +0100 kohei  r265887 : fixed a regression where the x-axis failed to display values when they were numeric or dates. 2008-12-24 17:01:15 +0100 kohei  r265800 : CWS-TOOLING: rebase CWS koheichart01 to trunk@265758 (milestone: DEV300:m38) 2008-12-24 16:03:08 +0100 kohei  r265799 : a little more code cleanup, mostly on tab to whitespace conversion on modified lines and removal of unnecessary 'using' statements. 2008-12-24 15:52:00 +0100 kohei  r265798 : removed unnecessary header inclusion & remove hidden data *only when* the 'include hidden cells' options it false!  I'm glad I caught this. 2008-12-24 07:41:23 +0100 kohei  r265796 : replaced duplicated local functions with a single template function. 2008-12-24 06:37:15 +0100 kohei  r265795 : reverted my last commit, because it was not the right approach. Instead of using the original data point index in the object name, leave that index alone, and remove hidden data in the tooltip text value lookup code. 2008-12-23 23:10:42 +0100 kohei  r265793 : fixed the tooltips so that they would display correct values, taking into account the hidden data points (if any). 2008-12-20 05:26:07 +0100 kohei  r265739 : CWS-TOOLING: rebase CWS koheichart01 to trunk@264807 (milestone: DEV300:m37) 2008-12-18 15:49:59 +0100 kohei  r265696 : removed markRangeDirty() for now, since that method is still a bit controvertial per Niklas's comment in i#91578. 2008-12-05 20:27:24 +0100 kohei  r264918 : removed a compiler warning. 2008-12-05 20:24:02 +0100 kohei  r264917 : removed a compilar warning. 2008-12-03 17:06:22 +0100 kohei  r264800 : recovered the original keyword file before it was stripped. 2008-12-01 22:00:24 +0100 kohei  r264640 : by default, "include hidden cells" attribute is true. 2008-12-01 19:03:07 +0100 kohei  r264628 : added accelerator for the plot hidden values check box. 2008-12-01 18:32:02 +0100 kohei  r264626 : changed wording per Ingrid's suggestion. 2008-11-26 08:09:36 +0100 kohei  r264341 : the 'Starnding angle' fixed line was 6 pixel short. 2008-11-26 08:02:47 +0100 kohei  r264340 : added include-hidden-cells check box for the pie chart type too & some code cleanup. 2008-11-26 07:41:45 +0100 kohei  r264339 : relocate the controls correctly for line chart types. 2008-11-26 07:14:26 +0100 kohei  r264337 : #i95714# fixed typos that caused incorrect scaling of the y-axis under some conditions. 2008-11-26 07:11:54 +0100 kohei  r264336 : added "Include hidden cells" check box in the data series options tab page. 2008-11-25 21:04:58 +0100 kohei  r264333 : don't check for the number of charts; when importing from xls, the count may be zero even when the document has charts. 2008-11-25 19:55:50 +0100 kohei  r264332 : patch from ooo-build applied.  This implements chart listener that listens on cells show/hide state for the chart's data areas. 2008-11-25 19:52:38 +0100 kohei  r264331 : patch from ooo-build applied. 2008-11-25 19:29:54 +0100 kohei  r264329 : new xml token for include-hidden-cells attribute.


2009-05-18  Jens-Heiner Rechtien  <hr@openoffice.org>  [1e669a0e87ac5e4c56d41412700bcff3398f1a59]

CWS-TOOLING: integrate CWS calcmultiline 2009-05-13 18:05:10 +0200 nn  r271868 : CWS-TOOLING: rebase CWS calcmultiline to trunk@271830 (milestone: DEV300:m48) 2009-03-15 00:59:24 +0100 erack  r269502 : #i100205# SYLK import/export: treat embedded double quotes and semicolons correctly; changes ID;PSCALC3 to ID;PCALCOOO32 due to incompatibility 2009-03-10 17:54:33 +0100 er  r269286 : #i35913# multiline (newlines) as formula results; contributed by William S Fulton <wsfulton>


2009-05-15  Jens-Heiner Rechtien  <hr@openoffice.org>  [3ce7d8ae026a8a9a6a2af2f6e7b3bf955bedf90b]

CWS-TOOLING: integrate CWS calc49 2009-04-27 15:35:08 +0200 oc  r271282 : #i101371 Adapt autotests because of changed standard filter dialog 2009-04-27 15:33:38 +0200 oc  r271281 : #i101371 Adapt autotests because of changed standard filter dialog 2009-04-27 14:07:49 +0200 oc  r271268 : #i101371 Autotest for NewStyle button in conditional formatting dialog 2009-04-27 14:05:43 +0200 oc  r271267 : #i101371 Autotest for NewStyle button in conditional formatting dialog 2009-04-27 14:03:00 +0200 oc  r271266 : #i101371 Autotest for NewStyle button in conditional formatting dialog 2009-04-02 14:04:47 +0200 nn  r270403 : CWS-TOOLING: rebase CWS calc49 to trunk@270033 (milestone: DEV300:m45) 2009-03-25 14:18:26 +0100 nn  r270025 : #i83643# adjust conditional formats when cell style is renamed (patch from gaojingmei) 2009-03-23 15:05:13 +0100 nn  r269875 : gcc warnings 2009-03-23 14:20:06 +0100 nn  r269871 : #i17995# order of OK/Cancel/Help/More is different between standard and advanced filter dialog 2009-03-20 19:15:21 +0100 nn  r269825 : gcc warnings 2009-03-20 18:10:25 +0100 nn  r269823 : #i70320# ScTabView::SetTabNo: don't deselect if called with bNew = TRUE 2009-03-18 17:28:04 +0100 nn  r269695 : #i97974# CopyToTable: update draw page size (patch from gaozm) 2009-03-18 14:30:50 +0100 nn  r269665 : #i45291# handle date/time input from validity dialog (patch from gaojingmei) 2009-03-18 11:43:17 +0100 nn  r269648 : #i27253# add 'New Style' buttons to conditional formatting dialog 2009-03-17 19:04:02 +0100 nn  r269624 : #i13829# include formats when sorting with toolbar buttons 2009-03-17 16:41:26 +0100 nn  r269617 : #i17995# allow more criteria in standard filter dialog 2009-03-12 10:23:21 +0100 nn  r269365 : #i7500# allow paste on merged cells (patch from mloiseleur/maoyg) 2009-03-12 09:57:17 +0100 nn  r269360 : #i8302# insert/delete in merged cells (patch from maoyg) 2009-03-11 19:07:44 +0100 nn  r269349 : #i27666# select current cell content in validity drop-down (patch from gaojingmei) 2009-03-11 19:03:40 +0100 nn  r269348 : #i7921# right variable 2009-03-04 17:45:03 +0100 nn  r268853 : #i7921# 'Deselect All Sheets' slot 2009-03-04 17:43:58 +0100 nn  r268852 : #i70320# #i7921# 'Deselect All Sheets' in context menu and TabBar empty area 2009-03-03 17:50:40 +0100 nn  r268774 : #i70320# deselect sheets when switching sheets and all sheets are selected 2009-03-03 14:50:44 +0100 nn  r268728 : #i99714# unused methods (patch from cmc) 2009-02-23 19:47:06 +0100 nn  r268369 : #i5550# lcl_DecompValueString: prefer end above beginning if not followed by space 2009-02-20 19:42:05 +0100 nn  r268337 : #i93091# ScDBFunc::GetDBData: allow filtered rows in selection


2009-05-15  Jens-Heiner Rechtien  <hr@openoffice.org>  [79ad1c597058615625961cd1e47ef5614aaf1a8c]

CWS-TOOLING: integrate CWS datapilotrange 2009-05-14 15:00:09 +0200 oc  r271892 : #i101920 2009-05-14 14:57:48 +0200 oc  r271890 : #i101920 2009-04-15 01:41:12 +0200 kohei  r270812 : ScDPObject::bInfoValid is no longer used at all.  Removing it. 2009-04-15 01:30:31 +0200 kohei  r270811 : removed redundant call to InvalidateSource().  SetSheetDesc() already calls it, so no need to call it twice. 2009-04-13 22:01:35 +0200 kohei  r270739 : #i86791# Fixed odd drag-n-drop issues after source range has changed.  It was because the arrays that keep track of each field's members were not flushed properly after the source range change. 2009-04-13 21:58:39 +0200 kohei  r270738 : Fixed indentation mis-match. 2009-04-13 17:54:55 +0200 kohei  r270737 : Fixed a build breakage after rebase. 2009-04-13 04:06:55 +0200 kohei  r270728 : CWS-TOOLING: rebase CWS datapilotrange to trunk@270723 (milestone: DEV300:m46) 2009-01-06 06:57:12 +0100 kohei  r265892 : migrated the change from the old cvs repo & modified to get it to build.


2009-05-12  Release Engineers  <releng@openoffice.org>  [a439a228289868c5f6dfffb310f52052766773bf]

Create DEV300_m48 milestone tag from trunk@271829


2009-05-11  Niklas Nebel  <nn@openoffice.org>  [0791c88c0cdbf759811517d0ed096a29ce39533f]

public methods not inline


2009-05-07  Thomas Benisch  <tbe@openoffice.org>  [289ff3e0c0c267b81c4bcfe406a47d42e7b962f4]

#i12587# Inserting/editing arbitrary text objects in chart


2009-12-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [77b8e8a353f7ed672a690b628e41d1f4dc3afb17]

chartshapes: merge with DEV300 m46


2009-05-06  Release Engineers  <releng@openoffice.org>  [5b43eb8f020c12b36a73aaf8326a681136d7b5b8]

CWS-TOOLING: integrate CWS mba32issues01 2009-05-05 18:23:27 +0200 mba  r271547 : apply diffs from m45->m47 for all files moved from dialog to cui 2009-05-05 18:22:02 +0200 mba  r271545 : apply diffs from m45->m47 for all files moved from dialog to cui 2009-05-05 18:16:42 +0200 mba  r271544 : apply diffs from m45->m47 for all files moved from dialog to cui 2009-04-29 19:35:58 +0200 mba  r271392 : #i73672#: unify commands for inserting special characters 2009-04-29 18:01:27 +0200 mba  r271391 : #i101337#: missing string resources 2009-04-29 18:01:10 +0200 mba  r271390 : #i101337#: missing string resources 2009-04-29 15:42:47 +0200 mba  r271380 : concurrency problem in multithreaded dmake due to missing dependency 2009-04-28 17:36:03 +0200 tbo  r271336 : #i99432# 2009-04-28 13:57:52 +0200 mba  r271322 : #i101302#: ctor might be called with pSet=0 2009-04-22 19:32:39 +0200 tbo  r271138 : #i99432# 2009-04-09 14:46:03 +0200 mba  r270709 : make sendreportw32.cxx compile with pch 2009-04-06 16:05:07 +0200 mba  r270568 : #i99432#: some tweaks for build order 2009-04-06 15:38:52 +0200 mba  r270558 : typo 2009-04-06 13:36:19 +0200 mba  r270542 : #i99432#: split of localization also 2009-04-06 13:19:06 +0200 mba  r270539 : #i99432#: split up srs files also 2009-04-03 17:57:59 +0200 mba  r270513 : #i99432#: split dialog folder into two 2009-04-03 17:56:46 +0200 mba  r270512 : #i99432#: split dialog folder into two 2009-04-01 22:15:00 +0200 mba  r270364 : warnings on Linux 2009-04-01 22:10:44 +0200 mba  r270363 : warnings on Linux 2009-04-01 21:43:54 +0200 mba  r270362 : warning fixed 2009-04-01 21:41:27 +0200 mba  r270361 : warning on Linux fixed 2009-04-01 21:35:44 +0200 mba  r270360 : warning fixed 2009-04-01 20:19:59 +0200 mba  r270358 : warning found on Linux fixed 2009-04-01 19:23:38 +0200 mba  r270354 : warning due to missing eof 2009-04-01 18:56:25 +0200 mba  r270352 : linking problem fixed that appeared only on mac 2009-04-01 18:41:30 +0200 mba  r270350 : warnings discovered on Linux fixed 2009-04-01 18:34:28 +0200 mba  r270349 : some fixes for warnings and include problems discoverd after resync and build on mac 2009-04-01 14:08:22 +0200 mba  r270328 : CWS-TOOLING: rebase CWS mba32issues01 to trunk@270033 (milestone: DEV300:m45) 2009-03-04 18:13:35 +0100 mba  r268858 : #i99432#: more dialogs moved to cui 2009-03-04 17:47:41 +0100 mba  r268854 : #i99432#: more dialogs moved to cui 2009-03-04 17:32:39 +0100 mba  r268851 : warning fixed 2009-03-04 12:59:26 +0100 mba  r268814 : #i99432#: more dialogs moved to cui 2009-03-04 11:49:03 +0100 mba  r268802 : #i99432#: CharmapDialog moved to cui 2009-03-04 10:46:00 +0100 mba  r268795 : #i99432#: CharmapDialog moved to cui 2009-03-04 10:43:50 +0100 mba  r268794 : #i99432#: CharmapDialog moved to cui 2009-03-04 10:00:29 +0100 mba  r268792 : #i99432#: CharmapDialog moved to cui 2009-03-04 10:00:03 +0100 mba  r268791 : #i99432#: CharmapDialog moved to cui 2009-03-04 09:59:43 +0100 mba  r268790 : #i99432#: CharmapDialog moved to cui 2009-03-04 09:58:51 +0100 mba  r268789 : #i99432#: CharmapDialog moved to cui 2009-03-04 09:58:16 +0100 mba  r268788 : #i99432#: CharmapDialog moved to cui 2009-03-03 16:33:14 +0100 mba  r268763 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:32:28 +0100 mba  r268762 : #i99432#: some tabpages moved to cui 2009-03-03 16:32:09 +0100 mba  r268761 : #i99432#: some tabpages moved to cui 2009-03-03 16:29:40 +0100 mba  r268760 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:29:08 +0100 mba  r268759 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:28:41 +0100 mba  r268758 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:28:18 +0100 mba  r268757 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:27:36 +0100 mba  r268756 : #i99465#: replace FN_SYMBOL by SID_CHARMAP 2009-03-03 16:27:02 +0100 mba  r268755 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:26:23 +0100 mba  r268754 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:25:30 +0100 mba  r268753 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:24:49 +0100 mba  r268752 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:24:35 +0100 mba  r268751 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:23:20 +0100 mba  r268750 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:23:04 +0100 mba  r268749 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:21:56 +0100 mba  r268748 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:18:39 +0100 mba  r268747 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:13:14 +0100 mba  r268745 : #i99465#: replace FN_SYMBOL by SID_CHARMAP 2009-03-03 16:02:54 +0100 mba  r268738 : #i99432#: moved MacroAssignment TabPage from sfx2 2009-03-03 14:57:58 +0100 mba  r268729 : #i99465#: transport return value via ItemSet 2009-03-03 00:08:10 +0100 mba  r268701 : #i99432#: move acccfg to cuilib 2009-03-03 00:07:32 +0100 mba  r268700 : #i99432#: move acccfg to cuilib 2009-03-03 00:02:01 +0100 mba  r268699 : #i99432#: move acccfg to cuilib 2009-03-03 00:01:38 +0100 mba  r268698 : #i99432#: move acccfg to cuilib 2009-03-03 00:01:11 +0100 mba  r268697 : #i99432#: move acccfg to cuilib 2009-03-03 00:00:40 +0100 mba  r268696 : #i99432#: move acccfg to cuilib 2009-03-03 00:00:06 +0100 mba  r268695 : #i99432#: replace SfxAbstractSingleTabDialog by SfxAbstractDialog 2009-03-02 23:59:22 +0100 mba  r268694 : #i99432#: move acccfg to cuilib 2009-03-02 23:57:19 +0100 mba  r268693 : #i99432#: move acccfg to svx 2009-03-02 23:56:14 +0100 mba  r268692 : #i99432#: replace SfxAbstractSingleTabDialog by SfxAbstractDialog 2009-03-02 23:49:37 +0100 mba  r268691 : #i99785#: consolidate dialogs library 2009-03-02 17:26:40 +0100 mba  r268683 : #i99785#: consolidate dialogs library 2009-03-02 17:24:28 +0100 mba  r268682 : i99465#: consolidate slot for InsertSymbol command 2009-03-02 17:22:29 +0100 mba  r268681 : #i99785#: consolidate dialogs library 2009-03-02 17:18:11 +0100 mba  r268680 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 17:08:30 +0100 mba  r268679 : #i99785#: consolidate dialogs library 2009-03-02 17:06:57 +0100 mba  r268678 : #i99785#: consolidate dialogs library 2009-03-02 17:06:30 +0100 mba  r268677 : #i99785#: consolidate dialogs library 2009-03-02 17:05:02 +0100 mba  r268676 : #i99785#: consolidate dialogs library 2009-03-02 17:04:35 +0100 mba  r268675 : #i99785#: consolidate dialogs library 2009-03-02 16:47:53 +0100 mba  r268673 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:45:17 +0100 mba  r268671 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:39:59 +0100 mba  r268670 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:38:59 +0100 mba  r268668 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:38:28 +0100 mba  r268667 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:36:06 +0100 mba  r268666 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:29:50 +0100 mba  r268663 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:24:00 +0100 mba  r268659 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:23:31 +0100 mba  r268658 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:22:41 +0100 mba  r268657 : i99432#: move accelconfig and macroassignment to cui 2009-02-25 16:57:26 +0100 mba  r268453 : obsolete 2009-02-17 10:50:51 +0100 mba  r267846 : obsolete 2009-02-12 16:33:54 +0100 mba  r267676 : #i96834#: warning fixed 2009-02-11 19:28:47 +0100 mba  r267626 : #i91978#: unused code 2009-02-11 18:37:47 +0100 mba  r267625 : metafile output, fixes for 3 layer office 2009-02-11 12:56:28 +0100 mba  r267593 : selective trees; incomplete build lists; metafile output


2009-05-05  Niklas Nebel  <nn@openoffice.org>  [5d68b109cbf8745bb5ec018743534fd314b21f28]

#i101309# always allow getRenderer(0)


2009-05-05  Niklas Nebel  <nn@openoffice.org>  [8954e964d53b43cd332420a0a0169aaaf11e3a44]

#i101309# settings name


2009-04-30  Niklas Nebel  <nn@openoffice.org>  [b74877d823946b9335e470b0b1068700dc0515d9]

#i101309# handle print options from new printer UI in renderable


2009-04-28  Thomas Benisch  <tbe@openoffice.org>  [c55305aa8b8be465edecb3795321d6cd494f5cfa]

#i12587# Inserting/editing arbitrary text objects in chart


2009-04-27  Philipp Lohmann  <pl@openoffice.org>  [120fabc000056a26f2abccf92cd33ce3ec5d427d]

#i92516# HelpTexts for new print UI


2009-04-27  Thomas Benisch  <tbe@openoffice.org>  [0f60946a83b5f96ec4b7d1c88762b9b7ebeb84ac]

#i12587# Inserting/editing arbitrary text objects in chart


2009-04-27  Thomas Benisch  <tbe@openoffice.org>  [bd0f1936741c59a785917a360de6ee627dba1f39]

#i12587# Inserting/editing arbitrary text objects in chart


2009-04-27  Thomas Benisch  <tbe@openoffice.org>  [de912be4b94b93dd5b26556ae4d29d7bddc9d33a]

#i12587# Inserting/editing arbitrary text objects in chart


2009-04-27  Ivo Hinkelmann  <ihi@openoffice.org>  [85b71054e7decb3a9aec0e86fa37b19fba5c10e0]

CWS-TOOLING: integrate CWS sb107 2009-04-14 13:09:13 +0200 sb  r270758 : CWS-TOOLING: rebase CWS sb107 to trunk@270723 (milestone: DEV300:m46) 2009-04-06 14:11:54 +0200 sb  r270545 : #i100884# improve pagein effectiveness: wrap system libs in --as-needed on unxlngi6/unxlngx6 to avoid needing them where unneeded; link pagein as C program to avoid unneeded C++ runtime dependency; reorder pagein and javaldx in soffice startup script so that javaldx benefits from pagein 2009-03-31 16:40:23 +0200 sb  r270287 : decrease collisions in hashCode computation 2009-03-30 11:48:39 +0200 sb  r270207 : #i100668# corrected explicit template instantiation 2009-03-26 14:16:26 +0100 sb  r270078 : #i100408# inadvertently dropped libexslt dynamic library in previous rev 269789 2009-03-26 10:52:51 +0100 sb  r270058 : #i100576# fixed erroneous modification of RPM in previous rev 270057 2009-03-26 10:46:36 +0100 sb  r270057 : #i100576# Enable HAVE_LD_HASH_STYLE in sdev300.ini for unxlgni6 and unxlngx6; corrected unxlngx6.mk so that HAVE_LD_HASH_STYLE actually has an effect on ultimate LINKFLAGS value. 2009-03-25 16:53:39 +0100 sb  r270038 : #i85679# applied speed-symbolic-functions.diff provided by pmladek; re-ran autoconf; enabled HAVE_LD_BSYMBOLIC_FUNCTIONS for unxlngi6 and unxlngx6 in sdev300.ini 2009-03-25 15:29:12 +0100 sb  r270031 : #i100408# missing fixes in addition to -c 269789 (to actually only put single instances of certain libraries into installation sets) 2009-03-25 15:17:10 +0100 sb  r270029 : #i10084# revert masterfix additions of libraries to APPnSTDLIBs (during -r269000:269199) and instead use -rpath-link to avoid linker warnings on unxlngi6 and unxlngx6 2009-03-25 14:15:23 +0100 sb  r270023 : added svn:ignore 2009-03-25 10:25:08 +0100 sb  r270002 : #i10000# copied over trunk -c 269820 2009-03-23 10:16:00 +0100 sb  r269858 : CWS-TOOLING: rebase CWS sb107 to trunk@269781 (milestone: DEV300:m44) 2009-03-20 11:22:27 +0100 sb  r269789 : #i100408# reduce (multiple copies of) libraries delivered to solver; for that to work fine, deliver symlink feature got improved to only create a symlink if the original file exists 2009-03-20 09:21:32 +0100 sb  r269782 : #i100396# replace s(HTML|RTF)_xxx declarations with OOO_STRING_SVTOOLS_(HTML|RTF)_xxx macros to reduce symbolic relocations at load time (at least on ELF systems). 2009-03-19 11:34:56 +0100 sb  r269734 : #i100348# added VISIBILITY_HIDDEN=TRUE so that symbols from the resulting archive are not erroneously exported from dynamic libraries including the archive 2009-03-19 11:32:20 +0100 sb  r269733 : #i100348# as a prerequisite for following changes, brought jpeg-6b.patch into "dmake create_patch" format and removed application/octet-stream svn:mime-type 2009-03-12 10:39:08 +0100 sb  r269370 : duplicated cws/odfmetadata2/solenv/inc/target.mk -c 268831 2009-03-04 17:25:16 +0100 sb  r268849 : #i99880# missing AUGMENT_LIBRARY_PATH 2009-02-25 17:54:34 +0100 sb  r268459 : CWS-TOOLING: rebase CWS sb107 to trunk@268395 (milestone: DEV300:m42) 2009-02-25 09:23:15 +0100 sb  r268413 : #i99584# avoid undefined operations on nOffset (patch by cmc) 2009-02-23 10:02:25 +0100 sb  r268344 : #i99519 removed unnecessary library dependencies 2009-02-18 17:54:24 +0100 sb  r268250 : avoid warnings about format specifier and argument mismatch (on 64bit debug builds) 2009-02-18 17:50:34 +0100 sb  r268249 : avoid erroneous warning that control reaches end of non-void function 2009-02-18 17:33:53 +0100 sb  r268248 : sdext/source/pdfimport/misc/pdfihelper.cxx: #include <vcl/canvastools.hxx>


2009-04-24  Ivo Hinkelmann  <ihi@openoffice.org>  [0cd66f23d25027c7c0b7de760f4534c3ff62d1f8]

CWS-TOOLING: integrate CWS calcdelrows_DEV300 2009-04-14 09:17:29 +0200 nn  r270747 : #i100895# for collaboration, allow rejection regardless of IsDeletedIn


2009-04-24  Ivo Hinkelmann  <ihi@openoffice.org>  [462ebd5b18e44442e4f5dcd5f8992b719d049465]

CWS-TOOLING: integrate CWS calc31stopper5_DEV300 2009-04-16 15:35:37 +0200 dr  r270888 : #101118# collect all drawing undo actions while creating a cell note


2009-04-22  Ivo Hinkelmann  <ihi@openoffice.org>  [66a89e8ff1b7812c2d2d56b20ff4c5da19ee2d55]

CWS-TOOLING: integrate CWS dr67 2009-04-08 13:23:56 +0200 dr  r270638 : #i100534# reverted 2009-04-08 10:14:55 +0200 dr  r270621 : CWS-TOOLING: rebase CWS dr67 to trunk@270033 (milestone: DEV300:m45) 2009-04-07 21:06:33 +0200 dr  r270610 : #i100534# sc does not link in debug mode 2009-03-12 11:20:09 +0100 dr  r269375 : #i10000# wae 2009-03-11 19:43:55 +0100 dr  r269351 : #i10000# adjust oox namespace ids according to oox/inc/oox/core/namespaces.hxx 2009-03-11 15:38:52 +0100 dr  r269339 : CWS-TOOLING: rebase CWS dr67 to trunk@269297 (milestone: DEV300:m43) 2009-02-27 15:20:21 +0100 dr  r268598 : CWS-TOOLING: rebase CWS dr67 to trunk@268395 (milestone: DEV300:m42) 2009-02-19 13:32:17 +0100 dr  r268277 : moved hf parser into page settings 2009-02-19 12:25:15 +0100 dr  r268272 : renamed some structs according to chart filter 2009-02-16 15:51:31 +0100 dr  r267823 : #i97873# import autosort settings from BIFF8/OOBIN/OOXML 2009-02-06 17:09:29 +0100 dr  r267477 : #i97873# minor changes 2009-02-06 16:38:56 +0100 dr  r267473 : #i97873# import date grouping settings from BIFF5/BIFF8/OOBIN/OOXML 2009-02-06 16:38:11 +0100 dr  r267472 : #i97873# check min/max/step of passed GroupInfo 2009-02-06 16:35:13 +0100 dr  r267471 : #i97873# more doc for createDategroup() 2009-02-06 13:53:42 +0100 dr  r267459 : #i97873# make XDataPilotGrouping::createDateGroup() implementation working and robust against wrong input data 2009-02-06 13:52:16 +0100 dr  r267458 : #i97873# fix and extend IDL doc for datapilot grouping 2009-02-06 12:35:49 +0100 dr  r267453 : fix other IDLC warnings in sheet module 2009-02-06 12:05:19 +0100 dr  r267448 : #i97873# fix and extend IDL doc for datapilot grouping 2009-02-02 17:58:46 +0100 dr  r267284 : #i10000# rebase errors 2009-02-02 17:52:21 +0100 dr  r267282 : #i10000# rebase errors 2009-02-02 17:35:58 +0100 dr  r267280 : #i10000# rebase errors 2009-02-02 15:58:04 +0100 dr  r267274 : CWS-TOOLING: rebase CWS dr67 to trunk@267171 (milestone: DEV300:m41) 2009-02-02 09:16:32 +0100 dr  r267247 : #i97873# typo 2009-01-30 17:09:09 +0100 dr  r267215 : #i97873# import numeric grouping settings for datapilot fields from BIFF5/BIFF8/OOBIN/OOXML 2009-01-29 16:36:24 +0100 dr  r267154 : #i97873# import datapilot discrete grouping from BIFF5/BIFF8/OOBIN/OOXLS 2009-01-29 16:33:37 +0100 dr  r267152 : #i97873# do not kill _all_ the other group fields when writing back DataPilotField::GroupInfo property 2009-01-29 14:15:45 +0100 dr  r267133 : #i93839# remove ScChengeTrack::Load and ::Store, adapt xls export filter 2009-01-28 13:30:37 +0100 dr  r267056 : #i98397# enhance DataPilot API: allow to rename groups and items in a group field 2009-01-28 12:09:05 +0100 dr  r267051 : #i98397# enhance DataPilot API: allow to rename groups and items in a group field 2009-01-27 16:13:58 +0100 dr  r267005 : #i97873# minor changes in DataPilot API implementation as preparation for additional changes needed for OOX import filter 2009-01-27 10:08:01 +0100 dr  r266961 : #i97873# changing orientation of a DP field moves it to last position in new dimension 2009-01-27 10:06:50 +0100 dr  r266960 : #i97873# changing orientation of a DP field moves it to last position in new dimension 2009-01-23 12:52:31 +0100 dr  r266808 : #i97873# DP documentation extended 2009-01-21 20:07:15 +0100 dr  r266702 : #i97873# this trivial patch adds BIFF5/BIFF8 pivot table import to the oox filter 2009-01-20 16:06:23 +0100 dr  r266592 : select BIFF filter via env.var 2009-01-16 18:51:01 +0100 dr  r266452 : #i97873# import page fields 2009-01-16 15:05:36 +0100 dr  r266420 : #i97873# field item settings (collapsed/hidden), settings of hidden fields 2009-01-15 16:01:17 +0100 dr  r266377 : #i97873# import OOXML7/OOBIN7 autoshow settings 2009-01-14 15:24:27 +0100 dr  r266310 : #i97873# import auto show settings generated by MSO2003 2009-01-14 12:29:44 +0100 dr  r266281 : #i97873# set global dp settings 2009-01-13 15:04:30 +0100 dr  r266229 : #i98029# SdrGroupObj does not remember predefined bounding rectangle anymore 2009-01-13 14:46:50 +0100 dr  r266225 : #i98029# SdrGroupObj does not remember predefined bounding rectangle anymore 2009-01-12 15:04:22 +0100 dr  r266161 : #i97873# remove misleading hasDataLayoutField() 2009-01-12 15:03:42 +0100 dr  r266160 : #i97873# remove misleading hasDataLayoutField() 2009-01-12 14:57:33 +0100 dr  r266159 : #i97900# reverted previous change, adjusted code to new EnableRTL() behaviour 2009-01-12 14:52:43 +0100 dr  r266158 : #i97900# reverted previous change, adjusted code to new EnableRTL() behaviour 2009-01-09 16:34:55 +0100 dr  r266098 : #i97900# RTL handling in TabBar changed with CWS rtlcontrols 2009-01-09 16:32:16 +0100 dr  r266097 : #i97900# RTL handling in TabBar changed with CWS rtlcontrols 2009-01-09 12:02:39 +0100 dr  r266072 : #i97623# RTL handling changed after CWS rtlcontrols 2009-01-09 09:48:53 +0100 dr  r266050 : #i158444# SXLI must be filled completely before starting CONTINUE 2009-01-08 18:50:08 +0100 dr  r266032 : #158444# allow to disable dump of record positions 2009-01-08 15:46:45 +0100 dr  r266020 : #i97873# data layout field handling 2009-01-08 15:45:45 +0100 dr  r266019 : #i97873# data layout field handling 2009-01-08 15:42:25 +0100 dr  r266018 : #i97873# data layout field handling 2009-01-02 17:28:32 +0100 dr  r265844 : #i10000# unxmacxi warning 2009-01-02 16:59:13 +0100 dr  r265842 : #i10000# rebase corrections 2009-01-02 16:44:44 +0100 dr  r265838 : #i10000# rebase corrections 2009-01-02 11:32:44 +0100 dr  r265834 : CWS-TOOLING: rebase CWS dr67 to trunk@265758 (milestone: DEV300:m38) 2008-12-29 16:55:40 +0100 dr  r265822 : more pivot table import, field layout settings 2008-12-29 14:27:35 +0100 dr  r265817 : more pivot table import, additions for data field settings 2008-12-26 14:39:21 +0100 dr  r265805 : updates 2008-12-19 16:31:39 +0100 dr  r265734 : typo 2008-12-19 16:30:00 +0100 dr  r265733 : add API for sequence of DP field subtotal functions 2008-12-19 16:29:43 +0100 dr  r265732 : add API for sequence of DP field subtotal functions 2008-12-19 16:29:07 +0100 dr  r265731 : add API for sequence of DP field subtotal functions 2008-12-18 18:07:58 +0100 dr  r265710 : #i96758# try to cache row default formatting and apply it at row ranges instead of single rows 2008-12-18 16:00:25 +0100 dr  r265698 : more additions to pivot import 2008-12-17 13:38:19 +0100 dr  r265599 : do not assert HIDDEN orientation 2008-12-12 13:51:29 +0100 dr  r265415 : minor typos 2008-12-12 10:15:04 +0100 dr  r265394 : pivot cache import extended to XLSB, added creation of cache data for missing/external sheets 2008-12-04 13:16:16 +0100 dr  r264837 : #i96860# remove old dumper files 2008-12-04 12:17:38 +0100 dr  r264834 : #i96858# XTO broken, if textbox is empty but contains formatting 2008-12-04 12:16:38 +0100 dr  r264833 : #i96858# XTO broken, if textbox is empty but contains formatting 2008-12-03 14:51:05 +0100 dr  r264784 : #i10000# warnings 2008-12-03 14:32:46 +0100 dr  r264778 : #i10000# warning 2008-12-03 11:28:38 +0100 dr  r264758 : #i96758# ignore zero-sized objects 2008-12-03 10:09:34 +0100 dr  r264748 : #i96758# change ::oox::Property(Set|Map) keys to sal_Int32 property identifiers, to save construction of property names 2008-12-01 16:09:02 +0100 dr  r264615 : #i96758# headerdoc 2008-12-01 14:49:04 +0100 dr  r264607 : #i96758# import performance of formatted documents 2008-11-26 17:08:15 +0100 dr  r264424 : make it more simple 2008-11-26 16:31:41 +0100 dr  r264419 : c:crossesAt is for crossing axis, not for own axis. This is different to BIFF 2008-11-26 13:55:55 +0100 dr  r264382 : #i86346# import of MissingValueTreatment from XLSX 2008-11-26 12:49:38 +0100 dr  r264370 : #i86346# import/export of MissingValueTreatment from/to XLS 2008-11-25 17:48:59 +0100 dr  r264320 : update row height with single progress bar when using 'IsAdjustHeightEnabled' document property 2008-11-25 17:24:26 +0100 dr  r264319 : #i96438# disable importing comment text until API is fixed 2008-11-25 17:11:30 +0100 dr  r264318 : #i90124# set control tooltips, patch from npower 2008-11-25 15:09:28 +0100 dr  r264309 : #i94028# #i94991# update drawing objects when changing row height 2008-11-24 15:21:35 +0100 dr  r264224 : prevent ::rtl::OUString::copy assertion 2008-11-24 15:19:39 +0100 dr  r264223 : #i95183# #158573# handle non-ascii characters in sheet names in OOXML import 2008-11-24 12:54:30 +0100 dr  r264221 : #i94157# support ESC key to leave full-screen in page preview 2008-11-21 18:15:17 +0100 dr  r264165 : #i90360# disable chart perspective if it is set to 0 2008-11-21 18:14:41 +0100 dr  r264164 : #i90360# disable chart perspective if it is set to 0 2008-11-21 17:43:26 +0100 dr  r264155 : #i96140# missing parenth 2008-11-21 17:36:35 +0100 dr  r264154 : #i96438# first steps of note import 2008-11-20 15:15:03 +0100 dr  r264059 : get rid of ContextWrapper 2008-11-18 11:39:52 +0100 dr  r263755 : #i78476# moved to CWS dr67


2009-04-21  Ivo Hinkelmann  <ihi@openoffice.org>  [31bae43eba5a948a132ebdc79b110b3f345911e0]

CWS-TOOLING: integrate CWS layoutdialogs2 2009-04-09 10:11:14 +0200 mba  r270680 : defective merge sets seem to have brought config_office back 2009-04-02 18:00:52 +0200 mba  r270429 : #i100503#: make tralay work without LD_LIBRARY_PATH 2009-04-01 13:27:58 +0200 mba  r270320 : warning on Solaris fixed 2009-03-31 22:15:03 +0200 mba  r270293 : CWS-TOOLING: rebase CWS layoutdialogs2 to trunk@270033 (milestone: DEV300:m45) 2009-03-16 13:05:08 +0100 mba  r269526 : fixed some compiler warnings of the Sun compiler 2009-03-11 15:32:42 +0100 mba  r269337 : some problems for ENABLE_LAYOUT fixed 2009-03-09 16:05:32 +0100 mba  r269197 : merge conflict solved 2009-03-09 15:09:55 +0100 mba  r269194 : merge conflict solved 2009-03-09 15:09:35 +0100 mba  r269193 : merge conflict solved 2009-03-06 22:12:47 +0100 mba  r269052 : compilation error fixed 2009-03-06 17:36:37 +0100 mba  r269033 : integer warning fixed 2009-03-06 10:31:19 +0100 mba  r268983 : CWS-TOOLING: rebase CWS layoutdialogs2 to trunk@268395 (milestone: DEV300:m42) 2009-03-03 20:03:59 +0100 jcn  r268777 : Add Notes checkbox to find-and-replace dialog in anticipation of m40 resync. 2009-03-03 15:56:20 +0100 jcn  r268737 : Apply layout-find-dialog-crash-fix.diff -- fixes crasher. From http://svn.gnome.org/viewvc/ooo-build?view=revision&revision=15378 2009-02-06 17:41:24 +0100 mba  r267479 : arrrrgh - svx headers must be included behind the magic define 2009-02-05 19:44:42 +0100 mba  r267439 : seems that msvc preprocessor is thick as a brick 2009-02-05 15:15:16 +0100 mba  r267425 : pch added 2009-02-05 08:14:01 +0100 mba  r267409 : double defined symbols fixed 2009-02-05 08:13:14 +0100 mba  r267408 : compile Languagebox and FontListbox with ENABLE_LAYOUT 2009-02-05 08:07:35 +0100 mba  r267406 : warning fixed 2009-02-05 08:06:42 +0100 mba  r267405 : warnings and errors fixed 2009-01-30 15:51:52 +0100 mba  r267206 : export Container class to compile code in sfx2 2009-01-30 15:51:14 +0100 mba  r267205 : remove LAYOUT_EXPERIMENTAL from sfx2, everything now compiles with ENABLE_LAYOUT 2009-01-28 17:01:27 +0100 mba  r267069 : fixed namespace problems in sfx2 2009-01-28 16:59:48 +0100 mba  r267068 : fixed namespace problems 2009-01-24 13:57:06 +0100 mba  r266877 : move svx stuff to experimental 2009-01-24 13:56:11 +0100 mba  r266876 : move svx stuff to experimental 2009-01-24 13:52:09 +0100 mba  r266875 : put sfx stuff into experimental 2009-01-24 13:28:08 +0100 mba  r266874 : put sfx stuff into experimental 2009-01-24 13:26:38 +0100 mba  r266873 : help msvc++ compiler a bit 2009-01-24 13:24:43 +0100 mba  r266872 : warning removed 2009-01-24 13:23:21 +0100 mba  r266871 : moved svx stuff to svx; put sfx stuff into experimental 2009-01-24 13:22:04 +0100 mba  r266870 : moved svx stuff to svx 2009-01-05 16:35:34 +0100 jcn  r265879 : config_office/configure: Regenerate.  Fixes naive builds. 2008-12-17 16:06:25 +0100 jcn  r265638 : Wordcount: minor HIG tweaks. 2008-12-17 16:06:21 +0100 jcn  r265637 : Zoom: minor HIG spacing tweaks. 2008-12-17 16:06:16 +0100 jcn  r265636 : Zoom: fix align-test and update zoom.xml. 2008-12-17 16:06:12 +0100 jcn  r265635 : Zoom: add align-test.xml to illustrate zoom alignment bug. 2008-12-17 16:06:07 +0100 jcn  r265634 : Find-and-Replace: request font-style-name="Bold", does not seem to work. 2008-12-17 16:06:03 +0100 jcn  r265633 : Find-and-Replace: Add alignment for combobox labels. 2008-12-17 16:05:59 +0100 jcn  r265632 : Find-and-Replace: Replace pairs of <flow> with <align>. Fixes ugly non-emptiness of more-<hbox>. 2008-12-17 16:05:56 +0100 jcn  r265631 : Find-and-Replace: add nice 12pt border. 2008-12-17 16:05:51 +0100 jcn  r265630 : Find-and-Replace: also add rowsep at lower fixedline. 2008-12-17 16:05:47 +0100 jcn  r265629 : Find-and-Replace: Add poor man's colsep and rowsep substitute spaces. 2008-12-17 16:05:43 +0100 jcn  r265628 : Find-and-Replace: use <vbox cnt:x-expand="false"> for buttons. 2008-12-17 16:05:40 +0100 jcn  r265627 : Find-and-Replace: add <vbox>s and use cnt:expand="false" to stop vertical button expansion. 2008-12-17 16:05:36 +0100 jcn  r265626 : Find-and-Replace: use sc icon. Fixes FIND button height. 2008-12-17 16:05:31 +0100 jcn  r265625 : Bugfix have empty/invisible containers not take up space. 2008-12-17 16:05:27 +0100 jcn  r265624 : Find-and-replace: Fix/remove most property errors. 2008-12-17 16:05:23 +0100 jcn  r265623 : Table: make x, y expand default. 2008-12-17 16:05:18 +0100 jcn  r265622 : Use OSL_TRACE rather than printf. Fixes warning visibility. 2008-12-17 16:05:14 +0100 jcn  r265621 : Boxtest: add <vbox><table x-expand="true"> pair to trigger property errors. 2008-12-17 16:05:10 +0100 jcn  r265620 : Junk extra <table> from boxtest. Fixes visual output. 2008-12-17 16:05:05 +0100 jcn  r265619 : Eradicate PROPHELPER_SET_INFO: junk static caching. 2008-12-17 16:05:01 +0100 jcn  r265618 : Update awk+sed localize generation rules. Fixes multiple (wrong) titles in Find & Replace. 2008-12-17 16:04:56 +0100 jcn  r265617 : Use dash (-) instead of underscore (_) to separate language modifiers. Fixes en_GB etc. 2008-12-17 16:04:51 +0100 jcn  r265616 : Add "defbutton=true" to dialogs. Fixes ENTER doing default action: n#439222. 2008-12-17 16:04:45 +0100 jcn  r265615 : Michael's new table-based find and replace. 2008-12-17 16:04:40 +0100 jcn  r265614 : Apply Michael's boxtest patch. 2008-12-17 16:04:36 +0100 jcn  r265613 : Make sort-options experimental. Part II. Fixes crasher n-44.patch. Fixes crasher: n#442036. 2008-12-17 16:04:31 +0100 jcn  r265612 : Make sort-options experimental. Part I. 2008-12-17 16:04:26 +0100 jcn  r265611 : Add --enable-layout-experimental configure switch. Part II. Typo in configure.in, add set_soenv entry. 2008-12-17 16:04:21 +0100 jcn  r265610 : Add --enable-layout-experimental configure switch. Default off. 2008-11-26 16:25:18 +0100 mba  r264417 : fixed compiler warnings 2008-11-26 15:52:02 +0100 mba  r264407 : fixed compiler warnings 2008-11-26 15:40:44 +0100 mba  r264402 : fixed compiler warnings 2008-11-26 14:50:47 +0100 mba  r264395 : fixed compiler warnings 2008-11-26 14:39:12 +0100 mba  r264393 : fixed compiler warnings 2008-11-26 14:38:49 +0100 mba  r264392 : fixed compiler warnings 2008-11-26 14:38:31 +0100 mba  r264391 : fixed compiler warnings 2008-11-26 14:38:13 +0100 mba  r264390 : fixed compiler warnings 2008-11-26 14:37:38 +0100 mba  r264389 : fixed compiler warnings 2008-11-26 10:11:17 +0100 mba  r264352 : fixed compiler warnings 2008-11-26 10:06:12 +0100 mba  r264351 : fixed compiler warnings 2008-11-26 09:58:28 +0100 mba  r264347 : fixed compiler warnings 2008-11-26 09:50:41 +0100 mba  r264345 : fixed compiler warnings 2008-11-26 09:46:10 +0100 mba  r264343 : fixed compiler warnings 2008-10-22 10:57:09 +0200 mba  r262584 : fixed small error resulting from resolved merged conflicts 2008-10-22 10:56:21 +0200 mba  r262583 : fixed some small errors resulting from resolved merged conflicts 2008-10-20 19:29:27 +0200 jcn  r262557 : layoutdialogs2: Remove stray patches. 2008-10-20 19:29:22 +0200 jcn  r262556 : layoutdialogs2: Force resize also on second show after hiding. 2008-10-20 19:29:17 +0200 jcn  r262555 : layoutdialogs2: Do not trigger handlers for api calls. 2008-10-20 19:29:13 +0200 jcn  r262554 : layoutdialogs2: Use disable/enable instead of hide/show for currency box. Fixes monster lisbox. 2008-10-20 19:29:09 +0200 jcn  r262553 : layoutdialogs2: Use line-count instead of linecount. Fixes sizing of listboxes. 2008-10-20 19:29:04 +0200 jcn  r262552 : layoutdialogs2: vcl: respect line-count also for non-dropdown listbox. 2008-10-20 19:28:59 +0200 jcn  r262551 : layoutdialogs2: Update to svn:r14142 patched. 2008-10-20 19:28:51 +0200 jcn  r262550 : layoutdialogs2: Manual tweaks in number-format.xml. 2008-10-20 19:28:45 +0200 jcn  r262549 : layoutdialogs2: Integrate Number Format tabpage into Format Cell dialog. 2008-10-20 19:28:36 +0200 jcn  r262548 : layoutdialogs2: Windows build fixes. Thanks Noel. 2008-10-20 19:28:31 +0200 jcn  r262547 : layoutdialogs2: Layout Format Cells/Number Format tabpage. 2008-10-20 19:28:24 +0200 jcn  r262546 : layoutdialogs2: Remove sc/uiconfig/layout/localize.sdf. 2008-10-20 19:28:20 +0200 jcn  r262545 : layoutdialogs2: --enable-debug link fix 2008-10-20 19:28:16 +0200 jcn  r262544 : layoutdialogs2: Add missing localize.sdf dependency. Thanks, Petr. 2008-10-20 19:28:12 +0200 jcn  r262543 : layoutdialogs2: svx linx fixlet. 2008-10-20 19:28:06 +0200 jcn  r262542 : layoutdialogs2: Move layout/* to layout/core, vclcompat to layout/vcl. Distribute layout headers. Fixes sfx2 layout core includes. 2008-10-20 19:27:58 +0200 jcn  r262541 : layoutdialogs2: Build fix for --enable-layout. 2008-10-20 19:27:54 +0200 jcn  r262540 : layoutdialogs2: Generate localize.sdf files in uiconfig. 2008-10-20 19:27:47 +0200 jcn  r262539 : layoutdialogs2: Minimalize deprecated String use further by using OUString. 2008-10-20 19:27:42 +0200 jcn  r262538 : layoutdialogs2: Implement LocalizedString.GetToken and use it for aCalcBtn. Fixes empty label. 2008-10-20 19:27:36 +0200 jcn  r262537 : layoutdialogs2: Add layout::Sfx*Dialog wrapper. 2008-10-20 19:27:29 +0200 jcn  r262536 : layoutdialogs2: Introduce Closing*Dialog wrappers fixing closing with ESC. 2008-10-20 19:27:24 +0200 jcn  r262535 : layoutdialogs2: Support <sfxmodelessdialog> from sfx2. 2008-10-20 19:27:17 +0200 jcn  r262534 : layoutdialogs2: Rename find-&-replace.xml to find-and-replace.xml. Fixes split build with failing solenv patch. 2008-10-20 19:27:12 +0200 jcn  r262533 : layoutdialogs2: Do not build sfx2 when --disable-layout. 2008-10-20 19:27:08 +0200 jcn  r262532 : layoutdialogs2: Ignore ja/ too. 2008-10-20 19:27:04 +0200 jcn  r262531 : layoutdialogs2: Add destructors for VCLXButton, VCLXComboBox. 2008-10-20 19:26:58 +0200 jcn  r262530 : layoutdialogs2: Make dialogs closable with ESC: wordcount, zoom, message-box, move-copy-sheet, insert-sheet. 2008-10-20 19:26:52 +0200 jcn  r262529 : layoutdialogs2: Move some implementations to .cxx. 2008-10-20 19:26:47 +0200 jcn  r262528 : layoutdialogs2: Fix simple editor crasher. 2008-10-20 19:26:43 +0200 jcn  r262527 : layoutdialogs2: Further cleanup: remove clean & delete from wrapperGone. 2008-10-20 19:26:38 +0200 jcn  r262526 : layoutdialogs2: Add reset logic to ~WindowImpl, plugs ComboBox and Dialog leaks. 2008-10-20 19:26:34 +0200 jcn  r262525 : layoutdialogs2: Interesting hack: only leaks ::ComboBox and ::Dialog. 2008-10-20 19:26:29 +0200 jcn  r262524 : layoutdialogs2: Build fix. 2008-10-20 19:26:24 +0200 jcn  r262523 : layoutdialogs2: Find&Replace duplicate disposal workaround inside layout. 2008-10-20 19:26:19 +0200 jcn  r262522 : layoutdialogs2: Revert "Terrible crasher-fix hack. Do not dispose Dialog or any FocusHandler owners." This reverts commit 5222b5b123a2e6c88494983bd875de574f365bae. 2008-10-20 19:26:14 +0200 jcn  r262521 : layoutdialogs2: Terrible crasher-fix hack. Do not dispose Dialog or any FocusHandler owners. 2008-10-20 19:26:08 +0200 jcn  r262520 : layoutdialogs2: Revert "ComboBox: crash down to (Dialog's) VCLXWindowImpl::DestroyOutputDevice();" This reverts commit b423129aca295e84ef5986149b6ee71eb7ba0aa3. 2008-10-20 19:26:03 +0200 jcn  r262519 : layoutdialogs2: ComboBox: crash down to (Dialog's) VCLXWindowImpl::DestroyOutputDevice(); 2008-10-20 19:25:57 +0200 jcn  r262518 : layoutdialogs2: Handler and debug cleanup. 2008-10-20 19:25:52 +0200 jcn  r262517 : layoutdialogs2: Minimally remove FixedText workaround. 2008-10-20 19:25:47 +0200 jcn  r262516 : layoutdialogs2: Preparations for FocusHdl fix. 2008-10-20 19:25:42 +0200 jcn  r262515 : layoutdialogs2: Remove vclxwindows patch by using handler hackery. 2008-10-20 19:25:38 +0200 jcn  r262514 : layoutdialogs2: Don't call deleted dialog. Hdler reset tweaks. Fixes Find&Replace. 2008-10-20 19:25:34 +0200 jcn  r262513 : layoutdialogs2: Hdler and disposing cleanups. 2008-10-20 19:25:29 +0200 jcn  r262512 : layoutdialogs2: Prevent Find&Replace window from being deleted twice. 2008-10-20 19:25:24 +0200 jcn  r262511 : layoutdialogs2: Add destructor to SvxSearchDialogWrapper. Fixes second invocation crasher. 2008-10-20 19:25:19 +0200 jcn  r262510 : layoutdialogs2: Make Find&Replace work (once) with minimal client code changes. 2008-10-20 19:25:13 +0200 jcn  r262509 : layoutdialogs2: Add ComboBox/FixedText debug switching. 2008-10-20 19:25:08 +0200 jcn  r262508 : layoutdialogs2: Add destructors resetting handlers. 2008-10-20 19:25:03 +0200 jcn  r262507 : layoutdialogs2: Static cast fixes. 2008-10-20 19:24:59 +0200 jcn  r262506 : layoutdialogs2: Always set button handler. Fixes pushbuttons. 2008-10-20 19:24:55 +0200 jcn  r262505 : layoutdialogs2: Revert "Move FocusHandlers from Control down to ListBox, ComboBox, FixedText." This reverts commit 8bc4b991539a74373bfb1ef8792276ada8c958e4. 2008-10-20 19:24:50 +0200 jcn  r262504 : layoutdialogs2: Disable Timer for ENABLE_LAYOUT. 2008-10-20 19:24:45 +0200 jcn  r262503 : layoutdialogs2: Move FocusHandlers from Control down to ListBox, ComboBox, FixedText. 2008-10-20 19:24:40 +0200 jcn  r262502 : layoutdialogs2: Wider small symbol. 2008-10-20 19:24:36 +0200 jcn  r262501 : layoutdialogs2: Listener and SetHandler cleanup. 2008-10-20 19:24:31 +0200 jcn  r262500 : layoutdialogs2: Clear mxWindow upon deletion. Fixes Find&Replace crasher. 2008-10-20 19:24:27 +0200 jcn  r262499 : layoutdialogs2: Typo, fixes build. 2008-10-20 19:24:22 +0200 jcn  r262498 : layoutdialogs2: Ignore .log files too. 2008-10-20 19:24:19 +0200 jcn  r262497 : layoutdialogs2: By default, work around #define protected public Resource hack. 2008-10-20 19:24:15 +0200 jcn  r262496 : layoutdialogs2: Sw:Find&Replace: Remove wrong static cast. Fixes crasher. 2008-10-20 19:24:10 +0200 jcn  r262495 : layoutdialogs2: Find&Replace: do not vertically expand buttons, add title. 2008-10-20 19:24:06 +0200 jcn  r262494 : layoutdialogs2: Find&Replace: Remove need for ResId, set help id. 2008-10-20 19:24:01 +0200 jcn  r262493 : layoutdialogs2: MoreButton: redraw upon resize, fix labels, use small symbol. 2008-10-20 19:23:57 +0200 jcn  r262492 : layoutdialogs2: Support setting and querying small symbol on vcl:button. 2008-10-20 19:23:52 +0200 jcn  r262491 : layoutdialogs2: Support redrawing of only this, make parent optional. 2008-10-20 19:23:48 +0200 jcn  r262490 : layoutdialogs2: Add Kohei's wfield patch https://bugzilla.novell.com/attachment.cgi?id=235398. Fixes n#417840. 2008-10-20 19:23:44 +0200 jcn  r262489 : layoutdialogs2: Redraw [parent] upon first time visibility. Fixes weird listbox dropdown sizing in Find & Replace. 2008-10-20 19:23:39 +0200 jcn  r262488 : layoutdialogs2: Add manual layouting for Find & Replace. 2008-10-20 19:23:35 +0200 jcn  r262487 : layoutdialogs2: src2xml: use label instead of text for buttons. Run on Find & Replace; fixes button texts. 2008-10-20 19:23:31 +0200 jcn  r262486 : layoutdialogs2: Add initial auto-translated find-&-replace-.xml. 2008-10-20 19:23:26 +0200 jcn  r262485 : layoutdialogs2: layout importer: handle ModelessDialog. Fixes Find & Replace parsing error. 2008-10-20 19:23:22 +0200 jcn  r262484 : layoutdialogs2: src2xml: Handle multiple widgets at same x,y. Fixes silent removal of widgets in Find & Replace dialog. 2008-10-20 19:23:18 +0200 jcn  r262483 : layoutdialogs2: src2xml: Handle hide= attribute, translate to show=. 2008-10-20 19:23:14 +0200 jcn  r262482 : layoutdialogs2: Only use __PRETTY_FUNCTION__ on gcc. Fixes Windows build. Thanks Tor! 2008-10-20 19:23:10 +0200 jcn  r262481 : layoutdialogs2: Add two missing SAL_CALL decorations. Fixes Windows build. Thanks Tor! 2008-10-20 19:23:05 +0200 jcn  r262480 : layoutdialogs2: Build fixes for layout'ed Find & Replace dialog. 2008-10-20 19:22:54 +0200 jcn  r262479 : layoutdialogs2: Do not use layout::SfxTabDialog for now. 2008-10-20 19:22:47 +0200 jcn  r262478 : layoutdialogs2: Crufty sizing tweaks. 2008-10-20 19:22:42 +0200 jcn  r262477 : layoutdialogs2: More debugging cleanups. 2008-10-20 19:22:37 +0200 jcn  r262476 : layoutdialogs2: More cleanups that result in constant manual resizing... 2008-10-20 19:22:33 +0200 jcn  r262475 : layoutdialogs2: Tabdlg cleanups. 2008-10-20 19:22:28 +0200 jcn  r262474 : layoutdialogs2: Add GetOptimalSize () to InPlug. Fixes auto-sizing of tabcontrol. 2008-10-20 19:22:21 +0200 jcn  r262473 : layoutdialogs2: Get VCLXTabControl to resize automatically (too tall), not mousable. 2008-10-20 19:22:13 +0200 jcn  r262472 : layoutdialogs2: Respect show=false property; do not show everything. 2008-10-20 19:22:09 +0200 jcn  r262471 : layoutdialogs2: Add show=false on buttons. Fixes displaying everything. 2008-10-20 19:22:05 +0200 jcn  r262470 : layoutdialogs2: Move some code to reduce namespace and #if hacking. 2008-10-20 19:22:00 +0200 jcn  r262469 : layoutdialogs2: Cleanup, remove unneeded #defines. 2008-10-20 19:21:56 +0200 jcn  r262468 : layoutdialogs2: Replace static casts with dynamic_cast, fixes layout::SfxTabDialog. Explicitly add 2 tabpages while adding tabpages, instead of relying on ResId. 2008-10-20 19:21:51 +0200 jcn  r262467 : layoutdialogs2: Use cpp hacking to remove layout-tabdialog.hxx duplication. 2008-10-20 19:21:45 +0200 jcn  r262466 : layoutdialogs2: Minimize diff between layout-tabdialog.hxx and tabdlg.hxx. 2008-10-20 19:21:41 +0200 jcn  r262465 : layoutdialogs2: Remove copy of SfxTabDialog; use cpp logic to create both flavours. 2008-10-20 19:21:36 +0200 jcn  r262464 : layoutdialogs2: Minimize diff between layout/sfxtabdialog.cxx and source/tabdlg.cxx. This enables the next step: use cpp logic instead of code duplication. 2008-10-20 19:21:31 +0200 jcn  r262463 : layoutdialogs2: Hello world on layout::SfxTabDialog. 2008-10-20 19:21:24 +0200 jcn  r262462 : layoutdialogs2: Nice `Compiling:' message that shows the file being compiled. 2008-10-20 19:21:20 +0200 jcn  r262461 : layoutdialogs2: Use layout::SfxTabDialog for sort options. 2008-10-20 19:21:15 +0200 jcn  r262460 : layoutdialogs2: Update sort options tab. 2008-10-20 19:21:10 +0200 jcn  r262459 : layoutdialogs2: Add layout::SfxTabDialog. 2008-10-20 19:21:04 +0200 jcn  r262458 : layoutdialogs2: Cleanup previous attempt using layout::SfxTabPage == layout::TabPage. 2008-10-20 19:20:57 +0200 jcn  r262457 : layoutdialogs2: Windows 2003 compile fixes, i#92397. 2008-10-20 19:20:52 +0200 jcn  r262456 : layoutdialogs2: Set default radiogroup when none provided. 2008-10-20 19:20:48 +0200 jcn  r262455 : layoutdialogs2: Add radiogroup to sort-options. Fixes crasher. 2008-10-20 19:20:43 +0200 jcn  r262454 : layoutdialogs2: Cleanup ParentSet fix. 2008-10-20 19:20:36 +0200 jcn  r262453 : layoutdialogs2: Add debugging in ParentSet. Works standalone, not integrated. 2008-10-20 19:20:31 +0200 jcn  r262452 : layoutdialogs2: Revert "Have InPlug not derive from Window, but have as member." This reverts commit 50ea26eec3fe14943f24900081ad923e72550345. 2008-10-20 19:20:25 +0200 jcn  r262451 : layoutdialogs2: Have InPlug not derive from Window, but have as member. 2008-10-20 19:20:20 +0200 jcn  r262450 : layoutdialogs2: Move layout plugin implementation from layout::SfxTabPage to InPlug. 2008-10-20 19:20:14 +0200 jcn  r262449 : layoutdialogs2: Get all widgets to display in sfxtabpage plugin with Window::SetParent hack. 2008-10-20 19:20:09 +0200 jcn  r262448 : layoutdialogs2: Two-button manual hello world with sfxtabpage plugin. 2008-10-20 19:20:03 +0200 jcn  r262447 : layoutdialogs2: WIP: layout::SfxTabPage derived from SfxTabPage. 2008-10-20 19:19:55 +0200 jcn  r262446 : layoutdialogs2: Always set parent after construction, fixes listbox dropdown. 2008-10-20 19:19:51 +0200 jcn  r262445 : layoutdialogs2: Fix radio button crasher. 2008-10-20 19:19:47 +0200 jcn  r262444 : layoutdialogs2: Implement ListBox method wrappers. Fixes filling of listbox. 2008-10-20 19:19:42 +0200 jcn  r262443 : layoutdialogs2: Convert Move/Copy sheet to layout engine. 2008-10-20 19:19:35 +0200 jcn  r262442 : layoutdialogs2: Also hide yes/no buttons if not used. 2008-10-20 19:19:31 +0200 jcn  r262441 : layoutdialogs2: Elaborate on changing client code. 2008-10-20 19:19:26 +0200 jcn  r262440 : layoutdialogs2: Implement winbits client-code compatibility for Message Boxes. 2008-10-20 19:19:21 +0200 jcn  r262439 : layoutdialogs2: Add localize.sdf to toolkit uiconfig. Fixes build. 2008-10-20 19:19:17 +0200 jcn  r262438 : layoutdialogs2: Do not use ti_layout twice in toolkit build.lst. Fixes build. 2008-10-20 19:19:13 +0200 jcn  r262437 : layoutdialogs2: Oops, also dist toolkit-layout.zip. 2008-10-20 19:19:09 +0200 jcn  r262436 : layoutdialogs2: Move layout.mk to solenv. 2008-10-20 19:19:03 +0200 jcn  r262435 : layoutdialogs2: Add handy TEST file. 2008-10-20 19:18:58 +0200 jcn  r262434 : layoutdialogs2: Implement MessageBox and wrappers ErrorBox, InfoBox, QueryBox, WarningBox. 2008-10-20 19:18:52 +0200 jcn  r262433 : layoutdialogs2: QueryBox without image used for Delete Sheet dialog. 2008-10-20 19:18:46 +0200 jcn  r262432 : layoutdialogs2: WIP QueryBox. 2008-10-20 19:18:39 +0200 jcn  r262431 : layoutdialogs2: Add insert-sheet localization. 2008-10-20 19:18:34 +0200 jcn  r262430 : layoutdialogs2: Run indent-region on zoom.xml, distribute it. 2008-10-20 19:18:30 +0200 jcn  r262429 : layoutdialogs2: Dist xml files too. 2008-10-20 19:18:26 +0200 jcn  r262428 : layoutdialogs2: Add insert-sheet.xml to workben. 2008-10-20 19:18:22 +0200 jcn  r262427 : layoutdialogs2: Update layout TODO. 2008-10-20 19:18:18 +0200 jcn  r262426 : layoutdialogs2: Cleanups and add comments. 2008-10-20 19:18:13 +0200 jcn  r262425 : layoutdialogs2: Keep RadioButtons::RadioButton callback at HEAD of list. Fixes radiobutton grouping. 2008-10-20 19:18:07 +0200 jcn  r262424 : layoutdialogs2: Remove IMPORT_RADIOGROUP cruft. 2008-10-20 19:18:02 +0200 jcn  r262423 : layoutdialogs2: Have code check fire event for radio button. Fixes radio button grouping. 2008-10-20 19:17:58 +0200 jcn  r262422 : layoutdialogs2: Enable IMPORT_RADIOGROUP flag. 2008-10-20 19:17:54 +0200 jcn  r262421 : layoutdialogs2: Add radio groups to zoom.xml. 2008-10-20 19:17:50 +0200 jcn  r262420 : layoutdialogs2: Move RadioGroup implementation to cxx file. 2008-10-20 19:17:45 +0200 jcn  r262419 : layoutdialogs2: Manually set help id for insert table. 2008-10-20 19:17:41 +0200 jcn  r262418 : layoutdialogs2: Cosmetic fixes for insert-sheet. 2008-10-20 19:17:37 +0200 jcn  r262417 : layoutdialogs2: FindAndRemove now also skips translation prefix. Fixes setting of title etc. from nontranslated xml. 2008-10-20 19:17:32 +0200 jcn  r262416 : layoutdialogs2: Manually set help id for zoom and wordcount dialogs. 2008-10-20 19:17:27 +0200 jcn  r262415 : layoutdialogs2: Set help-id from xml. 2008-10-20 19:17:21 +0200 jcn  r262414 : layoutdialogs2: Move -DENABLE_LAYOUT from stray makefiles to settings.mk. 2008-10-20 19:17:13 +0200 jcn  r262413 : layoutdialogs2: Initial conversion of insert-sheet dialog. 2008-10-20 19:17:08 +0200 jcn  r262412 : layoutdialogs2: Add wrappers for {Get,Set}{Pointer,Text}. 2008-10-20 19:17:04 +0200 jcn  r262411 : layoutdialogs2: Toolkit layout dialog copy updates. 2008-10-20 19:16:59 +0200 jcn  r262410 : layoutdialogs2: Cleanup #include <layout*> disaster. Fixes multiple inclusions of layout-pre, layout-post. 2008-10-20 19:16:53 +0200 jcn  r262409 : layoutdialogs2: Implement Get,Set{,Smart}HelpId (). 2008-10-20 19:16:49 +0200 jcn  r262408 : layoutdialogs2: Make some getters const. 2008-10-20 19:16:45 +0200 jcn  r262407 : layoutdialogs2: Manual tweaks for string-input.xml. 2008-10-20 19:16:40 +0200 jcn  r262406 : layoutdialogs2: Add string-input.xml. 2008-10-20 19:16:36 +0200 jcn  r262405 : layoutdialogs2: Add dummy implementation for SetHelpId etc. 2008-10-20 19:16:32 +0200 jcn  r262404 : layoutdialogs2: Actually say *what* file cannot be copied *where*. Sigh. 2008-10-20 19:16:27 +0200 jcn  r262403 : layoutdialogs2: Thinko in macro name. Fixes compilation of strindlg.cxx. 2008-10-20 19:16:22 +0200 jcn  r262402 : layoutdialogs2: Add layout includes to stringdlg and makefile. 2008-10-20 19:16:17 +0200 jcn  r262401 : layoutdialogs2: Add sc/uiconfig/layout/localize.sdf 2008-10-20 19:16:13 +0200 jcn  r262400 : layoutdialogs2: Oops, build sc/uiconfig/layout. 2008-10-20 19:16:09 +0200 jcn  r262399 : layoutdialogs2: Have virtual destructor on Context, delete TabPage when deleting TabDialog. 2008-10-20 19:16:04 +0200 jcn  r262398 : layoutdialogs2: Actually delete layout::TabPage objects when deleting SfxTabdialog. 2008-10-20 19:16:00 +0200 jcn  r262397 : layoutdialogs2: Workaround for second invocation crash of sort dialog options tab. 2008-10-20 19:15:56 +0200 jcn  r262396 : layoutdialogs2: Handle Reset button. 2008-10-20 19:15:51 +0200 jcn  r262395 : layoutdialogs2: Also install sc xml zip file. 2008-10-20 19:15:46 +0200 jcn  r262394 : layoutdialogs2: Integrate sort-options into sc. 2008-10-20 19:15:41 +0200 jcn  r262393 : layoutdialogs2: Revert "Fix sfx2 compile warnings." This reverts commit 8b55d402af7bd217db35f67b02dc92f93f3ada5d. 2008-10-20 19:15:34 +0200 jcn  r262392 : layoutdialogs2: Remove debuging. 2008-10-20 19:15:30 +0200 jcn  r262391 : layoutdialogs2: Pass set argument to layout::TabPage. Fixes OO.o integration crasher. 2008-10-20 19:15:24 +0200 jcn  r262390 : layoutdialogs2: Ignore more. 2008-10-20 19:15:20 +0200 jcn  r262389 : layoutdialogs2: Oops, make just one (1) sort-options tab. 2008-10-20 19:15:15 +0200 jcn  r262388 : layoutdialogs2: Revert macroconf compile warnings. 2008-10-20 19:15:09 +0200 jcn  r262387 : layoutdialogs2: Fix sfx2 compile warnings. 2008-10-20 19:15:01 +0200 jcn  r262386 : layoutdialogs2: Collapsed tabpage and sort-options development. 2008-10-20 19:14:51 +0200 jcn  r262385 : layoutdialogs2: Make dev300/src680 install layout switchable at compile time. 2008-10-20 19:14:47 +0200 jcn  r262384 : layoutdialogs2: Update README, add README. 2008-10-20 19:14:43 +0200 jcn  r262383 : layoutdialogs2: Repainting, hiding stuff. 2008-10-20 19:14:38 +0200 jcn  r262382 : layoutdialogs2: Add allocateArea to VCLXTabPage. 2008-10-20 19:14:34 +0200 jcn  r262381 : layoutdialogs2: Revert "Use VCLXContainer as base for VCLXTabPage." This reverts commit 06a984434d0d2c356fd0cdaf96d6d613d5147b7c. 2008-10-20 19:14:30 +0200 jcn  r262380 : layoutdialogs2: Use VCLXContainer as base for VCLXTabPage. 2008-10-20 19:14:26 +0200 jcn  r262379 : layoutdialogs2: Revert "Derive VCLXTabPage from VBox." This reverts commit 8ab66364bdc08151ce2c982c1aa03f7881d86b84. 2008-10-20 19:14:22 +0200 jcn  r262378 : layoutdialogs2: Derive VCLXTabPage from VBox. 2008-10-20 19:14:17 +0200 jcn  r262377 : layoutdialogs2: More cleanups and testing. 2008-10-20 19:14:12 +0200 jcn  r262376 : layoutdialogs2: Get layout tabpage to nicely select. No content visible, though. 2008-10-20 19:14:07 +0200 jcn  r262375 : layoutdialogs2: Support ScTabPageSortOptions in standalone test. 2008-10-20 19:14:02 +0200 jcn  r262374 : layoutdialogs2: Support tabpage creation from xml. 2008-10-20 19:13:56 +0200 jcn  r262373 : layoutdialogs2: Remove most TEST_LAYOUT conditionals. 2008-10-20 19:13:52 +0200 jcn  r262372 : layoutdialogs2: Remove Args effort. 2008-10-20 19:13:48 +0200 jcn  r262371 : layoutdialogs2: Attempt to create ArgSet. 2008-10-20 19:13:44 +0200 jcn  r262370 : layoutdialogs2: Compile more. 2008-10-20 19:13:39 +0200 jcn  r262369 : layoutdialogs2: Add sortdlg. 2008-10-20 19:13:35 +0200 jcn  r262368 : layoutdialogs2: Oops, ID fix. 2008-10-20 19:13:30 +0200 jcn  r262367 : layoutdialogs2: Build fix. 2008-10-20 19:13:26 +0200 jcn  r262366 : layoutdialogs2: Revert "Use ::Window for plugin base iso ::Control." This reverts commit 919ddaf2f52ad5e4df877a094cd1e336888d6210. 2008-10-20 19:13:21 +0200 jcn  r262365 : layoutdialogs2: Plugin dialog cleanups. 2008-10-20 19:13:17 +0200 jcn  r262364 : layoutdialogs2: Use ::Window for plugin base iso ::Control. 2008-10-20 19:13:12 +0200 jcn  r262363 : layoutdialogs2: Use cstdio, remove cruft. 2008-10-20 19:13:07 +0200 jcn  r262362 : layoutdialogs2: Remove cruft. 2008-10-20 19:13:02 +0200 jcn  r262361 : layoutdialogs2: Remove sizing mess. 2008-10-20 19:12:57 +0200 jcn  r262360 : layoutdialogs2: Trigger [re]draw of DialControl. 2008-10-20 19:12:53 +0200 jcn  r262359 : layoutdialogs2: DialControl window behaves nicely and invisible. 2008-10-20 19:12:48 +0200 jcn  r262358 : layoutdialogs2: Revert adding of setparent. 2008-10-20 19:12:43 +0200 jcn  r262357 : layoutdialogs2: Add dialog::setparent to plugin. 2008-10-20 19:12:39 +0200 jcn  r262356 : layoutdialogs2: Add a setProperty for VCLXPlugin. 2008-10-20 19:12:34 +0200 jcn  r262355 : layoutdialogs2: Unhide plugin. 2008-10-20 19:12:30 +0200 jcn  r262354 : layoutdialogs2: Revert. 2008-10-20 19:12:25 +0200 jcn  r262353 : layoutdialogs2: Use window instead of control. 2008-10-20 19:12:20 +0200 jcn  r262352 : layoutdialogs2: Lots of plugin settings. 2008-10-20 19:12:16 +0200 jcn  r262351 : layoutdialogs2: More hacks. 2008-10-20 19:12:11 +0200 jcn  r262350 : layoutdialogs2: Compile fixes. 2008-10-20 19:12:05 +0200 jcn  r262349 : layoutdialogs2: Use c++ includes. 2008-10-20 19:12:00 +0200 jcn  r262348 : layoutdialogs2: Junk UnoTunnel nonsense. 2008-10-20 19:11:55 +0200 jcn  r262347 : layoutdialogs2: Remove more cruft. 2008-10-20 19:11:50 +0200 jcn  r262346 : layoutdialogs2: Remove cruft. 2008-10-20 19:11:44 +0200 jcn  r262345 : layoutdialogs2: Rename wrap to plugin. 2008-10-20 19:11:39 +0200 jcn  r262344 : layoutdialogs2: All sorry tries. 2008-10-20 19:11:33 +0200 jcn  r262343 : layoutdialogs2: Rename plugin to wrap. 2008-10-20 19:11:28 +0200 jcn  r262342 : layoutdialogs2: Add ifdefs, no UNOTUNNEL, no crash on exit. 2008-10-20 19:11:23 +0200 jcn  r262341 : layoutdialogs2: Redo all kind of Uno and XIface weirdness. 2008-10-20 19:11:17 +0200 jcn  r262340 : layoutdialogs2: Remove extra UnoTunnel. 2008-10-20 19:11:12 +0200 jcn  r262339 : layoutdialogs2: Plugin hello world. TODO: parenting/owning/sizing, ... etc. 2008-10-20 19:11:06 +0200 jcn  r262338 : layoutdialogs2: Zoom updates. 2008-10-20 19:11:01 +0200 jcn  r262337 : layoutdialogs2: Add missing controls. 2008-10-20 19:10:56 +0200 jcn  r262336 : layoutdialogs2: Add .gitignore.


2009-04-20  Philipp Lohmann  <pl@openoffice.org>  [203c6c2c4c823c912709de9807dc3565d8734eae]

CWS-TOOLING: rebase CWS printerpullpages to trunk@270723 (milestone: DEV300:m46)


2009-04-15  Philipp Lohmann  <pl@openoffice.org>  [fe64fd27c6aed081d9f0c825489226897e959340]

#i92516# vcl helper for new print ui options


2009-04-12  Release Engineers  <releng@openoffice.org>  [ae293bc0535a2c9f0b6902213d56d76f3ee9d97e]

CWS-TOOLING: integrate CWS macshortcuts01 2009-04-02 18:13:38 +0200 pl  r270430 : CWS-TOOLING: rebase CWS macshortcuts01 to trunk@270033 (milestone: DEV300:m45) 2009-03-04 13:02:01 +0100 pl  r268816 : make compile with oldish gtk headers 2009-03-04 11:23:41 +0100 rvojta  r268799 : Remove #ifndef MACOSX as Mac OS X X11 port is obsolote, no need to check for non Mac OS X 2009-03-03 16:33:34 +0100 rvojta  r268764 : Meta/Super to MOD3 on all Unix platforms except Mac OS X 2009-03-03 16:08:46 +0100 rvojta  r268744 : Map GDK_Meta_L/R and GDK_Super_L/R keys to KEY_MOD3 on Unix systems except Mac OS X 2009-03-03 16:04:23 +0100 rvojta  r268742 : IsMod3(), IsLeftMod3(), IsRightMod3() added 2009-03-03 16:03:48 +0100 rvojta  r268741 : MODKEY_LMOD3, MODKEY_RMOD3, MODKEY_MOD3 support 2009-02-28 00:09:26 +0100 rvojta  r268620 : New KeyCode constructors support, by default MOD3 is not used here (probably temporary solution) 2009-02-25 22:53:02 +0100 rvojta  r268469 : MOD3 support (META_DOWN_MASK) 2009-02-25 13:22:13 +0100 rvojta  r268435 : Cmd-M to minimize window, Cmd-Option-M to minimize all windows 2009-02-25 11:09:20 +0100 rvojta  r268417 : Add back F11 for non Mac OS X platforms (removed by accident in r268405) 2009-02-24 18:32:31 +0100 rvojta  r268405 : F11 replaced by Cmd-T on Mac OS X 2009-02-23 15:21:53 +0100 sb  r268358 : #i99296# support values with both xml:lang and install:module (which are moved into the spool tree, not the res tree) 2009-02-16 22:45:34 +0100 rvojta  r267839 : Multiplatform shortcuts support 2009-02-16 22:41:03 +0100 rvojta  r267838 : Use install:module instead of separate xcu file 2009-02-16 18:35:36 +0100 rvojta  r267833 : Removed accelerators target 2009-02-16 09:27:42 +0100 rvojta  r267776 : MOD3 added 2009-02-16 09:18:32 +0100 rvojta  r267775 : MOD3 support 2009-02-16 09:17:11 +0100 rvojta  r267774 : MOD3 support 2009-02-15 22:11:37 +0100 rvojta  r267773 : Check for MOD3 too 2009-02-15 22:11:15 +0100 rvojta  r267772 : Check for MOD3 too 2009-02-15 22:10:37 +0100 rvojta  r267771 : Check for MOD3 too 2009-02-15 22:10:15 +0100 rvojta  r267770 : Check for MOD3 during mouse event too 2009-02-15 22:09:54 +0100 rvojta  r267769 : IsMod3() added 2009-02-15 19:34:59 +0100 rvojta  r267768 : MOD3 added (Ctrl on Mac OS X) 2009-02-15 19:33:43 +0100 rvojta  r267767 : Cmd-M -> Ctrl-M for default format 2009-02-15 19:32:19 +0100 rvojta  r267766 : MOD3 added (Ctrl on Mac OS X) 2009-02-15 19:31:30 +0100 rvojta  r267765 : MOD3 added (Ctrl on Mac OS X) 2009-02-15 19:31:04 +0100 rvojta  r267764 : MOD3 added (Ctrl on Mac OS X) 2009-02-15 19:30:33 +0100 rvojta  r267763 : MOD3 added (Ctrl on Mac OS X) 2009-02-15 19:30:09 +0100 rvojta  r267762 : MOD3 added (Ctrl on Mac OS X) 2009-02-13 22:11:22 +0100 rvojta  r267751 : Cmd-Shift-Z for .uno:Redo 2009-02-13 22:04:19 +0100 rvojta  r267748 : F11 -> Cmd-T for .uno:DesignerDialog 2009-02-13 21:09:11 +0100 rvojta  r267743 : F11 -> Cmd-T (all occurences) 2009-02-13 19:47:21 +0100 rvojta  r267741 : accelerators target added for Mac OS X shortcuts 2009-02-13 19:46:58 +0100 rvojta  r267740 : Spreadsheet - replace F11 with Cmd-T 2009-02-13 19:24:19 +0100 rvojta  r267739 : Remove Accelerators-Mac.xcs 2009-02-13 18:50:01 +0100 rvojta  r267738 : Accelerators-Mac.xcs test 2009-02-13 18:48:10 +0100 rvojta  r267737 : Accelerators-Mac.xcu added 2009-02-13 18:46:48 +0100 rvojta  r267736 : F11 -> Cmd-T for stylist in Spreadsheet


2009-04-09  Release Engineers  <releng@openoffice.org>  [29ef79d2651922f536c8b9a082cd7e6bc8644a62]

Create DEV300_m46 milestone tag from trunk@270722


2009-04-06  Release Engineers  <releng@openoffice.org>  [0ffe98ce7089c1134a4e09de530b61cfc344e66f]

#i10000# added default case


2009-04-03  Ivo Hinkelmann  <ihi@openoffice.org>  [9b6c0f6752b74b6b1988da277e3177f936875e48]

CWS-TOOLING: integrate CWS calcsheetref_DEV300 2009-03-30 17:47:46 +0200 er  r270250 : #i100681# correctly quote sheet names


2009-04-03  Philipp Lohmann  <pl@openoffice.org>  [629066967de80532cac24d8a88a1521138f74a7b]

#i92516# localized strings for new print UI


2009-04-02  Philipp Lohmann  <pl@openoffice.org>  [8c3a85b5813de846084909e63815f5c9e2c53b1a]

#i92516# first steps in supporting new printer infrastructure


2009-04-02  Ivo Hinkelmann  <ihi@openoffice.org>  [760a525883ee333624157487b0b8cb7c7e820a10]

CWS-TOOLING: integrate CWS calc31stopper4_DEV300 2009-03-25 11:52:59 +0100 nn  r270010 : GetHTMLRangeNameList: call ScHTMLImport static method, not same method again (bug-id not available yet) 2009-03-20 14:24:51 +0100 er  r269808 : #i100416# makeExternalRefStrImpl: don't care about a second sheet name if not needed 2009-03-20 13:14:30 +0100 er  r269803 : carry along row position also for non-existing (empty) rows 2009-03-20 11:26:33 +0100 er  r269790 : SUNWS12: declarator required in declaration; removed SC_DLLPRIVATE from inner class declaration 2009-03-19 19:40:09 +0100 er  r269767 : #i100300# save only referenced tables of external data cache 2009-03-19 14:45:05 +0100 dr  r269746 : #i100346# more places where checking docshell is needed 2009-03-19 14:13:20 +0100 fs  r269744 : #i100349# do not delete the pool before all instances knowing it have been deleted 2009-03-19 11:35:45 +0100 dr  r269735 : #i100346# always check docshell, is missing when pasting from clipboard 2009-03-19 09:39:49 +0100 dr  r269728 : #i100332# remove debug statement, patch from kohei


2009-04-02  Philipp Lohmann  <pl@openoffice.org>  [7229201dc6d011d9caa81531660f458b5d5316ca]

#i92516# fix forgotten NULL ptr check


2009-10-08  hg  <hg@oosvn01.>  [792ffdccd1bf30b17ab871989af5b184ce5f547a]

merge with m44


2009-10-08  hg  <hg@oosvn01.>  [7e0dfdb79bc0a91b8de290f555595c0bc0e1bad8]

merge with m40


2009-10-08  hg  <hg@oosvn01.>  [5385d2fc5c0cd5571fca33ca31aa7a4e88cc8c08]

merge


2009-04-01  Ivo Hinkelmann  <ihi@openoffice.org>  [c5346586d66eeede35498b10c86641b7b2f919b5]

CWS-TOOLING: integrate CWS cmcfixes56 2009-03-26 14:46:13 +0100 cmc  r270080 : #i100517# merge changes of locales32 to match 2009-03-26 14:31:32 +0100 cmc  r270079 : #i100517# add some brackets and remove stray ; 2009-03-25 13:30:36 +0100 cmc  r270021 : #i100503# make tralay work again 2009-03-25 10:13:35 +0100 cmc  r269999 : #i100536# remove last unused method 2009-03-24 15:13:50 +0100 cmc  r269955 : #i100517# fix straight-forward warnings 2009-03-24 14:36:37 +0100 cmc  r269947 : #i100469# keep ia64 and arm alignments after fork-exec to signal change, but hackaround for arm to keep userlevel qemu-arm working 2009-03-24 14:02:27 +0100 cmc  r269943 : #i100223# make stl headers warning free for extra gcc 4.3 warnings 2009-03-24 13:58:15 +0100 cmc  r269942 : #i100504# drawinglayer is warning free on ix86 linux 2009-03-24 13:56:15 +0100 cmc  r269940 : #i100469# keep ia64 and arm alignments after fork-exec to signal change


2009-03-20  Release Engineers  <releng@openoffice.org>  [7abc7ddb368b49cfa32af5539e27048b76b88e7c]

Create DEV300_m44 milestone tag from trunk@269780


2009-03-17  Vladimir Glazounov  <vg@openoffice.org>  [59c84dd5d742dc5ee00158ae2aa39ca30463ff8e]

CWS-TOOLING: integrate CWS calcsoli2_DEV300 2009-02-24 21:05:58 +0100 nn  r268409 : #i99576# no optimization for tabcont.cxx on unxsoli4


2009-03-17  Vladimir Glazounov  <vg@openoffice.org>  [777a60e6503893e39e3b72edada2258535ffa1fd]

CWS-TOOLING: integrate CWS cl12_DEV300 2009-02-28 11:04:48 +0100 cl  r268621 : #i99678# correctly initialize paragraph vector for edit engine text 2009-02-27 16:16:25 +0100 dr  r268605 : #i99710# lost cloning of outlinerparaobject


2009-03-16  Vladimir Glazounov  <vg@openoffice.org>  [06708cf082cfaf2532d2d264ef99e37302667e6e]

CWS-TOOLING: integrate CWS calc31stopper3_DEV300 2009-03-12 17:41:49 +0100 er  r269429 : #i100135# reference (position and size) never changes for external references when inserting/deleting/moving cells 2009-03-12 15:29:31 +0100 dr  r269424 : #i10000# missing parentheses 2009-03-12 15:15:11 +0100 dr  r269422 : #i100148# handle empty text shapes


2009-03-16  Vladimir Glazounov  <vg@openoffice.org>  [72febf4fdb77df07987ddbd15a828a0734a646ef]

CWS-TOOLING: integrate CWS calc31stopper2_DEV300 2009-03-10 15:35:05 +0100 dr  r269277 : #i100096# allow multiselection of shapes again... 2009-03-10 10:44:13 +0100 nn  r269253 : #i100070# write chart ranges correctly, temporarily also allow wrong syntax when loading 2009-03-09 17:36:48 +0100 iha  r269207 : #i100062# charts loose data when copying from calc to impress or writer 2009-03-09 14:20:52 +0100 nn  r269108 : #i100042# ScTabViewShell::Construct: still have to check for linked sheets


2009-03-16  Vladimir Glazounov  <vg@openoffice.org>  [5e2b4fb81d439c6e740df82dc82df3e22bb65ea1]

CWS-TOOLING: integrate CWS calc31stopper_DEV300 2009-03-04 19:46:06 +0100 dr  r268863 : #i99844# do not remove broadcaster from deleted cells before broadcasting the change


2009-03-16  Vladimir Glazounov  <vg@openoffice.org>  [3def1cae7f327f6c44baab9c9083b037c4d8db86]

CWS-TOOLING: integrate CWS chartranges_DEV300 2009-03-04 08:33:56 +0100 hde  r268783 : #99762# 2009-03-02 16:31:38 +0100 nn  r268665 : #i99762# overlaps: disjoint to one side means no overlap


2009-03-13  Vladimir Glazounov  <vg@openoffice.org>  [9fb26ef0de489e75185118e79f68639a1c3513c8]

CWS-TOOLING: integrate CWS cmcfixes53 2009-03-13 14:38:36 +0100 cmc  r269480 : gcc44 problems 2009-01-07 14:40:49 +0100 cmc  r265968 : #i97835# remove some long-hanging unused methods 2009-01-07 14:16:47 +0100 cmc  r265966 : #i97833# DDE_AVAILABLE is always false in binfilter 2009-01-07 14:06:40 +0100 cmc  r265965 : #i97831# DDE_AVAILABLE is always true so remove the ifdefs to de-clutter the code


2009-03-12  Vladimir Glazounov  <vg@openoffice.org>  [85a9d1dce84d62d3bc0f895b6263c338e6dafb68]

CWS-TOOLING: integrate CWS newbaselineunxlngi 2009-02-06 09:05:24 +0100 oj  r267441 : move dll.h into the first line 2009-02-05 12:03:43 +0100 oj  r267414 : remove inlines 2009-02-05 12:03:12 +0100 oj  r267413 : remove inlines 2009-02-05 08:11:58 +0100 oj  r267407 : remove dll.pmk 2009-02-05 07:44:34 +0100 oj  r267403 : remove dll.pmk 2009-02-02 17:20:34 +0100 vg  r267279 : rebased to m41 2009-02-02 12:35:08 +0100 oj  r267259 : #i98651# include dll.pmk 2009-01-30 16:03:30 +0100 releng  r267208 : #i98603# get rid of warnings 2009-01-29 15:05:55 +0100 releng  r267146 : #i98603# revert changes 2009-01-29 15:00:24 +0100 releng  r267143 : #i98603# get rid of warnings 2009-01-29 13:02:26 +0100 releng  r267119 : #i10000# added missing dependency 2008-12-24 15:49:02 +0100 releng  r265797 : #158998# fixes for the new unxlngi baseline


2009-03-10  Release Engineers  <releng@openoffice.org>  [0da8fbf684493527022fe4005cbaed505b082ea5]

#i10000# fix from OOO310


2009-03-10  Oliver Bolte  <obo@openoffice.org>  [378f002c48f864932f674efe936b651d4d992ab2]

#i10000# WaE wntmsci12 (non pro)


2009-03-10  Oliver Bolte  <obo@openoffice.org>  [c530204078177a1a7324d6635b9d7b5d458e861d]

#i10000# WaE wntmsci12 (non pro)


2009-03-10  Release Engineers  <releng@openoffice.org>  [f983be701a1e1d01c34d5a7676715191b08f4d2b]

#i10000# WaE wntmsci12 (nonpro)


2009-03-10  Oliver Bolte  <obo@openoffice.org>  [11e79f52f24ba941d26c1b8d47f7fb58a8456be3]

#i10000# fixes from OOO310


2009-03-09  Oliver Bolte  <obo@openoffice.org>  [5d5f14ce0f2bc7344a9a193411f055a9cdda2c9f]

#i10000# fixes from OOO310


2009-03-09  Oliver Bolte  <obo@openoffice.org>  [0579d217d929b78632d79527427eb73d8d6aed7a]

#i10000# const class OutlinerParaObject has no member named Clone


2009-03-05  Oliver Bolte  <obo@openoffice.org>  [63890fc09aec82c8c8602a8edc53ec913705e4eb]

CWS-TOOLING: integrate CWS calc48 2009-02-06 17:11:50 +0100 nn  r267478 : #i98978# enableInput(TRUE) in ScFormulaReferenceHelper dtor 2009-02-04 11:54:45 +0100 nn  r267359 : #i98861# abort on failure, not on success 2009-02-02 19:10:10 +0100 nn  r267293 : #i98747# use FormulaListBox for keyboard handling 2009-02-02 18:00:26 +0100 nn  r267287 : #i98738# handle non-existing recent functions 2009-02-02 18:00:14 +0100 nn  r267286 : #i98738# handle non-existing recent functions 2009-02-02 14:16:15 +0100 nn  r267265 : #i98657# #i98737# move clean-up code from ScAnyRefDlg dtor to ScFormulaReferenceHelper dtor 2009-01-30 19:46:54 +0100 nn  r267231 : #i98658# use ctor with IControlReferenceHandler for RefEdit controls 2009-01-30 19:12:43 +0100 nn  r267225 : #i98656# IsRefInputMode: false if no function is edited 2009-01-30 18:48:12 +0100 nn  r267224 : #i98655# show function description in description area


2009-03-05  Oliver Bolte  <obo@openoffice.org>  [427bfbedc0d05a6df553d7fab3e639ac4b6badf8]

CWS-TOOLING: integrate CWS cmcfixes54 2009-02-19 17:39:12 +0100 cmc  r268301 : revert meant-to-be local-only changes in configure 2009-02-19 17:33:52 +0100 cmc  r268300 : revert meant-to-be local-only change in readlicense_oo 2009-02-19 17:31:48 +0100 cmc  r268299 : remove config_office dir from workspace, hopefully this doesn't screw things up 2009-02-05 17:38:47 +0100 cmc  r267431 : #i98367# snprintf needs stdio.h on gcc4.4 2009-01-27 10:51:54 +0100 cmc  r266964 : CWS-TOOLING: rebase CWS cmcfixes54 to trunk@266944 (milestone: DEV300:m40) 2009-01-23 10:05:33 +0100 cmc  r266774 : #i98389# fix t602 filter warnings 2009-01-22 16:37:57 +0100 cmc  r266740 : #i98367# revert limits.h as its going in elsewhere 2009-01-22 16:36:45 +0100 cmc  r266739 : #i98367# remove easy warnings 2009-01-22 16:31:49 +0100 cmc  r266738 : #i98366# merge in basic fix of #i96087# to bf_basic 2009-01-22 14:50:24 +0100 cmc  r266716 : #i98288# some versions of neon report DAV:Collection instead of Collection


2009-03-04  Oliver Bolte  <obo@openoffice.org>  [7a753c73e9bae907158ec6d7b4e14fa53186e1ea]

CWS-TOOLING: integrate CWS aw063 2009-02-12 13:10:24 +0100 aw  r267649 : #i99123# when a primitive is invisible, it is not sufficient to produce no output when decomposing, but to add invisible data using HitTestPrimitive2D. This is needed for the slideshow which relies on geometry data in MetaFiles when painting invisible objects 2009-02-12 13:08:39 +0100 aw  r267648 : #i99123# do not ignore HitTestPrimitive2D, but draw empty rectangles instead. This is needed since Slideshow is based on getting MetaFile content when painting invisible objects 2009-02-11 16:04:28 +0100 aw  r267620 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:04:10 +0100 aw  r267619 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:03:56 +0100 aw  r267618 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:03:39 +0100 aw  r267617 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:03:21 +0100 aw  r267615 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:02:48 +0100 aw  r267614 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:02:24 +0100 aw  r267613 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:02:01 +0100 aw  r267612 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:01:32 +0100 aw  r267611 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:01:05 +0100 aw  r267610 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 16:00:15 +0100 aw  r267608 : #i98788# made SfxItemPool destructor protected, added static ::Free method 2009-02-11 11:27:33 +0100 aw  r267585 : #i98788# added missing include for STL 2009-02-10 17:46:50 +0100 aw  r267570 : #i98788# added reaction on pool destruction 2009-02-10 17:11:58 +0100 aw  r267562 : #i98788# added messaging mechanism to register for pool destruction 2009-02-10 13:35:35 +0100 aw  r267549 : #i98788# removing changes, too complicated and risky for 3.1 2009-02-10 12:13:48 +0100 aw  r267546 : #i98788# 4th round 2009-02-10 12:13:37 +0100 aw  r267545 : #i98788# 4th round 2009-02-10 12:13:26 +0100 aw  r267544 : #i98788# 4th round 2009-02-10 12:13:14 +0100 aw  r267543 : #i98788# 4th round 2009-02-10 12:13:03 +0100 aw  r267542 : #i98788# 4th round 2009-02-10 12:12:50 +0100 aw  r267541 : #i98788# 4th round 2009-02-10 12:12:37 +0100 aw  r267540 : #i98788# 4th round 2009-02-08 14:38:22 +0100 aw  r267495 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:38:06 +0100 aw  r267494 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:37:48 +0100 aw  r267493 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:37:17 +0100 aw  r267492 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:56 +0100 aw  r267491 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:44 +0100 aw  r267490 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:29 +0100 aw  r267489 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:16 +0100 aw  r267488 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:36:02 +0100 aw  r267487 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-08 14:35:46 +0100 aw  r267486 : #i98788# 3rd round of changes to SfxItemPool handling 2009-02-05 12:20:39 +0100 aw  r267415 : #i98788# 2nd batch of adaptions for SfxItemPoolHolder addition 2009-02-04 15:12:54 +0100 aw  r267385 : #i98788# added newline at EOF 2009-02-04 13:26:04 +0100 aw  r267379 : #i98788# make SfxItemPool holdable 2009-02-04 13:25:40 +0100 aw  r267378 : #i98788# make SfxItemPool holdable 2009-02-04 13:25:08 +0100 aw  r267377 : #i98788# make SfxItemPool holdable 2009-02-04 13:24:42 +0100 aw  r267376 : #i98788# make SfxItemPool holdable 2009-02-04 13:23:14 +0100 aw  r267375 : #i98788# make SfxItemPool holdable 2009-02-04 13:23:02 +0100 aw  r267374 : #i98788# make SfxItemPool holdable 2009-01-29 17:08:31 +0100 aw  r267159 : #i97628# completed the fix 2009-01-29 17:08:15 +0100 aw  r267158 : #i97628# completed the fix 2009-01-29 14:09:07 +0100 aw  r267132 : #i97628# Corrected usage of ParagraphData in headers 2009-01-29 14:06:58 +0100 iha  r267131 : #i98344# incorrect font size in charts 2009-01-29 12:13:46 +0100 aw  r267115 : #i97628# back to old state; triggers too many errors in other modules 2009-01-29 12:03:51 +0100 aw  r267114 : #i97628# enabled exceptions due to STL vector include 2009-01-29 11:21:37 +0100 aw  r267107 : #i97628# added needed include 2009-01-28 17:58:29 +0100 aw  r267077 : #i97628# first version of newly implemented OutlinerParaObject and adaptions 2009-01-28 17:58:12 +0100 aw  r267076 : #i97628# first version of newly implemented OutlinerParaObject and adaptions 2009-01-28 17:57:51 +0100 aw  r267074 : #i97628# first version of newly implemented OutlinerParaObject and adaptions 2009-01-28 17:57:21 +0100 aw  r267073 : #i97628# first version of newly implemented OutlinerParaObject and adaptions 2009-01-27 17:07:33 +0100 aw  r267011 : #i98402# added support for ViewRange when exporting MetaFiles in ObjectContactOfPageView::DoProcessDisplay to avoid to paint too much 2009-01-27 11:45:48 +0100 aw  r266973 : #i98404# Added a warning to a place where a conversion to rectangle should not be copied from 2009-01-26 21:44:36 +0100 iha  r266949 : #i98497# 3D charts are rendered with wrong size 2009-01-26 20:47:07 +0100 aw  r266947 : #i98404# handle BackgroundColorPrimitive2D directly in PixelRenderers and avoid AA under all circumstances 2009-01-26 14:50:36 +0100 aw  r266926 : #i98386# secured cloning of SdrObject in IMapUserData by boost::shared_prt usage 2009-01-26 12:51:30 +0100 aw  r266916 : #i96581# added separated FontStretching and fallback for small X!=Y scale differences 2009-01-23 16:14:55 +0100 aw  r266834 : #i96475# added missing implementation of TextDecoratedPortionPrimitive2D::getB2DRange 2009-01-23 15:24:34 +0100 aw  r266826 : #i98405# fixed fallback to DrawAlphaRect to use the correctly sized rectangle 2009-01-23 13:34:43 +0100 aw  r266813 : #i96474# fixed impSplitSingleWords for an unexpected case 2009-01-23 10:47:31 +0100 aw  r266786 : #i98289#,#i96474# tooling and new flags for tasks 2009-01-23 10:47:20 +0100 aw  r266785 : #i98289#,#i96474# tooling and new flags for tasks 2009-01-23 10:47:09 +0100 aw  r266783 : #i98289#,#i96474# tooling and new flags for tasks 2009-01-23 10:46:58 +0100 aw  r266782 : #i98289#,#i96474# tooling and new flags for tasks 2009-01-23 10:46:48 +0100 aw  r266781 : #i98289#,#i96474# tooling and new flags for tasks


2009-03-04  Oliver Bolte  <obo@openoffice.org>  [f98d50e037954b075028c6fd9db12fa5e56db818]

CWS-TOOLING: integrate CWS calcperf03 2009-01-27 17:45:09 +0100 er  r267014 : satisfy some stoneage compiler (tinderbox error) 2009-01-26 13:53:16 +0100 er  r266921 : corrected merge accident 2009-01-23 23:27:18 +0100 er  r266857 : #i97468# for better accuracy use ::rtl::math::atanh() in ATANH and FISHER, tanh() in FISHERINV; patch from <regina> 2009-01-23 23:08:14 +0100 er  r266854 : #i97467# added C99 atanh() substitute rtl_math_atanh() and ::rtl::math::atanh() since not all compilers have it; patch from <regina> Plus in rtl_math_log1p() made a variable volatile to prevent compilers from being too smart. 2009-01-23 19:20:43 +0100 er  r266849 : #i95381# make PODF adapter recognize empty/missing parameter, in this case ADDRESS 3rd parameter 2009-01-23 17:34:21 +0100 er  r266841 : #i95450# support ADDRESS 3rd parameter (abs) as missing parameter 2009-01-23 15:53:23 +0100 er  r266830 : some minor beautification 2009-01-23 15:45:20 +0100 er  r266829 : small bits missed during integration of cws frmdlg 2009-01-23 02:56:38 +0100 er  r266764 : removed CVS nonsense 2009-01-23 02:50:15 +0100 er  r266763 : get rid of nasty DOS lineends 2009-01-23 01:56:09 +0100 er  r266762 : #i98318# fix crash with external references constructed via Function Wizard; also fixes crash #i98338# and WaE #i97555# 2009-01-22 15:58:41 +0100 er  r266732 : #i97547# EUROCONVERT: add SKK/EUR 2009-01-21 15:47:39 +0100 er  r266676 : CWS-TOOLING: rebase CWS calcperf03 to trunk@266428 (milestone: DEV300:m39) 2009-01-09 17:22:23 +0100 er  r266105 : #i89976# use ::std::nth_element() instead of a fully sorted array for MEDIAN, PERCENTILE, QUARTILE, LARGE, SMALL 2008-11-07 20:13:55 +0100 er  r263483 : #i95967# Broadcast: use bulk broadcast also for single cell changes as multiple identical listeners may be involved; speeds up the Zaske document to draw level with Excel 2008-11-07 20:08:37 +0100 er  r263482 : #i95967# Notify: spare a vtable access


2009-03-03  Oliver Bolte  <obo@openoffice.org>  [4304c7abdb3b7bb3a885fdbc51832daa2c4b0742]

CWS-TOOLING: integrate CWS koheiformula02 2009-02-19 13:18:02 +0100 iha  r268276 : #i99400# Missing value plotting broken 2009-02-11 03:39:50 +0100 kohei  r267579 : forgot to add an in-line comment. 2009-02-11 00:26:03 +0100 kohei  r267578 : Handle also the single cell references when exporting chart ranges. 2009-02-10 19:50:37 +0100 kohei  r267576 : removed a compiler warning. 2009-02-10 06:48:55 +0100 kohei  r267536 : got xls export filter to correctly write external references in charts. However, Excel doesn't entirely like my chart output if the chart contains external references.  The data are all there, but it refuses to draw it. It works fine with charts with internal references. 2009-02-10 03:33:13 +0100 kohei  r267533 : correctly import external references used in chart objects, by using a token array instead of a range list to represent the data ranges. 2009-02-04 15:22:30 +0100 kohei  r267387 : return aRet instead of the sRangeRepresentation, just to be consistent with the rest of the code there.  Both strings are empty so this is just for aesthetic reasons. 2009-02-04 15:07:49 +0100 kohei  r267384 : #i98872# allow export of empty data range, in order to allow saving of documents with an empty chart. 2009-02-03 19:20:38 +0100 kohei  r267340 : #i98801# added a special case handler for parsing range address syntax used by the older version of OOo.  In the old syntax, the sheet name was dropped for the 2nd reference of a range if the 1st and 2nd references are on the same sheet.  In the new syntax this is not the case. Also fixed unintential display of the sheet name for the end range address of a single-sheet range. 2009-01-28 20:46:11 +0100 kohei  r267085 : call GetIndex() and GetString() only when the token is external ref, to avoid triggering assertions in a non-pro build. 2009-01-28 19:30:58 +0100 kohei  r267080 : When listeners are being destroyed, don't bother unregistering them with the external ref manager if the document itself is being destroyed. 2009-01-28 18:56:52 +0100 kohei  r267079 : fixed a heap corruption.  The Table instance stores instances of FormulaToken type, not of ScAddress type. 2009-01-26 18:59:14 +0100 kohei  r266945 : removed another warning on win32 build. 2009-01-26 18:50:56 +0100 kohei  r266943 : removed warnings on windows build. 2009-01-26 17:16:09 +0100 kohei  r266939 : added const to a returned reference value that is never used to modify its value. 2009-01-26 16:49:33 +0100 kohei  r266937 : Assume that the document instance is not null, or else don't copy any data at all. 2009-01-26 16:19:50 +0100 kohei  r266935 : create a clone of ScChart2DataSeqeunce without calling its copy constructor, since explicit definition of copy constructor would cause a serious compiler warning that's too ugly to fix. 2009-01-26 05:26:58 +0100 kohei  r266894 : removed unused variable and changed function signature. 2009-01-26 05:02:58 +0100 kohei  r266893 : removed unused variables to remove compiler warnings. 2009-01-25 18:07:31 +0100 kohei  r266890 : fixed indentation inconsistencies in ctor initializers. 2009-01-25 18:01:41 +0100 kohei  r266889 : * removed a compiler warning. * tab -> whitespace conversion in some code. 2009-01-25 03:57:37 +0100 kohei  r266888 : removed a mis-leading comment. 2009-01-25 02:37:45 +0100 kohei  r266887 : * moved the ref token join method from chart2uno local to ScRefTokenHelper. * a little code cleanup. 2009-01-24 09:29:26 +0100 kohei  r266865 : Don't re-link external files if their link has been broken once. 2009-01-24 09:16:28 +0100 kohei  r266864 : a typo in an in-line comment. 2009-01-24 09:14:29 +0100 kohei  r266863 : Treat non-cached cells as empty cells only when the source document is not reachable. 2009-01-24 07:23:44 +0100 kohei  r266862 : Don't purge the external ref cache when the link is broken. 2009-01-24 03:25:46 +0100 kohei  r266861 : When a cell outside the cached range is queried, we should return an emtpy cell token instead of NULL, to be consistent with the old behavior. 2009-01-24 02:34:38 +0100 kohei  r266860 : Remove corresponding listeners when an external doc link is broken. 2009-01-23 23:18:44 +0100 kohei  r266856 : more work on handling external ref update listeners. 2009-01-23 18:10:09 +0100 kohei  r266846 : Handle loading of chart objects when their external link is updated. 2009-01-23 06:57:34 +0100 kohei  r266765 : more work on ref-tokenizing ScChartListener. 2009-01-22 22:57:52 +0100 kohei  r266760 : More work on moving ref token helper code to reftokenhelper & ref-tokenizing ScChartListener. 2009-01-22 21:52:38 +0100 kohei  r266758 : moved the code that converts XML range string into Calc's internal range string from chart2uno to rangeutl & compile the range string to generate ref tokens upon ods import. 2009-01-22 18:56:14 +0100 kohei  r266749 : fixed a build breakage. 2009-01-22 18:53:43 +0100 kohei  r266748 : Initial work toward using ref tokens in ScChartListener class.  I'll start moving some of local ref token handling functions from chart2uno.cxx to ScRefTokenHelper class to make them available in other places. 2009-01-22 17:38:20 +0100 kohei  r266746 : Add a big, fat warning against mixed use of ScSharedTokenRef and ScTokenRef. 2009-01-22 08:33:28 +0100 kohei  r266711 : #i98338# fixed slicing of external ref token classes by adding their own Clone() method. 2009-01-22 05:02:25 +0100 kohei  r266710 : Applied the same fix that npower/oj applied to fix a crasher (from #i98317#). 2009-01-21 23:02:42 +0100 kohei  r266705 : fix build breakages as a result of rebase to m39.  Mostly due to the new formula  module and its associated changes esp. wrt token classes. 2009-01-21 19:14:40 +0100 kohei  r266699 : CWS-TOOLING: rebase CWS koheiformula02 to trunk@266428 (milestone: DEV300:m39) 2009-01-21 17:55:10 +0100 kohei  r266698 : moved the shared ScToken typedef to token.hxx, and use it instead of ScChart2TokenRef, since I need this typedef in the odf importer.  In the future this can also replace the similar typedef in ScExternalRefManager. 2009-01-21 06:54:04 +0100 kohei  r266627 : Added external ref listener framework so that objects listening to external ref changes can get notified when the link is updated. The work is not done yet. 2009-01-20 23:07:38 +0100 kohei  r266626 : When exporting a range to ODF, we don't want to prepend a sheet name with '$' even for an external sheet. 2009-01-20 23:06:40 +0100 kohei  r266625 : 1) code cleanup to remove compiler warnings. 2) fixed convertRangesToXML to convert ref tokens into correct ODF range format. 2009-01-20 19:40:45 +0100 kohei  r266620 : extracted the code that fills cache from external ref into its own method. 2009-01-20 18:26:47 +0100 kohei  r266616 : added javadoc parameter descriptions. 2009-01-20 18:01:17 +0100 kohei  r266615 : disable ScChart2EmptyDataSequence entirely since that class doesn't appear to be used any more. 2009-01-20 17:42:59 +0100 kohei  r266608 : fixed a crash when the data source range is empty at time of chart creation. 2009-01-20 17:13:34 +0100 kohei  r266601 : a simple locale variable rename. 2009-01-20 16:57:04 +0100 kohei  r266598 : #i97563# applied my patch, to fix incorrect export attempts of color values as a number formatter key, and change the condition of one assertion to prevent it from being triggered incorrectly in non-pro build. 2009-01-17 07:41:01 +0100 kohei  r266458 : a little code cleanup. 2009-01-17 07:30:48 +0100 kohei  r266457 : removed a method that it no longer used. 2009-01-17 07:29:15 +0100 kohei  r266456 : fixed a crash when no external data is available for a given range. 2009-01-17 07:14:50 +0100 kohei  r266455 : Even more work on range list to ref token migration.  The chart now retains external data after editing of chart. 2009-01-16 18:54:35 +0100 kohei  r266453 : More work on replacing flat ranges and addresses with ref tokens. 2009-01-16 17:07:51 +0100 kohei  r266438 : extracted a large code block into its own local method. 2009-01-16 15:22:57 +0100 kohei  r266423 : Initial work toward replacing the chart positioner and its related code in order to use reference tokens instead of range list.  The basis of that code is the old ScChartPositioner and ScChartPositionMap duplicated to avoid breaking any existing legacy code that might still use it.  It appears to be used by the StarOffice 1.0 filter only. Still not working with the external references. 2009-01-15 05:33:39 +0100 kohei  r266334 : renamed chackRanges() to overlaps() to make it more descriptive of what it does. 2009-01-13 23:25:50 +0100 kohei  r266260 : Moved the token-to-string conversion code up so that other parts of the code can use it. 2009-01-13 22:14:35 +0100 kohei  r266256 : generateLabels() now uses reference token list. 2009-01-13 18:42:23 +0100 kohei  r266246 : Finally, build data array for external data sources.  This will now allow the data to be displayed in the diagram. 2009-01-13 16:34:03 +0100 kohei  r266235 : We now need to verify range representation by compiling it instead of parsing it. 2009-01-13 15:41:48 +0100 kohei  r266230 : cosmetic function name change & added javadoc comment for it. 2009-01-13 06:32:06 +0100 kohei  r266194 : Fixed a typo. 2009-01-13 06:04:23 +0100 kohei  r266193 : Generate data source range string by compiling reference tokens.  This way we can also display external reference addresses correctly. 2009-01-13 05:55:44 +0100 kohei  r266192 : moved compileRangeRepresentation from being a class member method to a local function. 2009-01-13 05:41:53 +0100 kohei  r266191 : nuked one unused method & tab -> whitespace conversion. 2009-01-13 05:35:10 +0100 kohei  r266190 : A little code cleanup & consolidated all range-joining code into a single function object class. 2009-01-13 03:58:51 +0100 kohei  r266189 : removed the unused method. 2009-01-13 03:53:01 +0100 kohei  r266188 : This time I (hopefully) fixed the range consolidation problem for real.  I forgot to join the missing upper-left corner cell with the existing range list.  Also, I needed to join ranges recursively instead of just doing it once. 2009-01-13 02:15:48 +0100 kohei  r266187 : fixed the "add corner if missing" thing. 2009-01-12 23:36:19 +0100 kohei  r266185 : More work on range list -> ref tokens. 2009-01-12 23:12:28 +0100 kohei  r266184 : More work on switching to reference tokens from range list.  Still in progress. 2009-01-10 08:15:39 +0100 kohei  r266125 : More code change for switching to reference tokens, especially in ScChart2DataProvider. Created another addUpperLeftCornerIfMissing method that can take a list of reference tokens instead of range list. 2009-01-09 19:22:33 +0100 kohei  r266110 : entirely removed the range list data member from ScChart2DataSequence class.  From now on we will use a list of tokens to track data source ranges. Now, if I haven't introduced any bugs in the process, normal charts with no external references should work as before.  But I still need to get the external refs to work. 2009-01-09 19:11:45 +0100 kohei  r266108 : Convert ranges to token list before instantiating ScChart2DataSequence. 2009-01-09 18:27:13 +0100 kohei  r266107 : Extracted a common code block into its own method. 2009-01-09 18:18:36 +0100 kohei  r266106 : More progress on chart2uno implementation change.  Still more to do. 2009-01-09 06:24:36 +0100 kohei  r266043 : another place to swap the use of range list with token list. 2009-01-09 06:18:57 +0100 kohei  r266042 : Started re-working the chart2uno implementation, to use a list of ScToken instances instead of ScRangeList, to keep track of data source ranges. This way, the chart2uno code can tell whether the ranges are external or internal, and act accordingly. I'm not finished with it yet.  Some things are still not working. 2009-01-08 19:28:51 +0100 kohei  r266034 : yet another place to hardcode CONV_OOO for cell range address parsing. 2009-01-08 19:19:21 +0100 kohei  r266033 : transferred the BuildArray() method from the koheichart01 cws and its associated changes. I need to be changing code around this area, and I don't want to redo my changes once koheichart01 gets integrated for 3.2. 2009-01-08 18:07:08 +0100 kohei  r266030 : Have convertRangeFromXML convert external ranges into the appropriate OOO A1 format. I also added a helper method to append a table name because this is useful in a lot of other places. 2009-01-07 06:57:52 +0100 kohei  r265944 : These places also need a hard-coded CONV_OOO address convention, for Excel chart import and export to function properly. 2009-01-06 16:41:07 +0100 kohei  r265932 : removed unused variable. 2009-01-06 16:30:36 +0100 kohei  r265931 : removed unused ScDPCacheTable::GroupFilter::setMatchIfFound() method and its associated member variable (per Caolan's callcatcher output).  I added that method to allow reverse matching in some code but later retracted that logic. I guess I forgot to remove the method itself afterwards... 2009-01-06 06:39:51 +0100 kohei  r265891 : #i97735# Always write cell and cell range addresses using the OOo A1 (CONV_OOO) address convention when exporting to ODF, regardless of current address convention.  Same for reading from ODF documents. 2009-01-06 05:46:40 +0100 kohei  r265890 : #i94696# Use the current address convention in the chart wizard dialog.


2009-03-03  Oliver Bolte  <obo@openoffice.org>  [14558e45e1f8bec3352443cd61ef0d1ddf6d927e]

CWS-TOOLING: integrate CWS chart35 2009-02-20 12:33:54 +0100 nn  r268312 : correct line ends 2009-01-19 12:50:45 +0100 iha  r266491 : #i91800# style:text-position='0' is wrongly imported 2009-01-19 11:59:09 +0100 iha  r266486 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-16 16:45:50 +0100 iha  r266435 : #i93802# clockwise does not work on solars sparc 2009-01-16 13:23:37 +0100 iha  r266414 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-15 14:09:27 +0100 iha  r266370 : #i98102# checkbox show equation should not be checked initially 2009-01-14 17:41:33 +0100 iha  r266323 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 16:23:06 +0100 iha  r266316 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 13:43:38 +0100 iha  r266298 : #i84417# Unable to edit existing chart title with clipboard 2009-01-14 13:43:04 +0100 iha  r266297 : #i84417# Unable to edit existing chart title with IME 2009-01-14 13:14:15 +0100 dr  r266293 : do not set CharEscapement property if not needed 2009-01-14 00:48:46 +0100 er  r266262 : #i81383# changed ASC and JIS to use transliteration provided by i18n transliteration; patch from <bluedwarf> 2009-01-14 00:28:06 +0100 er  r266261 : #i97536# silence gcc's unbracketed && || warnings 2009-01-13 22:43:45 +0100 er  r266259 : #i97905# corrected IndexKey order 2009-01-13 20:36:15 +0100 er  r266254 : #i97905# add SKK/EUR conversion (plus MTL/EUR and CYP/EUR) 2009-01-13 20:31:17 +0100 er  r266253 : #i97905# updated locale data; contributed by <brko> 2009-01-13 11:57:08 +0100 iha  r266204 : #i84103# cannot set data in xy diagram in draw 2009-01-12 20:29:37 +0100 nn  r266181 : #i97680# GetStylesContainer: handle non-available style family 2009-01-12 19:53:19 +0100 nn  r266180 : #i98000# don't get initial zoom value via SfxViewFrame::Current 2009-01-12 16:11:19 +0100 iha  r266166 : #i71686# XY charts without valid x values are not imported correctly from Excel 2009-01-09 17:10:20 +0100 iha  r266102 : #i95051# truncated asian strings on scale tabpage 2009-01-09 15:58:46 +0100 iha  r266094 : #i89430# truncated asian strings in smooth lines dialog 2009-01-09 13:09:14 +0100 iha  r266076 : #i94813# importing pie chart with multiline categories crashes


2009-03-02  Oliver Bolte  <obo@openoffice.org>  [892b1b9a225cb733fb67855f14dc5bdeb3f833ac]

CWS-TOOLING: integrate CWS dr66 2009-01-22 15:51:40 +0100 dr  r266730 : #i98028# moved to CWS dr66 2009-01-22 15:50:28 +0100 dr  r266729 : #i98028# moved to CWS dr66 2009-01-20 16:25:49 +0100 dr  r266595 : #i98282# resolve palette colors while loading chart gradients (convert back to unx lineends...) 2009-01-20 16:23:19 +0100 dr  r266594 : #i98282# resolve palette colors while loading chart gradients 2009-01-19 15:43:57 +0100 dr  r266507 : #i97900# move fix to CWS dr66 2009-01-19 15:40:28 +0100 dr  r266506 : #i97900# move fix to CWS dr66 2009-01-19 15:20:14 +0100 dr  r266505 : #i98141# correctly update note position while switching LTR/RTL mode of sheet 2009-01-06 10:28:02 +0100 dr  r265899 : CWS-TOOLING: rebase CWS dr66 to trunk@265758 (milestone: DEV300:m38) 2008-11-13 13:59:02 +0100 dr  r263644 : #i10000# merge problems 2008-11-13 13:25:15 +0100 dr  r263639 : #i10000# merge problems 2008-11-13 13:22:58 +0100 dr  r263638 : #i10000# merge problems 2008-11-13 13:22:25 +0100 dr  r263637 : #i10000# merge problems 2008-11-12 13:40:46 +0100 dr  r263595 : #i10000# merge problem 2008-11-12 11:34:51 +0100 dr  r263583 : CWS-TOOLING: rebase CWS dr66 to trunk@263288 (milestone: DEV300:m35) 2008-11-11 16:58:11 +0100 dr  r263568 : CWS-TOOLING: rebase CWS dr66 to trunk@262087 (milestone: DEV300:m33) 2008-10-27 14:38:34 +0100 dr  r262675 : migrate CWS dr66 to SVN


2009-02-24  Release Engineers  <releng@openoffice.org>  [90373d21c57a3c2ec206c43fd8f4fe7d8ece8f06]

Create DEV300_m42 milestone tag from trunk@268394


2009-02-20  Oliver Bolte  <obo@openoffice.org>  [67a611e713d7fbc2e19a72db2d023de3e2e1ec05]

#i99305#,#i99132# remove DOS lineends, remove solenv/unxmacxp/inc/poll.h


2009-02-18  Oliver Bolte  <obo@openoffice.org>  [83c1a61405ba54de078b2a71a168d562bdede911]

CWS-TOOLING: integrate CWS mba31issues01 2009-01-28 12:14:00 +0100 mba  r267052 : #i97267#: wrong license file 2009-01-28 11:52:05 +0100 mba  r267048 : #i97267#: add dependency to readlicense_oo as some dicts use the OOo license files 2009-01-26 15:47:05 +0100 mba  r266934 : correct mistake 2009-01-26 15:42:20 +0100 mba  r266933 : #i97403#: new english dictionaries 2009-01-26 15:40:20 +0100 mba  r266931 : #i97403#: new english dictionaries 2009-01-26 15:37:32 +0100 mba  r266930 : #i92532#: new dictionaries and hyphenation 2009-01-26 15:36:10 +0100 mba  r266929 : #i97403#: new canadian dictionaries; remove bogus dependencies 2009-01-26 15:34:38 +0100 mba  r266928 : #i97403#: new canadian dictionaries 2009-01-26 09:58:18 +0100 mba  r266907 : fixed warning 2009-01-26 09:53:09 +0100 mba  r266906 : fixed warning 2009-01-25 20:22:32 +0100 mba  r266892 : #i87495#: new property 2009-01-25 18:29:54 +0100 mba  r266891 : #i96422#: new serbian dictionary 2009-01-25 00:37:28 +0100 mba  r266886 : added include 2009-01-24 18:13:17 +0100 mba  r266884 : CWS-TOOLING: rebase CWS mba31issues01 to trunk@266428 (milestone: DEV300:m39) 2009-01-24 11:34:07 +0100 mba  r266869 : #i69705#: make nPageCnt a member 2009-01-24 11:30:44 +0100 mba  r266868 : #i97490#: harmonize treatment of different protocols in hyperlinks 2009-01-24 11:16:07 +0100 mba  r266867 : #i96422#: serbian dictionary 2009-01-21 17:29:33 +0100 mba  r266693 : #i94743#: wrong return value after importing meta data 2009-01-16 18:49:21 +0100 mba  r266451 : #i87495#: remove last change 2009-01-16 18:49:04 +0100 mba  r266450 : #i87495#: remove last change 2009-01-16 18:47:43 +0100 mba  r266448 : #i87495#: support for setting PaperBin via API 2009-01-16 18:36:10 +0100 mba  r266446 : #i87495#: support for setting PaperBin via API 2009-01-16 18:35:53 +0100 mba  r266445 : #i87495#: support for setting PaperBin via API 2009-01-16 18:34:56 +0100 mba  r266444 : #159083#: set additional printoptions before printing 2009-01-16 17:00:48 +0100 mba  r266437 : #159083#: always create printhelper 2009-01-16 15:39:41 +0100 mba  r266427 : prevent adding of OOo licence file 2009-01-15 14:47:08 +0100 mba  r266374 : #i84010#: check for missing clipboarddoc 2008-12-05 18:11:04 +0100 mba  r264913 : #i92871#: update of swedish dictionary 2008-12-05 18:08:41 +0100 mba  r264912 : #i92871#: update of swedish dictionary 2008-12-03 14:56:16 +0100 mba  r264788 : #i69705#: nPageCnt must be a member variable 2008-12-03 14:55:40 +0100 mba  r264787 : #i69705#: nPageCnt must be a member variable 2008-12-03 12:13:52 +0100 mba  r264765 : #i96422#: serbian dictionaries 2008-12-03 12:13:36 +0100 mba  r264764 : #i96422#: serbian dictionaries 2008-12-03 11:59:10 +0100 mba  r264763 : #i96422#: serbian dictionaries 2008-12-03 11:26:19 +0100 mba  r264757 : #i94562#: australian dictionary 2008-12-03 11:22:39 +0100 mba  r264756 : #i94562#: australian dictionary; #i88025#: canadian spell checking 2008-12-03 11:21:03 +0100 mba  r264755 : #i94562#: australian dictionary 2008-12-03 11:20:00 +0100 mba  r264754 : #i94562#: australian dictionary 2008-12-03 10:56:29 +0100 mba  r264751 : #i75458#: added optional service 2008-12-03 10:39:54 +0100 mba  r264750 : #i96058#: missing parenthesis


2009-02-17  Oliver Bolte  <obo@openoffice.org>  [24f135cce1f7f4cff91299a084563bdb2eb95520]

CWS-TOOLING: integrate CWS dba31h 2009-01-29 10:47:07 +0100 oj  r267102 : decl OpCodeMap as friend 2009-01-26 09:41:21 +0100 fs  r266905 : #i97137# 2009-01-26 09:10:39 +0100 fs  r266903 : #i10000 2009-01-26 09:00:17 +0100 fs  r266901 : re-enable user admin for MySQL native 2009-01-23 21:56:08 +0100 fs  r266851 : #i97137# 2009-01-23 21:32:40 +0100 fs  r266850 : #i97042# 2009-01-23 11:23:59 +0100 msc  r266800 : #i98387# 2009-01-23 11:17:05 +0100 msc  r266798 : #i98387# 2009-01-23 10:56:33 +0100 fs  r266795 : for the moment, disable user administration for MySQL native 2009-01-21 15:08:54 +0100 fs  r266672 : removed some advanced settings for MySQL native - letting the user control them does not make sense for this particular type 2009-01-21 13:55:13 +0100 oj  r266668 : #i98317# wrong var set 2009-01-21 13:41:22 +0100 fs  r266664 : #i98315# 2009-01-21 13:13:09 +0100 oj  r266661 : #i97032# enable locking for OOo 2009-01-21 13:11:26 +0100 oj  r266660 : #i97032# enable locking for OOo 2009-01-21 10:10:50 +0100 oj  r266634 : #i98174# merge conflict resolved 2009-01-21 08:48:58 +0100 fs  r266628 : CWS-TOOLING: rebase CWS dba31h to trunk@266428 (milestone: DEV300:m39) 2009-01-20 12:54:32 +0100 fs  r266570 : #i98277# 2009-01-19 10:46:31 +0100 fs  r266480 : #i97995# 2009-01-19 08:42:09 +0100 fs  r266470 : #i97042# provided my mod@openoffice.org: support more SQL comment styles 2009-01-19 07:55:43 +0100 oj  r266468 : #i98115# check function name as well 2009-01-16 10:21:28 +0100 oj  r266404 : #i97861# remove invalid assertion 2009-01-16 10:18:31 +0100 oj  r266403 : #i97861# ini var with false 2009-01-15 14:09:50 +0100 oj  r266371 : #i97810# saveas fix 2009-01-15 11:54:18 +0100 oj  r266360 : remove : from mysql 2009-01-15 11:07:46 +0100 oj  r266355 : insert JNI fixes for method names 2009-01-15 10:54:44 +0100 oj  r266351 : fix for parameter subst 2009-01-14 14:41:34 +0100 oj  r266308 : parameter subst 2009-01-14 14:40:20 +0100 oj  r266307 : add missing try catch 2009-01-14 14:38:34 +0100 oj  r266306 : new service for parameter subst 2009-01-14 14:37:52 +0100 oj  r266305 : missing types for hyper 2009-01-09 15:28:36 +0100 fs  r266090 : #i97889# 2009-01-09 14:16:15 +0100 fs  r266082 : #i97892# provided by npower: when reading the xlink:href attrib, use the graphic resolver only if appropriate 2009-01-08 21:31:21 +0100 fs  r266041 : #i97346# 2009-01-08 14:51:56 +0100 fs  r266012 : #i97871# showPreviewFor: bail out if preview is disabled


2009-02-17  Oliver Bolte  <obo@openoffice.org>  [1d7a193c938c938abc5b47627b4415f1f769d7fb]

CWS-TOOLING: integrate CWS tbe36 2009-01-28 10:38:01 +0100 oc  r267034 : #i98551 2009-01-22 19:39:48 +0100 tbe  r266755 : #i97876# Spreadsheet data changes are not notified 2009-01-20 15:39:37 +0100 tbe  r266590 : CWS-TOOLING: rebase CWS tbe36 to trunk@266428 (milestone: DEV300:m39) 2009-01-15 17:52:50 +0100 tbe  r266388 : #i97876# Spreadsheet data changes are not notified 2009-01-09 17:08:22 +0100 tbe  r266101 : #i97876# Spreadsheet data changes are not notified


2009-02-16  Oliver Bolte  <obo@openoffice.org>  [c81406062d86fe84cee0379cf1aa69459a424c2d]

#i10000# see also MWS fix on OOO310_m1


2009-02-13  Oliver Bolte  <obo@openoffice.org>  [62fe88b126e40e69aa2fad5d3bdca8f6009cc907]

CWS-TOOLING: integrate CWS npower11 2009-01-21 11:00:00 +0100 npower  r266639 : replace ScAddress::CONV_XL_R1C1 with formula::FormulaGrammar::CONV_XL_R1C1 2009-01-21 10:58:33 +0100 npower  r266638 : fixup access for changes to compiler.[ch]xx 2009-01-21 10:57:46 +0100 npower  r266637 : replace the static with non-static  member ( to align with the latest m39 ) changes 2009-01-20 11:53:52 +0100 npower  r266562 : CWS-TOOLING: rebase CWS npower11 to trunk@266428 (milestone: DEV300:m39) 2009-01-09 23:31:00 +0100 cloph  r266122 : fix typo (missing "="), initialize variables to avoid WaE breakage 2009-01-09 11:57:20 +0100 npower  r266071 : wae Mac OSX gcc-4.0.1 (PPC) 2009-01-08 11:09:49 +0100 npower  r265986 : wae - Mac OSX gcc-4.0.1 (PPC) 2009-01-07 10:33:20 +0100 npower  r265952 : wae Mac OSX gcc-4.0.1 2008-12-18 19:14:10 +0100 npower  r265712 : wae for wntmsci12 target 2008-12-17 16:14:54 +0100 npower  r265640 : add Outline property for Font, also remove growing list of friend classes for ScCellRangeObj and replace by a single class. 2008-12-17 16:11:02 +0100 npower  r265639 : fix path variable for 3.1, also tweak the unix logs 2008-12-11 02:39:58 +0100 hanbo  r265233 : fix the vba/vba namespace of constants 2008-11-25 17:05:39 +0100 npower  r264317 : namespace changes 2008-11-25 14:12:37 +0100 npower  r264308 : revert changes made by mistake when migrating cws 2008-11-25 13:30:59 +0100 npower  r264296 : i#93944# namespace changes 2008-11-25 13:29:25 +0100 npower  r264293 : i#93944# namespace changes 2008-11-25 13:27:08 +0100 npower  r264289 : i#93944# namespace changes 2008-11-24 18:24:17 +0100 npower  r264263 : svn migration 2008-11-24 18:22:47 +0100 npower  r264262 : not needed anymore 2008-11-24 18:21:23 +0100 npower  r264261 : svn migration 2008-11-24 18:18:31 +0100 npower  r264260 : svn migration


2009-02-11  Oliver Bolte  <obo@openoffice.org>  [0b423770754b274dd9de2147a8b38e41af184a77]

CWS-TOOLING: integrate CWS tbe35 2008-12-15 15:10:58 +0100 tbe  r265503 : CWS-TOOLING: rebase CWS tbe35 to trunk@264807 (milestone: DEV300:m37) 2008-12-11 17:12:58 +0100 tbe  r265335 : #i90682# formatting failed when first character is '-', '+' or '=' 2008-12-10 18:59:13 +0100 nn  r265228 : #i96930# invalidate sort toolbar slots in SelectionChanged 2008-12-09 15:58:45 +0100 nn  r265111 : #i77853# InitDocShell: SetLayoutRTL 2008-12-03 15:54:50 +0100 tbe  r264795 : #i94841# [Collaboration] When deleting rows is rejected, the content is sometimes wrong 2008-11-14 16:13:21 +0100 tbe  r263682 : #i95212# [Collaboration] Bad handling of row insertion in shared spreadsheet


2009-01-29  Rüdiger Timm  <rt@openoffice.org>  [39c33b91931f789899c7b0a3c616eb330c65a7ae]

CWS-TOOLING: integrate CWS metropatch01_DEV300


2009-01-29  Kurt Zenker  <kz@openoffice.org>  [e6d6b4e91742d189ce523390dbf942a5aebcdee3]

CWS-TOOLING: integrate CWS cmcfixes52 2009-01-05 10:49:04 +0100 cmc  r265860 : #i97763# remove low-hanging warnings


2009-01-28  Kurt Zenker  <kz@openoffice.org>  [8e6e558331ed35d49a739867ec39481d7ebde6e2]

CWS-TOOLING: integrate CWS cwscheckapi7 2009-01-23 12:09:08 +0100 cn  r266805 : #i98006 update lists 2009-01-23 11:57:02 +0100 cn  r266802 : #i98340# fix xdebug variable 2009-01-23 11:03:32 +0100 cn  r266796 : #i98006 update lists 2009-01-14 12:06:52 +0100 cn  r266275 : #i98006# update lists 2009-01-14 09:39:37 +0100 cn  r266268 : #i98006# update lists 2009-01-12 22:24:51 +0100 cn  r266182 : #i98006# update lists


2009-01-26  Release Engineers  <releng@openoffice.org>  [9619fdb060528bbe6c00f8a766d2174845ec08e3]

Create DEV300_m40 milestone tag from trunk@266942


2009-01-23  Vladimir Glazounov  <vg@openoffice.org>  [0f0677a5e907deb8c625a790bed01ada8678dff6]

#i10000# get rid of warnings on windows


2009-01-21  Vladimir Glazounov  <vg@openoffice.org>  [a66f1274225e8a12252e0b3493606ee56a9090d9]

CWS-TOOLING: integrate CWS fwk95 2009-01-15 13:24:14 +0100 cd  r266366 : #i96390# Change method name to use UNO AWT style for mnemonics 2009-01-15 13:23:30 +0100 cd  r266365 : #i96390# Change method name to use UNO AWT style for mnemonics 2009-01-12 17:25:13 +0100 cd  r266174 : #i97983# Check pointer returned by dynamic_cast 2009-01-12 15:31:40 +0100 cd  r266162 : #i97983# Create toolkit popup menus via service manager instead of implementation class 2008-12-11 15:04:34 +0100 cd  r265305 : #i95863# Remove user defined properties 2008-12-11 14:56:45 +0100 cd  r265302 : #i95606# Update documentation for textfields 2008-12-11 10:06:20 +0100 cd  r265250 : #i96390# Fix warning on Solaris compiler 2008-12-09 17:27:32 +0100 cd  r265119 : CWS-TOOLING: rebase CWS fwk95 to trunk@264807 (milestone: DEV300:m37) 2008-12-01 13:29:43 +0100 cd  r264597 : #i96390# New interfaces and structures for complete UNO AWT menu API 2008-12-01 13:25:22 +0100 cd  r264596 : #i96390# Added implementation of the new UNO AWT interfaces and structures for menus 2008-11-28 13:55:19 +0100 cd  r264553 : #i96640# Fixed wrong property type for MenuBarCloser 2008-11-28 13:53:56 +0100 cd  r264552 : #i96621# Fixed ambiguous usage of && and || 2008-11-18 16:05:45 +0100 cd  r263781 : #i95316# Initialize SvtTabAppearanceCfg to enable system settings changed notiifcation code 2008-11-18 16:05:43 +0100 cd  r263780 : #i96155# Fix wrong statement to check for enabled argument 2008-10-20 16:54:37 +0200 cd  r262328 : #i10000# migrate CWS fwk95 to SVN.


2009-01-21  Vladimir Glazounov  <vg@openoffice.org>  [19674e9936942c9a91024e910ea5a55db05e7ec2]

CWS-TOOLING: integrate CWS rtlchart03 2009-01-08 16:18:26 +0100 iha  r266022 : build error due to warnings 2009-01-07 12:05:50 +0100 iha  r265958 : #i91970# RTL Chart: legend symbols should be on the right side in case of right-to-left writing direction 2009-01-05 15:47:13 +0100 iha  r265876 : CWS-TOOLING: rebase CWS rtlchart03 to trunk@265758 (milestone: DEV300:m38) 2008-11-26 20:45:14 +0100 iha  r264434 : CWS-TOOLING: rebase CWS rtlchart03 to trunk@264325 (milestone: DEV300:m36) 2008-11-20 10:08:30 +0100 iha  r264033 : #i91968#:legend should be on the left per default in rtl mode - migrate CWS rtlchart03 to SVN. 2008-11-20 10:03:10 +0100 iha  r264032 : #i96215#: context menu pops up at wrong position in rtl mode - migrate CWS rtlchart03 to SVN. 2008-11-20 10:00:45 +0100 iha  r264031 : #i91763#: repaint errors on rtl charts - migrate CWS rtlchart03 to SVN. 2008-11-20 09:42:50 +0100 iha  r264029 : #i91963#: reverse x-axis per default for an Arabic version- migrate CWS rtlchart03 to SVN.


2009-01-20  Vladimir Glazounov  <vg@openoffice.org>  [e0b53e8524e0d9c1a88bc206952c54b27a248050]

CWS-TOOLING: integrate CWS mingwport16 2009-01-15 13:11:20 +0100 releng  r266363 : tidy-up tabs 2008-11-28 15:33:23 +0100 tono  r264557 : i95203: mingw build without stlport 2008-11-22 07:19:50 +0100 tono  r264180 : i96436: make mingw bridge conform with reg-struct-return 2008-11-22 05:14:58 +0100 tono  r264179 : i96436: make mingw bridge conform with reg-struct-return 2008-11-21 17:09:04 +0100 tono  r264153 : i95203: mingw build without stlport 2008-11-21 16:59:55 +0100 tono  r264152 : i96436: make mingw bridge conform with reg-struct-return 2008-11-21 16:59:18 +0100 tono  r264151 : i96436: make mingw bridge conform with reg-struct-return 2008-11-21 16:57:01 +0100 tono  r264150 : i96436: make mingw bridge conform with reg-struct-return 2008-11-21 16:53:19 +0100 tono  r264149 : i96100: mingw port for icu 4.0 2008-11-13 13:41:13 +0100 tono  r263643 : i95203: mingw: Build without stlport 2008-11-13 13:29:38 +0100 tono  r263640 : i96100: MinGW port for icu 4.0 2008-11-13 13:17:10 +0100 tono  r263634 : i96098: MinGW port fix for new Windows API 2008-11-09 15:22:59 +0100 tono  r263497 : i95198: mingwport do not interfere with Cygwin 2008-11-09 14:44:54 +0100 tono  r263496 : i95190: mingwport avoid use of MS assembler 2008-11-09 14:32:26 +0100 tono  r263495 : i95190: mingwport trivial build fixes


2009-01-20  Vladimir Glazounov  <vg@openoffice.org>  [da6e43bdad8e173c8bd8a12e1c5ebbfa2d8c4ef3]

CWS-TOOLING: integrate CWS aw061 2009-01-13 19:18:08 +0100 aw  r266250 : #i96669# changed initialisation order in Embedded3DPrimitive2D::Embedded3DPrimitive2D due to TinderBox 2009-01-13 19:15:37 +0100 aw  r266249 : #i96669# changed initialisation order in Embedded3DPrimitive2D::Embedded3DPrimitive2D due to TinderBox 2009-01-12 11:53:37 +0100 aw  r266141 : #i97874# corrected include for TinderBox build 2009-01-08 17:48:23 +0100 aw  r266029 : #i97874# extended SdrTextObj::ImpConvertAddText to copy needed attributes from original object 2009-01-08 14:59:08 +0100 aw  r266015 : #i96350# added fallback to solid fill in shadow TabPage when no fill is defined to get a reasonable shadow preview 2009-01-08 12:40:49 +0100 aw  r265995 : #i94832# remuved not needed E3DModifySceneSnapRectUpdater usages 2009-01-08 01:53:46 +0100 thb  r265982 : #i94860# Blacklisting another ATI card/driver that causes blank screens 2009-01-08 01:46:38 +0100 thb  r265981 : #i97853# Changed all gradient texture methods to use basegfx gradienttools. consolidated quite some code 2009-01-08 01:45:09 +0100 thb  r265980 : #i97853# Added lerp methods, slight changes to have everything necessary contained in the ODFGradientInfo struct 2009-01-08 00:01:54 +0100 thb  r265979 : #i97853# First part of the move - duplicated the stuff to basegfx 2009-01-06 16:23:09 +0100 aw  r265930 : #i97197# Changed SwDrawVirtObj to work well with changed aOutRect and bBoundRectValid functionality 2009-01-06 12:41:24 +0100 aw  r265909 : #i97784# corrected regression with connectors 2009-01-05 17:30:31 +0100 aw  r265881 : #i97772# added missing usage of reduce factor for BitmapPrimitive creation 2009-01-05 12:24:01 +0100 aw  r265863 : #i97321# added direct handling of HatchTexturePrimitive3D to not use it's decomposition for HitTest 2008-12-23 13:57:27 +0100 aw  r265782 : #i96669# changed SW's FlyFrame paint fallback with primitives to use createLocalDecomposition since get2Decomposition does not have to stay virtual on the long run 2008-12-23 13:47:59 +0100 aw  r265781 : #i96669# optimized impCreateTextPortionPrimitive to only create TextDecoratedPortionPrimitive2D when needed 2008-12-23 13:44:45 +0100 aw  r265780 : #i96669# added B2DRange buffering to some primitive implementations where it is most necessary 2008-12-19 15:45:45 +0100 aw  r265729 : #i96669# prepared TextPrimitives to work without DXarray, too. Had to rework impSplitSingleWords which gets active when a text portion has some word-wise decorations. Tested before committing 2008-12-19 15:44:16 +0100 aw  r265728 : #i96669# corrected error in createPolygonFromUnitEllipseSegment which popped up when investigating 2008-12-18 17:45:58 +0100 aw  r265708 : #i97149# added ActionChanged() call when visualisation object is modified 2008-12-18 15:34:42 +0100 aw  r265695 : #i96598# corrected SdrPageObj's usage of aOutRect 2008-12-17 16:59:37 +0100 aw  r265647 : #i96537# exchanged the marker for point number in string with correct one 2008-12-16 17:50:33 +0100 aw  r265566 : #i93170# added a bool to EndDrawLayer() and corresponding mechanisms to allow to end without drawing FormLayer 2008-12-16 17:50:17 +0100 aw  r265565 : #i93170# added a bool to EndDrawLayer() and corresponding mechanisms to allow to end without drawing FormLayer 2008-12-16 17:50:00 +0100 aw  r265564 : #i93170# added a bool to EndDrawLayer() and corresponding mechanisms to allow to end without drawing FormLayer 2008-12-16 17:49:48 +0100 aw  r265563 : #i93170# added a bool to EndDrawLayer() and corresponding mechanisms to allow to end without drawing FormLayer 2008-12-16 17:49:35 +0100 aw  r265562 : #i93170# added a bool to EndDrawLayer() and corresponding mechanisms to allow to end without drawing FormLayer


2009-01-19  Vladimir Glazounov  <vg@openoffice.org>  [2171042ee7a33d902830fc198be19e9125c1b019]

CWS-TOOLING: integrate CWS kohei02 2009-01-13 16:54:47 +0100 kohei  r266237 : added dpshttab.obj to the list of EXCEPTIONFILES, to remove warning on Solaris. 2009-01-07 03:18:32 +0100 kohei  r265942 : Repeat values only on column, row, and page fields even for drill-down data.  Don't repeat values on data fields. 2009-01-06 22:23:48 +0100 kohei  r265941 : Don't repeat if empty on data fields.  The "Identify category" option is not supposed to affect data fields. 2009-01-05 17:42:52 +0100 kohei  r265884 : CWS-TOOLING: rebase CWS kohei02 to trunk@265758 (milestone: DEV300:m38) 2008-12-12 06:10:18 +0100 kohei  r265385 : instantiate string data only when it's visible. 2008-12-12 05:48:20 +0100 kohei  r265384 : when displaying the page field list box, only show visible page field members. 2008-12-11 22:41:11 +0100 kohei  r265375 : #i96689# added a list of German translations for CELL. 2008-12-11 22:24:41 +0100 kohei  r265373 : restored the old keyword file before it got stripped off. 2008-12-11 22:17:05 +0100 kohei  r265371 : #i96591# Honor the hidden members data in page fields. 2008-12-11 21:51:36 +0100 kohei  r265370 : #i96326# fixed pivot cache import that previously failed to import when the field count is zero.  But when the postponed flag is on, the count may be sometimes zero even when the field contains data. 2008-12-11 21:44:44 +0100 kohei  r265369 : #i96171# fix for broken 'Identify Categories' option for grouped fields.


2009-01-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [4b2ef3c8e19b6e227502e304f040d539bec87a02]

#i10000#: add cast


2009-01-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [fb59810c271449ef9cdb49751608348a743598ca]

#i10000#: de-inline ScDocument::FastGetRowHeight() to be able to link scfilt on Linux


2009-01-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [2b6cc371fb45249f17f14bb286604304eecf3f93]

#i10000#: export some more classes and methods


2009-01-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [dbe448be4976aff7a452ae411257ee8759ac1470]

#i10000#: casts required for .Net2008 compiler2


2009-01-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [f2238c5550ec188c7cac8e704810af37a89805e0]

#i10000#: fix link problems due to CWS frmdlg


2009-01-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [2b6244f20339be32f10e8d060b1c675c0283010c]

#i10000#: export method areAllSeriesAttachedToSameAxis()


2009-01-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [46e767de827f32ec5a763f3e8494fe1f54815ac8]

#i10000#: make ScExternalRefManager dtor virtual


2009-01-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [dd6b88145580ed9b21e7adc8f2313b2aa512c9d0]

#i10000#: fix merge conflicts (CWS frmdlg)


2009-01-12  Rüdiger Timm  <rt@openoffice.org>  [de131ce456dee71988b30bfd6ef67bf7f4badff1]

#i10000# Correct typo: it's 'oox', not 'ocx'.


2009-01-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [51cb52eeee77242844e7966b97f5eed32284f8e8]

#i10000#: delete mergeinfo on trunk


2009-01-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [446d5fa23570cc4f1fc0e4bc95f3214c091028a3]

CWS-TOOLING: integrate CWS frmdlg 2008-12-18 09:13:09 +0100 oj  r265667 : merge from odff05 2008-12-18 07:58:16 +0100 oj  r265658 : #i94555# patch from <regina>, ODFF: Add GAMMA, CHISQDIST, CHISQINV. Make the 'cumulative' parameter of GAMMADIST optional. Adapt the domain of CHIDIST to allow negative x. Remove the constraint "degrees of freedom < 1.0E5" from CHIDIST and CHIINV. Plus a mechanism to write the now optional parameter of GAMMADIST to PODF and ODFF if omitted, for backwards compatibility. 2008-12-15 14:06:11 +0100 oj  r265490 : CWS-TOOLING: rebase CWS frmdlg to trunk@264807 (milestone: DEV300:m37) 2008-12-15 13:55:28 +0100 oj  r265488 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:55:07 +0100 oj  r265487 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:54:48 +0100 oj  r265486 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:54:36 +0100 oj  r265485 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:54:24 +0100 oj  r265484 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:48:11 +0100 oj  r265483 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:31:12 +0100 oj  r265479 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:13:58 +0100 oj  r265477 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:10:09 +0100 oj  r265476 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 13:05:11 +0100 oj  r265475 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 10:47:17 +0100 oj  r265467 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 10:46:19 +0100 oj  r265466 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 10:45:47 +0100 oj  r265465 : CWS-TOOLING: do not delete this file, it's needed for 'cws rebase -C' CWS: frmdlg New MWS: DEV300 New milestone: m37 2008-12-15 07:35:07 +0100 oj  r265458 : add dependency to formula 2008-12-15 07:34:24 +0100 oj  r265457 : add dependency to formula 2008-12-12 13:22:00 +0100 msc  r265413 : #i97089# 2008-12-12 13:20:25 +0100 msc  r265412 : #i97089# 2008-12-12 12:35:12 +0100 msc  r265406 : #i97089# 2008-12-12 12:34:16 +0100 msc  r265405 : #i97089# 2008-12-12 12:33:05 +0100 msc  r265404 : #i97089# 2008-12-12 12:31:11 +0100 msc  r265403 : #i97089# 2008-12-08 11:59:10 +0100 oj  r264981 : insert RTL_LOG 2008-12-08 11:50:17 +0100 oj  r264980 : some small changes 2008-12-05 12:57:57 +0100 oj  r264902 : eof changed 2008-12-05 12:56:46 +0100 oj  r264901 : eof changed 2008-12-05 12:28:47 +0100 oj  r264899 : wrong var used 2008-12-05 10:08:57 +0100 oj  r264890 : token order reversed 2008-12-04 13:49:22 +0100 oc  r264843 : #i96688: Adapt autotests because of outsourced functionwizard 2008-12-04 13:45:27 +0100 oc  r264842 : #i96688: Adapt autotests because of outsourced functionwizard 2008-12-04 13:42:54 +0100 oc  r264841 : #i96688: Adapt autotests because of outsourced functionwizard 2008-12-04 13:37:41 +0100 oc  r264840 : #i96688: Adapt autotests because of outsourced functionwizard 2008-12-04 13:34:11 +0100 oc  r264839 : #i96688: Adapt autotests because of outsourced functionwizard 2008-12-04 12:35:31 +0100 oj  r264835 : new help ids for struct and function tabpage 2008-12-04 12:00:35 +0100 oj  r264828 : set explicit help id 2008-12-03 14:53:27 +0100 oj  r264786 : #i96845# change ref button 2008-12-03 14:51:49 +0100 oj  r264785 : #i96845# change ref button 2008-12-03 08:51:57 +0100 oj  r264746 : convert dos to unix lineends 2008-12-03 08:50:45 +0100 oj  r264745 : convert dos to unix lineends 2008-12-03 08:50:05 +0100 oj  r264744 : convert dos to unix lineends 2008-12-02 12:28:33 +0100 oj  r264686 : clear help text when new helpid is set 2008-12-02 12:28:02 +0100 oj  r264685 : set help id for listbox category 2008-12-02 07:15:56 +0100 oj  r264655 : remove define to auto generate help ids 2008-12-01 14:36:43 +0100 oj  r264604 : use temp var 2008-12-01 14:18:31 +0100 oj  r264601 : moved ScJumpToken to formula 2008-12-01 14:18:11 +0100 oj  r264600 : moved ScJumpToken to formula 2008-12-01 14:14:35 +0100 oj  r264599 : moved ScJumpToken from sc 2008-12-01 10:48:51 +0100 oj  r264589 : change quickhelptext from Shrink to Select 2008-12-01 10:28:41 +0100 oj  r264588 : fix opcode data, has to be Any.Void 2008-11-28 11:16:48 +0100 oj  r264532 : add help ids 2008-11-28 10:16:56 +0100 oj  r264529 : set help id 2008-11-28 10:16:43 +0100 oj  r264528 : set help id 2008-11-26 13:55:04 +0100 oj  r264381 : #94535# use of optional instead of deleting a string myself and some small changes 2008-11-26 09:53:20 +0100 oj  r264346 : compile error with debug/without debug 2008-11-25 07:41:28 +0100 oj  r264271 : put static into the method which make use of them 2008-11-24 08:16:07 +0100 oj  r264196 : removed not needed classes for op code 2008-11-24 08:13:44 +0100 oj  r264195 : removed not needed classes for op code 2008-11-21 14:05:53 +0100 oj  r264135 : make GetOpCode inline 2008-11-21 12:35:27 +0100 oj  r264124 : hold symbols 2008-11-20 09:27:27 +0100 oj  r264028 : merged code from DEV300_m35 which got lost 2008-11-19 20:42:12 +0100 oj  r264022 : more changes for formula dialog remove 2008-11-19 20:37:41 +0100 oj  r264021 : removed unused var 2008-11-19 20:35:35 +0100 oj  r264020 : some more changes at token 2008-11-19 10:59:47 +0100 oj  r263967 : deleted 2008-11-19 10:58:24 +0100 oj  r263966 : add forui and for res files 2008-11-18 15:27:36 +0100 oj  r263777 : unused para removed 2008-11-18 15:23:23 +0100 oj  r263775 : add insert button to add field dlg 2008-11-18 13:39:53 +0100 oj  r263764 : enable the formula dialog as well for conditional print as for conditional formatting 2008-11-18 12:03:25 +0100 oj  r263760 : rename isRef in IsRef 2008-11-17 11:46:16 +0100 oj  r263711 : patches for function handling 2008-11-17 11:36:22 +0100 oj  r263710 : add new for forui and res file 2008-11-17 09:21:12 +0100 oj  r263704 : patches for some resource for libformula 2008-11-15 12:45:30 +0100 oj  r263701 : changes for formula editor extraction 2008-11-07 08:23:27 +0100 oj  r263416 : merge from DEV300:m35 2008-11-07 08:22:35 +0100 oj  r263415 : merge from DEV300:m35 2008-11-07 08:22:16 +0100 oj  r263414 : merge from DEV300:m35 2008-11-07 08:21:41 +0100 oj  r263413 : merge from DEV300:m35 2008-11-07 08:21:31 +0100 oj  r263412 : merge from DEV300:m35 2008-11-07 08:20:38 +0100 oj  r263411 : merge from DEV300:m35 2008-11-07 08:20:00 +0100 oj  r263410 : merge from DEV300:m35 2008-11-07 08:18:50 +0100 oj  r263409 : merge from DEV300:m35 2008-11-07 08:18:19 +0100 oj  r263408 : merge from DEV300:m35 2008-11-07 08:10:27 +0100 oj  r263407 : merge from DEV300:m35 2008-10-21 07:43:46 +0200 oj  r262560 : some compile errors resolved 2008-10-17 16:40:01 +0200 oj  r262291 : dep for 1st target 2008-10-07 10:08:39 +0200 oj  r262077 : copy 2008-10-07 09:45:31 +0200 oj  r262076 : #i94535# 2008-10-07 09:44:26 +0200 oj  r262075 : #i94535# new base class 2008-10-07 09:43:21 +0200 oj  r262074 : moved to formula 2008-10-07 09:41:51 +0200 oj  r262073 : new images 2008-10-07 09:03:01 +0200 oj  r262072 : new ids for formula 2008-10-02 08:46:27 +0200 oj  r262024 : #i94535# move the formula compiler to formula 2008-10-02 08:08:54 +0200 oj  r262023 : #i94535# 2008-10-02 08:06:28 +0200 oj  r262022 : #i94535# 2008-10-02 08:05:52 +0200 oj  r262021 : #i94535# 2008-10-01 17:15:29 +0200 oj  r262014 : #i94535# 2008-10-01 17:12:40 +0200 oj  r262013 : new module formula 2008-10-01 17:04:55 +0200 oj  r262012 : #i94535# 2008-10-01 16:49:03 +0200 oj  r262010 : #i94535# 2008-10-01 16:46:59 +0200 oj  r262009 : #i94535#


2009-01-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [446b9e63d61e157aea5999add7ee33c63e670033]

CWS-TOOLING: integrate CWS menuchanges 2009-01-07 17:12:18 +0100 mod  r265974 : throw out comment tracking accellerator 2009-01-07 16:23:35 +0100 mod  r265972 : CWS-TOOLING: rebase CWS menuchanges to trunk@265758 (milestone: DEV300:m38) 2008-12-03 16:21:15 +0100 mod  r264798 : menu shortcut fixes 2008-12-03 15:53:23 +0100 mod  r264794 : some shortcut changes 2008-12-02 13:35:56 +0100 fredrikh  r264696 : i96794 2008-12-01 20:09:07 +0100 fredrikh  r264633 : i96768 2008-12-01 20:08:37 +0100 fredrikh  r264632 : i96768 2008-12-01 16:40:18 +0100 fredrikh  r264619 : i96762 2008-12-01 16:37:37 +0100 fredrikh  r264618 : i96762 2008-12-01 16:37:09 +0100 fredrikh  r264617 : i96762 2008-12-01 13:14:43 +0100 fredrikh  r264595 : i90650 2008-11-28 18:26:38 +0100 fredrikh  r264569 : i94758 2008-11-28 18:22:31 +0100 fredrikh  r264568 : i94758 2008-11-28 12:46:26 +0100 fredrikh  r264541 : i94758 2008-11-26 16:58:51 +0100 fredrikh  r264423 : i96625 2008-11-26 16:14:10 +0100 fredrikh  r264412 : i96623 2008-11-26 16:13:02 +0100 fredrikh  r264410 : i96623 2008-11-25 19:46:42 +0100 fredrikh  r264330 : i96359 2008-11-25 13:50:34 +0100 fredrikh  r264307 : i96556 2008-11-25 13:49:46 +0100 fredrikh  r264306 : i96556 2008-11-25 13:48:32 +0100 fredrikh  r264305 : i96556 2008-11-25 13:46:55 +0100 fredrikh  r264304 : i96556 2008-11-25 13:45:29 +0100 fredrikh  r264303 : i96357 2008-11-25 13:42:11 +0100 fredrikh  r264302 : i96556 & i94758 2008-11-25 13:34:54 +0100 fredrikh  r264301 : i96556 2008-11-25 13:33:30 +0100 fredrikh  r264300 : i96556 2008-11-25 13:32:31 +0100 fredrikh  r264299 : i96556 2008-11-25 13:31:57 +0100 fredrikh  r264298 : i96556 2008-11-25 13:31:27 +0100 fredrikh  r264297 : i96556 2008-11-25 13:30:31 +0100 fredrikh  r264295 : i96556 2008-11-25 13:29:29 +0100 fredrikh  r264294 : i96556 2008-11-25 13:28:17 +0100 fredrikh  r264292 : i96556 2008-11-25 13:27:44 +0100 fredrikh  r264290 : i96556 2008-11-25 13:26:54 +0100 fredrikh  r264288 : i96556 2008-11-25 13:25:03 +0100 fredrikh  r264287 : i96556 2008-11-25 13:21:29 +0100 fredrikh  r264286 : i96556 2008-11-19 16:14:07 +0100 fredrikh  r264004 : i96359 2008-11-19 14:35:43 +0100 fredrikh  r263995 : i96353 2008-11-19 14:05:58 +0100 fredrikh  r263991 : i96347 2008-11-19 14:05:36 +0100 fredrikh  r263990 : i96347 2008-11-19 14:05:07 +0100 fredrikh  r263989 : i96347 2008-11-19 13:11:59 +0100 fredrikh  r263983 : i96347 2008-11-19 13:00:09 +0100 fredrikh  r263982 : i96347 2008-10-29 14:54:51 +0100 mod  r262804 : 94633 2008-10-29 14:54:10 +0100 mod  r262803 : #i94633# 2008-10-29 12:58:38 +0100 ufi  r262787 : i94958,3rd 2008-10-29 12:42:41 +0100 ufi  r262783 : i94958,2nd 2008-10-29 12:00:23 +0100 ufi  r262777 : i94958 2008-10-28 23:45:34 +0100 mod  r262766 : #i95457# 2008-10-18 19:09:38 +0200 mod  r262295 : accelerator change 2008-10-17 15:45:11 +0200 mod  r262289 : fix typo 2008-10-15 23:17:04 +0200 mod  r262245 : menu fix 2008-10-15 22:58:30 +0200 mod  r262244 : fix footnote setting dialog 2008-10-15 22:58:01 +0200 mod  r262243 : further changes to menu 2008-10-14 10:27:46 +0200 mod  r262195 : new accelerator and menu changes 2008-10-14 10:27:37 +0200 mod  r262194 : new accelerator and menu changes 2008-10-07 14:23:26 +0200 mod  r262081 : #i79329# #i85158# #i88351# 2008-10-02 10:31:52 +0200 mod  r262026 : #i94551# 2008-10-02 10:23:57 +0200 mod  r262025 : #i87347#


2009-01-06  Jens-Heiner Rechtien  <hr@openoffice.org>  [c6d75fda30fcfad669a20650108c18c342f918c9]

CWS-TOOLING: integrate CWS fwk98 2008-12-12 22:28:04 +0100 pb  r265444 : fix: #i44211# precompiled directive was missed 2008-12-11 10:43:34 +0100 pb  r265262 : fix: #i87952# #i84982# SID_INSERT_APPLET and SID_CHAR_DLG_FOR_PARAGRAPH not configurable any longer 2008-12-11 10:40:05 +0100 pb  r265261 : fix: #i64346# SID_MAIL_SENDDOCASFORMAT not configurable any longer 2008-12-11 10:36:53 +0100 pb  r265260 : fix: #i41265# #i64346# ui name for MacroOrganizer and SendMailDocAs... 2008-12-11 10:29:07 +0100 pb  r265258 : fix: #i60617# #i92080# ui name for ContinueNumbering and SaveGraphic 2008-12-11 10:25:52 +0100 pb  r265256 : fix: #i80850# ui name for ToggleFormula and AssignMacro 2008-12-08 14:16:20 +0100 pb  r264996 : fix: #i44211# querytemplate.obj added 2008-12-08 12:54:02 +0100 pb  r264992 : fix: #i44211# use the new query template box 2008-12-08 12:50:45 +0100 pb  r264991 : fix: #i44211# STR_QRYTEMPL_... added 2008-12-08 12:48:21 +0100 pb  r264990 : fix: #i44211# new query box 2008-12-02 11:06:54 +0100 pb  r264681 : fix: #i88478# ScStyleFamilyObj: XPropertySet support added 2008-12-02 11:05:29 +0100 pb  r264680 : fix: #i88478# STR_STYLE_FAMILY_... added 2008-12-02 11:03:22 +0100 pb  r264679 : fix: #i88478# ScStyleFamilyObj: XPropertySet support added 2008-12-02 10:54:27 +0100 pb  r264678 : fix: #i88478# STR_STYLE_FAMILY_... added 2008-12-02 10:50:16 +0100 pb  r264677 : fix: #i88478# SwXStyleFamily: XpropertySet support added 2008-12-02 10:48:12 +0100 pb  r264676 : fix: #i88478# STR_STYLE_FAMILY_... added 2008-12-02 10:45:46 +0100 pb  r264674 : fix: #i88478# SwXStyleFamily: XpropertySet support added 2008-12-02 10:43:44 +0100 pb  r264673 : fix: #i88478# STR_STYLE_FAMILY_... added 2008-12-02 10:40:45 +0100 pb  r264671 : fix: #i88478# table.srs added 2008-12-02 10:37:45 +0100 pb  r264669 : fix: #i88478# dummy text of DisplayName replaced 2008-12-02 10:35:26 +0100 pb  r264668 : fix: #i88478# RID_SVXSTR_STYLEFAMILY_TABLEDESIGN added 2008-12-02 10:30:24 +0100 pb  r264666 : fix: #i88478# RID_SVXSTR_STYLEFAMILY_TABLEDESIGN added 2008-11-24 10:42:03 +0100 pb  r264214 : fix: #i92765# set search algorithm with sense 2008-11-24 07:02:31 +0100 pb  r264194 : fix: #i61775# dont display more than 100 fonts 2008-11-24 06:15:20 +0100 pb  r264193 : fix: #i96418# map module swxform to swriter for help 2008-11-20 11:34:21 +0100 pb  r264035 : fix: #i93453# map 'swform' and 'swreport' to 'sdatabase' 2008-11-20 09:55:30 +0100 pb  r264030 : fix: #i94023# after copy a ResId dont forget to set RT correctly


2009-01-06  Jens-Heiner Rechtien  <hr@openoffice.org>  [281ce76ec3946f4302b59c80d0a8b8d3616a1848]

CWS-TOOLING: integrate CWS odff05 2008-12-11 04:17:37 +0100 er  r265237 : #i94555# AppendIntToken for GAMMADIST, Excel needs 4 parameters; also use AppendIntToken instead of AppendNumToken for POISSON 2008-12-11 04:04:27 +0100 er  r265236 : #i96837# make cumulative parameter of POISSON optional; patch from <lvyue> with slight modifications 2008-12-11 03:35:03 +0100 er  r265235 : #i96835# make base parameter of LOG() optional also in UI; patch from <lvyue> 2008-12-11 03:15:30 +0100 er  r265234 : #i94555# patch from <regina>, ODFF: Add GAMMA, CHISQDIST, CHISQINV. Make the 'cumulative' parameter of GAMMADIST optional. Adapt the domain of CHIDIST to allow negative x. Remove the constraint "degrees of freedom < 1.0E5" from CHIDIST and CHIINV. Plus a mechanism to write the now optional parameter of GAMMADIST to PODF and ODFF if omitted, for backwards compatibility. 2008-12-10 18:14:16 +0100 er  r265214 : DBG_... need semicolon 2008-12-05 00:49:55 +0100 er  r264881 : WaE unxlngi6: declaration of 'pFuncInfo' shadows a previous local 2008-12-05 00:26:05 +0100 er  r264879 : #i91547# BETADIST with optional density/cumulative parameter and much better precision; patch from <regina> 2008-12-04 22:51:40 +0100 er  r264877 : #i91602# add expm1() and log1p() replacements; based on a patch from <regina> 2008-12-01 16:07:35 +0100 dr  r264614 : #i93789# import of EUROCONVERT from XLSX/XLSB 2008-11-28 13:15:01 +0100 dr  r264543 : #i93789# new sheet function EUROCONVERT + XLS import/export, patch contributed by lvyue 2008-11-26 14:54:23 +0100 er  r264397 : CWS-TOOLING: rebase CWS odff05 to trunk@264325 (milestone: DEV300:m36) 2008-11-20 14:23:33 +0100 er  r264053 : CWS-TOOLING: rebase CWS odff05 to trunk@263288 (milestone: DEV300:m35) 2008-11-19 18:07:43 +0100 er  r264012 : merged from trunk 2008-11-19 17:51:36 +0100 er  r264011 : migrate CWS odff05 to SVN


2009-01-06  Jens-Heiner Rechtien  <hr@openoffice.org>  [81274d90b79b7a8d6aedb9f68190d87efc735f69]

CWS-TOOLING: integrate CWS locales31 2008-12-10 14:56:44 +0100 er  r265193 : calling convention mismatch 2008-12-08 12:04:56 +0100 er  r264984 : #i96840# classify some extra languages as CTL 2008-12-05 19:54:02 +0100 erack  r264916 : ImpSvNumberformatScan::ScanType: do not miscategorize as automtic currency if currency symbol in General string, such as R in Standard 2008-12-04 12:07:05 +0100 erack  r264831 : CWS-TOOLING: rebase CWS locales31 to trunk@264807 (milestone: DEV300:m37) 2008-12-03 16:14:17 +0100 erack  r264797 : #i93694# update script+language -> unicode digit mapping; patch from <hdu> 2008-11-25 02:01:18 +0100 erack  r264270 : #i83349# apply remaining parts of the patch, now that we use ICU 4.0; contributed by <kstribley> 2008-11-25 01:38:20 +0100 erack  r264269 : #i93694# test the bit, not the constant ... 2008-11-24 10:34:58 +0100 erack  r264211 : #i93694# LANGUAGE_ARABIC is gone 2008-11-24 01:39:25 +0100 erack  r264192 : #i94435# LANGUAGE_SPANISH now is an alias of LANGUAGE_SPANISH_MODERN, need LANGUAGE_SPANISH_DATED in switch case if both are to be used 2008-11-23 22:54:17 +0100 erack  r264190 : CWS-TOOLING: rebase CWS locales31 to trunk@263288 (milestone: DEV300:m35) 2008-11-23 20:23:28 +0100 erack  r264189 : migrate CWS locales31 to SVN


2009-01-06  Rüdiger Timm  <rt@openoffice.org>  [f6829acf831163ba11da20430253cb61a6c6dc2d]

CWS-TOOLING: integrate CWS ooxml02 2008-12-18 06:12:51 +0100 jpryor  r265657 : Remove valgrind warning about "Conditional jump or move depends on uninitialised value(s)" within XclFontData::SetApiEscapement(short), as nApiEscapement isn't set by maHlpChCommon>>nApiEscapement.  Instead, provide a default value. 2008-12-16 21:50:23 +0100 jpryor  r265575 : Remove warnings from Mac OSX gcc-4.0.1. 2008-12-11 20:13:08 +0100 jpryor  r265356 : Remove warning so that ooxml02 can build on Ubuntu build bots. 2008-12-11 17:18:47 +0100 jpryor  r265336 : CWS-TOOLING: rebase CWS ooxml02 to trunk@264807 (milestone: DEV300:m37) 2008-12-10 17:03:09 +0100 kohei  r265208 : take out the xls english opcode bits from sc.  We'll decide what to do later. 2008-12-10 16:34:30 +0100 kohei  r265202 : removed the xls english formula language entry. 2008-12-10 07:03:56 +0100 jpryor  r265144 : Generate the PROT4REV, PROT4REVPASS, BACKUP, and HIDEOBJ records. 2008-12-10 05:16:23 +0100 jpryor  r265143 : Undo BIFF record reordering. This was originally done to increase code sharing between the BIFF & OOXML export code, and was tested as being compatible between several .xls-supporting apps, but it is now felt that the change in ordering will complicate testing more than is desirable. 2008-12-08 19:37:27 +0100 kohei  r265036 : 1) reverted the localized separator bits, to keep the core functionality intact. 2) introduced English XL A1 and R1C1 grammars, which can be used for OOXML export filter (and later for VBA formula parsing). 3) use the English XL A1 grammar for OOXML export. 2008-12-08 19:33:13 +0100 kohei  r265030 : added XL_ENGLISH formula language, which is used in OOXML export (and probably useful in the import as well).  This will also be used in VBA formulas as well. 2008-12-03 04:23:54 +0100 jpryor  r264737 : Revert -Werror changes; these will be handled in a separate CWS. 2008-12-03 04:21:10 +0100 jpryor  r264736 : Revert -Werror fixes; these are being handled in a separate CWS. 2008-12-02 15:48:04 +0100 kendy  r264709 : Fix even the visibility warnings. 2008-12-02 09:57:16 +0100 kendy  r264661 : Deliver also scfiltmi.dll. 2008-12-02 05:19:37 +0100 jpryor  r264654 : -Werror fixes... 2008-12-02 05:14:53 +0100 jpryor  r264653 : -Werror fixes... 2008-12-02 05:10:36 +0100 jpryor  r264652 : -Werror fixes... 2008-12-02 04:07:52 +0100 jpryor  r264651 : -Werror fixes... 2008-12-02 04:00:54 +0100 jpryor  r264650 : Further -Werror god appeasement... 2008-12-01 20:23:04 +0100 kendy  r264637 : Deliver ioox.lib. 2008-12-01 20:13:38 +0100 kendy  r264635 : More visibility fixes in sc. 2008-12-01 20:12:09 +0100 kendy  r264634 : Fix build in sax, thanks to Tor :-) 2008-12-01 20:03:36 +0100 kendy  r264631 : Define OOXLIB even on Windows. 2008-12-01 15:07:45 +0100 kendy  r264609 : More visibilility fixes - sc links now even on Win32. 2008-12-01 12:28:18 +0100 kendy  r264594 : Fix visibility markup so that it [nearly ;-)] builds on Windows. It should also save some good amount of symbols... 2008-12-01 12:18:21 +0100 kendy  r264593 : Add TYPEINFO_VISIBILITY() - it is the same as TYPEINFO(), but you can specify what visibility markup should it use. 2008-11-27 16:34:23 +0100 mmeeks  r264504 : revert ppt bits that slipped in by accident. 2008-11-27 16:32:38 +0100 kendy  r264503 : Fix visibility markup in oox (SAL_DLLPUBLIC_EXPORT -> OOX_DLLPUBLIC). 2008-11-27 16:10:16 +0100 mmeeks  r264502 : revert un-necessary filter changes ... 2008-11-27 15:52:28 +0100 mmeeks  r264498 : revert un-intended evoab2 fixes ... 2008-11-27 15:17:59 +0100 mmeeks  r264494 : revert apparently unrelated evoab2 fixups that crept in here. 2008-11-27 11:18:26 +0100 mmeeks  r264468 : Rename ComplRefData -> ScComplexRefData for dr #96652# 2008-11-26 23:05:57 +0100 kendy  r264437 : #i96634# Fix build with --disable-mozilla. 2008-11-26 22:43:25 +0100 kendy  r264435 : #i96316# Fix filter signature to fix Win32 build. 2008-11-25 17:05:35 +0100 mmeeks  r264316 : distribute new scfilt library 2008-11-25 17:04:56 +0100 mmeeks  r264315 : Add visibility markup to allow all filters to be built as a separate module, and tweak the build to build that way. Fix some existing instances of daft symbol naming around the place. Move headers that are now internal into source/filter/inc Saves ~1.4Mb on a normal calc, on Linux 2008-11-21 22:51:08 +0100 jpryor  r264178 : Disable OOXML .xlsx export. 2008-11-21 22:49:26 +0100 jpryor  r264177 : More -Werror fixes... 2008-11-21 22:05:42 +0100 jpryor  r264175 : Appease the great -Werror god. And cry. Warnings fixed:   - Duplicate definition of CREATE_OUSTRING.  This is caused because of the     use of oox within sc/source/filter/excel, and oox has it's own version of     CREATE_OUSTRING.  Fix things by ensuring that the oox version is always     included first, thus allowing the ftools.hxx version to #undef it and     provide it's own version.   - Addition of braces for `if` blocks, parenthesis to disambiguate & | && ||.   - One s/==/&&/ in dpoutput.cxx (as it's the only thing that makes sense).   - Changing parameter names so that they don't hide member variables with the     same name. 2008-11-21 13:33:25 +0100 jpryor  r264131 : Fix the Win32 build by moving the UnknownAttribute declaration into fastattribs.hxx (lest MSVC complain about vector<UnknownAttribute>). 2008-11-20 19:05:27 +0100 jpryor  r264095 : fastsax was originally a UNO component, and then turned into a hybrid UNO/C++ library.  Undo this hybridization, reverting it to a normal UNO component, and place the C++ classes into saxinstead. Update project references to use $(SAXLIB) instead of $(FASTSAXLIB).     * oox/util/makefile.mk, sc/util/makefile.mk: Remove $(FASTSAXLIB) and       use $(SAXLIB) instead.     * sax/prj/build.lst: Don't build sax\util, as sax\source\tools now       builds the sax library.     * sax/source/fastparser/exports.map: Remove; no longer needed.     * sax/source/fastparser/facreg.cxx: Change path for       fastserializer.hxx.     * sax/source/fastparser/fastattribs.cxx,       sax/source/fastparser/fastserializer.cxx,       sax/source/fastparser/fastserializer.hxx,       sax/source/fastparser/fshelper.cxx: Moved to sax/source/tools.     * sax/source/fastparser/makefile.mk: Use appropriate UNO naming       convention; link against $(SAXLIB) (which now contains       FastSaxSerializer, etc.); don't compile fastserializer.obj/etc. (now       built by tools); use component.map instead of export.map (removed).     * sax/source/tools/makefile.mk: Build sax library instead of building       a saxtools.lib file.  The sax library now contains       FastAttributeList, FastSaxSerializer, and FastSerializerHelper.     * scp2/source/ooo/file_library_ooo.scp: Install fastsax.uno, not       libfastsax. 2008-11-20 19:04:06 +0100 jpryor  r264094 :     * oox/source/core/xmlfilterbase.cxx: Remove warning. 2008-11-19 22:26:16 +0100 kendy  r264025 : #i96333# A better fix for the evoab2 installation problem Actually, it should be built as evoab2, not evoab; it should be possible to have both at the same time... 2008-11-19 21:52:12 +0100 jpryor  r264024 : Shouldn't export symbols by-glob anymore, as we're using SAX_DLLPUBLIC now. 2008-11-19 21:50:30 +0100 jpryor  r264023 : Fix Win32 linker error as FastAttributeList and FastSerializerHelper need to be accessible from other shared libraries. (Hopefully this'll work...) 	* sax/inc/sax/fastattribs.hxx, sax/inc/sax/fshelper.hxx: Add 	  SAX_DLLPUBLIC to class declarations so that they'll be visible from 	  other shared libraries. 2008-11-19 06:47:51 +0100 jpryor  r263961 : Cope with oox::core::FilterBase changes. 	* xestream.cxx: FilterBase now requires that an XModel be provided so 	  that FilterBase::filter() will actually _do_ anything useful, so 	  call FilterBase::setSourceDocument() so that it has one. 2008-11-19 06:37:34 +0100 jpryor  r263960 : make sure evoab lib is not installed twice (because it breaks install process as 2nd installation try fails). Thanks to Radek Doulik <rodo@novell.com> for the patch. 2008-11-19 01:53:27 +0100 jpryor  r263959 : Fix build break under Linux. 	* connectivity/source/drivers/evoab2/NResultSetMetaData.cxx: Use a 	  proper type declaration (`:.connectivity::SharedResource'?  wtf?!), 	  and use a type that actually exists. 	  /me suspects that this was a bad case of regex search & replace 	  without actually making sure things compiled... 	* connectivity/source/drivers/evoab2/NStatement.cxx: 	  - #include <resource/common_res.hrc> so that the symbol 	    STR_QUERY_TOO_COMPLEX can be found. 	  - Use a variable that actually has the throwGenericSQLException() 	    method... 2008-11-18 21:37:46 +0100 kendy  r263956 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> getTableStyles() needs to be a member of XclExpXmlStream... 2008-11-18 21:37:12 +0100 kendy  r263955 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Fix runtime crash due to sending a non-POD type through a ... function. 	* sc/source/filter/excel/xestyle.cxx: Stupid fix: 	  s/.getStr() FSEND/.getStr(), FSEND/g (commas are important!). 2008-11-18 21:36:47 +0100 kendy  r263954 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Fix sc build problems... 	* excel/excdoc.cxx, excel/excrecds.cxx: Remove ScTableProtection, 	  XclExpProtection references (these don't exist here); remove 	  compiler warnings & errors (AddSdrPage prototype changed?!). 	* excel/expop2.cxx: XclEscher constructor changed; deal. 	* excel/xestream.cxx, inc/xestream.hxx: XmlFilterBase added some 	  additional abstract members; implement them so we're a concrete 	  type. 2008-11-18 21:36:25 +0100 kendy  r263953 : #i96320# xlsx export From: Fridrich Strba <fstrba@novell.com> disambiguate 2008-11-18 21:36:00 +0100 kendy  r263952 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Flush, Flush, Flush... 2008-11-18 21:35:38 +0100 kendy  r263951 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /styleSheet/numFmts/numFmt support. 	* sc/source/filter/inc/xestyle.hxx, sc/source/filter/excel/xestyle.cxx: 	  Generate /styleSheet/numFmts/numFmt. 2008-11-18 21:35:08 +0100 kendy  r263950 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /styleSheet/colors/indexedColors/rgbColor. Also generates /worksheet//col/@style. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/xestyle.hxx, sc/source/filter/excel/xestyle.cxx: 	  Generate /styleSheet/colors/indexedColors/rgbColor. 	* sc/source/filter/excel/xetable.cxx: Generate /worksheet//col/@style. 2008-11-18 21:34:46 +0100 kendy  r263949 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Correct /worksheet//row/@s and /worksheet//row/@ht logic. We need an actual /styleSheet/cellXfs index for //row/@s, which mnIndex most certainly was not, and XclExpRow::mnHeight is a value in twips, while OOXML //row/@ht is a value in points, resulting in _huge_ row heights when opening the document in Excel.  Oops. 	* sc/source/filter/excel/xetable.cxx: Fix //row/@s, //row/@ht. 2008-11-18 21:34:15 +0100 kendy  r263948 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /styleSheet/cellXfs/xf/@xfId. Now that I understand what this field is supposed to contain... 	* sc/source/filter/inc/xestyle.hxx, sc/source/filter/excel/xestyle.cxx: 	  Generate /styleSheet/cellXfs/xf/@xfId. 2008-11-18 21:33:52 +0100 kendy  r263947 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Document current state of style support. 2008-11-18 21:33:22 +0100 kendy  r263946 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Style Index Support, Take 3! The problem is XclExpCellTable and XclExpRkCell: when XclExpCellTable creates XclExpRkCell instances, it sets their style to EXC_XFID_NOTFOUND, which seems to persist for quite some time, and is later "corrected" to the correct style index in XclExpXFBuffer::GetXFIndex(). This leads to all sorts of problems for me, though, as XclExpXFBuffer::maCellIndexes and maStyleIndexes were a nXFId::index map, and it wasn't easy to get a "valid" nXFId value. Hence, Take 3: maCellIndexes and maStyleIndexes aren't nXFId::index maps, but nXFIndex::index maps. (nXFId is the "original" XF index into XclExpXFBuffer::maXFList, while nXFIndex is the index into XclExpXFBuffer::maSortedXFList, which is the order that BIFF Excel export uses.) Since the nXFId::nXFIndex map logic must work (it's required for BIFF support), we can rely on this logic via a nXFIndex::xml-index map, allowing us to export correct style indexes. Now things Just Work (at least until I find another set of bugs...). 	* sc/source/filter/excel/xestyle.cxx: Rewrite (and simplify) 	  maCellIndexes and maStyleIndexes initialization, so that 	  XclExpRkCell can get proper style indexes. 	* sc/source/filter/inc/xetable.hxx, sc/source/filter/excel/xetable.cxx: 	  Rewrite XclExpBlankCell and XclExpRkCell XML generation to more 	  closely mimic BIFF generation (thus allowing us to more sanely deal 	  with the XclExpMultiCellBase "chaining" semantics). 2008-11-18 21:33:01 +0100 kendy  r263945 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Correct font export within xl/styles.xml. The problem is that BIFF export inserts a "blind" font to appease older versions of Excel, but Excel/OOXML does not want the blind font.  So instead of making XclExpBlindFont do nothing -- which causes all //*/@fontId values to be wrong because the @fontId is counting a font that isn't present -- we just don't use XclExpBlindFont with OOXML output. 	* sc/source/filter/inc/xestyle.hxx, sc/source/filter/excel/xestyle.cxx: 	  Don't override+implement XclExpBlindFont::SaveXml(), and instead 	  don't add a XclExpBlindFont() record for OOXML export. 2008-11-18 21:32:30 +0100 kendy  r263944 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Enable export of blank cells. Blank cells can contain formatting information (background color, borders, etc.), and XclExpBlankCell was previously overlooked. :-( 	* sc/source/filter/inc/xetable.hxx, sc/source/filter/excel/xetable.cxx: 	  Export /worksheet//c elements for blank cells. 2008-11-18 21:32:08 +0100 kendy  r263943 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Start implementing /worksheet/cols/col/c/@s attribute. This allows Style information to be set for cells.  It currently works for background color on cells with text; still needs work to support ~everything. 	* sc/source/filter/excel/xetable.cxx: Generate the 	  /worksheet/cols/col/c/@s attribute so that it contains the Cell XF 	  which contains the appropriate formatting information. 2008-11-18 21:31:41 +0100 kendy  r263942 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Fix "Excel yells when importing a document that sets cell background color." i.e. styles weren't quite right (shock!). In this case, the issues were:   - I wasn't distinguishing between *Cell* XFs and *Style* XFs.   - //cellStyle/@xfId refers to an index into //cellStyleXfs, and I wasn't     generating //cellStyleXfs.  Thus, if //cellStyle was present, Excel     yelled.   - "Indexes" were *completely* wrong.  BIFF only has a single set of indexes     to track, nicely kept in XclExpXFBuffer::maXFIndexVec.  OOXML has _two_     sets: //cellXfs and //cellStyleXfs, each of which are referenced "by     index" from other XML parts (and from _this_ XML part, via     //cellStyle/@xfId - above).   - We needed to export builtin styles. So *now*, if you create an empty Calc document, set a cell background color, save, and load into Excel, it will load without error. You *still* won't see the proper cell background color in Excel, but at least it loads w/o error (which wasn't previously true). 	* sc/source/filter/inc/xestyle.hxx, sc/source/filter/excel/xestyle.cxx: 	  Add XclExpXFBuffer::GetXmlCellIndex(); lots of other changes (see 	  above for the details). 2008-11-18 21:31:19 +0100 kendy  r263941 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Er, yeah. 2008-11-18 21:30:54 +0100 kendy  r263940 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Remove deliberate segfault-inducing code. 2008-11-18 21:30:29 +0100 kendy  r263939 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Allow Excel to open a document that changes a cell background. Note: it still doesn't *work* yet (as we don't set the cell's @s property so Excel reads the appropriate style), but it does LOAD w/o error now.  This is progress. 	* sc/source/filter/excel/xestyle.cxx: Lots 'o changes; 	  - Exclude the <bgColor/> and <fgColor/> children of //patternFill if 	    the colors aren't actually set. 	  - Don't export //xf/@xfId, as I'm not sure wtf this is supposed to 	    contain yet. 	  - Enhance the Border/Fill lists created last time so it behaves 	    properly: use custom predicates to check for equality (no idea 	    what the default operator== does; it's probably wrong); don't use 	    AddBorderAndFill() at all the "entry" points as this misses cells, 	    instead process all cells within XclExpXFBuffer::Finalize() and 	    add borders/fills there (thus ensuring we hit all cells); 	    Assert that the border/fill id values are valid. 	  - Add a default set of fills.  Excel complains loudly if you're 	    missing these fills, so make sure they're always present. 	  - //borders/@count should contain the *Borders* count, not the Fills 	    count.  Oops. 2008-11-18 21:30:04 +0100 kendy  r263938 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Continue style support. Excel can now (again!) open Calc-generated spreadsheets. Compared to other parts, this was a mess, mostly because (for the first time) the XML format did NOT closely match the pre-existing binary format.  It's reasonably close, but some additional mapping is necessary.  In particular, in BIFF the XF records contain "inline" the border and fill information.  In OOXML this information is referred to "by-index"; consequently we need to create an internal table of borders & fills so that we can then determine the by-index value for borders and fills. :-( Furthermore, my previous `font support` commit was broken: it removed duplicate fonts.  While this *sounds* like a good idea (look ma, smaller files!), it's not (currently) a good idea as the XclExpXF::mnXclFont value is an index into this font list (_with_ duplicate values).  Removing the duplicates results in invalid /styleSheet/cellXfs/xf/@fontId values, which causes Excel to complain (and no end of grief for me). All told, this adds support for: /styleSheet/borders, /styleSheet/borders/border, /styleSheet/borders/border/bottom, /styleSheet/borders/border/diagonal, /styleSheet/borders/border/left, /styleSheet/borders/border/right, /styleSheet/borders/border/top, /styleSheet/cellXfs, /styleSheet/cellXfs/xf, /styleSheet/cellXfs/xf/alignment, /styleSheet/cellXfs/xf/protection, /styleSheet/fills, /styleSheet/fills/fill, /styleSheet/fills/fill/patternFill, /styleSheet/fills/fill/patternFill/bgColor, and /styleSheet/fills/fill/patternFill/fgColor. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/xestyle.hxx, sc/source/filter/excel/xestyle.cxx: 	  Get xl/styles.xml into an actual Excel-loadable condition. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Add 	  XclXmlUtils::ToOString(Color). 2008-11-18 21:29:41 +0100 kendy  r263937 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /styleSheet/fonts/font. This generates: /styleSheet/fonts/font/b, /styleSheet/fonts/font/charset, /styleSheet/fonts/font/color, /styleSheet/fonts/font/condense, /styleSheet/fonts/font/extend, /styleSheet/fonts/font/family, /styleSheet/fonts/font/i, /styleSheet/fonts/font/name, /styleSheet/fonts/font/outline, /styleSheet/fonts/font/shadow, /styleSheet/fonts/font/strike, /styleSheet/fonts/font/sz, /styleSheet/fonts/font/u, and /styleSheet/fonts/font/vertAlign. Missing is: /styleSheet/fonts/font/scheme, 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Change WriteFontData() to take 	  a `sal_Int32 nFontId' parameter, which is the element to write to 	  contain the font name.  This is necessary as the shared string table 	  wants to use XML_rFont for the font name, while //fonts/font wants 	  XML_name for the font name. 	* sc/source/filter/excel/xestring.cxx: WriteFontData() change. 	* sc/source/filter/inc/xestyle.hxx, sc/source/filter/excel/xestyle.cxx: 	  Generate </styleSheet> element (oops), and generate 	  /styleSheet/fonts/font/** for all unique fonts. 2008-11-18 21:29:12 +0100 kendy  r263936 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Rename XclExpXmlStream::WriteCurrentStreamAttributes() to WriteAttributes(). Also adds XclExpXmlStream::WriteFontData().  The WriteCurrentStreamAttributes() to WriteAttributes() change was done so that method names would have a reasonable length, and adding WriteCurrentStreamFontData() was looking like an ugly pattern continuation. XclExpXmlStream::WriteFontData() is to support code sharing of XclFontData generation. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestring.cxx: 	  s/WriteCurrentStreamAttributes/WriteAttributes/g, add 	  WriteFontData() ("moved" from xestring.cxx). 	* sc/source/filter/inc/xerecord.hxx, 	  sc/source/filter/excel/excrecds.cxx, 	  sc/source/filter/excel/xepage.cxx, 	  sc/source/filter/excel/xerecord.cxx, 	  sc/source/filter/excel/xestream.cxx, 	  sc/source/filter/xcl97/xcl97rec.cxx: Deal with above changes. 2008-11-18 21:28:50 +0100 kendy  r263935 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Begin style support. 	* sc/source/filter/excel/excdoc.cxx: For OOXML output, create an 	  XclExpXmlStyleSheet instance instead of generating FONTLIST, 	  FORMATLIST, XFLIST, and PALETTE separately, as these need to be 	  written to a separate .zip part. 	* sc/source/filter/inc/xestyle.hxx, sc/source/filter/excel/xestyle.cxx: 	  Begin generating the xl/styles.xml part. 2008-11-18 21:28:25 +0100 kendy  r263934 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> =?utf-8?q?Partially=20implement=20Comments=20(=C2=A73.7).?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit This generates the /xl/commentsN.xml files (N == sheet index number). This is only a partial generation because Excel requires that a drawing object be associated with the comment in order to display it.  No drawing object, and instead Excel displays a dialog warning that the comments could not be displayed. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/excdoc.cxx: Create a XclExpComments object to 	  generate the appropriate commentsN.xml file, as the commentsN.xml 	  file needs to write information about *all* of the comments (author 	  information), so we can't just write out the XclExpNotes individually. 	* sc/source/filter/xcl97/xcl97rec.cxx, 	* sc/source/filter/excel/xecontent.cxx: Cope with 	  XclExpXmlStream::CreateOutputStream() changes. 	* sc/source/filter/inc/xeescher.hxx, 	  sc/source/filter/excel/xeescher.cxx: Add and implement 	  XclExpComments, and add XML generation to XclExpNote. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Change 	  XclExpXmlStream::CreateOutputStream() to take full and relative 	  paths (instead of trying to cosntruct a full/relative path based on 	  the parameters).  This was necessary because commentsN.xml needs to 	  insert a relative path of e.g. "../comments1.xml", which the 	  previous implementation would have made difficult.  I think this 	  makes things clearer and less magical as well. 2008-11-18 21:28:01 +0100 kendy  r263933 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement most of the Shared String Table support. Previously we generated /sst/si/t, which supports non-formatted text. Now we support formatting within a cell -- AS LONG AS the formatting isn't applied to the first character/token.  (The first character/token requires formal styles support, which is lacking; everything after character position 1 can be handled within the shared string table.) Now we have: /sst/si/r/rPr/b, /sst/si/r/rPr/charset, /sst/si/r/rPr/color, /sst/si/r/rPr/family, /sst/si/r/rPr/i, /sst/si/r/rPr/outline, /sst/si/r/rPr/rFont, /sst/si/r/rPr/scheme, /sst/si/r/rPr/shadow, /sst/si/r/rPr/strike, /sst/si/r/rPr/sz, /sst/si/r/rPr/u, /sst/si/r/rPr/vertAlign, and /sst/si/r/t. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/xecontent.cxx: Use XclExpString::WriteXml() 	  to generate string values, instead of assuming everything is 	  unformatted /sst/si/t elements. 	* sc/source/filter/inc/xestring.hxx, 	  sc/source/filter/excel/xestring.cxx: Add and implement 	  XclExpString::WriteXml(), which now handles formatted text runs. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Change 	  XclXmlUtils::ToOUString(ScfUInt16Vec) to 	  XclXmlUtils::ToOUString(ScfUInt16Vec,int,int) so that it can be 	  easily used for substrings; add asserts to 	  XclXmlUtils::To*String(XclExpString) to ensure that we're not 	  dealing with formatted text there (as formatted text needs to go 	  through XclExpString::WriteXml(), but these methods are often used 	  for attribute values which cannot have formatted text). 2008-11-18 21:27:35 +0100 kendy  r263932 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Update of TODO. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 2008-11-18 21:27:14 +0100 kendy  r263931 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Add /Relationships/Relationship/@TargetMode support. This also fixes Calc hyperlink export, allowing Excel to properly read documents containing a hyperlink. 	* sc/source/filter/excel/xecontent.cxx: Generate "External" for the 	  hyperlink's TargetMode property, so that Excel will load the 	  generated spreadsheet without error. 2008-11-18 21:26:39 +0100 kendy  r263930 : #i96320# xlsx export From: Fridrich Strba <fstrba@novell.com> I think this was what was meant 2008-11-18 21:26:18 +0100 kendy  r263929 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Allow Excel to open documents w/ all contents selected. Previously, if you selected all cells (Ctrl+A) then saved, the //selection/@sqref attribute would contain "A:IV", which Excel didn't like. 	* sc/source/filter/excel/xestream.cxx: Don't allow a MAXROW or MAXCOL 	  value to hit ScRange::Format(), thus avoiding the "missing row 	  numbers" issue. 2008-11-18 21:25:46 +0100 kendy  r263928 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> (Mostly) Implement /worksheet/hyperlinks/hyperlink. The only piece missing is error-free Excel import, and in order for Excel to import a generated document error-free is for the sheetN.xml.rels document to contain a /Relationships/Relationship/@TargetMode attribute, e.g. 	<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink" Target="http://www.example.com/" TargetMode="External"/> I'm not sure how to add this functionality yet. 	* sc/source/filter/excel/excdoc.cxx: Generate the 	  /worksheet/hyperlinks start and end elements, if appropriate. 	* sc/source/filter/inc/xecontent.hxx, 	  sc/source/filter/excel/xecontent.cxx: Generate the 	  /worksheet/hyperlinks/hyperlink element 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Add 	  XclXmlUtils::ToOUString(XclExpString). 2008-11-18 21:25:24 +0100 kendy  r263927 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement AutoFilter support. This includes /worksheet/autoFilter, /worksheet/autoFilter/filterColumn, /worksheet/autoFilter/filterColumn/top10, /worksheet/autofilter/filterColumn/customFilters, and /worksheet/autofilter/filterColumn/customFilter. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/excrecds.hxx, 	  sc/source/filter/excel/excrecds.cxx: Generate //autoFilter/*. 	* sc/source/filter/excel/xename.cxx: Apparently adding an AutoFilter 	  adds a "defined name" with an empty string (!), so change 	  XclExpName::SaveXml() to skip entries with empty names. 	* sc/source/filter/inc/xerecord.hxx, 	  sc/source/filter/excel/xerecord.cxx: Declare and implement a 	  specialization for XclExpValueRecord<double>::SaveXml().  This is 	  necessary because Fridrich's change to XclExpValueRecord::SaveXml() 	  (to case maValue to sal_Int32) broke double exports (as it cast the 	  double to a sal_Int32, thus truncating the value).  Since we don't 	  want to re-add the ambiguity warning, we need to specialize so that 	  `double' output uses the correct rtl::OString::valueOf() method. 2008-11-18 21:24:55 +0100 kendy  r263926 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Fix OOXML Calc export so that documents containing > 1 feature work. While most previous features worked -- you could create a document using the feature, save it, and open it in Excel w/o issue -- they worked in isolation.  So in trying to create a single test document to test as many features as possible, things (expectedly) broke, so this fixes things up. 	* sc/source/filter/excel/excdoc.cxx, sc/source/filter/excel/xepage.cxx, 	  sc/source/filter/excel/excrecds.cxx: Reorder element output to 	  conform to the OOXML XSD (and allow Excel to read features.xlsx). 2008-11-18 21:24:34 +0100 kendy  r263925 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/autoFilter. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/excrecds.hxx, 	  sc/source/filter/excel/excrecds.cxx: Generate the 	  /worksheet/autoFilter element. 2008-11-18 21:24:07 +0100 kendy  r263924 : #i96320# xlsx export From: Fridrich Strba <fstrba@novell.com> disambiguate OUString::valueOf calls 2008-11-18 21:23:45 +0100 kendy  r263923 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> (Hopefully) Make Formula Export Locale-Independent. Nice as Kohei's patch was, it relied on formula export being in the same locale as the user's locale.  So import into Excel would work for *me* (en-US user), but fail for ~everyone else (i.e. not very useful). This patch is a hack, but has the added benefit that it appears to work: create an ScCompiler::OpCodeMapPtr that's specific to OOXML output, and not cache the results.  Not ideal, but enough to progress further... 	* sc/inc/grammar.hxx: Add GRAM_OOXML_A1, which is a locale-independent 	  grammar value (forces ENGLISH, which is what Excel expects). 	* sc/source/core/tool/compiler.cxx: When dealing with GRAM_OOXML_A1, 	  create a new/unique OpCodeMap that always uses ',' for SC_OPCODE_SEP. 	* sc/source/filter/excel/xestream.cxx: Use GRAM_OOXML_A1 for output. 2008-11-18 21:23:20 +0100 kendy  r263922 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Fix formula export to use ',' to separate parameters instead of ';'. This is just Kohei's calc-formula-variable-separators-sc.diff patch, but it works quite nicely for this. :-) 	* sc/inc/compiler.hxx, sc/source/core/tool/compiler.cxx: Allow 	  characters other than ';' to be used as the parameter separator 	  within functions.  We don't care so much about permitting people to 	  *enter* such formulas, but this also gives us the ability to 	  *export* such formulas using ',' instead of ';', which Excel 	  requires. 2008-11-18 21:22:55 +0100 kendy  r263921 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Finish initial support for /worksheet/sheetData/row/c. Support for some attributes is missing (such as those storing formatting information), but we now (almost completely) save cell values, errors, boolean cells, and formulas. The only missing feature is for > 1 formula argument, e.g. "SUM(A1;B1)". This needs to be exported as "SUM(A1,B1)" (note the comma). 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/xetable.hxx, sc/source/filter/excel/xetable.cxx: 	  Add formula support for /worksheet/sheetData/row/c.  Remove 	  XclExpBlankCell::SaveXml(), as I can't think of anything it would 	  actually need to do. 2008-11-18 21:22:30 +0100 kendy  r263920 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement partial support for /worksheet/sheetData/row/c. This is take 1 of string and value support (//c[@t='s' or @t='n']). Boolean (//c[@t='b']) and error (//c[@t='e']) support is also there, but I have no idea how to test bool and error output without formula support. TESTING: Numbers have two serialization paths:   - "RK" numbers, which go through XclExpRkCell.   - non-RK numbers, which go thorugh XclExpNumberCell. RK numbers are integers or numbers evenly divisible by 100.  All other floating point values (e.g. Pi) are non-RK values. Strings are, well, strings. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/xetable.hxx, sc/source/filter/excel/xetable.cxx: 	  Generate /worksheet/sheetData/row/c for strings and numeric values, 	  and stub out support for the other //c types (formulas, errors, 	  boolean values, blank values...). 2008-11-18 21:22:08 +0100 kendy  r263919 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/sheetData/row. 	* sc/source/filter/inc/xetable.hxx, sc/source/filter/excel/xetable.cxx: 	  Generate /worksheet/sheetData/row; generate <sheetData/> instead of 	  <sheetData></sheetData> if there are no rows. 2008-11-18 21:21:40 +0100 kendy  r263918 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> =?utf-8?q?Flush=20sc/source/filter/excel/ooxml-export-TODO.txt;=20completed=20first=20passs=20of=20=C2=A73.3.1.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 2008-11-18 21:21:15 +0100 kendy  r263917 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/sheetViews/sheetView. 	* sc/source/filter/excel/xeview.cxx: Generate attributes for 	  /worksheet/sheetViews/sheetView. 2008-11-18 21:20:54 +0100 kendy  r263916 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/sheetPr/pageSetUpPr. This also partially implements /worksheet/sheetPr, but most of it is TODO. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/excdoc.cxx: Alter XclExpWsbool initialization 	  for XML output so we can output additional information. 	* sc/source/filter/inc/excrecds.hxx, 	  sc/source/filter/excel/excrecds.cxx: Generate /worksheet/sheetPr and 	  /worksheet/sheetPtr/pageSetUpPr elements. 2008-11-18 21:20:28 +0100 kendy  r263915 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Fix /worksheet/sheetViews/sheetView/selection/@sqref for multi-selection. When multiple cells are selected, //selection/@sqref needs to be space separated ("A1 A3 B2") not comma-separated ("A1,A3,B2"). 	* sc/source/filter/excel/xestream.cxx: Use space as the separator 	  character between ScRanges. 2008-11-18 21:20:06 +0100 kendy  r263914 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /workbook/sheetViews/sheetView/selection. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Add 	  XclXmlUtils::ToOString(XclRangeList). 	* sc/source/filter/inc/xeview.hxx, sc/source/filter/excel/xeview.cxx: 	  Generate /workbook/sheetViews/sheetView/selection. 2008-11-18 21:19:39 +0100 kendy  r263913 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> *Actually* implement /worksheet/printOptions. Previously I was emitting /worksheet/printOptions, but neglected to actually emit any attributes for that element.  Oops. 	* sc/source/filter/excel/excdoc.cxx, sc/source/filter/excel/xepage.cxx: 	  Use the new 3-argument XclExpBoolRecord constructor to specify the 	  OOXML attribute to generate from SaveXml(). 	* sc/source/filter/inc/xerecord.hxx, 	  sc/source/filter/excel/xerecord.cxx: Add a `nAttribute' parameter to 	  the constructor (default is disabled) so that the caller can specify 	  which attribute to generate instead of having a horrible 	  special-case HACK in XclExpBoolRecord::SaveXml() (which wasn't a 	  very scalable solution; this is much better).  This isn't perfect, 	  as XclExpBoolRecord::SaveXml() still has some special logic, but 	  it's better than it was... 2008-11-18 21:19:17 +0100 kendy  r263912 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/sheetViews/sheetView/pane. Slightly more complicated than you'd think, as //pane needs to be after //dimension but *before* //sheetData, and previously //dimension was being generated as part of the //sheetData processing (thus making it difficult to interrupt the generation for //sheetViews). 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/excdoc.hxx, sc/source/filter/excel/excdoc.cxx: 	  Add FillAsXmlTable(); aRecList now gets filled either as a BINARY 	  (FillAsXmlTable) or "XML" (FillAsXmlTable), because trying to juggle 	  eBiff<= BIFF5, ==BIFF8, and GetOutput()!=EXC_OUTPUT_BINARY (XML) was 	  straining my head, and OOXML record ordering is looking to be quite 	  different from BIFF.  "Create" a EXC_ID3_DIMENSIONS record so that 	  //dimension is generated before //sheetViews. 	* sc/source/filter/inc/xerecord.hxx, 	  sc/source/filter/excel/xerecord.cxx: Add XclExpDelegatingRecord. 	  This is needed because I need an ScfRef<XclExpRecordBase> (to insert 	  the DIMENSION record into the correct location), but XclExpDimension 	  is located within another object and thus can't be heap-allocated 	  itself (at least not w/o changing how it works).  Thus I instead 	  create an XclExpDelegatingRecord instance which points to the 	  XclExpDimension instance I care about w/o worrying about double 	  freeing or `delete`ing non-`new`d memory... 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Add 	  XclXmlUtils::ToOString(XclAddress). 	* sc/source/filter/inc/xetable.hxx, sc/source/filter/excel/xetable.cxx: 	  Don't generate //dimension from XclExpRowBuffer::SaveXml(), as this 	  needs to be done earlier; add XclExpRowBuffer::GetDimensions(), used 	  by XclExpCellTable::CreateRecord() to return an XclExpRecordRef to 	  the already existing XclExpDimensions instance; change 	  XclExpCellTable::CreateRecord() to (a) make it non-const, and (b) 	  return the appropriate XclExpDimension instance for the 	  EXC_ID3_DIMENSIONS record type. 	* sc/source/filter/inc/xeview.hxx, sc/source/filter/excel/xeview.cxx: 	  Implement /worksheet/sheetViews and 	  /worksheet/sheetViews/sheetView/pane, and partially implement 	  /worksheet/sheetViews/sheetView. 	* sc/source/filter/xcl97/xcl97rec.cxx: Don't emit the 	  /workbook/workbookProtection/@revisionsPassword attribute, as this 	  causes xmllint XSD Schema validation to fail. 2008-11-18 21:18:48 +0100 kendy  r263911 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet[pageMargins and pageSetup and printOptions]. Note: this change alters the ordering of records in (binary) .xls files as well as .xlsx files.  This change does not seem to cause any repercussions; Excel 2007 and Calc 2.4 still open generated .xls files w/o complaint. (The records were reordered to simplify generation of OOXML, as otherwise we'd either have a conditional mess or we'd have code duplication.  This seems to work, but can be worked around if deemed necessary.) 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/xepage.hxx, sc/source/filter/excel/xepage.cxx: 	  Generate /worksheet/pageMargins, /worksheet/pageSetup, and 	  /worksheet/printOptions elements. 	* sc/source/filter/inc/xerecord.hxx: Add ExlExpValueRecord<T>::SaveXml() 	  and ExlExpValueRecord<T>::SetAttribute() (needed to generate 	  attributes for some of the above elements). 2008-11-18 21:18:26 +0100 kendy  r263910 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/mergeCells/mergeCell. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/inc/xecontent.hxx, 	  sc/source/filter/excel/xecontent.cxx: Generate 	  /worksheet/mergeCells and /worksheet/mergeCells/mergeCell elements. 2008-11-18 21:17:58 +0100 kendy  r263909 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/scenarios, //scenario, //inputCells. "Minor" implementation difficulty (making this patch larger than would normally be required): Scenarios implicitly add a new invisible worksheet (as is noticable if you look at the Calc status bar after clicking Tools->Scenarios...->OK; status goes from "Sheet 1/3" to "Sheet 1/4"). This extra sheet foiled my (stupid) resource ID mapping which "just happened" to work, allowing rId1::sheet1 mappings.  The problem was that it worked only by "luck" (and I'm not exporting too much), and it was bound to break at some point...like now. Consequently in addition to exporting //scenarios et. al, this also adds additional infrastructure to deal with creating and storing Resource Ids, in particular so that sheet's get valid resource Ids and Excel will still deign to open our files w/o generating errors. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/excdoc.cxx: Change the ordering of 	  ExcEScenarioManager & FilterManager to follow the OOXML XSD; 	  ExcTable::WriteXml() no longer creates the sheet stream (this is 	  done by ExcBundlesheet8::SaveXml()), so lookup the correct stream 	  to use instead. 	* sc/source/filter/excel/xepage.cxx: Flush comments. 	* sc/source/filter/excel/xetable.cxx: Cleanup. 	* sc/source/filter/inc/xcl97rec.hxx, 	  sc/source/filter/xcl97/xcl97rec.cxx: Change 	  ExcBundlesheet8::WriteXml() to open the appropriate sheet output 	  stream (so that we can get a valid ResourceId for this output stream 	  to use in //sheet[@r:id]); implement //scenarios, //scenario, and 	  //inputCells for scenario generation. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Add 	  XclXmlUtils::GetStreamName(), XclXmlUtils::ToOString(ScAddress), 	  XclXmlUtils::ToOString(ScRange), 	  XclXmlUtils::ToOString(XclExpString), 	  XclExpXmlStream::GetIdForPath(), 	  XclExpXmlStream::GetStreamForPath().  The XclXmlUtils methods are 	  helper routines (code cleanup), while the XclExpXmlStream methods 	  are to permit "registration" of a Path to both a RelationshipId and 	  a FSHelperPtr for later output.  This allows e.g. 	  ExcBundlesheet8::SaveXml() to open the output stream, and have 	  ExcTable::WriteXml() grab and use this output stream later. 	  Changed CreateOutputStream() to (optionally) return the ResourceId 	  as an output parameter. 2008-11-18 21:17:35 +0100 kendy  r263908 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Move XML character escape logic into FastSerializerHelper. 	* sc/source/filter/excel/xename.cxx, sc/source/filter/excel/xepage.cxx, 	  sc/source/filter/excel/xecontent.cxx: Use writeEscaped() instead of 	  write() in places that require escaping. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Remove XclXmlUtils::Escape(). 2008-11-18 21:17:10 +0100 kendy  r263907 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/headerFooter[oddHeader, oddFooter]. Excel distinguishes between left, right, and front page sets, while Calc doesn't (at least, the .xls output doesn't make that distinction). Consequently, we generate "all pages have these headers/footers" output. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/excdoc.cxx: Alter record ordering so that the 	  //headerFooter element is inserted into the correct position to 	  allow Excel to open generated documents. 	* sc/source/filter/inc/xepage.hxx, sc/source/filter/excel/xepage.cxx: 	  Generate the /worksheet/headerFooter, 	  /worksheet/headerFooter/oddHeader, and 	  /worksheet/headerFooter/evenHeader elements. 	* sc/source/filter/inc/xerecord.hxx, 	  sc/source/filter/excel/xerecord.cxx: Extend the 	  XclExpStartXmlElementRecord and XclExpStartSingleXmlElementRecord 	  types to accept a callback function which is invoked after starting 	  the element.  This allows us to ~easily provide the 	  /worksheet/headerFooter attributes w/o creating new XclExpRecordBase 	  subclasses. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Add XclXmlUtils::Escape() 	  functions which perform XML character escaping (e.g. s/</&lt;/g) so 	  that we don't generate invalid XML.  In particular, the header/footer 	  contains a "formatting code" which contains '&', which must be 	  escaped within the generated XML. 2008-11-18 21:16:47 +0100 kendy  r263906 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/dimensions. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/xetable.cxx, sc/source/filter/inc/xetable.hxx: 	  Implement /worksheet/dimensions. 2008-11-18 21:16:21 +0100 kendy  r263905 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/dataValidations/dataValidation[formula1, formula2]. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/xecontent.cxx, 	  sc/source/filter/inc/xecontent.hxx: Implement 	  /worksheet/dataValidations, 	  /worksheet/dataValidations/dataValidation, //formula1, //formula2. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Add XESTRING_TO_PSZ(), 	  XclXmlUtils::ToOString(ScRangeList), 	  XclXmlUtils::ToOUString(ScDocument&,ScAddress,ScTokenArray*). 2008-11-18 21:15:58 +0100 kendy  r263904 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/conditionalFormatting. Note that Excel will NOT currently open files containing this element, as the XML is incomplete: the XSD requires at least one nested /worksheet/conditionalFormatting/cfRule element, which we're not yet generating.  We do properly generate //conditionalFormatting/@sqref. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/xecontent.cxx, 	  sc/source/filter/inc/xecontent.hxx: Generate 	  /worksheet/conditionalFormatting. 2008-11-18 21:15:31 +0100 kendy  r263903 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/cols/col; unstub /worksheet/sheetData. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/excdoc.cxx: Remove <sheetData/> stub, as 	  //col needs to come _before_ //sheetData, and emitting //sheetData 	  here makes that impossible (and keeps Excel from loading our files). 	* sc/source/filter/excel/xetable.cxx, sc/source/filter/inc/xetable.hxx: 	  Implement /worksheet/cols (XclExpColinfoBuffer), 	  /worksheet/cols/col (XclExpColinfo), and stub out 	  /worksheet/sheetData in the correct position to appease Excel. 2008-11-18 21:15:06 +0100 kendy  r263902 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /worksheet/colBreaks, /worksheet/rowBreaks, and /worksheet//brk. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/xepage.cxx, sc/source/filter/inc/xepage.hxx: 	  Add XclExpPageSettings::SaveXml() and XclExpPageBreaks::SaveXml() -- 	  the former to call the latter, and the latter to generate 	  /worksheet/colBreaks, /worksheet/rowBreaks, and /worksheet//brk. 2008-11-18 21:14:44 +0100 kendy  r263901 : #i96320# xlsx export From: Fridrich Strba <fstrba@novell.com> disambiguate 2008-11-18 21:14:19 +0100 kendy  r263900 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement (more-) proper /workbook/calcPr support.  Cleanup. Previously, /workbook/calcPr was generated by filling a temporary XclExpXmlCalculationProperties instance, and generating the //calcPr element at the ~end of generation.  This was not ideal, as it involved more code (the class to hold the intermediate values, etc.), and it could potentially place the //calcPr element into the wrong position (the XSD requires that it be before //oleSize, //customWorkbookViews, and //pivotCaches, while the previous approach would have placed it after ~everything). 	* sc/source/filter/excel/excdoc.cxx: Follow the pattern of 	  //workbookProtection and insert the //calcPr BIFF records into the 	  appropriate position based on file type.  One minor quirk: the 	  records move from the per-SHEET array into the workbook array. 	* sc/source/filter/excel/xestream.cxx, 	  sc/source/filter/inc/xestream.hxx: Remove unnecessary code. 	* sc/source/filter/xcl97/xcl97rec.cxx: Directly emit the attributes 	  instead of filling an intermediate object. 2008-11-18 21:13:56 +0100 kendy  r263899 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Enable /workbook/workbookProtection. /workbook/workbookProtection was previously disabled as emitting it would cause Excel to generate an error message.  The problem has been resolved: /workbook/workbookProtection *must* be before /workbook/bookviews (which in turn must be before /workbook/sheets), and this wasn't previously the case. Placing the element into the proper location makes Excel happy. 	* sc/source/filter/excel/excdoc.cxx: Place the 	  workbookProtection-related BIFF records into the correct position to 	  appease the Excel gods. 	* sc/source/filter/excel/excrecds.cxx, 	  sc/source/filter/xcl97/xcl97rec.cxx: Enable output of the various 	  /workbook/workbookProtection attributes. 2008-11-18 21:13:29 +0100 kendy  r263898 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement /workbook/bookviews/workbookView. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Remove implemented elements. 	* sc/source/filter/excel/excdoc.cxx, sc/source/filter/excel/excel.cxx, 	  sc/source/filter/excel/xlroot.cxx, sc/source/filter/inc/xlroot.hxx, 	  sc/source/filter/inc/xlconst.hxx: The WINDOW1 record needs to be in 	  one of two different locations, depending on output format.  Add a 	  new XclOutput enumeration to contain the output format (we do NOT 	  want to reuse XclBiff for this purpose, as otherwise XML output is a 	  superset of BIFF8, and we don't want to update every existing check 	  for BIFF8 to check for both BIFF8 and XML), and check for this flag 	  so that the WINDOW1 record is created in the appropriate place. 	* sc/source/filter/excel/xestream.cxx, 	  sc/source/filter/inc/xestream.hxx: Add GetRoot() method and change 	  constructor to take a `const XclExpRoot&`, as 	  XclExpWindow::SaveXml() requires this information. 	* sc/source/filter/excel/xeview.cxx, sc/source/filter/inc/xeview.hxx: 	  XclExpWindow1::SaveXml() generates the //workbookView element. 	* sc/source/filter/xcl97/xcl97rec.cxx: Cleanup. 2008-11-18 21:13:04 +0100 kendy  r263897 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Remove SIGILL from ExcBundlesheet8::SaveXml(). 	* sc/source/filter/excel/xestream.cxx: Add some asserts. 	* sc/source/filter/xcl97/xcl97rec.cxx: Non-POD types cause a SIGILL 	  when passed as a "..." argument to a function.  Doh! 2008-11-18 21:12:42 +0100 kendy  r263896 : #i96320# xlsx export From: Fridrich Strba <fstrba@novell.com> disambiguate 2008-11-18 21:12:17 +0100 kendy  r263895 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> /workbook/workbookProtection, mostly cancelled during rebase. This isn't actually implemented -- the ::SaveXml() methods are `#if 0`d out -- as Excel barfs when this element + attributes are emitted. Funnier, even <workbookProtection/> causes Excel to barf, so until all the semantics are worked out it all needs to be uncommented out. What is useful here is the mapping from BIFF record -> OOXML attribute. 	* sc/source/filter/excel/excdoc.cxx, 	  sc/source/filter/excel/excrecds.cxx, 	  sc/source/filter/inc/excrecds.hxx, sc/source/filter/inc/xcl97rec.hxx, 	  sc/source/filter/xcl97/xcl97rec.cxx: Add method stubs to generate 	  the /workbook/workbookProtection element & attributes. 2008-11-18 21:11:55 +0100 kendy  r263894 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Initial /workbook/workbookPr implementation. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sc/source/filter/excel/excdoc.cxx: Add records to start/end the 	  <workbookPr/> element; cleanup & document TODOs. 	* sc/source/filter/inc/excrecds.hxx, 	  sc/source/filter/excel/excrecds.cxx: Declare & Implement 	  Xcl1904::SaveXml(). 	* sc/source/filter/inc/xerecord.hxx, 	  sc/source/filter/excel/xerecord.cxx: Declare and implement 	  XclExpXmlStartSingleElementRecord, XclExpXmlEndSingleElementRecord, 	  both used to single-style XML elements instead of the "full" 	  start/end XML created by XclExpXmlStartElementRecord and 	  XclExpXmlEndElementRecord, and add XclExpBoolRecord::SaveXml(), 	  which generates some <workbookPr/> attributes. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Declare & implement 	  XclExpXmlStream::WriteCurrentStreamAttributes(). 2008-11-18 21:11:30 +0100 kendy  r263893 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement (more-) proper /workbook/sheets support.  Refactor. Instead of hacking around "limitations" in NameBuffer to generate /workbook/sheets/sheet elements, use ExcBundlesheet8 to generate the /workbook/sheets/sheet elements.  This also allows us to emit the //sheet/@state attribute, which is private to ExcBundlesheet8. In order to generate the /workbook/sheets elements, XclExpXmlStartElementRecord and XclExpXmlEndElementRecord were added around the ExcBundlesheet8 record entries, so that the existing record-based infrastructure could automagically generate the structural XML tags.  These records do nothing for existing BIFF output. Finally, XclExpXmlStream::GetWorkbook() has been replaced with XclExpXmlStream::GetCurrentStream(), and PushStream()/PopStream() methods were added.  This is hoped to permit nesting of streams, and is currently being used to generate the xl/worksheets/sheetN.xml files (to no effect, as not enough records are generate XML for the results to be visible). 	* sc/source/filter/excel/excdoc.cxx: Undo the pTabNames/NameBuffer 	  changes, as we no longer use pTabNames to generate //sheets/; add 	  records to emit the <sheets/> element; place the sheet stream on top 	  of the XclExpXmlStream stack. 	* sc/source/filter/inc/excrecds.hxx, 	  sc/source/filter/excel/excrecds.cxx: Save the tab that 	  ExcBundlesheetBase was constructed for -- needed for <sheet/> 	  generation within ExcBundlesheet8. 	* sc/source/filter/excel/xecontent.cxx, 	  sc/source/filter/excel/xename.cxx, sc/source/filter/excel/xepivot.cxx: 	  s#GetWorkbook#GetCurrentStream#g; don't emit empty collections. 	* sc/source/filter/inc/xerecord.hxx, 	  sc/source/filter/excel/xerecord.cxx: Declare and Implement 	  XclExpXmlElementRecord, XclExpXmlStartElementRecord, 	  XclExpXmlEndElementRecord. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Add stream stack methods; 	  remove warning about unused parameter. 	* sc/source/filter/inc/xcl97rec.hxx, 	  sc/source/filter/xcl97/xcl97rec.cxx: Add ExcBundlesheet8::SaveXml() 	  and generate /workbook/sheets/sheet elements from it. 2008-11-18 21:11:08 +0100 kendy  r263892 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Add Calc OOXML TODO list. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Added.  I'm going through ECMA-376 Part 4 Section 3 in a 	  breadth-first fashion (i.e. top-down), and implementing each element 	  as I'm able.  I'm not always able to immediately implement an 	  element (frequently because I can't find the equivalent binary 	  export code) within a short period of time, so any such elements are 	  recorded here for later passes. 	  Just because an element isn't here doesn't mean it's been fully 	  implemented; any elements with associated code will have OOXTODO 	  comments specifying what's missing/needed for that particular code. 2008-11-18 21:10:36 +0100 kendy  r263891 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Initial /workbook/pivotCaches/pivotCache implementation. 	* sc/source/filter/excel/xepivot.cxx, 	  sc/source/filter/inc/xepivot.hxx: Declare and implement *Xml() 	  methods so that PivotCaches are saved into xl/workbook.xml. 2008-11-18 21:10:09 +0100 kendy  r263890 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Initial <definedName/> implementation. 	* sc/source/filter/excel/xename.cxx: Generate <definedName/>. 	* sc/source/filter/excel/xestream.cxx: Add XclXmlUtils::ToPsz(bool). 	* sc/source/filter/inc/xename.hxx: Declare 	  XclExpNameManager::SaveXml() so we can emit <definedName/> elements. 	* sc/source/filter/inc/xestream.hxx: Declare XclXmlUtils::ToPsz(bool). 2008-11-18 21:09:47 +0100 kendy  r263889 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Initial <calcPr/> implementation; provide count, uniqueCount <sst/> attributes. 	* sc/source/filter/excel/excdoc.cxx: Initial /workbook/calcPr 	  generation implementation. 	* sc/source/filter/excel/xecontent.cxx: Provide the count and 	  uniqueCount attributes for the <sst/> element. 	* sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/excel/xestream.cxx: Provide/implement a 	  XclExpXmlStream::GetWorkbookCalculationProperties() method which 	  keeps track of data used by excdoc.cxx for <calcPr/> generation. 	* sc/source/filter/inc/xcl97rec.hxx, 	  sc/source/filter/xcl97/xcl97rec.cxx: Override SaveXml() for select 	  types to cache the information needed to write <calcPr/>. 2008-11-18 21:09:22 +0100 kendy  r263888 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Simplify addRelation/openOutputStream use within sc. 	* sc/source/filter/excel/excdoc.cxx, 	  sc/source/filter/excel/xecontent.cxx: Use CreateOutputStream() to 	  create sub-streams. 	* sc/source/filter/excel/xestream.cxx: Implement CreateOutputStream(); 	  use CreateOutputStream() to create xl/workbook.xml. 	* sc/source/filter/inc/xestream.hxx: Add CreateOutputStream() methods 	  which merge addRelation() w/ openOutputStreamWithSerializer(). 2008-11-18 21:08:59 +0100 kendy  r263887 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Allow Excel to open an empty spreadsheet. 	* sc/source/filter/excel/excdoc.cxx: Use proper sheet names in the 	  relations file so that correct relative paths are present within the 	  .rels file; Use the correct content type when creating sheetN.xml; 	  Insert a <sheetData/> element into the worksheet.xml files; insert 	  the sheetN.xml relational data into the correct .rels file. 	* sc/source/filter/excel/xestream.cxx: Use the correct content type 	  when creating xl/workbook.xml. 2008-11-18 21:08:28 +0100 kendy  r263886 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> More Excel export cleanup. 	* sc/source/filter/excel/excdoc.cxx: Use addRelation(XOutputStream...) 	  so that the added relation is (hopefully) inserted into the 	  appropriate xl/_rels/workbook.xml.rels file; extra tracing. 	* sc/source/filter/excel/xecontent.cxx: Cleanup/simplification. 	* sc/source/filter/excel/xestream.cxx, 	  sc/source/filter/inc/xestream.hxx: Add more ToOString() and 	  ToOUString() helper methods. 2008-11-18 21:08:06 +0100 kendy  r263885 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Current work-in-progress for minimal Excel support. 	* sc/source/filter/excel/excdoc.cxx: Implement ExcTable::WriteXml() to 	  write xl/worksheets/sheetN.xml or the workbook.xml <sheets/> 	  elements, depending on whether we're the header or not.  Implement 	  ExcDocument::WriteXml() to stub out xl/workbook.xml. 	* sc/source/filter/excel/xecontent.cxx: Use the XML Ids instead of 	  strings to speed up XML creation. 	* sc/source/filter/excel/xestream.cxx: Add XclXmlUtils::To*String() 	  helpers to simplify XML writing; open the xl/workbook.xml file so 	  that it can be written to from multiple locations. 	* sc/source/filter/inc/xestream.hxx: Add XclXmlUtils class to hold 	  various To*String() helpers; add XclExpXmlStream::GetWorkbook(). 2008-11-18 21:07:41 +0100 kendy  r263884 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Generate a correct shared string table. 	* sc/source/filter/excel/xecontent.cxx: Write proper shared string 	  table entries. 	* sc/source/filter/inc/xestream.hxx: Include <sax/fshelper.hxx> so we 	  can easily use XmlFilterBase::openOutputStreamWithSerializer(). 2008-11-18 21:07:18 +0100 kendy  r263883 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Write an actual ZIP package for .xlsx output, including a (stubbed) shared  string table.     * sc/prj/build.lst: We now depend on oox to build.     * sc/source/filter/inc/xestream.hxx, sc/source/filter/excel/xestream.cxx:       XclExpXmlStream how inherits from XmlFilterBase, which produces ZIP       package files.  This allows increased code sharing.     * sc/source/filter/excel/excdoc.cxx: Update XclExpXmlStream construction.     * sc/source/filter/excel/excel.cxx: Don't create a SotStorage() instance       over pMedStrm (this makes ZipStorage very angry); don't call       lcl_ExportExcelBiff(), as we want to preserve our generated file.     * sc/source/filter/excel/xecontent.cxx: Write out the XML forr the shared       string table (incomplete, as I need to find an easier/more elegant way       of inserting strings into the XML, but it'll need updating anyway  to       use the FastSaxSerializer).     * sc/util/makefile.mk: Link against $(OOXLIB) and $(FASTSAXLIB) as well. 2008-11-18 21:06:54 +0100 kendy  r263882 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Trace output for the shared string table. This is step forward as we're hooking into the new XclExpRecordBase::SaveXml() to invoke the string table SaveXml() routine.  It's still largely proof-of-concept, but we can actually invoke the appropriate code now. 	* oox/workben/ooxml-export-notes.txt: Flush. 	* sc/source/filter/inc/exp_op.hxx, sc/source/filter/excel/expop2.cxx: 	  Add and implement the new ExportXml2007 type. 	* sc/source/filter/excel/excdoc.cxx, sc/source/filter/excel/excel.cxx, 	  sc/source/filter/excel/xecontent.cxx, 	  sc/source/filter/excel/xepivot.cxx, 	  sc/source/filter/excel/xerecord.cxx, 	  sc/source/filter/excel/xestream.cxx, sc/source/filter/inc/excdoc.hxx, 	  sc/source/filter/inc/xecontent.hxx, sc/source/filter/inc/xepivot.hxx, 	  sc/source/filter/inc/xerecord.hxx, sc/source/filter/inc/xestream.hxx, 	  sc/source/filter/inc/xestring.hxx: Implement enough glue to allow 	  XclExpSstImpl::SaveXml() to be invoked from the XML export context 	  and print useful information to the screen. 2008-11-18 21:06:28 +0100 kendy  r263881 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Implement support for writing .xlsx files. The .xlsx file written is still a BIFF8 (.xls) file, but a file is now written instead of generating an error message. 	* sc/inc/filter.hxx: Change the prototype of ScExportExcel5 so that we 		can specify Excel 2007 XML (Exp2007Xml) as a file format. 	* sc/source/filter/excel/excel.cxx: Refactor ScExportExcel5() so that 		Exp2007Xml is a supported format, and stub out Exp2007Xml support so 		that BIFF8 output is currently generated. 	* sc/source/ui/docshell/docsh.cxx: Add support for the "MS Excel 2007 		XML" filter and the new ScExportExcel5() semantics. 2008-11-18 21:06:03 +0100 kendy  r263880 : #i96320# xlsx export From: Jonathan Pryor <jpryor@novell.com> Make the filter names consistent with other filters used in sc/.../docsh.cxx. 	* filter/source/config/fragments/filters/calc_MS_Excel_2007_Binary.xcu, 	  filter/source/config/fragments/filters/calc_MS_Excel_2007_Binary_ui.xcu, 	  filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu, 	  filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template.xcu, 	  filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template_ui.xcu, 	  filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_ui.xcu, 	  filter/source/config/fragments/types/MS_Excel_2007_Binary.xcu, 	  filter/source/config/fragments/types/MS_Excel_2007_XML.xcu, 	  filter/source/config/fragments/types/MS_Excel_2007_XML_Template.xcu: 	  Remove 'Calc ' from the filter names (as none of the other filters 	  mentioned in sc/source/ui/docshell.cxx use that convention), and 	  remove 3RDPARTYFILTER from the filter's Flags property, as this flag 	  causes objstor.cxx to use ExportTo() instead of ConvertTo(), and the 	  existing Calc->Export logic is all within ConvertTo(). 2008-11-18 21:05:41 +0100 kendy  r263879 : #i96320# xlsx export From: Radek Doulik <rodo@novell.com> Initial work on ooxml export (xlsx) 	* filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu: 	ditto 	* filter/source/config/fragments/types/MS_Excel_2007_XML.xcu: 	reverse extensions order so that xlsx is shown in Save dialog as 	default 2008-11-18 20:53:43 +0100 kendy  r263877 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> Deliver tablestylelist.hxx so that we can use xmlfilterbase.hxx. And also just do forward declaration of TableStyle instead of including the header - it includes too much in that case. 2008-11-18 20:53:21 +0100 kendy  r263876 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Fix build break. 	* source/ppt/pptimport.cxx: getServiceFactory() was renamed to 	  getGlobalFactory(). 2008-11-18 20:52:49 +0100 kendy  r263875 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> Add some namespaces so that sax builds again. 2008-11-18 20:52:27 +0100 kendy  r263874 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Cleanup in sax (wrt. escaping attribute values). FastSaxSerializer::writeFastAttributeList() didn't properly escape attribute values, which broke number format export if the number format included e.g. '"' (double quote), e.g.:     [$$-409]#,##0.00;[RED]-[$$-409]#,##0.00;"" which shows numbers with a currency type, negative numbers in red, and 0 values as the empty string. 	* sc/source/filter/excel/ooxml-export-TODO.txt: Flush. 	* sax/source/fastparser/fshelper.cxx, 	  sax/source/fastparser/fastserializer.hxx, 	  sax/source/fastparser/fastserializer.cxx: Move fshelper.cxx's 	  lcl_Escape() to FastSaxSerializer::escapeXml(), and use escapeXml() 	  when writing attribute values. 2008-11-18 20:51:59 +0100 kendy  r263873 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> Make a bit more obvious what's happenning with AttributeLists. 2008-11-18 20:51:37 +0100 kendy  r263872 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> a from-scratch-build reveals some missed changes in include files :( 2008-11-18 20:51:11 +0100 kendy  r263871 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> deliver the header too 2008-11-18 20:50:48 +0100 kendy  r263870 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> public visibility of FastAttributeList class + some more convenience functions in fshelper 2008-11-18 20:50:26 +0100 kendy  r263869 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Add /Relationships/Relationship/@TargetMode support. This also fixes Calc hyperlink export, allowing Excel to properly read documents containing a hyperlink. 	* oox/inc/oox/core/xmlfilterbase.hxx, oox/source/core/xmlfilterbase.cxx: 	  Add a rTargetMode parameter to XmlFilterBase::addRelation(). 2008-11-18 20:50:04 +0100 kendy  r263868 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> add string.h 2008-11-18 20:49:42 +0100 kendy  r263867 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> Explicitely default construct maMarkStack [to be safe ;-)]. 2008-11-18 20:49:13 +0100 kendy  r263866 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> Rename writeMarked() to mergeTopMarks() and improve the implementation. Just writing the top mark is not enough; in more complex scenarios it would destroy the order completely.  This way we have better control over what's happening, and can nest the mark()/mergeTopMarks()/mergeTopMarks( true ) as necessary directly in the start/end tags. 2008-11-18 20:48:51 +0100 kendy  r263865 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> Add mark() and writeMarked() methods. These are to be able to change the order of the data being written. If you need to write eg.   p, r, rPr, [something], /rPr, t, [text], /r, /p, but get it in order   p, r, t, [text], /t, rPr, [something], /rPr, /r, /p, simply do   p, r, mark(), t, [text], /t, mark(), rPr, [something], /rPr,   writeMarked(), writeMarked(), /r, /p and you are done. 2008-11-18 20:48:24 +0100 kendy  r263864 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Move XML character escape logic into FastSerializerHelper. 	* sax/inc/sax/fshelper.hxx, sax/source/fastparser/fshelper.cxx: Add 	  and implement FastSerializerHelper::writeEscaped(), which escapes 	  any XML characters within the string before writing. 2008-11-18 20:48:02 +0100 kendy  r263863 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Introduce writeId(). 	* sax/inc/sax/fshelper.hxx sax/source/fastparser/fastserializer.cxx, 	  sax/source/fastparser/fastserializer.hxx, 	  sax/source/fastparser/fshelper.cxx: Add/implement 	  FastSerializerHelper::writeId(), which does the "usual" 	  sal_Int32->string conversion but manually, outside of any automatic 	  context.  This is done so that 	  XclExpXmlStream::WriteCurrentStreamAttributes() can write element 	  attributes "piecemeal"/on-demand, without needing to store the 	  relevant information into a separate object to generate all the 	  attributes at once. 2008-11-18 20:47:36 +0100 kendy  r263862 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Change the semantics of startElement() and singleElement(). 	* sax/source/fastparser/fshelper.cxx: Change the semantics of 	  startElement() and singleElement(), so that attributes with values 	  that are NULL are _skipped_, instead of ending all attributes.  This 	  allows us to have "optional" attributes, in which the attribute 	  won't be generated if the value is null.  This is needed so that the 	  //definedName/@localSheetId attribute is only emitted for non-global 	  sheet-specific names. 2008-11-18 20:47:14 +0100 kendy  r263861 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> call our pptx export filter from oox/pptimport when needed (yup, it is not only import filter from now ;-) 2008-11-18 20:46:51 +0100 kendy  r263860 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> How to install the stuff. 2008-11-18 20:46:29 +0100 kendy  r263859 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> Change 'core::addRelation' to 'static addRelation_impl'. To be better readable, and no symbol for that. 2008-11-18 20:46:04 +0100 kendy  r263858 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> generate document wide unique Id's 2008-11-18 20:45:40 +0100 kendy  r263857 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added standalone="yes" to xml document beginning  removed unneccessary ::rtl:: prefix in one case 2008-11-18 20:45:18 +0100 kendy  r263856 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added FSHelperPtr here as well 2008-11-18 20:44:56 +0100 kendy  r263855 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> call commit on StorageBase substorages rather than only on XStorage of these substorages so that the commit propagates recursively to all substorages 2008-11-18 20:44:34 +0100 kendy  r263854 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Implement getOutputStream(), some cleanup. 	* sax/inc/sax/fshelper.hxx: Add a getOutputStream() method so that 	  excdoc.cxx can easily use the addRelation(XOutputStream, ...) method. 	* sax/source/fastparser/fastserializer.cxx: Code refactor to remove 	  useless string duplication -- 	  Sequence<byte>(ToString(s).getStr(), ToString(s).getLength()) == bad. 	* sax/source/fastparser/fastserializer.hxx: Add getOutputStream() (for 	  use in fshelper.cxx); cleanupl. 	* sax/source/fastparser/fshelper.cxx: Implement getOutputStream(). 2008-11-18 20:44:12 +0100 kendy  r263853 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Add write() methods to write inside elements. 	* sax/inc/sax/fshelper.hxx: Add write() methods to write content to the 	  string inside of elements. 	* sax/source/fastparser/fshelper.cxx: Implement write() methods. 2008-11-18 20:43:50 +0100 kendy  r263852 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> making singleUnknownElement and singleFastElement be a uno method 2008-11-18 20:43:27 +0100 kendy  r263851 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added NS versions of fast methods 2008-11-18 20:43:05 +0100 kendy  r263850 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> support namespaces in attribute names as well 2008-11-18 20:42:44 +0100 kendy  r263849 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> fix content types writting after it got broken somewhere between m4 and m19 when Version was added to properties between MediaType and FullPath 2008-11-18 20:42:21 +0100 kendy  r263848 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> fixed FastAttributeList::getUnknownAttributes where a std::for_each wasn't working properly (because of ++ in bind) 2008-11-18 20:41:55 +0100 kendy  r263847 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> fix attributes list and its reference creation so that the instance can be freed in Reference::release 2008-11-18 20:41:33 +0100 kendy  r263846 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> export tokens  added xmlns to tokens 2008-11-18 20:41:08 +0100 kendy  r263845 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> instantiate token handler  support xml namespaces 2008-11-18 20:40:45 +0100 kendy  r263844 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added method to XmlFilterBase which opens stream with media type and returns newly created fast serializer shared ptr 2008-11-18 20:40:23 +0100 kendy  r263843 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com>     * oox/workben/ooxml-export-notes.txt: Flush. 2008-11-18 20:40:01 +0100 kendy  r263842 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> beefing up the fshelper 2008-11-18 20:39:40 +0100 kendy  r263841 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> export ChartConverterClass - it is now needed in XmlFilterBase 2008-11-18 20:39:17 +0100 kendy  r263840 : #i96316# OPC for export filters From: Jan Holesovsky <kendy@suse.cz> fastsax.uno.so was renamed to libfastsaxlx.so 2008-11-18 20:38:54 +0100 kendy  r263839 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> trying to do some useful stuff with the serializer 2008-11-18 20:38:26 +0100 kendy  r263838 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> use relation id names similar to ms office 2008-11-18 20:38:03 +0100 kendy  r263837 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> fixed typo in namespace url 2008-11-18 20:37:38 +0100 kendy  r263836 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added 2 new methods to XmlFilterBase for adding relations to base storage and to output streams 2008-11-18 20:37:15 +0100 kendy  r263835 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> let writable stream handle relation id's  new id can be queried by asking for property "RelId"  fixed another issue with writing relations of writable stream - the same one I fixed lately for storages - looks like another cut'n'pasted code :( 2008-11-18 20:36:48 +0100 kendy  r263834 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> trying to avoid char* -> OUString and back conversions 2008-11-18 20:36:26 +0100 kendy  r263833 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added commit methods to StorageBase and FilterBase to make things easier 2008-11-18 20:35:58 +0100 kendy  r263832 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added new openOutputStream method to XmlFilterBase to open output stream of given mediat type (which is then saved to [Content_Types.xml]  updated pptx export filter 2008-11-18 20:35:36 +0100 kendy  r263831 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> some casts to make compiler happy 2008-11-18 20:35:13 +0100 kendy  r263830 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> trying to make the fast serializer a bit less bloated 2008-11-18 20:34:51 +0100 kendy  r263829 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> do not get out of bounds of sequence  do not overwrite the id tag 2008-11-18 20:34:29 +0100 kendy  r263828 : #i96316# OPC for export filters From: Jonathan Pryor <jpryor@novell.com> Notes for trace output for the shared string table. 	* oox/workben/ooxml-export-notes.txt: Flush. 2008-11-18 20:34:07 +0100 kendy  r263827 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added ifdefs to fshelper.hxx to avoid problems when including more than once  fixed the constructor namespace  added export.map and made FastSerializerHelper class global 2008-11-18 20:33:44 +0100 kendy  r263826 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> defined OOXLIB and FASTSAXLIB variables to be used in makefiles 2008-11-18 20:33:18 +0100 kendy  r263825 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added constructor and added fshelper.obj to the makefile.mk 2008-11-18 20:32:56 +0100 kendy  r263824 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> added fast serializer helper files (not implemented yet)  make the fastsax a shared library (fastsax.uno.so --> libfastsaxlx.so)  deliver the fast serializer header 2008-11-18 20:32:34 +0100 kendy  r263823 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> add fast serializer to the uno component 2008-11-18 20:32:12 +0100 kendy  r263822 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> moved uno service and implementation names to headers 2008-11-18 20:31:46 +0100 kendy  r263821 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> split fastparser.cxx to fastparser.hxx with class declaration, fastparser.cxx with implementation and facreg.cxx with uno component implementation 2008-11-18 20:31:19 +0100 kendy  r263820 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> export storage base class,  remove old proof code from xml filter base 2008-11-18 20:30:57 +0100 kendy  r263819 : #i96316# OPC for export filters From: Radek Doulik <rodo@novell.com> exported filter base and zipstorage to be used in other module's filters 2008-11-18 20:30:35 +0100 kendy  r263818 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> make the FastSerializer as UNO service 2008-11-18 20:30:13 +0100 kendy  r263817 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> write out the attributes too 2008-11-18 20:29:51 +0100 kendy  r263816 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> some more changes to the fastserializer Originally this also duplicated the offapi changes in unoxml; but the unoxml files were removed recently ;-) 2008-11-18 20:29:24 +0100 kendy  r263815 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> move the fastserializer from oox module to sax module 2008-11-18 20:29:01 +0100 kendy  r263814 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> Adding a method to XFastAttributeList, in order to get the fast attributes along with unknown ones 2008-11-18 20:28:38 +0100 kendy  r263813 : #i96316# OPC for export filters From: Fridrich Strba <fstrba@novell.com> refactor the serializer 2008-11-18 20:28:16 +0100 kendy  r263812 : #i95759# docx/xlsx/pptx export filters From: Fridrich Strba <fstrba@novell.com> stuffing the serializer a bit more 2008-11-18 20:25:31 +0100 kendy  r263811 : #i95759# docx/xlsx/pptx export filters From: Jan Holesovsky <kendy@suse.cz> More explicit pointers to the export code. 2008-11-18 20:25:04 +0100 kendy  r263810 : #i95759# docx/xlsx/pptx export filters From: Fridrich Strba <fstrba@novell.com> adding and removing files up and down 2008-11-18 20:24:42 +0100 kendy  r263809 : #i95759# docx/xlsx/pptx export filters From: Fridrich Strba <fstrba@novell.com> adding fastserializer dummy inplementation 2008-11-18 20:24:19 +0100 kendy  r263808 : #i95759# docx/xlsx/pptx export filters From: Jan Holesovsky <kendy@suse.cz> Escher pointers. 2008-11-18 20:23:56 +0100 kendy  r263807 : #i95759# docx/xlsx/pptx export filters From: Fridrich Strba <fstrba@novell.com> removing the unnecessary FastSerializer service 2008-11-18 20:23:34 +0100 kendy  r263806 : #i95759# docx/xlsx/pptx export filters From: Radek Doulik <rodo@novell.com> XStream instead of XOutputStream for OOXML export filter. 2008-04-25  Radek Doulik  <rodo@novell.com> 	* oox/workben/ooxml-export-notes.txt: added odp export trace 	* oox/source/core/xmlfilterbase.cxx (implCreateStorage): added 	test code to create test storage and stream, also committing 	changes here 	* oox/inc/oox/helper/olestorage.* (class OleStorage): as below 	* oox/inc/oox/helper/zipstorage.*: as below 	* oox/inc/oox/helper/storagebase.* (class StorageBase): let 	export constructor use XStream instead of XOutputStream, change 	member type as well 	* oox/inc/oox/core/xmlfilterbase.* (class XmlFilterBase): as 	below 	* oox/inc/oox/core/binaryfilterbase.* (class BinaryFilterBase): 	as below 	* oox/inc/oox/core/filterbase.*: changed 	implCreateStorage method to get XStream instead of XOutputStream 	* sfx2/source/doc/objstor.cxx (ExportTo): added StreamForOutput 	XStream to media descriptor properties for OOXML export filter 	* comphelper/source/misc/mediadescriptor.cxx 	(PROP_STREAMFOROUTPUT): added StreamForOutput property 	* oox/source/helper/zipstorage.cxx (ZipStorage): open storage with 	OFOPXMLFormat 	* oox/source/helper/zipstorage.cxx (implOpenSubStorage): added 	implementation for export 	* oox/source/core/filterbase.cxx (setMediaDescriptor): add input 	stream only on import 2008-11-18 20:23:07 +0100 kendy  r263805 : #i95759# docx/xlsx/pptx export filters From: Fridrich Strba <fstrba@novell.com> add FastSerializer Service 2008-11-18 20:22:45 +0100 kendy  r263804 : #i95759# docx/xlsx/pptx export filters From: Fridrich Strba <fstrba@novell.com> add FastSerializer service 2008-11-18 20:22:23 +0100 kendy  r263803 : #i95759# docx/xlsx/pptx export filters From: Fridrich Strba <fstrba@novell.com> adapting the makefile.mk to build the XFastSerializer 2008-11-18 20:22:02 +0100 kendy  r263802 : #i95759# docx/xlsx/pptx export filters From: Fridrich Strba <fstrba@novell.com> Adding the XFastSerializer interface 2008-11-18 20:21:39 +0100 kendy  r263801 : #i95759# docx/xlsx/pptx export filters From: Jan Holesovsky <kendy@suse.cz> Added pointers to export code of binary filters. 2008-11-18 20:21:13 +0100 kendy  r263800 : #i95759# docx/xlsx/pptx export filters From: Jan Holesovsky <kendy@suse.cz> Implementation notes: affected modules. [Started the implementation notes by asking Fridrich ;-)] 2008-11-18 20:20:51 +0100 kendy  r263799 : #i95759# docx/xlsx/pptx export filters From: Radek Doulik <rodo@novell.com> Initial work on ooxml export 	* oox/source/helper/zipstorage.cxx (implOpenOutputStream): added 	prototype implementation 	(ZipStorage): this constructor needs to be implemented (on output stream)


2009-01-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [210309048a2e7e57c92386dfb78ca108ec4d7830]

CWS-TOOLING: integrate CWS overline3 2008-12-11 15:24:46 +0100 fredrikh  r265314 : i97099 2008-12-11 15:20:37 +0100 fredrikh  r265313 : i97099 2008-12-11 15:18:00 +0100 fredrikh  r265312 : i97099 2008-12-11 15:17:00 +0100 fredrikh  r265311 : i97099 2008-12-11 15:13:20 +0100 fredrikh  r265309 : i97144 2008-12-11 15:06:24 +0100 fredrikh  r265306 : i97099 2008-11-24 10:41:42 +0100 fme  r264213 : #i5991# Overline support 2008-11-24 10:39:53 +0100 fme  r264212 : #i5991# Overline support 2008-11-24 10:02:13 +0100 fme  r264209 : #5991# Overline support 2008-11-24 10:01:26 +0100 fme  r264208 : #5991# Overline support 2008-11-24 09:59:11 +0100 fme  r264207 : #5991# Overline support 2008-11-24 09:57:11 +0100 fme  r264206 : #5991# Overline support 2008-11-14 10:36:44 +0100 fme  r263667 : CWS-TOOLING: rebase CWS overline3 to trunk@263288 (milestone: DEV300:m35) 2008-11-13 16:12:13 +0100 fme  r263649 : #i5991# migrate CWS overline3 to SVN.


2009-01-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [6ef827a0f5a74af6bcb86afc99e930d43691dcfe]

CWS-TOOLING: integrate CWS aw059 2008-12-16 16:15:40 +0100 aw  r265557 : #i95645# avoid expensive tries to stream in graphic data when stream is at end anyways 2008-12-15 16:49:58 +0100 wg  r265512 : i97278 2008-12-12 16:02:15 +0100 aw  r265427 : #i95645# new formulation was wrong in two places; thanks go to THB. Thanks! 2008-12-12 15:49:06 +0100 aw  r265425 : #i95645# refined formulation of AA on/off constraints for VCLCanvas 2008-12-12 14:51:26 +0100 aw  r265420 : #i95645# workaround for DrawTransparent of button hilighting when remote displayed; somehow GDI+ does bad dithering in that case 2008-12-12 13:23:00 +0100 aw  r265414 : removed temporary build hack; it made it's way in using the rebase; with SVN the rebase is not based on pure checkouts, but uses local changes. 2008-12-11 19:35:59 +0100 aw  r265352 : #i95645# need to switch off AA for WNT and UNX, the VCLCanvas is currently not able to handle AA correctly 2008-12-11 16:05:17 +0100 thb  r265327 : #i95645# Changed defaults to on; as for the while svx dialog is not changed 2008-12-10 13:40:38 +0100 aw  r265180 : #i95645# changed pixel snap to basegfx::fround 2008-12-10 13:25:45 +0100 aw  r265177 : corrected linux warning 2008-12-10 12:28:02 +0100 aw  r265167 : #i95645# added support for pixel snap/linux resp. no AA for mac (also pixel snap) when AA is switched off to the basegfx::B2DPolyPolygon painting VCL methods; needed for e.g. selection in SC and SW 2008-12-09 18:44:39 +0100 aw  r265136 : #i95645# corrected filled path construction 2008-12-09 18:12:40 +0100 aw  r265133 : #i95645# added support for non-AAd transparent paints 2008-12-09 18:11:58 +0100 aw  r265132 : #i95645# forced selection without AA 2008-12-09 18:11:29 +0100 aw  r265131 : #i88893# smoothed/corrected SW selection rects for transparent selection, forced selection without AA 2008-12-09 15:21:39 +0100 aw  r265094 : #i95645# corrected FormControl full drag 2008-12-09 15:11:26 +0100 aw  r265093 : #i95645# make gdiplus usages more safe when no line or fill color is selected 2008-12-09 14:30:09 +0100 aw  r265085 : #i95645# added GDIPlus support 2008-12-09 13:41:06 +0100 aw  r265081 : #i95645# added simple AA using GDIPlis to VCL 2008-12-09 13:40:46 +0100 aw  r265080 : #i95645# added simple AA using GDIPlis to VCL 2008-12-09 13:40:29 +0100 aw  r265079 : #i95645# added simple AA using GDIPlis to VCL 2008-12-09 13:33:16 +0100 aw  r265078 : #i95645# changes to requirements, discussed with FPE 2008-12-08 14:11:39 +0100 aw  r264995 : #i95646# added missing extra-wireframe for SdrDragObjOwn implementations when object has no border 2008-12-08 14:11:00 +0100 aw  r264994 : #i95646# corrected RenderMarkerArrayPrimitive2D OutDev usage in VclProcessor2D 2008-12-08 12:15:10 +0100 ufi  r264987 : aw059 2008-12-08 12:14:40 +0100 ufi  r264986 : aw059 2008-12-05 13:16:18 +0100 aw  r264905 : CWS-TOOLING: rebase CWS aw059 to trunk@264807 (milestone: DEV300:m37) 2008-12-04 11:29:48 +0100 aw  r264827 : #i95645# corrected warning 2008-12-03 14:43:39 +0100 aw  r264783 : #i95645# simplified overlay manager and objects to stl vector; added stuff to render some more overlay to primitive renderer to get AA support for WIN32 2008-12-03 14:42:43 +0100 aw  r264782 : #i95645# added test for WIN32 for AA if cairo canvas is available 2008-12-03 14:42:13 +0100 aw  r264781 : #i95645# removed unused options for writer selection overlay 2008-12-03 14:41:51 +0100 aw  r264780 : #i95645# removed unused options for calc overlay 2008-12-03 14:41:21 +0100 aw  r264779 : #i95645# small corrections in canvas renderer 2008-12-02 18:32:31 +0100 aw  r264730 : #i95646# merged cairo version from THB's CWS cairosource01 2008-12-02 15:25:45 +0100 aw  r264705 : #i95645# added helpers for the MarkerArrayPrimitive2D change which support buffered creation of the most used markers 2008-12-02 12:50:01 +0100 aw  r264690 : #i95645# added a non-saved method IsAAPossibleOnThisSystem to SvtOptionsDrawinglayer to quickly test if AA can be offered on the system, added buffering of that check. 2008-12-02 12:48:51 +0100 aw  r264689 : #i95645# unified MarkerArrayPrimitive2D to work bitmap-orientated, adapted usages. Added buffered preparation for needed markers. Minor adaptions for AA 2008-12-02 12:47:53 +0100 aw  r264688 : #i95645# unified MarkerArrayPrimitive2D to no longer work on a enum and types of markers, but to use a BitmapEx (or any other Bitmap object) which will be displayed centerd and in discrete coordinates at positions. Adapted decomposition and all usages. Corrected minor stuff with grid primitive 2008-11-28 17:11:12 +0100 thb  r264565 : #i95645# Added two more lists to config; to be able to differentiate canvas capabilities 2008-11-28 17:03:27 +0100 thb  r264563 : #i95645# Added two more lists to config; to be able to differentiate canvas capabilities 2008-11-28 17:00:07 +0100 thb  r264562 : #i95645# Added two more lists to config; to be able to differentiate canvas capabilities 2008-11-28 16:59:51 +0100 thb  r264561 : #i95645# Added two more lists to config; to be able to differentiate canvas capabilities 2008-11-27 19:13:42 +0100 aw  r264519 : #i95646# optimized getLength() a little bit 2008-11-27 19:12:50 +0100 aw  r264518 : #i95646# corrected AA expansion of invalidate frame; buffered discrete distance at OM 2008-11-27 18:50:05 +0100 aw  r264516 : #i95646# corrected fit to frame texts for WIN32 2008-11-27 15:32:15 +0100 aw  r264496 : #i95646# helplines corrected 2008-11-27 15:32:05 +0100 aw  r264495 : #i95646# helplines corrected 2008-11-27 15:01:30 +0100 aw  r264492 : #i95646# enable AA support for old polygons, especially to get support for MetaFile output 2008-11-27 14:33:28 +0100 aw  r264489 : #i95646# AA support for wireframe overlays 2008-11-27 13:40:54 +0100 aw  r264485 : #i95646# added full repaint when AA option changes 2008-11-27 13:29:19 +0100 aw  r264482 : #i95646# corrected handling of bSolidDragging config entries 2008-11-27 13:29:08 +0100 aw  r264481 : #i95646# corrected handling of bSolidDragging config entries 2008-11-27 11:30:12 +0100 aw  r264469 : #i95646# corrected IsAAPossibleOnThisSystem implementation 2008-11-26 16:33:04 +0100 aw  r264420 : #i95646# adapted OfaViewTabPage to use disable mechanism for AA and HWAccel 2008-11-26 15:49:19 +0100 aw  r264406 : #i95646# added DlgEdObj::getFullDragClone() to create specialized simple SdrUnoObj clones for solid dragging 2008-11-26 15:48:11 +0100 aw  r264405 : #i95646# changed derivation of ViewObjectContactOfUnoControl to get a valid isPrimitiveVisible() implementation 2008-11-26 14:11:37 +0100 aw  r264385 : #i88893# added new look for selection in sw 2008-11-26 11:32:33 +0100 aw  r264360 : corrected compiler warning 2008-11-25 18:46:29 +0100 aw  r264328 : #i95646# snapshot with FullDrag clones 2008-11-25 18:46:07 +0100 aw  r264327 : #i95646# snapshot with FullDrag clones 2008-11-25 18:45:43 +0100 aw  r264326 : #i95646# snapshot with FullDrag clones 2008-11-25 18:19:04 +0100 thb  r264324 : #i96585# Added missing inline specifier 2008-11-25 13:16:25 +0100 aw  r264285 : #i95646# next snapshot 2008-11-25 13:15:33 +0100 aw  r264284 : #i95646# next snapshot 2008-11-25 13:15:12 +0100 aw  r264283 : #i95646# next snapshot 2008-11-25 13:14:51 +0100 aw  r264282 : #i95646# next snapshot 2008-11-20 13:40:49 +0100 aw  r264045 : #i95646# stable snapshot 2008-11-20 13:40:29 +0100 aw  r264044 : #i95646# stable snapshot 2008-11-20 13:40:06 +0100 aw  r264043 : #i95646# stable snapshot 2008-11-20 13:39:45 +0100 aw  r264042 : #i95646# stable snapshot 2008-11-18 11:53:39 +0100 aw  r263758 : #i95646# snapshot for linux test build 2008-11-18 11:52:54 +0100 aw  r263757 : #i95646# snapshot for linux test build 2008-11-18 11:52:02 +0100 aw  r263756 : #i95646# snapshot for linux test build 2008-11-14 18:17:49 +0100 aw  r263692 : #i95646# snapshot with most stuff working 2008-11-14 18:14:26 +0100 aw  r263691 : #i95646# snapshot with most stuff working 2008-11-14 18:12:50 +0100 aw  r263690 : #i95646# snapshot with most stuff working 2008-11-14 18:12:16 +0100 aw  r263689 : #i95646# snapshot with most stuff working 2008-11-14 18:11:41 +0100 aw  r263688 : #i95646# snapshot with most stuff working 2008-11-07 18:44:22 +0100 aw  r263479 : #i95968# better support PrefMapMode; special for MAP_PIXEL was missing 2008-11-05 17:39:15 +0100 aw  r263356 : #i95644# #i95645# #i95646# bigger change done, saving for another experiment 2008-11-05 17:39:02 +0100 aw  r263355 : #i95644# #i95645# #i95646# bigger change done, saving for another experiment 2008-11-05 12:28:32 +0100 aw  r263350 : #i95644# #i95645# #i95646# in-between state before bigger change 2008-11-05 12:27:51 +0100 aw  r263349 : #i95644# #i95645# #i95646# in-between state before bigger change 2008-11-05 12:26:58 +0100 aw  r263348 : #i95644# #i95645# #i95646# in-between state before bigger change 2008-11-05 12:26:17 +0100 aw  r263347 : #i95644# #i95645# #i95646# in-between state before bigger change 2008-11-05 12:25:55 +0100 aw  r263346 : #i95644# #i95645# #i95646# in-between state before bigger change


2008-12-30  Jens-Heiner Rechtien  <hr@openoffice.org>  [941ccd249deca15fd57dbc1b1063c471dac398bf]

CWS-TOOLING: integrate CWS hr58 2008-12-29 16:47:08 +0100 hr  r265821 : #i97331#: changes for compiling with SunStudio12 on Solaris 10 (x86) 2008-12-18 16:16:11 +0100 hr  r265701 : #i97331#: revert to revision r265576 2008-12-18 16:00:41 +0100 hr  r265699 : #i97331#: fix typo in last change 2008-12-17 18:16:18 +0100 hr  r265653 : #i97331#: add comment 2008-12-17 18:11:11 +0100 hr  r265652 : #i97331#: make -xc99=all again dependend on SYSBASEROOT being set 2008-12-17 01:54:23 +0100 hr  r265576 : #i97331#: changes for compiling with SunStudio12 on Solaris 10 (Sparc)


2008-12-30  Jens-Heiner Rechtien  <hr@openoffice.org>  [075968b9cbe14c1c598f28043228b20c6fc2a60c]

CWS-TOOLING: integrate CWS sb102 2008-12-11 16:18:12 +0100 sb  r265332 : #i95065# cleanup, to make Windows linking work 2008-12-11 16:16:03 +0100 sb  r265331 : #i95065# missing SAL_DLLPUBLIC_EXPORT 2008-12-09 17:40:28 +0100 sb  r265122 : #i94469# move CJK specific configuration data to brand layer 2008-12-09 16:09:08 +0100 sb  r265112 : #i96959# use PTHREAD_MUTEX_RECURSIVE on all platforms 2008-12-09 15:54:31 +0100 sb  r265110 : #i95065# do not derive apphelper::LifeTimeGuard from osl::ResettableMutexGuard to avoid problems with VISIBILITY_HIDDEN=TRUE on MSC 2008-12-09 15:40:51 +0100 sb  r265104 : #i95065# add VISIBILITY_HIDDEN=TRUE to connectivity/source/drivers/mozab 2008-12-09 15:36:21 +0100 sb  r265102 : #i95501# updated SDK_HOME 2008-12-09 15:31:46 +0100 sb  r265099 : typo (temppath vs. tmppath) 2008-12-08 11:48:08 +0100 sb  r264979 : #i95065# removed spurious ExplicitCategoriesProvider.obj (ExplicitCategoriesProvider.cxx is not in this directory) 2008-12-07 19:41:07 +0100 sb  r264960 : #i96994# erroneously doubled backslash caused visibility feature to be disabled for all GCC versions on Mac OS X 2008-12-06 23:54:49 +0100 sb  r264948 : changes from trunk that CWS-TOOLING's rebase to DEV300:m37 (r264891) had missed, as files had been moved around on this CWS 2008-12-05 20:29:23 +0100 sb  r264919 : #i85508# versions of flex apparently differ in whether input() resp. yyinput() returns zero or EOF upon end of file 2008-12-05 15:37:23 +0100 sb  r264908 : #i95315# removed obsolete jut 2008-12-05 15:34:59 +0100 sb  r264907 : #i95531# removed empty obsolete directories 2008-12-05 10:09:23 +0100 sb  r264891 : CWS-TOOLING: rebase CWS sb102 to trunk@264807 (milestone: DEV300:m37) 2008-12-04 14:50:20 +0100 sb  r264845 : #i95065# introduced VISIBILITY_HIDDEN makefile flag to reduce duplications; made additional libraries use VISIBILITY_HIDDEN=TRUE to avoid warnings with recent GCC 4 versions (had to split certain code directories to make changes that would otherwise erroneously affect multiple libraries built in the same makefile); changed connectivity::ORefVector to no longer derive from std::vector, as that caused problems with the MSC implementation of VISIBILITY_HIDDEN=TRUE; replaced uses of JNIEXPORT with SAL_DLLPUBLIC_EXPORT, as the former does not expand to visibility attributes on some platforms where the latter does 2008-12-03 11:29:38 +0100 sb  r264759 : #i94583# remove unnecessary (and wrong) assertion check for rtl_getAppCommandArg return value (which is guaranteed to return osl_Process_E_None or not return at all) 2008-12-02 17:18:31 +0100 sb  r264724 : #i96809# silenced GCC 4.3.2 warning 2008-12-02 13:29:34 +0100 sb  r264695 : #i96797# make get_tmp_dir fail less often 2008-11-28 17:19:24 +0100 sb  r264566 : #i95691# inadvertently missing from -c 264564 2008-11-28 17:07:50 +0100 sb  r264564 : #i95691# only structs of exactly 1, 2, 4, or 8 bytes are returned through registers 2008-11-25 13:28:08 +0100 sb  r264291 : #i96427# support for SAL_EXCEPTION_DLLPUBLIC_EXPORT (patch by np) 2008-11-21 14:45:22 +0100 sb  r264140 : #i95428# added SAL_EXCEPTION_DLLPUBLIC_EXPORT and SAL_EXCEPTION_DLLPRIVATE 2008-11-19 13:19:37 +0100 sb  r263984 : #i95525# removed erroneous application/octet-stream svn:mime-type properties


2008-12-18  Rüdiger Timm  <rt@openoffice.org>  [0828f9842fb6fe0051b9f0ec2fc280413e2bb5cc]

#i10000# Initialize 'fVal' variable to avoid warning.


2008-12-18  Rüdiger Timm  <rt@openoffice.org>  [e5ae0aaf043b922447d1258cef2bc0ed7aaf165f]

#i10000# Define variables.


2008-12-16  Rüdiger Timm  <rt@openoffice.org>  [d9cd9beffb58b974da7443e1cd571097ecc337c9]

CWS-TOOLING: integrate CWS rtlcontrols 2008-12-11 21:08:49 +0100 fs  r265367 : CONTEXT_WRITING_MODE is transient 2008-12-11 21:08:00 +0100 fs  r265365 : REGISTER_PROP_3 2008-12-11 20:53:44 +0100 fs  r265362 : ContextWritingMode is not MAYBEVOID 2008-12-11 15:29:08 +0100 fs  r265315 : prevent a deadlock during complex.dbaccess.DatabaseDocument test 2008-12-11 15:01:13 +0100 fs  r265304 : manual RESYNC to m37 2008-12-10 20:04:38 +0100 pl  r265230 : #i30631# fix a snafu in mirroring 2008-12-10 19:14:45 +0100 pl  r265229 : #i30631# rework PaintToDevice for RTL controls 2008-12-05 10:19:13 +0100 fs  r264893 : #i10000# ImplInitSettings => ImplInitWindow (ImplInitSettings clashed with base classes ImplInitSettings on unxsols4) 2008-12-03 12:55:24 +0100 fs  r264768 : #i100000# 2008-12-03 07:11:48 +0100 fs  r264741 : #i10000# 2008-12-02 10:37:51 +0100 fs  r264670 : CWS-TOOLING: rebase CWS rtlcontrols to trunk@264325 (milestone: DEV300:m36) 2008-12-02 09:27:50 +0100 fs  r264660 : merge from trunk 2008-11-25 10:28:36 +0100 ama  r264277 : Fix #i94572# 2008-11-24 11:46:48 +0100 fs  r264218 : #i30631# proper context writing mode 2008-11-24 09:38:04 +0100 fs  r264204 : #i30631# (approved by PL) 2008-11-24 09:35:47 +0100 fs  r264203 : #i30631# Context/WritingMode 2008-11-24 09:33:36 +0100 fs  r264202 : #i30631# Context/WritingMode 2008-11-24 09:31:53 +0100 fs  r264200 : #i30631# RTL 2008-11-19 08:51:48 +0100 fs  r263963 : #i10000# 2008-11-18 20:58:11 +0100 fs  r263878 : #i10000# 2008-11-18 15:30:44 +0100 fs  r263778 : migrate the CWS from CVS to SVN the CVS changes contained in this change set are the ones between the following two CVS tags: CWS_DEV300_RTLCONTROLS_ANCHOR CWS_DEV300_RTLCONTROLS_PRE_MIGRATION 2008-11-18 12:29:04 +0100 ama  r263762 : Fix #i94572#: Context direction for drawing objects 2008-11-18 12:25:50 +0100 ama  r263761 : Fix #i94572#: Context direction for drawing objects 2008-11-18 12:02:30 +0100 ama  r263759 : Fix #i94572#: Context direction for drawing objects


2008-12-15  Rüdiger Timm  <rt@openoffice.org>  [2f9981920a51efad6c55bac5d4011160e2cb605e]

CWS-TOOLING: integrate CWS tl56_DEV300


2008-12-12  Rüdiger Timm  <rt@openoffice.org>  [aff547bc645a41887c66052f0ad38659b5067cb3]

CWS-TOOLING: integrate CWS fwk92 2008-12-04 14:43:28 +0100 oc  r264844 : #i96788# 2008-12-03 02:15:17 +0100 fredrikh  r264734 : i96817 2008-12-02 16:42:46 +0100 tbo  r264720 : #i96763# changes to password dialog for framework, math, global 2008-11-26 16:26:28 +0100 mav  r264418 : #i93617# fix typo 2008-11-26 16:13:03 +0100 mav  r264411 : #i93617# fix the linux scenario 2008-11-25 17:58:01 +0100 mav  r264323 : #i93617# fix the windows problems 2008-11-25 17:51:33 +0100 mav  r264321 : #i93617# fix the windows problems 2008-11-21 16:01:18 +0100 mav  r264145 : #i78753# integrate the patch 2008-11-21 14:08:32 +0100 mav  r264136 : #i93617# integrate the patch 2008-11-21 13:01:56 +0100 mav  r264127 : #i82947# integrate the patch 2008-11-20 18:14:19 +0100 mav  r264092 : #i95793# look for import filter 2008-11-18 15:23:44 +0100 pb  r263776 : fix: #i92579# #i92583# SvxSecurity/SearchPage: more space for controls 2008-11-18 15:21:39 +0100 pb  r263774 : fix: #i92579# #i92583# SvxSecurity/SearchPage: more space for controls 2008-11-18 15:18:54 +0100 pb  r263772 : fix: #i92583# SvxSearchPage::InitControls_Impl() added 2008-11-18 15:16:07 +0100 pb  r263771 : fix: #i92579# columns calculated newly 2008-11-18 11:09:28 +0100 mav  r263751 : #i21923# small fixes 2008-11-17 17:22:04 +0100 mav  r263730 : #i21923# integrate the patch 2008-11-17 14:29:02 +0100 mav  r263723 : #i21923# integrate the patch 2008-11-13 16:46:08 +0100 mav  r263653 : #i88127# integrate the patch 2008-11-13 14:46:56 +0100 mav  r263645 : #i54638# integrate the patch 2008-11-11 13:11:03 +0100 pb  r263554 : fix: #i93142# disable maRecommReadOnlyCB on read-only documents 2008-11-10 13:30:58 +0100 pb  r263516 : fix: #i93833# Mozilla Plug-in -> Browser Plug-in 2008-11-10 13:29:10 +0100 pb  r263515 : fix: #i93833# Mozilla Plug-in -> Browser Plug-in 2008-11-10 06:10:11 +0100 pb  r263505 : fix: #i94937# now .uno.ExtendedHelp without image 2008-11-04 20:52:50 +0100 mav  r263337 : migrate cws fwk92 to svn


2008-12-12  Rüdiger Timm  <rt@openoffice.org>  [1c5117848c50b6eba617f43d02a89b7847d11de3]

CWS-TOOLING: integrate CWS rtlchart02


2008-12-12  Rüdiger Timm  <rt@openoffice.org>  [3b924d0dfb21ea9616bd5d9656f9daf0234d946d]

CWS-TOOLING: integrate CWS mooxlsc 2008-12-12 09:32:19 +0100 dr  r265390 : #i10000# warning 2008-12-11 14:54:26 +0100 dr  r265301 : add strings from dr66 to meet ui freeze 2008-12-11 14:53:20 +0100 dr  r265300 : add strings from dr66 to meet ui freeze 2008-12-08 14:43:25 +0100 er  r264997 : DBG_... need semicolon 2008-12-04 19:16:50 +0100 er  r264872 : DBG_... needs semicolon 2008-12-04 11:09:27 +0100 er  r264824 : DBG_ERROR needs semicolon 2008-12-03 13:29:46 +0100 er  r264770 : CWS-TOOLING: rebase CWS mooxlsc to trunk@264325 (milestone: DEV300:m36) 2008-12-02 16:49:09 +0100 er  r264722 : disable code for named references #i4385# import as long as #i3740# isn't fully implemented 2008-12-02 16:45:04 +0100 er  r264721 : some compilers attempt to be too smart; persuade them it's really meant what was written 2008-12-02 16:04:56 +0100 er  r264715 : #i3740# no storage in ODF for external name references 2008-11-29 02:20:50 +0100 er  r264575 : some huge performance improvement when reading repeated empty rows for the external references cache from ODF, as they often occur in the sparse matrix 2008-11-29 01:14:55 +0100 er  r264574 : WriteExternalRefCaches: for table:number-columns-repeated write used columns instead of MAXCOLCOUNT 2008-11-28 18:30:04 +0100 er  r264570 : #i3740# write/read external name references as bracketed references, as proposed on the ODFF list 2008-11-27 20:36:54 +0100 er  r264521 : merge i95068 from cws calc46 for code correctness 2008-11-21 20:39:34 +0100 kohei  r264174 : fixed a crash when importing a BIFF8 document with per-sheet external names. For now, we don't support per-sheet external names.  Let's throw in NoName error until they are supported. 2008-11-21 18:47:27 +0100 kohei  r264168 : I forgot to process cached range references in the EXTERNNAME record, which prevented cached external names with range references from being imported correctly. P.S. I swear I thought I had covered this.... 2008-11-20 23:07:22 +0100 er  r264104 : #i4385# parse external defined names in MOOXML import 2008-11-14 23:18:54 +0100 er  r263700 : #i92797# parse external sheet references under aspects of MOOXML import and new ScExternalRefManager 2008-11-14 18:49:48 +0100 er  r263696 : remove infinity assertion, leftover from binary file format; coded double error may occur via filter import 2008-11-12 13:29:44 +0100 er  r263593 : make references to entire rows/columns, such as A:A or 3:3, actually work in MOOXML import 2008-11-03 12:35:11 +0100 er  r263282 : a struct is a struct is a ... 2008-10-31 00:30:59 +0100 er  r262843 : aTableRowCellAttrTokenMap needed 2008-10-31 00:26:07 +0100 er  r262842 : GetTableRowCellAttrTokenMap() is not unused 2008-10-31 00:13:53 +0100 er  r262841 : merge error 2008-10-31 00:05:39 +0100 er  r262840 : merge error 2008-10-30 23:17:48 +0100 er  r262839 : unresolved merge conflict!?! 2008-10-30 22:59:11 +0100 er  r262838 : merge error 2008-10-30 16:31:04 +0100 hr  r262833 : CWS-TOOLING: rebase CWS mooxlsc to trunk@262620 (milestone: DEV300:m34) 2008-10-16 21:57:51 +0200 er  r262272 : migrate CWS mooxlsc to SVN


2008-12-11  Rüdiger Timm  <rt@openoffice.org>  [85941fa1e6daaf23ede37c018a938207490ded6d]

CWS-TOOLING: integrate CWS calc47 2008-12-10 20:38:34 +0100 oc  r265231 : #i97115# 2008-12-09 14:19:59 +0100 oc  r265084 : #i96939# 2008-12-09 11:55:29 +0100 oc  r265073 : #i97061# 2008-12-09 11:37:05 +0100 oc  r265067 : #i97061# 2008-12-09 11:31:49 +0100 oc  r265066 : #i97061# 2008-12-09 11:30:30 +0100 oc  r265065 : #i97061# 2008-12-04 17:13:43 +0100 er  r264859 : DBG_ERROR needs semicolon 2008-12-04 02:34:13 +0100 er  r264811 : unxsols4 needs to be compiled with exceptions when using STL 2008-12-04 02:24:30 +0100 er  r264810 : WaE unxsols4: ScZoomSliderWnd::Update hides the function Window::Update() 2008-12-04 01:40:22 +0100 er  r264809 : DBG_ASSERT needs semicolon 2008-12-03 11:00:55 +0100 er  r264753 : CWS-TOOLING: rebase CWS calc47 to trunk@264325 (milestone: DEV300:m36) 2008-10-31 12:30:09 +0100 nn  r262863 : #i90362# call CheckNeedsRepaint in UpdateFormulas 2008-10-29 14:49:48 +0100 nn  r262802 : #i88521# initialization order (gcc warning) 2008-10-29 12:31:38 +0100 nn  r262782 : #i88521# toolbar entry for scaling factor in page preview (patch from maoyg) 2008-10-29 12:31:00 +0100 nn  r262781 : #i88521# toolbar entry for scaling factor in page preview (patch from maoyg) 2008-10-29 12:28:45 +0100 nn  r262780 : #i88521# toolbar entry for scaling factor in page preview (patch from maoyg) 2008-10-28 17:01:37 +0100 nn  r262756 : resolve gcc warnings 2008-10-28 13:46:07 +0100 nn  r262742 : #i9709# always use system encoding for DDE (patch from rail) 2008-10-28 13:45:44 +0100 nn  r262741 : #i9709# always use system encoding for DDE (patch from rail) 2008-10-27 20:55:51 +0100 nn  r262689 : #i44349# refresh auto filter flags in ScUndoDragDrop::Redo (patch from gaozm) 2008-10-27 20:40:06 +0100 nn  r262688 : #i4517# rename sheet with double click (patch from kohei) 2008-10-27 20:28:55 +0100 nn  r262687 : #i20491# ensure stable sorting (patch from maoyg) 2008-10-27 20:13:19 +0100 nn  r262686 : #i22758# direct sort (toolbar buttons): detect headers (patch from maoyg) 2008-10-27 19:42:51 +0100 nn  r262685 : #i7277# default for sorting is cursor column (patch from maoyg) 2008-10-27 19:18:57 +0100 nn  r262684 : #i7088# insert/delete columns/rows across selected sheets (patch from maoyg) 2008-10-27 18:59:43 +0100 nn  r262683 : #i86856# show formula syntax in tip help (patch from maoyg) 2008-10-27 18:30:45 +0100 nn  r262682 : #i89145# scroll wheel handling in page preview (patch from maoyg) 2008-10-27 18:03:10 +0100 nn  r262681 : #i85226# take care of subtotal formulas in ScUndoQuery::Undo (patch from gaozm) 2008-10-27 17:41:16 +0100 nn  r262680 : #i88437# add zoom slider in status bar also for Calc (patch from maoyg) 2008-10-27 15:53:52 +0100 nn  r262678 : #i88467# undo for page margins/column widths in page preview (patch from maoyg)


2008-12-11  Rüdiger Timm  <rt@openoffice.org>  [cd199e404ce4225b36b17ec22af1b3b1b7d00fd6]

CWS-TOOLING: integrate CWS cmcfixes51 2008-12-08 10:12:55 +0100 cmc  r264975 : #i96203# protect with ifdefs to avoid unused symbol on mac 2008-12-05 12:23:47 +0100 cmc  r264898 : CWS-TOOLING: rebase CWS cmcfixes51 to trunk@264807 (milestone: DEV300:m37) 2008-12-01 14:45:17 +0100 cmc  r264606 : #i76655# ehlos apparently required 2008-11-28 17:49:30 +0100 cmc  r264567 : #i96655# remove newly unused method 2008-11-28 10:41:28 +0100 cmc  r264531 : #i96647# better ppc-bridges flushCode impl 2008-11-27 12:58:40 +0100 cmc  r264478 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 12:32:49 +0100 cmc  r264476 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 12:26:02 +0100 cmc  r264475 : #i96655# redundant old table export helpers 2008-11-27 11:49:06 +0100 cmc  r264473 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 11:38:35 +0100 cmc  r264471 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 11:14:21 +0100 cmc  r264467 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 11:06:22 +0100 cmc  r264464 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 10:58:18 +0100 cmc  r264462 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 10:41:44 +0100 cmc  r264461 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 10:19:24 +0100 cmc  r264460 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 10:13:39 +0100 cmc  r264459 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 10:06:14 +0100 cmc  r264458 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 09:59:54 +0100 cmc  r264457 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 09:52:51 +0100 cmc  r264456 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 09:48:26 +0100 cmc  r264454 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 09:40:20 +0100 cmc  r264452 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 09:35:26 +0100 cmc  r264451 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 09:31:00 +0100 cmc  r264450 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 09:24:08 +0100 cmc  r264449 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 00:26:15 +0100 cmc  r264443 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 00:21:01 +0100 cmc  r264442 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-27 00:09:40 +0100 cmc  r264441 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 23:51:56 +0100 cmc  r264440 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 23:49:09 +0100 cmc  r264439 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 18:09:54 +0100 cmc  r264432 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 18:07:40 +0100 cmc  r264431 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 17:28:02 +0100 cmc  r264429 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 17:27:39 +0100 cmc  r264428 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 17:18:36 +0100 cmc  r264426 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 16:22:16 +0100 cmc  r264415 : #i96624# make implicit braces and brackets explicit to avoid warnings 2008-11-26 16:00:23 +0100 cmc  r264409 : #i90426# remove warnings from svtools 2008-11-26 15:59:17 +0100 cmc  r264408 : #i90426# remove warnings 2008-11-26 15:47:32 +0100 cmc  r264404 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 14:46:57 +0100 cmc  r264394 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 14:19:50 +0100 cmc  r264387 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 14:15:26 +0100 cmc  r264386 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 14:11:26 +0100 cmc  r264384 : #i96084# confirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 13:44:23 +0100 cmc  r264380 : #i96084# comfirm existing logic with explicit brackets to remove new gcc warnings 2008-11-26 13:12:24 +0100 cmc  r264372 : #i96604# silence new warnings 2008-11-26 12:35:02 +0100 cmc  r264369 : #i96203# make qstarter work in 3-layer land 2008-11-26 12:33:04 +0100 cmc  r264368 : #i96170# ensure gtypes are up and running


2008-12-10  Rüdiger Timm  <rt@openoffice.org>  [4875b1e5650f9ff4c89c34d1afc0f85799439465]

CWS-TOOLING: integrate CWS dba31f 2008-12-10 14:16:09 +0100 oj  r265185 : #i96658# remove is 2008-12-10 08:46:07 +0100 oj  r265147 : remove duplicate ids 2008-12-10 08:35:02 +0100 oj  r265146 : #i96658# remove is 2008-12-09 11:44:35 +0100 oj  r265072 : use of tools::StringresourceList 2008-12-09 11:43:41 +0100 oj  r265071 : new class to read string elements from a Resource 2008-12-09 11:41:56 +0100 oj  r265070 : export StringListResource 2008-12-09 11:38:17 +0100 oj  r265068 : change string ; to more string objects 2008-12-08 12:11:43 +0100 oj  r264985 : change default-license-id to lic-en-US 2008-12-05 12:06:09 +0100 oj  r264896 : disable check to uncheck 2008-12-04 08:58:50 +0100 oj  r264814 : #i96517,i96520,i96522# d&d, background, state fixed 2008-12-04 08:53:29 +0100 oj  r264813 : #i96434# use document ui name from filter 2008-12-04 08:41:06 +0100 oj  r264812 : #i96434# use document ui name from filter 2008-12-02 13:48:49 +0100 lla  r264697 : #i96526# extra string for default otr wasn't found 2008-11-28 11:46:31 +0100 oj  r264536 : move toolbar and resize add field dlg 2008-11-28 08:38:22 +0100 oj  r264526 : load string resources 2008-11-27 19:28:52 +0100 oj  r264520 : unsigned 2008-11-27 19:10:19 +0100 oj  r264517 : move class into unnamed namespace 2008-11-27 18:33:38 +0100 oj  r264514 : wrong param 2008-11-27 16:52:39 +0100 oj  r264510 : #i96622# wrong string replacement 2008-11-27 16:46:03 +0100 oj  r264509 : remove unused var 2008-11-27 13:37:16 +0100 oj  r264484 : #i96432# notify only when not in special mode of the page 2008-11-27 13:16:47 +0100 oj  r264479 : #i95224# accept alias in group by 2008-11-27 12:35:19 +0100 oj  r264477 : #i95416# always show localized strings in the start marker 2008-11-27 09:49:29 +0100 oj  r264455 : #i93460# set split pos 2008-11-27 09:05:27 +0100 oj  r264447 : #i96453# use extension from mimetype / mediatype 2008-11-26 16:24:43 +0100 oj  r264416 : #i96520# #i96522# #i96519# some changes at the add field dialog 2008-11-26 16:20:27 +0100 oj  r264414 : #i93420# prevent to register a none system file  url 2008-11-26 16:19:02 +0100 oj  r264413 : #i96522# new class to paste multiple objects 2008-11-26 10:06:12 +0100 oj  r264349 : #i96191# introduce new error message and check if type was defined aand should not be changed 2008-11-26 10:06:12 +0100 oj  r264348 : #i96191# throw error when decimal is to big 2008-11-25 12:08:59 +0100 oj  r264281 : #i96431# correct state for align and move 2008-11-25 11:54:47 +0100 oj  r264280 : #i96428# when new bind to first table 2008-11-25 11:49:55 +0100 oj  r264279 : #i96434# add report output format to inspection 2008-11-25 11:49:05 +0100 oj  r264278 : #i96434# add report output format to inspection 2008-11-24 10:46:23 +0100 oj  r264215 : #i96458# size width for controls 2008-11-24 09:28:56 +0100 oj  r264199 : #i96459# mark detail section when nothing is selected 2008-11-20 12:02:35 +0100 oj  r264038 : #i96191# fix check for prec 2008-11-20 08:06:32 +0100 oj  r264026 : #i90949# patch MID function 2008-11-11 13:14:58 +0100 oj  r263555 : #i96086# apply patch 2008-11-11 11:34:46 +0100 oj  r263549 : #i94128# correct height of section when controls moved outside 2008-11-11 07:52:08 +0100 oj  r263544 : #i94729# fix string with ; as sep 2008-11-11 07:45:27 +0100 oj  r263543 : #i95222# export chart title style 2008-11-11 07:43:37 +0100 oj  r263542 : #i92541# fix line height


2008-12-09  Rüdiger Timm  <rt@openoffice.org>  [3cbb43eb999da5bd9a81f1a8fb4df64109ee9b0e]

CWS-TOOLING: integrate CWS i96529_DEV300


2008-12-09  Rüdiger Timm  <rt@openoffice.org>  [f402553f0e0b6e44e806a8ae63c88619339fde9f]

CWS-TOOLING: integrate CWS configitems02_svn 2008-12-02 10:22:34 +0100 as  r264664 : #i5114# truncate list also in case list size was changed externaly 2008-11-28 10:25:56 +0100 as  r264530 : make gcc happy with new line at end of file 2008-11-21 09:44:40 +0100 jsk  r264109 : #i96409# 2008-11-21 08:03:30 +0100 jsk  r264106 : #i96409# 2008-11-21 07:55:59 +0100 jsk  r264105 : #i96409# 2008-11-10 13:42:44 +0100 as  r263518 : make code warning free (linux) 2008-10-21 16:38:44 +0200 as  r262573 : #i51626# refactor svtools config items (at least some of them)


2008-12-02  Release Engineers  <releng@openoffice.org>  [8734447bd882cb25a07b0626af876dcec55c3e59]

#i10000# get rid of warnings


2008-11-27  Release Engineers  <releng@openoffice.org>  [5308b9554a32cdaac2af6333856423b6b0f0c937]

CWS-TOOLING: integrate CWS koheidatapilot02 2008-11-24 15:34:25 +0100 kohei  r264231 : modified ScViewData::IsMultiMarked() to treat simple-filtered areas as simple-marked areas, for backword compatibility.  Simple-filtered areas are not multi-marked areas. 2008-11-07 20:38:51 +0100 kohei  r263485 : more unused methods in the header without definitions. 2008-11-07 20:26:25 +0100 kohei  r263484 : removed more unused methods. 2008-11-07 19:40:39 +0100 kohei  r263481 : removed unused methods based on Caolan's callcatcher output on m35. 2008-11-06 19:32:22 +0100 kohei  r263405 : CWS-TOOLING: rebase CWS koheidatapilot02 to trunk@263288 (milestone: DEV300:m35) 2008-10-06 15:18:57 +0200 kohei  r262062 : #i94619# allow XDataPilotTable interface to be queried again.  Patch submitted by Noel Power. 2008-10-01 21:49:39 +0200 kohei  r262020 : #i90402# don't insert drill-down sheet when the document is in read-only mode. 2008-10-01 03:03:19 +0200 kohei  r261982 : #i93918# exclude hidden items and items that are excluded due to ranks (i.e. top X items). #i93998# reduce memory consumption of datapilot cache tables by pooling cache table cell data & use null pointers to represent empty cells. 2008-09-30 23:35:14 +0200 kohei  r261981 : #i92378# keep the layout dialog open when the destination range is not empty and the user has decided to cancel data pilot creation. 2008-09-30 23:14:55 +0200 kohei  r261980 : #i94281# fixed a regression where the data pilot layout dialog fails to appear on a filtered cell range.


2008-11-26  Vladimir Glazounov  <vg@openoffice.org>  [f13d06d832788a6901c899f1c8b54726e7ca4439]

CWS-TOOLING: integrate CWS rtlchart01


2008-11-20  Jens-Heiner Rechtien  <hr@openoffice.org>  [60f8b3a3249c2865514a62df516526f8d411f15a]

CWS-TOOLING: integrate CWS calc46_DEV300


2008-11-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [20ef27b8996295b648672249ddcf5c1e545588a9]

CWS-TOOLING: integrate CWS fwk94_DEV300


2008-11-10  Rüdiger Timm  <rt@openoffice.org>  [40852729f95bffc905674551e0604ff75e545ce4]

CWS-TOOLING: integrate CWS cmcfixes50 2008-11-10 13:31:50 +0100 cmc  r263517 : gio doesn't do anything useful for remote stuff wrt info 2008-11-06 00:11:47 +0100 cmc  r263359 : #i93436# pile of other 64bit new gcc warnings 2008-11-05 00:39:03 +0100 cmc  r263340 : i95856 let a ppc64 vanilla build succeed 2008-11-04 14:00:25 +0100 cmc  r263320 : #i93436# useless const 2008-11-04 11:53:10 +0100 cmc  r263314 : #i93436# ambiguous 2008-11-04 11:48:05 +0100 cmc  r263313 : #i93436# add some braces 2008-11-04 11:29:24 +0100 cmc  r263312 : #i93436# ambiguous 2008-11-04 10:53:46 +0100 cmc  r263311 :


2008-11-06  Kurt Zenker  <kz@openoffice.org>  [5f863a3bee55db576c96b4b66942a487f3e217e0]

CWS-TOOLING: integrate CWS rt34


2008-11-03  Release Engineers  <releng@openoffice.org>  [9955281df28a37dfef2b6dd95d8e05bd2fa19c13]

Create DEV300_m35 milestone tag


2008-10-28  Rüdiger Timm  <rt@openoffice.org>  [0a827e1e915e30f20edc59a2c520b2f83b70ac29]

CWS-TOOLING: integrate CWS pflin10


2008-10-28  Oliver Bolte  <obo@openoffice.org>  [8036740a48f72d7725dd94b24bb64b842a4ef01e]

#i10000# clean up files with zero byte size


2008-10-17  Oliver Bolte  <obo@openoffice.org>  [9d829a4bb2643df9cf41e9e1b9860fd1dbd03c6a]

CWS-TOOLING: integrate CWS aw057


2008-10-10  Oliver Bolte  <obo@openoffice.org>  [ee4f08b8fdbee2e30ae1ad325e90f1e4bc968485]

CWS-TOOLING: integrate CWS cmcfixes49


2008-10-06  Vladimir Glazounov  <vg@openoffice.org>  [5608c660d2e60e6faff0a689bf87739e36d5bed5]

#i10000#


2008-10-06  Philipp Lohmann  <pl@openoffice.org>  [8d0fd130f9aa2e12e455eccee603b3f89e58de39]

fix a build problem


2008-10-06  Vladimir Glazounov  <vg@openoffice.org>  [20b4ed7abf3f5f0b2621ad4c5142401f4fdb72aa]

#i10000# fix for koheicoderemoval CWS problems


2008-10-01  Vladimir Glazounov  <vg@openoffice.org>  [b26808201bcd13f54e84c444d5d5cb6bcac22a76]

CWS-TOOLING: integrate CWS sb93


2008-10-01  Vladimir Glazounov  <vg@openoffice.org>  [b56b0d7584a4ad9374048a3f3207d912965bc5b1]

CWS-TOOLING: integrate CWS chart30


2008-09-30  Vladimir Glazounov  <vg@openoffice.org>  [73fe5477f7ced6be830cdd42e37083caf91bab8c]

CWS-TOOLING: integrate CWS dr63


2008-09-30  Rüdiger Timm  <rt@openoffice.org>  [c0a6e12a4f3b757f27944fab712275080d725c22]

CWS-TOOLING: integrate CWS docmacroassignments_DEV300


2008-09-30  Vladimir Glazounov  <vg@openoffice.org>  [b1b9c4055b8714070f979d011d9ca4d35688387b]

CWS-TOOLING: integrate CWS sfxnotifyremoval


2008-09-30  Vladimir Glazounov  <vg@openoffice.org>  [141c7165253f938e26d3a4695a7de6aa773f0d1e]

CWS-TOOLING: integrate CWS koheicoderemoval


2008-09-26  Rüdiger Timm  <rt@openoffice.org>  [225dfd9f21b8bbd428a2ac1f910485f7df8de3e9]

Create DEV300_m32 milestone tag


2008-09-19  Rüdiger Timm  <rt@openoffice.org>  [4902f4e887f8962edadec7d2e785f3568c5a3137]

No old windows def files needed any more.


2008-08-27  Rüdiger Timm  <rt@openoffice.org>  [fcb7d062fb343cb71e0f8d6baec50d4c88f79f84]

INTEGRATION: CWS sb91 (1.24.26); FILE MERGED 2008/07/11 09:38:11 sb 1.24.26.1: #i91042# #include <cXXX> vs. <XXX.h> and using identifiers without std:: prefix (which is necessary for old MSVC versions)


2008-08-27  Rüdiger Timm  <rt@openoffice.org>  [bc42c46cd2eff6d8d7ca043c824be968d7eae1d8]

INTEGRATION: CWS sb91 (1.16.82); FILE MERGED 2008/07/11 09:38:10 sb 1.16.82.1: #i91042# #include <cXXX> vs. <XXX.h> and using identifiers without std:: prefix (which is necessary for old MSVC versions)


2008-08-27  Rüdiger Timm  <rt@openoffice.org>  [3e6a15be0a1a24680fa0670758b96681b1b9502d]

INTEGRATION: CWS chart31_DEV300 (1.27.42); FILE MERGED 2008/08/19 09:06:16 iha 1.27.42.1: #i92568# range chooser does not work anymore


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [be02fae982fb26455ab6b18f140892f22032daa6]

INTEGRATION: CWS aw033 (1.36.38); FILE MERGED 2008/07/10 12:55:20 aw 1.36.38.1: #i39532# XOutputDevice removed, PrepareDelete removed


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [2f09521187fcbbb2a7f24a4e1014e5d88d5239cc]

INTEGRATION: CWS aw033 (1.53.20); FILE MERGED 2008/07/11 11:46:25 aw 1.53.20.6: RESYNC: (1.57-1.58); FILE MERGED 2008/06/25 13:14:31 aw 1.53.20.5: RESYNC: (1.56-1.57); FILE MERGED 2008/05/14 15:24:06 aw 1.53.20.4: RESYNC: (1.55-1.56); FILE MERGED 2008/03/14 14:46:40 cl 1.53.20.3: RESYNC: (1.54-1.55); FILE MERGED 2008/02/12 11:38:37 aw 1.53.20.2: RESYNC: (1.53-1.54); FILE MERGED 2008/01/22 12:13:49 aw 1.53.20.1: adaptions and 1st stripping


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [7a7408983e6f0508e40e1f24c147eb207eae1713]

INTEGRATION: CWS aw033 (1.26.14); FILE MERGED 2008/07/10 12:55:20 aw 1.26.14.4: #i39532# XOutputDevice removed, PrepareDelete removed 2008/05/14 15:24:20 aw 1.26.14.3: RESYNC: (1.26-1.27); FILE MERGED 2008/01/29 10:32:39 aw 1.26.14.2: updated refresh for ActionChanged(), diverse removals 2008/01/22 12:13:49 aw 1.26.14.1: adaptions and 1st stripping


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [06555adcd2a3046feab24da346b56bfa384be063]

INTEGRATION: CWS aw033 (1.52.88); FILE MERGED 2008/05/14 15:24:30 aw 1.52.88.5: RESYNC: (1.55-1.56); FILE MERGED 2008/02/12 11:38:32 aw 1.52.88.4: RESYNC: (1.54-1.55); FILE MERGED 2007/05/24 00:43:40 aw 1.52.88.3: RESYNC: (1.53-1.54); FILE MERGED 2007/03/20 17:35:07 aw 1.52.88.2: RESYNC: (1.52-1.53); FILE MERGED 2007/01/22 15:20:35 aw 1.52.88.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [420325c8fe6fd63dc9b2a0555a0f2c80e516b769]

INTEGRATION: CWS aw033 (1.29.152); FILE MERGED 2008/06/25 13:14:25 aw 1.29.152.8: RESYNC: (1.34-1.35); FILE MERGED 2008/05/14 15:24:16 aw 1.29.152.7: RESYNC: (1.33-1.34); FILE MERGED 2008/02/12 11:38:28 aw 1.29.152.6: RESYNC: (1.32-1.33); FILE MERGED 2008/01/29 13:16:55 aw 1.29.152.5: RESYNC: (1.31-1.32); FILE MERGED 2008/01/22 12:13:49 aw 1.29.152.4: adaptions and 1st stripping 2007/08/09 23:03:52 aw 1.29.152.3: RESYNC: (1.30-1.31); FILE MERGED 2007/03/20 17:34:59 aw 1.29.152.2: RESYNC: (1.29-1.30); FILE MERGED 2007/01/22 15:20:34 aw 1.29.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [a00396fb83cd47f2f7ad9300c8967a4f57e478b4]

INTEGRATION: CWS aw033 (1.11.50); FILE MERGED 2008/07/10 12:55:19 aw 1.11.50.3: #i39532# XOutputDevice removed, PrepareDelete removed 2008/05/14 15:24:23 aw 1.11.50.2: RESYNC: (1.11-1.12); FILE MERGED 2008/01/29 10:32:39 aw 1.11.50.1: updated refresh for ActionChanged(), diverse removals


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [de90d3264451d1335519e61af83f10dc38e50b2c]

INTEGRATION: CWS aw033 (1.39.38); FILE MERGED 2008/07/10 12:55:19 aw 1.39.38.1: #i39532# XOutputDevice removed, PrepareDelete removed


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [b54c54e16512557680bcaae47e4da1d24c951fb3]

INTEGRATION: CWS aw033 (1.19.16); FILE MERGED 2008/05/14 15:23:59 aw 1.19.16.2: RESYNC: (1.19-1.20); FILE MERGED 2008/01/22 12:13:49 aw 1.19.16.1: adaptions and 1st stripping


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [fa2b5f45b73d0f7622e3cec658a9656c4251148e]

INTEGRATION: CWS aw033 (1.48.32); FILE MERGED 2008/07/10 12:55:19 aw 1.48.32.4: #i39532# XOutputDevice removed, PrepareDelete removed 2008/05/14 15:24:10 aw 1.48.32.3: RESYNC: (1.49-1.50); FILE MERGED 2008/02/12 11:38:25 aw 1.48.32.2: RESYNC: (1.48-1.49); FILE MERGED 2008/01/22 12:13:49 aw 1.48.32.1: adaptions and 1st stripping


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [5ea81c4cf3ea03f74adb71c3ef4c628514ae9288]

INTEGRATION: CWS aw033 (1.15.152); FILE MERGED 2008/05/14 15:24:34 aw 1.15.152.3: RESYNC: (1.16-1.17); FILE MERGED 2007/03/20 17:15:45 aw 1.15.152.2: RESYNC: (1.15-1.16); FILE MERGED 2007/01/22 15:20:34 aw 1.15.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [3a2dc7ae1e156224079cecc48a921db49b0c6506]

INTEGRATION: CWS aw033 (1.20.152); FILE MERGED 2008/07/11 11:46:30 aw 1.20.152.5: RESYNC: (1.23-1.24); FILE MERGED 2008/06/25 13:14:20 aw 1.20.152.4: RESYNC: (1.22-1.23); FILE MERGED 2008/05/14 15:24:39 aw 1.20.152.3: RESYNC: (1.21-1.22); FILE MERGED 2007/03/20 17:15:18 aw 1.20.152.2: RESYNC: (1.20-1.21); FILE MERGED 2007/01/22 15:20:33 aw 1.20.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [066ea548274c563ebdcaf8626e419458e2edd9b5]

INTEGRATION: CWS aw033 (1.12.360); FILE MERGED 2008/07/11 11:46:19 aw 1.12.360.4: RESYNC: (1.14-1.15); FILE MERGED 2008/05/14 15:23:51 aw 1.12.360.3: RESYNC: (1.13-1.14); FILE MERGED 2008/03/14 14:46:37 cl 1.12.360.2: RESYNC: (1.12-1.13); FILE MERGED 2008/01/22 12:13:49 aw 1.12.360.1: adaptions and 1st stripping


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [caaac80963e9547e9bfcfedf6b322fd360851c44]

INTEGRATION: CWS aw033 (1.19.50); FILE MERGED 2008/05/14 15:23:54 aw 1.19.50.2: RESYNC: (1.19-1.20); FILE MERGED 2008/01/22 12:13:49 aw 1.19.50.1: adaptions and 1st stripping


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [06423f28b1e1dd8676129b1f0d1bc33dbe38d24f]

INTEGRATION: CWS aw033 (1.29.38); FILE MERGED 2008/07/10 12:55:19 aw 1.29.38.1: #i39532# XOutputDevice removed, PrepareDelete removed


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [7884e5ed66a6a1dcaca586a8037d1e21dac50141]

INTEGRATION: CWS aw033 (1.11.44); FILE MERGED 2008/05/14 15:23:48 aw 1.11.44.2: RESYNC: (1.11-1.12); FILE MERGED 2008/01/22 12:13:49 aw 1.11.44.1: adaptions and 1st stripping


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [241371472f72d143a1a3eaddced5ed8cc8af3c15]

INTEGRATION: CWS aw033 (1.11.152); FILE MERGED 2008/05/14 15:24:53 aw 1.11.152.5: RESYNC: (1.15-1.16); FILE MERGED 2007/12/03 16:44:05 aw 1.11.152.4: RESYNC: (1.14-1.15); FILE MERGED 2007/10/08 19:11:49 aw 1.11.152.3: RESYNC: (1.12-1.14); FILE MERGED 2007/03/20 16:22:01 aw 1.11.152.2: RESYNC: (1.11-1.12); FILE MERGED 2007/01/22 15:20:33 aw 1.11.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [e539e28ac23d66f1a7b572a1228baacfa41a11e3]

INTEGRATION: CWS aw033 (1.13.150); FILE MERGED 2008/05/14 15:24:44 aw 1.13.150.6: RESYNC: (1.17-1.18); FILE MERGED 2008/02/12 11:38:17 aw 1.13.150.5: RESYNC: (1.16-1.17); FILE MERGED 2007/08/09 22:44:11 aw 1.13.150.4: RESYNC: (1.15-1.16); FILE MERGED 2007/05/24 00:11:33 aw 1.13.150.3: RESYNC: (1.14-1.15); FILE MERGED 2007/03/20 16:21:52 aw 1.13.150.2: RESYNC: (1.13-1.14); FILE MERGED 2007/01/22 15:20:33 aw 1.13.150.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [b70d71dbdd557d5b5246b9b264c6d7bdeed98fa7]

INTEGRATION: CWS aw033 (1.11.152); FILE MERGED 2008/05/14 15:24:50 aw 1.11.152.5: RESYNC: (1.14-1.15); FILE MERGED 2008/03/14 14:43:30 cl 1.11.152.4: RESYNC: (1.13-1.14); FILE MERGED 2007/08/09 22:44:03 aw 1.11.152.3: RESYNC: (1.12-1.13); FILE MERGED 2007/03/20 16:21:12 aw 1.11.152.2: RESYNC: (1.11-1.12); FILE MERGED 2007/01/22 15:20:32 aw 1.11.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [5384c73983148f3465eb1cbe41a411913936041e]

INTEGRATION: CWS aw033 (1.15.54); FILE MERGED 2008/07/11 11:46:15 aw 1.15.54.6: RESYNC: (1.20-1.21); FILE MERGED 2008/05/14 15:25:20 aw 1.15.54.5: RESYNC: (1.19-1.20); FILE MERGED 2007/08/09 22:38:14 aw 1.15.54.4: RESYNC: (1.18-1.19); FILE MERGED 2007/06/27 19:22:49 aw 1.15.54.3: RESYNC: (1.17-1.18); FILE MERGED 2007/03/20 16:05:10 aw 1.15.54.2: RESYNC: (1.15-1.17); FILE MERGED 2007/01/22 15:20:31 aw 1.15.54.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [377e23b000dd0c7a3079b6e664e756b57e46307b]

INTEGRATION: CWS aw033 (1.85.30); FILE MERGED 2008/07/11 11:46:10 aw 1.85.30.9: RESYNC: (1.94-1.95); FILE MERGED 2008/05/14 15:25:32 aw 1.85.30.8: RESYNC: (1.93-1.94); FILE MERGED 2008/03/14 14:43:27 cl 1.85.30.7: RESYNC: (1.91-1.93); FILE MERGED 2008/02/12 11:38:14 aw 1.85.30.6: RESYNC: (1.90-1.91); FILE MERGED 2007/12/03 16:44:01 aw 1.85.30.5: RESYNC: (1.89-1.90); FILE MERGED 2007/06/27 19:20:46 aw 1.85.30.4: RESYNC: (1.87-1.89); FILE MERGED 2007/05/24 00:09:23 aw 1.85.30.3: RESYNC: (1.86-1.87); FILE MERGED 2007/03/20 16:03:38 aw 1.85.30.2: RESYNC: (1.85-1.86); FILE MERGED 2007/01/22 15:20:31 aw 1.85.30.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [2b778f8c8f05ed704eff9b5111440d9a6e262909]

INTEGRATION: CWS aw033 (1.65.150); FILE MERGED 2008/05/14 15:25:23 aw 1.65.150.4: RESYNC: (1.67-1.68); FILE MERGED 2007/06/27 19:19:40 aw 1.65.150.3: RESYNC: (1.66-1.67); FILE MERGED 2007/03/20 16:02:05 aw 1.65.150.2: RESYNC: (1.65-1.66); FILE MERGED 2007/01/22 15:20:31 aw 1.65.150.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [71f253d8528cafd8816bd2f63bf2a0a75232fdd7]

INTEGRATION: CWS aw033 (1.12.152); FILE MERGED 2008/05/14 15:25:13 aw 1.12.152.3: RESYNC: (1.13-1.14); FILE MERGED 2007/03/20 16:01:26 aw 1.12.152.2: RESYNC: (1.12-1.13); FILE MERGED 2007/01/22 15:20:30 aw 1.12.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [4c7b21bd5d36e0dd0299b5a113bc84c4eb281789]

INTEGRATION: CWS aw033 (1.13.88); FILE MERGED 2008/05/14 15:22:37 aw 1.13.88.5: RESYNC: (1.16-1.17); FILE MERGED 2008/02/12 11:38:11 aw 1.13.88.4: RESYNC: (1.15-1.16); FILE MERGED 2007/06/27 19:18:30 aw 1.13.88.3: RESYNC: (1.14-1.15); FILE MERGED 2007/03/20 15:59:57 aw 1.13.88.2: RESYNC: (1.13-1.14); FILE MERGED 2007/01/22 15:20:30 aw 1.13.88.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [9569b5631010a45a80a7b5aa18e97af811a19e6d]

INTEGRATION: CWS aw033 (1.21.152); FILE MERGED 2008/06/25 13:14:51 aw 1.21.152.12: RESYNC: (1.31-1.32); FILE MERGED 2008/05/14 15:22:10 aw 1.21.152.11: RESYNC: (1.30-1.31); FILE MERGED 2008/03/14 14:43:20 cl 1.21.152.10: RESYNC: (1.29-1.30); FILE MERGED 2008/01/29 13:16:52 aw 1.21.152.9: RESYNC: (1.28-1.29); FILE MERGED 2007/12/03 16:43:58 aw 1.21.152.8: RESYNC: (1.27-1.28); FILE MERGED 2007/08/13 15:38:05 aw 1.21.152.7: #i39532# changes after resync 2007/08/09 22:35:49 aw 1.21.152.6: RESYNC: (1.24-1.27); FILE MERGED 2007/06/27 19:17:58 aw 1.21.152.5: RESYNC: (1.23-1.24); FILE MERGED 2007/05/31 14:48:49 aw 1.21.152.4: changes after resync 2007/05/24 00:08:24 aw 1.21.152.3: RESYNC: (1.22-1.23); FILE MERGED 2007/03/20 15:57:34 aw 1.21.152.2: RESYNC: (1.21-1.22); FILE MERGED 2007/01/22 15:20:30 aw 1.21.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [473ff52e00463304db5d0a20ffe0cc295d74613a]

INTEGRATION: CWS aw033 (1.44.30); FILE MERGED 2008/06/25 13:15:37 aw 1.44.30.10: RESYNC: (1.56-1.57); FILE MERGED 2008/05/14 15:22:33 aw 1.44.30.9: RESYNC: (1.55-1.56); FILE MERGED 2008/03/14 14:43:17 cl 1.44.30.8: RESYNC: (1.53-1.55); FILE MERGED 2008/01/29 13:16:49 aw 1.44.30.7: RESYNC: (1.52-1.53); FILE MERGED 2007/12/03 16:43:55 aw 1.44.30.6: RESYNC: (1.51-1.52); FILE MERGED 2007/08/09 22:35:42 aw 1.44.30.5: RESYNC: (1.48-1.51); FILE MERGED 2007/06/27 19:17:49 aw 1.44.30.4: RESYNC: (1.47-1.48); FILE MERGED 2007/05/24 00:08:18 aw 1.44.30.3: RESYNC: (1.45-1.47); FILE MERGED 2007/03/20 15:57:26 aw 1.44.30.2: RESYNC: (1.44-1.45); FILE MERGED 2007/01/22 15:20:29 aw 1.44.30.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [e783627cf0eeba4c0b0d40b218c169161291f8d1]

INTEGRATION: CWS aw033 (1.17.150); FILE MERGED 2008/07/11 11:45:24 aw 1.17.150.7: RESYNC: (1.23-1.24); FILE MERGED 2008/06/25 13:15:29 aw 1.17.150.6: RESYNC: (1.22-1.23); FILE MERGED 2008/05/14 15:22:25 aw 1.17.150.5: RESYNC: (1.21-1.22); FILE MERGED 2008/03/14 14:43:13 cl 1.17.150.4: RESYNC: (1.20-1.21); FILE MERGED 2007/08/09 22:35:33 aw 1.17.150.3: RESYNC: (1.18-1.20); FILE MERGED 2007/03/20 15:57:16 aw 1.17.150.2: RESYNC: (1.17-1.18); FILE MERGED 2007/01/22 15:20:29 aw 1.17.150.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [2d91d3156ce40e4bc355408e837360f120e6df9c]

INTEGRATION: CWS aw033 (1.29.30); FILE MERGED 2008/06/25 13:14:57 aw 1.29.30.8: RESYNC: (1.36-1.37); FILE MERGED 2008/05/14 15:22:17 aw 1.29.30.7: RESYNC: (1.35-1.36); FILE MERGED 2008/03/14 14:43:10 cl 1.29.30.6: RESYNC: (1.34-1.35); FILE MERGED 2008/02/12 11:38:08 aw 1.29.30.5: RESYNC: (1.33-1.34); FILE MERGED 2007/08/09 22:35:26 aw 1.29.30.4: RESYNC: (1.31-1.33); FILE MERGED 2007/05/24 00:08:11 aw 1.29.30.3: RESYNC: (1.30-1.31); FILE MERGED 2007/03/20 15:57:07 aw 1.29.30.2: RESYNC: (1.29-1.30); FILE MERGED 2007/01/22 15:20:29 aw 1.29.30.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [f448ebe27c2d1b2fe34fdfc99829e45114753a4a]

INTEGRATION: CWS aw033 (1.42.30); FILE MERGED 2008/07/11 11:45:38 aw 1.42.30.12: RESYNC: (1.59-1.60); FILE MERGED 2008/06/25 13:15:09 aw 1.42.30.11: RESYNC: (1.57-1.59); FILE MERGED 2008/05/14 15:22:58 aw 1.42.30.10: RESYNC: (1.56-1.57); FILE MERGED 2008/03/14 14:43:06 cl 1.42.30.9: RESYNC: (1.55-1.56); FILE MERGED 2008/02/12 11:38:05 aw 1.42.30.8: RESYNC: (1.53-1.55); FILE MERGED 2007/12/03 16:43:51 aw 1.42.30.7: RESYNC: (1.51-1.53); FILE MERGED 2007/10/08 19:10:43 aw 1.42.30.6: RESYNC: (1.50-1.51); FILE MERGED 2007/08/09 22:35:19 aw 1.42.30.5: RESYNC: (1.46-1.50); FILE MERGED 2007/06/27 19:17:32 aw 1.42.30.4: RESYNC: (1.45-1.46); FILE MERGED 2007/05/24 00:08:03 aw 1.42.30.3: RESYNC: (1.44-1.45); FILE MERGED 2007/03/20 15:56:57 aw 1.42.30.2: RESYNC: (1.42-1.44); FILE MERGED 2007/01/22 15:20:29 aw 1.42.30.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [c0935a3fa549fdabef9032985d6ce097bb4e681e]

INTEGRATION: CWS aw033 (1.5.152); FILE MERGED 2008/05/14 15:22:03 aw 1.5.152.3: RESYNC: (1.6-1.7); FILE MERGED 2007/03/20 15:55:09 aw 1.5.152.2: RESYNC: (1.5-1.6); FILE MERGED 2007/01/22 15:20:29 aw 1.5.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [781a5918c5f89ca723b1947cc801baacb63b59b2]

INTEGRATION: CWS aw033 (1.66.28); FILE MERGED 2008/07/11 11:45:49 aw 1.66.28.11: RESYNC: (1.79-1.81); FILE MERGED 2008/06/25 13:15:21 aw 1.66.28.10: RESYNC: (1.77-1.79); FILE MERGED 2008/05/14 15:22:47 aw 1.66.28.9: RESYNC: (1.75-1.77); FILE MERGED 2008/03/14 14:43:02 cl 1.66.28.8: RESYNC: (1.73-1.75); FILE MERGED 2008/02/12 11:38:02 aw 1.66.28.7: RESYNC: (1.72-1.73); FILE MERGED 2008/01/29 13:16:45 aw 1.66.28.6: RESYNC: (1.71-1.72); FILE MERGED 2007/10/08 19:10:36 aw 1.66.28.5: RESYNC: (1.70-1.71); FILE MERGED 2007/08/09 22:35:10 aw 1.66.28.4: RESYNC: (1.69-1.70); FILE MERGED 2007/06/27 19:17:21 aw 1.66.28.3: RESYNC: (1.68-1.69); FILE MERGED 2007/03/20 15:55:00 aw 1.66.28.2: RESYNC: (1.66-1.68); FILE MERGED 2007/01/22 15:20:28 aw 1.66.28.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [337deb307b2af342ffec889bf2519dec444104c0]

INTEGRATION: CWS aw033 (1.27.30); FILE MERGED 2008/07/11 11:45:53 aw 1.27.30.7: RESYNC: (1.34-1.35); FILE MERGED 2008/06/25 13:15:42 aw 1.27.30.6: RESYNC: (1.33-1.34); FILE MERGED 2008/05/14 15:21:59 aw 1.27.30.5: RESYNC: (1.32-1.33); FILE MERGED 2008/03/14 14:42:52 cl 1.27.30.4: RESYNC: (1.31-1.32); FILE MERGED 2007/10/08 19:10:04 aw 1.27.30.3: RESYNC: (1.30-1.31); FILE MERGED 2007/08/09 22:33:32 aw 1.27.30.2: RESYNC: (1.27-1.30); FILE MERGED 2007/01/22 15:20:28 aw 1.27.30.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [4e13f92915af9acc33d6f83112adc8d64c207dc1]

INTEGRATION: CWS aw033 (1.18.152); FILE MERGED 2008/06/25 13:14:44 aw 1.18.152.6: RESYNC: (1.23-1.24); FILE MERGED 2008/05/14 15:23:44 aw 1.18.152.5: RESYNC: (1.22-1.23); FILE MERGED 2008/03/14 14:42:46 cl 1.18.152.4: RESYNC: (1.21-1.22); FILE MERGED 2007/08/09 22:33:02 aw 1.18.152.3: RESYNC: (1.20-1.21); FILE MERGED 2007/03/20 15:51:55 aw 1.18.152.2: RESYNC: (1.18-1.20); FILE MERGED 2007/01/22 15:20:28 aw 1.18.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [98f2fc344df31cd3f65029411df6bb11fa43e5d2]

INTEGRATION: CWS aw033 (1.18.24); FILE MERGED 2008/05/14 15:23:19 aw 1.18.24.6: RESYNC: (1.22-1.23); FILE MERGED 2008/02/12 11:37:58 aw 1.18.24.5: RESYNC: (1.21-1.22); FILE MERGED 2007/10/08 19:09:48 aw 1.18.24.4: RESYNC: (1.20-1.21); FILE MERGED 2007/05/24 00:07:00 aw 1.18.24.3: RESYNC: (1.19-1.20); FILE MERGED 2007/03/20 15:51:02 aw 1.18.24.2: RESYNC: (1.18-1.19); FILE MERGED 2007/01/22 15:20:28 aw 1.18.24.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [1097ed1836099a82b80699854b6c658b0a240f59]

INTEGRATION: CWS aw033 (1.36.30); FILE MERGED 2008/05/14 15:23:08 aw 1.36.30.5: RESYNC: (1.39-1.40); FILE MERGED 2008/02/12 11:37:55 aw 1.36.30.4: RESYNC: (1.38-1.39); FILE MERGED 2007/10/08 19:09:31 aw 1.36.30.3: RESYNC: (1.37-1.38); FILE MERGED 2007/03/20 15:50:41 aw 1.36.30.2: RESYNC: (1.36-1.37); FILE MERGED 2007/01/22 15:20:27 aw 1.36.30.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [835fb6f4a1acdf9dd6de973b6b31196959ab71c3]

INTEGRATION: CWS aw033 (1.7.152); FILE MERGED 2008/05/14 15:23:25 aw 1.7.152.6: RESYNC: (1.11-1.12); FILE MERGED 2008/02/12 11:37:52 aw 1.7.152.5: RESYNC: (1.10-1.11); FILE MERGED 2007/12/03 16:43:46 aw 1.7.152.4: RESYNC: (1.9-1.10); FILE MERGED 2007/10/08 19:09:14 aw 1.7.152.3: RESYNC: (1.8-1.9); FILE MERGED 2007/03/20 15:49:07 aw 1.7.152.2: RESYNC: (1.7-1.8); FILE MERGED 2007/01/22 15:20:27 aw 1.7.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [b0ab7c23d8b7311606a538b79ada28092fe8f5fb]

INTEGRATION: CWS aw033 (1.9.94); FILE MERGED 2008/06/25 13:14:39 aw 1.9.94.4: RESYNC: (1.12-1.13); FILE MERGED 2008/05/14 15:23:32 aw 1.9.94.3: RESYNC: (1.11-1.12); FILE MERGED 2007/03/20 15:46:40 aw 1.9.94.2: RESYNC: (1.9-1.11); FILE MERGED 2007/01/22 15:20:27 aw 1.9.94.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [dc9bd2165ff96b6ca787a0e3ad0a74306f1009c1]

INTEGRATION: CWS aw033 (1.26.152); FILE MERGED 2008/05/14 15:23:13 aw 1.26.152.6: RESYNC: (1.31-1.32); FILE MERGED 2008/03/14 14:42:43 cl 1.26.152.5: RESYNC: (1.30-1.31); FILE MERGED 2008/02/12 11:37:49 aw 1.26.152.4: RESYNC: (1.29-1.30); FILE MERGED 2007/05/24 00:05:04 aw 1.26.152.3: RESYNC: (1.28-1.29); FILE MERGED 2007/03/20 15:41:58 aw 1.26.152.2: RESYNC: (1.26-1.28); FILE MERGED 2007/01/22 15:20:27 aw 1.26.152.1: changes after resync


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [5ac614c96c8f6a5f880d02e2d9c87e8008e3af31]

INTEGRATION: CWS aw033 (1.5.18); FILE MERGED 2008/07/10 12:45:10 aw 1.5.18.1: #i39532# XOutputDevice removed, PrepareDelete removed


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [a6ec8c5aa395b2beb5ae530167094d70333d4145]

INTEGRATION: CWS aw033 (1.7.20); FILE MERGED 2008/07/10 12:45:10 aw 1.7.20.1: #i39532# XOutputDevice removed, PrepareDelete removed


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [fa63b371b0a113ddb8617d64d5c56866c8670567]

INTEGRATION: CWS aw033 (1.31.16); FILE MERGED 2008/07/10 12:45:10 aw 1.31.16.1: #i39532# XOutputDevice removed, PrepareDelete removed


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [fce7526d534ba5df1e46316132e3f0f26a2c6e9b]

INTEGRATION: CWS aw033 (1.12.18); FILE MERGED 2008/07/10 12:45:10 aw 1.12.18.1: #i39532# XOutputDevice removed, PrepareDelete removed


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [9719562c2870192f39f7e0a6ccc6cb10894ff22a]

INTEGRATION: CWS aw033 (1.9.44); FILE MERGED 2008/05/14 15:12:58 aw 1.9.44.3: RESYNC: (1.10-1.11); FILE MERGED 2008/01/29 13:16:08 aw 1.9.44.2: RESYNC: (1.9-1.10); FILE MERGED 2008/01/29 11:44:11 aw 1.9.44.1: updated refresh for ActionChanged(), diverse removals


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [3783519c5d6d6c8f1e8a79787f6d084ba39b4c85]

INTEGRATION: CWS aw033 (1.2.12); FILE MERGED 2008/05/14 15:12:54 aw 1.2.12.2: RESYNC: (1.2-1.3); FILE MERGED 2008/03/05 07:34:25 aw 1.2.12.1: #i39532# prettyprinter support


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [bc648e9111683e6922007b6cbbae2d4f42c4d409]

INTEGRATION: CWS aw033 (1.16.44); FILE MERGED 2008/06/25 13:11:59 aw 1.16.44.4: RESYNC: (1.18-1.19); FILE MERGED 2008/05/14 15:13:01 aw 1.16.44.3: RESYNC: (1.17-1.18); FILE MERGED 2008/01/29 13:16:05 aw 1.16.44.2: RESYNC: (1.16-1.17); FILE MERGED 2008/01/29 11:44:11 aw 1.16.44.1: updated refresh for ActionChanged(), diverse removals


2008-08-19  Vladimir Glazounov  <vg@openoffice.org>  [e49b90129bcd769b41e50b0af1a80453fcfb09e7]

INTEGRATION: CWS dba31a (1.3.1016); FILE MERGED 2008/07/03 08:54:39 fs 1.3.1016.1: #i66628# +RefreshFormControl


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [bcbd51443991112ca38a34a355317bc68380baba]

INTEGRATION: CWS pflin11 (1.26.58); FILE MERGED 2008/08/06 01:52:42 pflin 1.26.58.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [330ca31e9350cbdbb230c35a7a299ea8fe6c4efe]

INTEGRATION: CWS pflin11 (1.16.104); FILE MERGED 2008/08/06 01:52:42 pflin 1.16.104.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [de893a4667aa9befe5ac0bd75d1f298f3afbaa26]

INTEGRATION: CWS pflin11 (1.11.104); FILE MERGED 2008/08/06 01:52:42 pflin 1.11.104.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [85e17dd486b3a74a928e0099a2a00fc4cfe60af2]

INTEGRATION: CWS pflin11 (1.14.104); FILE MERGED 2008/08/06 01:52:42 pflin 1.14.104.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [4e183bd1c481c8ee513ebb2859f9e2d3efdbfee1]

INTEGRATION: CWS pflin11 (1.10.58); FILE MERGED 2008/08/06 01:52:42 pflin 1.10.58.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [37039d4a5118508a004d5fcfa2cd331b83edeec2]

INTEGRATION: CWS pflin11 (1.5.58); FILE MERGED 2008/08/15 14:16:06 er 1.5.58.2: WaE: unused variable 2008/08/06 01:52:42 pflin 1.5.58.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [564baca6488963c902aa6d5d46ee05fb740421b6]

INTEGRATION: CWS pflin11 (1.8.104); FILE MERGED 2008/08/06 01:52:42 pflin 1.8.104.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [dd4f2785ab27de5a7eb8009a92be0313504597f7]

INTEGRATION: CWS pflin11 (1.7.104); FILE MERGED 2008/08/06 01:52:42 pflin 1.7.104.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [b92ef8f1d652ed09195b991a7643ac7538659bf6]

INTEGRATION: CWS pflin11 (1.5.104); FILE MERGED 2008/08/06 01:52:42 pflin 1.5.104.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [7b3aa4fd168ce2d59da74a83c5f0e29bf5115c12]

INTEGRATION: CWS pflin11 (1.6.104); FILE MERGED 2008/08/06 01:52:42 pflin 1.6.104.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [2806558c5836de1f315e61e37a51fc27116afff3]

INTEGRATION: CWS pflin11 (1.3.104); FILE MERGED 2008/08/06 01:52:42 pflin 1.3.104.1: fix for i90022


2008-08-15  Kurt Zenker  <kz@openoffice.org>  [b9b90dd992018df0da996a39af018091d39cd262]

INTEGRATION: CWS vcl30stop4_DEV300 (1.4.108); FILE MERGED 2008/08/08 15:38:10 er 1.4.108.1: #i92030# correct formatting of cell range string


2008-07-31  Rüdiger Timm  <rt@openoffice.org>  [2011dea91603f0d6d005f91b981aa1f837ee3436]

INTEGRATION: CWS dr65 (1.3.120); FILE MERGED 2008/07/24 13:03:58 tbe 1.3.120.1: #i92005# truncated strings in resolve conflicts for shared documents


2008-07-31  Rüdiger Timm  <rt@openoffice.org>  [3cc7c1cca39de630d973b74e83bb574150407732]

INTEGRATION: CWS dr65 (1.4.120); FILE MERGED 2008/07/24 13:02:33 tbe 1.4.120.1: #i92005# truncated strings in resolve conflicts for shared documents


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [565e94814ca677855890eaa4897500a5c556db2a]

INTEGRATION: CWS pb20 (1.6.34); FILE MERGED 2008/07/28 08:45:51 iha 1.6.34.1: #i91987# Y error bars dialog : string truncated


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [b039060bb51f3579c05e9d33943c46fa3391eb21]

INTEGRATION: CWS pb20 (1.10.52); FILE MERGED 2008/07/28 08:44:47 iha 1.10.52.1: #i91989# Chart > Object properties > Data labels tab : string truncated


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [f40923cf282b509ef2a381551749c6c5131cdbb7]

INTEGRATION: CWS pba11y02 (1.4.48); FILE MERGED 2008/07/24 14:46:53 pb 1.4.48.1: fix: #i73746# fillAllControls(); parameter changed


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [4dd1b48a89ab539c56aa3d8aa40bcfbc56d4e7cf]

INTEGRATION: CWS pba11y02 (1.8.48); FILE MERGED 2008/07/24 14:51:33 pb 1.8.48.1: fix: #i73746# fillAllControls(); parameter changed


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [afa64cfb77023ff57882873da3f5adb8cb48b93b]

INTEGRATION: CWS chart22 (1.29.2); FILE MERGED 2008/07/30 10:18:15 iha 1.29.2.5: RESYNC: (1.31-1.32); FILE MERGED 2008/06/10 11:12:01 iha 1.29.2.4: RESYNC: (1.30-1.31); FILE MERGED 2008/04/17 11:30:30 iha 1.29.2.3: RESYNC: (1.29-1.30); FILE MERGED 2008/02/21 18:00:28 iha 1.29.2.2: #i65549# Plotting of missing values 2008/02/21 17:02:09 iha 1.29.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [cb2c7f821df98808e246da9beea725eaee840057]

INTEGRATION: CWS chart22 (1.43.2); FILE MERGED 2008/06/10 11:11:57 iha 1.43.2.3: RESYNC: (1.44-1.46); FILE MERGED 2008/04/17 11:30:26 iha 1.43.2.2: RESYNC: (1.43-1.44); FILE MERGED 2008/02/21 17:03:05 iha 1.43.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [6e5f06efca26539e4ff993d84a098a4e72096537]

INTEGRATION: CWS chart22 (1.7.2); FILE MERGED 2008/04/17 11:30:33 iha 1.7.2.3: RESYNC: (1.8-1.9); FILE MERGED 2008/03/12 13:19:01 iha 1.7.2.2: RESYNC: (1.7-1.8); FILE MERGED 2008/02/21 17:02:36 iha 1.7.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [d469fd1e28ed57d6048c70a6cecfa91ae491ffc6]

INTEGRATION: CWS chart22 (1.19.2); FILE MERGED 2008/07/30 10:18:18 iha 1.19.2.3: RESYNC: (1.20-1.21); FILE MERGED 2008/04/17 11:30:20 iha 1.19.2.2: RESYNC: (1.19-1.20); FILE MERGED 2008/02/21 17:01:38 iha 1.19.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [9fa291fd5130bc6eecc9bc78acda5f633ab4cae0]

INTEGRATION: CWS chart22 (1.13.40); FILE MERGED 2008/04/17 11:30:23 iha 1.13.40.2: RESYNC: (1.13-1.14); FILE MERGED 2008/02/21 17:00:41 iha 1.13.40.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [09653b86242eae7b771b5c4db923ce9ba6c912fd]

INTEGRATION: CWS chart22 (1.23.26); FILE MERGED 2008/04/17 11:30:17 iha 1.23.26.2: RESYNC: (1.23-1.24); FILE MERGED 2008/02/21 17:05:25 iha 1.23.26.1: #i65549# Plotting of missing values + corrected zero plotting


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [dff051ff9f8e4f21c53012fa2f4607029cf47f05]

INTEGRATION: CWS chart22 (1.52.26); FILE MERGED 2008/04/17 11:30:14 iha 1.52.26.2: RESYNC: (1.52-1.53); FILE MERGED 2008/02/21 17:03:51 iha 1.52.26.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [655e67d5997be564506fcc1bc7a7038384560bbf]

INTEGRATION: CWS chart22 (1.14.26); FILE MERGED 2008/06/10 11:12:11 iha 1.14.26.4: RESYNC: (1.17-1.18); FILE MERGED 2008/04/17 11:30:40 iha 1.14.26.3: RESYNC: (1.15-1.17); FILE MERGED 2008/03/12 13:18:58 iha 1.14.26.2: RESYNC: (1.14-1.15); FILE MERGED 2008/02/21 16:56:41 iha 1.14.26.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [f564d2434dbbe986d7f733e1b4edf9c59ab5fd10]

INTEGRATION: CWS chart22 (1.18.2); FILE MERGED 2008/06/10 11:12:14 iha 1.18.2.4: RESYNC: (1.20-1.21); FILE MERGED 2008/04/17 15:44:30 iha 1.18.2.3: corrected mergeconflicts after resync 2008/04/17 11:30:37 iha 1.18.2.2: RESYNC: (1.18-1.20); FILE MERGED 2008/02/21 16:55:28 iha 1.18.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [d98f288a40b33ab2858e6656c370bb70368aa687]

INTEGRATION: CWS chart22 (1.9.40); FILE MERGED 2008/04/17 11:30:46 iha 1.9.40.2: RESYNC: (1.9-1.10); FILE MERGED 2008/02/21 16:57:31 iha 1.9.40.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [dfab6e703d4d70a33a6d3f2d05d0481423f63e44]

INTEGRATION: CWS chart22 (1.18.40); FILE MERGED 2008/07/30 10:18:26 iha 1.18.40.3: RESYNC: (1.20-1.21); FILE MERGED 2008/04/17 11:30:49 iha 1.18.40.2: RESYNC: (1.18-1.20); FILE MERGED 2008/02/21 16:58:13 iha 1.18.40.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [aa453b713a09c8a1d570ec5669360e49f71935c2]

INTEGRATION: CWS chart22 (1.21.2); FILE MERGED 2008/06/10 11:12:21 iha 1.21.2.3: RESYNC: (1.22-1.24); FILE MERGED 2008/04/17 11:30:43 iha 1.21.2.2: RESYNC: (1.21-1.22); FILE MERGED 2008/02/21 16:53:21 iha 1.21.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [968f151d4783b80fb7ab3e2dcfe679fec1e5b306]

INTEGRATION: CWS chart22 (1.5.2); FILE MERGED 2008/04/17 11:30:58 iha 1.5.2.3: RESYNC: (1.6-1.7); FILE MERGED 2008/03/12 13:19:05 iha 1.5.2.2: RESYNC: (1.5-1.6); FILE MERGED 2008/02/21 16:59:19 iha 1.5.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [9c02a26ee269c54e43211165ef96ad4af7500213]

INTEGRATION: CWS chart22 (1.6.26); FILE MERGED 2008/06/10 11:11:50 iha 1.6.26.3: RESYNC: (1.8-1.9); FILE MERGED 2008/04/17 11:30:52 iha 1.6.26.2: RESYNC: (1.6-1.8); FILE MERGED 2008/02/21 16:55:59 iha 1.6.26.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [744af5373852641931d5334968c8ba8ea3a8ede2]

INTEGRATION: CWS chart22 (1.13.2); FILE MERGED 2008/06/10 11:11:47 iha 1.13.2.3: RESYNC: (1.14-1.15); FILE MERGED 2008/04/17 11:30:55 iha 1.13.2.2: RESYNC: (1.13-1.14); FILE MERGED 2008/02/21 16:54:49 iha 1.13.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [f1392d19a1f001bf8139851d0ca338d0a04b3221]

INTEGRATION: CWS chart22 (1.5.2); FILE MERGED 2008/04/17 11:30:10 iha 1.5.2.2: RESYNC: (1.5-1.6); FILE MERGED 2008/02/21 17:06:56 iha 1.5.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [0db4b085404da4ac159f3e720c48c8cc82bffe9c]

INTEGRATION: CWS chart22 (1.7.2); FILE MERGED 2008/06/10 11:12:04 iha 1.7.2.4: RESYNC: (1.9-1.10); FILE MERGED 2008/04/17 11:30:06 iha 1.7.2.3: RESYNC: (1.8-1.9); FILE MERGED 2008/03/12 13:18:52 iha 1.7.2.2: RESYNC: (1.7-1.8); FILE MERGED 2008/02/21 17:07:28 iha 1.7.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [9c807894f5a550c0c38591e961c21fc57161f037]

INTEGRATION: CWS chart22 (1.9.2); FILE MERGED 2008/04/17 11:29:55 iha 1.9.2.3: RESYNC: (1.10-1.11); FILE MERGED 2008/03/12 13:18:34 iha 1.9.2.2: RESYNC: (1.9-1.10); FILE MERGED 2008/02/21 17:09:10 iha 1.9.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [8806fb4675932b132e2ef4ddc1d2ecb7e26d3e39]

INTEGRATION: CWS chart22 (1.4.2); FILE MERGED 2008/04/17 11:29:51 iha 1.4.2.2: RESYNC: (1.4-1.5); FILE MERGED 2008/02/21 17:06:14 iha 1.4.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [e63e0964501898a0f5c56bb020ed66a1c2d7d6b5]

INTEGRATION: CWS chart22 (1.7.46); FILE MERGED 2008/04/17 11:29:41 iha 1.7.46.2: RESYNC: (1.7-1.8); FILE MERGED 2008/02/21 17:14:06 iha 1.7.46.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [57c3321ee8573f7d7f08e5bbc4fe885fca1c67d6]

INTEGRATION: CWS chart22 (1.4.46); FILE MERGED 2008/04/17 11:29:49 iha 1.4.46.2: RESYNC: (1.4-1.5); FILE MERGED 2008/02/21 17:12:37 iha 1.4.46.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [afceacc67cb5772b45d0716d506e45dbc293fa43]

INTEGRATION: CWS chart22 (1.9.46); FILE MERGED 2008/04/17 11:29:35 iha 1.9.46.2: RESYNC: (1.9-1.10); FILE MERGED 2008/02/21 17:13:32 iha 1.9.46.1: #i65549# Plotting of missing values + cleanuo


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [817a01713912a32c79d68c2e9bd232d720ad09d1]

INTEGRATION: CWS chart22 (1.21.2); FILE MERGED 2008/04/17 11:29:45 iha 1.21.2.3: RESYNC: (1.22-1.23); FILE MERGED 2008/03/12 13:18:42 iha 1.21.2.2: RESYNC: (1.21-1.22); FILE MERGED 2008/02/21 17:10:37 iha 1.21.2.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [c72951351bee7dd6b54a05f94e26fdbaf74ee286]

INTEGRATION: CWS chart22 (1.5.46); FILE MERGED 2008/04/17 11:29:38 iha 1.5.46.2: RESYNC: (1.5-1.6); FILE MERGED 2008/02/21 17:09:45 iha 1.5.46.1: #i65549# Plotting of missing values


2008-07-30  Rüdiger Timm  <rt@openoffice.org>  [16f7c312655df77160a6de0da2cda80b1bd3600e]

INTEGRATION: CWS chart22 (1.13.2); FILE MERGED 2008/06/10 11:12:07 iha 1.13.2.3: RESYNC: (1.15-1.17); FILE MERGED 2008/04/17 11:30:02 iha 1.13.2.2: RESYNC: (1.13-1.15); FILE MERGED 2008/02/21 16:52:22 iha 1.13.2.1: #i65549# Plotting of missing values


2008-07-25  Oliver Bolte  <obo@openoffice.org>  [b47be0a8b8af19800e39fecb8f95caff814a0c5d]

INTEGRATION: CWS late30bf01 (1.34.118); FILE MERGED 2008/07/17 13:50:03 er 1.34.118.1: #i91683# prevent crash if text portion of cell was seleted from within spell-check view


2008-07-25  Oliver Bolte  <obo@openoffice.org>  [5897a60bb002e5c75699fb42c434c77beabedd1e]

INTEGRATION: CWS late30bf01 (1.9.116); FILE MERGED 2008/07/17 12:49:19 iha 1.9.116.1: #i83679# use indices as default labels for categories


2008-07-25  Oliver Bolte  <obo@openoffice.org>  [fee54e6c8b91403c82abaf4300bee60c965e8baa]

INTEGRATION: CWS aqua11y02 (1.42.68); FILE MERGED 2008/07/11 08:59:14 obr 1.42.68.2: RESYNC: (1.42-1.43); FILE MERGED 2008/06/17 08:42:16 fne 1.42.68.1: #i90613# recreate notify handler when necessary


2008-07-25  Oliver Bolte  <obo@openoffice.org>  [06c099c75e18d051fcf329b56ac0cacf87da9adf]

#i90172# Compilation error unxsoli4


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [20b0d7bbe3378ef64724e234d47bb7cde4e5e1c6]

INTEGRATION: CWS xmlfilter06 (1.45.16); FILE MERGED 2008/07/10 14:38:58 tbe 1.45.16.1: #i91436# Enhanced formula input: invalid formula not detected


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [731713f8044d7fb03478c8161991274bcfaebd45]

INTEGRATION: CWS xmlfilter06 (1.26.18); FILE MERGED 2008/07/11 14:25:08 tbe 1.26.18.1: #i91550# Reference input mode when entering a formula starting with + or -


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [23eff797080fe7e9e06d5ccbd75c8989c69a1400]

INTEGRATION: CWS xmlfilter06 (1.68.2); FILE MERGED 2008/07/11 14:23:47 tbe 1.68.2.1: #i91550# Reference input mode when entering a formula starting with + or -


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [ada589170a7c0874efe5e866caa2f6caedab7250]

INTEGRATION: CWS xmlfilter06 (1.19.50); FILE MERGED 2008/07/11 14:22:05 tbe 1.19.50.1: #i91550# Reference input mode when entering a formula starting with + or -


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [58ef92a2221b6d3610cf9bec755e9172f36fe9b6]

INTEGRATION: CWS xmlfilter06 (1.25.52); FILE MERGED 2008/07/11 13:07:48 dr 1.25.52.1: crash while deleting sheet with A11Y on MacOS


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [f5b39dda3de49b8f3fab27ca48dffaab02b31a15]

INTEGRATION: CWS xmlfilter06 (1.30.52); FILE MERGED 2008/07/11 14:21:01 tbe 1.30.52.1: #i91550# Reference input mode when entering a formula starting with + or -


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [aaf6d5dce2b0fc7565c4b8e3900430c02cc1420d]

INTEGRATION: CWS xmlfilter06 (1.29.52); FILE MERGED 2008/07/03 12:53:42 dr 1.29.52.1: #i91331# crash on saving notes with fontwork applied


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [22c2cd0127b377692614a8b704f678a8ae5973fe]

INTEGRATION: CWS xmlfilter06 (1.81.2); FILE MERGED 2008/07/10 14:35:35 tbe 1.81.2.1: #i91436# Enhanced formula input: invalid formula not detected


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [24d9329c960dce3e6cf45b4555ad916c8e7daa75]

INTEGRATION: CWS xmlfilter06 (1.74.2); FILE MERGED 2008/07/11 11:04:28 dr 1.74.2.1: #i10000# check ptr


2008-07-22  Oliver Bolte  <obo@openoffice.org>  [94367a0352278a4e41a2ed94568e9cac998eb2d2]

INTEGRATION: CWS xmlfilter06 (1.39.2); FILE MERGED 2008/07/10 14:33:51 tbe 1.39.2.1: #i91436# Enhanced formula input: invalid formula not detected


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [ca13b2356492ff09ad795bdb57db12b8a4a992b1]

INTEGRATION: CWS chart29 (1.5.40); FILE MERGED 2008/07/08 07:59:02 iha 1.5.40.1: #i88825# use update timer for range changes


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [a880c34c54a637d00c1db5905327ab27731293e6]

INTEGRATION: CWS chart29 (1.5.40); FILE MERGED 2008/07/08 08:00:06 iha 1.5.40.1: #i88825# use update timer for range changes


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [a7b6cb01f9372390e5c59f42a7e2be6d4d483010]

INTEGRATION: CWS chart29 (1.4.40); FILE MERGED 2008/07/08 07:55:33 iha 1.4.40.1: #i88825# use update timer for range changes


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [1b1456b6baf7233e511c5ef955d4ef208f58e9e8]

INTEGRATION: CWS chart29 (1.5.40); FILE MERGED 2008/07/08 07:58:03 iha 1.5.40.1: #i88825# use update timer for range changes


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [3a59e1a451e15527127dd3dfa8173f1a9ad5167e]

INTEGRATION: CWS chart29 (1.3.40); FILE MERGED 2008/07/08 07:54:51 iha 1.3.40.1: #i88825# use update timer for range changes


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [49d9adc8a0f0e347f4e4ea95fb1fa4ad9c618698]

INTEGRATION: CWS chart29 (1.21.98); FILE MERGED 2008/07/08 07:36:03 iha 1.21.98.1: #i91212# XTableChart::getRanges() doesn't load chart and returns wrong range string


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [2ff7c9532b56a58017def0724eb57eb1a29018b6]

INTEGRATION: CWS chart29 (1.9.98); FILE MERGED 2008/07/08 07:41:23 iha 1.9.98.2: #i90669# Chart X-axis shifted 2008/07/08 07:34:47 iha 1.9.98.1: #i91212# XTableChart::getRanges() doesn't load chart and returns wrong range string


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [fa674fd732210caab5ea1ad618db36811f5bdd3c]

INTEGRATION: CWS chart29 (1.30.74); FILE MERGED 2008/07/10 11:47:19 iha 1.30.74.2: #i90704# take data from rows if only a single! row is available 2008/07/08 07:38:12 iha 1.30.74.1: #i90704# take data from rows if only a single row is available


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [e86f6c05c255f03053a237b74ed10a87c32f3370]

INTEGRATION: CWS chart29 (1.27.100); FILE MERGED 2008/07/10 13:59:36 dr 1.27.100.1: missing casts


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [0c5f60c3cc0c2f4cd5c47c38f6c507f4ee49fd78]

INTEGRATION: CWS chart29 (1.31.64); FILE MERGED 2008/07/10 13:59:36 dr 1.31.64.1: missing casts


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [8d489e0d7506a0044262b11789e10a2fbfa10afa]

INTEGRATION: CWS chart29 (1.5.100); FILE MERGED 2008/07/10 13:59:35 dr 1.5.100.1: missing casts


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [0accabeafca5c0b3b4f16fc500f0896220718c8a]

INTEGRATION: CWS chart29 (1.32.48); FILE MERGED 2008/07/10 13:59:35 dr 1.32.48.1: missing casts


2008-07-21  Oliver Bolte  <obo@openoffice.org>  [635b1093b7c9c07dd7a6a5103fa52a0d0e3f384d]

INTEGRATION: CWS chart29 (1.6.100); FILE MERGED 2008/07/08 07:30:24 iha 1.6.100.1: #i91212# XTableChart::getRanges() doesn't load chart and returns wrong range string


2008-07-17  Ivo Hinkelmann  <ihi@openoffice.org>  [619dec441ca31375b2f9a825ace19b4c0054fea4]

INTEGRATION: CWS aquavcl09 (1.3.334); FILE MERGED 2008/07/08 15:16:02 pl 1.3.334.1: #i88582# change mod1-space and mod1-shift-space accelerators


2008-07-17  Ivo Hinkelmann  <ihi@openoffice.org>  [3b3ea6919fd05ba014832419c636c6652ad9aefc]

INTEGRATION: CWS aquavcl09 (1.3.334); FILE MERGED 2008/07/08 15:16:01 pl 1.3.334.1: #i88582# change mod1-space and mod1-shift-space accelerators


2008-07-17  Ivo Hinkelmann  <ihi@openoffice.org>  [8ec3abca79907c3f7f48cf4c98c31ef13dd00cc3]

INTEGRATION: CWS aquavcl09 (1.5.330); FILE MERGED 2008/07/08 15:16:01 pl 1.5.330.1: #i88582# change mod1-space and mod1-shift-space accelerators


2008-07-17  Ivo Hinkelmann  <ihi@openoffice.org>  [b140ecf17c1ba8a76ff3146878d7cb7d6a22a858]

INTEGRATION: CWS aquavcl09 (1.3.334); FILE MERGED 2008/07/08 15:16:00 pl 1.3.334.1: #i88582# change mod1-space and mod1-shift-space accelerators


2008-07-16  Ivo Hinkelmann  <ihi@openoffice.org>  [598ca1a59eb4b1fff8020da1c301c9cedfbc165d]

INTEGRATION: CWS tl55 (1.7.84); FILE MERGED 2008/06/24 08:35:05 os 1.7.84.1: #i85999# grammar checking


2008-07-14  Rüdiger Timm  <rt@openoffice.org>  [719b33614412c90bd61347d4163be3dcd6753bb9]

#i10000# Typo in include statement corrected.


2008-07-11  Rüdiger Timm  <rt@openoffice.org>  [3e3060c97acacf1f5e7e267c4265ef370bb763da]

INTEGRATION: CWS calccrashes (1.20.70); FILE MERGED 2008/07/07 10:16:06 nn 1.20.70.1: #i91372# use SdrUndoAction in ScUndoMakeScenario


2008-07-11  Rüdiger Timm  <rt@openoffice.org>  [6f8ecfa3fcd432bcdceabb8ffce22ff10d92d739]

INTEGRATION: CWS calccrashes (1.11.70); FILE MERGED 2008/07/07 10:16:06 nn 1.11.70.1: #i91372# use SdrUndoAction in ScUndoMakeScenario


2008-07-11  Rüdiger Timm  <rt@openoffice.org>  [cab6397d023029f843ca7ce3099ddaad9b0e4e46]

INTEGRATION: CWS calccrashes (1.20.96); FILE MERGED 2008/07/07 10:16:06 nn 1.20.96.1: #i91372# use SdrUndoAction in ScUndoMakeScenario


2008-07-11  Rüdiger Timm  <rt@openoffice.org>  [70fc8c74898515535ee0f3bf0a6a7f755f6763e7]

INTEGRATION: CWS calccrashes (1.28.72); FILE MERGED 2008/07/07 10:15:16 nn 1.28.72.1: #i91329# Refresh: check for range overflow


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [9e5843f7f603d75c18eaf5ef8b9b59c7a931812e]

INTEGRATION: CWS fwk91 (1.62.44); FILE MERGED 2008/06/20 07:56:28 mav 1.62.44.1: #i87794# allow merging of encrypted documents


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [18d892e3db24852549bddccf77d023136272ebf3]

INTEGRATION: CWS fwk91 (1.100.70); FILE MERGED 2008/07/01 09:32:34 mav 1.100.70.1: #i87794# transport the password to the target


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [1e7fab524b9ad96dbdb0d7541fb4b8229de72831]

INTEGRATION: CWS odff04 (1.18.66); FILE MERGED 2008/06/17 20:54:07 er 1.18.66.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [7a463a229599d027a364b31c938a9af5ab3018cf]

INTEGRATION: CWS odff04 (1.6.66); FILE MERGED 2008/06/17 20:54:08 er 1.6.66.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [36ecd9d09bd27b3d5c05131e0ddcd5e2bce35edb]

INTEGRATION: CWS odff04 (1.23.66); FILE MERGED 2008/06/24 17:18:14 er 1.23.66.2: a char is not unsigned, a BYTE is not a char 2008/06/17 12:47:18 er 1.23.66.1: #i88577# unify relaxed check on dBase header to 32 byte boundary and check for accepted dbf types instead; based on patch from <bormant>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [37c1f6ae0f2b8b4c754ed5e9d542a22b0b7b842e]

INTEGRATION: CWS odff04 (1.94.66); FILE MERGED 2008/06/24 14:49:02 er 1.94.66.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [b2bd5ae38f58e78e7304e48beeef1275b3450647]

INTEGRATION: CWS odff04 (1.32.66); FILE MERGED 2008/06/17 20:54:08 er 1.32.66.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [0f398bc3e31f8403f3250956e6cb98cf9a7c4e09]

INTEGRATION: CWS odff04 (1.23.66); FILE MERGED 2008/06/17 20:54:08 er 1.23.66.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [1b7fd83380b3089ed2dafe3ac5fa0d48d1ee43ae]

INTEGRATION: CWS odff04 (1.19.64); FILE MERGED 2008/06/17 20:54:07 er 1.19.64.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [f5ff083acf684b3694012e687dd2ae46a31092f5]

INTEGRATION: CWS odff04 (1.26.66); FILE MERGED 2008/06/24 14:49:01 er 1.26.66.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [233d09809d3795a5f392a4ebf08378087cd81753]

INTEGRATION: CWS odff04 (1.24.64); FILE MERGED 2008/06/17 20:54:07 er 1.24.64.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [4a89a7a4ffddca4b3cd6d160df6ec55224e0c2ab]

INTEGRATION: CWS odff04 (1.31.64); FILE MERGED 2008/06/17 20:54:07 er 1.31.64.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [15dbc77f495f7677696c84d20c1b09cc0a154738]

INTEGRATION: CWS odff04 (1.25.64); FILE MERGED 2008/06/24 14:49:01 er 1.25.64.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [5aca751cff683c7fbd958674598fffef1de7ac47]

INTEGRATION: CWS odff04 (1.94.62); FILE MERGED 2008/06/17 20:54:07 er 1.94.62.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [579d2643d5e76f33f1d62b8e4a1d3a689ee760ed]

INTEGRATION: CWS odff04 (1.61.66); FILE MERGED 2008/06/17 20:54:07 er 1.61.66.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [d7386bead76e310a06d9202888ca0b1c871bab38]

INTEGRATION: CWS odff04 (1.125.26); FILE MERGED 2008/06/17 20:54:07 er 1.125.26.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [cb6a17d07df4971c2478c6d782a0068b082be6ca]

INTEGRATION: CWS odff04 (1.51.66); FILE MERGED 2008/06/24 14:49:01 er 1.51.66.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [01ae47c2fa4dc77a1540865048f2a38dab9ed404]

INTEGRATION: CWS odff04 (1.33.66); FILE MERGED 2008/06/24 14:49:01 er 1.33.66.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [9506df5e1df7b726c0d0265a748c9b005b4d8a9a]

INTEGRATION: CWS odff04 (1.7.64); FILE MERGED 2008/06/18 15:48:58 er 1.7.64.1: #i90703# accuracy of GAMMADIST, CHIDIST, GAMMAINV and CHIINV; patch from <regina>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [1bbf4866455dd01553c8cd866cd0ac4a373b53c1]

INTEGRATION: CWS odff04 (1.23.2); FILE MERGED 2008/06/23 10:46:15 er 1.23.2.2: MSVC dumbness, cannot initialize static const non-integral inside class 2008/06/18 15:48:57 er 1.23.2.1: #i90703# accuracy of GAMMADIST, CHIDIST, GAMMAINV and CHIINV; patch from <regina>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [db5278694744d706cf62b47e7b556d49be18d68d]

INTEGRATION: CWS odff04 (1.59.2); FILE MERGED 2008/06/24 14:49:01 er 1.59.2.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [1d48e0579f021fea05ad1fa25f5f2d074580a687]

INTEGRATION: CWS odff04 (1.79.14); FILE MERGED 2008/06/25 13:14:03 er 1.79.14.4: CompileString: do not count array column separators as parameter separators 2008/06/25 11:27:11 er 1.79.14.3: arghl 2008/06/24 14:49:01 er 1.79.14.2: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation 2008/06/17 20:54:06 er 1.79.14.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [e44afb9bc0400d219cfb9961af55e9c8fa575e4f]

INTEGRATION: CWS odff04 (1.12.36); FILE MERGED 2008/06/17 20:54:06 er 1.12.36.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [6a525d028846267f07451a3c471a8a78c43711bf]

INTEGRATION: CWS odff04 (1.34.2); FILE MERGED 2008/06/23 10:46:14 er 1.34.2.3: MSVC dumbness, cannot initialize static const non-integral inside class 2008/06/18 17:04:40 er 1.34.2.2: hoppla 2008/06/18 15:48:57 er 1.34.2.1: #i90703# accuracy of GAMMADIST, CHIDIST, GAMMAINV and CHIINV; patch from <regina>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [70abba64403a6a4d229d590375f594e359db5186]

INTEGRATION: CWS odff04 (1.88.60); FILE MERGED 2008/06/17 20:53:11 er 1.88.60.1: #i6087# allow all characters in sheet names, except those that Excel does not accept: :\/?*[] and leading or trailing single quote; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [36f3670f477a2eb0ece3050a2446b1b947cceae7]

INTEGRATION: CWS odff04 (1.43.36); FILE MERGED 2008/06/24 14:49:00 er 1.43.36.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [6301c60e66f4eaf886fcc0bbd54d11fb7ddee64e]

INTEGRATION: CWS odff04 (1.15.66); FILE MERGED 2008/06/24 14:49:00 er 1.15.66.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [636cb39b6d53195a2d76d61eb0314508d3e0473e]

INTEGRATION: CWS odff04 (1.112.34); FILE MERGED 2008/06/17 20:54:06 er 1.112.34.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [d8cd08520fe29b6da1d2adefab49ee98cb3ab4ca]

INTEGRATION: CWS odff04 (1.37.36); FILE MERGED 2008/06/17 20:54:06 er 1.37.36.1: #i6087# allow all characters in sheet names; patch by <cmc> and <kohei>


2008-07-08  Rüdiger Timm  <rt@openoffice.org>  [378b921ca8de1d63a9d9e4e265e8f77be74cc2d7]

INTEGRATION: CWS odff04 (1.29.66); FILE MERGED 2008/06/24 14:49:00 er 1.29.66.1: #i91020# support ADDRESS 4th and INDIRECT 2nd parameter for A1/R1C1 notation


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [c49e21b8ce6e917767265229371c344f49e98541]

INTEGRATION: CWS impressa11y (1.3.62); FILE MERGED 2008/05/29 12:45:57 af 1.3.62.2: RESYNC: (1.3-1.4); FILE MERGED 2008/02/05 10:19:04 bm 1.3.62.1: #i73747# return LIST_ITEM as role instead of SHAPE, so that chart objects are read by ZoomText


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [616020d0c9e6bba0d951552939f1e416875da056]

INTEGRATION: CWS tbe34 (1.15.72); FILE MERGED 2008/06/23 12:45:32 tbe 1.15.72.1: #i82480# [a11y] Orca Insert-f to get text attributes doesn't work when you are in a spread sheet table cell


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [f463b5deafd53fdcfb6c654a617137fc6e0a9fa1]

INTEGRATION: CWS tbe34 (1.16.72); FILE MERGED 2008/06/23 12:44:34 tbe 1.16.72.1: #i82480# [a11y] Orca Insert-f to get text attributes doesn't work when you are in a spread sheet table cell


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [d34b2fcce9bd9b44e6055db3ce502f36c45b65bb]

INTEGRATION: CWS tbe34 (1.17.72); FILE MERGED 2008/07/01 17:06:29 tbe 1.17.72.2: #i85876# [a11y] calc: formula edit field has width of 1 pixel 2008/06/26 10:06:12 tbe 1.17.72.1: #i86112# [a11y] 'Area' labels of Calc Headers/Footers dialog not always announced


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [18250749f327ce89ff038ab6bd8fc6b08e25ee2d]

INTEGRATION: CWS tbe34 (1.75.72); FILE MERGED 2008/06/26 16:55:49 tbe 1.75.72.1: #124567# Accessibility: Shapes / form controls after reload not accessible


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [660d6aa7cd06040a3fb6f7c96c31c22bce84d0f5]

INTEGRATION: CWS tbe34 (1.22.72); FILE MERGED 2008/06/23 12:43:42 tbe 1.22.72.1: #i82480# [a11y] Orca Insert-f to get text attributes doesn't work when you are in a spread sheet table cell


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [0f79da11f70aa17fbb9b925050716f5de011f395]

INTEGRATION: CWS tbe34 (1.33.72); FILE MERGED 2008/06/23 12:42:35 tbe 1.33.72.1: #i82480# [a11y] Orca Insert-f to get text attributes doesn't work when you are in a spread sheet table cell


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [d96ad130a6bb9dca0d3568e148563aedcfc405e9]

INTEGRATION: CWS cwscheckapi1 (1.8.4); FILE MERGED 2008/06/25 09:42:03 cn 1.8.4.2: #i90897# update lists 2008/06/19 21:05:40 cn 1.8.4.1: #i90897# update knownissue list


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [428927ce47f7ccedea53913b6ab73fa27d17b137]

INTEGRATION: CWS cwscheckapi1 (1.10.4); FILE MERGED 2008/06/25 09:42:03 cn 1.10.4.2: #i90897# update lists 2008/06/19 21:05:40 cn 1.10.4.1: #i90897# update knownissue list


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [409dbb781c91cac5080d74754a621e58337ab418]

INTEGRATION: CWS calcfixes30 (1.79.46); FILE MERGED 2008/07/01 15:18:42 er 1.79.46.2: #i91259# ODFF: read/write automatic intersection .... operator 2008/06/27 15:51:19 er 1.79.46.1: #i87468# NextSymbol: +-1 offset error in 1e-2


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [e9afe7610ca6da959719b120d51ef6fde94cffdc]

INTEGRATION: CWS calcfixes30 (1.58.88); FILE MERGED 2008/07/02 09:59:52 er 1.58.88.1: #i91294# ODFF: store ERRORTYPE as ORG.OPENOFFICE.ERRORTYPE


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [6f7416847dfba79fa0526c81989c337d8e63cbfd]

INTEGRATION: CWS calcfixes30 (1.88.84); FILE MERGED 2008/06/27 17:15:53 er 1.88.84.1: #i89047# CalcAll: clear lookup caches to ensure that changed calculation options make it through


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [a0f98117590d378545634c4ddb8387baa29d0740]

INTEGRATION: CWS calcfixes30 (1.73.60); FILE MERGED 2008/06/27 17:15:53 er 1.73.60.1: #i89047# CalcAll: clear lookup caches to ensure that changed calculation options make it through


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [da8cb75dfbb1aa79c526fec609833d82f6a08569]

INTEGRATION: CWS calcfixes30 (1.112.60); FILE MERGED 2008/06/27 17:15:51 er 1.112.60.1: #i89047# CalcAll: clear lookup caches to ensure that changed calculation options make it through


2008-07-07  Rüdiger Timm  <rt@openoffice.org>  [92f6860f378e19898a11248213406e00bf839b48]

INTEGRATION: CWS calcfixes30 (1.37.62); FILE MERGED 2008/07/01 15:18:42 er 1.37.62.1: #i91259# ODFF: read/write automatic intersection .... operator


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [978b6e27bbaa04006aeaddf17897eb46b7b6c8a3]

INTEGRATION: CWS chart27 (1.30.28); FILE MERGED 2008/06/10 08:24:43 iha 1.30.28.2: RESYNC: (1.30-1.31); FILE MERGED 2008/06/09 13:38:43 iha 1.30.28.1: #i72331 Wrong error indicator placement for standard deviation


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [cb613779643ebe4e6c8c618c2fdd372b86d9985c]

INTEGRATION: CWS chart27 (1.10.30); FILE MERGED 2008/06/23 09:10:33 iha 1.10.30.1: #i90976# propagate property CharEscapementHeight


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [dc8b43790516c9c79632f85929361b7991b3e5f9]

INTEGRATION: CWS chart27 (1.24.16); FILE MERGED 2008/06/09 13:39:21 iha 1.24.16.1: #i72331 Wrong error indicator placement for standard deviation


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [01d824a5970a1efce0bebd3bd720c0edba5e9ce3]

INTEGRATION: CWS chart27 (1.20.28); FILE MERGED 2008/06/09 13:36:25 iha 1.20.28.1: #i72331 Wrong error indicator placement for standard deviation


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [efe491cbb78a20a404d7ea64f26240aaf078336e]

INTEGRATION: CWS chart27 (1.43.16); FILE MERGED 2008/06/09 13:51:05 iha 1.43.16.1: #i72331 Wrong error indicator placement for standard deviation


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [e233bc7a8adf3bcfd338ad360bf1911c4837797a]

INTEGRATION: CWS chart27 (1.5.30); FILE MERGED 2008/06/03 15:45:28 iha 1.5.30.1: #88498# Inconsistent tranparency in Stock Chart


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [eb5cef75eb7f1224ff90e45c83968fd7ba7e9cbf]

INTEGRATION: CWS chart27 (1.13.30); FILE MERGED 2008/06/10 08:24:46 iha 1.13.30.2: RESYNC: (1.13-1.14); FILE MERGED 2008/06/05 09:10:42 iha 1.13.30.1: #i88972# XY (scatter) with large numbers goes wrong


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [45cb551b610fcb3325eadb1400ff2cc4479ea0c1]

INTEGRATION: CWS chart27 (1.8.30); FILE MERGED 2008/06/20 14:24:41 iha 1.8.30.1: #i90931# removed wrong default for GradientStepCount


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [4c736cbd69b5e63e1ac7ad574f474c7162f697da]

INTEGRATION: CWS chart27 (1.10.2); FILE MERGED 2008/06/23 09:01:16 iha 1.10.2.1: #i90976# wrong default value for property CharEscapementHeight


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [9c81140f8ff1c48550dd09f57ed835983babf22a]

INTEGRATION: CWS chart27 (1.9.30); FILE MERGED 2008/06/16 09:24:26 iha 1.9.30.1: #i85439# Column and Line Chart are not build correct


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [508985efddcb2ae4a38c4ad884b3831c3db4b394]

INTEGRATION: CWS chart27 (1.12.30); FILE MERGED 2008/06/16 09:25:05 iha 1.12.30.1: #i85439# Column and Line Chart are not build correct


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [1e5e06ad5f976683311b463b1cb5b9c3c73a9e4d]

INTEGRATION: CWS chart27 (1.17.30); FILE MERGED 2008/06/20 14:22:24 iha 1.17.30.1: #i90931# removed wrong default for GradientStepCount


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [3371e5118529879444ca35a970391f9415286f5c]

INTEGRATION: CWS chart27 (1.9.2); FILE MERGED 2008/06/23 12:17:25 iha 1.9.2.1: #i90551# 'Scale Text' button doesn't display state


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [053450ee8951017224e72233847efc0b47e74ab7]

INTEGRATION: CWS chart27 (1.5.30); FILE MERGED 2008/06/17 10:44:22 iha 1.5.30.1: #i89585# Destroyed view of  Chart Data Table


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [ec5fb184b6617861c2b7d5fc0ab3a0dd96691f89]

INTEGRATION: CWS chart27 (1.7.28); FILE MERGED 2008/06/19 10:13:48 iha 1.7.28.2: RESYNC: (1.7-1.8); FILE MERGED 2008/06/17 10:44:49 iha 1.7.28.1: #i89585# Destroyed view of  Chart Data Table


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [580c605d2dc8ce11b58aa3ef6fca9e38201e2d61]

INTEGRATION: CWS chart27 (1.4.30); FILE MERGED 2008/06/24 11:03:24 iha 1.4.30.1: #i90504# Minor interval marks are not saved and loeaded correctly


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [21ff14a6a6c329d9817bb81b05abde44c3fc6fc3]

INTEGRATION: CWS chart27 (1.7.30); FILE MERGED 2008/06/24 11:07:40 iha 1.7.30.1: #i90504# Minor interval marks are not saved and loeaded correctly


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [0006f6ec0f07216087a7a6bd11532eb2aaeae302]

INTEGRATION: CWS chart27 (1.5.30); FILE MERGED 2008/06/24 11:08:44 iha 1.5.30.1: #i90504# Minor interval marks are not saved and loeaded correctly


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [c38abb856fc89548595bb81354a053f86b4ffaa1]

INTEGRATION: CWS chart27 (1.10.30); FILE MERGED 2008/06/24 11:10:08 iha 1.10.30.1: #i90504# Minor interval marks are not saved and loeaded correctly


2008-07-02  Vladimir Glazounov  <vg@openoffice.org>  [5c4f6b3164b90b2956e7a19b6f76300b96b03f78]

INTEGRATION: CWS chart27 (1.100.78); FILE MERGED 2008/06/23 15:45:20 iha 1.100.78.1: #b6697848# update chart correctly after! all other changes


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [bd2a941a4bbd42cbeaa4af788a00df8ef952898c]

INTEGRATION: CWS calcshare3 (1.15.12); FILE MERGED 2008/05/30 15:17:20 tbe 1.15.12.1: #i87872# [Collaboration] INSERT - Sheet from file is not recorded


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [1290efb0de7b53abffc228a4d15fbde8ed566245]

INTEGRATION: CWS calcshare3 (1.14.12); FILE MERGED 2008/07/01 11:49:11 tbe 1.14.12.1: #i87872# [Collaboration] INSERT - Sheet from file is not recorded


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [9f908d113c8cc39551ef767ee7c21e976c1bb1fc]

INTEGRATION: CWS calcshare3 (1.61.12); FILE MERGED 2008/06/16 09:57:00 tbe 1.61.12.2: RESYNC: (1.61-1.62); FILE MERGED 2008/05/30 14:12:25 tbe 1.61.12.1: #i87870# [Collaboration] No warning if other user disables and enables the shared mode


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [6887951d920755b4d8771499b3d6fb38ba299b9b]

INTEGRATION: CWS calcshare3 (1.37.12); FILE MERGED 2008/05/16 14:50:54 tbe 1.37.12.3: #i88694# [Collaboration] Conflict after deleting two rows is not resolved correctly 2008/04/24 13:56:41 tbe 1.37.12.2: #i88694# [Collaboration] Conflict after deleting two rows is not resolved correctly 2008/04/22 15:16:31 tbe 1.37.12.1: #i87826# [Collaboration] Rejected move destroys formulas


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [5338a6d92646f16f56a24710ee8adab3526cf71d]

INTEGRATION: CWS calcshare3 (1.100.12); FILE MERGED 2008/05/30 14:11:10 tbe 1.100.12.1: #i87870# [Collaboration] No warning if other user disables and enables the shared mode


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [5a91abce20c7a81e379f5598b9545929fe6a428e]

INTEGRATION: CWS calcshare3 (1.29.12); FILE MERGED 2008/04/22 15:29:57 tbe 1.29.12.1: #i87826# [Collaboration] Rejected move destroys formulas


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [d335b580c71d7f56cf8da8549d3aa21b83c6bebb]

INTEGRATION: CWS dr61 (1.43.16); FILE MERGED 2008/05/26 16:02:43 dr 1.43.16.1: #i85566# repair 'DisplayName' property for cell styles


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [6646f1baadbc65c60f89628243158e7a9389ef17]

INTEGRATION: CWS dr61 (1.69.16); FILE MERGED 2008/05/19 12:24:05 dr 1.69.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [12043c7387c7c2114cd0f31323ee5dbe66add2fb]

INTEGRATION: CWS dr61 (1.28.16); FILE MERGED 2008/05/19 12:24:05 dr 1.28.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [5a65a54be6e936f12737b2fe3ce11764cfbc5913]

INTEGRATION: CWS dr61 (1.31.16); FILE MERGED 2008/05/19 12:24:05 dr 1.31.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [a91b252bb135f62ea18e92e2ce6b4ae6fd57a7f7]

INTEGRATION: CWS dr61 (1.68.16); FILE MERGED 2008/06/17 15:54:05 dr 1.68.16.2: RESYNC: (1.68-1.69); FILE MERGED 2008/05/19 12:24:05 dr 1.68.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [ffd0aaac2b9f43ee1148c731d238aefbe5a75428]

INTEGRATION: CWS dr61 (1.96.16); FILE MERGED 2008/05/19 12:24:05 dr 1.96.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [041a8d70e83cd3f51fd63948d275ef6651192c2f]

INTEGRATION: CWS dr61 (1.7.16); FILE MERGED 2008/05/19 12:24:05 dr 1.7.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [5d22d5168e464f02dd0df62e8c17df92276161b5]

INTEGRATION: CWS dr61 (1.83.16); FILE MERGED 2008/05/19 12:24:05 dr 1.83.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [576a3a9a2f5e4c76249d593c96035969c5af927a]

INTEGRATION: CWS dr61 (1.6.16); FILE MERGED 2008/05/19 12:24:05 dr 1.6.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [35395a0eb27eedece28c3ae24e756e664c648639]

INTEGRATION: CWS dr61 (1.10.16); FILE MERGED 2008/05/19 12:24:05 dr 1.10.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [86a7b72bc308655948367c6aea992acb5198cd00]

INTEGRATION: CWS dr61 (1.31.16); FILE MERGED 2008/05/19 12:24:04 dr 1.31.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [beeb80b07f7a29f77c7f884b129bff7d704120eb]

INTEGRATION: CWS dr61 (1.11.16); FILE MERGED 2008/05/19 12:24:04 dr 1.11.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [d6cd6b2dae63cccdbea9babf1f671148c933a062]

INTEGRATION: CWS dr61 (1.5.16); FILE MERGED 2008/05/19 12:24:04 dr 1.5.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [60b32e7bfc88bceccbbd95e912e0d570eb4b1417]

INTEGRATION: CWS dr61 (1.4.16); FILE MERGED 2008/05/19 12:24:04 dr 1.4.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [5d1676288077b125748173ea5a6ec2fd468a5f88]

INTEGRATION: CWS dr61 (1.13.16); FILE MERGED 2008/05/19 12:24:04 dr 1.13.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [32b066da8b27797f6aee38995281398361c495d0]

INTEGRATION: CWS dr61 (1.7.16); FILE MERGED 2008/05/19 12:24:04 dr 1.7.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [a959094ab3404d88274abd94b575f7b523e0782a]

INTEGRATION: CWS dr61 (1.10.16); FILE MERGED 2008/05/19 12:24:04 dr 1.10.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [c94005f878d81bb3e95ee627da18136687b58a9c]

INTEGRATION: CWS dr61 (1.29.16); FILE MERGED 2008/05/19 12:24:04 dr 1.29.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [0009a076866f27e05667fd6875d38d27e32c93c7]

INTEGRATION: CWS dr61 (1.33.16); FILE MERGED 2008/05/19 12:24:04 dr 1.33.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [a2a5f0d018dfdd16a01b3f3e323e9a7d11ddcd12]

INTEGRATION: CWS dr61 (1.23.16); FILE MERGED 2008/05/19 12:24:04 dr 1.23.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [99067818dd9c223b96c2db297126888808bb698a]

INTEGRATION: CWS dr61 (1.9.16); FILE MERGED 2008/05/19 12:24:04 dr 1.9.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [1c0142bc30efde53b5a4ddabd44c537c5533639d]

INTEGRATION: CWS dr61 (1.6.16); FILE MERGED 2008/05/19 12:24:04 dr 1.6.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [17ca727545e43e80203ce0860a2bf87b614923e2]

INTEGRATION: CWS dr61 (1.12.16); FILE MERGED 2008/05/19 12:24:04 dr 1.12.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [d073650bbd9efa1748d94586128df2bddca2b41c]

INTEGRATION: CWS dr61 (1.15.16); FILE MERGED 2008/05/19 12:24:04 dr 1.15.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [2ff413afe85d788ae047eea0a8f4583b64d4e7ad]

INTEGRATION: CWS dr61 (1.7.16); FILE MERGED 2008/05/19 12:24:04 dr 1.7.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [15f598c7c2f66d8660f6958ef63c3ffae3dc10c5]

INTEGRATION: CWS dr61 (1.11.16); FILE MERGED 2008/05/19 12:24:04 dr 1.11.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [b1aef9cb71ac222c75c3a1ab50b06331fe0bfb31]

INTEGRATION: CWS dr61 (1.18.16); FILE MERGED 2008/05/19 12:24:04 dr 1.18.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [6cb20518d7f14835db78d81aaf106cd5b1282a49]

INTEGRATION: CWS dr61 (1.17.16); FILE MERGED 2008/05/19 12:24:04 dr 1.17.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [7e45b6df8c80ae3183d35f445e005a1bd85b13a7]

INTEGRATION: CWS dr61 (1.8.16); FILE MERGED 2008/05/19 12:24:03 dr 1.8.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [ac605e0e84c774f824039b8810453868c74eae46]

INTEGRATION: CWS dr61 (1.87.16); FILE MERGED 2008/05/19 12:24:03 dr 1.87.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [c0cd591fc16ff7693dba28ff2ae449fc42d560ee]

INTEGRATION: CWS dr61 (1.32.16); FILE MERGED 2008/05/19 12:24:03 dr 1.32.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [d562e0e88b8c1cc8423c53c047ba69a858b605a3]

INTEGRATION: CWS dr61 (1.11.16); FILE MERGED 2008/05/19 12:24:03 dr 1.11.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [c92ce46b3ce95d48a284456bbaa800ed0f3fef4f]

INTEGRATION: CWS dr61 (1.12.8); FILE MERGED 2008/05/22 11:43:15 dr 1.12.8.4: RESYNC: (1.13-1.14); FILE MERGED 2008/04/23 12:21:35 dr 1.12.8.3: RESYNC: (1.12-1.13); FILE MERGED 2008/04/03 09:49:45 dr 1.12.8.2: #i86465# export of error bars with manual data source 2008/04/03 09:01:03 dr 1.12.8.1: #i86465# import of error bars with manual data source


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [bc54493cd0ae072bb542226faa93a769f0b603c2]

INTEGRATION: CWS dr61 (1.5.16); FILE MERGED 2008/05/19 12:24:03 dr 1.5.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [4bbee8bfc72f5dd763b7eb100da39ff4c0538596]

INTEGRATION: CWS dr61 (1.7.16); FILE MERGED 2008/05/19 12:24:03 dr 1.7.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [fadf7ff5423e130930228e41dd5c08cab80286db]

INTEGRATION: CWS dr61 (1.11.8); FILE MERGED 2008/05/28 12:40:45 dr 1.11.8.6: #i88264# pie rotation in 3d pie charts 2008/05/22 11:43:09 dr 1.11.8.5: RESYNC: (1.12-1.13); FILE MERGED 2008/04/23 12:21:38 dr 1.11.8.4: RESYNC: (1.11-1.12); FILE MERGED 2008/04/03 09:01:03 dr 1.11.8.3: #i86465# import of error bars with manual data source 2008/04/02 14:29:31 dr 1.11.8.2: #i71684# rotation direction in pie charts 2008/04/02 13:35:41 dr 1.11.8.1: #i85658# ignore pivot charts completely


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [f57c7746970c2007c30575dde3ae63baf4753607]

INTEGRATION: CWS dr61 (1.5.8); FILE MERGED 2008/06/24 09:38:31 dr 1.5.8.7: #i86465# write correct point counts in errorbar/trendline series objects to make XL2007SP1 happy 2008/05/28 12:40:45 dr 1.5.8.6: #i88264# pie rotation in 3d pie charts 2008/05/22 11:43:06 dr 1.5.8.5: RESYNC: (1.6-1.7); FILE MERGED 2008/04/23 12:21:41 dr 1.5.8.4: RESYNC: (1.5-1.6); FILE MERGED 2008/04/04 09:20:02 dr 1.5.8.3: #i87594# automatic categories broken 2008/04/03 09:49:44 dr 1.5.8.2: #i86465# export of error bars with manual data source 2008/04/02 14:29:31 dr 1.5.8.1: #i71684# rotation direction in pie charts


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [de8d931e850e98bad3cf7a68dce4709de62e6f2f]

INTEGRATION: CWS dr61 (1.48.16); FILE MERGED 2008/05/19 12:24:03 dr 1.48.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [5e11390a183cce47b9cc031326f6b2b87c539318]

INTEGRATION: CWS dr61 (1.12.16); FILE MERGED 2008/05/19 12:24:03 dr 1.12.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [393304cfc6c492e9b4e7c317da2070c8976f498a]

INTEGRATION: CWS dr61 (1.5.16); FILE MERGED 2008/05/19 12:24:02 dr 1.5.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [ef516efad09c5a012f40469cdbb67c4a1151479e]

INTEGRATION: CWS dr61 (1.14.16); FILE MERGED 2008/05/19 12:24:02 dr 1.14.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [4adac0c71397c55eefc866c20fefa3483d393757]

INTEGRATION: CWS dr61 (1.3.16); FILE MERGED 2008/05/19 12:24:02 dr 1.3.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [34fbd0f00f02b769fb17b49fd61c80ca7a595b35]

INTEGRATION: CWS dr61 (1.43.16); FILE MERGED 2008/05/19 12:24:02 dr 1.43.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [5f8d34be14f53b452e8261e159867050b255946f]

INTEGRATION: CWS dr61 (1.4.16); FILE MERGED 2008/05/19 12:24:02 dr 1.4.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [d1255ccc08371250d53e909e3209b0931cd4ddfb]

INTEGRATION: CWS dr61 (1.15.16); FILE MERGED 2008/05/19 12:24:02 dr 1.15.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [3da2ab85b821e2655467a78bae3a1ba51ee8f37f]

INTEGRATION: CWS dr61 (1.8.16); FILE MERGED 2008/05/19 12:24:02 dr 1.8.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [3450fda4d19b707f752412a7134f574826969825]

INTEGRATION: CWS dr61 (1.6.16); FILE MERGED 2008/05/19 12:24:02 dr 1.6.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [aad69214d3a720d7573f0d4921ebd45499c45a1b]

INTEGRATION: CWS dr61 (1.3.16); FILE MERGED 2008/05/19 12:24:02 dr 1.3.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [bfc4b25e4b004fb9551267c768221555baa2ccc3]

INTEGRATION: CWS dr61 (1.42.16); FILE MERGED 2008/05/19 12:24:02 dr 1.42.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [464c28082554895edd1fdfee1ce3a5454f6337de]

INTEGRATION: CWS dr61 (1.11.16); FILE MERGED 2008/05/19 12:24:02 dr 1.11.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [e800fe8d62ef0217b5496cc938eb0f2cb07511cc]

INTEGRATION: CWS dr61 (1.6.16); FILE MERGED 2008/05/19 12:24:01 dr 1.6.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [bb6bef7d2bddb57df16f262e9cba99d2cbd34787]

INTEGRATION: CWS dr61 (1.8.16); FILE MERGED 2008/06/24 09:38:31 dr 1.8.16.3: #i86465# write correct point counts in errorbar/trendline series objects to make XL2007SP1 happy 2008/05/22 11:43:12 dr 1.8.16.2: RESYNC: (1.8-1.9); FILE MERGED 2008/05/19 12:24:01 dr 1.8.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [e4c0b9f3dee9a5ff03c8e747c9af370764464c6a]

INTEGRATION: CWS dr61 (1.13.16); FILE MERGED 2008/05/19 12:24:01 dr 1.13.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [8bbcd9a6a60d9b96012c4aeb00233c44d255cfe8]

INTEGRATION: CWS dr61 (1.8.16); FILE MERGED 2008/05/19 12:24:01 dr 1.8.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [94e7758614b317cdca46e87a1692731fbbeda035]

INTEGRATION: CWS dr61 (1.50.16); FILE MERGED 2008/05/19 12:24:01 dr 1.50.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [605c30923bc792ef97005bc0cc921ac5a7797c00]

INTEGRATION: CWS dr61 (1.70.16); FILE MERGED 2008/05/19 12:24:01 dr 1.70.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [a4dc4b1fc05bbd2b12ee925122a520e10dcc5a54]

INTEGRATION: CWS dr61 (1.21.16); FILE MERGED 2008/05/19 12:24:01 dr 1.21.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [2b5ac24ebd923004852559ccf071f5302934d1f6]

INTEGRATION: CWS dr61 (1.18.16); FILE MERGED 2008/05/19 12:24:01 dr 1.18.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [8fd1b8f8395274ee8cc7c477edffe2e68565f2a9]

INTEGRATION: CWS dr61 (1.48.16); FILE MERGED 2008/05/19 12:24:01 dr 1.48.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [11d847acaaf1bd789d354c5681b9b6cf7e07495a]

INTEGRATION: CWS dr61 (1.4.16); FILE MERGED 2008/05/19 12:24:01 dr 1.4.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [63433df70e4f947fb317e2054cf1890ae67f632a]

INTEGRATION: CWS dr61 (1.23.16); FILE MERGED 2008/05/19 12:24:01 dr 1.23.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [f8d253182de3e04f3651671c1f4e8d0d005426d2]

INTEGRATION: CWS dr61 (1.31.16); FILE MERGED 2008/05/19 12:24:01 dr 1.31.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [bc621cf22c7dbe2b60f39db292caf646a34fc7bb]

INTEGRATION: CWS dr61 (1.27.16); FILE MERGED 2008/05/19 12:24:00 dr 1.27.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [bfd2a469651d9f6dd76a8e4e5a0b26054abb0e26]

INTEGRATION: CWS dr61 (1.9.66); FILE MERGED 2008/05/22 11:43:03 dr 1.9.66.3: RESYNC: (1.10-1.11); FILE MERGED 2008/04/23 12:21:57 dr 1.9.66.2: RESYNC: (1.9-1.10); FILE MERGED 2008/04/03 09:50:11 dr 1.9.66.1: #i86465# export of error bars with manual data source


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [44e5b13e66382204850bc5f472e6eeced086017a]

INTEGRATION: CWS dr61 (1.37.16); FILE MERGED 2008/05/19 12:24:00 dr 1.37.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [31cd74c94fa0acd1ece75dd82fd8d828b8a0829b]

INTEGRATION: CWS dr61 (1.18.16); FILE MERGED 2008/05/19 13:35:56 dr 1.18.16.1: #156167# create dummy pivot cache from deleted sheet data


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [e74777cf48a45077eab8eb88cbca31858699d377]

INTEGRATION: CWS dr61 (1.55.66); FILE MERGED 2008/04/23 12:21:48 dr 1.55.66.2: RESYNC: (1.55-1.56); FILE MERGED 2008/04/02 13:35:27 dr 1.55.66.1: #i85658# ignore pivot charts completely


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [ac8c39885ec73778aff59f495c9360ea204aed9d]

INTEGRATION: CWS dr61 (1.18.8); FILE MERGED 2008/05/28 12:40:45 dr 1.18.8.7: #i88264# pie rotation in 3d pie charts 2008/05/22 11:43:00 dr 1.18.8.6: RESYNC: (1.19-1.20); FILE MERGED 2008/04/23 12:21:44 dr 1.18.8.5: RESYNC: (1.18-1.19); FILE MERGED 2008/04/03 09:50:11 dr 1.18.8.4: #i86465# export of error bars with manual data source 2008/04/03 09:00:43 dr 1.18.8.3: #i86465# import of error bars with manual data source 2008/04/02 14:30:34 dr 1.18.8.2: #i71684# rotation direction in pie charts 2008/04/02 13:35:26 dr 1.18.8.1: #i85658# ignore pivot charts completely


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [a580d9e9d2cf1788df6c2a37fdbf6c6d2ef5aae9]

INTEGRATION: CWS dr61 (1.33.16); FILE MERGED 2008/05/19 12:24:00 dr 1.33.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [159b9dae76b6686b6b974e53f92ec62d0feef7db]

INTEGRATION: CWS dr61 (1.20.16); FILE MERGED 2008/05/19 12:24:00 dr 1.20.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [baf52f29f745f9336a3864e1b433a28687aeb57d]

INTEGRATION: CWS dr61 (1.10.16); FILE MERGED 2008/05/19 12:24:00 dr 1.10.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [3f4323679fab0a40aab5c3724091d0a226a460e0]

INTEGRATION: CWS dr61 (1.24.22); FILE MERGED 2008/04/23 12:21:54 dr 1.24.22.3: RESYNC: (1.24-1.25); FILE MERGED 2008/04/04 09:43:16 dr 1.24.22.2: #i86439# no more 'comments' allowed in formulas 2008/04/03 13:36:06 dr 1.24.22.1: #i86439# add parentheses needed for '~' range list operator


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [cfca9dbc1a102e41d06ace39e01b298fc1934761]

INTEGRATION: CWS dr61 (1.8.8); FILE MERGED 2008/06/24 09:38:31 dr 1.8.8.11: #i86465# write correct point counts in errorbar/trendline series objects to make XL2007SP1 happy 2008/06/18 07:51:50 dr 1.8.8.10: #i10000# mac warning 2008/05/28 12:40:45 dr 1.8.8.9: #i88264# pie rotation in 3d pie charts 2008/05/22 11:42:57 dr 1.8.8.8: RESYNC: (1.9-1.10); FILE MERGED 2008/04/23 12:21:51 dr 1.8.8.7: RESYNC: (1.8-1.9); FILE MERGED 2008/04/04 09:19:47 dr 1.8.8.6: #i87594# automatic categories broken 2008/04/04 09:08:52 dr 1.8.8.5: #i87594# automatic categories broken 2008/04/04 08:53:57 dr 1.8.8.4: #i85826# correct axis label position 2008/04/03 09:50:11 dr 1.8.8.3: #i86465# export of error bars with manual data source 2008/04/02 14:30:34 dr 1.8.8.2: #i71684# rotation direction in pie charts 2008/04/02 12:42:48 dr 1.8.8.1: #i87594# default for chart source links


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [46ba3237cc987381b4bd5cbc074f3058739abc64]

INTEGRATION: CWS dr61 (1.33.14); FILE MERGED 2008/06/17 15:54:02 dr 1.33.14.2: RESYNC: (1.33-1.34); FILE MERGED 2008/05/22 09:21:53 dr 1.33.14.1: #i88642# update doc info before saving


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [18817a0279ac16eeaebdd0063a5e2a19dbe725c5]

INTEGRATION: CWS dr61 (1.124.16); FILE MERGED 2008/05/28 14:25:31 dr 1.124.16.2: RESYNC: (1.124-1.125); FILE MERGED 2008/05/19 12:24:00 dr 1.124.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [a1d688bd65b21cb81c77a18b2b5579d2e90563d3]

INTEGRATION: CWS dr61 (1.26.16); FILE MERGED 2008/05/19 12:24:00 dr 1.26.16.1: #i10000# removed remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [e94f8baecd5afb9efe8828d4e27e6c592d244925]

INTEGRATION: CWS dr61 (1.5.16); FILE MERGED 2008/05/26 16:47:59 dr 1.5.16.1: remove remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [250e782d5fc3bb2426149e5a47113d3ac56c975d]

INTEGRATION: CWS dr61 (1.26.16); FILE MERGED 2008/05/21 11:56:54 dr 1.26.16.1: #i57772# Excel add-in function names for unknown language should fall-back to en-US, not to first entry of unordered list


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [363e760045c8cc39b1e8665f405e7011c33896ed]

INTEGRATION: CWS dr61 (1.7.16); FILE MERGED 2008/05/26 16:47:58 dr 1.7.16.1: remove remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [80dc843f143891915fb750c6ca7d7c8f00901b5a]

INTEGRATION: CWS dr61 (1.5.16); FILE MERGED 2008/05/26 16:47:58 dr 1.5.16.1: remove remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [d84cfbb49e447ffcef5ecbb63eaea02c57aeb22f]

INTEGRATION: CWS dr61 (1.11.16); FILE MERGED 2008/05/26 16:47:58 dr 1.11.16.1: remove remaining include guards


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [439607063747d52fea8e957d80e9ccaec3a49049]

INTEGRATION: CWS dr61 (1.5.78); FILE MERGED 2008/04/23 12:17:40 dr 1.5.78.2: RESYNC: (1.5-1.6); FILE MERGED 2008/04/01 14:58:29 dr 1.5.78.1: #i86308# unused methods, patch by cmc


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [b5871bd62ca55d6a74dc3773a7611aa9459ba67e]

INTEGRATION: CWS dr61 (1.14.2); FILE MERGED 2008/04/23 12:17:43 dr 1.14.2.2: RESYNC: (1.14-1.15); FILE MERGED 2008/04/01 14:58:29 dr 1.14.2.1: #i86308# unused methods, patch by cmc


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [6da75f317321cacdc7c9dc3ff2771ad2038b76e5]

INTEGRATION: CWS dr61 (1.32.78); FILE MERGED 2008/04/23 12:17:37 dr 1.32.78.2: RESYNC: (1.32-1.33); FILE MERGED 2008/04/01 14:56:33 dr 1.32.78.1: #i86308# unused methods, patch by cmc


2008-07-02  Rüdiger Timm  <rt@openoffice.org>  [70e5755c613a349c1c16b19d75d6a9f2a4db9f3f]

INTEGRATION: CWS dr61 (1.56.6); FILE MERGED 2008/04/23 12:17:34 dr 1.56.6.2: RESYNC: (1.56-1.57); FILE MERGED 2008/04/01 14:56:33 dr 1.56.6.1: #i86308# unused methods, patch by cmc


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [6c90d41ab5b8fa20e69b8e8211b27dfda6eabbee]

INTEGRATION: CWS dr62 (1.10.6); FILE MERGED 2008/06/17 15:17:54 dr 1.10.6.2: RESYNC: (1.10-1.11); FILE MERGED 2008/06/13 07:07:07 iha 1.10.6.1: #i82614# Copy sheet with scatter chart to new document may result in wrong data


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [b2777b2bf7d271750ece58e03f3c458fc2df9858]

INTEGRATION: CWS dr62 (1.15.6); FILE MERGED 2008/06/17 15:17:57 dr 1.15.6.2: RESYNC: (1.15-1.16); FILE MERGED 2008/06/13 07:08:07 iha 1.15.6.1: #i82614# Copy sheet with scatter chart to new document may result in wrong data


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [5c5f3e7268cb80202cb4145de6e1ba8b6a4d2f98]

INTEGRATION: CWS dr62 (1.25.54); FILE MERGED 2008/06/02 15:50:57 nn 1.25.54.1: #i80437# don't use document broadcast to notify sheet change in view


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [6874dae57b3f20b8f060b94cb1a4f97fa41d7b09]

INTEGRATION: CWS dr62 (1.67.48); FILE MERGED 2008/05/30 11:49:51 nn 1.67.48.1: #i85232# PaintArea: include area below cells


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [53e4727c3b588d68f03ba277aff5729e5d0996c2]

INTEGRATION: CWS dr62 (1.57.20); FILE MERGED 2008/06/16 14:06:46 iha 1.57.20.1: #i32899# PDF Export of a chart selection in calc is empty


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [8bf0d21c09ce25fa659d7c70949b8df06ab225a9]

INTEGRATION: CWS dr62 (1.95.12); FILE MERGED 2008/06/17 16:14:09 nn 1.95.12.2: #i86734# prefer STRING to FILE_LIST/FILE for pasting selection 2008/05/30 09:49:02 nn 1.95.12.1: #i84277# dont delete filter box while filling it


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [8fe7c3e57fb38a76bdaf4fb3329d212235ed9236]

INTEGRATION: CWS dr62 (1.34.50); FILE MERGED 2008/06/09 10:40:46 tbe 1.34.50.1: #i87703# text to columns fails with tab separator


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [11ef5f1646fe45f6d2f8fe27f24a953ada652517]

INTEGRATION: CWS dr62 (1.37.50); FILE MERGED 2008/06/02 15:50:57 nn 1.37.50.1: #i80437# don't use document broadcast to notify sheet change in view


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [b7e33136c0df2e53ebd3f3feb3936426687848ef]

INTEGRATION: CWS dr62 (1.67.52); FILE MERGED 2008/06/16 14:09:00 iha 1.67.52.1: #i32899# PDF Export of a chart selection in calc is empty


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [89c5dd27ff9a627e4d861b55b40502311380dd6e]

INTEGRATION: CWS dr62 (1.47.54); FILE MERGED 2008/06/06 11:28:51 tbe 1.47.54.1: #i84123# Missing helpID in Spreadsheet


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [54d531921d83e938d43588f150551e778fa33b66]

INTEGRATION: CWS dr62 (1.14.52); FILE MERGED 2008/06/16 14:04:58 iha 1.14.52.1: #i32899# PDF Export of a chart selection in calc is empty


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [2eb70d80c1d714ea3a86bee6b2ac57703fadf7ab]

INTEGRATION: CWS dr62 (1.5.54); FILE MERGED 2008/06/16 14:04:15 iha 1.5.54.1: #i32899# PDF Export of a chart selection in calc is empty


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [83d67a493c59d40f43c16f9bd1e790fd3727372d]

INTEGRATION: CWS dr62 (1.15.54); FILE MERGED 2008/06/06 16:44:58 nn 1.15.54.1: #i84726# correct exception specification


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [41ec56a72918ef60cfc131679874dd6f5080b58b]

INTEGRATION: CWS dr62 (1.28.54); FILE MERGED 2008/06/03 12:53:50 dr 1.28.54.1: #i67432# #i23602# performance with Unicode, text color


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [a177c56b76b99bdb7a1671b56d8290b854408f38]

INTEGRATION: CWS dr62 (1.42.54); FILE MERGED 2008/06/12 10:54:57 tbe 1.42.54.1: #i70916# [a11y] Text in spread sheet cells return the wrong extents


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [7a71e190de79d9076581b5e53df7e626df8bd78b]

INTEGRATION: CWS dr62 (1.22.54); FILE MERGED 2008/06/06 16:44:58 nn 1.22.54.1: #i84726# correct exception specification


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [c16800a550410dc9f6f88600420e960a1ed7d1ad]

INTEGRATION: CWS dr62 (1.13.20); FILE MERGED 2008/06/05 11:29:17 nn 1.13.20.1: #i77703# GetRangeFromString: fall back to parsing two addresses


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [70dd1b909b5d9bba0d63a8e1274f6255457f1206]

INTEGRATION: CWS dr62 (1.6.54); FILE MERGED 2008/06/16 14:03:31 iha 1.6.54.1: #i32899# PDF Export of a chart selection in calc is empty


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [e6b1a48bdbb0600b3bbb10a5fe126ae998c8a5bc]

INTEGRATION: CWS dr62 (1.25.12); FILE MERGED 2008/06/03 18:22:45 nn 1.25.12.1: #i50344# fix assertions with debug stl


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [de7c36ab0d4fe978a0d006c9a9cc2edcc1bd1ded]

INTEGRATION: CWS dr62 (1.9.12); FILE MERGED 2008/06/03 18:22:45 nn 1.9.12.1: #i50344# fix assertions with debug stl


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [99df690cdcd23dc216aafff80e1e65f7d0b1b809]

INTEGRATION: CWS dr62 (1.2.12); FILE MERGED 2008/06/03 18:21:47 nn 1.2.12.1: #i50344# allow TIME, TIMESTAMP in DataPilot from database


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [1f7c0200f46309f7851b4c7738e2e83cca7e2cfd]

INTEGRATION: CWS dr62 (1.42.54); FILE MERGED 2008/06/13 07:43:57 iha 1.42.54.1: #i82614# Copy sheet with scatter chart to new document may result in wrong data


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [83d7745e74f87e6cc9fa8c3cb3e0b1ea66c6699c]

INTEGRATION: CWS dr62 (1.33.20); FILE MERGED 2008/06/13 07:43:00 iha 1.33.20.1: #i82614# Copy sheet with scatter chart to new document may result in wrong data


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [f71e2d883fa9a01d29cf97098f6185e32f160e15]

INTEGRATION: CWS dr62 (1.12.54); FILE MERGED 2008/06/02 15:50:56 nn 1.12.54.1: #i80437# don't use document broadcast to notify sheet change in view


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [e2b004a390745212213bc5cdafcff2e81a770477]

INTEGRATION: CWS dr62 (1.62.54); FILE MERGED 2008/06/06 11:27:59 tbe 1.62.54.2: #i84123# Missing helpID in Spreadsheet 2008/06/02 15:50:56 nn 1.62.54.1: #i80437# don't use document broadcast to notify sheet change in view


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [1cd53a2438000a7a5bc6a0fd9e7ab7324e753f6b]

INTEGRATION: CWS dr62 (1.5.54); FILE MERGED 2008/06/16 14:02:37 iha 1.5.54.1: #i32899# PDF Export of a chart selection in calc is empty


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [e452b601b67c08f18f5e1ac863bb33f5b10b3d95]

INTEGRATION: CWS dr62 (1.112.18); FILE MERGED 2008/06/13 07:41:41 iha 1.112.18.1: #i82614# Copy sheet with scatter chart to new document may result in wrong data


2008-07-01  Vladimir Glazounov  <vg@openoffice.org>  [4ed94e5beae931dc07316879edcef81b0e8e9d7b]

INTEGRATION: CWS dr62 (1.2.6); FILE MERGED 2008/05/30 13:18:49 nn 1.2.6.1: #i90004# remove unused functions


2008-06-25  Rüdiger Timm  <rt@openoffice.org>  [d919b405a1136a9080df9addb88b274f16f5fdc3]

#i90895# For now undo change made by CWS hr51 to get this compiled by .Net2003 compiler again. Has of course to be cleaned up later on (see issue i91042).


2008-06-24  Kurt Zenker  <kz@openoffice.org>  [1c6635a8fc5a2cf65a75aeaf6d7d0d1bcc0a7725]

INTEGRATION: CWS obo30 (1.2.18); FILE MERGED 2008/06/23 15:18:05 obo 1.2.18.2: RESYNC: (1.2-1.3); FILE MERGED 2008/06/03 12:55:46 obo 1.2.18.1: #i90100# ambigous Reference during ENABLE_PCH build


2008-06-20  Rüdiger Timm  <rt@openoffice.org>  [b679dd8cb4edd07d4614c0dd61871a2625999500]

#i90470# Avoid sal_Int32 -> SCCOL warnings (patch by pjanic).


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [1d45b9987bd65b0b15f32aefc1a8aa48cd2a4016]

INTEGRATION: CWS hr51 (1.22.40); FILE MERGED 2008/06/06 15:04:17 hr 1.22.40.1: #i88947#: std namespace


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [aaf7ca1511ff339b6f055b3d78c48d5bc3a5094c]

INTEGRATION: CWS hr51 (1.14.42); FILE MERGED 2008/06/06 15:04:16 hr 1.14.42.1: #i88947#: std namespace


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [fbd069b5ebee673fc604eedc68ef2c2ef2a31878]

INTEGRATION: CWS rptchart02 (1.5.4); FILE MERGED 2008/04/16 06:36:11 oj 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2008/03/12 09:01:26 oj 1.5.4.1: register InternalDataProvider as service to use it as delegatee


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [1f8196f42a4a43ff90ea03211d0f6f4356b75dc7]

INTEGRATION: CWS rptchart02 (1.13.22); FILE MERGED 2008/04/16 06:36:08 oj 1.13.22.2: RESYNC: (1.13-1.14); FILE MERGED 2008/04/15 12:50:19 oj 1.13.22.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [ee9dccf8d60de04f5dc8a824aafc1da8d14ce58b]

INTEGRATION: CWS rptchart02 (1.5.58); FILE MERGED 2008/04/16 06:36:05 oj 1.5.58.2: RESYNC: (1.5-1.6); FILE MERGED 2008/04/15 12:50:19 oj 1.5.58.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [99d49ef71630fa3c3cd1cc719855923384d9dcf8]

INTEGRATION: CWS rptchart02 (1.4.4); FILE MERGED 2008/04/16 06:36:01 oj 1.4.4.3: RESYNC: (1.4-1.6); FILE MERGED 2008/04/15 12:50:19 oj 1.4.4.2: use comphelper copyProperties 2008/03/12 09:01:26 oj 1.4.4.1: register InternalDataProvider as service to use it as delegatee


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [8779420329ff408b0febd81f40c452fd234c799d]

INTEGRATION: CWS rptchart02 (1.5.60); FILE MERGED 2008/04/16 06:35:58 oj 1.5.60.2: RESYNC: (1.5-1.6); FILE MERGED 2008/04/15 12:50:19 oj 1.5.60.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [a22ef456622e7c298b05e3a441ababa6eddaca2a]

INTEGRATION: CWS rptchart02 (1.2.116); FILE MERGED 2008/04/16 06:35:55 oj 1.2.116.2: RESYNC: (1.2-1.3); FILE MERGED 2008/04/15 12:50:19 oj 1.2.116.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [0ca7777ed0aa78a301ab18c0005d7d75aa52588f]

INTEGRATION: CWS rptchart02 (1.4.4); FILE MERGED 2008/04/16 06:35:52 oj 1.4.4.2: RESYNC: (1.4-1.5); FILE MERGED 2008/04/15 12:50:19 oj 1.4.4.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [1e7a7584325f3035db2730f102001080f73db304]

INTEGRATION: CWS rptchart02 (1.9.2); FILE MERGED 2008/04/17 14:34:56 oj 1.9.2.1: #i88295# use correct type for default values


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [a3ca4f533d2363d9261e73911b7a57ca61462908]

INTEGRATION: CWS rptchart02 (1.18.50); FILE MERGED 2008/04/16 06:35:49 oj 1.18.50.2: RESYNC: (1.18-1.20); FILE MERGED 2008/04/15 12:50:18 oj 1.18.50.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [d08d842773f38798c026db45f4af85d6a21d0bf7]

INTEGRATION: CWS rptchart02 (1.5.58); FILE MERGED 2008/04/16 06:35:46 oj 1.5.58.2: RESYNC: (1.5-1.6); FILE MERGED 2008/04/15 12:50:18 oj 1.5.58.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [5774ffae04bce20c8b3183957533f0732a550f21]

INTEGRATION: CWS rptchart02 (1.5.4); FILE MERGED 2008/04/16 06:35:43 oj 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2008/03/12 09:01:25 oj 1.5.4.1: register InternalDataProvider as service to use it as delegatee


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [da7c573bed5b27a9a66641cddf38350977c5e207]

INTEGRATION: CWS rptchart02 (1.7.4); FILE MERGED 2008/04/16 06:35:39 oj 1.7.4.2: RESYNC: (1.7-1.8); FILE MERGED 2008/04/15 12:50:18 oj 1.7.4.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [44b408bd21b585e3292a0a7e14c7d3e6d09c7e8d]

INTEGRATION: CWS rptchart02 (1.3.84); FILE MERGED 2008/04/16 06:35:36 oj 1.3.84.2: RESYNC: (1.3-1.4); FILE MERGED 2008/04/15 12:50:18 oj 1.3.84.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [4993c90cb7305117ee8e120cb24a6dbb474ba6a3]

INTEGRATION: CWS rptchart02 (1.3.84); FILE MERGED 2008/04/16 06:35:33 oj 1.3.84.2: RESYNC: (1.3-1.4); FILE MERGED 2008/04/15 12:50:18 oj 1.3.84.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [40fe9a84ba25b8f51c512cdf0ec7982f1dbe02b8]

INTEGRATION: CWS rptchart02 (1.28.4); FILE MERGED 2008/04/16 06:35:30 oj 1.28.4.2: RESYNC: (1.28-1.29); FILE MERGED 2008/04/15 12:50:18 oj 1.28.4.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [cf331487daf89f3284c92ca801d9b883204deacf]

INTEGRATION: CWS rptchart02 (1.3.2); FILE MERGED 2008/04/18 07:13:16 oj 1.3.2.1: #i86850# new member in genericunodialog


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [05fff263c7b7fc4df6eae2ce906207542eb62c08]

INTEGRATION: CWS rptchart02 (1.5.4); FILE MERGED 2008/04/16 06:35:27 oj 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2008/04/15 12:50:17 oj 1.5.4.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [0e9ae66db5f2d6a07907807cf9f59c76111f7820]

INTEGRATION: CWS rptchart02 (1.5.4); FILE MERGED 2008/04/16 06:35:24 oj 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2008/04/15 12:50:17 oj 1.5.4.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [c803f4827c83a122af438983125045654d5c974e]

INTEGRATION: CWS rptchart02 (1.4.4); FILE MERGED 2008/04/16 06:35:20 oj 1.4.4.2: RESYNC: (1.4-1.5); FILE MERGED 2008/04/15 12:50:17 oj 1.4.4.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [b06fba41bcb4ffd5ebd7a315b39a23418a90fc28]

INTEGRATION: CWS rptchart02 (1.6.4); FILE MERGED 2008/04/16 06:35:17 oj 1.6.4.2: RESYNC: (1.6-1.7); FILE MERGED 2008/04/15 12:50:17 oj 1.6.4.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [d3d9090d59611223dc70ea8b8a573c53634223cc]

INTEGRATION: CWS rptchart02 (1.7.84); FILE MERGED 2008/04/16 06:35:11 oj 1.7.84.2: RESYNC: (1.7-1.8); FILE MERGED 2008/04/15 12:50:17 oj 1.7.84.1: use comphelper copyProperties


2008-06-16  Rüdiger Timm  <rt@openoffice.org>  [9f37a516baf9eca5fb1d33c308ea0a77bf9b0a9e]

INTEGRATION: CWS rptchart02 (1.3.84); FILE MERGED 2008/04/16 06:35:08 oj 1.3.84.2: RESYNC: (1.3-1.4); FILE MERGED 2008/04/15 12:50:17 oj 1.3.84.1: use comphelper copyProperties


2008-06-13  Rüdiger Timm  <rt@openoffice.org>  [f7c3876c7986e278958bdf9dc6c481fd18f75db1]

INTEGRATION: CWS qadev32 (1.7.98); FILE MERGED 2008/06/04 12:20:58 cn 1.7.98.3: #i87216# add issue 2008/05/13 19:44:36 cn 1.7.98.2: #i87389# update lists 2008/04/16 18:11:27 cn 1.7.98.1: #i87216# update lists


2008-06-13  Rüdiger Timm  <rt@openoffice.org>  [cd03663ede384ff5045ed8c6939e9b03b7f304f5]

INTEGRATION: CWS qadev32 (1.9.14); FILE MERGED 2008/06/04 12:20:58 cn 1.9.14.4: #i87216# add issue 2008/05/13 19:44:36 cn 1.9.14.3: #i87389# update lists 2008/05/05 10:53:40 cn 1.9.14.2: #i87216# update lists 2008/04/16 18:11:27 cn 1.9.14.1: #i87216# update lists


2008-06-13  Rüdiger Timm  <rt@openoffice.org>  [363c87d289c92952186c605e21fac6044e318a1d]

INTEGRATION: CWS qadev32 (1.4.40); FILE MERGED 2008/03/18 21:08:04 cn 1.4.40.1: #i87216# update lists with issues


2008-06-13  Rüdiger Timm  <rt@openoffice.org>  [b17266329145684bd6058cd44c810329b1137d47]

INTEGRATION: CWS qadev32 (1.3.40); FILE MERGED 2008/05/05 10:52:53 cn 1.3.40.3: #i87216# update lists 2008/03/20 16:09:27 cn 1.3.40.2: #i87216# update lists with issues 2008/03/18 21:08:04 cn 1.3.40.1: #i87216# update lists with issues


2008-06-13  Rüdiger Timm  <rt@openoffice.org>  [790365f14417a3e30c9a0495922d22f4895841ef]

INTEGRATION: CWS chart28_DEV300 (1.6.82.1.10); FILE MERGED 2008/06/03 17:37:38 iha 1.6.82.1.10.1: #90071#,#88894# crash in clipping algorithm


2008-06-09  Ivo Hinkelmann  <ihi@openoffice.org>  [eb39901a2d6c016cd50614ccb8c29e5c0f6d8356]

INTEGRATION: CWS odff03 (1.30.20); FILE MERGED 2008/05/08 22:21:44 er 1.30.20.2: RESYNC: (1.30-1.31); FILE MERGED 2008/05/08 19:38:15 er 1.30.20.1: #i71158# GCD and LCD convert to integer and handle 0, but not negative values; according to ODFF


2008-06-09  Ivo Hinkelmann  <ihi@openoffice.org>  [7d7bfafb0baf1a491b6e36cbb3904e62b5f1f9fe]

INTEGRATION: CWS odff03 (1.55.20); FILE MERGED 2008/05/08 22:21:13 er 1.55.20.2: RESYNC: (1.55-1.56); FILE MERGED 2008/04/10 18:01:56 er 1.55.20.1: #i86643# make COUNT ignore errors and COUNTA count errors; patch contributed by <lvyue>


2008-06-09  Ivo Hinkelmann  <ihi@openoffice.org>  [23047119e166b760fdf34c5c03cb69f915603be5]

INTEGRATION: CWS odff03 (1.21.20); FILE MERGED 2008/05/08 22:21:25 er 1.21.20.2: RESYNC: (1.21-1.22); FILE MERGED 2008/04/11 17:16:16 er 1.21.20.1: #i87726# use new GetSortArray() method in all places; patch from <lvyue>


2008-06-09  Ivo Hinkelmann  <ihi@openoffice.org>  [d35f5c2c8450879ae35533e874b5bdc1af1699d5]

INTEGRATION: CWS odff03 (1.35.20); FILE MERGED 2008/05/08 22:21:35 er 1.35.20.3: RESYNC: (1.35-1.36); FILE MERGED 2008/04/24 19:21:10 er 1.35.20.2: #i15090# better algorithm for RATE to also return values for roots < -1, plus accept non-integer PayType other than 0 or 1; patch from <regina> 2008/04/11 19:27:56 er 1.35.20.1: #i84934# DAYS360: for swapped dates in US-algo follow the meaningless Excel approach for interoperability; patch from <terrye>


2008-06-09  Ivo Hinkelmann  <ihi@openoffice.org>  [2d13c1a5eafb2db9c3c213a04d6601b89f99c946]

INTEGRATION: CWS odff03 (1.56.20); FILE MERGED 2008/05/09 07:43:50 er 1.56.20.8: sal_Int32/sal_Int8 type mismatch 2008/05/08 22:20:57 er 1.56.20.7: RESYNC: (1.56-1.57); FILE MERGED 2008/04/23 21:16:20 er 1.56.20.6: #i74245# LOOKUP in columns if range is wider than tall and handling of result array respectively range 2008/04/11 16:56:30 er 1.56.20.5: #i66930# make INDEX correctly return a vector of an area; patch from <lvyue> 2008/04/11 16:05:04 er 1.56.20.4: #i78781# make INDEX use Row parameter as Column argument if a row vector was passed and no other arguments were given; patch from <lvyue> 2008/04/10 18:19:31 er 1.56.20.3: #i86721# make N return 0 for string arguments as well; patch contributed by <lvyue> 2008/04/10 18:01:56 er 1.56.20.2: #i86643# make COUNT ignore errors and COUNTA count errors; patch contributed by <lvyue> 2008/04/10 15:52:14 er 1.56.20.1: #i87855# GetStVarParams: pop svString and break case to not generate error; patch contributed by <lvyue>


2008-06-09  Ivo Hinkelmann  <ihi@openoffice.org>  [5f0572ca9c0c08afa7d5fd7aef430cc0aa85831b]

INTEGRATION: CWS odff03 (1.32.20); FILE MERGED 2008/05/08 22:21:48 er 1.32.20.3: RESYNC: (1.32-1.33); FILE MERGED 2008/04/24 19:21:10 er 1.32.20.2: #i15090# better algorithm for RATE to also return values for roots < -1, plus accept non-integer PayType other than 0 or 1; patch from <regina> 2008/04/11 17:18:42 er 1.32.20.1: #i87726# remove old GetSortArray() declaration


2008-06-09  Ivo Hinkelmann  <ihi@openoffice.org>  [9608952c7284f45d850e84a47e2a75a7ffbf23f5]

INTEGRATION: CWS odff03 (1.20.22); FILE MERGED 2008/05/08 22:20:26 er 1.20.22.2: RESYNC: (1.20-1.21); FILE MERGED 2008/04/10 16:05:24 er 1.20.22.1: #i86171# ScValueIterator::GetThis: formula cell with text result is 0.0 if bTextAsZero; patch contributed by <lvyue>


2008-06-09  Ivo Hinkelmann  <ihi@openoffice.org>  [c87820cdaa7527c3589d856354f3d05098094446]

INTEGRATION: CWS impress141 (1.32.58); FILE MERGED 2008/04/21 09:31:56 cl 1.32.58.2: RESYNC: (1.32-1.33); FILE MERGED 2008/04/15 14:58:25 sj 1.32.58.1: #i67371# added possibility to disable/enable previews when exporting to ppt,excel and or word


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [1d510d319b1c477a3ab8c8ca18fb05f7a139c519]

INTEGRATION: CWS chart25 (1.30.8); FILE MERGED 2008/05/13 13:14:18 iha 1.30.8.1: display hidden cells?


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [8c065a8e72be21c66166908a263cde4cbbcefff2]

INTEGRATION: CWS chart25 (1.44.8); FILE MERGED 2008/05/07 15:18:58 iha 1.44.8.2: #i26497# Tickmarks not at the correct position for bar and column charts 2008/05/06 11:14:17 iha 1.44.8.1: #i76053# avoid superfluous notifications for changes on hidden draw page


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [d4ee4f701079965ff25cf49b73bc159b92cac129]

INTEGRATION: CWS chart25 (1.7.10); FILE MERGED 2008/05/07 15:22:05 iha 1.7.10.1: #i26497# Tickmarks not at the correct position for bar and column charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [e687758f5d7791c38ee49de47b91e2eb114b94d2]

INTEGRATION: CWS chart25 (1.10.10); FILE MERGED 2008/05/07 15:21:35 iha 1.10.10.1: #i26497# Tickmarks not at the correct position for bar and column charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [24b0431ca0b25814a41ea44350e565cd09087e1e]

INTEGRATION: CWS chart25 (1.6.10); FILE MERGED 2008/05/07 15:20:39 iha 1.6.10.1: #i26497# Tickmarks not at the correct position for bar and column charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [d3ad3c8a167af4698d8bef1b67b98de93a5be69a]

INTEGRATION: CWS chart25 (1.13.10); FILE MERGED 2008/05/07 15:20:53 iha 1.13.10.1: #i26497# Tickmarks not at the correct position for bar and column charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [19cfdf6cab824ef50f6250a8ba9181b8b1c22d02]

INTEGRATION: CWS chart25 (1.11.10); FILE MERGED 2008/05/07 15:17:54 iha 1.11.10.1: #i26497# Tickmarks not at the correct position for bar and column charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [f2a88ffe35e66bc730b781f7638f5b9037bd7910]

INTEGRATION: CWS chart25 (1.7.10); FILE MERGED 2008/05/13 08:07:07 iha 1.7.10.1: corrected property name Hidden->IsHidden


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [36d98d58db784ed7723c0e5c0e7f9beb80d4e60c]

INTEGRATION: CWS chart25 (1.7.10); FILE MERGED 2008/05/06 10:46:56 iha 1.7.10.1: #i80933# Selection of Grid with keyboard is not visible


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [8fc25503b71cab376cb7c4703e1f8efa99aa3ae8]

INTEGRATION: CWS chart25 (1.17.8); FILE MERGED 2008/05/14 17:06:01 iha 1.17.8.1: #i85803# save and load stacking mode correctly for column and line charts - (don't stack the lines)


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [5b9de3b3e3c0ce550c3030ae046206454b62b29e]

INTEGRATION: CWS chart25 (1.10.10); FILE MERGED 2008/04/25 14:44:57 iha 1.10.10.1: #i88742# make default lines a bit stronger for line charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [79ab9ed984a98681b2499286f02b7e41abca39d1]

INTEGRATION: CWS chart25 (1.20.8); FILE MERGED 2008/05/07 15:16:46 iha 1.20.8.1: #i26497# Tickmarks not at the correct position for bar and column charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [3679921da454db43b303200a78ffd65d2a016089]

INTEGRATION: CWS chart25 (1.6.10); FILE MERGED 2008/05/13 08:05:23 iha 1.6.10.1: corrected property name Hidden->IsHidden


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [ec13b9a01713ac45ece11d90875989be77e295fe]

INTEGRATION: CWS chart25 (1.13.10); FILE MERGED 2008/04/25 15:01:28 iha 1.13.10.1: #i88742# make default lines a bit stronger for line charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [8a8df0076de78de4c3de137542ce04cf23d0bf7f]

INTEGRATION: CWS chart25 (1.9.10); FILE MERGED 2008/04/25 15:00:05 iha 1.9.10.1: #i88742# make default lines a bit stronger for line charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [e187c5dcd8caee97889b1bd660323e16a5fa2626]

INTEGRATION: CWS chart25 (1.18.10); FILE MERGED 2008/04/25 14:47:56 iha 1.18.10.1: #i88742# make default lines a bit stronger for line charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [fc3c7e7353bbbe84b20ae5f001727875c369bd04]

INTEGRATION: CWS chart25 (1.10.10); FILE MERGED 2008/05/08 14:54:58 iha 1.10.10.1: #i88950# implement XDocumentPropertiesSupplierformattings thus newer donut charts are loaded correctly again


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [7d260f7985ede3ae96c5651ad63e3202c4ac86b6]

INTEGRATION: CWS chart25 (1.15.10); FILE MERGED 2008/05/08 14:55:14 iha 1.15.10.1: #i88950# implement XDocumentPropertiesSupplierformattings thus newer donut charts are loaded correctly again


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [96708418d5f39e2f408672e35b5d184d8c6fe045]

INTEGRATION: CWS chart25 (1.8.8); FILE MERGED 2008/05/14 17:05:20 iha 1.8.8.1: #i85803# save and load stacking mode correctly for column and line charts - (don't stack the lines)


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [0b6e70ccb3bbe5efe937c95ab254ede58ecaa25c]

INTEGRATION: CWS chart25 (1.6.10); FILE MERGED 2008/04/25 14:44:15 iha 1.6.10.1: #i88742# make default lines a bit stronger for line charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [893e12cfc8ee2d22d53ad71773c4ca8029a2fc7d]

INTEGRATION: CWS chart25 (1.14.8); FILE MERGED 2008/05/07 15:16:16 iha 1.14.8.1: #i26497# Tickmarks not at the correct position for bar and column charts


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [89b208f930d9e1717afcee71b234419d9a416d2d]

INTEGRATION: CWS chart25 (1.28.8); FILE MERGED 2008/04/24 12:46:27 iha 1.28.8.2: RESYNC: (1.28-1.30); FILE MERGED 2008/04/18 07:38:26 iha 1.28.8.1: #i67368# don't show red selection handles for not rotatable objects


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [f8dfe9a906032346b5bc764c1c707a5a9977c42b]

INTEGRATION: CWS chart25 (1.9.86); FILE MERGED 2008/04/24 12:46:31 iha 1.9.86.2: RESYNC: (1.9-1.11); FILE MERGED 2008/03/14 17:01:21 iha 1.9.86.1: #i26490# Base Point for resize does not work correct


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [926053cbe6eff66478b498bce790407c202d1417]

INTEGRATION: CWS chart25 (1.8.8); FILE MERGED 2008/04/24 12:46:42 iha 1.8.8.2: RESYNC: (1.8-1.9); FILE MERGED 2008/04/10 09:11:50 iha 1.8.8.1: #i26572# allow to set an explicit text for the font preview


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [0a2275c1c233bdb64da640694b3cd22bd9a61edd]

INTEGRATION: CWS chart25 (1.13.24); FILE MERGED 2008/04/24 12:46:39 iha 1.13.24.2: RESYNC: (1.13-1.14); FILE MERGED 2008/04/10 09:16:21 iha 1.13.24.1: #i26572# set an explicit text for the font preview


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [7b47ad782b30a37652f11c87caffea050034493e]

INTEGRATION: CWS chart25 (1.11.86); FILE MERGED 2008/04/24 12:46:35 iha 1.11.86.2: RESYNC: (1.11-1.13); FILE MERGED 2008/04/10 09:15:56 iha 1.11.86.1: #i26572# set an explicit text for the font preview


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [537e604c68f64846b22ca48bfbd8ce59c7e49d46]

INTEGRATION: CWS chart25 (1.7.10); FILE MERGED 2008/04/25 12:37:31 iha 1.7.10.1: #i88729# some help ids for error bars are missing


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [25209db92e526544214c64cbef0e127c504bbf44]

INTEGRATION: CWS chart25 (1.18.10); FILE MERGED 2008/05/06 11:15:09 iha 1.18.10.1: #i76053# avoid superfluous notifications for changes on hidden draw page


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [1a6951d81811d8c8d5649c5de2be3dad3b9f4229]

INTEGRATION: CWS chart25 (1.4.10); FILE MERGED 2008/04/25 12:40:11 iha 1.4.10.1: #i88729# some help ids for error bars are missing


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [b5338a886d268b1439326b660dfd6aa44854a1c6]

INTEGRATION: CWS chart25 (1.6.10); FILE MERGED 2008/04/25 12:39:08 iha 1.6.10.1: #i88729# some help ids for error bars are missing


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [e939b699f110561a563986aac3bae840711296af]

INTEGRATION: CWS chart25 (1.9.10); FILE MERGED 2008/05/14 17:07:28 iha 1.9.10.1: #i85803# save and load stacking mode correctly for column and line charts - (don't stack the lines)


2008-06-06  Rüdiger Timm  <rt@openoffice.org>  [34cccf749fbc753e10ca39c5ed280c7a065f8c9a]

INTEGRATION: CWS chart25 (1.7.10); FILE MERGED 2008/05/14 17:06:52 iha 1.7.10.1: #i85803# save and load stacking mode correctly for column and line charts - (don't stack the lines)


2008-06-04  Vladimir Glazounov  <vg@openoffice.org>  [d35964efbe369f093a1b0e001a92b02300033a37]

INTEGRATION: CWS touchpoints01 (1.32.70); FILE MERGED 2008/06/02 14:08:45 pb 1.32.70.1: fix: #i89981# command .uno:MoreDictionaries added


2008-06-04  Vladimir Glazounov  <vg@openoffice.org>  [0bf12184312ee6b81093d5a372a9165149ea4637]

INTEGRATION: CWS odfversionedexport (1.68.24); FILE MERGED 2008/04/30 15:12:50 iha 1.68.24.1: #i88889# ODF: Omit export of OFD 1.2 properties when 1.1 is set


2008-05-30  Oliver Bolte  <obo@openoffice.org>  [8b952881297bd9e1f1332c2197468f14abcbbfb1]

INTEGRATION: CWS aquabmpfix01 (1.6.14); FILE MERGED 2008/05/09 12:40:13 hdu 1.6.14.1: #i88759# chart2: enable antialiasing, nothing depends on exact pixel-boundaries


2008-05-30  Oliver Bolte  <obo@openoffice.org>  [02f7ef3ed3cef6d82da1e8f03f95e94b8d15cd91]

INTEGRATION: CWS aquavcl07 (1.73.48); FILE MERGED 2008/05/09 09:01:49 pl 1.73.48.3: RESYNC: (1.74-1.75); FILE MERGED 2008/04/17 05:35:44 pl 1.73.48.2: RESYNC: (1.73-1.74); FILE MERGED 2008/04/15 17:04:11 pl 1.73.48.1: #i86432# remove unused dependency on printer capabilities


2008-05-30  Oliver Bolte  <obo@openoffice.org>  [185246b47f3f035665c7e1c0489d0c5296066ac4]

INTEGRATION: CWS aquavcl07 (1.43.48); FILE MERGED 2008/04/17 05:35:48 pl 1.43.48.2: RESYNC: (1.43-1.44); FILE MERGED 2008/04/15 17:04:10 pl 1.43.48.1: #i86432# remove unused dependency on printer capabilities


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [b2944b91144c847c1b98d82345d685f33f532c70]

INTEGRATION: CWS calcodfversion (1.131.38); FILE MERGED 2008/04/18 12:48:56 er 1.131.38.2: RESYNC: (1.131-1.132); FILE MERGED 2008/04/09 21:08:42 er 1.131.38.1: #i88113# handle XML_NAMESPACE_OF with GRAM_ODFF


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [bfaedd17a288c2cf1eaeabc1abc7ddc4ec3ad9fd]

INTEGRATION: CWS calcodfversion (1.211.38); FILE MERGED 2008/04/28 20:24:01 er 1.211.38.3: #i88113# set storage grammar according to ODF version 2008/04/18 12:48:36 er 1.211.38.2: RESYNC: (1.211-1.212); FILE MERGED 2008/04/09 21:08:42 er 1.211.38.1: #i88113# handle XML_NAMESPACE_OF with GRAM_ODFF


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [2ce728145470f9aa68efcb8f1588a5e4e304053f]

INTEGRATION: CWS calcodfversion (1.30.6); FILE MERGED 2008/04/28 20:24:01 er 1.30.6.1: #i88113# set storage grammar according to ODF version


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [69554bc85029a8de76598702ca2b855fb4c8ed58]

INTEGRATION: CWS calcodfversion (1.50.38); FILE MERGED 2008/04/18 12:48:21 er 1.50.38.2: RESYNC: (1.50-1.51); FILE MERGED 2008/04/09 21:08:42 er 1.50.38.1: #i88113# handle XML_NAMESPACE_OF with GRAM_ODFF


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [5bbe7ce90670b3ec9cc3d54189ce5e436d7c6a01]

INTEGRATION: CWS calcodfversion (1.32.38); FILE MERGED 2008/04/18 12:48:42 er 1.32.38.2: RESYNC: (1.32-1.33); FILE MERGED 2008/04/09 21:08:42 er 1.32.38.1: #i88113# handle XML_NAMESPACE_OF with GRAM_ODFF


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [d53e64667c1881d50eefd5ed7998ba015432f85b]

INTEGRATION: CWS calcodfversion (1.76.6); FILE MERGED 2008/04/30 20:07:46 er 1.76.6.1: #i88113# dbg_call_generateMappingDiff, debugger call generating a semicolon separated list with name differences between PODF and ODFF to stdout


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [117e3eca0f1cb4a75b89b3b85ae574fc79239e7f]

INTEGRATION: CWS calcodfversion (1.3.6); FILE MERGED 2008/04/28 20:44:36 er 1.3.6.1: #i88113# switch GRAM_STORAGE_DEFAULT to GRAM_ODFF


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [ecdc3dbedb0af24402571d67d2b8c0ba5c9fc62a]

INTEGRATION: CWS calcshare4 (1.73.44); FILE MERGED 2008/05/22 07:54:29 tbe 1.73.44.1: #i87331# [Collaboration] Typo in shared access dialog


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [7310721bb71eaa7e9922dd2a76b749f7fc8a4935]

INTEGRATION: CWS calcshare4 (1.3.44); FILE MERGED 2008/05/22 07:55:31 tbe 1.3.44.1: #i87331# [Collaboration] Typo in shared access dialog


2008-05-28  Oliver Bolte  <obo@openoffice.org>  [a101adf190670eb64d6b92cb40a4f6654609d104]

INTEGRATION: CWS calcshare4 (1.5.42); FILE MERGED 2008/05/22 07:55:10 tbe 1.5.42.1: #i87331# [Collaboration] Typo in shared access dialog


2008-05-23  Kurt Zenker  <kz@openoffice.org>  [5315ff8e81899acc3b1fa82e38553ae99e984915]

#i10000# warnings fixed


2008-05-23  Rüdiger Timm  <rt@openoffice.org>  [ac840b72d92c0ad16637bba66ea7067d2665e26b]

#i89824# Initialize variables to avoid warning.


2008-05-22  Kurt Zenker  <kz@openoffice.org>  [7c56e17fd371d7e6179a4b8ad34194a860862b9f]

#i10000# warnings fixed


2008-05-22  Kurt Zenker  <kz@openoffice.org>  [f90b10d2ef6e3517158f4634f714442fd6bff289]

#i10000# warnings fixed


2008-05-21  Vladimir Glazounov  <vg@openoffice.org>  [09185756bd63d4a2bed00009292943d06874ae92]

new version for OOH680


2008-05-21  Vladimir Glazounov  <vg@openoffice.org>  [2d84b2d54ec4c79796433875de0d468864c882f7]

new version for OOH680


2008-05-21  Vladimir Glazounov  <vg@openoffice.org>  [34794ea1d571823cb81e71e617a27ac1e427bfdd]

new version for OOH680


2008-05-21  Vladimir Glazounov  <vg@openoffice.org>  [0acb755dc93a324605a952d3c251d185f0a5c299]

#i10000# warning fixed


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [15b063ff49810170d76cf664ce78849f92dca3d8]

INTEGRATION: CWS l10nfix24 (1.4.20); FILE MERGED 2008/05/19 16:12:48 ihi 1.4.20.1: #i89642# transex3 macro stringlist bug


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [31b5b8d4105f02475ec587f2085e141d3772d5c8]

INTEGRATION: CWS ab51 (1.124.28); FILE MERGED 2008/05/06 15:56:31 ab 1.124.28.1: #i88690# Support option to load Excel VBA code executable


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [f9e167df0878a36201630383420b2489c8fad794]

INTEGRATION: CWS koheidatapilot01 (1.5.50); FILE MERGED 2008/04/17 20:34:29 kohei 1.5.50.1: added XDataPilotTable2 interface.


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [b111936094b57da134f0e9c68f35069b159c8cd4]

INTEGRATION: CWS koheidatapilot01 (1.85.36); FILE MERGED 2008/04/25 20:59:44 kohei 1.85.36.12: RESYNC: (1.92-1.94); FILE MERGED 2008/04/21 03:07:59 kohei 1.85.36.11: code cleanup. 2008/03/12 18:02:00 kohei 1.85.36.10: RESYNC: (1.91-1.92); FILE MERGED 2008/02/25 14:47:39 kohei 1.85.36.9: RESYNC: (1.88-1.91); FILE MERGED 2008/01/04 03:45:58 kohei 1.85.36.8: RESYNC: (1.87-1.88); FILE MERGED 2007/12/07 23:16:12 kohei 1.85.36.7: reorganized code to avoid changing parts that didn't change their semantics. 2007/12/06 01:51:27 kohei 1.85.36.6: brought it back to a functional state for the first time after the resync (minus the date format issue). 2007/12/05 00:25:15 kohei 1.85.36.5: got the sc module to compile after the resync.  there are still a few issues to be resolved to get it fully functional again. 2007/12/04 16:51:20 kohei 1.85.36.4: RESYNC: (1.85-1.87); FILE MERGED 2007/12/04 06:06:27 kohei 1.85.36.3: more code change to totally replace ScDPPositionData with its UNO equivalent & some more code cleanups. 2007/12/04 04:29:01 kohei 1.85.36.2: some API method re-name & associated changes. 2007/10/29 17:44:41 kohei 1.85.36.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [e9f77604af947466030735e28196d3ba30978029]

INTEGRATION: CWS koheidatapilot01 (1.13.202); FILE MERGED 2008/04/25 20:59:48 kohei 1.13.202.8: RESYNC: (1.16-1.18); FILE MERGED 2008/02/25 14:47:44 kohei 1.13.202.7: RESYNC: (1.15-1.16); FILE MERGED 2007/12/06 06:40:28 kohei 1.13.202.6: properly format the drill-down sheet per data source format & removed unused method. 2007/12/06 01:51:27 kohei 1.13.202.5: brought it back to a functional state for the first time after the resync (minus the date format issue). 2007/12/05 00:25:15 kohei 1.13.202.4: got the sc module to compile after the resync.  there are still a few issues to be resolved to get it fully functional again. 2007/12/04 16:51:24 kohei 1.13.202.3: RESYNC: (1.13-1.15); FILE MERGED 2007/12/04 06:06:27 kohei 1.13.202.2: more code change to totally replace ScDPPositionData with its UNO equivalent & some more code cleanups. 2007/10/29 17:44:41 kohei 1.13.202.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [5b487429395c9c81facb9628dd45dd45233581b2]

INTEGRATION: CWS koheidatapilot01 (1.46.172); FILE MERGED 2008/04/25 20:59:37 kohei 1.46.172.6: RESYNC: (1.49-1.51); FILE MERGED 2008/04/21 03:07:58 kohei 1.46.172.5: code cleanup. 2008/02/25 14:47:32 kohei 1.46.172.4: RESYNC: (1.48-1.49); FILE MERGED 2007/12/05 00:25:15 kohei 1.46.172.3: got the sc module to compile after the resync.  there are still a few issues to be resolved to get it fully functional again. 2007/12/04 16:51:13 kohei 1.46.172.2: RESYNC: (1.46-1.48); FILE MERGED 2007/10/29 17:44:41 kohei 1.46.172.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [eb46cbd365cc58edb7cd54efda76ec1c29f96260]

INTEGRATION: CWS koheidatapilot01 (1.19.202); FILE MERGED 2008/04/25 20:59:54 kohei 1.19.202.11: RESYNC: (1.20-1.21); FILE MERGED 2008/04/19 18:40:53 kohei 1.19.202.10: do the same for getPositionData() call & throw a RuntimeException instead on NULL pointer condition. 2008/04/19 18:38:16 kohei 1.19.202.9: check for NULL pointer to prevent crash in case getDrillDownData() called on an cell address outside of any datapilot output. 2008/04/18 15:07:38 kohei 1.19.202.8: throw IllegalArgumentException on invalid range type. 2007/12/06 01:51:27 kohei 1.19.202.7: brought it back to a functional state for the first time after the resync (minus the date format issue). 2007/12/04 16:51:29 kohei 1.19.202.6: RESYNC: (1.19-1.20); FILE MERGED 2007/12/04 04:29:00 kohei 1.19.202.5: some API method re-name & associated changes. 2007/11/30 00:13:26 kohei 1.19.202.4: implemented insertDrillDownSheet UNO method. 2007/11/08 18:03:20 kohei 1.19.202.3: implemented UNO's getPositionData method & expose dimension counts via DataSource properties. 2007/11/03 18:09:28 kohei 1.19.202.2: implemented getOutputRangeByType() and fixed interface querying issue with XDataPilotTable2. 2007/10/29 17:44:41 kohei 1.19.202.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [f38338328920200521e88e83aafe4f6784b08ac0]

INTEGRATION: CWS koheidatapilot01 (1.9.20); FILE MERGED 2008/04/25 20:59:32 kohei 1.9.20.3: RESYNC: (1.10-1.11); FILE MERGED 2008/01/04 03:45:52 kohei 1.9.20.2: RESYNC: (1.9-1.10); FILE MERGED 2007/12/05 00:25:15 kohei 1.9.20.1: got the sc module to compile after the resync.  there are still a few issues to be resolved to get it fully functional again.


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [e0667fe080fde6fca7ad6c3759b89acf2ef5e154]

INTEGRATION: CWS koheidatapilot01 (1.21.202); FILE MERGED 2008/04/25 21:00:07 kohei 1.21.202.4: RESYNC: (1.23-1.24); FILE MERGED 2008/03/12 18:02:06 kohei 1.21.202.3: RESYNC: (1.22-1.23); FILE MERGED 2008/02/25 14:47:46 kohei 1.21.202.2: RESYNC: (1.21-1.22); FILE MERGED 2007/10/29 17:44:40 kohei 1.21.202.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [1f6a0b5f37f38c29d7ef630aae7bee6db07e61fc]

INTEGRATION: CWS koheidatapilot01 (1.20.42); FILE MERGED 2008/04/25 21:00:13 kohei 1.20.42.15: RESYNC: (1.23-1.24); FILE MERGED 2008/04/24 23:26:45 kohei 1.20.42.14: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/17 13:11:10 kohei 1.20.42.13: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2008/02/25 14:47:51 kohei 1.20.42.12: RESYNC: (1.22-1.23); FILE MERGED 2007/12/06 16:40:33 kohei 1.20.42.11: put the names of new ScDPSource properties into unonames.hxx and use the defined names instead. 2007/12/06 07:06:15 kohei 1.20.42.10: removed all previously invisible code. 2007/12/06 06:40:28 kohei 1.20.42.9: properly format the drill-down sheet per data source format & removed unused method. 2007/12/05 00:25:15 kohei 1.20.42.8: got the sc module to compile after the resync.  there are still a few issues to be resolved to get it fully functional again. 2007/12/04 16:51:39 kohei 1.20.42.7: RESYNC: (1.20-1.22); FILE MERGED 2007/11/19 22:20:29 kohei 1.20.42.6: commented out the fprintf statements. 2007/11/08 18:03:19 kohei 1.20.42.5: implemented UNO's getPositionData method & expose dimension counts via DataSource properties. 2007/11/07 04:28:31 kohei 1.20.42.4: use array position and keep the original set of arrays instead of making copies for each call. 2007/11/07 03:12:54 kohei 1.20.42.3: We still need to call InitFrom for referenced items, more refactoring and in-line comments, and more const keyword uses for read-only parameters (makes it easier to understand code). 2007/10/31 19:58:44 kohei 1.20.42.2: modified all functions that are called during result calculation so that they can take vectors instead of pointer arrays. 2007/10/29 17:44:40 kohei 1.20.42.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [5a037b69675e7736c4103735dcfd9ececf9c1db5]

INTEGRATION: CWS koheidatapilot01 (1.11.200); FILE MERGED 2008/04/25 21:00:31 kohei 1.11.200.11: RESYNC: (1.11-1.12); FILE MERGED 2008/04/21 03:07:58 kohei 1.11.200.10: code cleanup. 2007/12/06 07:06:15 kohei 1.11.200.9: removed all previously invisible code. 2007/11/19 22:21:08 kohei 1.11.200.8: removed fprintf statement. 2007/11/09 02:12:09 kohei 1.11.200.7: renamed one method & some minor code change to make more use of cache table. 2007/11/07 04:28:31 kohei 1.11.200.6: use array position and keep the original set of arrays instead of making copies for each call. 2007/11/07 03:12:54 kohei 1.11.200.5: We still need to call InitFrom for referenced items, more refactoring and in-line comments, and more const keyword uses for read-only parameters (makes it easier to understand code). 2007/11/05 22:11:45 kohei 1.11.200.4: more const pointers when pointers point to read-only instances. 2007/11/05 21:57:52 kohei 1.11.200.3: made pointers to ScDPResultData const where appropriate. 2007/10/31 19:58:44 kohei 1.11.200.2: modified all functions that are called during result calculation so that they can take vectors instead of pointer arrays. 2007/10/29 17:44:40 kohei 1.11.200.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [26c7ff27f66cab7de8e35c6c044c9e37d30a6fc2]

INTEGRATION: CWS koheidatapilot01 (1.12.202); FILE MERGED 2008/04/25 21:00:25 kohei 1.12.202.10: RESYNC: (1.12-1.13); FILE MERGED 2008/04/24 23:26:45 kohei 1.12.202.9: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/21 03:07:58 kohei 1.12.202.8: code cleanup. 2008/04/17 13:11:10 kohei 1.12.202.7: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2008/04/15 15:32:14 kohei 1.12.202.6: get the "Identify categories" option to really work.  The previous commit didn't quite do the right thing. 2007/12/06 07:06:15 kohei 1.12.202.5: removed all previously invisible code. 2007/11/07 04:28:31 kohei 1.12.202.4: use array position and keep the original set of arrays instead of making copies for each call. 2007/11/07 03:12:54 kohei 1.12.202.3: We still need to call InitFrom for referenced items, more refactoring and in-line comments, and more const keyword uses for read-only parameters (makes it easier to understand code). 2007/10/31 19:58:44 kohei 1.12.202.2: modified all functions that are called during result calculation so that they can take vectors instead of pointer arrays. 2007/10/29 17:44:40 kohei 1.12.202.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [373d1ead8521cd35ce70c787d5628039a6ca1329]

INTEGRATION: CWS koheidatapilot01 (1.9.202); FILE MERGED 2008/04/25 21:00:22 kohei 1.9.202.10: RESYNC: (1.9-1.10); FILE MERGED 2008/04/24 23:26:45 kohei 1.9.202.9: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/17 13:11:10 kohei 1.9.202.8: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2008/04/15 15:32:13 kohei 1.9.202.7: get the "Identify categories" option to really work.  The previous commit didn't quite do the right thing. 2008/04/15 03:41:18 kohei 1.9.202.6: get the "Identify categories" option to work. 2008/04/15 00:01:11 kohei 1.9.202.5: get the "Ignore empty rows" option to work. 2007/12/06 07:06:15 kohei 1.9.202.4: removed all previously invisible code. 2007/11/29 19:34:41 kohei 1.9.202.3: fixed the regression where table didn't rebuild cache table when it's refreshed. 2007/11/09 02:12:09 kohei 1.9.202.2: renamed one method & some minor code change to make more use of cache table. 2007/10/29 17:44:40 kohei 1.9.202.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [5b69e1b2627d9362519876cbdafed3deabdb426c]

INTEGRATION: CWS koheidatapilot01 (1.12.202); FILE MERGED 2008/04/25 21:00:34 kohei 1.12.202.7: RESYNC: (1.12-1.13); FILE MERGED 2008/04/24 23:26:45 kohei 1.12.202.6: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/21 03:07:58 kohei 1.12.202.5: code cleanup. 2008/04/17 13:11:10 kohei 1.12.202.4: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2007/12/06 07:06:15 kohei 1.12.202.3: removed all previously invisible code. 2007/11/29 19:34:41 kohei 1.12.202.2: fixed the regression where table didn't rebuild cache table when it's refreshed. 2007/10/29 17:44:40 kohei 1.12.202.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [12402018bd0f64c9b9bfbc3954c55f0a6e1aafbf]

INTEGRATION: CWS koheidatapilot01 (1.15.112); FILE MERGED 2008/04/25 20:59:59 kohei 1.15.112.14: RESYNC: (1.16-1.17); FILE MERGED 2008/04/21 01:21:22 kohei 1.15.112.13: fixed incorrect drill-down data insertion. (i#88473). 2008/04/18 20:27:35 kohei 1.15.112.12: skip the first row of the column header area because it is always used to store the column header buttons, use OTHER position type for those that are within the table but do not belong to either RESULT, COLUMN_HEADER or ROW_HEADER. 2008/04/18 18:16:49 kohei 1.15.112.11: fixed the way I calculated the column/row header areas & more error checking to prevent crashes. 2008/02/01 05:28:12 kohei 1.15.112.10: * fixed a crash when double-clicking on the bottom row of an empty datapilot table. * removed unused variables & printf statements. 2007/12/05 00:25:14 kohei 1.15.112.9: got the sc module to compile after the resync.  there are still a few issues to be resolved to get it fully functional again. 2007/12/04 16:51:34 kohei 1.15.112.8: RESYNC: (1.15-1.16); FILE MERGED 2007/12/04 06:06:26 kohei 1.15.112.7: more code change to totally replace ScDPPositionData with its UNO equivalent & some more code cleanups. 2007/12/04 04:29:00 kohei 1.15.112.6: some API method re-name & associated changes. 2007/11/19 22:22:55 kohei 1.15.112.5: switched from using if statement to using switch statement for position data handling. 2007/11/09 02:12:09 kohei 1.15.112.4: renamed one method & some minor code change to make more use of cache table. 2007/11/08 18:03:19 kohei 1.15.112.3: implemented UNO's getPositionData method & expose dimension counts via DataSource properties. 2007/11/03 18:09:28 kohei 1.15.112.2: implemented getOutputRangeByType() and fixed interface querying issue with XDataPilotTable2. 2007/10/29 17:44:40 kohei 1.15.112.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [f520e101f4fad09600fd9b19d3451837664967f8]

INTEGRATION: CWS koheidatapilot01 (1.21.112); FILE MERGED 2008/04/25 21:00:18 kohei 1.21.112.7: RESYNC: (1.22-1.23); FILE MERGED 2007/12/04 06:06:26 kohei 1.21.112.6: more code change to totally replace ScDPPositionData with its UNO equivalent & some more code cleanups. 2007/11/09 02:12:09 kohei 1.21.112.5: renamed one method & some minor code change to make more use of cache table. 2007/11/08 18:03:19 kohei 1.21.112.4: implemented UNO's getPositionData method & expose dimension counts via DataSource properties. 2007/11/05 19:40:31 kohei 1.21.112.3: Don't show drill-down data when a cell outside the data field area is activated. 2007/11/03 18:09:28 kohei 1.21.112.2: implemented getOutputRangeByType() and fixed interface querying issue with XDataPilotTable2. 2007/10/29 17:44:40 kohei 1.21.112.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [71223957a8186bbfb14a007d2e4a40bebd8e4f4d]

INTEGRATION: CWS koheidatapilot01 (1.7.202); FILE MERGED 2008/04/25 21:00:03 kohei 1.7.202.6: RESYNC: (1.7-1.8); FILE MERGED 2008/04/24 23:26:45 kohei 1.7.202.5: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/21 03:07:58 kohei 1.7.202.4: code cleanup. 2008/04/17 13:11:10 kohei 1.7.202.3: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2007/12/06 07:06:15 kohei 1.7.202.2: removed all previously invisible code. 2007/10/29 17:44:40 kohei 1.7.202.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [87c78c96bc0bfd843eb70ea5903a0ae8c943dd08]

INTEGRATION: CWS koheidatapilot01 (1.1.2); FILE ADDED 2008/05/20 12:50:23 kz 1.1.2.13: updated license header 2008/04/25 00:02:15 kohei 1.1.2.12: removed unused code. 2008/04/24 23:26:45 kohei 1.1.2.11: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/17 13:11:10 kohei 1.1.2.10: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2008/04/16 00:10:03 kohei 1.1.2.9: fixed a bug where drill-down fails when the 'Identify categories' option is used. 2008/04/15 23:02:10 kohei 1.1.2.8: allow numerical comparison of field labels when the row data is numerical. 2008/04/15 15:32:13 kohei 1.1.2.7: get the "Identify categories" option to really work.  The previous commit didn't quite do the right thing. 2008/04/15 03:41:18 kohei 1.1.2.6: get the "Identify categories" option to work. 2008/04/15 00:01:11 kohei 1.1.2.5: get the "Ignore empty rows" option to work. 2007/10/31 19:58:43 kohei 1.1.2.4: modified all functions that are called during result calculation so that they can take vectors instead of pointer arrays. 2007/10/29 19:38:11 kohei 1.1.2.3: fixed a crash when the database providing source data does not exist. 2007/10/29 18:55:39 kohei 1.1.2.2: fixed a case when the in-sheet data source table starts with row > 1. 2007/10/29 17:44:39 kohei 1.1.2.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [4852e6460c978d68811bc3dae725741ba21011cd]

INTEGRATION: CWS koheidatapilot01 (1.74.106); FILE MERGED 2008/04/25 20:59:07 kohei 1.74.106.4: RESYNC: (1.79-1.81); FILE MERGED 2008/03/12 18:01:48 kohei 1.74.106.3: RESYNC: (1.76-1.79); FILE MERGED 2008/02/25 14:47:28 kohei 1.74.106.2: RESYNC: (1.74-1.76); FILE MERGED 2007/12/06 16:40:33 kohei 1.74.106.1: put the names of new ScDPSource properties into unonames.hxx and use the defined names instead.


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [7640886e1e0018aa74447c8621761df7e6f1317f]

INTEGRATION: CWS koheidatapilot01 (1.8.216); FILE MERGED 2008/04/25 20:59:19 kohei 1.8.216.5: RESYNC: (1.10-1.11); FILE MERGED 2007/12/06 06:41:12 kohei 1.8.216.4: properly format the drill-down sheet per data source format & removed unused method. 2007/12/04 16:51:06 kohei 1.8.216.3: RESYNC: (1.8-1.10); FILE MERGED 2007/11/07 03:12:54 kohei 1.8.216.2: We still need to call InitFrom for referenced items, more refactoring and in-line comments, and more const keyword uses for read-only parameters (makes it easier to understand code). 2007/10/29 17:44:39 kohei 1.8.216.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [e81ee576beb66fd61b03c8f1184847ef2e76e774]

INTEGRATION: CWS koheidatapilot01 (1.7.202); FILE MERGED 2008/04/25 20:59:04 kohei 1.7.202.8: RESYNC: (1.7-1.8); FILE MERGED 2008/04/21 03:07:57 kohei 1.7.202.7: code cleanup. 2007/12/06 07:06:15 kohei 1.7.202.6: removed all previously invisible code. 2007/11/07 04:28:31 kohei 1.7.202.5: use array position and keep the original set of arrays instead of making copies for each call. 2007/11/07 03:12:53 kohei 1.7.202.4: We still need to call InitFrom for referenced items, more refactoring and in-line comments, and more const keyword uses for read-only parameters (makes it easier to understand code). 2007/11/05 22:11:45 kohei 1.7.202.3: more const pointers when pointers point to read-only instances. 2007/11/05 21:57:52 kohei 1.7.202.2: made pointers to ScDPResultData const where appropriate. 2007/10/31 19:58:43 kohei 1.7.202.1: modified all functions that are called during result calculation so that they can take vectors instead of pointer arrays.


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [038129dd71d808213889fc82e2e93cca7b712a1e]

INTEGRATION: CWS koheidatapilot01 (1.6.216); FILE MERGED 2008/04/25 20:59:00 kohei 1.6.216.7: RESYNC: (1.6-1.7); FILE MERGED 2008/04/25 00:02:15 kohei 1.6.216.6: removed unused code. 2008/04/24 23:26:38 kohei 1.6.216.5: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/17 13:10:39 kohei 1.6.216.4: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2008/04/15 15:32:06 kohei 1.6.216.3: get the "Identify categories" option to really work.  The previous commit didn't quite do the right thing. 2007/12/06 07:06:15 kohei 1.6.216.2: removed all previously invisible code. 2007/10/29 17:44:39 kohei 1.6.216.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [adab6917fa243259901b72e381c0a130cc5429ce]

INTEGRATION: CWS koheidatapilot01 (1.4.570); FILE MERGED 2008/04/25 20:59:25 kohei 1.4.570.6: RESYNC: (1.4-1.5); FILE MERGED 2008/04/24 23:26:38 kohei 1.4.570.5: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/17 13:10:39 kohei 1.4.570.4: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2008/04/15 15:32:05 kohei 1.4.570.3: get the "Identify categories" option to really work.  The previous commit didn't quite do the right thing. 2007/12/06 07:06:15 kohei 1.4.570.2: removed all previously invisible code. 2007/10/29 17:44:39 kohei 1.4.570.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [027622fbfe6d43bbd1fecaaaaa5b9888d1648e3a]

INTEGRATION: CWS koheidatapilot01 (1.3.570); FILE MERGED 2008/04/25 20:59:10 kohei 1.3.570.5: RESYNC: (1.3-1.4); FILE MERGED 2008/04/24 23:26:38 kohei 1.3.570.4: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/17 13:10:39 kohei 1.3.570.3: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2007/12/06 07:06:15 kohei 1.3.570.2: removed all previously invisible code. 2007/10/29 17:44:39 kohei 1.3.570.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [0e0f3d10268568fde17929370dcda287fdb43bfb]

INTEGRATION: CWS koheidatapilot01 (1.8.112); FILE MERGED 2008/04/25 20:59:13 kohei 1.8.112.7: RESYNC: (1.9-1.10); FILE MERGED 2007/12/04 06:06:26 kohei 1.8.112.6: more code change to totally replace ScDPPositionData with its UNO equivalent & some more code cleanups. 2007/12/04 04:29:00 kohei 1.8.112.5: some API method re-name & associated changes. 2007/11/09 02:12:08 kohei 1.8.112.4: renamed one method & some minor code change to make more use of cache table. 2007/11/08 18:03:19 kohei 1.8.112.3: implemented UNO's getPositionData method & expose dimension counts via DataSource properties. 2007/11/03 18:09:28 kohei 1.8.112.2: implemented getOutputRangeByType() and fixed interface querying issue with XDataPilotTable2. 2007/10/29 17:44:39 kohei 1.8.112.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [6af407459660d1ebe3c0b51f6b1d23d3a762270b]

INTEGRATION: CWS koheidatapilot01 (1.12.112); FILE MERGED 2008/04/25 20:59:22 kohei 1.12.112.7: RESYNC: (1.13-1.14); FILE MERGED 2007/12/04 16:51:09 kohei 1.12.112.6: RESYNC: (1.12-1.13); FILE MERGED 2007/12/04 06:06:26 kohei 1.12.112.5: more code change to totally replace ScDPPositionData with its UNO equivalent & some more code cleanups. 2007/11/08 18:03:19 kohei 1.12.112.4: implemented UNO's getPositionData method & expose dimension counts via DataSource properties. 2007/11/05 19:40:30 kohei 1.12.112.3: Don't show drill-down data when a cell outside the data field area is activated. 2007/11/03 18:09:28 kohei 1.12.112.2: implemented getOutputRangeByType() and fixed interface querying issue with XDataPilotTable2. 2007/10/29 17:44:39 kohei 1.12.112.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [a69b19e2067a6513371077822af9b1597b089658]

INTEGRATION: CWS koheidatapilot01 (1.4.570); FILE MERGED 2008/04/25 20:59:16 kohei 1.4.570.5: RESYNC: (1.4-1.5); FILE MERGED 2008/04/24 23:26:38 kohei 1.4.570.4: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/17 13:10:39 kohei 1.4.570.3: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2007/12/06 07:06:14 kohei 1.4.570.2: removed all previously invisible code. 2007/10/29 17:44:39 kohei 1.4.570.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [9d7f0edff16c1f3d331b1426fcfcc514c6f93cd2]

INTEGRATION: CWS koheidatapilot01 (1.1.2); FILE ADDED 2008/05/20 12:50:23 kz 1.1.2.11: updated license header 2008/04/25 00:19:03 kohei 1.1.2.10: added more comments. 2008/04/25 00:02:15 kohei 1.1.2.9: removed unused code. 2008/04/24 23:26:38 kohei 1.1.2.8: * fixed a regression on page field filtering by the empty string value. * fixed an incorrect drill-down table with number groups (i88531). * moved the shared string storage out of ScDPCacheTable to make it more generic. 2008/04/20 02:46:57 kohei 1.1.2.7: ScDPItemData is a struct not a class. 2008/04/17 13:10:39 kohei 1.1.2.6: Used ScDPItemData to store cell values to allow numerical comparison where appropriate.  Also fixed the regression involving drill-down on group names. 2008/04/15 23:02:02 kohei 1.1.2.5: allow numerical comparison of field labels when the row data is numerical. 2008/04/15 15:32:05 kohei 1.1.2.4: get the "Identify categories" option to really work.  The previous commit didn't quite do the right thing. 2008/04/15 03:41:12 kohei 1.1.2.3: get the "Identify categories" option to work. 2008/04/15 00:01:04 kohei 1.1.2.2: get the "Ignore empty rows" option to work. 2007/10/29 17:44:39 kohei 1.1.2.1: initial checkin


2008-05-20  Kurt Zenker  <kz@openoffice.org>  [58d86dc63962ffe7a1b8809f6340c119847908e7]

INTEGRATION: CWS koheidatapilot01 (1.9.508); FILE MERGED 2008/04/25 20:59:29 kohei 1.9.508.6: RESYNC: (1.9-1.10); FILE MERGED 2008/04/18 15:07:06 kohei 1.9.508.5: throw IllegalArgumentException on invalid range type. 2007/11/30 00:13:25 kohei 1.9.508.4: implemented insertDrillDownSheet UNO method. 2007/11/08 18:03:19 kohei 1.9.508.3: implemented UNO's getPositionData method & expose dimension counts via DataSource properties. 2007/11/03 18:09:28 kohei 1.9.508.2: implemented getOutputRangeByType() and fixed interface querying issue with XDataPilotTable2. 2007/10/29 17:44:39 kohei 1.9.508.1: initial checkin


2008-05-16  Vladimir Glazounov  <vg@openoffice.org>  [981e13103a857d7e62dc413b1763f457672e6511]

#100000# added crnrdlg.obj to EXCEPTIONSFILES


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [140ccb43a283371daee71c0b435b351630cdbe01]

#100000#


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [aa27a981193438afd7f4bada7b152fe28bbb9e67]

#100000# fix for clones CWS problem


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [6116154351f75f2fba72ea33ce791030ccef8b42]

INTEGRATION: CWS chart26_DEV300 (1.5.130); FILE MERGED 2008/04/23 19:20:26 iha 1.5.130.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [79d041ce73984245df8f63290fc098dfc8be0353]

INTEGRATION: CWS chart26_DEV300 (1.2.130); FILE MERGED 2008/04/23 19:23:00 iha 1.2.130.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [1f0e2e803a9c1d349dc5e994f2f7b92182ff87cc]

INTEGRATION: CWS chart26_DEV300 (1.3.98); FILE MERGED 2008/04/23 19:18:19 iha 1.3.98.8: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation 2008/04/23 08:10:26 iha 1.3.98.7: #i72994# simpler access to 3D settings 2008/04/18 15:28:17 iha 1.3.98.6: #i72994# simpler access to 3D settings 2008/04/18 15:25:10 iha 1.3.98.5: #i72994# corrected angle conversion 2008/04/17 19:11:21 iha 1.3.98.4: #i72994# correct horizontal and vertical rotation in case right-angled-axes is off 2008/04/09 08:12:30 iha 1.3.98.3: #i72994# simpler access to 3D settings 2008/04/08 15:54:47 iha 1.3.98.2: #i72994# simpler access to 3D settings 2008/04/07 15:49:17 iha 1.3.98.1: #i72994# simpler access to 3D settings - joined from CWS xmlfilter04


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [a9736f3bf56fe6f0da2ef8a9f33ac0736030f76a]

INTEGRATION: CWS chart26_DEV300 (1.19.20.1.6); FILE MERGED 2008/04/09 08:13:58 iha 1.19.20.1.6.3: #i72994# simpler access to 3D settings 2008/04/08 15:56:40 iha 1.19.20.1.6.2: #i72994# simpler access to 3D settings 2008/04/07 15:47:41 iha 1.19.20.1.6.1: #i72994# simpler access to 3D settings - joined from CWS xmlfilter04


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [b5257b4e4e5eafe051c2a82a2cc24ddd4ede6086]

INTEGRATION: CWS chart26_DEV300 (1.12.74); FILE MERGED 2008/04/09 08:13:21 iha 1.12.74.3: #i72994# simpler access to 3D settings 2008/04/08 15:56:02 iha 1.12.74.2: #i72994# simpler access to 3D settings 2008/04/07 15:46:24 iha 1.12.74.1: #i72994# simpler access to 3D settings - joined from CWS xmlfilter04


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [5463887a68e027a969cdce2aab47ea1662a0e6a0]

INTEGRATION: CWS chart26_DEV300 (1.2.110); FILE MERGED 2008/04/23 19:17:35 iha 1.2.110.5: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation 2008/04/18 15:27:41 iha 1.2.110.4: #i72994# simpler access to 3D settings 2008/04/09 08:11:40 iha 1.2.110.3: #i72994# simpler access to 3D settings 2008/04/08 15:54:12 iha 1.2.110.2: #i72994# simpler access to 3D settings 2008/04/07 15:48:41 iha 1.2.110.1: #i72994# simpler access to 3D settings - joined from CWS xmlfilter04


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [e5253530f4ea279f735ac23649ce06fe916ddd68]

INTEGRATION: CWS chart26_DEV300 (1.5.96); FILE MERGED 2008/04/09 08:36:05 iha 1.5.96.1: #155569# avoid crash


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [1b23f6201475c572b5439a84c0b1d63020345b03]

INTEGRATION: CWS chart26_DEV300 (1.5.36); FILE MERGED 2008/04/09 08:15:04 iha 1.5.36.2: #i72994# simpler access to 3D settings 2008/04/08 15:57:13 iha 1.5.36.1: #i72994# simpler access to 3D settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [da48dfd3d9fe93e05e058e9ded33e6fe043fcf72]

INTEGRATION: CWS chart26_DEV300 (1.11.20.1.6); FILE MERGED 2008/04/09 08:15:44 iha 1.11.20.1.6.3: #i72994# simpler access to 3D settings 2008/04/08 15:57:35 iha 1.11.20.1.6.2: #i72994# simpler access to 3D settings 2008/04/07 15:59:21 iha 1.11.20.1.6.1: #i72994# simpler access to 3D settings - joined from CWS xmlfilter04


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [78210809bd635471dda1f014144d678d14dcdcf2]

INTEGRATION: CWS chart26_DEV300 (1.61.4.1.4); FILE MERGED 2008/04/16 19:52:20 er 1.61.4.1.4.1: #i87128# sanitize view settings positions when loading documents that exceed max cols/rows


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [7e6c6083c9d9500c9edd1959480920478b331a8b]

INTEGRATION: CWS chart26_DEV300 (1.16.72.1.6); FILE MERGED 2008/04/15 14:07:59 dr 1.16.72.1.6.2: #i72994# light settings, more fine tuning 2008/04/15 10:39:06 dr 1.16.72.1.6.1: #i72994# import/export chart 3d view settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [64b8d206a9af85508f06c0039bba41940c9b1831]

INTEGRATION: CWS chart26_DEV300 (1.41.6.1.6); FILE MERGED 2008/04/23 19:21:20 iha 1.41.6.1.6.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [3ebd6a5cde3ec7067d79c2127599fa72c40029b3]

INTEGRATION: CWS chart26_DEV300 (1.21.8.1.6); FILE MERGED 2008/04/15 09:03:31 iha 1.21.8.1.6.1: #88075 wrong percentage display


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [d50b76b64dd3d89112ce5d265113a4baa2dc5620]

INTEGRATION: CWS chart26_DEV300 (1.16.98); FILE MERGED 2008/04/24 09:53:00 iha 1.16.98.2: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation 2008/04/23 19:19:54 iha 1.16.98.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [077a0fc4ba70ddbb321f6fb7e9ac443eb375ddd4]

INTEGRATION: CWS chart26_DEV300 (1.39.8.1.6); FILE MERGED 2008/04/15 09:04:54 iha 1.39.8.1.6.1: #88075 wrong percentage display


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [63e0e55415530bd4eb2ab8cee9adc10a6cf416be]

INTEGRATION: CWS chart26_DEV300 (1.9.98); FILE MERGED 2008/04/23 19:22:09 iha 1.9.98.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [9372de8c95882c95925271d2833b4ee65c313340]

INTEGRATION: CWS chart26_DEV300 (1.6.130); FILE MERGED 2008/04/23 19:26:13 iha 1.6.130.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [f6cc18c3a81efb6f066ace043b7c6e933ddde15c]

INTEGRATION: CWS chart26_DEV300 (1.7.130); FILE MERGED 2008/04/23 19:24:20 iha 1.7.130.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [614eccdaf392b3dbf3209ca1502a976a4678401d]

INTEGRATION: CWS chart26_DEV300 (1.5.130); FILE MERGED 2008/04/23 19:27:24 iha 1.5.130.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [b035d9be60513ab1f3997e3a58dc684434fdfff7]

INTEGRATION: CWS chart26_DEV300 (1.9.96); FILE MERGED 2008/04/23 20:41:25 iha 1.9.96.2: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation 2008/04/23 19:28:25 iha 1.9.96.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [988c2a83df2416525099f76da663e5a22173f784]

INTEGRATION: CWS chart26_DEV300 (1.2.130); FILE MERGED 2008/04/23 19:23:29 iha 1.2.130.1: #i72994# good automatic placement of walls, grid lines and axes labels dependent on 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [f1046a6d85419dd524ba8f4d50decc18da369d67]

INTEGRATION: CWS chart26_DEV300 (1.14.18); FILE MERGED 2008/04/08 15:59:16 iha 1.14.18.1: #i72994# simpler access to 3D settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [07c27be5ffc3c549cc0cb50630df6f58fbcebb36]

INTEGRATION: CWS chart26_DEV300 (1.3.110); FILE MERGED 2008/04/23 19:41:31 iha 1.3.110.1: #i72994# correct 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [a1f7e87f29c9e2f29d8f77da487b20b8554f96e2]

INTEGRATION: CWS chart26_DEV300 (1.4.98); FILE MERGED 2008/04/23 19:41:39 iha 1.4.98.1: #i72994# correct 3D rotation


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [01b2e837b56b1ebe98e79844f0b857e560498e85]

INTEGRATION: CWS chart26_DEV300 (1.5.20); FILE MERGED 2008/04/09 08:18:32 iha 1.5.20.2: #i72994# simpler access to 3D settings 2008/04/08 16:02:31 iha 1.5.20.1: #i72994# simpler access to 3D settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [4e8ddad488a33b313257fd196895f0000f925d33]

INTEGRATION: CWS chart26_DEV300 (1.10.72.1.6); FILE MERGED 2008/04/15 10:41:53 dr 1.10.72.1.6.1: #i72994# import/export chart 3d view settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [9b22107dd563000fe2232e134ccce73a83f4fe6b]

INTEGRATION: CWS chart26_DEV300 (1.9.158.1.6); FILE MERGED 2008/04/15 10:41:53 dr 1.9.158.1.6.1: #i72994# import/export chart 3d view settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [4a628b3b78fa312e27841e41f86058877f38c8fe]

INTEGRATION: CWS chart26_DEV300 (1.3.158.1.6); FILE MERGED 2008/04/15 10:41:53 dr 1.3.158.1.6.1: #i72994# import/export chart 3d view settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [227865e67839caf302b21bc6e91d09de0f78ce9d]

INTEGRATION: CWS chart26_DEV300 (1.11.138.1.6); FILE MERGED 2008/04/15 10:39:07 dr 1.11.138.1.6.1: #i72994# import/export chart 3d view settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [f2b104f8cd9c75351e233b63825945b1202f4a1a]

INTEGRATION: CWS chart26_DEV300 (1.8.210.1.6); FILE MERGED 2008/04/15 10:39:07 dr 1.8.210.1.6.1: #i72994# import/export chart 3d view settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [55ca168f60441937fc20a540f55d50c5fade9afa]

INTEGRATION: CWS chart26_DEV300 (1.5.72.1.6); FILE MERGED 2008/04/15 14:07:59 dr 1.5.72.1.6.2: #i72994# light settings, more fine tuning 2008/04/15 10:39:06 dr 1.5.72.1.6.1: #i72994# import/export chart 3d view settings


2008-05-15  Vladimir Glazounov  <vg@openoffice.org>  [456b14e2f4015bc6ba7fb7eeb62abe8e31ad5f0d]

INTEGRATION: CWS chart26_DEV300 (1.14.20); FILE MERGED 2008/04/16 19:52:20 er 1.14.20.1: #i87128# sanitize view settings positions when loading documents that exceed max cols/rows


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [8fc5d3399bb78895323960dc67da98edf62fbb63]

INTEGRATION: CWS koheiformula01 (1.42.12); FILE MERGED 2008/04/23 15:08:19 kohei 1.42.12.2: RESYNC: (1.42-1.44); FILE MERGED 2008/03/19 17:37:16 kohei 1.42.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [0bff0decdaf2119bc99b29d19cadb149ef44f135]

INTEGRATION: CWS koheiformula01 (1.52.12); FILE MERGED 2008/04/23 15:08:06 kohei 1.52.12.2: RESYNC: (1.52-1.53); FILE MERGED 2008/03/20 23:21:12 kohei 1.52.12.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [e9c37c346638b5b3f278038bca4438cd228fd235]

INTEGRATION: CWS koheiformula01 (1.38.12); FILE MERGED 2008/04/25 16:57:19 kohei 1.38.12.4: removed unused variable. 2008/04/23 15:07:50 kohei 1.38.12.3: RESYNC: (1.38-1.40); FILE MERGED 2008/03/22 18:48:30 kohei 1.38.12.2: re-worked the print areas dialog implementation to support variable address conventions. 2008/03/20 23:21:11 kohei 1.38.12.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [bb9c2d1934280cee61b29231b5593f1783825a05]

INTEGRATION: CWS koheiformula01 (1.23.12); FILE MERGED 2008/04/23 15:07:58 kohei 1.23.12.3: RESYNC: (1.23-1.25); FILE MERGED 2008/03/20 23:21:11 kohei 1.23.12.2: Use the current address convention everywhere instead of always using the OOo convention. 2008/03/19 17:37:16 kohei 1.23.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [316b59008c83f3540d1636a0b6f3170069e65df4]

INTEGRATION: CWS koheiformula01 (1.38.68); FILE MERGED 2008/04/23 15:08:14 kohei 1.38.68.2: RESYNC: (1.38-1.39); FILE MERGED 2008/03/20 23:21:11 kohei 1.38.68.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [d4f45ad3a95615eb781343d8fefdaf133f462877]

INTEGRATION: CWS koheiformula01 (1.55.58); FILE MERGED 2008/04/23 15:08:03 kohei 1.55.58.2: RESYNC: (1.55-1.56); FILE MERGED 2008/03/20 23:21:11 kohei 1.55.58.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [b413f42285b9a9da9da7b88156cbdafd271dbeb9]

INTEGRATION: CWS koheiformula01 (1.33.68); FILE MERGED 2008/04/23 15:08:11 kohei 1.33.68.2: RESYNC: (1.33-1.34); FILE MERGED 2008/03/20 23:21:11 kohei 1.33.68.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [51b3f0e0c85e064bc5a722cd8e436735aafcd62f]

INTEGRATION: CWS koheiformula01 (1.49.68); FILE MERGED 2008/04/23 15:07:54 kohei 1.49.68.2: RESYNC: (1.49-1.51); FILE MERGED 2008/03/20 23:21:11 kohei 1.49.68.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [3deedeee2188d22bf1522896d0e97c6ca3061d3e]

INTEGRATION: CWS koheiformula01 (1.5.18); FILE MERGED 2008/04/25 16:56:32 kohei 1.5.18.1: specify grammar instead of directly specifying the address convention when compiling formula strings.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [5d6f6db0b1b25a5cfab5d67b71de01cd088b2dbf]

INTEGRATION: CWS koheiformula01 (1.7.12); FILE MERGED 2008/04/25 16:56:32 kohei 1.7.12.4: specify grammar instead of directly specifying the address convention when compiling formula strings. 2008/04/23 15:07:41 kohei 1.7.12.3: RESYNC: (1.7-1.8); FILE MERGED 2008/03/19 17:37:15 kohei 1.7.12.2: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used. 2008/03/14 01:06:13 kohei 1.7.12.1: initial commit from the ooo-build patch with lots of build breakages fixed.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [952324786701b434ffbeb1fd87e540c7e546050f]

INTEGRATION: CWS koheiformula01 (1.3.12); FILE MERGED 2008/04/23 15:09:59 kohei 1.3.12.2: RESYNC: (1.3-1.5); FILE MERGED 2008/03/19 17:37:15 kohei 1.3.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [cd09149c225ddb5b82b64375793cd1297a3f9e87]

INTEGRATION: CWS koheiformula01 (1.18.40); FILE MERGED 2008/04/23 15:07:45 kohei 1.18.40.2: RESYNC: (1.18-1.19); FILE MERGED 2008/03/19 17:37:15 kohei 1.18.40.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [71db097ff6990874376f0ee2713045cd94c35299]

INTEGRATION: CWS koheiformula01 (1.14.314); FILE MERGED 2008/04/30 15:43:02 kohei 1.14.314.5: parse the print range address per current address convention (should not affect the behavior). 2008/04/23 15:10:02 kohei 1.14.314.4: RESYNC: (1.14-1.16); FILE MERGED 2008/03/25 23:01:31 kohei 1.14.314.3: allow single cell print areas as well. 2008/03/22 18:48:24 kohei 1.14.314.2: re-worked the print areas dialog implementation to support variable address conventions. 2008/03/20 23:20:54 kohei 1.14.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [f5195ddc0c50e4bdae06e028566f0d6dba201e3e]

INTEGRATION: CWS koheiformula01 (1.10.70); FILE MERGED 2008/04/23 15:09:05 kohei 1.10.70.2: RESYNC: (1.10-1.11); FILE MERGED 2008/03/20 23:20:47 kohei 1.10.70.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [54e08975a39b024ed15b2f970e6cb0c7a9104be3]

INTEGRATION: CWS koheiformula01 (1.24.70); FILE MERGED 2008/04/23 15:09:02 kohei 1.24.70.2: RESYNC: (1.24-1.25); FILE MERGED 2008/03/20 23:20:41 kohei 1.24.70.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [5bbcf185534bece074d03ec50d9da79012bb6a65]

INTEGRATION: CWS koheiformula01 (1.8.314); FILE MERGED 2008/04/23 15:08:54 kohei 1.8.314.3: RESYNC: (1.9-1.10); FILE MERGED 2008/03/31 20:24:00 kohei 1.8.314.2: RESYNC: (1.8-1.9); FILE MERGED 2008/03/20 03:44:15 kohei 1.8.314.1: use grammar in the defined names dialog.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [02ccb6f822f91f921bd20bdf9d9432b9f80910a0]

INTEGRATION: CWS koheiformula01 (1.10.314); FILE MERGED 2008/04/23 15:09:16 kohei 1.10.314.3: RESYNC: (1.10-1.11); FILE MERGED 2008/03/21 04:38:42 kohei 1.10.314.2: some code cleanup. 2008/03/20 23:20:35 kohei 1.10.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [03d569c3a5ed00254b6ffa68e7c19699e85a6713]

INTEGRATION: CWS koheiformula01 (1.11.314); FILE MERGED 2008/04/23 15:09:22 kohei 1.11.314.3: RESYNC: (1.11-1.12); FILE MERGED 2008/03/21 17:23:57 kohei 1.11.314.2: const a read-only variable. 2008/03/20 23:20:34 kohei 1.11.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [b9fb3cb7df2227fd12e0e1da22d06dd16db03b80]

INTEGRATION: CWS koheiformula01 (1.10.276); FILE MERGED 2008/04/23 15:09:19 kohei 1.10.276.2: RESYNC: (1.10-1.11); FILE MERGED 2008/03/20 23:20:34 kohei 1.10.276.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [08e30ec5918a70b83edef5d0e64eefdb22b41645]

INTEGRATION: CWS koheiformula01 (1.2.62); FILE MERGED 2008/04/23 15:09:13 kohei 1.2.62.2: RESYNC: (1.2-1.3); FILE MERGED 2008/03/20 23:20:34 kohei 1.2.62.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [a083444b097fadce380f2eb09fe624c01492af41]

INTEGRATION: CWS koheiformula01 (1.12.284); FILE MERGED 2008/04/23 15:09:29 kohei 1.12.284.2: RESYNC: (1.12-1.13); FILE MERGED 2008/03/20 23:20:34 kohei 1.12.284.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [b23032822c847c84e51b74d00781a0536f51f717]

INTEGRATION: CWS koheiformula01 (1.9.314); FILE MERGED 2008/04/23 15:09:09 kohei 1.9.314.3: RESYNC: (1.9-1.10); FILE MERGED 2008/03/21 17:26:03 kohei 1.9.314.2: modified to support variable formula syntax.  used the real range values instead of scanning the string entries to make it more rodust. 2008/03/20 23:20:34 kohei 1.9.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [0f9fa875255d9cc3d19ad99b5fc8ce8a1cdf1e26]

INTEGRATION: CWS koheiformula01 (1.20.62); FILE MERGED 2008/04/23 15:09:26 kohei 1.20.62.4: RESYNC: (1.20-1.21); FILE MERGED 2008/03/20 23:20:34 kohei 1.20.62.3: Use the current address convention everywhere instead of always using the OOo convention. 2008/03/20 06:08:19 kohei 1.20.62.2: fixed the selection rectangle during anyfill mode when the grammar is non-default. 2008/03/19 17:37:14 kohei 1.20.62.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [46fe0f8ed3be73b768cc0669efce2ada970e41ac]

INTEGRATION: CWS koheiformula01 (1.9.414); FILE MERGED 2008/04/24 13:34:04 kohei 1.9.414.3: fixed build breakage on windows. 2008/04/23 15:07:31 kohei 1.9.414.2: RESYNC: (1.9-1.10); FILE MERGED 2008/03/19 17:37:14 kohei 1.9.414.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [26076e07288dc432175cef0abfbb8212474be717]

INTEGRATION: CWS koheiformula01 (1.17.12); FILE MERGED 2008/04/23 15:07:26 kohei 1.17.12.2: RESYNC: (1.17-1.18); FILE MERGED 2008/03/19 17:37:13 kohei 1.17.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [d6eb620ded08128ebac99fa182223cd0722a8d1e]

INTEGRATION: CWS koheiformula01 (1.3.684); FILE MERGED 2008/04/23 15:07:34 kohei 1.3.684.2: RESYNC: (1.3-1.4); FILE MERGED 2008/03/20 04:38:05 kohei 1.3.684.1: use grammar in the database range dialog.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [c971a4fdce1b41ffcad0aa32b89120683a6831bd]

INTEGRATION: CWS koheiformula01 (1.4.684); FILE MERGED 2008/04/23 15:07:28 kohei 1.4.684.2: RESYNC: (1.4-1.5); FILE MERGED 2008/03/21 17:25:56 kohei 1.4.684.1: modified to support variable formula syntax.  used the real range values instead of scanning the string entries to make it more rodust.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [0bac2ea63950b99df61c975d47ffe838a23efd8a]

INTEGRATION: CWS koheiformula01 (1.17.12); FILE MERGED 2008/04/23 15:08:58 kohei 1.17.12.5: RESYNC: (1.17-1.18); FILE MERGED 2008/03/20 23:20:27 kohei 1.17.12.4: Use the current address convention everywhere instead of always using the OOo convention. 2008/03/19 17:37:13 kohei 1.17.12.3: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used. 2008/03/18 23:14:33 kohei 1.17.12.2: switched to putting the separators into mxSymbolsNative and put everything else back to the way it was. 2008/03/14 01:06:13 kohei 1.17.12.1: initial commit from the ooo-build patch with lots of build breakages fixed.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [aa049beb7d3ae8b2863f97b28578306a02ff070a]

INTEGRATION: CWS koheiformula01 (1.27.210); FILE MERGED 2008/04/23 15:08:51 kohei 1.27.210.2: RESYNC: (1.27-1.29); FILE MERGED 2008/03/20 23:20:20 kohei 1.27.210.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [8fe57960a7cb7c5f6d99b2c783119e036e203fdb]

INTEGRATION: CWS koheiformula01 (1.9.314); FILE MERGED 2008/04/23 15:10:05 kohei 1.9.314.2: RESYNC: (1.9-1.10); FILE MERGED 2008/03/20 23:20:14 kohei 1.9.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [a21f8379c2771ada0e8ad008c1c29991cfdf9f25]

INTEGRATION: CWS koheiformula01 (1.41.12); FILE MERGED 2008/04/23 15:10:09 kohei 1.41.12.2: RESYNC: (1.41-1.42); FILE MERGED 2008/03/20 23:20:14 kohei 1.41.12.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [cf3b6a523185e708da08e7a3eab27c125fd308d4]

INTEGRATION: CWS koheiformula01 (1.59.12); FILE MERGED 2008/04/23 15:10:17 kohei 1.59.12.2: RESYNC: (1.59-1.61); FILE MERGED 2008/03/20 23:20:14 kohei 1.59.12.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [52e7c80f312f4fe50dad0e5c90716f5dc1ea72c9]

INTEGRATION: CWS koheiformula01 (1.68.12); FILE MERGED 2008/04/23 15:10:23 kohei 1.68.12.2: RESYNC: (1.68-1.69); FILE MERGED 2008/03/19 17:37:12 kohei 1.68.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [0cec49582220c7baa012ea277b640892c47b7887]

INTEGRATION: CWS koheiformula01 (1.26.224); FILE MERGED 2008/04/23 15:10:12 kohei 1.26.224.2: RESYNC: (1.26-1.27); FILE MERGED 2008/03/20 23:20:14 kohei 1.26.224.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [bf96d58599d5cc09d67aae3741867e33f0d3305f]

INTEGRATION: CWS koheiformula01 (1.12.314); FILE MERGED 2008/04/23 15:08:47 kohei 1.12.314.4: RESYNC: (1.12-1.13); FILE MERGED 2008/03/21 03:30:33 kohei 1.12.314.3: make the convention value const. 2008/03/21 03:27:59 kohei 1.12.314.2: use grammar in the sort dialog (options page). 2008/03/20 23:20:04 kohei 1.12.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [145c1e9ac3c3de80dcdc9eaf0c51da11d755cae9]

INTEGRATION: CWS koheiformula01 (1.12.314); FILE MERGED 2008/04/23 15:08:37 kohei 1.12.314.3: RESYNC: (1.12-1.13); FILE MERGED 2008/03/21 03:54:21 kohei 1.12.314.2: use the grammar setting in the advanced filter dialog. 2008/03/20 23:20:04 kohei 1.12.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [f3f15e76bf88f5f3611b1b1e04c046912decb64e]

INTEGRATION: CWS koheiformula01 (1.27.120); FILE MERGED 2008/04/23 15:08:41 kohei 1.27.120.2: RESYNC: (1.27-1.28); FILE MERGED 2008/03/20 23:20:04 kohei 1.27.120.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [d7bca7d4451937d5542a760a6aaf1da51cac4923]

INTEGRATION: CWS koheiformula01 (1.9.314); FILE MERGED 2008/04/23 15:08:23 kohei 1.9.314.2: RESYNC: (1.9-1.10); FILE MERGED 2008/03/20 23:20:04 kohei 1.9.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [a20f4ed53d7e1a8368c51d570b033e68ec98159a]

INTEGRATION: CWS koheiformula01 (1.6.314); FILE MERGED 2008/04/23 15:08:44 kohei 1.6.314.3: RESYNC: (1.6-1.7); FILE MERGED 2008/03/21 03:44:02 kohei 1.6.314.2: use the grammar setting in the filter options. 2008/03/20 23:20:04 kohei 1.6.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [6799a3ff8cbee4e532e8d78feab5e6d7bf274c13]

INTEGRATION: CWS koheiformula01 (1.15.70); FILE MERGED 2008/04/23 15:08:30 kohei 1.15.70.2: RESYNC: (1.15-1.16); FILE MERGED 2008/03/20 23:20:04 kohei 1.15.70.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [01f57a798ab23139618f4bcda5a6cae50c1fc907]

INTEGRATION: CWS koheiformula01 (1.8.314); FILE MERGED 2008/04/23 15:08:33 kohei 1.8.314.3: RESYNC: (1.8-1.9); FILE MERGED 2008/03/20 23:20:04 kohei 1.8.314.2: Use the current address convention everywhere instead of always using the OOo convention. 2008/03/20 04:37:59 kohei 1.8.314.1: use grammar in the database range dialog.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [6860f066428391a5fffdbf86605c91a83ec100b0]

INTEGRATION: CWS koheiformula01 (1.11.314); FILE MERGED 2008/04/23 15:08:26 kohei 1.11.314.3: RESYNC: (1.11-1.12); FILE MERGED 2008/03/21 05:19:14 kohei 1.11.314.2: grammar in the consolidate dialog. 2008/03/20 23:20:04 kohei 1.11.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [779ee100e81350fd2ed2693e2cd9f51c81dd118d]

INTEGRATION: CWS koheiformula01 (1.55.12); FILE MERGED 2008/04/23 15:07:23 kohei 1.55.12.2: RESYNC: (1.55-1.57); FILE MERGED 2008/03/20 23:19:57 kohei 1.55.12.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [c6bd66be59bba9f04fef2ac79ae8032740d782c5]

INTEGRATION: CWS koheiformula01 (1.7.310); FILE MERGED 2008/04/23 15:11:36 kohei 1.7.310.2: RESYNC: (1.7-1.8); FILE MERGED 2008/03/18 23:14:33 kohei 1.7.310.1: switched to putting the separators into mxSymbolsNative and put everything else back to the way it was.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [34d7caee9521e2a18297fb21a404e5ce82cb0486]

INTEGRATION: CWS koheiformula01 (1.6.314); FILE MERGED 2008/04/23 15:11:20 kohei 1.6.314.2: RESYNC: (1.6-1.7); FILE MERGED 2008/03/20 23:19:51 kohei 1.6.314.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [adb47901816be3a6f0bd08ac02debb75b49ae0cd]

INTEGRATION: CWS koheiformula01 (1.10.276); FILE MERGED 2008/04/23 15:10:59 kohei 1.10.276.3: RESYNC: (1.11-1.12); FILE MERGED 2008/03/31 20:24:13 kohei 1.10.276.2: RESYNC: (1.10-1.11); FILE MERGED 2008/03/20 23:19:50 kohei 1.10.276.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [12bba04a81825c79549cd219017e7a39cbf9be6d]

INTEGRATION: CWS koheiformula01 (1.27.12); FILE MERGED 2008/04/23 15:11:31 kohei 1.27.12.2: RESYNC: (1.27-1.28); FILE MERGED 2008/03/19 17:37:12 kohei 1.27.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [6ae934f0a98eceef4dd45331420e4736077081f6]

INTEGRATION: CWS koheiformula01 (1.56.12); FILE MERGED 2008/04/23 15:11:17 kohei 1.56.12.2: RESYNC: (1.56-1.57); FILE MERGED 2008/03/20 23:19:50 kohei 1.56.12.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [9c7a622ea6e6c4312fae5ea21e4676e291594477]

INTEGRATION: CWS koheiformula01 (1.75.12); FILE MERGED 2008/04/25 19:28:12 kohei 1.75.12.10: We shouldn't set the grammar value directly in the initializer but set it via SetGrammar call. 2008/04/25 16:55:36 kohei 1.75.12.9: specify grammar instead of directly specifying the address convention when compiling formula strings. 2008/04/23 15:11:28 kohei 1.75.12.8: RESYNC: (1.75-1.76); FILE MERGED 2008/03/31 20:07:26 kohei 1.75.12.7: Disable separator switching for now. 2008/03/20 13:19:13 kohei 1.75.12.6: * Use inline method provided by ScGrammar instead of directly extracting the bits from the grammar value. * Removed the duplicated call which was supposed to be moved. 2008/03/19 13:56:27 kohei 1.75.12.5: Localize the separators only for NATIVE, not for ENGLISH. 2008/03/19 04:26:43 kohei 1.75.12.4: Query for the formula language used and use it to switch separators. 2008/03/18 23:56:21 kohei 1.75.12.3: moved lang::Locale out of ScOpCodeList to make it independent of the locale. 2008/03/18 23:14:32 kohei 1.75.12.2: switched to putting the separators into mxSymbolsNative and put everything else back to the way it was. 2008/03/14 01:06:12 kohei 1.75.12.1: initial commit from the ooo-build patch with lots of build breakages fixed.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [b56ab1d87326eadb58d120aa7962d2896f1bcf4c]

INTEGRATION: CWS koheiformula01 (1.29.12); FILE MERGED 2008/04/23 15:11:05 kohei 1.29.12.2: RESYNC: (1.29-1.31); FILE MERGED 2008/03/20 23:19:50 kohei 1.29.12.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [8bce7a48d4a80be4b25a423247030e84dab09184]

INTEGRATION: CWS koheiformula01 (1.10.78); FILE MERGED 2008/04/23 15:11:10 kohei 1.10.78.4: RESYNC: (1.10-1.11); FILE MERGED 2008/03/25 23:03:18 kohei 1.10.78.3: any address strings with trailing character are invalid. 2008/03/21 15:17:26 kohei 1.10.78.2: be sure to erase the string before formatting, or the formatted string will get appended to the previous string, which is not desirable. 2008/03/20 14:44:20 kohei 1.10.78.1: Don't prepend '[]' to the reference string if the document name is empty.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [41d6d628536f3083dbed1f5aa293efb2766b46ec]

INTEGRATION: CWS koheiformula01 (1.22.12); FILE MERGED 2008/04/23 15:10:31 kohei 1.22.12.2: RESYNC: (1.22-1.23); FILE MERGED 2008/03/20 23:19:42 kohei 1.22.12.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [84621f7be82ba4f515e1f85709c93297e7c3c46c]

INTEGRATION: CWS koheiformula01 (1.54.12); FILE MERGED 2008/04/23 15:10:52 kohei 1.54.12.3: RESYNC: (1.54-1.55); FILE MERGED 2008/03/18 23:14:31 kohei 1.54.12.2: switched to putting the separators into mxSymbolsNative and put everything else back to the way it was. 2008/03/14 01:06:12 kohei 1.54.12.1: initial commit from the ooo-build patch with lots of build breakages fixed.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [5599e7d420fd1d47366549fa4dcb7035c71ec481]

INTEGRATION: CWS koheiformula01 (1.31.124); FILE MERGED 2008/04/23 15:10:55 kohei 1.31.124.2: RESYNC: (1.31-1.32); FILE MERGED 2008/03/20 23:19:42 kohei 1.31.124.1: Use the current address convention everywhere instead of always using the OOo convention.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [732a7bfb86ea7f89dd1ff3b6c2650ecd0e6fdc0b]

INTEGRATION: CWS koheiformula01 (1.22.18); FILE MERGED 2008/04/25 16:53:36 kohei 1.22.18.1: fixed a compiler warning on local variable shadowing a member variable.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [fd13439ba2675baad30d7e69603716b061667829]

INTEGRATION: CWS koheiformula01 (1.40.68); FILE MERGED 2008/04/23 15:10:48 kohei 1.40.68.2: RESYNC: (1.40-1.41); FILE MERGED 2008/03/19 17:37:11 kohei 1.40.68.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [e155bdd2ae368dfc4f19215d9d69dc4e0d9f388f]

INTEGRATION: CWS koheiformula01 (1.71.12); FILE MERGED 2008/04/30 15:41:07 kohei 1.71.12.7: change the default grammar to GRAM_NATIVE which has the CONV_OOO address convention embedded in. 2008/04/23 15:10:39 kohei 1.71.12.6: RESYNC: (1.71-1.72); FILE MERGED 2008/03/31 20:11:20 kohei 1.71.12.5: renamed locale instance of ScGrammar::Grammar from eGrammar to eGram, to avoid a naming clash. 2008/03/19 17:37:10 kohei 1.71.12.4: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used. 2008/03/18 23:14:31 kohei 1.71.12.3: switched to putting the separators into mxSymbolsNative and put everything else back to the way it was. 2008/03/14 01:19:40 kohei 1.71.12.2: set the convention back to OOO. 2008/03/14 01:06:11 kohei 1.71.12.1: initial commit from the ooo-build patch with lots of build breakages fixed.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [3c0bd3aa3d31e5934a82a161c4d57bb76718963e]

INTEGRATION: CWS koheiformula01 (1.24.12); FILE MERGED 2008/04/23 15:10:43 kohei 1.24.12.2: RESYNC: (1.24-1.25); FILE MERGED 2008/03/19 17:37:10 kohei 1.24.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [4d6425b10919022c0fd29e1a052c02bfeaf352ef]

INTEGRATION: CWS koheiformula01 (1.32.12); FILE MERGED 2008/04/23 15:10:27 kohei 1.32.12.2: RESYNC: (1.32-1.33); FILE MERGED 2008/03/19 17:37:09 kohei 1.32.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [72f1b2dd07f03c5e4a93f51364b97cc711a0cf43]

INTEGRATION: CWS koheiformula01 (1.41.12); FILE MERGED 2008/04/23 15:10:35 kohei 1.41.12.3: RESYNC: (1.41-1.42); FILE MERGED 2008/03/20 23:19:42 kohei 1.41.12.2: Use the current address convention everywhere instead of always using the OOo convention. 2008/03/19 17:37:08 kohei 1.41.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [833244e395201425c8ae5e57a47c26c1bf7da697]

INTEGRATION: CWS koheiformula01 (1.109.12); FILE MERGED 2008/04/23 15:07:15 kohei 1.109.12.2: RESYNC: (1.109-1.111); FILE MERGED 2008/03/19 17:37:07 kohei 1.109.12.1: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used.


2008-05-14  Vladimir Glazounov  <vg@openoffice.org>  [f796a01c12b3a4c3fffaddb15de3c718ed1c8b32]

INTEGRATION: CWS koheiformula01 (1.35.12); FILE MERGED 2008/04/25 16:55:28 kohei 1.35.12.5: specify grammar instead of directly specifying the address convention when compiling formula strings. 2008/04/23 15:07:11 kohei 1.35.12.4: RESYNC: (1.35-1.36); FILE MERGED 2008/03/19 17:37:07 kohei 1.35.12.3: changed a lot of places to prepare for a single global grammar value that applies to all places where formulas are used. 2008/03/18 23:14:31 kohei 1.35.12.2: switched to putting the separators into mxSymbolsNative and put everything else back to the way it was. 2008/03/14 01:06:11 kohei 1.35.12.1: initial commit from the ooo-build patch with lots of build breakages fixed.


2008-05-13  Vladimir Glazounov  <vg@openoffice.org>  [a7e2250eaaab13bb43e69bf287419df96d3b2b9b]

#i89162#


2008-05-06  Kurt Zenker  <kz@openoffice.org>  [4598f9ee66965ff1326b80192441b02c74943ce6]

INTEGRATION: CWS os112 (1.17.276); FILE MERGED 2008/03/10 08:43:39 os 1.17.276.1: #i73707# RTL auto formatting


2008-05-06  Kurt Zenker  <kz@openoffice.org>  [6ca6f6aaaf3ddb3bb663621cb83d969d70c956d6]

INTEGRATION: CWS os112 (1.8.676); FILE MERGED 2008/03/10 08:43:32 os 1.8.676.1: #i73707# RTL auto formatting


2008-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [c4b3de56b642d11367ec97a985b332cef9022178]

#i10000#: fix gcc-4.2.3 warning


2008-04-24  Ivo Hinkelmann  <ihi@openoffice.org>  [15e0c7359c9ebb283d3f3ed047f369c4e822b74b]

INTEGRATION: CWS cmcfixes43 (1.2.2); FILE MERGED 2008/03/12 15:36:07 cmc 1.2.2.1: #i86874# add a system lpsolve


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [7cc683f16c0022859966a38592f3a1af6ae6d103]

INTEGRATION: CWS xmlfilter04 (1.20.2); FILE MERGED 2008/03/20 13:29:32 iha 1.20.2.3: removed unused variable 2008/03/19 16:34:34 hbrinkm 1.20.2.2: RESYNC: (1.20-1.21); FILE MERGED 2008/03/14 15:44:08 iha 1.20.2.1: #i72994# simpler access to 3D settings


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [d7c93900f4733c9e08eb0a0ce032a151710ff7ef]

INTEGRATION: CWS xmlfilter04 (1.4.82); FILE MERGED 2008/03/14 15:42:24 iha 1.4.82.1: #i72994# simpler access to 3D settings


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [924a532d2967351310332bb4654b907c4ffa1d6b]

INTEGRATION: CWS xmlfilter04 (1.3.82); FILE MERGED 2008/03/14 15:40:34 iha 1.3.82.1: #i72994# simpler access to 3D settings


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [43fb27af8e153ea4af054c73709d744118bad0b9]

INTEGRATION: CWS xmlfilter04 (1.12.58); FILE MERGED 2008/03/27 13:17:57 sj 1.12.58.2: fixed build problem 2008/03/14 15:43:06 iha 1.12.58.1: #i72994# simpler access to 3D settings


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [758494ccf4ec242c51b6a21b20072bdd7887a474]

INTEGRATION: CWS xmlfilter04 (1.2.94); FILE MERGED 2008/03/14 15:40:02 iha 1.2.94.1: #i72994# simpler access to 3D settings


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [615341d67ea55cd49a2a08f475da1388d8f1cced]

INTEGRATION: CWS xmlfilter04 (1.5.80); FILE MERGED 2008/03/03 16:56:29 dr 1.5.80.1: check xInnerPropertySet to avoid crash


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [d77442a1da2ee0b4357aaf868d85ecff0c9969d5]

INTEGRATION: CWS xmlfilter04 (1.12.2); FILE MERGED 2008/03/19 16:35:34 hbrinkm 1.12.2.2: RESYNC: (1.12-1.13); FILE MERGED 2008/03/14 16:17:17 iha 1.12.2.1: #i72994# simpler access to 3D settings


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [cda656798adf0bc7ef24b2476c0124a23ba59cc0]

INTEGRATION: CWS xmlfilter04 (1.2.54); FILE MERGED 2008/03/19 17:00:42 hbrinkm 1.2.54.4: RESYNC: (1.2-1.3); FILE MERGED 2008/03/19 03:54:49 kohei 1.2.54.3: forgot to change it in two more places. 2008/03/19 03:51:49 kohei 1.2.54.2: FormulaConvention -> AddressConvention. 2008/03/07 02:06:05 kohei 1.2.54.1: remove the two boolean properties from ScFormulaParserObj and put the new formula convention property.


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [383d8b26df5524f48a7350550cef151acfd7ca39]

INTEGRATION: CWS xmlfilter04 (1.76.22); FILE MERGED 2008/03/19 17:00:36 hbrinkm 1.76.22.3: RESYNC: (1.76-1.79); FILE MERGED 2008/03/07 02:06:04 kohei 1.76.22.2: remove the two boolean properties from ScFormulaParserObj and put the new formula convention property. 2008/02/21 12:38:21 hbrinkm 1.76.22.1: joined changes from xmlfilter03


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [3411f25c61112c6e1b210ed3f103327b801351d6]

INTEGRATION: CWS xmlfilter04 (1.2.54); FILE MERGED 2008/03/07 02:06:04 kohei 1.2.54.1: remove the two boolean properties from ScFormulaParserObj and put the new formula convention property.


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [2a0215f8f8c939652a3b8b98c5af79a7f5deb6ba]

INTEGRATION: CWS filteredrows (1.45.64); FILE MERGED 2008/03/28 16:54:27 er 1.45.64.4: #i33851# disable Insert.Names.Create for filtered 2008/03/28 15:46:54 er 1.45.64.3: re-enable paste slots 2008/03/20 16:19:13 er 1.45.64.2: #i33851# re-enable CopyToClip for filtered, using the existing mechanisms 2008/03/19 18:31:53 er 1.45.64.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [a175179f94030fab28d308d76627b09425f6eff0]

INTEGRATION: CWS filteredrows (1.38.34); FILE MERGED 2008/03/28 13:11:15 er 1.38.34.3: #i33851# CopyFromClip: paste slices to unfiltered rows, adapting selection mark if appropriate 2008/03/20 16:19:13 er 1.38.34.2: #i33851# re-enable CopyToClip for filtered, using the existing mechanisms 2008/03/19 18:31:54 er 1.38.34.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [05051c6d688352f83c559dea6015e5238f12e9a3]

INTEGRATION: CWS filteredrows (1.63.64); FILE MERGED 2008/03/20 15:36:06 er 1.63.64.2: GetSimpleArea: return the area also for simple filtered 2008/03/19 18:31:54 er 1.63.64.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [451d81579c00196d186dec383f15bde177927f4f]

INTEGRATION: CWS filteredrows (1.16.4); FILE MERGED 2008/03/28 13:11:16 er 1.16.4.1: #i33851# CopyFromClip: paste slices to unfiltered rows, adapting selection mark if appropriate


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [c158bb9da5350735115f513bbafa871f3d275de2]

INTEGRATION: CWS filteredrows (1.42.4); FILE MERGED 2008/03/19 18:31:54 er 1.42.4.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [5f47062affe1932e54c640acfb1eb19207ed3400]

INTEGRATION: CWS filteredrows (1.38.4); FILE MERGED 2008/04/01 00:34:12 er 1.38.4.2: #i33851# TestMergeCells: filtered not mergeable 2008/03/19 18:31:54 er 1.38.4.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [9558f842296d0d50b13f6e954d0ae24075a820e4]

INTEGRATION: CWS filteredrows (1.12.64); FILE MERGED 2008/03/19 18:31:54 er 1.12.64.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [f2b4b929be5eeecf395e983bb40babd9b8f67140]

INTEGRATION: CWS filteredrows (1.5.470); FILE MERGED 2008/03/19 18:31:54 er 1.5.470.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [05825b7f03b0042f1469933812c62f2555716809]

INTEGRATION: CWS filteredrows (1.73.4); FILE MERGED 2008/03/20 16:19:13 er 1.73.4.2: #i33851# re-enable CopyToClip for filtered, using the existing mechanisms 2008/03/19 18:31:54 er 1.73.4.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [92856ab4dd76db7e4f8e359d2f81faa67e2f4b3e]

INTEGRATION: CWS filteredrows (1.65.34); FILE MERGED 2008/03/19 18:31:54 er 1.65.34.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [6a058240a20985345881d258c7c50463ae931c40]

INTEGRATION: CWS filteredrows (1.19.222); FILE MERGED 2008/03/19 18:31:53 er 1.19.222.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [192828be2ba03e734f5ab78638041bddce108f2d]

INTEGRATION: CWS filteredrows (1.92.4); FILE MERGED 2008/03/31 22:41:57 er 1.92.4.2: #i33851# handle drag&drop and primary selection 2008/03/19 18:31:53 er 1.92.4.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [6856260a80e4a2f15a9ac8f7cbe6a0194b2f3f4b]

INTEGRATION: CWS filteredrows (1.37.70); FILE MERGED 2008/03/19 18:31:53 er 1.37.70.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [b13971ee209babbf9ba83b65a53ec1dfb7c492d5]

INTEGRATION: CWS filteredrows (1.16.34); FILE MERGED 2008/03/19 18:31:53 er 1.16.34.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [8ee649249552082e8f36ce904461716f5e2270a1]

INTEGRATION: CWS filteredrows (1.13.308); FILE MERGED 2008/03/19 18:31:53 er 1.13.308.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [57e9c643aea848b4da235f79dbcc67894d9dbfc8]

INTEGRATION: CWS filteredrows (1.31.64); FILE MERGED 2008/03/28 17:19:32 er 1.31.64.2: #i33851# do not disable filter slots for filtered 2008/03/19 18:31:53 er 1.31.64.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [981e529fea00037ad662fa700436be619c0e13c1]

INTEGRATION: CWS filteredrows (1.49.62); FILE MERGED 2008/03/19 18:31:53 er 1.49.62.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [6ab00006431ec4a5fedfb386ece2c459c9915eb7]

INTEGRATION: CWS filteredrows (1.35.36); FILE MERGED 2008/03/20 22:11:41 er 1.35.36.3: RangeList, not RangeListRef 2008/03/20 18:57:43 er 1.35.36.2: ScTabViewObj::getSelection: return multi-selection for filtered simple area 2008/03/19 18:31:53 er 1.35.36.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [ac1bb1f5657ec5abf630327abc5532a0a2f5cc0b]

INTEGRATION: CWS filteredrows (1.14.308); FILE MERGED 2008/03/19 18:31:52 er 1.14.308.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [b4141870a317595575b21c145cd5b5ce15218052]

INTEGRATION: CWS filteredrows (1.11.638); FILE MERGED 2008/03/28 13:11:15 er 1.11.638.1: #i33851# CopyFromClip: paste slices to unfiltered rows, adapting selection mark if appropriate


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [2ad64593b011b3ce74baea9e3505aaf8a092f9e4]

INTEGRATION: CWS filteredrows (1.22.72); FILE MERGED 2008/03/28 14:20:07 er 1.22.72.2: some compilers do not like extraneous separators 2008/03/19 18:31:52 er 1.22.72.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [6ca8017536f2b4242ff1ae8a2c4551b6780bf8bf]

INTEGRATION: CWS filteredrows (1.17.136); FILE MERGED 2008/03/31 22:41:57 er 1.17.136.1: #i33851# handle drag&drop and primary selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [229ff23d766e3dd227943166ff1885ead2c91f88]

INTEGRATION: CWS filteredrows (1.27.204); FILE MERGED 2008/03/19 18:31:52 er 1.27.204.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [0e01f817f525744831b24aaebca34c9bc59c4a16]

INTEGRATION: CWS filteredrows (1.32.218); FILE MERGED 2008/03/31 22:41:57 er 1.32.218.1: #i33851# handle drag&drop and primary selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [b72a4a60fea21f0bfd2e03f45691051d7833fb9c]

INTEGRATION: CWS filteredrows (1.13.308); FILE MERGED 2008/03/31 22:41:57 er 1.13.308.2: #i33851# handle drag&drop and primary selection 2008/03/19 18:31:52 er 1.13.308.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [4506eeab85e04bf85340329c6b51019106ea191a]

INTEGRATION: CWS filteredrows (1.55.4); FILE MERGED 2008/03/19 18:31:52 er 1.55.4.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [0f2b0731b18b2ccc92f806cee98df50800747061]

INTEGRATION: CWS filteredrows (1.86.4); FILE MERGED 2008/03/28 13:11:15 er 1.86.4.1: #i33851# CopyFromClip: paste slices to unfiltered rows, adapting selection mark if appropriate


2008-04-18  Rüdiger Timm  <rt@openoffice.org>  [aa0133160111f865d6798f25f5fc1662691e9d2c]

INTEGRATION: CWS filteredrows (1.109.4); FILE MERGED 2008/03/28 13:11:14 er 1.109.4.1: #i33851# CopyFromClip: paste slices to unfiltered rows, adapting selection mark if appropriate


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [35ef90fe41165a6d0882bf5bb484affdc8321e38]

INTEGRATION: CWS calcshare2 (1.23.40); FILE MERGED 2008/03/21 08:51:54 tbe 1.23.40.1: #i87315# [Collboration] Disable UI for actions which are not recorded by change tracking


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [422d6b1b007ce040a9bad665e4c7f9e384435dc8]

INTEGRATION: CWS calcshare2 (1.48.8); FILE MERGED 2008/03/21 12:31:42 tbe 1.48.8.3: #i86679# [Collaboration] Merge document in shared mode opens non closable dialog 2008/03/13 13:10:06 tbe 1.48.8.2: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/13 09:54:53 tbe 1.48.8.1: #i86986# [Collaboration] Content conflict not detected after inserting row


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [227f236314a352c26693e7dfea3abad5c6560c88]

INTEGRATION: CWS calcshare2 (1.59.8); FILE MERGED 2008/03/27 15:18:05 tbe 1.59.8.10: #i85794# Reimplement file locking using an additional file 2008/03/25 15:58:21 tbe 1.59.8.9: #i86681# [Collaboration] 'Locked due to a merge' message box shows 'unknown user' instead of username 2008/03/25 12:11:16 tbe 1.59.8.8: #i85794# Reimplement file locking using an additional file 2008/03/21 21:03:52 tbe 1.59.8.7: #i86679# [Collaboration] Merge document in shared mode opens non closable dialog 2008/03/21 12:30:46 tbe 1.59.8.6: #i86679# [Collaboration] Merge document in shared mode opens non closable dialog 2008/03/21 08:48:12 tbe 1.59.8.5: #i87315# [Collboration] Disable UI for actions which are not recorded by change tracking 2008/03/17 17:50:16 tbe 1.59.8.4: #i85794# Reimplement file locking using an additional file 2008/03/17 12:45:17 er 1.59.8.3: #i87094# DialogClosedHdl: do not crash if a wrong document type was selected 2008/03/14 20:11:03 mav 1.59.8.2: #i85794# new file locking prototype 2008/03/13 09:53:07 tbe 1.59.8.1: #i86986# [Collaboration] Content conflict not detected after inserting row


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [cb992aa9307c2669ef24f54e961003185e515c77]

INTEGRATION: CWS calcshare2 (1.13.282); FILE MERGED 2008/03/21 08:54:52 tbe 1.13.282.1: #i87315# [Collboration] Disable UI for actions which are not recorded by change tracking


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [2ebd03867818f39d9867983ce87cda20f77d8fad]

INTEGRATION: CWS calcshare2 (1.37.68); FILE MERGED 2008/03/21 08:53:57 tbe 1.37.68.1: #i87315# [Collboration] Disable UI for actions which are not recorded by change tracking


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [e1f432cd8bc35c5ea63500991399038cefd4f705]

INTEGRATION: CWS calcshare2 (1.23.8); FILE MERGED 2008/03/21 08:53:09 tbe 1.23.8.1: #i87315# [Collboration] Disable UI for actions which are not recorded by change tracking


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [5504b3bb1a7ca40308d468f225a607d8675af7c8]

INTEGRATION: CWS calcshare2 (1.31.68); FILE MERGED 2008/03/21 08:50:58 tbe 1.31.68.1: #i87315# [Collboration] Disable UI for actions which are not recorded by change tracking


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [2d25d46bfd503069d3b3777d8bec4bdb11a94237]

INTEGRATION: CWS calcshare2 (1.45.68); FILE MERGED 2008/03/21 08:49:41 tbe 1.45.68.1: #i87315# [Collboration] Disable UI for actions which are not recorded by change tracking


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [e7553cfb3ec25959d89f79e562c8ff74c87e8703]

INTEGRATION: CWS calcshare2 (1.30.8); FILE MERGED 2008/03/14 20:13:37 mav 1.30.8.1: #i85794# new file locking prototype


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [4e817820c6d92fa955908781be398fc71214cf33]

INTEGRATION: CWS calcshare2 (1.3.8); FILE MERGED 2008/03/25 15:59:25 tbe 1.3.8.2: #i86681# [Collaboration] 'Locked due to a merge' message box shows 'unknown user' instead of username 2008/03/14 20:13:37 mav 1.3.8.1: #i85794# new file locking prototype


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [811b3d5473f79acae6e1fc0c9540379d0711a827]

INTEGRATION: CWS calcshare2 (1.2.8); FILE MERGED 2008/03/25 17:01:47 tbe 1.2.8.3: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/13 13:10:43 tbe 1.2.8.2: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/13 09:55:53 tbe 1.2.8.1: #i86986# [Collaboration] Content conflict not detected after inserting row


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [a9b748ec3702d790a95f948eee48ad34d7ffabbf]

INTEGRATION: CWS calcshare2 (1.2.8); FILE MERGED 2008/03/13 13:09:27 tbe 1.2.8.2: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/13 09:54:10 tbe 1.2.8.1: #i86986# [Collaboration] Content conflict not detected after inserting row


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [662096534ea94aa4225a91d3f565f3e9013fe4b1]

INTEGRATION: CWS calcshare2 (1.35.8); FILE MERGED 2008/03/26 11:37:11 tbe 1.35.8.5: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/25 17:37:45 tbe 1.35.8.4: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/15 15:49:10 tbe 1.35.8.3: #i87049# [Collaboration] Conflict between delete row and insert content is not merged correctly 2008/03/13 13:08:48 tbe 1.35.8.2: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/13 09:52:06 tbe 1.35.8.1: #i86986# [Collaboration] Content conflict not detected after inserting row


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [78e2a6e2e886001befeaa695d41116f129537c11]

INTEGRATION: CWS calcshare2 (1.98.8); FILE MERGED 2008/03/27 15:16:46 tbe 1.98.8.6: #i85794# Reimplement file locking using an additional file 2008/03/25 15:56:48 tbe 1.98.8.5: #i86681# [Collaboration] 'Locked due to a merge' message box shows 'unknown user' instead of username 2008/03/21 12:28:32 tbe 1.98.8.4: #i86679# [Collaboration] Merge document in shared mode opens non closable dialog 2008/03/21 08:47:02 tbe 1.98.8.3: #i87315# [Collboration] Disable UI for actions which are not recorded by change tracking 2008/03/14 20:11:02 mav 1.98.8.2: #i85794# new file locking prototype 2008/03/13 09:50:39 tbe 1.98.8.1: #i86986# [Collaboration] Content conflict not detected after inserting row


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [f03dfc255f23acf62b20c8fcf3d6182add3e5af7]

INTEGRATION: CWS calcshare2 (1.29.8); FILE MERGED 2008/03/26 11:36:03 tbe 1.29.8.5: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/25 17:00:56 tbe 1.29.8.4: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/15 15:47:56 tbe 1.29.8.3: #i87049# [Collaboration] Conflict between delete row and insert content is not merged correctly 2008/03/13 15:57:09 tbe 1.29.8.2: #i87003# [Collaboration] Move range and insert content in FromRange is not merged correctly 2008/03/13 13:08:03 tbe 1.29.8.1: #i86986# [Collaboration] Content conflict not detected after inserting row


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [13799969ad250634414cf3cd5f3e188a384986bd]

INTEGRATION: CWS calcshare2 (1.29.8); FILE MERGED 2008/03/26 11:34:44 tbe 1.29.8.3: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/25 16:59:48 tbe 1.29.8.2: #i86986# [Collaboration] Content conflict not detected after inserting row 2008/03/13 13:07:09 tbe 1.29.8.1: #i86986# [Collaboration] Content conflict not detected after inserting row


2008-04-15  Vladimir Glazounov  <vg@openoffice.org>  [898a32afcfbc2ba4678f314cead6467ef16c52dc]

INTEGRATION: CWS sb86 (1.46.2); FILE MERGED 2008/03/25 10:47:33 sb 1.46.2.1: #i87294# a better fix for the VBA_EXTENSION/MACOSX problem


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [d2563b779dacb2a67b72ba1bad1ac4905c74ab4f]

INTEGRATION: CWS changefileheader (1.1.4); FILE MERGED 2008/03/31 17:24:13 rt 1.1.4.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [3df0eda671808711b1b1d290583758be9e4b326d]

INTEGRATION: CWS changefileheader (1.1.4); FILE MERGED 2008/04/01 15:31:36 thb 1.1.4.3: #i85898# Stripping all external header guards 2008/04/01 12:37:13 thb 1.1.4.2: #i85898# Stripping all external header guards 2008/03/31 17:24:13 rt 1.1.4.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [5d88b1242c1189f0f5ea3c3a658ae198b3f75506]

INTEGRATION: CWS changefileheader (1.2.4); FILE MERGED 2008/03/31 17:24:13 rt 1.2.4.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [a06eb46112b26be955b16bf8e1c469c28daa55bf]

INTEGRATION: CWS changefileheader (1.2.132); FILE MERGED 2008/03/31 17:24:02 rt 1.2.132.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [7b018f456b841bf405d7dcbadfc00b753ef07b4d]

INTEGRATION: CWS changefileheader (1.15.4); FILE MERGED 2008/03/31 17:24:02 rt 1.15.4.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [d8731b4203e790587b8c82490490ec6b3939e2db]

INTEGRATION: CWS changefileheader (1.26.38); FILE MERGED 2008/03/31 17:24:01 rt 1.26.38.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [0dbf91c38807155e6c232678f52cc0b2730f2590]

INTEGRATION: CWS changefileheader (1.5.80); FILE MERGED 2008/04/01 15:31:31 thb 1.5.80.3: #i85898# Stripping all external header guards 2008/04/01 12:37:09 thb 1.5.80.2: #i85898# Stripping all external header guards 2008/03/31 17:24:01 rt 1.5.80.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [40f7cc10bb5b4c6731b68a4c73b0ec436bf6a6fa]

INTEGRATION: CWS changefileheader (1.2.132); FILE MERGED 2008/03/31 17:24:01 rt 1.2.132.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f917ef2504523967062490c657235d3789eb58f0]

INTEGRATION: CWS changefileheader (1.14.4); FILE MERGED 2008/04/01 15:31:31 thb 1.14.4.3: #i85898# Stripping all external header guards 2008/04/01 12:37:08 thb 1.14.4.2: #i85898# Stripping all external header guards 2008/03/31 17:24:01 rt 1.14.4.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [9f5b9b4ce30fc34e178e565cc46199ac615fd5c4]

INTEGRATION: CWS changefileheader (1.5.132); FILE MERGED 2008/03/31 17:24:01 rt 1.5.132.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [432afb5a7cab4e6008242a3c0f435ee0c10bb839]

INTEGRATION: CWS changefileheader (1.18.4); FILE MERGED 2008/03/31 17:23:22 rt 1.18.4.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [d07ac4ca30b2965d976376a16dde576473307880]

INTEGRATION: CWS changefileheader (1.19.58); FILE MERGED 2008/03/31 17:23:11 rt 1.19.58.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [c71fc6da2fe86e0e587610c3b83433699ee1025e]

INTEGRATION: CWS changefileheader (1.3.132); FILE MERGED 2008/04/01 15:31:30 thb 1.3.132.3: #i85898# Stripping all external header guards 2008/04/01 12:37:08 thb 1.3.132.2: #i85898# Stripping all external header guards 2008/03/31 17:23:11 rt 1.3.132.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [3c739dbbc253d1d2c3ef83dcec52f202d2b37366]

INTEGRATION: CWS changefileheader (1.5.80); FILE MERGED 2008/04/01 12:37:08 thb 1.5.80.2: #i85898# Stripping all external header guards 2008/03/31 17:23:11 rt 1.5.80.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [2b6a55a6a29dd96b397c9b9610253e6ea97bc367]

INTEGRATION: CWS changefileheader (1.32.80); FILE MERGED 2008/04/01 12:37:08 thb 1.32.80.2: #i85898# Stripping all external header guards 2008/03/31 17:23:11 rt 1.32.80.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [c6009ad7b7e8a26fb3acc156a3aaa226c56b8ff4]

INTEGRATION: CWS changefileheader (1.56.8); FILE MERGED 2008/04/01 12:37:08 thb 1.56.8.2: #i85898# Stripping all external header guards 2008/03/31 17:23:11 rt 1.56.8.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [0b4a76008d1905ce52d4870f08db93212b096ddc]

INTEGRATION: CWS changefileheader (1.7.132); FILE MERGED 2008/03/31 17:23:11 rt 1.7.132.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [af5af9a5446e21e7c0ad947c5f3da4d40dc86d02]

INTEGRATION: CWS changefileheader (1.13.58); FILE MERGED 2008/03/31 17:23:11 rt 1.13.58.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [183fa98404174c6410b83324f603cdabb1fa0888]

INTEGRATION: CWS changefileheader (1.28.40); FILE MERGED 2008/03/31 17:23:11 rt 1.28.40.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [6a83bdfed4c00531d20cf70f6425166c206f2754]

INTEGRATION: CWS changefileheader (1.3.132); FILE MERGED 2008/03/31 17:23:11 rt 1.3.132.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [ec002b786d8678b4fc83679b4528cfe40e0343f8]

INTEGRATION: CWS changefileheader (1.67.40); FILE MERGED 2008/03/31 17:23:09 rt 1.67.40.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [4b96c8b136d87cca3e7f18592c60be564820ae3f]

INTEGRATION: CWS changefileheader (1.16.58); FILE MERGED 2008/03/31 17:23:09 rt 1.16.58.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [a5bc7ae98580646fc5d4c5acb9664ed3bfead9fe]

INTEGRATION: CWS changefileheader (1.5.132); FILE MERGED 2008/03/31 17:23:09 rt 1.5.132.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f06f282a3f7a8b483fe535a2222bf2789a97fefa]

INTEGRATION: CWS changefileheader (1.45.4); FILE MERGED 2008/04/01 12:37:08 thb 1.45.4.2: #i85898# Stripping all external header guards 2008/03/31 17:23:09 rt 1.45.4.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [33b3d41fccf7fce78f4609e8f3280b819022aaa8]

INTEGRATION: CWS changefileheader (1.2.146); FILE MERGED 2008/03/31 17:20:14 rt 1.2.146.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [8652bc54e5b96479e69653a6cc2dfb492f53313a]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:20:13 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [42e16d4f2976a99e1d22776bffd9423434e4a3f0]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:20:13 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [b34ed0d638c4c93a625208d05c9ad19f0ac5b94f]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:31:24 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:20:13 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [fae4a311595d421dc8a3851100beae678ff9356e]

INTEGRATION: CWS changefileheader (1.3.182); FILE MERGED 2008/03/31 17:20:13 rt 1.3.182.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [4cccfa052f402f1b3614842785efb5c2e31340ec]

INTEGRATION: CWS changefileheader (1.7.46); FILE MERGED 2008/03/31 17:20:13 rt 1.7.46.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [bc98eb2c5b366a40273a37534235731270219283]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:20:12 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [b3e4adaf873b6e63090abf0f8b217c76a8d3ee48]

INTEGRATION: CWS changefileheader (1.3.182); FILE MERGED 2008/03/31 17:20:12 rt 1.3.182.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e7bce5c0cf5e79068c59c30c817df2f030507a84]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/03/31 17:20:07 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [9033567b9e332b6c9ad92c340c2983b41efca5d7]

INTEGRATION: CWS changefileheader (1.47.4); FILE MERGED 2008/03/31 17:20:07 rt 1.47.4.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [4be22898c0656b8a9ed524dbdab9149563ce2108]

INTEGRATION: CWS changefileheader (1.28.34); FILE MERGED 2008/03/31 17:20:07 rt 1.28.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [534df296e72eb728ac608386a6355a39a61c252e]

INTEGRATION: CWS changefileheader (1.2.300); FILE MERGED 2008/03/31 17:20:07 rt 1.2.300.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [a8ff8cc9c78f323b23aaf845236803666b992615]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:20:04 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [0e5e9da50ade974fe09da7a1b0e9c7add8b38eb4]

INTEGRATION: CWS changefileheader (1.16.34); FILE MERGED 2008/03/31 17:20:04 rt 1.16.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [ca9af92b1d3458f406f4c85d1e4b4851e190e5c4]

INTEGRATION: CWS changefileheader (1.42.34); FILE MERGED 2008/03/31 17:20:04 rt 1.42.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [1636e5dcea1e2cd3a20cd9518e984e2f2277b01c]

INTEGRATION: CWS changefileheader (1.30.330); FILE MERGED 2008/04/01 12:37:01 thb 1.30.330.2: #i85898# Stripping all external header guards 2008/03/31 17:20:03 rt 1.30.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [4dda14313956daa0e0fad43675b8a1bcd6a61d0a]

INTEGRATION: CWS changefileheader (1.10.490); FILE MERGED 2008/03/31 17:20:03 rt 1.10.490.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [ad1af35abb205847f73dd918bf5da10d707cef7b]

INTEGRATION: CWS changefileheader (1.52.34); FILE MERGED 2008/04/01 15:31:23 thb 1.52.34.3: #i85898# Stripping all external header guards 2008/04/01 12:37:01 thb 1.52.34.2: #i85898# Stripping all external header guards 2008/03/31 17:20:03 rt 1.52.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [87a478603d85d19f8bf3ca21995c3e8b82d5a682]

INTEGRATION: CWS changefileheader (1.38.136); FILE MERGED 2008/04/01 15:31:23 thb 1.38.136.2: #i85898# Stripping all external header guards 2008/03/31 17:20:03 rt 1.38.136.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [2c462db393615043c2cc611ac1668f073158468a]

INTEGRATION: CWS changefileheader (1.39.24); FILE MERGED 2008/04/01 15:31:23 thb 1.39.24.2: #i85898# Stripping all external header guards 2008/03/31 17:20:03 rt 1.39.24.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [edb7098f93d7978cb0e4578f821fdcdd5af5e1b9]

INTEGRATION: CWS changefileheader (1.38.34); FILE MERGED 2008/03/31 17:20:03 rt 1.38.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [94820327808df88b715eaa307f29ca1b0faf37f0]

INTEGRATION: CWS changefileheader (1.63.88); FILE MERGED 2008/04/01 15:31:23 thb 1.63.88.3: #i85898# Stripping all external header guards 2008/04/01 12:37:01 thb 1.63.88.2: #i85898# Stripping all external header guards 2008/03/31 17:20:03 rt 1.63.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f1216874fd8dd8cf577527d9865c21d051676bef]

INTEGRATION: CWS changefileheader (1.15.88); FILE MERGED 2008/03/31 17:20:03 rt 1.15.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [8f8daa09cf38eb3b625426e7c6f67625e5034b98]

INTEGRATION: CWS changefileheader (1.12.34); FILE MERGED 2008/03/31 17:20:02 rt 1.12.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [712cf72f70f8606776c29b86c289c2db1d5c5ed0]

INTEGRATION: CWS changefileheader (1.13.300); FILE MERGED 2008/03/31 17:20:02 rt 1.13.300.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [2bea22f74a47bea30389ea7df50a10d4e00126ea]

INTEGRATION: CWS changefileheader (1.12.88); FILE MERGED 2008/04/01 15:31:23 thb 1.12.88.2: #i85898# Stripping all external header guards 2008/03/31 17:20:02 rt 1.12.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [d06685197a4f4be4a5d2493b1d89bd21e64c4ada]

INTEGRATION: CWS changefileheader (1.6.182); FILE MERGED 2008/03/31 17:20:02 rt 1.6.182.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [1a3f9e11a4cdfca2dba8cb5561f79d4bf3f9ed43]

INTEGRATION: CWS changefileheader (1.12.80); FILE MERGED 2008/03/31 17:20:02 rt 1.12.80.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [efe66db3c8f43e34bac9a315640d95dd6dc693c0]

INTEGRATION: CWS changefileheader (1.37.88); FILE MERGED 2008/04/01 12:37:01 thb 1.37.88.2: #i85898# Stripping all external header guards 2008/03/31 17:20:02 rt 1.37.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [aa740dc516ed1d14c8deb1c061ce0dd8f9cda397]

INTEGRATION: CWS changefileheader (1.23.34); FILE MERGED 2008/03/31 17:20:02 rt 1.23.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [4ab39db9bc16bafa35ae301f058a908e25408009]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/03/31 17:20:02 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e34590938720f814ad2ffaceecdcc1a2e6047a7b]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:20:02 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [3135165aa423abc29f5f7f898a59023935bb7829]

INTEGRATION: CWS changefileheader (1.12.88); FILE MERGED 2008/03/31 17:20:02 rt 1.12.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [c00eaaae2536802fae645cb467c48494eeb59575]

INTEGRATION: CWS changefileheader (1.73.34); FILE MERGED 2008/04/01 15:31:22 thb 1.73.34.3: #i85898# Stripping all external header guards 2008/04/01 12:37:01 thb 1.73.34.2: #i85898# Stripping all external header guards 2008/03/31 17:20:02 rt 1.73.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f8e3816b433ec0c1bd84f3fbbda04251386c2c4e]

INTEGRATION: CWS changefileheader (1.38.86); FILE MERGED 2008/03/31 17:20:02 rt 1.38.86.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [1b2b55fa558989b58fdd2b9e724b7e115209759a]

INTEGRATION: CWS changefileheader (1.26.182); FILE MERGED 2008/04/01 15:31:22 thb 1.26.182.3: #i85898# Stripping all external header guards 2008/04/01 12:37:00 thb 1.26.182.2: #i85898# Stripping all external header guards 2008/03/31 17:20:02 rt 1.26.182.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [d6340474e056102f278638fe7e067002b1ddfe93]

INTEGRATION: CWS changefileheader (1.13.80); FILE MERGED 2008/03/31 17:20:02 rt 1.13.80.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [c28c050a1fbb999cf3be70120bf2c400692cb5aa]

INTEGRATION: CWS changefileheader (1.23.64); FILE MERGED 2008/04/01 15:31:22 thb 1.23.64.2: #i85898# Stripping all external header guards 2008/03/31 17:20:02 rt 1.23.64.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [4530cc28b3c0c3514d6bfe4519884dc1374feb04]

INTEGRATION: CWS changefileheader (1.10.64); FILE MERGED 2008/03/31 17:20:01 rt 1.10.64.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [718807cff9d3486fda2a775052f8691cd824254e]

INTEGRATION: CWS changefileheader (1.65.62); FILE MERGED 2008/03/31 17:20:01 rt 1.65.62.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [6b8f67940b2f1cc6b4733ed0dabc84f35bd0775a]

INTEGRATION: CWS changefileheader (1.19.244); FILE MERGED 2008/03/31 17:20:01 rt 1.19.244.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [cb69a923ca68f7590bde776f6287e05a2679417e]

INTEGRATION: CWS changefileheader (1.35.64); FILE MERGED 2008/04/01 15:31:21 thb 1.35.64.2: #i85898# Stripping all external header guards 2008/03/31 17:20:01 rt 1.35.64.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [4ba0326e25c15fad20e2aacc2b611aa3bcb7c640]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:20:01 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [7d825da12c1d06f0f41a29a8ef71cf4bad7ecff5]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/03/31 17:20:01 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [efa719320f9bce74415f236e5e5c5a75198ffda2]

INTEGRATION: CWS changefileheader (1.16.88); FILE MERGED 2008/03/31 17:20:01 rt 1.16.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [06dc163ec3cb5a4f2a700517ec0ae11a94676c2b]

INTEGRATION: CWS changefileheader (1.17.300); FILE MERGED 2008/04/01 15:31:21 thb 1.17.300.3: #i85898# Stripping all external header guards 2008/04/01 12:37:00 thb 1.17.300.2: #i85898# Stripping all external header guards 2008/03/31 17:20:01 rt 1.17.300.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [ae412921739b6057c2bd610449c0dfbe1eae25c1]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 12:37:00 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:20:01 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f74d9f5fc1bb8c31079ecdea63dba3459257d365]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 12:37:00 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:20:01 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [1f69063777399d2a264e8c55765a114c5374d7bb]

INTEGRATION: CWS changefileheader (1.18.330); FILE MERGED 2008/03/31 17:20:01 rt 1.18.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [824e7da1432020b71be0a27f1c298dd4a285a2cc]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/04/01 12:37:00 thb 1.4.492.2: #i85898# Stripping all external header guards 2008/03/31 17:20:01 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [ecb88aabb0dd3191cf5041075c2cc0d5fac842b3]

INTEGRATION: CWS changefileheader (1.11.80); FILE MERGED 2008/03/31 17:20:01 rt 1.11.80.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e5ad4e13696a024ef1a27db61d771566173479a3]

INTEGRATION: CWS changefileheader (1.55.76); FILE MERGED 2008/03/31 17:20:00 rt 1.55.76.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [1698a745d30671669368ee33895d6980e3a104d7]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:20:00 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [b211fe15f78c6f5904d6d0100e2cba7a8ddfe3ee]

INTEGRATION: CWS changefileheader (1.43.34); FILE MERGED 2008/04/01 15:31:21 thb 1.43.34.3: #i85898# Stripping all external header guards 2008/04/01 12:37:00 thb 1.43.34.2: #i85898# Stripping all external header guards 2008/03/31 17:20:00 rt 1.43.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [8d9bd8f4326d017e69859c826373d08bee8b1e92]

INTEGRATION: CWS changefileheader (1.15.330); FILE MERGED 2008/03/31 17:20:00 rt 1.15.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e1beb86b0dd6a5b40c0c4e5236504702d82674f1]

INTEGRATION: CWS changefileheader (1.33.78); FILE MERGED 2008/04/01 15:31:20 thb 1.33.78.3: #i85898# Stripping all external header guards 2008/04/01 12:36:59 thb 1.33.78.2: #i85898# Stripping all external header guards 2008/03/31 17:20:00 rt 1.33.78.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [a9c2f6a4023288fadd0fcb327f816cb94a983317]

INTEGRATION: CWS changefileheader (1.9.96); FILE MERGED 2008/03/31 17:20:00 rt 1.9.96.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [a79cdb76c4fc36894d9649e1403cd31fea958f94]

INTEGRATION: CWS changefileheader (1.5.96); FILE MERGED 2008/03/31 17:20:00 rt 1.5.96.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [d72da3d83a282762cd4c03d20533bc2d5a9baa01]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:20:00 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [007aa33088d4dac3df1ba7856ef3a42b2984bdf4]

INTEGRATION: CWS changefileheader (1.26.224); FILE MERGED 2008/04/01 15:31:20 thb 1.26.224.2: #i85898# Stripping all external header guards 2008/03/31 17:20:00 rt 1.26.224.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [86797c1acf25ee11f5d2367c99423fc59c500996]

INTEGRATION: CWS changefileheader (1.55.86); FILE MERGED 2008/03/31 17:20:00 rt 1.55.86.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [33dc0bf81793cddf0a9fa0cad2aeb989ffa2db1d]

INTEGRATION: CWS changefileheader (1.33.86); FILE MERGED 2008/03/31 17:20:00 rt 1.33.86.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [c2501c3b6829a5d56287eab833ce83f8aa783955]

INTEGRATION: CWS changefileheader (1.14.330); FILE MERGED 2008/04/01 15:31:20 thb 1.14.330.2: #i85898# Stripping all external header guards 2008/03/31 17:20:00 rt 1.14.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [3b70fecf4aabe7b423cd90a5fd091f3a487ff43c]

INTEGRATION: CWS changefileheader (1.11.244); FILE MERGED 2008/03/31 17:20:00 rt 1.11.244.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e3e0a5614bff62a30be4da60679262f98652e7e9]

INTEGRATION: CWS changefileheader (1.16.34); FILE MERGED 2008/03/31 17:19:59 rt 1.16.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [75912b03bbcd28d7d38ef37da30d54fe412ca7b3]

INTEGRATION: CWS changefileheader (1.6.64); FILE MERGED 2008/03/31 17:19:59 rt 1.6.64.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [3c7a59aea3f7e490d06c0e706b2d4fa890476726]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:19:59 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [5155772c1bffd380887be7089e4315e873807773]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/03/31 17:19:59 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [ff9e14f777dc26974d49baa3c6c89029a1b988c0]

INTEGRATION: CWS changefileheader (1.20.64); FILE MERGED 2008/03/31 17:19:59 rt 1.20.64.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [75274ec68082d16d430065bb680fc10d8d1a7199]

INTEGRATION: CWS changefileheader (1.22.88); FILE MERGED 2008/03/31 17:19:59 rt 1.22.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [cdfa3584365d0c2257f3ad6f447c7e7d874fab8a]

INTEGRATION: CWS changefileheader (1.38.64); FILE MERGED 2008/04/01 15:31:20 thb 1.38.64.2: #i85898# Stripping all external header guards 2008/03/31 17:19:59 rt 1.38.64.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [b2329e57063d25998d67f418d76a8deeddeee078]

INTEGRATION: CWS changefileheader (1.19.136); FILE MERGED 2008/04/01 15:31:19 thb 1.19.136.2: #i85898# Stripping all external header guards 2008/03/31 17:19:59 rt 1.19.136.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [30dd9c6fc1f59f98e5394747f113496643f40f5e]

INTEGRATION: CWS changefileheader (1.15.88); FILE MERGED 2008/03/31 17:19:59 rt 1.15.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [7097cb6d6aaff5b376e98d8d7377be980cb1ff4e]

INTEGRATION: CWS changefileheader (1.92.32); FILE MERGED 2008/04/01 15:31:19 thb 1.92.32.3: #i85898# Stripping all external header guards 2008/04/01 12:36:59 thb 1.92.32.2: #i85898# Stripping all external header guards 2008/03/31 17:19:59 rt 1.92.32.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [c6495a979b5d263f63bee3e0feb967b8c67968f2]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:19:59 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [081aca6ad8ed4f0d624b1042dff5d4d56d8b9f52]

INTEGRATION: CWS changefileheader (1.39.10); FILE MERGED 2008/04/01 15:31:19 thb 1.39.10.3: #i85898# Stripping all external header guards 2008/04/01 12:36:59 thb 1.39.10.2: #i85898# Stripping all external header guards 2008/03/31 17:19:59 rt 1.39.10.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [6d59880405a594a8d5f551d4b1fcfffd46f26291]

INTEGRATION: CWS changefileheader (1.33.240); FILE MERGED 2008/03/31 17:19:58 rt 1.33.240.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [6a362ca02e10c4d6a10f24d57cce56ac1b8913a3]

INTEGRATION: CWS changefileheader (1.49.86); FILE MERGED 2008/03/31 17:19:58 rt 1.49.86.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f3b58bf7609063b61fe69f2b20b96eefeeb6b42d]

INTEGRATION: CWS changefileheader (1.30.182); FILE MERGED 2008/04/01 12:36:59 thb 1.30.182.2: #i85898# Stripping all external header guards 2008/03/31 17:19:58 rt 1.30.182.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [94711d7b87798389a4700d51f13b8f73619f72db]

INTEGRATION: CWS changefileheader (1.15.244); FILE MERGED 2008/03/31 17:19:58 rt 1.15.244.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [6c5ed09a50ea7be4222e506742eb26188184b814]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/03/31 17:19:58 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [0d4452865dcb36e7e0a3b3b01b9b77c736dec1f8]

INTEGRATION: CWS changefileheader (1.7.492); FILE MERGED 2008/03/31 17:19:58 rt 1.7.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [644eb6e8bd2b7ce24a441749301a9b10cb9b13e7]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/03/31 17:19:58 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [b5a31e34dcdb603640cd972f1bfd810d1fe23822]

INTEGRATION: CWS changefileheader (1.10.182); FILE MERGED 2008/03/31 17:19:58 rt 1.10.182.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [3a64eec479399b68a1bd50c06bd0818eba7793fa]

INTEGRATION: CWS changefileheader (1.16.62); FILE MERGED 2008/04/01 12:36:59 thb 1.16.62.2: #i85898# Stripping all external header guards 2008/03/31 17:19:58 rt 1.16.62.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [a27444be30513fc943ab81a1b6632c8508295ac5]

INTEGRATION: CWS changefileheader (1.6.182); FILE MERGED 2008/03/31 17:19:58 rt 1.6.182.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e5f6bba7c7ec2bc398a9814b87f464b6cd8d50ef]

INTEGRATION: CWS changefileheader (1.13.330); FILE MERGED 2008/03/31 17:19:58 rt 1.13.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [2b43ac27b74e062963fee5ff532d1abd37d53ac2]

INTEGRATION: CWS changefileheader (1.16.330); FILE MERGED 2008/04/01 15:31:18 thb 1.16.330.2: #i85898# Stripping all external header guards 2008/03/31 17:19:58 rt 1.16.330.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [5fc844355a4c25e361fac151cf70b1f7353c8ffe]

INTEGRATION: CWS changefileheader (1.11.182); FILE MERGED 2008/03/31 17:19:58 rt 1.11.182.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f33310d69f75968f1acb029b2c27a1e50700d60a]

INTEGRATION: CWS changefileheader (1.23.80); FILE MERGED 2008/03/31 17:19:57 rt 1.23.80.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e367b645200a19cecfff08e1ef69f1da95f8b65a]

INTEGRATION: CWS changefileheader (1.31.88); FILE MERGED 2008/03/31 17:19:57 rt 1.31.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [3a926c017ffc1c12ccfd20aed2f7a48db457ba92]

INTEGRATION: CWS changefileheader (1.49.86); FILE MERGED 2008/04/01 15:31:18 thb 1.49.86.3: #i85898# Stripping all external header guards 2008/04/01 12:36:59 thb 1.49.86.2: #i85898# Stripping all external header guards 2008/03/31 17:19:57 rt 1.49.86.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [7e9ddcc1a7d5d81a43da4e6cb3f4cadb496fee49]

INTEGRATION: CWS changefileheader (1.45.88); FILE MERGED 2008/03/31 17:19:57 rt 1.45.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [aa54cbbf85e54e8e091aa54e027b416bd9258af5]

INTEGRATION: CWS changefileheader (1.6.96); FILE MERGED 2008/03/31 17:19:57 rt 1.6.96.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [bdc696e771bf1b44ffe37cda082d41cfe1d13660]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:57 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [b5df928a151036d5a6ad37ddf0192794c11513a2]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:52 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [c1bcfa07c0a83304b23ab80c6037db09ae116871]

INTEGRATION: CWS changefileheader (1.5.124); FILE MERGED 2008/03/31 17:19:52 rt 1.5.124.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [461b971648640ce5296d385b4f7c5d733444c26c]

INTEGRATION: CWS changefileheader (1.4.86); FILE MERGED 2008/03/31 17:19:52 rt 1.4.86.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e260f2084aefbb34fd7611e9416d3547899c3d6f]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:51 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [8a66be106327020b5fe046cc10d71aa3583c651d]

INTEGRATION: CWS changefileheader (1.4.130); FILE MERGED 2008/03/31 17:19:51 rt 1.4.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [11a393dd64e9c88328bc85bf445c58abcab911ac]

INTEGRATION: CWS changefileheader (1.5.88); FILE MERGED 2008/03/31 17:19:51 rt 1.5.88.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [e1062daf25c67e9352b6b95c4aee5c1370a3e2fb]

INTEGRATION: CWS changefileheader (1.4.86); FILE MERGED 2008/03/31 17:19:51 rt 1.4.86.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [644274ed3233d472d8127cd1e139b24e83a6ee3e]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:51 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [9956671d2d4e8c982f9803acbaeb7013147cec25]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:50 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [1263c1dbe7bf715b3d8f25c086f2070c49b64172]

INTEGRATION: CWS changefileheader (1.3.124); FILE MERGED 2008/03/31 17:19:50 rt 1.3.124.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [bcb567df6fb6715be991411e78f18c634243c11f]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:50 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [0295feacb115e490fb895178ba6c61badb7c0683]

INTEGRATION: CWS changefileheader (1.4.124); FILE MERGED 2008/03/31 17:19:50 rt 1.4.124.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f751289789b7372774998e81916ec048b2bd72f4]

INTEGRATION: CWS changefileheader (1.7.34); FILE MERGED 2008/03/31 17:19:50 rt 1.7.34.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [a434b0884b86670eee15b23a075860206e3e1047]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:49 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [f13b1c0c6fc0bebb7d64cec0f322e122dbf7f5eb]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:49 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [d2901fd0b72a2856c871258f74c8c1d3cc374240]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:48 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [a569240f70324740878c459aa457e0d0553fb3c8]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:48 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [0bd171fd90f52e7e4d2f154cf55b4ad1f1c40004]

INTEGRATION: CWS changefileheader (1.3.124); FILE MERGED 2008/03/31 17:19:48 rt 1.3.124.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [edb183645deee5bf179b57a62a99dae307a1de39]

INTEGRATION: CWS changefileheader (1.4.130); FILE MERGED 2008/03/31 17:19:48 rt 1.4.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [c7f7782103b2c3bb24c0bceeb2bd100cb3618ff0]

INTEGRATION: CWS changefileheader (1.4.86); FILE MERGED 2008/03/31 17:19:48 rt 1.4.86.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [ed237da157317c074be6eac4d82be64ab0c4a899]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:47 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [12a861e5aee635a81fc3d4f9f2bda58281c27f31]

INTEGRATION: CWS changefileheader (1.3.124); FILE MERGED 2008/03/31 17:19:47 rt 1.3.124.1: #i87441# Change license header to LPGL v3.


2008-04-11  Rüdiger Timm  <rt@openoffice.org>  [85540d72db99b0fd9bf61737a02b4d628047f4f6]

INTEGRATION: CWS changefileheader (1.4.88); FILE MERGED 2008/03/31 17:19:47 rt 1.4.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ee27cda637f9d50f99c50dc4af9dcad6b88f1b9e]

INTEGRATION: CWS changefileheader (1.6.88); FILE MERGED 2008/03/31 17:19:47 rt 1.6.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [75a7ce165914c8fd4bac2b50f2da40eaa5af23b0]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:47 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3cd83c25ec8be7d8f35abceed6a9cdb1bca2caa8]

INTEGRATION: CWS changefileheader (1.4.130); FILE MERGED 2008/03/31 17:19:47 rt 1.4.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [635201de75602a705db182e88b620bd2275a791d]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:46 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [57f98ccb0e638c69869435df0276c6a19c590c5f]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:46 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [69627c7f8a7f986d0d4a9ee255b152bf71f3a599]

INTEGRATION: CWS changefileheader (1.4.130); FILE MERGED 2008/03/31 17:19:46 rt 1.4.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [07f6af8d4d42c34673f422e8c464a835ff61c093]

INTEGRATION: CWS changefileheader (1.4.124); FILE MERGED 2008/03/31 17:19:46 rt 1.4.124.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [33c29b2316c0aeb76452bf535644f51c94301af5]

INTEGRATION: CWS changefileheader (1.2.300); FILE MERGED 2008/03/31 17:19:46 rt 1.2.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f095e31b1b62161c7ffa59c18450645b525e73a5]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:45 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c12ba6f614f6f9145c157cecd60a220822935866]

INTEGRATION: CWS changefileheader (1.5.88); FILE MERGED 2008/03/31 17:19:45 rt 1.5.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [80e0a1c756282c827559da9c811e3a2216a7f699]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:45 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6baad639e61bbcd89956b5e5fbdaca021b0f7df8]

INTEGRATION: CWS changefileheader (1.5.124); FILE MERGED 2008/03/31 17:19:45 rt 1.5.124.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1b9d6d75e970dffc23c42129e6a1e1af43311bbb]

INTEGRATION: CWS changefileheader (1.2.130); FILE MERGED 2008/03/31 17:19:44 rt 1.2.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e466868d765e8c41dbe685ea6b5f67254700305d]

INTEGRATION: CWS changefileheader (1.3.130); FILE MERGED 2008/03/31 17:19:44 rt 1.3.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3b844596062477ceb78462cb125ddd31b5e41a63]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/03/31 17:19:44 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d15b757bdfec3701e10d1f6d24d17df570fdbad0]

INTEGRATION: CWS changefileheader (1.5.130); FILE MERGED 2008/03/31 17:19:44 rt 1.5.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c5d454e8943c1ac4e980114d27cf97bd6e0f85c1]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/04/01 15:31:17 thb 1.4.492.3: #i85898# Stripping all external header guards 2008/04/01 12:36:58 thb 1.4.492.2: #i85898# Stripping all external header guards 2008/03/31 17:19:36 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e1cf5573f4f9b7f9f93208141371617341bd873e]

INTEGRATION: CWS changefileheader (1.35.64); FILE MERGED 2008/04/01 15:31:17 thb 1.35.64.3: #i85898# Stripping all external header guards 2008/04/01 12:36:58 thb 1.35.64.2: #i85898# Stripping all external header guards 2008/03/31 17:19:36 rt 1.35.64.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [48b2ebecb91143426aaf8e8824975798e2081585]

INTEGRATION: CWS changefileheader (1.2.292); FILE MERGED 2008/03/31 17:19:36 rt 1.2.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [82f66e6e41cd95d07aea7d0dd28ccfc1d73cd4ab]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:19:35 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5aa04aa1f10960e770bfd390dffa473b81605e54]

INTEGRATION: CWS changefileheader (1.10.34); FILE MERGED 2008/04/01 15:31:17 thb 1.10.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:58 thb 1.10.34.2: #i85898# Stripping all external header guards 2008/03/31 17:19:35 rt 1.10.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5d4d6c4e61dc2cb44645d7d0cb0986dc6a85fcd8]

INTEGRATION: CWS changefileheader (1.3.32); FILE MERGED 2008/03/31 17:19:35 rt 1.3.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f1dd1905175197fcca174ded91ed8918503b16be]

INTEGRATION: CWS changefileheader (1.24.300); FILE MERGED 2008/04/01 15:31:17 thb 1.24.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:58 thb 1.24.300.2: #i85898# Stripping all external header guards 2008/03/31 17:19:35 rt 1.24.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e3d6748d837236e7a0e7df552b7536d91253e5db]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:31:17 thb 1.8.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:58 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:19:35 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [632e560d7eb12ff2d453b91c8b93bb346b9e3d40]

INTEGRATION: CWS changefileheader (1.42.24); FILE MERGED 2008/03/31 17:19:35 rt 1.42.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a55ae4a4bba2caeb9c9bcf2ad55aeb2ba036d8ee]

INTEGRATION: CWS changefileheader (1.7.300); FILE MERGED 2008/03/31 17:19:35 rt 1.7.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [61f4890167ff95c39faed051ff430b0d4e18e8e4]

INTEGRATION: CWS changefileheader (1.20.88); FILE MERGED 2008/03/31 17:19:35 rt 1.20.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6579498f0c3a4a6872fff48b5cb35e65f9c6a4ad]

INTEGRATION: CWS changefileheader (1.16.96); FILE MERGED 2008/04/01 15:31:16 thb 1.16.96.3: #i85898# Stripping all external header guards 2008/04/01 12:36:58 thb 1.16.96.2: #i85898# Stripping all external header guards 2008/03/31 17:19:35 rt 1.16.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d728bdeb8c49463c05953906ce2f1f443192fb33]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:31:16 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:57 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:19:35 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9cbcc3422c7549b358e38f29cdf602fb538689c8]

INTEGRATION: CWS changefileheader (1.22.24); FILE MERGED 2008/04/01 15:31:16 thb 1.22.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:57 thb 1.22.24.2: #i85898# Stripping all external header guards 2008/03/31 17:19:35 rt 1.22.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d6276a3b0ac9a7bbbbccbf882bb1649c7c737006]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/03/31 17:19:35 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f967de7268481a692dc309c774ed2141ecbb63ab]

INTEGRATION: CWS changefileheader (1.8.320); FILE MERGED 2008/03/31 17:19:35 rt 1.8.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6f58135e5b9adcbe31bcd126e40d3c9d07bb799b]

INTEGRATION: CWS changefileheader (1.10.88); FILE MERGED 2008/04/01 15:31:16 thb 1.10.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:57 thb 1.10.88.2: #i85898# Stripping all external header guards 2008/03/31 17:19:35 rt 1.10.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [adf97c178b0c8068b77408271f2ad325e8e1977b]

INTEGRATION: CWS changefileheader (1.20.32); FILE MERGED 2008/03/31 17:19:35 rt 1.20.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3413507721ed244798f301c22ef52026835208f1]

INTEGRATION: CWS changefileheader (1.13.320); FILE MERGED 2008/03/31 17:19:35 rt 1.13.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c559eec471a5e663d515b5d17644f05eb378fc27]

INTEGRATION: CWS changefileheader (1.20.34); FILE MERGED 2008/03/31 17:19:35 rt 1.20.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [221737a15003598a9137719e1a1e4fc9cb035247]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:19:34 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ad8695b216bb1a0f07bfc608785c6822019c2cfe]

INTEGRATION: CWS changefileheader (1.17.96); FILE MERGED 2008/03/31 17:19:34 rt 1.17.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2aabbfcd52e0ec3a049435a96fe90ac9582a54be]

INTEGRATION: CWS changefileheader (1.20.34); FILE MERGED 2008/03/31 17:19:34 rt 1.20.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6388b2454263e8debd480422c2bd2d8f3c17d85b]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/03/31 17:19:34 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [df2e49ce5ee0f87874dafb37f50ad4269a8976f0]

INTEGRATION: CWS changefileheader (1.17.34); FILE MERGED 2008/03/31 17:19:34 rt 1.17.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9e54997f36ac8f4cf7d9d0ce946a787f587c4632]

INTEGRATION: CWS changefileheader (1.13.300); FILE MERGED 2008/03/31 17:19:34 rt 1.13.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4a184d0a4568eb955fff84830e6934cee7160409]

INTEGRATION: CWS changefileheader (1.17.300); FILE MERGED 2008/04/01 15:31:16 thb 1.17.300.2: #i85898# Stripping all external header guards 2008/03/31 17:19:34 rt 1.17.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8b62256a36ff86b4bf2300fde808742ca95b0a4e]

INTEGRATION: CWS changefileheader (1.25.300); FILE MERGED 2008/04/01 12:36:57 thb 1.25.300.2: #i85898# Stripping all external header guards 2008/03/31 17:19:34 rt 1.25.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [824f9c4c5419cb9aa6e0ff2a4be690970e9a5b21]

INTEGRATION: CWS changefileheader (1.66.34); FILE MERGED 2008/04/01 15:31:15 thb 1.66.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:57 thb 1.66.34.2: #i85898# Stripping all external header guards 2008/03/31 17:19:34 rt 1.66.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6acb9cce88e420195ed7e77d3dedca3f93f8437c]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/03/31 17:19:34 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [401034511a3fa4ad9090e65fd8911564ddd8ec8a]

INTEGRATION: CWS changefileheader (1.8.24); FILE MERGED 2008/04/01 15:31:15 thb 1.8.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:57 thb 1.8.24.2: #i85898# Stripping all external header guards 2008/03/31 17:19:34 rt 1.8.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [85251f5e5c402ee3d206daf78d02852646e134e8]

INTEGRATION: CWS changefileheader (1.11.320); FILE MERGED 2008/03/31 17:19:34 rt 1.11.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b35f23d6509e45dbb7f442c583581f3dda04b735]

INTEGRATION: CWS changefileheader (1.29.96); FILE MERGED 2008/04/01 15:31:15 thb 1.29.96.3: #i85898# Stripping all external header guards 2008/04/01 12:36:57 thb 1.29.96.2: #i85898# Stripping all external header guards 2008/03/31 17:19:34 rt 1.29.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [18864c16f1af4531f042ca4ee9740af6b73b5e16]

INTEGRATION: CWS changefileheader (1.20.134); FILE MERGED 2008/04/01 15:31:15 thb 1.20.134.3: #i85898# Stripping all external header guards 2008/04/01 12:36:57 thb 1.20.134.2: #i85898# Stripping all external header guards 2008/03/31 17:19:33 rt 1.20.134.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [77b5888115af7cc3406c878909affe216308348a]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/03/31 17:19:33 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2a09f9e113694f8f1f3f56a6e11efa4ba890a2bc]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/03/31 17:19:33 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [07d0dd2bae547d3459faab73bba5fc0f04b69781]

INTEGRATION: CWS changefileheader (1.30.34); FILE MERGED 2008/04/01 15:31:15 thb 1.30.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:57 thb 1.30.34.2: #i85898# Stripping all external header guards 2008/03/31 17:19:33 rt 1.30.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a66e183fcf6121d17d2a4191819327db56c05c88]

INTEGRATION: CWS changefileheader (1.20.292); FILE MERGED 2008/04/01 12:36:57 thb 1.20.292.2: #i85898# Stripping all external header guards 2008/03/31 17:19:33 rt 1.20.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0398d6888f117a7d12c816247311054bc11b9770]

INTEGRATION: CWS changefileheader (1.8.226); FILE MERGED 2008/04/01 15:31:15 thb 1.8.226.3: #i85898# Stripping all external header guards 2008/04/01 12:36:56 thb 1.8.226.2: #i85898# Stripping all external header guards 2008/03/31 17:19:33 rt 1.8.226.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [58040fd4d171a0a81569ad91029b7b8b23dfd49d]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:31:14 thb 1.5.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:56 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:19:33 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [095e394fa76105ff46c40e84a380367f5138d2b7]

INTEGRATION: CWS changefileheader (1.10.320); FILE MERGED 2008/04/01 15:31:14 thb 1.10.320.3: #i85898# Stripping all external header guards 2008/04/01 12:36:56 thb 1.10.320.2: #i85898# Stripping all external header guards 2008/03/31 17:19:33 rt 1.10.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0e579acfb8e329460fc1be38a5309f30c607fa72]

INTEGRATION: CWS changefileheader (1.112.24); FILE MERGED 2008/03/31 17:19:33 rt 1.112.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b293f65ab822aa13ac299fd3ea6319d7993c1e3e]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/04/01 15:31:14 thb 1.9.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:56 thb 1.9.330.2: #i85898# Stripping all external header guards 2008/03/31 17:19:33 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bbb2b1b123f7f8c38b1d724b0c4888e9658cadf5]

INTEGRATION: CWS changefileheader (1.24.34); FILE MERGED 2008/04/01 15:31:14 thb 1.24.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:56 thb 1.24.34.2: #i85898# Stripping all external header guards 2008/03/31 17:19:33 rt 1.24.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [339e32b8f1a4a5c7881f04753a3df4a83efb80a5]

INTEGRATION: CWS changefileheader (1.15.300); FILE MERGED 2008/04/01 15:31:14 thb 1.15.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:56 thb 1.15.300.2: #i85898# Stripping all external header guards 2008/03/31 17:19:32 rt 1.15.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [547d6c13990f254d317b0b1f924f738c269ff388]

INTEGRATION: CWS changefileheader (1.8.320); FILE MERGED 2008/03/31 17:19:32 rt 1.8.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1c58644eaec60d0179aabf2b9a4817154a539277]

INTEGRATION: CWS changefileheader (1.2.292); FILE MERGED 2008/03/31 17:19:32 rt 1.2.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cb781c8f4304c5c5bf46c4a72e43b6072a50790d]

INTEGRATION: CWS changefileheader (1.7.64); FILE MERGED 2008/03/31 17:19:32 rt 1.7.64.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1689492afc273eb53f815f1b9486fc3c7953e448]

INTEGRATION: CWS changefileheader (1.18.62); FILE MERGED 2008/03/31 17:19:32 rt 1.18.62.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b40bd2231dd625978d1225fa8df66c8d4a4e3f05]

INTEGRATION: CWS changefileheader (1.8.24); FILE MERGED 2008/03/31 17:19:32 rt 1.8.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0ad13595c0351fad2e8df5775b7c56f00989fcf0]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:19:32 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2a8b0f3690f33f76c82050886812d7097deb3350]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:19:32 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [89660c2bfc212c3287d8179f547b6b77f7ddb969]

INTEGRATION: CWS changefileheader (1.11.88); FILE MERGED 2008/03/31 17:19:32 rt 1.11.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ee7d6a72f45cf25bd638391ffa1e73e711bac3d2]

INTEGRATION: CWS changefileheader (1.14.88); FILE MERGED 2008/03/31 17:19:32 rt 1.14.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [60225c7c1669e033d67bf6cf57c5102954a2a2e8]

INTEGRATION: CWS changefileheader (1.21.64); FILE MERGED 2008/03/31 17:19:32 rt 1.21.64.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e7b761240117735b2341e1be3af58b1f6d9e90cc]

INTEGRATION: CWS changefileheader (1.11.64); FILE MERGED 2008/03/31 17:19:32 rt 1.11.64.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [64870b63a6360cf518e85eb8da78934bb3fbc138]

INTEGRATION: CWS changefileheader (1.26.64); FILE MERGED 2008/03/31 17:19:32 rt 1.26.64.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d8c9eec8477315bf78b952477cdf9f169309ebf1]

INTEGRATION: CWS changefileheader (1.8.492); FILE MERGED 2008/03/31 17:19:31 rt 1.8.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c12061cc58f09d8196ca1d578d038e6fff1ad4b4]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/03/31 17:19:31 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c275a7016a5a6916f01d43c3248083dd2778c875]

INTEGRATION: CWS changefileheader (1.5.292); FILE MERGED 2008/03/31 17:19:31 rt 1.5.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d9fd84cacb7c5a26f0779bdf5d38300338f3719d]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/03/31 17:19:31 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fcff014fbd47e590bed9f1f80695ce5452e518c0]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:19:31 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1f32a2f76eeebf975d7ba5ffddf09be98fb75665]

INTEGRATION: CWS changefileheader (1.36.302); FILE MERGED 2008/03/31 17:19:31 rt 1.36.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d337a2595eee67a9ef5a4dddd2b6bc7e186654d4]

INTEGRATION: CWS changefileheader (1.10.492); FILE MERGED 2008/04/01 15:31:13 thb 1.10.492.2: #i85898# Stripping all external header guards 2008/03/31 17:19:31 rt 1.10.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [24e125572921ff2679a19da28a8667a9619ab578]

INTEGRATION: CWS changefileheader (1.26.302); FILE MERGED 2008/03/31 17:19:31 rt 1.26.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [35f5e79bb5fe7d062d18d00a5ef2e1e6433ed075]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/03/31 17:19:31 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6346e1c74a9852b57b4a33df0bf7bfba2380a277]

INTEGRATION: CWS changefileheader (1.76.292); FILE MERGED 2008/03/31 17:16:54 rt 1.76.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c2be9caa9a6f079311a409274e9fc98fd6083f02]

INTEGRATION: CWS changefileheader (1.29.302); FILE MERGED 2008/03/31 17:16:54 rt 1.29.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [732cef17fb106c1735df1ea141ca65b9411e4329]

INTEGRATION: CWS changefileheader (1.27.302); FILE MERGED 2008/03/31 17:16:54 rt 1.27.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bc6dc74df5c695e6a7146b0bf69dcd58f540ecd8]

INTEGRATION: CWS changefileheader (1.40.302); FILE MERGED 2008/03/31 17:16:54 rt 1.40.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d74765b9c61474ec6e582282ddd87e6fdde2e3c4]

INTEGRATION: CWS changefileheader (1.41.302); FILE MERGED 2008/03/31 17:16:54 rt 1.41.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9330516d91c77a1bf992f0b42396abfd13343c1c]

INTEGRATION: CWS changefileheader (1.29.302); FILE MERGED 2008/03/31 17:16:53 rt 1.29.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4eb93520011321ca345f90a721d0b3690db938a3]

INTEGRATION: CWS changefileheader (1.2.80); FILE MERGED 2008/03/31 17:16:53 rt 1.2.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [73c9ba7e472588f02ea761add967d3cf060c3e60]

INTEGRATION: CWS changefileheader (1.21.302); FILE MERGED 2008/03/31 17:16:53 rt 1.21.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [874346f0c43685583b04a29a4856a0009b0a4432]

INTEGRATION: CWS changefileheader (1.23.302); FILE MERGED 2008/03/31 17:16:53 rt 1.23.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [62b15e480bc9822b6715ffd30d320092796306e8]

INTEGRATION: CWS changefileheader (1.88.178); FILE MERGED 2008/03/31 17:16:53 rt 1.88.178.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ac3cf8bf6e874e36f614f128f98a84d1913026bf]

INTEGRATION: CWS changefileheader (1.93.34); FILE MERGED 2008/03/31 17:16:52 rt 1.93.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [66e770877201ff7ffb263ecb19ef4f6cbb2eb5d4]

INTEGRATION: CWS changefileheader (1.50.302); FILE MERGED 2008/03/31 17:16:51 rt 1.50.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ba7902bcef7a188c38dbc36c9bd0d2e31ee1329d]

INTEGRATION: CWS changefileheader (1.25.302); FILE MERGED 2008/03/31 17:16:51 rt 1.25.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d544c270ff502d92d18908dcb5316e6b23b98e09]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:16:51 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cd1c0ed46fd9c40592ebfb1c6a1d033df7c6822a]

INTEGRATION: CWS changefileheader (1.57.244); FILE MERGED 2008/03/31 17:16:51 rt 1.57.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9dc39efa8c875aad44013c94ed8acfbeb142a093]

INTEGRATION: CWS changefileheader (1.2.80); FILE MERGED 2008/03/31 17:16:51 rt 1.2.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f709efbcb11c29174ce2705d1d0347d28878a38b]

INTEGRATION: CWS changefileheader (1.67.136); FILE MERGED 2008/03/31 17:16:51 rt 1.67.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9a5f341fd094c36d3815f84aa6a12d6cb02220fd]

INTEGRATION: CWS changefileheader (1.36.302); FILE MERGED 2008/03/31 17:16:51 rt 1.36.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [94bcf722053b0dca859235fa7898cb060645a674]

INTEGRATION: CWS changefileheader (1.35.302); FILE MERGED 2008/03/31 17:16:51 rt 1.35.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [74153cf4745b09b4a1895d36264094252302f6f9]

INTEGRATION: CWS changefileheader (1.73.244); FILE MERGED 2008/03/31 17:16:51 rt 1.73.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9fa55c170afa8bf31fd475295a93bb7673926c4e]

INTEGRATION: CWS changefileheader (1.10.80); FILE MERGED 2008/03/31 17:16:51 rt 1.10.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a13db3fa361a83d12494a64c6f0a2b8779b8e7ea]

INTEGRATION: CWS changefileheader (1.34.302); FILE MERGED 2008/03/31 17:16:18 rt 1.34.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [624196cceff3ca795f51742d45b7074055f673d9]

INTEGRATION: CWS changefileheader (1.72.34); FILE MERGED 2008/03/31 17:16:17 rt 1.72.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [41bc89ee9e2c0bd2d12c1d06a6a257f120a05520]

INTEGRATION: CWS changefileheader (1.57.302); FILE MERGED 2008/03/31 17:16:17 rt 1.57.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a8c1391c10a495bed855c397f7c909ad7edfaf4a]

INTEGRATION: CWS changefileheader (1.45.302); FILE MERGED 2008/03/31 17:16:17 rt 1.45.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [52589da701712dba754c13f889c65b1d4d59a2cb]

INTEGRATION: CWS changefileheader (1.44.302); FILE MERGED 2008/03/31 17:16:17 rt 1.44.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c60529ca22f8c5fef02f3dcff68ead418bcfe91a]

INTEGRATION: CWS changefileheader (1.31.302); FILE MERGED 2008/03/31 17:16:17 rt 1.31.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a8447a2455e335c7f89a7daf709394e512c4c64f]

INTEGRATION: CWS changefileheader (1.43.302); FILE MERGED 2008/03/31 17:16:17 rt 1.43.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a43c3de8b311d33c66039823209524f811578c90]

INTEGRATION: CWS changefileheader (1.55.302); FILE MERGED 2008/03/31 17:16:17 rt 1.55.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0efb69ff980bf516e1be70219ec3611c1ea2a611]

INTEGRATION: CWS changefileheader (1.12.300); FILE MERGED 2008/03/31 17:16:15 rt 1.12.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [72f3bed91e3318fc0920fce21737353bc3d02faf]

INTEGRATION: CWS changefileheader (1.19.176); FILE MERGED 2008/04/01 12:36:56 thb 1.19.176.2: #i85898# Stripping all external header guards 2008/03/31 17:16:15 rt 1.19.176.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d4348403ffd925a562766790ccfb1bc7390fc77c]

INTEGRATION: CWS changefileheader (1.24.302); FILE MERGED 2008/03/31 17:16:15 rt 1.24.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f69d43eec2ba918957078bd888e972ebc9952e53]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/03/31 17:16:15 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e20005f77e1d8ffa7f812b3e0b62667516fd11a9]

INTEGRATION: CWS changefileheader (1.10.176); FILE MERGED 2008/04/01 12:36:55 thb 1.10.176.2: #i85898# Stripping all external header guards 2008/03/31 17:16:15 rt 1.10.176.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9124629dba1f8022742d002d084727f28d151937]

INTEGRATION: CWS changefileheader (1.53.302); FILE MERGED 2008/03/31 17:16:15 rt 1.53.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [500d2c779d46c16bc9f5c093787d7b44e4e5b4e0]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/03/31 17:16:15 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6fbd9a7e9cc167f8bc6d5aad431635df965d8cd8]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/03/31 17:16:15 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fab7e3ad4c91bc758ee3f82dec032c4b4cf06946]

INTEGRATION: CWS changefileheader (1.46.240); FILE MERGED 2008/03/31 17:16:14 rt 1.46.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [56d5d93fb16c6381d61b077abe59fe4774146597]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/03/31 17:16:14 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c786f067902b22b38d36a009b23f5202575eaccb]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:16:14 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1a298c8668c0e7d0ba1fd6ca8e2dc9bd3ccb811e]

INTEGRATION: CWS changefileheader (1.14.330); FILE MERGED 2008/04/01 12:36:55 thb 1.14.330.2: #i85898# Stripping all external header guards 2008/03/31 17:16:14 rt 1.14.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [140c0b47b6296663464962be951fc4280e3bcdbb]

INTEGRATION: CWS changefileheader (1.19.136); FILE MERGED 2008/04/01 12:36:55 thb 1.19.136.2: #i85898# Stripping all external header guards 2008/03/31 17:16:14 rt 1.19.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [11e993c8c77ab0885f70f2ed3eaab9ffbc3c4aba]

INTEGRATION: CWS changefileheader (1.10.88); FILE MERGED 2008/03/31 17:16:14 rt 1.10.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2dbdd7d3f08557eb7bf24832952687893e7929f5]

INTEGRATION: CWS changefileheader (1.8.136); FILE MERGED 2008/03/31 17:16:14 rt 1.8.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [97d50f97fdf3d62b49000f8fd665d8110f3269be]

INTEGRATION: CWS changefileheader (1.16.328); FILE MERGED 2008/03/31 17:16:14 rt 1.16.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e0cf8a13b99c1568d29c482b8fb157fd31ab8de1]

INTEGRATION: CWS changefileheader (1.9.300); FILE MERGED 2008/03/31 17:16:14 rt 1.9.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [660dc46f242aa371ec8fec059d259a491b48a234]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/03/31 17:16:14 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a35249bad3ed2df9165270fc24f21582fe7c7b3f]

INTEGRATION: CWS changefileheader (1.8.10); FILE MERGED 2008/03/31 17:16:14 rt 1.8.10.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [098a72a2a89cc61b36c0b94a6354f635a28b19a8]

INTEGRATION: CWS changefileheader (1.45.302); FILE MERGED 2008/03/31 17:16:13 rt 1.45.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4c3398cbd137c2f25aa2f3ad4dd3f05c1eebf528]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:16:13 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a6d52815fec4f0eab38031f0ee279899555b20e1]

INTEGRATION: CWS changefileheader (1.21.328); FILE MERGED 2008/04/01 12:36:55 thb 1.21.328.2: #i85898# Stripping all external header guards 2008/03/31 17:16:13 rt 1.21.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [afa906c450d8a8adb650eda5e65bc4cf00ec691b]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/03/31 17:16:13 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a79d3a6ba1498ca5befe88d935719cb6fe4d37bc]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/03/31 17:16:13 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3415e76c95e729e3798912cda5e8f4cb2450004b]

INTEGRATION: CWS changefileheader (1.24.88); FILE MERGED 2008/03/31 17:16:13 rt 1.24.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [21554928cfd4f9781c57335a8495b6549d73638e]

INTEGRATION: CWS changefileheader (1.9.10); FILE MERGED 2008/04/01 15:31:13 thb 1.9.10.2: #i85898# Stripping all external header guards 2008/03/31 17:16:13 rt 1.9.10.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b73f758fe75fc4888182d869b403003a71962339]

INTEGRATION: CWS changefileheader (1.3.34); FILE MERGED 2008/03/31 17:16:13 rt 1.3.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [97cea1da570d04468ad9f073cbdb2f679642b022]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/04/01 12:36:52 thb 1.5.492.2: #i85898# Stripping all external header guards 2008/03/31 17:16:07 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7c8c9558989f3bf73a922a449029b462474a5f76]

INTEGRATION: CWS changefileheader (1.10.300); FILE MERGED 2008/03/31 17:16:07 rt 1.10.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b07730c4cff751562e94be77a4d38c66186dead9]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:16:07 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [db11fd46623034eb5386be2b22c977816ad08ab5]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/03/31 17:16:07 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d77039661ccd4790a854295869340c58894936ea]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/03/31 17:16:07 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [31be710968d7332e9aca9784be9235d409dca8a3]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/03/31 17:16:07 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0e85be28d8f6446d3cfde8c51f99ec43149dda2c]

INTEGRATION: CWS changefileheader (1.2.80); FILE MERGED 2008/03/31 17:16:07 rt 1.2.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f89ad0ff9fa2a20cbcd71a04be8189627e5be6ef]

INTEGRATION: CWS changefileheader (1.10.292); FILE MERGED 2008/03/31 17:16:07 rt 1.10.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5e852c1acabf64d09d7bf2b4ad362b0e2185ec5d]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/31 17:16:06 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [46b159658b7f6d2d4ee5c985663f20c06790f04d]

INTEGRATION: CWS changefileheader (1.3.34); FILE MERGED 2008/03/31 17:16:06 rt 1.3.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7be40e5b9ee309dbef9c7636c3e566e4aed431ef]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:16:06 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f5262a2bb62bf91d91c21703a94a0ca5b0ee4068]

INTEGRATION: CWS changefileheader (1.10.300); FILE MERGED 2008/04/01 15:31:10 thb 1.10.300.2: #i85898# Stripping all external header guards 2008/03/31 17:16:06 rt 1.10.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f097a457e996d8aa76cd95f554bd92ea3f1f0c44]

INTEGRATION: CWS changefileheader (1.2.80); FILE MERGED 2008/03/31 17:16:06 rt 1.2.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b0b6a8b51fe018c1ff18f049923d1ff8b71ac5d2]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/03/31 17:16:06 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bf035aae44d65dbcd410070f79d94f62f6b500cd]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:16:06 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8159e484df0ed4c3fdb535069348918b876717c8]

INTEGRATION: CWS changefileheader (1.12.34); FILE MERGED 2008/03/31 17:16:06 rt 1.12.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [de779deaded86e1ecc5396b6da3865cc5e63ea84]

INTEGRATION: CWS changefileheader (1.31.244); FILE MERGED 2008/03/31 17:16:06 rt 1.31.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [022dcf53e2c1bd664736a72622ab3f6141e1ab1f]

INTEGRATION: CWS changefileheader (1.16.244); FILE MERGED 2008/04/01 15:31:09 thb 1.16.244.2: #i85898# Stripping all external header guards 2008/03/31 17:16:06 rt 1.16.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6eef9df9efebcda6af097be852349b2b28f81781]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:16:06 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [786f1d7659c690f871472e0a35f21d40832cabcb]

INTEGRATION: CWS changefileheader (1.35.302); FILE MERGED 2008/03/31 17:16:06 rt 1.35.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fe8fc13086552d42ac23f9ede14e93afde80dbd9]

INTEGRATION: CWS changefileheader (1.13.330); FILE MERGED 2008/04/01 15:31:09 thb 1.13.330.2: #i85898# Stripping all external header guards 2008/03/31 17:16:06 rt 1.13.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7b39a71bf6041aa1aa8d997fa32915e5a9695b4e]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:16:05 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [985a776d814054efafaee996083f6acc5637a300]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:16:05 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [745fd0ed8b4cb2171f7709e11c8bee4e3ea88c13]

INTEGRATION: CWS changefileheader (1.32.302); FILE MERGED 2008/03/31 17:16:05 rt 1.32.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1a9d519abc5ee265531c140b9e30c52fb8cc28a7]

INTEGRATION: CWS changefileheader (1.12.300); FILE MERGED 2008/04/01 15:31:09 thb 1.12.300.2: #i85898# Stripping all external header guards 2008/03/31 17:16:05 rt 1.12.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [66f214b1edc2fa7d7e6f04c891ff47a978ed22e5]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/03/31 17:16:05 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cfcbc39218d9f99c572e091cdfd298204cbf7a23]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/04/01 15:31:09 thb 1.9.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:52 thb 1.9.330.2: #i85898# Stripping all external header guards 2008/03/31 17:16:05 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9689a155e192859fe6da845632c75e07a7950d66]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/31 17:16:05 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e2ec3f4c5088a3b6bc7204ecc23a008e23ffdbd6]

INTEGRATION: CWS changefileheader (1.17.300); FILE MERGED 2008/03/31 17:16:05 rt 1.17.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3d256f65dcd530c31480c08ed0d9cfff4c8ba53b]

INTEGRATION: CWS changefileheader (1.20.80); FILE MERGED 2008/03/31 17:16:05 rt 1.20.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2a0998262378a8a12cf370370799b4ec5ca2259d]

INTEGRATION: CWS changefileheader (1.34.302); FILE MERGED 2008/03/31 17:16:05 rt 1.34.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c861e66a9ea7b0a32f6bf1cedf81ba118a46a7bb]

INTEGRATION: CWS changefileheader (1.24.146); FILE MERGED 2008/04/01 15:31:09 thb 1.24.146.2: #i85898# Stripping all external header guards 2008/03/31 17:16:05 rt 1.24.146.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [666bb127bcd351b1cb276f76ee64453809633c73]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:31:04 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9bae1b4e11c1120736af03b5fb9242167e35909e]

INTEGRATION: CWS changefileheader (1.11.660); FILE MERGED 2008/04/01 15:31:04 thb 1.11.660.3: #i85898# Stripping all external header guards 2008/04/01 12:36:50 thb 1.11.660.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.11.660.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a00ee744a616e6670d4089fc00fb08ce9c07128c]

INTEGRATION: CWS changefileheader (1.33.224); FILE MERGED 2008/04/01 12:36:50 thb 1.33.224.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.33.224.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b9e7ebc336649f93d8ffdafc9923849a1f39612a]

INTEGRATION: CWS changefileheader (1.22.96); FILE MERGED 2008/04/01 15:31:04 thb 1.22.96.3: #i85898# Stripping all external header guards 2008/04/01 12:36:50 thb 1.22.96.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.22.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2a4b1769b91faed7594f2edc292431c189464006]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:31:03 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fdd25f358fa2ff0e8a37c0d574c34d74544fc61b]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:15:51 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0c76f0f0583bc32a280bc997be72543fe8f51d38]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:31:03 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:50 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8e52beaa52442337f083dffcf221410c869a9690]

INTEGRATION: CWS changefileheader (1.9.430); FILE MERGED 2008/04/01 15:31:03 thb 1.9.430.3: #i85898# Stripping all external header guards 2008/04/01 12:36:50 thb 1.9.430.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.9.430.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b94f51bc37ab2cc3c0dca33eac301e599c481ca1]

INTEGRATION: CWS changefileheader (1.4.698); FILE MERGED 2008/04/01 15:31:03 thb 1.4.698.3: #i85898# Stripping all external header guards 2008/04/01 12:36:50 thb 1.4.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.4.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [830d7120c2fe3726b9a105b1c63ff0aefee071ee]

INTEGRATION: CWS changefileheader (1.3.638); FILE MERGED 2008/04/01 15:31:03 thb 1.3.638.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.3.638.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [179d8b6e66b2e3155e5ae14fe929186ca2263316]

INTEGRATION: CWS changefileheader (1.2.698); FILE MERGED 2008/04/01 15:31:03 thb 1.2.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.2.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cc50680fef28a2931d624f119c9fd0352a69f2d3]

INTEGRATION: CWS changefileheader (1.7.698); FILE MERGED 2008/04/01 12:36:50 thb 1.7.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.7.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9a5ab34df699ade8e29883c213e7a9e3138de2f9]

INTEGRATION: CWS changefileheader (1.4.698); FILE MERGED 2008/04/01 12:36:50 thb 1.4.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.4.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [071e31354a51569f76abaf50c15852ef31cc8ac0]

INTEGRATION: CWS changefileheader (1.14.430); FILE MERGED 2008/04/01 12:36:50 thb 1.14.430.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.14.430.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d69d928c9c0855ab09bd17546f112d9d6dc7e874]

INTEGRATION: CWS changefileheader (1.5.698); FILE MERGED 2008/04/01 15:31:03 thb 1.5.698.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.5.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.5.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4526bcd4c8a4e15be9156073d896475fb631a711]

INTEGRATION: CWS changefileheader (1.6.698); FILE MERGED 2008/04/01 15:31:03 thb 1.6.698.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.6.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:51 rt 1.6.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1777c80952849468d8020ae9bde0eb4eeff37869]

INTEGRATION: CWS changefileheader (1.15.158); FILE MERGED 2008/03/31 17:15:50 rt 1.15.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9e6156bd21906f4dea0f24e5b205e4ea6032b36f]

INTEGRATION: CWS changefileheader (1.17.158); FILE MERGED 2008/04/01 15:31:02 thb 1.17.158.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.17.158.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.17.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [af44812034e82b9668d5487488b1d42557f0fd55]

INTEGRATION: CWS changefileheader (1.9.136); FILE MERGED 2008/04/01 15:31:02 thb 1.9.136.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.9.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [809e8e1a84dc84854736e8c4364eb9a3d528b14e]

INTEGRATION: CWS changefileheader (1.5.88); FILE MERGED 2008/04/01 15:31:02 thb 1.5.88.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.5.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d9489ff4599abda8b26fd6c5dd541cb308221076]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:31:02 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d1a2533eb52390a0448f70f4c5feed8666c9b4cf]

INTEGRATION: CWS changefileheader (1.6.88); FILE MERGED 2008/04/01 15:31:02 thb 1.6.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.6.88.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.6.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [21c6a899ed89c6cb7bc21db5a9877a4cad1a2c6a]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:31:02 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [494ef260f97aa75b9c92d143222d3c5b4b5d3e91]

INTEGRATION: CWS changefileheader (1.8.88); FILE MERGED 2008/04/01 15:31:02 thb 1.8.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.8.88.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.8.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b5e015880ba8a3375fd7f9f7ec32c96161203668]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/04/01 15:31:02 thb 1.4.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ba1d81dfd2420e208b5764da14f12f45628fd3f5]

INTEGRATION: CWS changefileheader (1.13.176); FILE MERGED 2008/04/01 15:31:02 thb 1.13.176.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.13.176.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.13.176.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dc0524943b877498a54cee1bba13f133ccb1608a]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:31:02 thb 1.8.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4260fec75c63c0c04204b4b6a27a2262a686817e]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:31:02 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [97ed4f7dddfa01dc1d4970e01d7b1065ad50db2d]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:31:01 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [55a48768ebaee1e3be43bab1481894adc8a2cbf2]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:31:01 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dc8d3cda8d2357f5768fb5ae1bf01bd591d17843]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:15:50 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c71ab65dbd21240cd45cf81b51e598a5c8fb2627]

INTEGRATION: CWS changefileheader (1.2.698); FILE MERGED 2008/04/01 15:31:01 thb 1.2.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.2.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c836b5d7b97f7412740fa6c5418f9656fd831ad0]

INTEGRATION: CWS changefileheader (1.29.240); FILE MERGED 2008/04/01 15:31:01 thb 1.29.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.29.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.29.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a63f9d9833238e51ced4c403165d141b7c7e93bc]

INTEGRATION: CWS changefileheader (1.27.64); FILE MERGED 2008/04/01 15:31:01 thb 1.27.64.2: #i85898# Stripping all external header guards 2008/03/31 17:15:50 rt 1.27.64.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d7a40c6688e8453965e11bb945ee159fa24c561b]

INTEGRATION: CWS changefileheader (1.2.698); FILE MERGED 2008/04/01 15:31:01 thb 1.2.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.2.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5667b91dfca4feedeeb21d4c1164633de6d698f5]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:31:01 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [493df56b54601a88af4bd72d32f3cc7fb3f859ac]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:31:01 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [23408b07433b322acc894d0b861c412c47c17c8a]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:49 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [95bf7d8739bbd9953e1aa0167b8c7cce4c1ce908]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 15:31:01 thb 1.7.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1b9fc17be339a81f4195c3513cd17064d0e97c12]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:31:01 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [338b2ff27aab2d4449c4b1c9c30ead91f2bd5236]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:31:01 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a34900cf1d7d565ab85bfde061dedbff3d6a5400]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:15:49 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e0a70cfba54750f538c69950f3dbdcfca4c28710]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:31:00 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1b0d3919c0dcbe1ad4a0791e44683d81ea1657b5]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:31:00 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [313f12239d026dcc8a4d273fcc8ebcdc64b5d743]

INTEGRATION: CWS changefileheader (1.9.700); FILE MERGED 2008/04/01 12:36:49 thb 1.9.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.9.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0e814d7408e628f3297869e98c5cc312b9f559e8]

INTEGRATION: CWS changefileheader (1.3.698); FILE MERGED 2008/04/01 15:31:00 thb 1.3.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:49 rt 1.3.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fa872f5797c720ff78f3eb398bb75bd0741775d8]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:31:00 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:48 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b5dccd5d1fa546ef702142680d7acfc23b504cf8]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:15:48 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [504388bf4c11668dd3f3afec7e17bb215bf03b1f]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:31:00 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:48 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [556cf93b71fd7fcc4b13c011785e9a77f3bce2aa]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:48 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c2d12951d17328e790e519f70103b0e1dd15b65d]

INTEGRATION: CWS changefileheader (1.2.80); FILE MERGED 2008/04/01 15:31:00 thb 1.2.80.2: #i85898# Stripping all external header guards 2008/03/31 17:15:48 rt 1.2.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b3f4436955264e8027caaae4d203d2a3266ec50f]

INTEGRATION: CWS changefileheader (1.2.80); FILE MERGED 2008/03/31 17:15:48 rt 1.2.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [75c9d1e649abf87389ff94078b3cd626523ea564]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:31:00 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:48 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [512d81fa28057596afbca9536ff33676482cb2ce]

INTEGRATION: CWS changefileheader (1.5.292); FILE MERGED 2008/04/01 12:36:49 thb 1.5.292.2: #i85898# Stripping all external header guards 2008/03/31 17:15:48 rt 1.5.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b3b12e7ae8447d7fd2cac45976245981d380a7d0]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:15:48 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [879118f06558b85f4b335bda65d1100d473808fc]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:31:00 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:48 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f41e1a977fab66c17d762048c457de130d71e508]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/31 17:15:48 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c04396b8fba5364e73cd45182c744eeca61d083c]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:31:00 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:49 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:47 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a14d0082af4dd9209ba41172a7516c2906bbe489]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:31:00 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:47 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [788198132d43541ecfd4b7d9eaf2019d75078c57]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:36:48 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:47 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [22f20653888cfed76a1b0d31faeaebfff23477a9]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:47 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c586fa4c6f0146a2d9242b06cac9240c32281939]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/03/31 17:15:47 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [753223d18c0e916a51b3c6cdce8f33043c3f186d]

INTEGRATION: CWS changefileheader (1.5.588); FILE MERGED 2008/03/31 17:15:47 rt 1.5.588.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [713ecdadebda5a4c1223579a7446a9bb2873bef1]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:15:47 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a63b84fdfdbd1d1cc9f6cb16ef3f668a9ad6d028]

INTEGRATION: CWS changefileheader (1.6.192); FILE MERGED 2008/03/31 17:15:47 rt 1.6.192.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f478867280cdb423a69efb2703426e53814fbb3a]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:59 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:47 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [11fcfe787315be1701a42e4513a2f71d30bf6a0c]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:59 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:47 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f40644bc5138c279028486d3cf1eaf1c76b35373]

INTEGRATION: CWS changefileheader (1.4.292); FILE MERGED 2008/04/01 15:30:59 thb 1.4.292.2: #i85898# Stripping all external header guards 2008/03/31 17:15:47 rt 1.4.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a2a2095778b2dc32ec8f9e9667070f1fb089d850]

INTEGRATION: CWS changefileheader (1.6.80); FILE MERGED 2008/04/01 15:30:59 thb 1.6.80.2: #i85898# Stripping all external header guards 2008/03/31 17:15:47 rt 1.6.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3f71c43bb9b515bfdbfc49484fd26669554f6547]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:36:48 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:47 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [577f41f6975eab083b54c4b9cbff2b76d4bb8749]

INTEGRATION: CWS changefileheader (1.11.672); FILE MERGED 2008/04/01 15:30:59 thb 1.11.672.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.11.672.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.11.672.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3a8bbd7b4cebd82316e27c9309fb1415402848b9]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 15:30:59 thb 1.6.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2466ad7af9ac7ad987ae919034e7d57a611cf4a9]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:59 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [112b2a73152ed864e87915f4fc46c02deb0203ff]

INTEGRATION: CWS changefileheader (1.13.76); FILE MERGED 2008/04/01 12:36:48 thb 1.13.76.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.13.76.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1316287b37b23e230a92d0501091d714c2bc52b0]

INTEGRATION: CWS changefileheader (1.12.240); FILE MERGED 2008/04/01 15:30:59 thb 1.12.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.12.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.12.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4b922e6ef4bd92cdec8fc8ce81cbe10aa079b2f1]

INTEGRATION: CWS changefileheader (1.11.700); FILE MERGED 2008/04/01 15:30:59 thb 1.11.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.11.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.11.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5b5398e33a8619f5c727b02dc9503b002fc7c82c]

INTEGRATION: CWS changefileheader (1.10.78); FILE MERGED 2008/04/01 15:30:59 thb 1.10.78.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.10.78.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [07ef2a03fb3e8a79b6698cc80f065f432b2fa1f5]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:36:48 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [699c4df4f1a49d220938ac2505a01a58e17c54b4]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/04/01 15:30:58 thb 1.4.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fdc401e0c5852b3dee0bdab441b512f161e4f208]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/04/01 15:30:58 thb 1.3.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [93b787e6b9659e528ab71779a63a8ec5e8a54351]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:58 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c6a1eeb6cbaa12d6c8ee18fd173b0a12d968673]

INTEGRATION: CWS changefileheader (1.4.34); FILE MERGED 2008/04/01 15:30:58 thb 1.4.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.4.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.4.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fbb76974baeda84a8fcbca1c1522c85ded1efe96]

INTEGRATION: CWS changefileheader (1.19.244); FILE MERGED 2008/04/01 15:30:58 thb 1.19.244.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.19.244.2: #i85898# Stripping all external header guards 2008/03/31 17:15:46 rt 1.19.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c7fdeabb769bb6abe754627c2c532e4d654fe59b]

INTEGRATION: CWS changefileheader (1.2.80); FILE MERGED 2008/04/01 15:30:58 thb 1.2.80.3: #i85898# Stripping all external header guards 2008/04/01 12:36:48 thb 1.2.80.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.2.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [79e06a2f91ed168796d37aa3ad080efba43dab8b]

INTEGRATION: CWS changefileheader (1.2.80); FILE MERGED 2008/03/31 17:15:45 rt 1.2.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [64684c7aa7aaedca5a769d935fc27bb9c9bc9d95]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:58 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a6bf944a45593ac3fc4aaeb4ea3ae2817a8796dd]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:15:45 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2b365be63e1c7f26fc9c2e53b00f0a6b247510cb]

INTEGRATION: CWS changefileheader (1.9.136); FILE MERGED 2008/03/31 17:15:45 rt 1.9.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [99be6c7acc13a7a5195c69c372ad0b2aec9f141d]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:58 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bb7b967c314e5a421fceb4e770c5a53bfb91f042]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/04/01 12:36:47 thb 1.10.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1cf33f203d454e12775b34567b703bb7eb031977]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:36:47 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e385b7bf523f0a51d9c2c7d0161581a84ed096f2]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/04/01 15:30:57 thb 1.3.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [80e686c947203b2720f3c091afa3c8ca087f2179]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:57 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [67a75726a59460b8e882b2d50d5b4314abc45358]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:57 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9ea7710c5692cbd769c71f0e10aca9057a39769e]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:30:57 thb 1.12.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [957e2211403d1077976a92af57ac2dac419790b1]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:57 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:45 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [389d5ce6a89590f64e8d33744a35c96a582edbeb]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 15:30:57 thb 1.6.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:44 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5c856304c065e5f28d68dd0647844bffd91d1869]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:15:44 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [599bc4438ccfd004a018f7a4d8dca08a80f6ac63]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:57 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:44 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [907e6d25ca7d3960b82c2c4f58ce924396fec4f8]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:57 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:43 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [209694999ea6ff7e0578ca829420c4151c7eb0a5]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:56 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:43 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [da78a2bd94cdce092405163977a2d4839d6be236]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:56 thb 1.2.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:43 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b4da65b9ff5db2617f4d618be04876cf2bea856f]

INTEGRATION: CWS changefileheader (1.10.700); FILE MERGED 2008/03/31 17:15:43 rt 1.10.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [45e63526afe4071bdf35713cc30d87bf1cf3c633]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/04/01 15:30:56 thb 1.4.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:43 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ebcbe2c049acc8b673627c737fb3f92bffc548f1]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:15:43 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b3db837e3bf961ac5ce4fb11005f04a4ec4dcb0f]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:56 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:43 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ab88c7cd0739fa11e740f99b09a1d4fe42d3502f]

INTEGRATION: CWS changefileheader (1.6.158); FILE MERGED 2008/04/01 15:30:56 thb 1.6.158.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.6.158.2: #i85898# Stripping all external header guards 2008/03/31 17:15:43 rt 1.6.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0c5bd7ad6c2d234f73447c2d79ea76925a3a887f]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:56 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b44980de8eb2c7c308a48b402657abb0f583562d]

INTEGRATION: CWS changefileheader (1.3.406); FILE MERGED 2008/04/01 15:30:56 thb 1.3.406.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.3.406.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a7cd134e417cdb598f97a39a507d2c48fd95843f]

INTEGRATION: CWS changefileheader (1.7.400); FILE MERGED 2008/04/01 15:30:56 thb 1.7.400.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.7.400.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.7.400.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [15d8a6b521965d340c0270eb078ef9420b6fb384]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:15:42 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [191c356c9c253e6b7cba41b6d4685ec039cab067]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:30:55 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cdac87e4e3ee90b590706a07f66e69fa7374591c]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:55 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [992cf64ca743639c65ad4892348e8e44995bbe55]

INTEGRATION: CWS changefileheader (1.16.330); FILE MERGED 2008/04/01 15:30:55 thb 1.16.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.16.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4357915dc8cbec48ae09aaf28954468feb8efd3e]

INTEGRATION: CWS changefileheader (1.14.638); FILE MERGED 2008/04/01 15:30:55 thb 1.14.638.3: #i85898# Stripping all external header guards 2008/04/01 12:36:47 thb 1.14.638.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.14.638.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c279aface8f5b4cfd828eca609d26b5e9f4bc228]

INTEGRATION: CWS changefileheader (1.13.192); FILE MERGED 2008/04/01 15:30:55 thb 1.13.192.3: #i85898# Stripping all external header guards 2008/04/01 12:36:46 thb 1.13.192.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.13.192.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3114eca775b48566ecccb1900334a78c5cfdedbd]

INTEGRATION: CWS changefileheader (1.12.588); FILE MERGED 2008/04/01 15:30:55 thb 1.12.588.3: #i85898# Stripping all external header guards 2008/04/01 12:36:46 thb 1.12.588.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.12.588.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3501a5ac59e95b0972b61acfa023f7f5733eb0e7]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:55 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:46 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [28cf81386631d0c0984e929c3075143e911674ec]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:55 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c13e57889c7197f5317a0461c6b108a74abd3ca6]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:30:55 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:46 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f7ade8b27b259dbf0f52bfef280ea72e700e7e0d]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:42 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [219da6ce93594e7155a377da6f052a46d3525fc8]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:54 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ebef99132db9b85c7430e85edd23af132df3c3ee]

INTEGRATION: CWS changefileheader (1.5.64); FILE MERGED 2008/04/01 15:30:54 thb 1.5.64.3: #i85898# Stripping all external header guards 2008/04/01 12:36:46 thb 1.5.64.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.5.64.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8309b6cd8fdfb15186d03cb22da71ef03395d5ce]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:54 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7098db0e1b5229f5f308f17092c389ce5cadd0f8]

INTEGRATION: CWS changefileheader (1.2.170); FILE MERGED 2008/03/28 16:44:53 rt 1.2.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [da44a7aaf514f59d83c33a8cbd250283e0a47447]

INTEGRATION: CWS changefileheader (1.28.64); FILE MERGED 2008/04/01 15:30:54 thb 1.28.64.3: #i85898# Stripping all external header guards 2008/04/01 12:36:46 thb 1.28.64.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.28.64.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9291031ffa089ee0205d73cce7b73941e1d42f6e]

INTEGRATION: CWS changefileheader (1.2.354); FILE MERGED 2008/04/01 15:04:31 thb 1.2.354.2: #i85898# Stripping all external header guards 2008/04/01 10:50:44 thb 1.2.354.1: #i85898# Stripping all external header guards


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [befe847cc66e637b61e94c88fe8a4e9525338e1c]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:30:54 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a5a81eb3d8c205bb4991e1ec6980a8f26d5a0de3]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:44:53 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6da2c45ce0ab4d997b38a6f4dcc9f409341831b7]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 12:36:46 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fa30f7f70964d650eb4ec989b29c2d26c40ca33a]

INTEGRATION: CWS changefileheader (1.5.170); FILE MERGED 2008/03/28 16:44:53 rt 1.5.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [551b9ee4238729abf650254611e1c340d2d91f34]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:36:46 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7ba2db2322fceb32b623f462fb79f008fce8a435]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/03/28 16:44:52 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8cce243d30cbcacdc9707d7232906072b80a14a6]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 15:30:54 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ecee0ff1e11f8677994c7b2ad511f5739b17809f]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:53 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:46 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [564553527f91eb296c7eded303ea51cd6a31ff1b]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:53 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:46 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:42 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c2b98f6ddc2b59dc36aec3ba7184c29a5a93188e]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 12:36:46 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5e0549c39402677dc18033c2ff3d58a654104036]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:41 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [90361d9f5afc81353e324a4d789c05066c6c70a9]

INTEGRATION: CWS changefileheader (1.5.690); FILE MERGED 2008/04/01 12:36:46 thb 1.5.690.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.5.690.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9c44edccc0c7601d4bb94c7a1c753345afdefd00]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:36:46 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [99f8216f38c2095a7301e25729246424e4b7ce6f]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:36:45 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4bffed62779bfc79077a5b207eea08d440ef9647]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:36:45 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d8548cd867c36033858da5dfe61a188e770e7832]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:53 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [583910c4b4e960b1dd8787df9b74f6c76f20c8a8]

INTEGRATION: CWS changefileheader (1.3.142); FILE MERGED 2008/03/28 16:44:51 rt 1.3.142.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2fcde24ced4dfc2521e667e629d672bab4136614]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:53 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b15da0c48dc60d04321a8ea6cca6d8a3664dfff3]

INTEGRATION: CWS changefileheader (1.3.170); FILE MERGED 2008/03/28 16:44:51 rt 1.3.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ee694171236b7b239d9d62d5aa6b90ca3d64656b]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:30:53 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2f7905cf78ec4e2dee96d1cda2aa513b7486f6d7]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:51 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [15f87f09388bbd64bc8235d5498260062ced9cb2]

INTEGRATION: CWS changefileheader (1.3.28); FILE MERGED 2008/03/28 16:44:51 rt 1.3.28.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aab08b4159b3a425de3be20259052dde098130ed]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 15:30:53 thb 1.6.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9ecab431583f150cf3f992340c9df8dbf9d1dce2]

INTEGRATION: CWS changefileheader (1.3.142); FILE MERGED 2008/03/28 16:44:50 rt 1.3.142.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c9efc4578c48890f460b68b5ca944693e977b1a]

INTEGRATION: CWS changefileheader (1.7.28); FILE MERGED 2008/03/28 16:44:50 rt 1.7.28.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [274aa5faaf91e1d8ba6a30b90c032c6dcd741ffc]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/03/28 16:44:50 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [65e02c0c76fabcf12dfd0967e96c0c6b168bf1ed]

INTEGRATION: CWS changefileheader (1.13.672); FILE MERGED 2008/04/01 15:30:53 thb 1.13.672.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.13.672.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.13.672.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a43afc08d14dfc4be29c1305bc75b54bb00ef1db]

INTEGRATION: CWS changefileheader (1.9.126); FILE MERGED 2008/03/28 16:44:49 rt 1.9.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2c77fa70a3f68aed6c4835693448804e555b7ec5]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:30 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:49 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ff46d1f9288713686e5059206d4bdc1225305313]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:53 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [95c808a96d3955ecc8542ef8133d05ad1b00bb5e]

INTEGRATION: CWS changefileheader (1.8.126); FILE MERGED 2008/04/01 10:50:44 thb 1.8.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:49 rt 1.8.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [68e37bdaeee8ab0ac9958e8b47fad8d3055af13f]

INTEGRATION: CWS changefileheader (1.8.240); FILE MERGED 2008/04/01 15:30:53 thb 1.8.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.8.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [14d008aeff942de698e012f092f6c5b5c82e014e]

INTEGRATION: CWS changefileheader (1.15.74); FILE MERGED 2008/04/01 15:04:30 thb 1.15.74.3: #i85898# Stripping all external header guards 2008/04/01 10:50:44 thb 1.15.74.2: #i85898# Stripping all external header guards 2008/03/28 16:44:49 rt 1.15.74.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b98e474f693160f34fefd9eee98154ceaba3c9d0]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:53 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [44765bfea5eb6c8acbe406f6e8dc5bf3641997f5]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:52 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [daaad87c195cfe5e154ced0df0af7a1845883b42]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:49 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fdf69b39345f6e438dcf47e24f48cf9a512e57cc]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/04/01 15:30:52 thb 1.6.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.6.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:41 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4536a71fba74a515aa60fc788e03a2093996068b]

INTEGRATION: CWS changefileheader (1.5.60); FILE MERGED 2008/04/01 10:50:44 thb 1.5.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:49 rt 1.5.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [99d57239eb2ef9c423f45eea0d10e7ad9dc339d4]

INTEGRATION: CWS changefileheader (1.15.158); FILE MERGED 2008/04/01 15:30:52 thb 1.15.158.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.15.158.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.15.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fd12511a9fe97286908374789379c2ffc7d6cb1a]

INTEGRATION: CWS changefileheader (1.8.126); FILE MERGED 2008/04/01 15:04:30 thb 1.8.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:44 thb 1.8.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:49 rt 1.8.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c893bd251265613b5be49caebbfe6523656792b3]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 15:30:52 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d189b09d8940b0acebb3146e45ec93fcead5c48f]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/04/01 15:30:52 thb 1.3.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0bc6673af3f4930d03b3c420f15f05a3af18f7a7]

INTEGRATION: CWS changefileheader (1.11.240); FILE MERGED 2008/04/01 15:30:52 thb 1.11.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.11.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dc5e34391e52e5bfdd22e7ced2231042c6d79016]

INTEGRATION: CWS changefileheader (1.15.126); FILE MERGED 2008/04/01 10:50:44 thb 1.15.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:49 rt 1.15.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1e9ecac569fd5b03ef981cb8fdf83aa8c55b5416]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:52 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fd2b3d705bab9407e31001787b5f4d7c799e0629]

INTEGRATION: CWS changefileheader (1.39.106); FILE MERGED 2008/04/01 15:04:30 thb 1.39.106.3: #i85898# Stripping all external header guards 2008/04/01 10:50:44 thb 1.39.106.2: #i85898# Stripping all external header guards 2008/03/28 16:44:49 rt 1.39.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [740aa2f901a3d2cc2d88ac402096cab07951a716]

INTEGRATION: CWS changefileheader (1.9.240); FILE MERGED 2008/04/01 15:30:52 thb 1.9.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.9.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7be5596e7f153a9aca7cf72c96179d3dabf878c8]

INTEGRATION: CWS changefileheader (1.48.34); FILE MERGED 2008/04/01 15:30:52 thb 1.48.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.48.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.48.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d8c7ff1f2264d8ea65014a48cc7958c704a32a72]

INTEGRATION: CWS changefileheader (1.29.34); FILE MERGED 2008/04/01 15:04:30 thb 1.29.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:44 thb 1.29.34.2: #i85898# Stripping all external header guards 2008/03/28 16:44:49 rt 1.29.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [996ef2f710a30793eae3ffff8244392fa5a3d307]

INTEGRATION: CWS changefileheader (1.17.34); FILE MERGED 2008/04/01 15:30:52 thb 1.17.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.17.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.17.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [861b17e5776a66ca8bd0f21eb3136e01103c4836]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:51 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [96b52695a572bd2f56dabcae03844009a3185b3d]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:51 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e3c8f0c32d71f06b255b15c1e2618bf70aecd5d1]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 15:04:30 thb 1.5.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:43 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a1c1b3eec85547bc850119ee4149e98b99e11e04]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:36:45 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [18b84aa5474d5c8fcb98805e31745814929ca074]

INTEGRATION: CWS changefileheader (1.24.94); FILE MERGED 2008/04/01 15:04:30 thb 1.24.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:43 thb 1.24.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.24.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [56bfa3da047aee24d533da35d6254f92a3f739b4]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:40 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0aad656f472739caf715c2be052c6a884455f791]

INTEGRATION: CWS changefileheader (1.10.128); FILE MERGED 2008/03/31 17:15:40 rt 1.10.128.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [40530b0e96b7306481915ba86332dcd2333fde84]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/03/28 16:44:48 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5fd9014cf8c2eeb7272aa257db00bed4d9e8ec64]

INTEGRATION: CWS changefileheader (1.6.60); FILE MERGED 2008/04/01 15:04:30 thb 1.6.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.6.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [156c778a14ad6ebc55fecea6547e53ff0d85a481]

INTEGRATION: CWS changefileheader (1.9.300); FILE MERGED 2008/04/01 15:30:51 thb 1.9.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.9.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.9.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [848ea8b7ac9b7bc05d6ea9887475e013a3e7f097]

INTEGRATION: CWS changefileheader (1.16.44); FILE MERGED 2008/04/01 10:50:43 thb 1.16.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.16.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7fbfeb93b87f7d617851b602e9e9c71fe994a5d1]

INTEGRATION: CWS changefileheader (1.15.126); FILE MERGED 2008/04/01 15:04:29 thb 1.15.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:43 thb 1.15.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.15.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [309f1a687beca477527a357e08d79435b05b12a0]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/04/01 15:04:29 thb 1.6.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [129c63894457318bddd5ee14a3713a348480f628]

INTEGRATION: CWS changefileheader (1.7.562); FILE MERGED 2008/04/01 15:30:51 thb 1.7.562.3: #i85898# Stripping all external header guards 2008/04/01 12:36:45 thb 1.7.562.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.7.562.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b35082d8f4bac9efbeea2a2ea64dfde762097320]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:44:48 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [80804811e6bf1780e07dcc824bb042ef18ced66d]

INTEGRATION: CWS changefileheader (1.4.124); FILE MERGED 2008/04/01 15:30:51 thb 1.4.124.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.4.124.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [19046cd9409ac389cdad5be7a8eea47368ab3106]

INTEGRATION: CWS changefileheader (1.6.92); FILE MERGED 2008/04/01 10:50:43 thb 1.6.92.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.6.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7048fdf3e557478d7074b00d38946a0a4d1e3be2]

INTEGRATION: CWS changefileheader (1.8.300); FILE MERGED 2008/04/01 15:30:51 thb 1.8.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.8.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.8.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [34e60a65bff468e1fe19177fc2c1bcef7a76c0d7]

INTEGRATION: CWS changefileheader (1.3.116); FILE MERGED 2008/04/01 15:04:29 thb 1.3.116.3: #i85898# Stripping all external header guards 2008/04/01 10:50:43 thb 1.3.116.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.3.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [31c2fb5ecace2c6c7106bbd8723b26dcf57d172a]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:30:51 thb 1.12.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1ddca75aa0d9eacb765f79a7f4690e002b64ab62]

INTEGRATION: CWS changefileheader (1.5.170); FILE MERGED 2008/03/28 16:44:48 rt 1.5.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [174ad37ecbd4ded2688f65c9a1949e4696f3cc45]

INTEGRATION: CWS changefileheader (1.14.408); FILE MERGED 2008/04/01 15:30:50 thb 1.14.408.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.14.408.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.14.408.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [03e4ab2670ebfa1526767190a9d362bc1dcfc49f]

INTEGRATION: CWS changefileheader (1.7.44); FILE MERGED 2008/03/28 16:44:48 rt 1.7.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [581d3611b30cbaf5bbff359b1b65097d9e9d3077]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:50 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [25cf73bdaf3f687391d1e7488d3c3d91bdfa06be]

INTEGRATION: CWS changefileheader (1.5.44); FILE MERGED 2008/04/01 15:04:29 thb 1.5.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:43 thb 1.5.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:48 rt 1.5.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1027162be3388ba259f54c816720f4f6a3cbc433]

INTEGRATION: CWS changefileheader (1.43.34); FILE MERGED 2008/04/01 15:04:29 thb 1.43.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:43 thb 1.43.34.2: #i85898# Stripping all external header guards 2008/03/28 16:44:47 rt 1.43.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9ed97d7001f98e9134ad75670c3b88fca7ae4237]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:50 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:40 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aad57e98c517b799b527bed4ebad6c1199579901]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:29 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:47 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [49c9838184c2c1d0cfb191362489ee96ed79b811]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:39 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1d97a023fdc3fd1b05f6951568adb4574e116e89]

INTEGRATION: CWS changefileheader (1.8.18); FILE MERGED 2008/04/01 15:04:29 thb 1.8.18.2: #i85898# Stripping all external header guards 2008/03/28 16:44:47 rt 1.8.18.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c64ef218b2d8a38e4f1df56be766609e358c9caf]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:30:50 thb 1.12.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4a4794c026626d154349fb4387a7480fb730b45a]

INTEGRATION: CWS changefileheader (1.4.116); FILE MERGED 2008/03/28 16:44:45 rt 1.4.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [28be2ceb38171a6a9c3e68b77486d148c3c129e8]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:36:44 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ad08484c08f2938df6ec90d22d1deee0636aa08f]

INTEGRATION: CWS changefileheader (1.22.44); FILE MERGED 2008/04/01 10:50:43 thb 1.22.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:45 rt 1.22.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [daafdacabdcd2b321285e5e27ccd337c189be634]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/31 17:15:39 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6487b5c7e4224353c1c7870fe61b96077f51f63d]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:28 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:42 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:45 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9a0bfc1a55867bdc65cdf6cbc4f4fd3b055d96cc]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 10:50:42 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:45 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [280aeb0679bda219f28fc6e7b4fcdbe6977b4f8d]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:30:50 thb 1.5.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5232eaf4441b4f83ca813ee8931b53279ecd565a]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:42 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [329eadec1992d0ae08024b55d9f8747947ba7c89]

INTEGRATION: CWS changefileheader (1.6.106); FILE MERGED 2008/04/01 15:04:28 thb 1.6.106.3: #i85898# Stripping all external header guards 2008/04/01 10:50:42 thb 1.6.106.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.6.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cd7cd434cf0b13a2b52a1aff19ac8694abcce76c]

INTEGRATION: CWS changefileheader (1.5.430); FILE MERGED 2008/04/01 12:36:44 thb 1.5.430.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.5.430.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2833643314b340fc5672842cbbf7c7dacafceb8e]

INTEGRATION: CWS changefileheader (1.19.34); FILE MERGED 2008/04/01 15:04:28 thb 1.19.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:42 thb 1.19.34.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.19.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6d890fb8d4fbd7e51cca0dcdbfc52ed4c56d058c]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 15:04:28 thb 1.5.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:42 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [18f578f72452e1f8b27b228df55874d7258b061b]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/04/01 15:30:50 thb 1.3.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fc58099b9f1c2ed869082a14af8aa432799bd088]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:28 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:42 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e5a251a3664ae6543bb0c39943f88b543439090e]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:30:50 thb 1.8.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c7ee7b9e592c374f64528ae68b4fa82eb1c1750]

INTEGRATION: CWS changefileheader (1.12.126); FILE MERGED 2008/04/01 10:50:42 thb 1.12.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.12.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [30ce323c2c0d3e87aeabbdc9d8953ccb94970fdc]

INTEGRATION: CWS changefileheader (1.5.244); FILE MERGED 2008/04/01 15:30:50 thb 1.5.244.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.5.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dfd7fd467d4c6623836ea53e79513c8d4bd60f92]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:49 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [afea677b51e1ae3e8f2b9e72c57227785a74b2b8]

INTEGRATION: CWS changefileheader (1.7.60); FILE MERGED 2008/04/01 15:04:28 thb 1.7.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:42 thb 1.7.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.7.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e17b6a8f48c6a83bb5089c4373dd0ba1342aa36e]

INTEGRATION: CWS changefileheader (1.8.700); FILE MERGED 2008/04/01 15:30:49 thb 1.8.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.8.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.8.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a300e3bfcae0ce94d3cbfe4cf9af73d891a91597]

INTEGRATION: CWS changefileheader (1.4.60); FILE MERGED 2008/04/01 10:50:42 thb 1.4.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.4.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e1e855fc07b0d034ae97eb92da2b1c1294491a40]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/04/01 15:30:49 thb 1.3.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c0e31612477612f50bb1ac5e6933c86735ca68b5]

INTEGRATION: CWS changefileheader (1.13.60); FILE MERGED 2008/04/01 15:04:28 thb 1.13.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:42 thb 1.13.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:44 rt 1.13.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e4d27ec483bbbc9ff45b8ad1e792db69f5a54202]

INTEGRATION: CWS changefileheader (1.13.126); FILE MERGED 2008/04/01 15:04:28 thb 1.13.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:42 thb 1.13.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:43 rt 1.13.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f5682d821b68e17dfcd194e3177a1f221c8f24b8]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/03/31 17:15:39 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7d8d422357c8a5b72b5f65a8b23b23ede0e2dbfb]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:43 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [36af6c524cdb54ce0fdcd1c949d2ea6148fc0dfd]

INTEGRATION: CWS changefileheader (1.10.700); FILE MERGED 2008/04/01 15:30:49 thb 1.10.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.10.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.10.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [149714159f51b71e15c1f81e31546dd7f8993e04]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:36:44 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:39 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f5e5d60c71fcd2a3d43023d671e8de93c665affd]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:28 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:41 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:43 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [677bd9d1d7f1ace32731ae74624bf53e9cd44215]

INTEGRATION: CWS changefileheader (1.4.690); FILE MERGED 2008/04/01 12:36:44 thb 1.4.690.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.4.690.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7e98c611f011e75db37547a6af107c3c7c81ddda]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:41 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:43 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ee1637d610a8b7402ba637638305e4f9bcc796b3]

INTEGRATION: CWS changefileheader (1.10.80); FILE MERGED 2008/04/01 15:30:49 thb 1.10.80.3: #i85898# Stripping all external header guards 2008/04/01 12:36:44 thb 1.10.80.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.10.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dc7687094b878e0e54355ed07cccd8ca8fe852ba]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 10:50:41 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:43 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [accdadc5bfa5e8bbd0d297a6b30e490e4f73d65f]

INTEGRATION: CWS changefileheader (1.7.618); FILE MERGED 2008/04/01 15:30:49 thb 1.7.618.3: #i85898# Stripping all external header guards 2008/04/01 12:36:43 thb 1.7.618.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.7.618.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [56ed9a527a35e8c0bb2a3cd254eebf9c4b5db3ca]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/03/28 16:44:43 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a805d258ff37e419b3624e046b426355f1c5c73d]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:15:38 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [095ba340bf9c31e5d725bb1f7fcbd7af60e2a3e9]

INTEGRATION: CWS changefileheader (1.4.292); FILE MERGED 2008/04/01 15:30:48 thb 1.4.292.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.4.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9f6a5b9c2b5054f616e42baceac02b5ad8dd924f]

INTEGRATION: CWS changefileheader (1.16.94); FILE MERGED 2008/04/01 15:04:27 thb 1.16.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:41 thb 1.16.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:43 rt 1.16.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c1c8eb00a9ad9659198cdee18edd253a7677c033]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:48 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:43 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5d7014f5c43e4814c716a649a26a85d6b132c0ca]

INTEGRATION: CWS changefileheader (1.2.292); FILE MERGED 2008/04/01 15:30:48 thb 1.2.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:43 thb 1.2.292.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.2.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f6288690954866c4a16bdd235eebd8ff12799985]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/03/28 16:44:39 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3b80fa3f8cb923cb4de7a7882be38e7b1195488f]

INTEGRATION: CWS changefileheader (1.18.330); FILE MERGED 2008/04/01 15:30:48 thb 1.18.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:43 thb 1.18.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.18.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fd55adb98139afd91c03cf552169ef7ede2f5696]

INTEGRATION: CWS changefileheader (1.41.20); FILE MERGED 2008/04/01 15:04:27 thb 1.41.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:41 thb 1.41.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:39 rt 1.41.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [78e46a7977e9ae6103d57e99da59a56bcd8d559d]

INTEGRATION: CWS changefileheader (1.23.330); FILE MERGED 2008/04/01 15:30:48 thb 1.23.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:43 thb 1.23.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.23.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a14dac584ac3dcaa71e68092d2fbc373b717fab8]

INTEGRATION: CWS changefileheader (1.29.240); FILE MERGED 2008/04/01 12:36:43 thb 1.29.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.29.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7db56750e0e0023ef4cc6f1a70a2c31450951fb3]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/04/01 15:30:48 thb 1.9.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:43 thb 1.9.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [41016be406411ff73e881e8b9747f692bad89503]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 10:50:41 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:39 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a16435fac46db1cb7013053dea4e484370682b7e]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:30:48 thb 1.12.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:43 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e1ecb32e1d019bae9ef2996caaaca8b6c4bc492b]

INTEGRATION: CWS changefileheader (1.10.94); FILE MERGED 2008/04/01 15:04:27 thb 1.10.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:39 rt 1.10.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8cb964399606e1e9e4ea0418bb4f7b49b98eb2dd]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/04/01 12:36:42 thb 1.10.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [805aaf3cf8890a43c44fa3a22bdbc74a332d6be0]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 15:30:48 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1f6a01f65b4786f8a1ebb7e840ce1b994b687964]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/04/01 15:04:27 thb 1.8.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:38 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c808aacf1f57e13e97e2b1b7338cbd841f71c6d2]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 15:30:48 thb 1.7.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:42 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ffe12b1f9b994b1e68e914f9c6c260030163533f]

INTEGRATION: CWS changefileheader (1.19.34); FILE MERGED 2008/04/01 15:04:27 thb 1.19.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:41 thb 1.19.34.2: #i85898# Stripping all external header guards 2008/03/28 16:44:38 rt 1.19.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [41166579cddbf1abe1f18facd4c3dafaebfa66b4]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/04/01 12:36:42 thb 1.9.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b3044f9667983a5d028c76c1a8cadd3aac78770b]

INTEGRATION: CWS changefileheader (1.13.300); FILE MERGED 2008/04/01 12:36:42 thb 1.13.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.13.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5c370a019a3bba8688c20775343ebc3d0e3ddf46]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:38 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ef1bc9e7113a655e7888ae0dc90b68e028a5d791]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:38 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [618382fa894f2cf44c2b198d3d5d2eba4314335a]

INTEGRATION: CWS changefileheader (1.27.330); FILE MERGED 2008/04/01 15:30:48 thb 1.27.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:42 thb 1.27.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:38 rt 1.27.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [37ae2c58fd3c2528268fd95cef2332ac8489abd3]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 10:50:40 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:38 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3c1abd61c21f603abac92ca7050187a05f55fce5]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 12:36:42 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:37 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [656d5d0f26457d0021d5d54c60ed777ff72f7ebc]

INTEGRATION: CWS changefileheader (1.4.44); FILE MERGED 2008/04/01 15:04:27 thb 1.4.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:38 rt 1.4.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9e53efec59220075763d0948d7eb984ef25828d9]

INTEGRATION: CWS changefileheader (1.14.330); FILE MERGED 2008/04/01 15:30:47 thb 1.14.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:42 thb 1.14.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:37 rt 1.14.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7c99e59a68f6f09fea2b04ae8b6e27a4fa614f8b]

INTEGRATION: CWS changefileheader (1.22.330); FILE MERGED 2008/04/01 15:30:47 thb 1.22.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:42 thb 1.22.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:37 rt 1.22.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d6175d7372985a68215c13b5b36dc18dc8edf69d]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:44:38 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f07aae09ba62e2198d9cf47ea2ebc1d5a00e6781]

INTEGRATION: CWS changefileheader (1.11.700); FILE MERGED 2008/04/01 15:30:47 thb 1.11.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:42 thb 1.11.700.2: #i85898# Stripping all external header guards 2008/03/31 17:15:37 rt 1.11.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c53c93538d58f6f4db2af001148d497280686b1c]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/03/28 16:44:38 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [909c7d0032fd0d7594ad9d63e1e627bfb4465375]

INTEGRATION: CWS changefileheader (1.15.330); FILE MERGED 2008/04/01 15:30:47 thb 1.15.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:42 thb 1.15.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:37 rt 1.15.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4cd95ab35c8b41e50dfbbe6bfd0d46ed40e187d1]

INTEGRATION: CWS changefileheader (1.23.44); FILE MERGED 2008/04/01 15:04:27 thb 1.23.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:40 thb 1.23.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:38 rt 1.23.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [88e2fab172d7e0f3496393f9fb7f995983e19f3b]

INTEGRATION: CWS changefileheader (1.9.698); FILE MERGED 2008/04/01 15:30:47 thb 1.9.698.3: #i85898# Stripping all external header guards 2008/04/01 12:36:42 thb 1.9.698.2: #i85898# Stripping all external header guards 2008/03/31 17:15:37 rt 1.9.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [be62342847f49faafac4ad2b1de356fbdd807504]

INTEGRATION: CWS changefileheader (1.14.60); FILE MERGED 2008/04/01 10:50:40 thb 1.14.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:38 rt 1.14.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [132f0bbc7ca0b7f483301a53e1ada084c3eb11f4]

INTEGRATION: CWS changefileheader (1.8.492); FILE MERGED 2008/04/01 15:30:47 thb 1.8.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:37 rt 1.8.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [63cece567ef8ad5f21e1862ca12f08eb28d093d7]

INTEGRATION: CWS changefileheader (1.52.44); FILE MERGED 2008/04/01 15:04:26 thb 1.52.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:40 thb 1.52.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:38 rt 1.52.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b974068ad289d2efa5bed647f33f1426448893cc]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:15:37 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7db071a4f675a162f8fa9b284de7cf97cd9bcabb]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/03/28 16:44:36 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f8cfa2d79d1e62db7d91b802de7146269b7512d6]

INTEGRATION: CWS changefileheader (1.29.302); FILE MERGED 2008/03/31 17:15:37 rt 1.29.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6f692725c999b06f9cb6d8e920e44744c6dff8d1]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:36 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [496be0f6458e4aeba5894f701c05c16c4f05eadc]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:37 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0820f2a7dd6235ce094ab9b779f51d61e48f93a0]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:26 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:36 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [687358884a0c8e46904025e8acdd69185e7cf37f]

INTEGRATION: CWS changefileheader (1.9.34); FILE MERGED 2008/04/01 15:30:47 thb 1.9.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:37 rt 1.9.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [26c1f44e7ab6fde33dcbe276877ccce4048f5d87]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 10:50:40 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:36 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8c520e1bd907ba4c23d83d689109f96787c02a7e]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/03/31 17:15:37 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5ab0973bb40091114dd6bbf698f468d01f86b11e]

INTEGRATION: CWS changefileheader (1.9.94); FILE MERGED 2008/04/01 10:50:40 thb 1.9.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:36 rt 1.9.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2c53128b8d4659bb3635736081bc9dd1c0c7dfd5]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/03/31 17:15:36 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f3ed1934d07e10e7633ff58412d89c3e2517200d]

INTEGRATION: CWS changefileheader (1.9.94); FILE MERGED 2008/03/28 16:44:35 rt 1.9.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [956941b1231c68419554fb79222ee970bd2c11fd]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/04/01 15:30:46 thb 1.6.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:36 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [81151b8a536d1d0c60b710f88756f92995e0cb35]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:44:35 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [98c8e9a3cae8ef9fde5629fb7fae114babc1e7a1]

INTEGRATION: CWS changefileheader (1.17.34); FILE MERGED 2008/03/31 17:15:36 rt 1.17.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c993ffe81a476d201ca8517fc356ae9e5dce2f6f]

INTEGRATION: CWS changefileheader (1.8.126); FILE MERGED 2008/03/28 16:44:35 rt 1.8.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7c24b45817bb11c48bd7ab9e56dae1cc1f4f0b43]

INTEGRATION: CWS changefileheader (1.48.302); FILE MERGED 2008/03/31 17:15:36 rt 1.48.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6352c93924a7093946e82967d0fa32077fa0a8a1]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:35 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d214c95eb09e49af04c481982df2e0601219d1e7]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:36 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cd15265c357e6f45b65de89d517a584f39bda322]

INTEGRATION: CWS changefileheader (1.3.92); FILE MERGED 2008/04/01 15:04:26 thb 1.3.92.2: #i85898# Stripping all external header guards 2008/03/28 16:44:35 rt 1.3.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2385ef37e1bca6f8617a8bab6927e75e70b3159c]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/04/01 15:30:46 thb 1.5.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:36 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [af2df48ff15d32723f8ee3bac1524fdb8d2255cb]

INTEGRATION: CWS changefileheader (1.9.94); FILE MERGED 2008/04/01 15:04:26 thb 1.9.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:40 thb 1.9.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:35 rt 1.9.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [04447d5a3cc96e47a5ac94d4ac1f07de07e21418]

INTEGRATION: CWS changefileheader (1.34.302); FILE MERGED 2008/03/31 17:15:36 rt 1.34.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ca9a62e98d70e6e1586862f5922e1ac96ff94015]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/03/28 16:44:35 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e3fee1071c36c18d849dd1f792549c4bd6b809d6]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:15:36 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f7ddf19e642500eca31fd91dca70e9003bad88c0]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/04/01 10:50:40 thb 1.6.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:35 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [efc19ae44ef1eeba5c14928a94435b3a5c0032eb]

INTEGRATION: CWS changefileheader (1.14.34); FILE MERGED 2008/03/31 17:15:36 rt 1.14.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [535d90464c10429060f6caef769637dea49bb033]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/04/01 15:30:46 thb 1.6.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:33 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f738c9398e6bc71ea7170730201ec6112ac091a1]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/03/28 16:44:34 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bc016974ca4f991a06ca6031e9b87eb2592cdf75]

INTEGRATION: CWS changefileheader (1.71.240); FILE MERGED 2008/03/31 17:15:33 rt 1.71.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a892033bd30ef92128f020dd46d5b5a889619135]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 15:04:26 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:34 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ea4d861d35abd7b772890cba288277d1e15f8916]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:15:33 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f1260e9596fb7cd6b135b2a7f431f993a1bbf90a]

INTEGRATION: CWS changefileheader (1.9.92); FILE MERGED 2008/04/01 15:04:26 thb 1.9.92.3: #i85898# Stripping all external header guards 2008/04/01 10:50:39 thb 1.9.92.2: #i85898# Stripping all external header guards 2008/03/28 16:44:34 rt 1.9.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3317212048de144583bbcbefc4465bd08550a1db]

INTEGRATION: CWS changefileheader (1.9.34); FILE MERGED 2008/03/31 17:15:33 rt 1.9.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7d7d08acfe4c88853a5479cf410b341464b37bb8]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/04/01 10:50:39 thb 1.6.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:34 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [071049332df865e7dd024cf865860ee6caf30a70]

INTEGRATION: CWS changefileheader (1.12.94); FILE MERGED 2008/04/01 15:04:26 thb 1.12.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:39 thb 1.12.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:34 rt 1.12.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [84c110924f7261b587b46704d314bf797122ea6e]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:25 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:39 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:34 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0f716db97492c6e1fbd022427ed1ba0dedcd2ac1]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:25 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:34 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d493dfffbc8df12f660a896fb7347820ca975a5b]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:39 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:34 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7e0cdb8ecda1637df52e785f8047e17bc3b33fcd]

INTEGRATION: CWS changefileheader (1.10.406); FILE MERGED 2008/03/31 17:15:32 rt 1.10.406.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [03c5bb160ffe4c63513c4f6106e9c216cd48c82e]

INTEGRATION: CWS changefileheader (1.14.86); FILE MERGED 2008/03/31 17:15:32 rt 1.14.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0bd08d01596fccd64dbab90698dead36d17b5ff1]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/03/28 16:44:34 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [88a91a642950ed42ab893d2d366de96d296ef8a2]

INTEGRATION: CWS changefileheader (1.6.406); FILE MERGED 2008/03/31 17:15:32 rt 1.6.406.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [60707e94a0e4a5c666d4eb3c23803e3beb09c819]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 15:04:25 thb 1.5.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:39 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:34 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ad82fdc5da9dd8449fb4c0511db15cdc220bc12f]

INTEGRATION: CWS changefileheader (1.27.124); FILE MERGED 2008/03/31 17:15:32 rt 1.27.124.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1b541e7e43c623a3e7eca6c31ccf0bbaf46141bb]

INTEGRATION: CWS changefileheader (1.12.66); FILE MERGED 2008/04/01 15:04:25 thb 1.12.66.2: #i85898# Stripping all external header guards 2008/03/28 16:44:33 rt 1.12.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9bbcf086a1f9da52ab90949dab00dbd6d8dfe332]

INTEGRATION: CWS changefileheader (1.10.66); FILE MERGED 2008/04/01 15:04:25 thb 1.10.66.2: #i85898# Stripping all external header guards 2008/03/28 16:44:33 rt 1.10.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fad0e731c5bf24687556a152978fea6ed55bd39f]

INTEGRATION: CWS changefileheader (1.11.124); FILE MERGED 2008/03/31 17:15:32 rt 1.11.124.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [33d51b4c88e55c53baf0e4f6a32ed89d68bd3cf8]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:25 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:39 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:33 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [47d4758ae5497c306addaa782623d7695310b437]

INTEGRATION: CWS changefileheader (1.22.182); FILE MERGED 2008/03/31 17:15:32 rt 1.22.182.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c55e73f28faf4869e1bb35571213d9758379a0d1]

INTEGRATION: CWS changefileheader (1.9.28); FILE MERGED 2008/03/28 16:44:33 rt 1.9.28.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [01eb9acf983c8e1bf623f81202ce9f95beac97f4]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:30:46 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:32 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2dab178f1079d56dfb68abfdf0e087f48f349763]

INTEGRATION: CWS changefileheader (1.26.26); FILE MERGED 2008/03/28 16:44:26 rt 1.26.26.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f7034875d6ff43fcce674f03e44028b0add18e51]

INTEGRATION: CWS changefileheader (1.8.292); FILE MERGED 2008/03/31 17:15:32 rt 1.8.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [14ba4ad7b8132e7b818b48f07bcb54b38e741906]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/04/01 15:04:24 thb 1.5.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:26 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fd781e34c307153d10fcc1896a8c7d5ba59cf966]

INTEGRATION: CWS changefileheader (1.27.226); FILE MERGED 2008/04/01 15:30:45 thb 1.27.226.3: #i85898# Stripping all external header guards 2008/04/01 12:36:41 thb 1.27.226.2: #i85898# Stripping all external header guards 2008/03/31 17:15:32 rt 1.27.226.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [abc4eb3878fca8006ea9b37d31c2a623caacca25]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:24 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:26 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [572a00d2a6c62d7847c053ef4edcd3841ef01480]

INTEGRATION: CWS changefileheader (1.11.182); FILE MERGED 2008/04/01 15:30:45 thb 1.11.182.2: #i85898# Stripping all external header guards 2008/03/31 17:15:32 rt 1.11.182.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [12c39627a581a434b8255cab57098ff405a3b915]

INTEGRATION: CWS changefileheader (1.24.88); FILE MERGED 2008/03/31 17:15:32 rt 1.24.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [677f9699682018c556bc3500f86ebb54a6e4c770]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:39 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:26 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [24f26f3a5d967c2be3200c1f2241ac3645145941]

INTEGRATION: CWS changefileheader (1.9.24); FILE MERGED 2008/03/31 17:15:31 rt 1.9.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [479e9800b335da7a5dcdf7767cc7ac4f15519ad0]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 10:50:39 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:26 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b4bc3011222be4f2d0a57e6097df1ee480fd7dd7]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/03/31 17:15:31 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e9a370950bb7239d7d0ce9b1192d067dcd34ae58]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:44:26 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e7f5ac1c0fc4814ab11816aa22133bf4f4c008fc]

INTEGRATION: CWS changefileheader (1.13.330); FILE MERGED 2008/04/01 15:30:45 thb 1.13.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:31 rt 1.13.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b46be0aecadbb419668793d2460845ed79fb3b25]

INTEGRATION: CWS changefileheader (1.8.240); FILE MERGED 2008/04/01 15:30:45 thb 1.8.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:31 rt 1.8.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [173a1a80be9971952e7883006f9a3e88c88ad3e9]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:26 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dd84cdfbdd9a150bfb8689b81f80a9d88ccbf356]

INTEGRATION: CWS changefileheader (1.4.116); FILE MERGED 2008/04/01 10:50:39 thb 1.4.116.2: #i85898# Stripping all external header guards 2008/03/28 16:44:26 rt 1.4.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b7e25a3563ac4e84060dd41de44115b4eeb65d8c]

INTEGRATION: CWS changefileheader (1.12.300); FILE MERGED 2008/04/01 15:30:45 thb 1.12.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:41 thb 1.12.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:31 rt 1.12.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5075a757efe93038c972ce614a710ffa259e9e05]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:30:45 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:31 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [69291ca215b2c3ad8340b69f59724aaa084fd7b0]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/03/28 16:44:25 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [194cea3d300cd44b1747d5e9ef8cb5fb423862c7]

INTEGRATION: CWS changefileheader (1.18.146); FILE MERGED 2008/04/01 15:30:44 thb 1.18.146.2: #i85898# Stripping all external header guards 2008/03/31 17:15:31 rt 1.18.146.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9ae090f0b8f2573ab2bd049e7d9748d8ebd48cd9]

INTEGRATION: CWS changefileheader (1.15.300); FILE MERGED 2008/03/31 17:15:31 rt 1.15.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7e7f39b46295cb7b74c1a127cbf4a5b36d7b63b4]

INTEGRATION: CWS changefileheader (1.6.20); FILE MERGED 2008/04/01 15:04:24 thb 1.6.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:38 thb 1.6.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:25 rt 1.6.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2c035c71239a89dd7d8bb03b04d12d14dbb3e634]

INTEGRATION: CWS changefileheader (1.33.96); FILE MERGED 2008/04/01 15:30:44 thb 1.33.96.2: #i85898# Stripping all external header guards 2008/03/31 17:15:31 rt 1.33.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [833650908bb3cb48455cadb88c75a39ecbb59153]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:25 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4e98e1ea7c80b4c3728dbdbfec1cc760e7772700]

INTEGRATION: CWS changefileheader (1.9.34); FILE MERGED 2008/04/01 10:50:38 thb 1.9.34.2: #i85898# Stripping all external header guards 2008/03/28 16:44:25 rt 1.9.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a41f35f5d95e00bb2553cbad6d33518ceb6cd576]

INTEGRATION: CWS changefileheader (1.29.302); FILE MERGED 2008/03/31 17:15:31 rt 1.29.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6f398b87cb4162f516bb16b7c2d79495d53153d3]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:24 thb 1.3.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:38 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:25 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e500354db186cf342435bd8777c043482490026a]

INTEGRATION: CWS changefileheader (1.8.492); FILE MERGED 2008/04/01 15:30:44 thb 1.8.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:31 rt 1.8.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d1dcb17bc24ff30cfbc99a9943093f8b4e0f7307]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/03/28 16:44:25 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [97f06f846e978640e1e597fc761d0cfd435def40]

INTEGRATION: CWS changefileheader (1.36.88); FILE MERGED 2008/03/31 17:15:31 rt 1.36.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [31d72190857e1363814de215690311c069b39c0d]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/04/01 15:04:24 thb 1.4.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:38 thb 1.4.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:25 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [76af010d17db822d6f599752087171f0e26f9b73]

INTEGRATION: CWS changefileheader (1.8.300); FILE MERGED 2008/03/31 17:15:31 rt 1.8.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [00307ad7bea61cc851a97acaee89790c24130fc0]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 15:04:24 thb 1.7.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:38 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:25 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5af08549fd60ddd00f77eb0206e41e72c70e8eac]

INTEGRATION: CWS changefileheader (1.25.96); FILE MERGED 2008/04/01 15:30:44 thb 1.25.96.3: #i85898# Stripping all external header guards 2008/04/01 12:36:41 thb 1.25.96.2: #i85898# Stripping all external header guards 2008/03/31 17:15:30 rt 1.25.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5d31457cc1d9865c96c96f679e1bfc50cc48f978]

INTEGRATION: CWS changefileheader (1.14.146); FILE MERGED 2008/04/01 15:30:44 thb 1.14.146.2: #i85898# Stripping all external header guards 2008/03/31 17:15:30 rt 1.14.146.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9a6e5d6054f6a17bdd5f2ae0554089fb5f7b8abf]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:24 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:25 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [335a3123ac86c8e135816e828f6b1e29c92388e8]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/04/01 15:30:44 thb 1.6.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:30 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5624921e93521db07fa2ed70fbd3f28670bb1057]

INTEGRATION: CWS changefileheader (1.6.92); FILE MERGED 2008/03/28 16:44:25 rt 1.6.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f4d58e286bbeeb579f8b9b2087b3cff0f52e4d4a]

INTEGRATION: CWS changefileheader (1.28.302); FILE MERGED 2008/03/31 17:15:30 rt 1.28.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f2aee99f17bed6180f6918fc00c6dd31ccae368d]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:24 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:25 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f48e3b8d6e48a4e85c506113f0a9e2fd95f769e9]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:30 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [904c79ae89cce1fc58645d3ed67c576004246e54]

INTEGRATION: CWS changefileheader (1.2.60); FILE MERGED 2008/03/28 16:44:24 rt 1.2.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [68e7c224b85d9c1bea73e988233f436cec62bd8a]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:15:30 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ff678bb9ee935fd4e67d239439553b05e7621df5]

INTEGRATION: CWS changefileheader (1.3.44); FILE MERGED 2008/03/28 16:44:24 rt 1.3.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b1000bf34cfbe11050e2483b1ec1eaae4bf3e94c]

INTEGRATION: CWS changefileheader (1.30.182); FILE MERGED 2008/04/01 15:30:43 thb 1.30.182.2: #i85898# Stripping all external header guards 2008/03/31 17:15:30 rt 1.30.182.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [39ab3c606d040cb4d870346fe41a31199b03f671]

INTEGRATION: CWS changefileheader (1.6.60); FILE MERGED 2008/03/28 16:44:24 rt 1.6.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4265934fbad4b0645d0741b66047ebfb2f6b696a]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:15:30 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9eb3e4cabe87807e8e12062f240251a747c18c39]

INTEGRATION: CWS changefileheader (1.8.44); FILE MERGED 2008/04/01 15:04:24 thb 1.8.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:38 thb 1.8.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:24 rt 1.8.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [82b2abade9c479b8c59eb841f6a08e7fe4eab01e]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/03/31 17:15:30 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f80b9b6d503bd88e9e485f22e74283ea7adfd8a7]

INTEGRATION: CWS changefileheader (1.13.34); FILE MERGED 2008/04/01 10:50:38 thb 1.13.34.2: #i85898# Stripping all external header guards 2008/03/28 16:44:24 rt 1.13.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8e81dda5d0bf53b6e419ec1944f05df16dd2bdbe]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/03/31 17:15:30 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d5aaac472801fd4cae3151ceab3bbad1930cbec4]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:30:43 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:30 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d96c990874123a517b017dbe53f7be9f5cebe498]

INTEGRATION: CWS changefileheader (1.5.60); FILE MERGED 2008/04/01 15:04:23 thb 1.5.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:24 rt 1.5.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5bcb21354e5936dd5b62a49f6a083dc691747df9]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:15:30 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9915c0c61050cec4bb287ac751088dcfd770723d]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/03/28 16:44:24 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [94a87328fef821f94e6b4cb2e858ccfe7dda0428]

INTEGRATION: CWS changefileheader (1.12.34); FILE MERGED 2008/03/31 17:15:30 rt 1.12.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ea313e4593c7fe34ac86af3b7166f1581d5477da]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/03/28 16:44:24 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8b89f252e091b250ab485d43b6797d3b998daf7d]

INTEGRATION: CWS changefileheader (1.5.68); FILE MERGED 2008/04/01 10:50:38 thb 1.5.68.2: #i85898# Stripping all external header guards 2008/03/28 16:44:24 rt 1.5.68.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [985905c5946bc76ed9b0260acc1bf27f6106b47f]

INTEGRATION: CWS changefileheader (1.41.34); FILE MERGED 2008/04/01 15:30:43 thb 1.41.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:41 thb 1.41.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:29 rt 1.41.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ee64576ec43975370ef4dfdeeff637b93d75ab33]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:15:29 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8f670528600725f9010b4c9b3bfaebf8f673f1ba]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/04/01 15:04:23 thb 1.6.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:38 thb 1.6.34.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e3beccd98b31027d234990e7a091f45dcc9bfacc]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/03/31 17:15:29 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0aae69bafb1943183911dd4327083ce11d9cb91a]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 15:04:23 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ee9c6f06d45e4711df91ae6b9a72c64cb559f411]

INTEGRATION: CWS changefileheader (1.2.400); FILE MERGED 2008/03/31 17:15:29 rt 1.2.400.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bc9d5a6afd337a581f1b96fbe69057e1477ae0b2]

INTEGRATION: CWS changefileheader (1.7.92); FILE MERGED 2008/04/01 15:04:23 thb 1.7.92.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.7.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [97eeb2f6d224b527fcb7a798918251a9b94e9bf3]

INTEGRATION: CWS changefileheader (1.26.270); FILE MERGED 2008/03/31 17:15:29 rt 1.26.270.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [375563369b0b62b306a00bc6c112696084ffd5b7]

INTEGRATION: CWS changefileheader (1.4.94); FILE MERGED 2008/04/01 15:04:23 thb 1.4.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.4.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5a97696a99203e7563d90829d3842a56df40c441]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/03/31 17:15:29 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8978e9a3f4c8252a50c9eb09644e4cd335f77a8e]

INTEGRATION: CWS changefileheader (1.3.170); FILE MERGED 2008/03/28 16:44:23 rt 1.3.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9232962e587a1ca3411db54f15e69e2af1046d2a]

INTEGRATION: CWS changefileheader (1.16.490); FILE MERGED 2008/03/31 17:15:29 rt 1.16.490.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [65bde6b30af3570ca7681f637793a33d14d08ee6]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:38 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [08dab9a8b3549fb400ba13b9ffb3ccc4a1078e48]

INTEGRATION: CWS changefileheader (1.19.34); FILE MERGED 2008/03/31 17:15:29 rt 1.19.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d23b64fbebad5a2bbfa0ad742be89f6f68406770]

INTEGRATION: CWS changefileheader (1.59.34); FILE MERGED 2008/04/01 15:30:42 thb 1.59.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:41 thb 1.59.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:29 rt 1.59.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b03400665c0cea8a91c039226d2fffb4e97c2226]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:23 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a31a2ba18702249c4d8d6aaa58ee035cc9ff4fe2]

INTEGRATION: CWS changefileheader (1.35.34); FILE MERGED 2008/04/01 15:30:42 thb 1.35.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:29 rt 1.35.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a08e9ebb3ef8d6c746c26f5a89acb846b7347470]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/03/28 16:44:23 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [14479094a1f353074f34e1d4cfb723cdb87167a4]

INTEGRATION: CWS changefileheader (1.24.96); FILE MERGED 2008/04/01 15:30:42 thb 1.24.96.2: #i85898# Stripping all external header guards 2008/03/31 17:15:29 rt 1.24.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d96e62306e491227104044868a20a91f8dae3c0a]

INTEGRATION: CWS changefileheader (1.4.44); FILE MERGED 2008/03/28 16:44:23 rt 1.4.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f24a3102d10eabab9418d6b155c65698eee6c686]

INTEGRATION: CWS changefileheader (1.98.34); FILE MERGED 2008/04/01 15:30:42 thb 1.98.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:41 thb 1.98.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:29 rt 1.98.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e3fb64f9b55deefaa13996ca368f61337bb3d0fe]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/04/01 15:04:23 thb 1.4.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b5d79c6632968cd354b0ab37e7c1764e1cbbde4a]

INTEGRATION: CWS changefileheader (1.68.34); FILE MERGED 2008/04/01 15:30:42 thb 1.68.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:28 rt 1.68.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e33d55601c14e1c0db79ba1a51aecbd69a1657ba]

INTEGRATION: CWS changefileheader (1.7.60); FILE MERGED 2008/03/28 16:44:23 rt 1.7.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [831e53b4d5b479b15bcb5ed5bda788dc16845536]

INTEGRATION: CWS changefileheader (1.23.88); FILE MERGED 2008/03/31 17:15:28 rt 1.23.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9d6759b0d709edd12b5ecc263ceaa32644baaf43]

INTEGRATION: CWS changefileheader (1.19.88); FILE MERGED 2008/03/31 17:15:28 rt 1.19.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2299b5c6ff50a88a7910804d9f5accc3cbda454d]

INTEGRATION: CWS changefileheader (1.6.70); FILE MERGED 2008/04/01 10:50:38 thb 1.6.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.6.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c47b42b9d783e2c3135df55d9d7d65219e08778b]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/03/31 17:15:28 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1a45887abb5add3ed393b05b20413062a811cbb4]

INTEGRATION: CWS changefileheader (1.5.94); FILE MERGED 2008/04/01 15:04:23 thb 1.5.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:23 rt 1.5.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cf299a0dd56bec1d55ec2a7ce7ddd256779307af]

INTEGRATION: CWS changefileheader (1.26.240); FILE MERGED 2008/03/31 17:15:28 rt 1.26.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f5ea0c2bfa08a315d7c464b83e904931479492cd]

INTEGRATION: CWS changefileheader (1.8.126); FILE MERGED 2008/04/01 15:04:22 thb 1.8.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:38 thb 1.8.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:22 rt 1.8.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f9f6b724553209d40883e10cd41dde789fefa8d8]

INTEGRATION: CWS changefileheader (1.45.244); FILE MERGED 2008/03/31 17:15:18 rt 1.45.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7fa8e448e1f4faca9b59de230802aed4f57731f9]

INTEGRATION: CWS changefileheader (1.3.44); FILE MERGED 2008/03/28 16:44:22 rt 1.3.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7aed1080dee39543fef92ddbd6c8342feb67a01c]

INTEGRATION: CWS changefileheader (1.17.94); FILE MERGED 2008/03/31 17:15:18 rt 1.17.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [586dc041754e088dc61d456ea30e38b3c6e19c19]

INTEGRATION: CWS changefileheader (1.5.4); FILE MERGED 2008/04/01 15:04:22 thb 1.5.4.3: #i85898# Stripping all external header guards 2008/04/01 10:50:37 thb 1.5.4.2: #i85898# Stripping all external header guards 2008/03/28 16:44:22 rt 1.5.4.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [001a4046de7fb0e180acf2515445f1e030ad0e7b]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/03/31 17:15:18 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [64d5ad84cb87b5c5f3f05b3c2ca0b6a40700ed42]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/03/28 16:44:22 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [938a4b0ee3557454d9a380bff9dded8fafed0a81]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/03/31 17:15:18 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [88218ec9c6595df8f14e715df10bad791f53adcc]

INTEGRATION: CWS changefileheader (1.5.70); FILE MERGED 2008/03/28 16:44:22 rt 1.5.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f615a17d87b3f48efa0e1f883df885c38f0288cf]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:15:17 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [925ab343a48d4b8e273542668ced8113d65c7368]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 15:04:22 thb 1.3.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:37 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:22 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [574923673591d9461f423f3a5eabaa17fdc84de2]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 10:50:37 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:22 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ad3991659bca102d961be59cf8e81c84e4668dd1]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:30:41 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:17 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8e3d49235a0cedc1e6eba89644f76434a1758950]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:22 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c401faa42f47bcd592a77b58b6833e144e3ef951]

INTEGRATION: CWS changefileheader (1.7.70); FILE MERGED 2008/04/01 10:50:37 thb 1.7.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:22 rt 1.7.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [22602c409101b6b196d3cb61123c616754ab0c50]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:30:41 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:17 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3b63b26769e87787d4e3213b4c7ca01bb805bab1]

INTEGRATION: CWS changefileheader (1.13.192); FILE MERGED 2008/04/01 15:30:41 thb 1.13.192.2: #i85898# Stripping all external header guards 2008/03/31 17:15:17 rt 1.13.192.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [897d7b37496c6e8211fb66d51347e7bd9120af37]

INTEGRATION: CWS changefileheader (1.6.60); FILE MERGED 2008/03/28 16:44:22 rt 1.6.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f3e8e22ae51b6db20555f1b5f55c48e79e8666cc]

INTEGRATION: CWS changefileheader (1.43.302); FILE MERGED 2008/03/31 17:15:17 rt 1.43.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3c4900b8fe15ff97f246277639f4772cf67ae380]

INTEGRATION: CWS changefileheader (1.10.20); FILE MERGED 2008/03/28 16:44:22 rt 1.10.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6a89073dfb6d62aa1f1581b0492812eb3041b2cb]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:15:17 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ec089a89553cd6c0e250c4f574fc0f4ba7b06d96]

INTEGRATION: CWS changefileheader (1.15.16); FILE MERGED 2008/03/28 16:44:21 rt 1.15.16.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [faa4be1a7a0507224e9978ec525bad3f14405975]

INTEGRATION: CWS changefileheader (1.16.300); FILE MERGED 2008/04/01 15:30:41 thb 1.16.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:17 rt 1.16.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aef7e4e732f7034a8fd48fa29a0d6d51933c3469]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/03/28 16:44:21 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [539fe225879700afcc9a35a7028116149a47a2a0]

INTEGRATION: CWS changefileheader (1.27.136); FILE MERGED 2008/03/31 17:15:17 rt 1.27.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ba7d473cfca18100aac9168670557942f3aac3d4]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:44:21 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [971c7330b257133114a6c2c6000992e08678ef48]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:17 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4612efd0dfb66d0e89ebc3700f336f2ba2163d69]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/04/01 15:04:22 thb 1.8.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:37 thb 1.8.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:21 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [af498541434ff5af70f1e53846e6430862c4c01a]

INTEGRATION: CWS changefileheader (1.38.302); FILE MERGED 2008/03/31 17:15:17 rt 1.38.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fe02be041e3833c392df6c3b62c008405c43fe82]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:21 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9da261edd2568c7f0c26f45ab013d7639619447c]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/03/31 17:15:17 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5470458fa7d0595ea4327f5312dc51b1c490d18d]

INTEGRATION: CWS changefileheader (1.3.170); FILE MERGED 2008/03/28 16:44:21 rt 1.3.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [befa7073110bfc0668cef347ac02ec1d0a9c42b4]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/03/31 17:15:17 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8b22aa199b363cc04a4adcef06799bf9c02f195a]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:20 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [88d37eadbd66a9da8d74efe3f2586212da4e85fe]

INTEGRATION: CWS changefileheader (1.59.302); FILE MERGED 2008/03/31 17:15:17 rt 1.59.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4e06ade841a06a3107cb0c9fd06606f18f5b7d6e]

INTEGRATION: CWS changefileheader (1.11.94); FILE MERGED 2008/04/01 15:04:22 thb 1.11.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:37 thb 1.11.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:20 rt 1.11.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3e2c048cd08c3161d3f7bf4d3af4f971cfcadb47]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/03/31 17:15:17 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [92c5f88196ab8ad222c02d3f47a4252a59559a09]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:37 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:20 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c339bc007f60f7b401552424eaf1fb15594438ef]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/04/01 15:30:41 thb 1.9.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:17 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [55efbfef31f877bf6ea4a80df0a3e8f2f32ade92]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:22 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:37 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:20 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8376385014e145b7c5fdc86241387c1953e44ee2]

INTEGRATION: CWS changefileheader (1.8.700); FILE MERGED 2008/03/31 17:15:17 rt 1.8.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d1275e0386b5c61ba343c4486f87ab776355f13b]

INTEGRATION: CWS changefileheader (1.18.34); FILE MERGED 2008/03/28 16:44:20 rt 1.18.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2bc18a800dee74d606bfb138cb609c634736c468]

INTEGRATION: CWS changefileheader (1.10.34); FILE MERGED 2008/03/31 17:15:17 rt 1.10.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ddc007c23ad82cc89bc336fa3b4460bd85552daa]

INTEGRATION: CWS changefileheader (1.11.60); FILE MERGED 2008/04/01 15:04:22 thb 1.11.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:37 thb 1.11.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:20 rt 1.11.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3c48095fb9625f4c06d8673f1c7835d0e99ce75c]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:22 thb 1.3.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:37 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:20 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [46d053499cf11b9becf63642b87f23ae6ceb7a8d]

INTEGRATION: CWS changefileheader (1.7.70); FILE MERGED 2008/03/28 16:44:19 rt 1.7.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a121a0f91bceffb2c6c95768b7c2bfe0134d2fef]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/04/01 15:04:21 thb 1.5.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:37 thb 1.5.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:19 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bee26f6fce5257070f70f6bd239a6861c8a2867a]

INTEGRATION: CWS changefileheader (1.4.94); FILE MERGED 2008/04/01 10:50:36 thb 1.4.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:19 rt 1.4.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [186824313af684567b58d6403dc6216b4324a4f7]

INTEGRATION: CWS changefileheader (1.3.70); FILE MERGED 2008/04/01 15:04:21 thb 1.3.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:36 thb 1.3.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:19 rt 1.3.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [60f347bbb8b542fdadc36e0175f37da87c52b199]

INTEGRATION: CWS changefileheader (1.9.126); FILE MERGED 2008/03/28 16:44:14 rt 1.9.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5c7397e0382984d5e31136c5d5198e6564fe1a95]

INTEGRATION: CWS changefileheader (1.34.302); FILE MERGED 2008/03/31 17:15:14 rt 1.34.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ac03d6d47120f4f94dc416506b7da2dc83edb805]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:14 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c034762506f7fff5aaf6b6ce485b15ba111c8e8]

INTEGRATION: CWS changefileheader (1.6.588); FILE MERGED 2008/03/31 17:15:14 rt 1.6.588.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [521f79282355432e572f4d7730dcb90cc4a8b28b]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:36 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:14 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5f9526557b27ad623641db0d43bd6b573169c0fb]

INTEGRATION: CWS changefileheader (1.13.492); FILE MERGED 2008/04/01 15:30:40 thb 1.13.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:14 rt 1.13.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e4f5243d3745ed6a9ec445d417e6198570139ddf]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:15:14 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d83e3d33a217883e020e56946983a591b4709841]

INTEGRATION: CWS changefileheader (1.15.88); FILE MERGED 2008/04/01 15:30:40 thb 1.15.88.2: #i85898# Stripping all external header guards 2008/03/31 17:15:14 rt 1.15.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1d885eaa393d750029cb344715d631e2c7a76b63]

INTEGRATION: CWS changefileheader (1.19.330); FILE MERGED 2008/04/01 15:30:40 thb 1.19.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:40 thb 1.19.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:14 rt 1.19.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [15b13b690410f6294270d321e8ee1c8206d25413]

INTEGRATION: CWS changefileheader (1.5.60); FILE MERGED 2008/04/01 15:04:21 thb 1.5.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:14 rt 1.5.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bb60ed1c0c26c69bdfd4d67e8b06a5c0565f4f26]

INTEGRATION: CWS changefileheader (1.11.60); FILE MERGED 2008/04/01 10:50:36 thb 1.11.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:14 rt 1.11.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cd36f5f41122e1eb2b4fb63a611c0b8da25f99e6]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:15:14 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1e47578ca650cbf4f1e68379662b11810c4f50e2]

INTEGRATION: CWS changefileheader (1.4.302); FILE MERGED 2008/03/31 17:15:14 rt 1.4.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [be454fdb1a842f77819d27827caf19f1050aeaf9]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/04/01 15:04:21 thb 1.8.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:36 thb 1.8.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:14 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5bb8190f4b7813dcbe350249c9e69d1a258b5fd2]

INTEGRATION: CWS changefileheader (1.12.60); FILE MERGED 2008/04/01 10:50:36 thb 1.12.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:14 rt 1.12.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [053ce7bc8f6fd6ae8b7f48f7b4006b8fc5a12b0e]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:14 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [569610b5e0a96bfd4dce9e695539c5aa4b02896d]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 10:50:36 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:14 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d6080370602c4e9448f3d0ff033ffbbe28c0ee13]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 15:30:40 thb 1.7.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:40 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:14 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9532aa6714d83851c744ef277a4b1f2d27a4e4b8]

INTEGRATION: CWS changefileheader (1.7.70); FILE MERGED 2008/04/01 10:50:36 thb 1.7.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:14 rt 1.7.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c6b07191e46ea261e40888ef7c54369e2e1913b1]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/03/31 17:15:14 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e26fde324eedf3580a7428ec45c5e773f360ee18]

INTEGRATION: CWS changefileheader (1.6.60); FILE MERGED 2008/04/01 15:04:21 thb 1.6.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:36 thb 1.6.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:14 rt 1.6.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b5ec59af81ea3e40ffd80a226866beb6bab062aa]

INTEGRATION: CWS changefileheader (1.37.302); FILE MERGED 2008/03/31 17:15:13 rt 1.37.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2c8d605ab2f35de143875d5511b1f41fafa2c660]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:15:13 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cb1babdb0904c3133bb7dafcee857a99e1b11eec]

INTEGRATION: CWS changefileheader (1.15.34); FILE MERGED 2008/04/01 10:50:36 thb 1.15.34.2: #i85898# Stripping all external header guards 2008/03/28 16:44:13 rt 1.15.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5f4cebb0b98c4fd56bd0b415b1f25530f05f9a01]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:15:13 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f86edc9344a070489a1cfb78bced5f1300873f29]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:44:13 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6156bade23b0fa6fc4e40e5f59029b9248c4fdb9]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/03/31 17:15:13 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6e90122118d90c6f3fabc490dfaf1b855d3376b5]

INTEGRATION: CWS changefileheader (1.7.70); FILE MERGED 2008/04/01 10:50:36 thb 1.7.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:13 rt 1.7.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a47774ae7985da7b177898084fa2588ea56e921e]

INTEGRATION: CWS changefileheader (1.13.300); FILE MERGED 2008/04/01 15:30:40 thb 1.13.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:40 thb 1.13.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:13 rt 1.13.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e96d2645da718a1d75df6ed3ed50939978c64d1c]

INTEGRATION: CWS changefileheader (1.5.60); FILE MERGED 2008/03/28 16:44:13 rt 1.5.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9b52fc503e1d35c66900053641289d0de6d05e56]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/04/01 15:30:40 thb 1.4.492.3: #i85898# Stripping all external header guards 2008/04/01 12:36:40 thb 1.4.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:13 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0aefdf3d645079f9e9c592ca5e2212699a2c3ed7]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/04/01 10:50:35 thb 1.8.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:13 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8974c7fcc33ef5cfe5c9684ef6cb3cbaca4c4ee5]

INTEGRATION: CWS changefileheader (1.15.176); FILE MERGED 2008/04/01 12:36:40 thb 1.15.176.2: #i85898# Stripping all external header guards 2008/03/31 17:15:13 rt 1.15.176.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [83c6762580e232926a1c0fb80f30d155c7b42e8e]

INTEGRATION: CWS changefileheader (1.27.300); FILE MERGED 2008/04/01 15:30:39 thb 1.27.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:40 thb 1.27.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:13 rt 1.27.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d01929e2255ba6a2799511673fe7a794496383fd]

INTEGRATION: CWS changefileheader (1.6.94); FILE MERGED 2008/04/01 10:50:35 thb 1.6.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:13 rt 1.6.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [74d349003328022871fbe00bba2141975371a69c]

INTEGRATION: CWS changefileheader (1.12.60); FILE MERGED 2008/04/01 15:04:21 thb 1.12.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:35 thb 1.12.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:13 rt 1.12.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [674ab7032ec193fb393e1f007d5e1b1e781255e6]

INTEGRATION: CWS changefileheader (1.17.60); FILE MERGED 2008/04/01 10:50:35 thb 1.17.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:13 rt 1.17.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e703a93ae773ee0f13b29a6df57806bd4e098108]

INTEGRATION: CWS changefileheader (1.9.492); FILE MERGED 2008/04/01 15:30:39 thb 1.9.492.3: #i85898# Stripping all external header guards 2008/04/01 12:36:40 thb 1.9.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:13 rt 1.9.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d454e3d9a063b73b4380c0969a30f3436d659752]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 10:50:35 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:13 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [48509534f32692d6d04eea0476b3f07deacf8950]

INTEGRATION: CWS changefileheader (1.38.302); FILE MERGED 2008/03/31 17:15:13 rt 1.38.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cb2961459c6c78f343167e87356790c7825dce71]

INTEGRATION: CWS changefileheader (1.10.70); FILE MERGED 2008/04/01 10:50:35 thb 1.10.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.10.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [55e2c6671b6e8cf3d068b566c0d26da22f14a1f4]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:21 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:35 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [abdc4dd0feb25dd4a53b928dc068c07cf07c2d35]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/04/01 15:30:39 thb 1.11.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:13 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [524f08843c90e2ffab1d54d8efaa1c3e6abce484]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:35 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [03c081af4a4a4763568cab991f2a4fa6f4515cee]

INTEGRATION: CWS changefileheader (1.35.192); FILE MERGED 2008/03/31 17:15:13 rt 1.35.192.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [08b54a51d2f58ce08302bba3dc47f1ddf0c6f398]

INTEGRATION: CWS changefileheader (1.5.192); FILE MERGED 2008/03/31 17:15:13 rt 1.5.192.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8cd3ebaec36ed47f5ce540b19e8b0c2ac4df05c1]

INTEGRATION: CWS changefileheader (1.24.492); FILE MERGED 2008/04/01 15:30:39 thb 1.24.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:13 rt 1.24.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5bfabcf4c866c77bed1709f93f713975274370dd]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/04/01 15:04:20 thb 1.8.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e2726e680624aca09cc993d58c06db0a95691cf7]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/03/31 17:15:13 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [baa08cbfcfb75b28a62d9acf5fed3e8d33ae6209]

INTEGRATION: CWS changefileheader (1.10.60); FILE MERGED 2008/04/01 10:50:35 thb 1.10.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.10.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [36bfd3dc5c0f09ea24cd02c4cf97962f611512f8]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/03/31 17:15:12 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fd995036cfcc7ddc03880efaa1cafd25cb948669]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:44:12 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dd9f1318b66e608b26a9b49c65a49de2a5f10fcd]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/03/31 17:15:12 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2b69776f4d1f61178aff49dc68e532c7b10275d0]

INTEGRATION: CWS changefileheader (1.6.70); FILE MERGED 2008/04/01 10:50:35 thb 1.6.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.6.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [be22c724c90340236d9755c12791e0de5cfa9ecc]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/04/01 15:30:38 thb 1.5.492.3: #i85898# Stripping all external header guards 2008/04/01 12:36:39 thb 1.5.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:12 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a95bd420078001e8eafd18c4210517c380c9413e]

INTEGRATION: CWS changefileheader (1.9.60); FILE MERGED 2008/04/01 15:04:20 thb 1.9.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:35 thb 1.9.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.9.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5616d8a5980644531faef56e9af673bd2cdbff2c]

INTEGRATION: CWS changefileheader (1.8.244); FILE MERGED 2008/03/31 17:15:12 rt 1.8.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7f3ecd903e4b3af1589d1b76c878a4fd6797dc42]

INTEGRATION: CWS changefileheader (1.18.60); FILE MERGED 2008/04/01 15:04:20 thb 1.18.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:35 thb 1.18.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.18.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a396f97fe941790900d82544075ba893007a093c]

INTEGRATION: CWS changefileheader (1.8.88); FILE MERGED 2008/03/31 17:15:10 rt 1.8.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [18faa419f13e9b8b0eeb1ee963d463d933e149cf]

INTEGRATION: CWS changefileheader (1.17.94); FILE MERGED 2008/04/01 15:04:20 thb 1.17.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:35 thb 1.17.94.2: #i85898# Stripping all external header guards 2008/03/28 16:44:12 rt 1.17.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e829fc432f6cec075c3aa2e73b9ec07c5ae462a8]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 15:30:38 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:10 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9b2658ab9387a4457c0c8f317e4f642ced7b4b2b]

INTEGRATION: CWS changefileheader (1.5.70); FILE MERGED 2008/04/01 15:04:20 thb 1.5.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:35 thb 1.5.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:11 rt 1.5.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [14844191ebd06f14389723ef36d36586b51eb04b]

INTEGRATION: CWS changefileheader (1.13.24); FILE MERGED 2008/03/31 17:15:10 rt 1.13.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f34c534d0ce36ddf6d875a44a31fca225efc8ccd]

INTEGRATION: CWS changefileheader (1.7.44); FILE MERGED 2008/04/01 10:50:34 thb 1.7.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:11 rt 1.7.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6a8fad34455294e7309d778cc6cd311ac4f52c82]

INTEGRATION: CWS changefileheader (1.13.192); FILE MERGED 2008/03/31 17:15:10 rt 1.13.192.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [daa8a877b841e4811560a189b6e3c3c92ff8e9c0]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:11 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [43649ec5a87f9a251e95570f6b9307151e0fe24f]

INTEGRATION: CWS changefileheader (1.8.164); FILE MERGED 2008/03/31 17:15:10 rt 1.8.164.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [579aef52f44ce7f3b36af164336ae8895d4be993]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/04/01 10:50:34 thb 1.4.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:11 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1e45a40fdf9cf25ecb42d83b23224c7c7af3df2d]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/03/31 17:15:10 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f4e107f7b38ccc9a2bc64b9f0edb2b074b15bc0e]

INTEGRATION: CWS changefileheader (1.7.60); FILE MERGED 2008/04/01 15:04:20 thb 1.7.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:11 rt 1.7.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [093556cea75c795838c6111bd07606480a049300]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/04/01 15:30:38 thb 1.9.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:10 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d77844775745600b3b354a16690aa1b3214d2648]

INTEGRATION: CWS changefileheader (1.13.44); FILE MERGED 2008/04/01 10:50:34 thb 1.13.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:11 rt 1.13.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [35f238e9ba8ed520c40ae2a16e3b9c1d6c596d68]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/04/01 15:30:38 thb 1.11.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:10 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [43befe00e607680b80e4f165eb398c6945217e31]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:44:11 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a4faf7762ea8d0cb79539629411c3d412266e3e2]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:15:10 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3473825b6deed680eace3757e2da5b89e01708b4]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:44:11 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dcb6bff3fbc6c38c20b55a860615a85c92c8444a]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/03/31 17:15:10 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ef3792d0848754eaff0a9238dbb6d24d9ca58d36]

INTEGRATION: CWS changefileheader (1.16.300); FILE MERGED 2008/03/31 17:15:09 rt 1.16.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [22e01da1a286ac3df584109a193ab1a710e3b972]

INTEGRATION: CWS changefileheader (1.10.60); FILE MERGED 2008/04/01 10:50:34 thb 1.10.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:11 rt 1.10.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ed9bf1b0178c2a90e52c6079a114af579440d802]

INTEGRATION: CWS changefileheader (1.32.240); FILE MERGED 2008/03/31 17:15:09 rt 1.32.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [27dc32aa9897627618438024fb15bbf936f1c2c0]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:44:10 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2f570c6aebb519e831a75f8baa6e4c99421272bb]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:15:09 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c3f2b56b7b3772a41b9b124b7e31db160bc88b4f]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:44:10 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cddf5cfe58a3a0cc46e5e4aa82f7a20efb629711]

INTEGRATION: CWS changefileheader (1.13.330); FILE MERGED 2008/03/31 17:15:09 rt 1.13.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d6b051df7d56b23be3b21cebfa433902f61c2da7]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/03/28 16:44:10 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cd4570a6c5a1c0b41ad517a66386dbbce40e83dc]

INTEGRATION: CWS changefileheader (1.11.492); FILE MERGED 2008/03/31 17:15:09 rt 1.11.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [db70d7f1c51793d9a9272e1ca8b1243b18ca5beb]

INTEGRATION: CWS changefileheader (1.7.20); FILE MERGED 2008/04/01 15:04:20 thb 1.7.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:10 rt 1.7.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [92fc9ea1026a510ea876e05601313022ff07a4f2]

INTEGRATION: CWS changefileheader (1.57.34); FILE MERGED 2008/04/01 15:30:37 thb 1.57.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:39 thb 1.57.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:09 rt 1.57.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1656fc6e572214e8be621141c474d8e9df0783e7]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/04/01 15:04:19 thb 1.4.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:34 thb 1.4.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:10 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [86d031654a157360904c61131140ac967521c64f]

INTEGRATION: CWS changefileheader (1.43.80); FILE MERGED 2008/04/01 15:30:37 thb 1.43.80.2: #i85898# Stripping all external header guards 2008/03/31 17:15:09 rt 1.43.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a726e3b1030b653c7aec2debfab4ae9897e02f9e]

INTEGRATION: CWS changefileheader (1.9.44); FILE MERGED 2008/04/01 15:04:19 thb 1.9.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:34 thb 1.9.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:10 rt 1.9.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c0dddbbe8631b07a46ca563d373356b4e9eeff42]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/03/31 17:15:09 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f2d3270b313afd659c14aec4022556edca374502]

INTEGRATION: CWS changefileheader (1.6.70); FILE MERGED 2008/04/01 15:04:19 thb 1.6.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:34 thb 1.6.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:10 rt 1.6.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [199e5ad7c41bee38b395a8ebf3d046151402233b]

INTEGRATION: CWS changefileheader (1.13.44); FILE MERGED 2008/04/01 15:04:19 thb 1.13.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:34 thb 1.13.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:10 rt 1.13.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [06fe94f4654c416a24b8c76a423f9743b6a61ac5]

INTEGRATION: CWS changefileheader (1.16.414); FILE MERGED 2008/03/31 17:15:09 rt 1.16.414.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2904b8e7d46b108e5d90950560d67ea0bf894f04]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/04/01 15:04:19 thb 1.2.246.3: #i85898# Stripping all external header guards 2008/04/01 10:50:34 thb 1.2.246.2: #i85898# Stripping all external header guards 2008/03/28 16:44:09 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8e85b7f19f2d2935cc62a9af14b34770c1dc2ba9]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:15:09 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [09cfba52be5487d6129e356c29a9e74ecf6faeeb]

INTEGRATION: CWS changefileheader (1.3.170); FILE MERGED 2008/04/01 10:50:34 thb 1.3.170.2: #i85898# Stripping all external header guards 2008/03/28 16:44:09 rt 1.3.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0f6c0f4d80b8caba51f166498b99cdc81a85de21]

INTEGRATION: CWS changefileheader (1.55.34); FILE MERGED 2008/04/01 15:30:37 thb 1.55.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:39 thb 1.55.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:09 rt 1.55.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1647e7386bcd3ecd1e0baf235311849618ab0d71]

INTEGRATION: CWS changefileheader (1.76.34); FILE MERGED 2008/03/31 17:15:09 rt 1.76.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c89b07879749fb33253ff819065d47f3fe8c8816]

INTEGRATION: CWS changefileheader (1.3.170); FILE MERGED 2008/03/28 16:44:09 rt 1.3.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1926a317a95c400fa5b2aee6a29a13dcfa12a47f]

INTEGRATION: CWS changefileheader (1.37.240); FILE MERGED 2008/04/01 15:30:37 thb 1.37.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:38 thb 1.37.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:09 rt 1.37.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4db0d9e6a25e36188aa78178c2f2eb29a33dd0c1]

INTEGRATION: CWS changefileheader (1.19.302); FILE MERGED 2008/04/01 12:36:38 thb 1.19.302.2: #i85898# Stripping all external header guards 2008/03/31 17:15:09 rt 1.19.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9d450cadbfa2563d7c84c843f6dc4a7abf872454]

INTEGRATION: CWS changefileheader (1.3.170); FILE MERGED 2008/04/01 10:50:33 thb 1.3.170.2: #i85898# Stripping all external header guards 2008/03/28 16:44:09 rt 1.3.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fdf025d2d45ee26efb907e3f996f1dd38eec7af1]

INTEGRATION: CWS changefileheader (1.17.34); FILE MERGED 2008/03/31 17:15:07 rt 1.17.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7862b9ab1db794e94abaa1350f61c065bec15f92]

INTEGRATION: CWS changefileheader (1.5.44); FILE MERGED 2008/04/01 15:04:19 thb 1.5.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.5.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:09 rt 1.5.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5b605565a5dd547ee15f969890000e84475d3fbd]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 15:30:37 thb 1.6.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:38 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:07 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [44c9a9234eb3989e02b755f7bab79851825f5c67]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 10:50:33 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:09 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c762a45eef05d8e08ba94a6e207234564d1ede4e]

INTEGRATION: CWS changefileheader (1.41.88); FILE MERGED 2008/04/01 15:30:36 thb 1.41.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:38 thb 1.41.88.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.41.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ea4ab77380a4d2ba7859e95c33c49acfdb798c08]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/03/28 16:44:09 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [94afc6cd3c95a7e6bc9d6864bcf0662559873b7f]

INTEGRATION: CWS changefileheader (1.33.240); FILE MERGED 2008/04/01 15:30:36 thb 1.33.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:38 thb 1.33.240.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.33.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7daf81717659edb6ec4da937e21406302383d753]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/04/01 15:04:19 thb 1.4.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.4.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:09 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ffb3da151d7a5d121233df02a8e76dc7a6e2f2ba]

INTEGRATION: CWS changefileheader (1.50.88); FILE MERGED 2008/04/01 15:30:36 thb 1.50.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:38 thb 1.50.88.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.50.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [34cd120f345d8ca659a725cb2b3549cf635c28e1]

INTEGRATION: CWS changefileheader (1.10.44); FILE MERGED 2008/04/01 15:04:19 thb 1.10.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.10.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:08 rt 1.10.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [25ab97a00c4e516e497d40dd6d236c1cb2fc89f6]

INTEGRATION: CWS changefileheader (1.27.330); FILE MERGED 2008/04/01 15:30:36 thb 1.27.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:37 thb 1.27.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.27.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9657f01dba050a8aa225cf03d9c890656e425edb]

INTEGRATION: CWS changefileheader (1.7.70); FILE MERGED 2008/04/01 15:04:18 thb 1.7.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.7.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:08 rt 1.7.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [59b9f19eb714db5a55ad74513705851fc35a4ef8]

INTEGRATION: CWS changefileheader (1.25.300); FILE MERGED 2008/04/01 15:30:36 thb 1.25.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:37 thb 1.25.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.25.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6cfe7e152063a24a3c38fa40f7f8716924ef34d1]

INTEGRATION: CWS changefileheader (1.18.44); FILE MERGED 2008/04/01 10:50:33 thb 1.18.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:08 rt 1.18.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [62decfd5e8a415024d90f4f887ddb8b5ad47d2b2]

INTEGRATION: CWS changefileheader (1.20.300); FILE MERGED 2008/04/01 15:30:36 thb 1.20.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:37 thb 1.20.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.20.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [667e710df5803880358dbbbd51cc657ff7e61c8f]

INTEGRATION: CWS changefileheader (1.3.246); FILE MERGED 2008/04/01 15:04:18 thb 1.3.246.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.3.246.2: #i85898# Stripping all external header guards 2008/03/28 16:44:08 rt 1.3.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [05b5267ed5c1f6fbb2f551a01598e5d43ca5777a]

INTEGRATION: CWS changefileheader (1.18.388); FILE MERGED 2008/04/01 15:30:35 thb 1.18.388.3: #i85898# Stripping all external header guards 2008/04/01 12:36:37 thb 1.18.388.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.18.388.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [461d4e2c7dbe018c7869972aeb81fc13fb7b4ef6]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:44:08 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [db5eac669789cac4ad2072f7176440049b287ded]

INTEGRATION: CWS changefileheader (1.21.330); FILE MERGED 2008/04/01 15:30:35 thb 1.21.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:37 thb 1.21.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.21.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [62883d7313154f6bd1601668214237d4a98efd11]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:18 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:08 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cea8cfdf687d27fef148816752ef7aa3830119c0]

INTEGRATION: CWS changefileheader (1.16.300); FILE MERGED 2008/04/01 15:30:35 thb 1.16.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:37 thb 1.16.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.16.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [941938e5fc54fceb70dcedeef881f774ec4660e8]

INTEGRATION: CWS changefileheader (1.37.88); FILE MERGED 2008/03/31 17:15:06 rt 1.37.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [54106c5acd58e09415157aedf677b721479860bf]

INTEGRATION: CWS changefileheader (1.9.94); FILE MERGED 2008/03/28 16:44:08 rt 1.9.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5af3adfbe0d06f98ab07fbab18271a7755edde5e]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/04/01 12:36:36 thb 1.4.492.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6009c2e0718abfbcaf10505eca7f7949666b0096]

INTEGRATION: CWS changefileheader (1.16.20); FILE MERGED 2008/04/01 15:04:18 thb 1.16.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.16.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:08 rt 1.16.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [df035a0153ebae6bacd6895f454fec5da2b305d8]

INTEGRATION: CWS changefileheader (1.74.34); FILE MERGED 2008/04/01 15:30:35 thb 1.74.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:36 thb 1.74.34.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.74.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b398afd7c1d8206969f36d95e7f0f4b2c2006473]

INTEGRATION: CWS changefileheader (1.3.70); FILE MERGED 2008/04/01 15:04:18 thb 1.3.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.3.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:08 rt 1.3.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6e35baf5976b2daf020f7bf16c2702fc46962f9d]

INTEGRATION: CWS changefileheader (1.14.88); FILE MERGED 2008/04/01 15:30:35 thb 1.14.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:36 thb 1.14.88.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.14.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cbbce5e8999df856b4f19bf140a01fd178e5a2a8]

INTEGRATION: CWS changefileheader (1.6.44); FILE MERGED 2008/04/01 15:04:18 thb 1.6.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.6.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:07 rt 1.6.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [75ceeb396a2b53f4f30836c258ad99bd40c65e48]

INTEGRATION: CWS changefileheader (1.21.300); FILE MERGED 2008/04/01 15:30:35 thb 1.21.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:36 thb 1.21.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.21.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6a5907614d61c320656e2b2f6a1a48c968a90a34]

INTEGRATION: CWS changefileheader (1.5.70); FILE MERGED 2008/04/01 15:04:18 thb 1.5.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:33 thb 1.5.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:07 rt 1.5.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6d0dc5825e0d22596008474f43bcd0cd2cd28334]

INTEGRATION: CWS changefileheader (1.32.330); FILE MERGED 2008/04/01 15:30:34 thb 1.32.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:36 thb 1.32.330.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.32.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c16d92a530a8aaf6c8818d16128fe4dec28048b6]

INTEGRATION: CWS changefileheader (1.8.44); FILE MERGED 2008/04/01 10:50:33 thb 1.8.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:07 rt 1.8.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5983598ce9c6a6d9e737cb1ccd0dfc4b26b6531d]

INTEGRATION: CWS changefileheader (1.21.320); FILE MERGED 2008/04/01 15:30:34 thb 1.21.320.3: #i85898# Stripping all external header guards 2008/04/01 12:36:36 thb 1.21.320.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.21.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5daabaa517e601b52d89619aa098413a96c1bdbe]

INTEGRATION: CWS changefileheader (1.21.32); FILE MERGED 2008/04/01 10:50:33 thb 1.21.32.2: #i85898# Stripping all external header guards 2008/03/28 16:44:07 rt 1.21.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e5f42adeee2740c972db1de53d5288e5b671af02]

INTEGRATION: CWS changefileheader (1.32.300); FILE MERGED 2008/04/01 15:30:34 thb 1.32.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:36 thb 1.32.300.2: #i85898# Stripping all external header guards 2008/03/31 17:15:06 rt 1.32.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4d2ef43c3b17605efc40fc16588aecf919dc1169]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/04/01 15:04:18 thb 1.2.246.2: #i85898# Stripping all external header guards 2008/03/28 16:44:07 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3ca4dd29b90b80291be871ac277c9b394846737e]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 15:04:18 thb 1.5.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:07 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [63fc967ce54548985ba665106101992c771dfac7]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 10:50:32 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:07 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8bd669bf32dd8df7be17b7f9577766de7e9b15db]

INTEGRATION: CWS changefileheader (1.7.492); FILE MERGED 2008/03/31 17:15:06 rt 1.7.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7a4cf41a91664fa108892ee90c87e9be43a07fbc]

INTEGRATION: CWS changefileheader (1.5.70); FILE MERGED 2008/04/01 10:50:32 thb 1.5.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:07 rt 1.5.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fbb332877a1aa3cf3ac9e488df8f031806ff8954]

INTEGRATION: CWS changefileheader (1.68.24); FILE MERGED 2008/04/01 15:30:34 thb 1.68.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.68.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.68.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [17cc49d931a6d3165e6a5cb6c155bf84d49623ef]

INTEGRATION: CWS changefileheader (1.10.20); FILE MERGED 2008/03/28 16:44:07 rt 1.10.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [78485ce73bacdcd0d0cc57b864cf5b839eee681d]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/04/01 15:04:17 thb 1.2.246.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d541caaa6e1a54696d1f05e7c0e25bc3694b9e27]

INTEGRATION: CWS changefileheader (1.10.700); FILE MERGED 2008/04/01 15:30:34 thb 1.10.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.10.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ee36ca4fed2abf1d611fdaa417e038cd6a5b03ea]

INTEGRATION: CWS changefileheader (1.39.292); FILE MERGED 2008/04/01 15:30:34 thb 1.39.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.39.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.39.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [860a35a406acbc5faa2464922a593723352b3bbd]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 15:04:17 thb 1.5.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dac51b2ecf5d00ea84496485fcd5523e85d4f1dc]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/04/01 10:50:32 thb 1.8.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6d7af3a19615fba0b46dc4ca61ae5a731b1a0b4d]

INTEGRATION: CWS changefileheader (1.31.34); FILE MERGED 2008/04/01 15:30:33 thb 1.31.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.31.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.31.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b54047a75c47cdbdfd9ca0f4700ce54eae2015ed]

INTEGRATION: CWS changefileheader (1.16.60); FILE MERGED 2008/04/01 10:50:32 thb 1.16.60.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.16.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [09becd9c01558c0f398def296bfb468a1fce4ed0]

INTEGRATION: CWS changefileheader (1.49.34); FILE MERGED 2008/04/01 15:30:33 thb 1.49.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.49.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.49.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [64440178b8ae4a6e2afb8337de4720b1af567708]

INTEGRATION: CWS changefileheader (1.27.34); FILE MERGED 2008/04/01 15:30:33 thb 1.27.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.27.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.27.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5c21c961405963619b10afb2ecd520306b3810cb]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/04/01 15:04:17 thb 1.5.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.5.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [15172edd552537451da7cc2f58caf947f8a0b332]

INTEGRATION: CWS changefileheader (1.62.24); FILE MERGED 2008/04/01 15:30:33 thb 1.62.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.62.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.62.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [899c8a99c93fa071b02a3132ea394ef5b1fe68eb]

INTEGRATION: CWS changefileheader (1.8.20); FILE MERGED 2008/04/01 15:04:17 thb 1.8.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.8.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.8.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3c641379a5d974cf54698cd03b87a7dda20c2930]

INTEGRATION: CWS changefileheader (1.4.116); FILE MERGED 2008/04/01 15:04:17 thb 1.4.116.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.4.116.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.4.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d4124fba64a6388d2b76bd6b56b139db90f0948d]

INTEGRATION: CWS changefileheader (1.30.330); FILE MERGED 2008/04/01 15:30:33 thb 1.30.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.30.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [da9dd6900e277e74032a870456cc276970c39cfe]

INTEGRATION: CWS changefileheader (1.9.74); FILE MERGED 2008/04/01 15:04:17 thb 1.9.74.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.9.74.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bd3d2141b1c1d0a31536b85bf8db9aeb613cfc10]

INTEGRATION: CWS changefileheader (1.67.34); FILE MERGED 2008/04/01 15:30:33 thb 1.67.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.67.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.67.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f20e1d395b113b5ea8e2bc88c4fa8c1a4ba115f2]

INTEGRATION: CWS changefileheader (1.14.70); FILE MERGED 2008/04/01 15:04:17 thb 1.14.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.14.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.14.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bb89a7e903460634c8acc5fe77357246aff596fc]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 15:30:33 thb 1.6.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8f5eecee50a4d598b3ed040079f6574266bf929d]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:16 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:06 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b10fcc38e0748204da7b7ab2bdb462d5fb08b395]

INTEGRATION: CWS changefileheader (1.17.292); FILE MERGED 2008/04/01 15:30:33 thb 1.17.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:35 thb 1.17.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.17.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [166b4e39baffb80202448304af8f6d9abb2db914]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:06 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8426ab76be1e45c7165e6c0d64ba34bcaf41d90f]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:30:33 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:59 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [36cca72289ba76e14c0f1032cb40aa2c6e34be1f]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/03/28 16:44:05 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9f8fa0ae99dc791c9007b4daa2520dfa1afcbd41]

INTEGRATION: CWS changefileheader (1.14.292); FILE MERGED 2008/04/01 15:30:32 thb 1.14.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.14.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.14.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0e93d1e61ed0618d476cce0f08d136e60562c883]

INTEGRATION: CWS changefileheader (1.5.44); FILE MERGED 2008/04/01 10:50:32 thb 1.5.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:05 rt 1.5.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [350f0861ca522ded45d25b3e1cb7f830886da988]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:30:32 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b2c1e5a7be328971b0065ee6f37482ec4360d678]

INTEGRATION: CWS changefileheader (1.8.70); FILE MERGED 2008/04/01 15:04:16 thb 1.8.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.8.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:05 rt 1.8.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [98fb3c3885988b1b916035737ac6fa82f15e8615]

INTEGRATION: CWS changefileheader (1.28.330); FILE MERGED 2008/04/01 15:30:32 thb 1.28.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.28.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.28.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [847f4c422316444e81184b6f048fac29df58fc4e]

INTEGRATION: CWS changefileheader (1.14.44); FILE MERGED 2008/04/01 15:04:16 thb 1.14.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:32 thb 1.14.44.2: #i85898# Stripping all external header guards 2008/03/28 16:44:05 rt 1.14.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1e57866efa648b710fd588249b002020bf099bad]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:32 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4bb042fc876130def8ccb7039be8da5b0361cbd4]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:16 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:03 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e00251e028eb7b8bb726c55cd8eca5db4b4c39cd]

INTEGRATION: CWS changefileheader (1.17.34); FILE MERGED 2008/04/01 12:36:34 thb 1.17.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.17.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4899880e14a3f8c8f600548858336a95f729f92a]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/04/01 15:04:16 thb 1.4.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:31 thb 1.4.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:03 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ebab91fd8c43fbf12b203fe6cd8339ec12950a01]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:30:32 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b3dc348293694b47100638ab84c078875703b441]

INTEGRATION: CWS changefileheader (1.3.70); FILE MERGED 2008/04/01 15:04:16 thb 1.3.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:31 thb 1.3.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:03 rt 1.3.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5cb604c08858ef603a32ed9e891a1941460706f4]

INTEGRATION: CWS changefileheader (1.13.24); FILE MERGED 2008/04/01 15:30:32 thb 1.13.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.13.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.13.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a801e398897e41c002fc856b1b4f0e3337dae5b1]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:44:03 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d0cd2760209d851f9d4341b55b3a8aee2232739b]

INTEGRATION: CWS changefileheader (1.95.34); FILE MERGED 2008/04/01 15:30:32 thb 1.95.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.95.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.95.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [46b8d3729f2897198d58850654eaee648e583280]

INTEGRATION: CWS changefileheader (1.12.70); FILE MERGED 2008/04/01 15:04:16 thb 1.12.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:31 thb 1.12.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:03 rt 1.12.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cee48646210571efb3384b3d7dc627af870ebff3]

INTEGRATION: CWS changefileheader (1.131.34); FILE MERGED 2008/03/31 17:14:58 rt 1.131.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4420e360aba6f6e9d4fffe6d05860dca91d9de76]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:16 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:31 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:03 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2887718ef3dd8fa3fc8aaf35b87eae448e43f04e]

INTEGRATION: CWS changefileheader (1.11.300); FILE MERGED 2008/04/01 15:30:32 thb 1.11.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.11.300.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.11.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [34b77fc85ecefc0a0762de015f80aac3e2e2170e]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:15 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:31 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:03 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [213f45b8b09d8d6e69520a2bb55084b934f7d261]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 15:30:32 thb 1.6.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [439a838c78c071ab5ed0526119e394d914ef5f25]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/03/28 16:44:02 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d1c28734ba070ce2b1143d8ad3dcd3ee50507d6d]

INTEGRATION: CWS changefileheader (1.16.292); FILE MERGED 2008/04/01 15:30:31 thb 1.16.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.16.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.16.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f6bd2e0049780230b9a97226bd33a801026508a4]

INTEGRATION: CWS changefileheader (1.82.622); FILE MERGED 2008/04/01 15:30:31 thb 1.82.622.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.82.622.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.82.622.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [14e34d77583f475210f4ac0f39f4eca6e10d117d]

INTEGRATION: CWS changefileheader (1.3.70); FILE MERGED 2008/04/01 15:04:15 thb 1.3.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:31 thb 1.3.70.2: #i85898# Stripping all external header guards 2008/03/28 16:44:02 rt 1.3.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a12588717816b1bee318c52a6cda06bf27686a6c]

INTEGRATION: CWS changefileheader (1.211.34); FILE MERGED 2008/03/31 17:14:58 rt 1.211.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fd5ecea2f637cfbd045312b9b227cc378d64c338]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:44:02 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [53672f0009d0f11ec9390915cbf7bdb1df303182]

INTEGRATION: CWS changefileheader (1.11.700); FILE MERGED 2008/04/01 15:30:31 thb 1.11.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:34 thb 1.11.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.11.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ed59438b5d310c081870a271dc95ea6829457fd5]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/04/01 15:04:15 thb 1.4.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:31 thb 1.4.20.2: #i85898# Stripping all external header guards 2008/03/28 16:44:02 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b009c0cc3bdfcd274b6eb862c46262f5b2d39987]

INTEGRATION: CWS changefileheader (1.30.292); FILE MERGED 2008/04/01 15:30:31 thb 1.30.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.30.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:58 rt 1.30.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dc1df929a629f896c4e469d610f8feb8237f34bd]

INTEGRATION: CWS changefileheader (1.18.330); FILE MERGED 2008/04/01 15:30:31 thb 1.18.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.18.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.18.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a8b04ab2b7b79bb6cf873ae7402b20b81ab000fc]

INTEGRATION: CWS changefileheader (1.6.28); FILE MERGED 2008/03/28 16:44:02 rt 1.6.28.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [785370ddc8ad1e5041cdc83bc183a790c0d4b475]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:44:02 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cb6d14ef5f57e6afcbdd70ba2689d89c7bb87645]

INTEGRATION: CWS changefileheader (1.26.292); FILE MERGED 2008/04/01 15:30:31 thb 1.26.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.26.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.26.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dfd81103ff6e51e983a76a989be308ee31ee2301]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:15 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:30 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:44:01 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c12f96e255c85f64fbd6313887fc121a752e643]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:30:31 thb 1.7.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a73d52ae5721f497ee1082ebe71c9ae54d87fbe3]

INTEGRATION: CWS changefileheader (1.26.34); FILE MERGED 2008/04/01 15:30:31 thb 1.26.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.26.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.26.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [569f8f1d97ee0ae52e537a9aec7bc8b37b90c238]

INTEGRATION: CWS changefileheader (1.5.66); FILE MERGED 2008/04/01 10:50:30 thb 1.5.66.2: #i85898# Stripping all external header guards 2008/03/28 16:44:01 rt 1.5.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [69a7db5e856534c974a01372be48d7b22bad8818]

INTEGRATION: CWS changefileheader (1.3.116); FILE MERGED 2008/04/01 15:04:15 thb 1.3.116.3: #i85898# Stripping all external header guards 2008/04/01 10:50:30 thb 1.3.116.2: #i85898# Stripping all external header guards 2008/03/28 16:44:01 rt 1.3.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a19181144f502d85f25b3774d6c68d9322533329]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:30:30 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7fd2f86161a6cc40f9e1063207d0797ad168281a]

INTEGRATION: CWS changefileheader (1.3.246); FILE MERGED 2008/04/01 10:50:30 thb 1.3.246.2: #i85898# Stripping all external header guards 2008/03/28 16:44:01 rt 1.3.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d97fe353fb6fa8d9abc4159e83117f8fd9bdabb1]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/04/01 15:30:30 thb 1.9.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8823c8436e5a0712608732dad1c8b8a35b3ed3a9]

INTEGRATION: CWS changefileheader (1.6.18); FILE MERGED 2008/04/01 15:04:14 thb 1.6.18.2: #i85898# Stripping all external header guards 2008/03/28 16:44:01 rt 1.6.18.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a2ea3c73bedfce971077edf16a16e700574b19e1]

INTEGRATION: CWS changefileheader (1.8.700); FILE MERGED 2008/04/01 15:30:30 thb 1.8.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.8.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [32646e97c14c8e1ff17579dcee52514cfabf374a]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/03/28 16:43:58 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6b010214aeff6b43eff92a28df8befd19c078b00]

INTEGRATION: CWS changefileheader (1.22.330); FILE MERGED 2008/04/01 15:30:30 thb 1.22.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.22.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.22.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b48dd5a79825befb6b63cc826c5617b3fb979dea]

INTEGRATION: CWS changefileheader (1.25.34); FILE MERGED 2008/04/01 15:30:30 thb 1.25.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.25.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.25.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [12419162613c8942a797f96607752b9f598ed67c]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:58 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9c6019c0e1b392f5f50d894899d2e94c48ec92b6]

INTEGRATION: CWS changefileheader (1.95.34); FILE MERGED 2008/03/31 17:14:57 rt 1.95.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b3dbf0713a6803756118fd1b3c31933fda21140b]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/03/28 16:43:58 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3beeb2735eb46942a7b053705507f2ca4cb7273f]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:30:30 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fe17aacfe8bb3327b647d4431fc0a84ef625a022]

INTEGRATION: CWS changefileheader (1.4.94); FILE MERGED 2008/03/28 16:43:58 rt 1.4.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8c1cda9bbfd6ea7512a1bec2d010874a5300b99e]

INTEGRATION: CWS changefileheader (1.29.330); FILE MERGED 2008/04/01 15:30:30 thb 1.29.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.29.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.29.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6973f3666305497bbb1369f3639aad4602a8ad40]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:14 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:58 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3b696e98f0d407acf0115146d25e517914e6772f]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:30:30 thb 1.7.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8f2bd246b7804b4bbed84ddcf575944f824e3a92]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:14 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:30 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:58 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b950410d62005206e39deb1efe544692be641a62]

INTEGRATION: CWS changefileheader (1.15.330); FILE MERGED 2008/04/01 15:30:30 thb 1.15.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.15.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.15.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c05f96dedc2232b3432f87f2ce477f5e563b44f2]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:30 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:58 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [14aa33a35f604ba708927066b68b9c425b0f972d]

INTEGRATION: CWS changefileheader (1.32.700); FILE MERGED 2008/03/31 17:14:57 rt 1.32.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7d0b80d1fd1df66c7923cd1561453ede6af6097a]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:43:58 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f752eac68ad7c620afe46ae48c4c5a7e1543ea72]

INTEGRATION: CWS changefileheader (1.9.700); FILE MERGED 2008/04/01 15:30:30 thb 1.9.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:33 thb 1.9.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.9.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0e6d86bc04f1ecf81de914038044fd9525546e5a]

INTEGRATION: CWS changefileheader (1.30.34); FILE MERGED 2008/04/01 15:30:30 thb 1.30.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.30.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.30.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [de51756bf1c6c13c8ae84da0bc4f04e21c3b46fa]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:57 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [13ea3e7bdcaa8dd0d4b71ac2cfc5027c094e2975]

INTEGRATION: CWS changefileheader (1.10.244); FILE MERGED 2008/04/01 15:30:30 thb 1.10.244.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.10.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a166033eb61af48b7653fc38d2a94b022ebfca76]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:14 thb 1.3.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:30 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:57 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [eff514cc24136a33257ff7ae672d10e2b805c612]

INTEGRATION: CWS changefileheader (1.12.244); FILE MERGED 2008/04/01 15:30:29 thb 1.12.244.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.12.244.2: #i85898# Stripping all external header guards 2008/03/31 17:14:57 rt 1.12.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [44f6b24518c2024e3c097f330ca1d85c9a0ff274]

INTEGRATION: CWS changefileheader (1.3.116); FILE MERGED 2008/04/01 10:50:30 thb 1.3.116.2: #i85898# Stripping all external header guards 2008/03/28 16:43:57 rt 1.3.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0fff9347159e908d2d5cec1dc9fc93296e29d4a6]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:29 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6fb56c75867d3096dbddf827c602a32e6dc2c44e]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:43:57 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0b978be370c39436385e29c6f77f9f7c25e64869]

INTEGRATION: CWS changefileheader (1.15.244); FILE MERGED 2008/04/01 15:30:29 thb 1.15.244.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.15.244.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.15.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [490217a7b8862f69472a0211164c08da64b600f0]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/03/28 16:43:57 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fc669588dfbbe02772baeb494914b1841ae82e9b]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:29 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [994378cdc981c2026efbf6a9090e2afae2f6ccdc]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/04/01 15:04:14 thb 1.3.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.3.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:57 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cccc49129c72d72a8cb3f2cefa8636af3adda6fc]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 12:36:32 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e5befe64b95be550648368d6789ec33f49938f64]

INTEGRATION: CWS changefileheader (1.12.88); FILE MERGED 2008/04/01 12:36:32 thb 1.12.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.12.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e5b392fe4a44c7a767855c45869c75403dde20e3]

INTEGRATION: CWS changefileheader (1.30.88); FILE MERGED 2008/04/01 15:30:29 thb 1.30.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.30.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.30.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6ee5c7cb27fa8483d915a28f80afe65f62e372e0]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/04/01 10:50:29 thb 1.6.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:57 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [07fbf84253ddc3ae7ea912b652809087451ba198]

INTEGRATION: CWS changefileheader (1.10.700); FILE MERGED 2008/04/01 15:30:29 thb 1.10.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.10.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.10.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [81620e9cd494a84616ae4c6f1cca1cd803f8dd72]

INTEGRATION: CWS changefileheader (1.2.106); FILE MERGED 2008/04/01 10:50:29 thb 1.2.106.2: #i85898# Stripping all external header guards 2008/03/28 16:43:57 rt 1.2.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [25c94a1d9914a12c766c6c228af6a7bd2add1751]

INTEGRATION: CWS changefileheader (1.28.226); FILE MERGED 2008/04/01 15:30:29 thb 1.28.226.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.28.226.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.28.226.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3bbc26133ec856676798b794fd591c3e9adf56f2]

INTEGRATION: CWS changefileheader (1.8.20); FILE MERGED 2008/03/28 16:43:57 rt 1.8.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f9a581c9cd01082df4f1e840f110dbc2436e3d53]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 15:30:28 thb 1.6.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5ec9f370212672417ea55801071f8f23984316a1]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:56 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d130278c99c69d728ea898ff9d245044e0efaf05]

INTEGRATION: CWS changefileheader (1.16.24); FILE MERGED 2008/04/01 15:30:28 thb 1.16.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:32 thb 1.16.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.16.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f05a22b14d84f904c0de6a8e0d1a7333461166a5]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:56 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bd028f646728d49169f9bcfd2922940581de0e6f]

INTEGRATION: CWS changefileheader (1.6.698); FILE MERGED 2008/04/01 12:36:32 thb 1.6.698.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.6.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [60d70d94c62c96a9b492b42c1199f79f22f48eae]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/04/01 15:04:14 thb 1.2.246.2: #i85898# Stripping all external header guards 2008/03/28 16:43:56 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0a94843def9cbef5db107883b08b96b5486b7210]

INTEGRATION: CWS changefileheader (1.13.24); FILE MERGED 2008/04/01 15:30:28 thb 1.13.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:31 thb 1.13.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.13.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a50fc2ffab57c3f92e110794860f663cbb2372b0]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:29 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:56 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [72632b622f8a181e0c77870255f527d33663bb14]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:14 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:56 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [262e12ade4b7bf61526af8c133f231a8389324a6]

INTEGRATION: CWS changefileheader (1.9.88); FILE MERGED 2008/04/01 15:30:28 thb 1.9.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:31 thb 1.9.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.9.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [03c3153c63364f5bf6b950b7500b212e429425d3]

INTEGRATION: CWS changefileheader (1.21.88); FILE MERGED 2008/04/01 15:30:28 thb 1.21.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:31 thb 1.21.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.21.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [257032763723d2704b7d7ca40c7d0731cb4a78b3]

INTEGRATION: CWS changefileheader (1.28.88); FILE MERGED 2008/04/01 15:30:28 thb 1.28.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:31 thb 1.28.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.28.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [abd24395ec63b5dc839ccdce267972537846689f]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:14 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:56 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e3066233848db66e186c939f8f91f9a575b29d15]

INTEGRATION: CWS changefileheader (1.50.34); FILE MERGED 2008/04/01 15:30:27 thb 1.50.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:31 thb 1.50.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.50.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f36726519510960a9801acddce445caf1b1f7a62]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 10:50:29 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:56 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [34d3684d1921b593b430970beacd0052d8a84975]

INTEGRATION: CWS changefileheader (1.9.88); FILE MERGED 2008/04/01 12:36:31 thb 1.9.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.9.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [824ecd1df39ec87cfd9813a28d4cf85eb21ded3c]

INTEGRATION: CWS changefileheader (1.8.492); FILE MERGED 2008/04/01 15:30:27 thb 1.8.492.3: #i85898# Stripping all external header guards 2008/04/01 12:36:31 thb 1.8.492.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.8.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cd18a1fcabb8a2516a4f06914bd4cb425b8b9d81]

INTEGRATION: CWS changefileheader (1.10.34); FILE MERGED 2008/03/28 16:43:56 rt 1.10.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d8e327660a6795ee9732ba314d519a9a68001e6b]

INTEGRATION: CWS changefileheader (1.32.88); FILE MERGED 2008/04/01 12:36:31 thb 1.32.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.32.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [22fd5238345736992ca440c6701c9438ef792b8a]

INTEGRATION: CWS changefileheader (1.2.60); FILE MERGED 2008/03/28 16:43:56 rt 1.2.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [886ba991e88dc773d9bb467456450a8c34e7873c]

INTEGRATION: CWS changefileheader (1.45.24); FILE MERGED 2008/04/01 15:30:27 thb 1.45.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:31 thb 1.45.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.45.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c3c11dd1efc80d49655319fb249e9ed5db1cc350]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:14 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:56 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [210c8dd53f0a07ee965d42a60f701764ef1d90d8]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:27 thb 1.2.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:31 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:56 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [acbecfe14f2790018eef85e23c55d1ef7892e22c]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/04/01 15:04:14 thb 1.3.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.3.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:56 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6dc507076621976ae211488acdf93a11e5f609cc]

INTEGRATION: CWS changefileheader (1.22.292); FILE MERGED 2008/04/01 15:30:26 thb 1.22.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.22.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.22.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fc8e132666e4546efca94ded9279b86d307cd1f8]

INTEGRATION: CWS changefileheader (1.5.68); FILE MERGED 2008/04/01 15:04:13 thb 1.5.68.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.5.68.2: #i85898# Stripping all external header guards 2008/03/28 16:43:56 rt 1.5.68.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a8a1029c5e1b6dca9e608bc3636fa27eddc51e7b]

INTEGRATION: CWS changefileheader (1.8.700); FILE MERGED 2008/04/01 15:30:26 thb 1.8.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.8.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.8.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [88e65d6d1b30bb1704f7bc9697834172d8a63f36]

INTEGRATION: CWS changefileheader (1.4.60); FILE MERGED 2008/03/28 16:43:56 rt 1.4.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5ed659c45dfaf0a84575fe4a299fdbd05dfb10ab]

INTEGRATION: CWS changefileheader (1.27.240); FILE MERGED 2008/04/01 15:30:26 thb 1.27.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.27.240.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.27.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4f78bbc19442157d57786c7b0d49cf364281e9ac]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/04/01 15:04:13 thb 1.5.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.5.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:55 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6a2e84aa0d2e91e08a57302ecb9ef0202a699ffe]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/04/01 10:50:29 thb 1.2.246.2: #i85898# Stripping all external header guards 2008/03/28 16:43:55 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [189d1f5ec2a148cc4a834fe8e97e82b2a69c041f]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 12:36:30 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9a372ed9b97b053bdc8e6f08835542e5d74de16e]

INTEGRATION: CWS changefileheader (1.5.94); FILE MERGED 2008/04/01 15:04:13 thb 1.5.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.5.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:55 rt 1.5.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [249254b1905f77477ffaad9c80317d3020befa23]

INTEGRATION: CWS changefileheader (1.17.266); FILE MERGED 2008/04/01 15:30:26 thb 1.17.266.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.17.266.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.17.266.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6ec882f7ca390e8adf7de86b85893750472091ec]

INTEGRATION: CWS changefileheader (1.2.246); FILE MERGED 2008/04/01 15:04:13 thb 1.2.246.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.2.246.2: #i85898# Stripping all external header guards 2008/03/28 16:43:55 rt 1.2.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bf8b39d6413f34e829b3739d88c57e8d0c0c204e]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:25 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b8e8ca57e0da57d529ae8008cb48f1f7ddb6c6a3]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/03/31 17:14:55 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5f135925a6d7d5bde29a21af7b7a5acec369aae8]

INTEGRATION: CWS changefileheader (1.11.88); FILE MERGED 2008/04/01 15:30:25 thb 1.11.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.11.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.11.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [077a7e5dee8c83df9b2d6c3c36d507356f146ab6]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:55 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9866d3f3d5d8f39fecf291fbde0299df93d0f59f]

INTEGRATION: CWS changefileheader (1.16.24); FILE MERGED 2008/04/01 15:30:25 thb 1.16.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.16.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.16.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bbdbd4a9413da90b0fc633ca5dc9160e73c2f708]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:29 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:55 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [02d9f211a15db76a06bb49b3bacbd1b399665a29]

INTEGRATION: CWS changefileheader (1.9.88); FILE MERGED 2008/04/01 15:30:25 thb 1.9.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.9.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4f8c1377eb593633b6e2c377d17ffc3cac6c593e]

INTEGRATION: CWS changefileheader (1.17.330); FILE MERGED 2008/04/01 15:30:24 thb 1.17.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.17.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.17.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [27c5255f104487175f0e14b0adb8f15ba6aa60e2]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:13 thb 1.3.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:29 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:55 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fe981566f715271cc44bf0d0ce6e7036d56f7080]

INTEGRATION: CWS changefileheader (1.14.292); FILE MERGED 2008/04/01 15:30:24 thb 1.14.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.14.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.14.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [874de9cdcfa6a78ecf1596209dfb7db5418a4098]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 15:04:13 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:55 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ebed377de6473e2ba1a61065dcd92b8c5a8dc8fe]

INTEGRATION: CWS changefileheader (1.3.44); FILE MERGED 2008/04/01 15:04:13 thb 1.3.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:28 thb 1.3.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:55 rt 1.3.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [40e8608fc83173c582614c6ebc3bd9fc3421db2f]

INTEGRATION: CWS changefileheader (1.28.24); FILE MERGED 2008/04/01 15:30:24 thb 1.28.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:30 thb 1.28.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.28.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b788f5c8f408e06875319d96490ea247f3fce98a]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:13 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:28 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:54 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1882039e92d4770c341000ae9999ed1f3bc0f965]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 15:30:24 thb 1.6.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [acc09419d37f0ced430ea2641764aad0316dc50d]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 15:04:13 thb 1.3.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:28 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:54 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [06f9a927cce5aac5a053d43934dcb0fe827ba36a]

INTEGRATION: CWS changefileheader (1.11.24); FILE MERGED 2008/04/01 15:30:24 thb 1.11.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.11.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.11.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4d7bd2f9dfc618e893851c7ad281cf91765771a9]

INTEGRATION: CWS changefileheader (1.4.60); FILE MERGED 2008/03/28 16:43:54 rt 1.4.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [44221dee0cb0cd766d6ba856d30b6e73f74f320a]

INTEGRATION: CWS changefileheader (1.10.88); FILE MERGED 2008/04/01 15:30:24 thb 1.10.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.10.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [071174cf3c3d205dfb32d1043a0d64f061453096]

INTEGRATION: CWS changefileheader (1.13.330); FILE MERGED 2008/04/01 15:30:23 thb 1.13.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.13.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:55 rt 1.13.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f728565147a33ba8b0a3209035c322e7d7b28a17]

INTEGRATION: CWS changefileheader (1.6.60); FILE MERGED 2008/03/28 16:43:54 rt 1.6.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b7233e532ce48e5a5baca52f6037b207ff3c11e5]

INTEGRATION: CWS changefileheader (1.17.34); FILE MERGED 2008/03/31 17:14:54 rt 1.17.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1f9b2ad519404ac1c1502a19d669ca7e84b1bfc8]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 10:50:28 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:54 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e08bba875f9c5af26ff5cb3ccd0f6ca5464df47d]

INTEGRATION: CWS changefileheader (1.28.34); FILE MERGED 2008/04/01 15:30:23 thb 1.28.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.28.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:54 rt 1.28.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aee937f19e8fa3f60f7c9932d86a40d28684feaa]

INTEGRATION: CWS changefileheader (1.5.116); FILE MERGED 2008/04/01 15:04:13 thb 1.5.116.3: #i85898# Stripping all external header guards 2008/04/01 10:50:28 thb 1.5.116.2: #i85898# Stripping all external header guards 2008/03/28 16:43:54 rt 1.5.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3e1d4ad47257e1908e0b2ffc9061028c144ef4ca]

INTEGRATION: CWS changefileheader (1.16.88); FILE MERGED 2008/04/01 15:30:23 thb 1.16.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.16.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:54 rt 1.16.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [87dbc70eb2d45a85312afd625080493dcfd3a4f5]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 15:04:12 thb 1.7.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:28 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:54 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8a20035416400ce2ab61ac20336ea8ac929618fb]

INTEGRATION: CWS changefileheader (1.32.34); FILE MERGED 2008/04/01 15:30:23 thb 1.32.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.32.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:54 rt 1.32.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e368155dde0d2acbe94c02806dc312724ac16a4d]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:12 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:28 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:54 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4f827bde2559acba5df3d52c39bb6d91bbdc71ec]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 15:30:23 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:54 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [63578cb819f8b700d49e06d428c6a96f24264739]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/04/01 15:04:12 thb 1.5.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:28 thb 1.5.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:54 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [99134ece7baed5baab2579e5f6c21ccc29ca4734]

INTEGRATION: CWS changefileheader (1.10.24); FILE MERGED 2008/04/01 15:30:23 thb 1.10.24.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.10.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:54 rt 1.10.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f483e2032bb13b454d7e0147cdcab0e0005eff2a]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:28 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:54 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [da90e5229861409aef4410f1e912fa872d408977]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:30:23 thb 1.7.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:54 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [88994311508b9730a794043abc359423c8d06312]

INTEGRATION: CWS changefileheader (1.15.330); FILE MERGED 2008/04/01 15:30:23 thb 1.15.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:29 thb 1.15.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:54 rt 1.15.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5adae4b50060ac078254cf838c0636ea505c3806]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:43:54 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e914b4346d82ae1e0c854a783050ce422b83aada]

INTEGRATION: CWS changefileheader (1.86.298); FILE MERGED 2008/04/01 15:30:22 thb 1.86.298.3: #i85898# Stripping all external header guards 2008/04/01 12:36:28 thb 1.86.298.2: #i85898# Stripping all external header guards 2008/03/31 17:14:52 rt 1.86.298.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fe42f824163e44129675361a86ba80c76e1cb521]

INTEGRATION: CWS changefileheader (1.25.292); FILE MERGED 2008/04/01 15:30:22 thb 1.25.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:28 thb 1.25.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:52 rt 1.25.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9e599a66dc31f48ab6b5c30a7bfe412c6bffe890]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:12 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:28 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:53 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e2950303bc971f997455e5fe41bce8997148cf1d]

INTEGRATION: CWS changefileheader (1.20.344); FILE MERGED 2008/03/31 17:14:52 rt 1.20.344.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2de7466e8edbc507bc914ec2f5910a4b2b8bf81b]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:28 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:53 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a11801fee5255bded3f8db9f5741111fbc1b35c2]

INTEGRATION: CWS changefileheader (1.15.330); FILE MERGED 2008/03/31 17:14:51 rt 1.15.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9bc26b96263abb3e8d250b973e07c737a7e427de]

INTEGRATION: CWS changefileheader (1.6.20); FILE MERGED 2008/03/28 16:43:53 rt 1.6.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7f4a07742b49edce130e80beae311d01b757894f]

INTEGRATION: CWS changefileheader (1.31.266); FILE MERGED 2008/04/01 15:30:22 thb 1.31.266.3: #i85898# Stripping all external header guards 2008/04/01 12:36:28 thb 1.31.266.2: #i85898# Stripping all external header guards 2008/03/31 17:14:51 rt 1.31.266.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c4e970a23efa415d5f7ded5e715e54fb371527a3]

INTEGRATION: CWS changefileheader (1.25.330); FILE MERGED 2008/04/01 12:36:28 thb 1.25.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:51 rt 1.25.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4af4f724670b672861ceb38cd0639b5fca94c148]

INTEGRATION: CWS changefileheader (1.6.44); FILE MERGED 2008/04/01 10:50:28 thb 1.6.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:53 rt 1.6.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ddfb7d9c64c1d96c54b44c6091e8e9936451dfce]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:27 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:53 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a5734f1394a0f695b825f6b6b053b2dc3ff69bd3]

INTEGRATION: CWS changefileheader (1.13.292); FILE MERGED 2008/04/01 12:36:28 thb 1.13.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:51 rt 1.13.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f890e92289e75cf21c821604d0c0d7c37a1dd5df]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:12 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:27 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:53 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [124bf1c4ed97aca677fea8b78758623c3862c8ca]

INTEGRATION: CWS changefileheader (1.24.32); FILE MERGED 2008/03/31 17:14:51 rt 1.24.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [46ce2c515a686ac37910b5be6e53e9ad658163ef]

INTEGRATION: CWS changefileheader (1.4.116); FILE MERGED 2008/04/01 10:50:27 thb 1.4.116.2: #i85898# Stripping all external header guards 2008/03/28 16:43:53 rt 1.4.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [509fca83e14bae7cb396962dd1443c259b5ed7a0]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/03/31 17:14:51 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [406b0e07afd3b7a75935fb6bbe4adcba102a6976]

INTEGRATION: CWS changefileheader (1.9.300); FILE MERGED 2008/03/31 17:14:51 rt 1.9.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fdb2b5f9bf6a022de0c4cc5adee93503eb5cff16]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 15:04:12 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:53 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fb35b1476b8e9d78cec0ecede9c6fc7f610fae83]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:53 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0a81da9d4140026a12e965d0e64a638ab6302c1e]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 12:36:26 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:50 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bca6034023e11e88a6e89981b60a98f46ef3fd8d]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:12 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:52 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8dfdc17e8438fbf90dfb2332e6f45d40e73cf454]

INTEGRATION: CWS changefileheader (1.9.240); FILE MERGED 2008/04/01 15:30:22 thb 1.9.240.2: #i85898# Stripping all external header guards 2008/03/31 17:14:50 rt 1.9.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [922770688a46f47aad6a1a4964a996567f772ff7]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:12 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:27 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:52 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2be310ae16577497e6744be8e466471edefaf2a4]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/03/31 17:14:50 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bf7bb2e3bd2a994f3bf11af8d9ddedfe689a5042]

INTEGRATION: CWS changefileheader (1.9.240); FILE MERGED 2008/03/31 17:14:50 rt 1.9.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d19e06668fb59dfc779d96d31f385176a19e21a8]

INTEGRATION: CWS changefileheader (1.9.126); FILE MERGED 2008/04/01 15:04:12 thb 1.9.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:27 thb 1.9.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:52 rt 1.9.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0cfb397844efdeca840cc9a0393f3cf2e12441ac]

INTEGRATION: CWS changefileheader (1.18.300); FILE MERGED 2008/04/01 15:30:22 thb 1.18.300.2: #i85898# Stripping all external header guards 2008/03/31 17:14:50 rt 1.18.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [423edd70eee0cfcd8b8b83cb0ed030eb54903ae0]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:27 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:52 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ebac664cf76e2f1bd1aa6add6370b6420b64ed13]

INTEGRATION: CWS changefileheader (1.6.88); FILE MERGED 2008/03/31 17:14:50 rt 1.6.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dc9e58efc406af68de4fee123a2595b40949c237]

INTEGRATION: CWS changefileheader (1.8.34); FILE MERGED 2008/04/01 12:36:26 thb 1.8.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:50 rt 1.8.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ec238b5fcaa485a2fc766bc55af8c1744c3660b8]

INTEGRATION: CWS changefileheader (1.5.88); FILE MERGED 2008/03/31 17:14:50 rt 1.5.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [23f5302511d5491aae6f0ae61bcbaaf808d6da08]

INTEGRATION: CWS changefileheader (1.13.34); FILE MERGED 2008/04/01 10:50:27 thb 1.13.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:52 rt 1.13.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d7be736b3a9bc5738ef71b3ee3f9b9151e35cf88]

INTEGRATION: CWS changefileheader (1.8.60); FILE MERGED 2008/04/01 10:50:27 thb 1.8.60.2: #i85898# Stripping all external header guards 2008/03/28 16:43:52 rt 1.8.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b14c1e8deec1ad1349272c9d2a901ca5d3755bd1]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/03/31 17:14:50 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4265183413c300aafc03cedc5e75a8e8c422227f]

INTEGRATION: CWS changefileheader (1.15.134); FILE MERGED 2008/04/01 12:36:25 thb 1.15.134.2: #i85898# Stripping all external header guards 2008/03/31 17:14:49 rt 1.15.134.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9e1b737367a4599cfc864747c1bfaef961fd40a6]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 10:50:27 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:52 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c0b8654af9b81df252d78fb6dc297eb4683cfb5]

INTEGRATION: CWS changefileheader (1.5.88); FILE MERGED 2008/03/31 17:14:49 rt 1.5.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cb6666c993948e20982522aedc3d34b93ab9a532]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/04/01 15:04:11 thb 1.5.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:27 thb 1.5.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:52 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [69cc2e46826025fb889f6add35e4a4d57dcb01b0]

INTEGRATION: CWS changefileheader (1.17.86); FILE MERGED 2008/03/31 17:14:49 rt 1.17.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f5da92d86fb09dab4da093a74a1a4b0dbbcd7540]

INTEGRATION: CWS changefileheader (1.3.106); FILE MERGED 2008/04/01 15:04:11 thb 1.3.106.3: #i85898# Stripping all external header guards 2008/04/01 10:50:27 thb 1.3.106.2: #i85898# Stripping all external header guards 2008/03/28 16:43:51 rt 1.3.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [34d9618fdb55f92cf0f38d2a0472e19a151e22c6]

INTEGRATION: CWS changefileheader (1.4.300); FILE MERGED 2008/03/31 17:14:49 rt 1.4.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1e94a34e89e4982007634bf728a47f49ac229bd5]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:51 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [020af2fd2c7606fb07a1a03f633b576b31443217]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/03/31 17:14:49 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e656c7d5c46e165ccdf4364bc3cfabe3a459d448]

INTEGRATION: CWS changefileheader (1.3.70); FILE MERGED 2008/04/01 10:50:27 thb 1.3.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:51 rt 1.3.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [90fda5e08857e4e469d672673b121d2084b651f9]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/03/31 17:14:49 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6ee12d7f907c55c9e7210c874e4feedbabc6186b]

INTEGRATION: CWS changefileheader (1.8.44); FILE MERGED 2008/03/28 16:43:51 rt 1.8.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9d18a69e711f39bc115202080fab720e055f84e3]

INTEGRATION: CWS changefileheader (1.7.492); FILE MERGED 2008/04/01 12:36:25 thb 1.7.492.2: #i85898# Stripping all external header guards 2008/03/31 17:14:49 rt 1.7.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cc555d3a2b282bba190586daeddd41e30eb1ee34]

INTEGRATION: CWS changefileheader (1.7.20); FILE MERGED 2008/04/01 15:04:11 thb 1.7.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:51 rt 1.7.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0c997529d932b31c478ce8900d3376361fcd809a]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:30:21 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:49 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [061462521b0c9521a332471d3ddd3f838bcee18c]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:43:51 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5e46b5d97863054fa21ffdf1a8d8b8f5bb86a687]

INTEGRATION: CWS changefileheader (1.14.32); FILE MERGED 2008/03/31 17:14:49 rt 1.14.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0b775ee31dbc25db767a98559a62d4bdda9644f7]

INTEGRATION: CWS changefileheader (1.6.300); FILE MERGED 2008/03/31 17:14:49 rt 1.6.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [64447c900f7ff6ed267244a9f83f4080c3aaecc2]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:11 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:51 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1fd32097ef7fdc38c6da076b121b6f9e4fb30770]

INTEGRATION: CWS changefileheader (1.9.88); FILE MERGED 2008/03/31 17:14:48 rt 1.9.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d68bc312ba7b84a6f4558f4c0fd88dbf41c83f47]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 10:50:26 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:51 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [576e0875215288cae7458b84f34104c60aa8da1e]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/03/31 17:14:48 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d4135940b5b94b068576c1944c89245e69c95e18]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 15:04:11 thb 1.5.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:51 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a52793e64d8022a7a5bd87581b179b3937334ae1]

INTEGRATION: CWS changefileheader (1.10.126); FILE MERGED 2008/04/01 15:04:11 thb 1.10.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.10.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:51 rt 1.10.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [98411fe97baa3dc4a5b1467384cf888fa6c6ba0f]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:14:48 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [16a79bb5cec52036812dc43d5d43c08ef30204d8]

INTEGRATION: CWS changefileheader (1.6.60); FILE MERGED 2008/04/01 15:04:11 thb 1.6.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.6.60.2: #i85898# Stripping all external header guards 2008/03/28 16:43:51 rt 1.6.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [093eee6a48aa32075cbd77bfe9cafc10aeeb045a]

INTEGRATION: CWS changefileheader (1.4.690); FILE MERGED 2008/04/01 15:30:21 thb 1.4.690.3: #i85898# Stripping all external header guards 2008/04/01 12:36:25 thb 1.4.690.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.4.690.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [64c787bb598664d8d4fd609e66addde1238fe74e]

INTEGRATION: CWS changefileheader (1.6.20); FILE MERGED 2008/03/28 16:43:50 rt 1.6.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [426890823988f5ddc3fa4a66726476ec256cde09]

INTEGRATION: CWS changefileheader (1.8.700); FILE MERGED 2008/04/01 12:36:25 thb 1.8.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.8.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b20c3568f30d0be6347d454f2e2291c916f14884]

INTEGRATION: CWS changefileheader (1.3.106); FILE MERGED 2008/04/01 15:04:11 thb 1.3.106.2: #i85898# Stripping all external header guards 2008/03/28 16:43:50 rt 1.3.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9fd8e9ba6955e264dde785d15670e49135554eb2]

INTEGRATION: CWS changefileheader (1.26.292); FILE MERGED 2008/04/01 12:36:25 thb 1.26.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.26.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4e64d6c0b18fa195221c97a112e027e9c6c1d96b]

INTEGRATION: CWS changefileheader (1.4.94); FILE MERGED 2008/04/01 15:04:11 thb 1.4.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.4.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:50 rt 1.4.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [319e81d5e9fdf060012c07a47df116e33e5d6969]

INTEGRATION: CWS changefileheader (1.6.434); FILE MERGED 2008/04/01 15:30:21 thb 1.6.434.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.6.434.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [04e5c67908f2c15fc8fceaba319c6ca1fc990a4f]

INTEGRATION: CWS changefileheader (1.22.292); FILE MERGED 2008/04/01 15:30:21 thb 1.22.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:25 thb 1.22.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.22.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [51c5e8dd5b9c7a3da8c1d6255bf7402b87a92f1c]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:11 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:50 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d818f0068e77c8fb794f6d0e5a81abf9fba8d62d]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:11 thb 1.3.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:50 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [55a052aebcc4c404b77ac932c59efc04ab9b48f7]

INTEGRATION: CWS changefileheader (1.5.292); FILE MERGED 2008/04/01 12:36:25 thb 1.5.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.5.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [351831c606f75c99279b3916463a74843d4d33de]

INTEGRATION: CWS changefileheader (1.4.500); FILE MERGED 2008/04/01 15:30:20 thb 1.4.500.3: #i85898# Stripping all external header guards 2008/04/01 12:36:25 thb 1.4.500.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.4.500.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2424294cd81ab74a832f53738e22dc5df595ed7c]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:11 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:50 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4d88604abe2156f398ecff8fa1c80bd5a3dab5b0]

INTEGRATION: CWS changefileheader (1.30.244); FILE MERGED 2008/04/01 15:30:20 thb 1.30.244.3: #i85898# Stripping all external header guards 2008/04/01 12:36:25 thb 1.30.244.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.30.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [240c5df7fbce70755018a2249f1c01e173cc4d16]

INTEGRATION: CWS changefileheader (1.3.42); FILE MERGED 2008/04/01 15:04:10 thb 1.3.42.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.3.42.2: #i85898# Stripping all external header guards 2008/03/28 16:43:50 rt 1.3.42.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6619460e3ea36f8611534ce146ed9d6699923410]

INTEGRATION: CWS changefileheader (1.11.224); FILE MERGED 2008/04/01 15:30:20 thb 1.11.224.3: #i85898# Stripping all external header guards 2008/04/01 12:36:24 thb 1.11.224.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.11.224.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b62a52a5a2948962a89fff87a94592b6d65a8570]

INTEGRATION: CWS changefileheader (1.7.20); FILE MERGED 2008/04/01 10:50:26 thb 1.7.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:50 rt 1.7.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5a28d5d10e03b8b78cfa12397534c74a9d8cd4bc]

INTEGRATION: CWS changefileheader (1.7.244); FILE MERGED 2008/04/01 15:30:20 thb 1.7.244.3: #i85898# Stripping all external header guards 2008/04/01 12:36:24 thb 1.7.244.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.7.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [80539f42a2a9e4ab3d314b488ccc710f89c31392]

INTEGRATION: CWS changefileheader (1.14.342); FILE MERGED 2008/04/01 15:30:20 thb 1.14.342.3: #i85898# Stripping all external header guards 2008/04/01 12:36:24 thb 1.14.342.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.14.342.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0ba1b3746f5b7f98fb1bb627d5562b3bf93af6b8]

INTEGRATION: CWS changefileheader (1.5.92); FILE MERGED 2008/04/01 15:04:10 thb 1.5.92.2: #i85898# Stripping all external header guards 2008/03/28 16:43:50 rt 1.5.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cd66dec7f378521fcb9f0411938420066221b04a]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:20 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:48 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a5153d54e17b5fa1332275a37c1ccc558d6c955b]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:43:50 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3202d3d2b9469d198be41bba93aa60ca4c6cd8a3]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:30:20 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0f6b1a749eca4bc7ba32fa7e3fbc066a781bc63a]

INTEGRATION: CWS changefileheader (1.13.244); FILE MERGED 2008/04/01 12:36:24 thb 1.13.244.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.13.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [080638bd1a76e205ad48b8efd88090283583d8c5]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:10 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:49 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a93b4d9fcd4b95f02558e644daa0267dc66387cd]

INTEGRATION: CWS changefileheader (1.21.342); FILE MERGED 2008/04/01 15:30:19 thb 1.21.342.3: #i85898# Stripping all external header guards 2008/04/01 12:36:24 thb 1.21.342.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.21.342.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [24e1f02796c8c185cf3ce4583ebaf779dc69bf7d]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:43:49 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b1b59bd48c3e4e2b38824f6765f7b68a1f490bd2]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:10 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:49 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [16eba8bd67f309859f2e51036c95d83dbf672234]

INTEGRATION: CWS changefileheader (1.10.328); FILE MERGED 2008/04/01 12:36:24 thb 1.10.328.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.10.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b0093f02229d4cfd14861ec533cea047e9479cff]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:43:49 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0472b7369165318a33247ad59df3b8ea8b1d4267]

INTEGRATION: CWS changefileheader (1.11.88); FILE MERGED 2008/04/01 15:30:19 thb 1.11.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.11.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9b4a537a98b2f93eadea5490ea840f6a4058b2fb]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:10 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:49 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [45242d7e2d9f7abd11578595cb6b07f657478dfc]

INTEGRATION: CWS changefileheader (1.28.292); FILE MERGED 2008/04/01 12:36:23 thb 1.28.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.28.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4a6e7bf2ad88297578d862a52bfa9e8ac3e4a301]

INTEGRATION: CWS changefileheader (1.12.10); FILE MERGED 2008/03/31 17:14:47 rt 1.12.10.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bb41ec32b935398f2afc2ff68998528ac4dff2ad]

INTEGRATION: CWS changefileheader (1.2.44); FILE MERGED 2008/04/01 15:04:10 thb 1.2.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:49 rt 1.2.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8dde2779e4363296bcf5f418c1bed1f5800f9aa5]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:36:23 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9068974b5b29e9c3c202232dac992b6b16f5e021]

INTEGRATION: CWS changefileheader (1.3.246); FILE MERGED 2008/04/01 15:04:10 thb 1.3.246.3: #i85898# Stripping all external header guards 2008/04/01 10:50:26 thb 1.3.246.2: #i85898# Stripping all external header guards 2008/03/28 16:43:49 rt 1.3.246.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f0436636854e39b34352438a7b6ce133e2630a4c]

INTEGRATION: CWS changefileheader (1.5.588); FILE MERGED 2008/04/01 12:36:23 thb 1.5.588.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.5.588.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [592f35ab8dcd9272d8ec81271f81d7bb2e6cfb8d]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:10 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:49 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4c8ca1e6acd5fc459bf2eb2dffe32db47153977a]

INTEGRATION: CWS changefileheader (1.22.292); FILE MERGED 2008/04/01 15:30:19 thb 1.22.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:23 thb 1.22.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.22.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4550e0e5e2c24a661c400f38207c3fc5f9a98f09]

INTEGRATION: CWS changefileheader (1.3.292); FILE MERGED 2008/04/01 12:36:23 thb 1.3.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.3.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1da869844975d3305106c6ea03a8c45602a7cda1]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:49 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9096055b8f585c63db4149eb36e8d53732280ee8]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:30:19 thb 1.12.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:23 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bb066a0935214392085098c54a871fa2ea6e33fb]

INTEGRATION: CWS changefileheader (1.28.18); FILE MERGED 2008/04/01 15:04:10 thb 1.28.18.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.28.18.2: #i85898# Stripping all external header guards 2008/03/28 16:43:49 rt 1.28.18.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f30a6c3cd1744abbdd47e9bc936689c8acf39b89]

INTEGRATION: CWS changefileheader (1.21.386); FILE MERGED 2008/04/01 12:36:23 thb 1.21.386.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.21.386.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6ff8a39459e8d10f7cd5d18e486abf8f110f145d]

INTEGRATION: CWS changefileheader (1.7.20); FILE MERGED 2008/04/01 15:04:10 thb 1.7.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:48 rt 1.7.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b4d63e878e3f67761e3cd5ba66d9be1575faf3ce]

INTEGRATION: CWS changefileheader (1.10.398); FILE MERGED 2008/04/01 12:36:23 thb 1.10.398.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.10.398.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [177cf14319d15510ba0e2e9a46ef6aaac5b16d9a]

INTEGRATION: CWS changefileheader (1.13.70); FILE MERGED 2008/04/01 15:04:10 thb 1.13.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.13.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:48 rt 1.13.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [87133d8a68ecd196331e6e6ff090bc019334c00d]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 12:36:23 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [42c1d99b84eade67012022a75fa3652d3a124123]

INTEGRATION: CWS changefileheader (1.32.20); FILE MERGED 2008/04/01 15:04:10 thb 1.32.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.32.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:48 rt 1.32.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d89ac553ab01fd23a15e937f6c24526f7b3effd0]

INTEGRATION: CWS changefileheader (1.4.690); FILE MERGED 2008/04/01 12:36:23 thb 1.4.690.2: #i85898# Stripping all external header guards 2008/03/31 17:14:47 rt 1.4.690.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aef3a198e389e973a8020d4ef64b33dcff54dd65]

INTEGRATION: CWS changefileheader (1.9.94); FILE MERGED 2008/04/01 15:04:10 thb 1.9.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:48 rt 1.9.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ebc8c02ef23270f3b96d7d0e4c2a26fae8b47012]

INTEGRATION: CWS changefileheader (1.13.498); FILE MERGED 2008/04/01 12:36:23 thb 1.13.498.2: #i85898# Stripping all external header guards 2008/03/31 17:14:46 rt 1.13.498.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [50b98c8c51b6b07a98f0321e1b131d3a6462442c]

INTEGRATION: CWS changefileheader (1.15.20); FILE MERGED 2008/04/01 15:04:09 thb 1.15.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:48 rt 1.15.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bab630ec7281f279244c775b54f32c273d50a661]

INTEGRATION: CWS changefileheader (1.16.498); FILE MERGED 2008/04/01 15:30:18 thb 1.16.498.3: #i85898# Stripping all external header guards 2008/04/01 12:36:23 thb 1.16.498.2: #i85898# Stripping all external header guards 2008/03/31 17:14:46 rt 1.16.498.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c418c244e1ff2dc4e343a723423cef6bbe0f4b09]

INTEGRATION: CWS changefileheader (1.6.94); FILE MERGED 2008/04/01 15:04:09 thb 1.6.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.6.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:48 rt 1.6.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c4a2f2b60c3bb9796fcb33ea7a0f066223c73bc0]

INTEGRATION: CWS changefileheader (1.2.498); FILE MERGED 2008/04/01 12:36:22 thb 1.2.498.2: #i85898# Stripping all external header guards 2008/03/31 17:14:46 rt 1.2.498.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [406bc8892e0b81beadf06e3bb5eb5b555b8a9160]

INTEGRATION: CWS changefileheader (1.11.20); FILE MERGED 2008/03/28 16:43:48 rt 1.11.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ce9a11ed490f73557ef7b22951bb1c5b7ad3d37a]

INTEGRATION: CWS changefileheader (1.27.240); FILE MERGED 2008/04/01 15:30:18 thb 1.27.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:22 thb 1.27.240.2: #i85898# Stripping all external header guards 2008/03/31 17:14:46 rt 1.27.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [203d28e353ac82abd140351fe9ad6cf4d344ea88]

INTEGRATION: CWS changefileheader (1.28.20); FILE MERGED 2008/04/01 15:04:09 thb 1.28.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:48 rt 1.28.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1c758563ba6017f7a8b8a339b57d95512b34b8dd]

INTEGRATION: CWS changefileheader (1.15.86); FILE MERGED 2008/04/01 12:36:22 thb 1.15.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:46 rt 1.15.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7ef3c5eec5e021820f93f444063fc8c991609d90]

INTEGRATION: CWS changefileheader (1.9.20); FILE MERGED 2008/03/28 16:43:47 rt 1.9.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7cd8772000c1e0c02571b82b82a2c9cd9bffdc8e]

INTEGRATION: CWS changefileheader (1.11.10); FILE MERGED 2008/03/31 17:14:46 rt 1.11.10.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [82a5cf8c11b885415ed499488fca06faffce112d]

INTEGRATION: CWS changefileheader (1.11.92); FILE MERGED 2008/04/01 15:04:09 thb 1.11.92.2: #i85898# Stripping all external header guards 2008/03/28 16:43:47 rt 1.11.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8ae5ba5a8c83bec617abc515b9a0fd77ab0a0f55]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/04/01 12:36:22 thb 1.4.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:46 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1be08bb84c0ffa6962ef05dc310681a089900ef4]

INTEGRATION: CWS changefileheader (1.21.20); FILE MERGED 2008/03/28 16:43:47 rt 1.21.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [989bec616138addb94a9d950ea29388e1fb68030]

INTEGRATION: CWS changefileheader (1.10.86); FILE MERGED 2008/04/01 15:30:18 thb 1.10.86.3: #i85898# Stripping all external header guards 2008/04/01 12:36:22 thb 1.10.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:46 rt 1.10.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8f91465b8e4766c35e10ff2ebba3d53dc240f184]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/04/01 15:04:09 thb 1.5.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.5.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:47 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d4ac161ea81516db32efa8ee4a973a95fda53ed3]

INTEGRATION: CWS changefileheader (1.19.88); FILE MERGED 2008/04/01 15:30:18 thb 1.19.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:22 thb 1.19.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:46 rt 1.19.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [16ceea8ca90e370ebe00e34c816ac4394139850c]

INTEGRATION: CWS changefileheader (1.8.18); FILE MERGED 2008/04/01 15:04:09 thb 1.8.18.2: #i85898# Stripping all external header guards 2008/03/28 16:43:47 rt 1.8.18.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [09a2cd643415266039af0793b4ca8dfeaaa1f06d]

INTEGRATION: CWS changefileheader (1.10.292); FILE MERGED 2008/04/01 12:36:22 thb 1.10.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.10.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1b412869eacfff2b7ac725338fff7f9b08352b73]

INTEGRATION: CWS changefileheader (1.2.60); FILE MERGED 2008/03/28 16:43:47 rt 1.2.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [94895d2751199d845c28a680402e514a2d5b818d]

INTEGRATION: CWS changefileheader (1.7.500); FILE MERGED 2008/04/01 12:36:21 thb 1.7.500.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.7.500.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [41e1f6fac59460d2382866363783fe519bf745ab]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/03/28 16:43:47 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [38cb74c35ea30cff0d60600148678e11a4d4fbfa]

INTEGRATION: CWS changefileheader (1.20.386); FILE MERGED 2008/04/01 12:36:21 thb 1.20.386.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.20.386.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9d19544d1598fde476dc142af92894081019e095]

INTEGRATION: CWS changefileheader (1.7.94); FILE MERGED 2008/03/28 16:43:47 rt 1.7.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1d0e99c4d5c81fc7fdd57e8ad0ff9e593afcccbe]

INTEGRATION: CWS changefileheader (1.13.292); FILE MERGED 2008/04/01 12:36:21 thb 1.13.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.13.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [558419a4ee99ada8e1d2e7c120022d149c2761c8]

INTEGRATION: CWS changefileheader (1.14.34); FILE MERGED 2008/03/28 16:43:47 rt 1.14.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a35a52086748ad135c8387029cad6602465cf52f]

INTEGRATION: CWS changefileheader (1.10.400); FILE MERGED 2008/04/01 12:36:21 thb 1.10.400.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.10.400.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d54447892e05637dbfe4a0aa69b70a024ec5868f]

INTEGRATION: CWS changefileheader (1.15.94); FILE MERGED 2008/04/01 15:04:09 thb 1.15.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.15.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:47 rt 1.15.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b43fe4862312176c0f3643c63633e077e37fb840]

INTEGRATION: CWS changefileheader (1.5.292); FILE MERGED 2008/04/01 12:36:21 thb 1.5.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.5.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d8a918c59eda3bde76b623bb6fe67c2ee31791ca]

INTEGRATION: CWS changefileheader (1.13.34); FILE MERGED 2008/04/01 15:04:09 thb 1.13.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.13.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:47 rt 1.13.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1e4d81c48a0f000be9e68ebbb44c46f2fce3045f]

INTEGRATION: CWS changefileheader (1.8.292); FILE MERGED 2008/04/01 12:36:21 thb 1.8.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.8.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [57dcb4a0cfafa19b36e3e6e2e27f83abcd0f8940]

INTEGRATION: CWS changefileheader (1.12.70); FILE MERGED 2008/04/01 15:04:09 thb 1.12.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:25 thb 1.12.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:47 rt 1.12.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [29cdc41c1038ad54eb8c1c18a73d164aad40891a]

INTEGRATION: CWS changefileheader (1.12.700); FILE MERGED 2008/04/01 12:36:21 thb 1.12.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.12.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [75dde454686475fdb73763715255efa82b789f71]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:47 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [059d358ad5106ef6c998776ea716f82b67fd78fe]

INTEGRATION: CWS changefileheader (1.19.266); FILE MERGED 2008/04/01 12:36:21 thb 1.19.266.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.19.266.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7417a1139877a368900be9c9d04fb1ae7540ce9c]

INTEGRATION: CWS changefileheader (1.18.60); FILE MERGED 2008/04/01 15:04:08 thb 1.18.60.3: #i85898# Stripping all external header guards 2008/04/01 10:50:24 thb 1.18.60.2: #i85898# Stripping all external header guards 2008/03/28 16:43:47 rt 1.18.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [30cc84c8be5d046ec3b982884aa84af5e604e09a]

INTEGRATION: CWS changefileheader (1.7.498); FILE MERGED 2008/04/01 12:36:21 thb 1.7.498.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.7.498.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9ad37709138ae35d2df92e4b4802d8fe74745fff]

INTEGRATION: CWS changefileheader (1.11.94); FILE MERGED 2008/04/01 15:04:08 thb 1.11.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:24 thb 1.11.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:46 rt 1.11.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7db87ff56a542ff95ed1c64f8b0c1191a44cc0fd]

INTEGRATION: CWS changefileheader (1.9.292); FILE MERGED 2008/04/01 12:36:21 thb 1.9.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.9.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4791a55a3e768ed02b8fd80f5a253787c8ff6d8d]

INTEGRATION: CWS changefileheader (1.13.66); FILE MERGED 2008/04/01 15:04:08 thb 1.13.66.3: #i85898# Stripping all external header guards 2008/04/01 10:50:24 thb 1.13.66.2: #i85898# Stripping all external header guards 2008/03/28 16:43:46 rt 1.13.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2c809c507af3a51ca4db1f7a9f51b72447f44185]

INTEGRATION: CWS changefileheader (1.13.498); FILE MERGED 2008/04/01 12:36:21 thb 1.13.498.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.13.498.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c464642300aff7dcf5da2d2050c0a688158d614]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:46 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [96e676ca2c6e9096363e50eddad7d3923586611c]

INTEGRATION: CWS changefileheader (1.5.10); FILE MERGED 2008/03/31 17:14:45 rt 1.5.10.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b0247bbb4da3998480b255d4901d8465bf0f6f41]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:08 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:24 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:46 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a93ee3a2e892c62be5a4437cb9234dc6f3a7064b]

INTEGRATION: CWS changefileheader (1.47.344); FILE MERGED 2008/04/01 12:36:20 thb 1.47.344.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.47.344.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [59f0ebf3f60990e084b214a6566924f590d39d0b]

INTEGRATION: CWS changefileheader (1.10.18); FILE MERGED 2008/04/01 15:04:08 thb 1.10.18.3: #i85898# Stripping all external header guards 2008/04/01 10:50:24 thb 1.10.18.2: #i85898# Stripping all external header guards 2008/03/28 16:43:46 rt 1.10.18.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ff001ef69b1a0756d92c5d6062df57cbc1266d96]

INTEGRATION: CWS changefileheader (1.11.700); FILE MERGED 2008/04/01 15:30:18 thb 1.11.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.11.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.11.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7d1aeb35c6e4932d757f7d9d1f57a2fc3c97a42e]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/28 16:43:46 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [49bc4d281f40a05831d8cccd2651079743bd900c]

INTEGRATION: CWS changefileheader (1.10.344); FILE MERGED 2008/03/31 17:14:45 rt 1.10.344.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d35c1f95eff86e16bdef4f2d1de72b71c6e15717]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 15:04:08 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:46 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e8312da5bd7c221c33c78cf3eb4b8e719cd2ace6]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:14:45 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c9a8deb3029d811fdd3b5f49a360e2225d1c3132]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:08 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:24 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:46 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8cbd221dc7acd6b2fe4fc4cd92c0369c96e57071]

INTEGRATION: CWS changefileheader (1.13.34); FILE MERGED 2008/04/01 15:30:17 thb 1.13.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.13.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:45 rt 1.13.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [113b6e7a1242a69e47670f271ca7d73f5384df4e]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:14:44 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [858c19df7b25d02ae07206bc5084a23137866a1a]

INTEGRATION: CWS changefileheader (1.5.66); FILE MERGED 2008/04/01 15:04:08 thb 1.5.66.2: #i85898# Stripping all external header guards 2008/03/28 16:43:46 rt 1.5.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8ed7374c0be50e8c7256102451c3221987de4139]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:17 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fe24718d2db06a09c20f138c3ebfd37ec891e100]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:30:17 thb 1.8.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d91c43ef736fc8d0ed2d2f14f9dad62398fdd742]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/03/31 17:14:44 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [055e63a45023fdc435c65afff7d84535051d9573]

INTEGRATION: CWS changefileheader (1.3.34); FILE MERGED 2008/04/01 15:04:07 thb 1.3.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:24 thb 1.3.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:46 rt 1.3.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [46ce229f6049ebd8ecbbe9215f7c46cc5e46f1d8]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:14:44 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [24ae640451dd8dd62a0834612e65a4096b7c4e41]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:07 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:24 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dd3f78e62ae358272ec58c61ad95594f5e8b11f6]

INTEGRATION: CWS changefileheader (1.42.700); FILE MERGED 2008/04/01 15:30:17 thb 1.42.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.42.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.42.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [eefa9d5037ffb761e80adc79939558b7ac3c08c8]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/04/01 15:04:07 thb 1.3.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:23 thb 1.3.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3b4ea1fc41197dc676f43f7e7d838290747b72d8]

INTEGRATION: CWS changefileheader (1.4.88); FILE MERGED 2008/04/01 15:30:17 thb 1.4.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.4.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [39916642d940b29435f45b1f4ba8bf67d4884f79]

INTEGRATION: CWS changefileheader (1.2.20); FILE MERGED 2008/04/01 15:04:07 thb 1.2.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:23 thb 1.2.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.2.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [046ea5a314297719c4c3c57665e7d30154ad2f93]

INTEGRATION: CWS changefileheader (1.2.624); FILE MERGED 2008/04/01 15:30:17 thb 1.2.624.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.2.624.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.2.624.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e1ac680a03638cb1cfb7fded5feb18fc9e0e9ccc]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 15:04:07 thb 1.7.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:23 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [56fa07fc28fe6443b2672a933640c37dc5405bf1]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/04/01 15:30:16 thb 1.3.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d549446f7b6aef22b576e7891617846819468c53]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:07 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9da68df48243f9157223b1b3459e9aaa6150d11d]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:16 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ff02a2c94ce713878f22315933bc296f13c71f84]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 10:50:23 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0a088051b9586e51454fdaede48a91a586af5951]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:23 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [87ceff42af015b73906cb9119b8a7f9e2b22591f]

INTEGRATION: CWS changefileheader (1.4.88); FILE MERGED 2008/03/31 17:14:44 rt 1.4.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [441efd9c8e1dc097a00c9917ce007492244d401a]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:07 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:23 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2eb0f8129633aa03949f05802f49f09ac06a7071]

INTEGRATION: CWS changefileheader (1.14.88); FILE MERGED 2008/04/01 15:30:16 thb 1.14.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.14.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.14.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d8eddca7c69c81180e4772f7601cda470d28f2a7]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:45 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [11e2e9a791418c7dd3195ae697b81b66c9caac0a]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 10:50:23 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [12e50670a4b6a968476cf8fcbc38d6daffea5c51]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:14:44 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1ae8e8987b944b63e1a3f18c1539575bbcddf133]

INTEGRATION: CWS changefileheader (1.4.34); FILE MERGED 2008/04/01 10:50:23 thb 1.4.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.4.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c5955c5b8cc2d1e1f979f09072f855465e6e9f45]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:30:16 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dfe1c3f97877fe200f451e1eea5d869eb7308cd0]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 15:04:07 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:45 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2fcf84a04fc51fc262df296efc7715cc4a432875]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:30:16 thb 1.5.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b403beb4646a0eb062345b82e26bf1626d4e3f38]

INTEGRATION: CWS changefileheader (1.2.60); FILE MERGED 2008/03/28 16:43:45 rt 1.2.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bacb6ab3b05cd64e281d72a01d1ebbed21045240]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:30:16 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4cd571e7aec7802381a0f31b34a0aba61a9a1a1e]

INTEGRATION: CWS changefileheader (1.3.34); FILE MERGED 2008/03/28 16:43:45 rt 1.3.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [49c7c4eef27516d468d6a1ab42ff91e92281fa5d]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:30:16 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:44 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b058f9f07abd37d29fd5e7b6b9d6f0fe61689e17]

INTEGRATION: CWS changefileheader (1.41.292); FILE MERGED 2008/04/01 15:30:16 thb 1.41.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.41.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:43 rt 1.41.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2a6fdf1ba5b2c8033b5883163e0a69569ce629fe]

INTEGRATION: CWS changefileheader (1.2.20); FILE MERGED 2008/03/28 16:43:44 rt 1.2.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a06673c1c32d6659170ff3d0e6dcf20043180298]

INTEGRATION: CWS changefileheader (1.15.330); FILE MERGED 2008/04/01 15:30:16 thb 1.15.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:43 rt 1.15.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [373b6d3ca99a6b4fe47f5482f2dfc35155d4002e]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:44 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [392040ba5e2766b2b364c6a822f0bf8d16b12d93]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/04/01 15:30:15 thb 1.10.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.10.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:43 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [61ff6568279381894539957435f0b33b3bd04f54]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:14:43 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3da7ad6734ec34799c24aba70333fa4dc48b4ccc]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:23 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:44 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7b61261fbf6b6f477b963d0fdb5b9177a56c0479]

INTEGRATION: CWS changefileheader (1.22.292); FILE MERGED 2008/04/01 15:30:15 thb 1.22.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:43 rt 1.22.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e1a8d2ab4b9e6c35c530c5ae93fb104f693cf1c4]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:07 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:22 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:44 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5edcfb3d3b09940eb2de90a57c1e12d748bdbc91]

INTEGRATION: CWS changefileheader (1.7.500); FILE MERGED 2008/04/01 12:36:20 thb 1.7.500.2: #i85898# Stripping all external header guards 2008/03/31 17:14:43 rt 1.7.500.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [705e6b35008af636eab5e7ae39aaace51daff14f]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/04/01 10:50:22 thb 1.5.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:44 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [12b6dac8c0456cfcf7048fb6c3a83bd336fe5d4f]

INTEGRATION: CWS changefileheader (1.10.266); FILE MERGED 2008/04/01 15:30:15 thb 1.10.266.3: #i85898# Stripping all external header guards 2008/04/01 12:36:20 thb 1.10.266.2: #i85898# Stripping all external header guards 2008/03/31 17:14:43 rt 1.10.266.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b041aba0ed9631dda67b3ede60b1fc7783c27121]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/04/01 10:50:22 thb 1.6.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:44 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f1bcdd086c6a08c3b6c084334d1c9ef43b70bee4]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:06 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:22 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:44 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2840c8ffc0ed840b40b835e2e0457dcd03ae3fb3]

INTEGRATION: CWS changefileheader (1.12.158); FILE MERGED 2008/03/31 17:14:43 rt 1.12.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dce8be449c1c70a792be4ac79870bf7247276d19]

INTEGRATION: CWS changefileheader (1.9.34); FILE MERGED 2008/04/01 15:04:06 thb 1.9.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:22 thb 1.9.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:44 rt 1.9.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f9c24f60367f75720b6296d89038a1f3fc7b4c23]

INTEGRATION: CWS changefileheader (1.5.328); FILE MERGED 2008/04/01 15:30:15 thb 1.5.328.3: #i85898# Stripping all external header guards 2008/04/01 12:36:19 thb 1.5.328.2: #i85898# Stripping all external header guards 2008/03/31 17:14:43 rt 1.5.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b7ab69cda95510dd1c76f526805e069a4356babb]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/03/28 16:43:44 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0e9266fb734ee878c3729bd24a8a22cbe36ae664]

INTEGRATION: CWS changefileheader (1.2.342); FILE MERGED 2008/04/01 12:36:19 thb 1.2.342.2: #i85898# Stripping all external header guards 2008/03/31 17:14:43 rt 1.2.342.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [80f877fb6731bfa397e56803f40d6f6ca4a35628]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/04/01 15:04:06 thb 1.6.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:22 thb 1.6.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:44 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1a8c07b740c1b083c97f73a6534c6573991db433]

INTEGRATION: CWS changefileheader (1.7.326); FILE MERGED 2008/04/01 12:36:19 thb 1.7.326.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.7.326.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d3747bd6b4717ca564777e49c41714ea090138a9]

INTEGRATION: CWS changefileheader (1.2.20); FILE MERGED 2008/03/28 16:43:43 rt 1.2.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f943431accbfa8b6e637eaaec033abadb7c88498]

INTEGRATION: CWS changefileheader (1.10.292); FILE MERGED 2008/04/01 15:30:15 thb 1.10.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:19 thb 1.10.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.10.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0774506fc31ca95cffa49355e1e2f0ec5e9984f3]

INTEGRATION: CWS changefileheader (1.10.42); FILE MERGED 2008/04/01 15:04:06 thb 1.10.42.3: #i85898# Stripping all external header guards 2008/04/01 10:50:22 thb 1.10.42.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.10.42.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [312bb518798b8d49fc6751cb98b9635b205d6dfa]

INTEGRATION: CWS changefileheader (1.4.240); FILE MERGED 2008/04/01 15:30:15 thb 1.4.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:19 thb 1.4.240.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.4.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cdad6515ebc9b4f500d0f4dbad3b6b92398c7796]

INTEGRATION: CWS changefileheader (1.12.60); FILE MERGED 2008/04/01 10:50:21 thb 1.12.60.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.12.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6e4dc530931e7cb02610b0667a1568e3434b44b2]

INTEGRATION: CWS changefileheader (1.12.584); FILE MERGED 2008/04/01 12:36:19 thb 1.12.584.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.12.584.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [24c540b1dee487248d5fd54a6381e8f9aa56d7cc]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/04/01 15:04:06 thb 1.3.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [43456be9e4c90b51103072dea53b25aec5ad42c6]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 15:30:15 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [504de34048c3259af06eb7b7c2bc4042e5bbaf9f]

INTEGRATION: CWS changefileheader (1.2.44); FILE MERGED 2008/04/01 15:04:06 thb 1.2.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.2.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [24b83c5bcc8f8ec58480c91f196e632513404452]

INTEGRATION: CWS changefileheader (1.49.330); FILE MERGED 2008/04/01 15:30:14 thb 1.49.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:19 thb 1.49.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.49.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [21e9e290858384819b2c9906935e8cb3a667d86c]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:06 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:21 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3984ba0e3d7a884f31553b07a3d9ae38b214250f]

INTEGRATION: CWS changefileheader (1.69.86); FILE MERGED 2008/04/01 12:36:19 thb 1.69.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.69.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0394aa3e56611ea9e549b54f8b25cc0f179a84c0]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 15:04:06 thb 1.7.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:21 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [27d77fcf87fbb8f2f805b421669cd6b969029d0c]

INTEGRATION: CWS changefileheader (1.20.34); FILE MERGED 2008/04/01 12:36:18 thb 1.20.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.20.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [06d8c02d53da2b188b9755af7e05f7ff0b0b0756]

INTEGRATION: CWS changefileheader (1.8.126); FILE MERGED 2008/04/01 10:50:21 thb 1.8.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.8.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [51c048de3fb49e283a54f229230398536d971edb]

INTEGRATION: CWS changefileheader (1.17.700); FILE MERGED 2008/04/01 15:30:14 thb 1.17.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:18 thb 1.17.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.17.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d96e4f465c3ab7ca5943af92d7b682f1a41ea91a]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:05 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:21 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [575f68bd825341df520f52adf640695268142fb0]

INTEGRATION: CWS changefileheader (1.47.700); FILE MERGED 2008/04/01 15:30:14 thb 1.47.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.47.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [62a2057e06daf6ac0537942bae8a677fb08bcbe0]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 15:30:14 thb 1.7.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:18 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8fbc19f3c3fe1dc65ff82cc0cb8f6f266da00816]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:30:14 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:18 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [74d684ee5c0b8718600b7131329a62720dffd118]

INTEGRATION: CWS changefileheader (1.3.70); FILE MERGED 2008/04/01 15:04:05 thb 1.3.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:21 thb 1.3.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.3.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [03abc27c96c921408af5805916fb7bae51da0f4b]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:30:14 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9b4395a1d8ab15a5c704c224a3cd8f911d0ac869]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:43:43 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a092fec682606daacaa7c8eb84f3f1662f728fc8]

INTEGRATION: CWS changefileheader (1.22.436); FILE MERGED 2008/03/31 17:14:42 rt 1.22.436.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0381ce0f6c0eea51283ffd577de0a0e2af3aba38]

INTEGRATION: CWS changefileheader (1.12.102); FILE MERGED 2008/04/01 15:04:05 thb 1.12.102.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.12.102.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0f85cd5c0f71a27f600f1d4247191ce89e9119d4]

INTEGRATION: CWS changefileheader (1.21.158); FILE MERGED 2008/04/01 15:30:13 thb 1.21.158.3: #i85898# Stripping all external header guards 2008/04/01 12:36:18 thb 1.21.158.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.21.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a790fc9f0db95acd29081bf45d13fa395c01c098]

INTEGRATION: CWS changefileheader (1.17.42); FILE MERGED 2008/04/01 15:04:05 thb 1.17.42.2: #i85898# Stripping all external header guards 2008/03/28 16:43:43 rt 1.17.42.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dd7ece5c370a3bba0b09cfdc6dba2fe8984d3f82]

INTEGRATION: CWS changefileheader (1.2.624); FILE MERGED 2008/04/01 15:30:13 thb 1.2.624.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.2.624.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e0ab0ad2fd7f6be805c8e2ccce11fe48c9b5d21d]

INTEGRATION: CWS changefileheader (1.4.34); FILE MERGED 2008/03/28 16:43:33 rt 1.4.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [139fb2a5422ad35b04a8b1ca00023c602b6dff8c]

INTEGRATION: CWS changefileheader (1.20.498); FILE MERGED 2008/04/01 15:30:13 thb 1.20.498.3: #i85898# Stripping all external header guards 2008/04/01 12:36:18 thb 1.20.498.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.20.498.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dbe056379ef05d2467f57b7063564b549e2a600a]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/04/01 15:04:05 thb 1.3.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:21 thb 1.3.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:33 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c90ddc1fe7f876819ec0ad842f5599104ce8ce48]

INTEGRATION: CWS changefileheader (1.19.328); FILE MERGED 2008/04/01 15:30:13 thb 1.19.328.3: #i85898# Stripping all external header guards 2008/04/01 12:36:18 thb 1.19.328.2: #i85898# Stripping all external header guards 2008/03/31 17:14:42 rt 1.19.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ffb9c6bb2dea026166dcae86f26c93104e189244]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:33 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0a1bc032341e06eb622a72d536776f3f371c7681]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/03/28 16:43:33 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [08302859049f3334f19ca5e63cd9d4434a6b0d28]

INTEGRATION: CWS changefileheader (1.5.46); FILE MERGED 2008/03/31 17:14:41 rt 1.5.46.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e85dfd70cde153683e7e4536bc02dc5566256a51]

INTEGRATION: CWS changefileheader (1.33.46); FILE MERGED 2008/04/01 15:30:13 thb 1.33.46.2: #i85898# Stripping all external header guards 2008/03/31 17:14:41 rt 1.33.46.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9fb35a546625d9b9d218a679312e55af74f803e2]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/28 16:43:33 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aa125882a0f55386a023734dee5a6e136cfe0526]

INTEGRATION: CWS changefileheader (1.17.300); FILE MERGED 2008/03/31 17:14:41 rt 1.17.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3a0c15bdd193a81017e415e84ecad054490a3c22]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/28 16:43:32 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [678d6025f9697dd8b6fc21032968108707b69605]

INTEGRATION: CWS changefileheader (1.16.240); FILE MERGED 2008/04/01 15:30:12 thb 1.16.240.2: #i85898# Stripping all external header guards 2008/03/31 17:14:41 rt 1.16.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a7b352a05e5ed888c450a83e224d7c79cf044793]

INTEGRATION: CWS changefileheader (1.9.34); FILE MERGED 2008/03/28 16:43:32 rt 1.9.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4a1df81dc0482b60eb183d0bcc564c82f8142fe9]

INTEGRATION: CWS changefileheader (1.37.46); FILE MERGED 2008/04/01 15:30:12 thb 1.37.46.2: #i85898# Stripping all external header guards 2008/03/31 17:14:41 rt 1.37.46.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3e103759e85810a973573e80707b2074b6d030d6]

INTEGRATION: CWS changefileheader (1.8.126); FILE MERGED 2008/04/01 15:04:05 thb 1.8.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.8.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6f308e473fa8e53977569eaa8f4eeb59e9257611]

INTEGRATION: CWS changefileheader (1.10.94); FILE MERGED 2008/04/01 15:04:05 thb 1.10.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.10.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d474d87142e35b4a92a885987171839dad612747]

INTEGRATION: CWS changefileheader (1.7.328); FILE MERGED 2008/03/31 17:14:41 rt 1.7.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [10e83e06c642ae044a838e1265352661b9ae77df]

INTEGRATION: CWS changefileheader (1.7.66); FILE MERGED 2008/03/28 16:43:32 rt 1.7.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ef76e9b9d6935018235d8bf08fb7b33fcd9f1ca5]

INTEGRATION: CWS changefileheader (1.18.290); FILE MERGED 2008/04/01 15:30:12 thb 1.18.290.3: #i85898# Stripping all external header guards 2008/04/01 12:36:18 thb 1.18.290.2: #i85898# Stripping all external header guards 2008/03/31 17:14:41 rt 1.18.290.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3c19b26612dd8b27bb64fe65ceaf0b606e48e37f]

INTEGRATION: CWS changefileheader (1.4.66); FILE MERGED 2008/04/01 15:04:04 thb 1.4.66.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.4.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [500808198c3679c4058886f3ebb7232ab7b14a76]

INTEGRATION: CWS changefileheader (1.9.88); FILE MERGED 2008/04/01 12:36:18 thb 1.9.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:41 rt 1.9.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [47c67261bef876e7a05551a784bd205f1eaac25c]

INTEGRATION: CWS changefileheader (1.9.66); FILE MERGED 2008/04/01 15:04:04 thb 1.9.66.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.9.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2e827c0fb80b1962268d3fd92311e39bcbf894f9]

INTEGRATION: CWS changefileheader (1.9.240); FILE MERGED 2008/04/01 15:30:12 thb 1.9.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:18 thb 1.9.240.2: #i85898# Stripping all external header guards 2008/03/31 17:14:41 rt 1.9.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7c47183de29639eb21896bd0dc0fb8762a9151fc]

INTEGRATION: CWS changefileheader (1.9.42); FILE MERGED 2008/03/28 16:43:32 rt 1.9.42.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b569828eb865ccba7841376b020b322845c19197]

INTEGRATION: CWS changefileheader (1.2.342); FILE MERGED 2008/04/01 15:30:12 thb 1.2.342.3: #i85898# Stripping all external header guards 2008/04/01 12:36:17 thb 1.2.342.2: #i85898# Stripping all external header guards 2008/03/31 17:14:41 rt 1.2.342.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5e2c3fa9b702092cf58c7802fb5f90532745e965]

INTEGRATION: CWS changefileheader (1.6.66); FILE MERGED 2008/04/01 15:04:04 thb 1.6.66.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.6.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [05b139a093df4c6022614192f066df89c58d910c]

INTEGRATION: CWS changefileheader (1.10.240); FILE MERGED 2008/04/01 15:30:11 thb 1.10.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:17 thb 1.10.240.2: #i85898# Stripping all external header guards 2008/03/31 17:14:40 rt 1.10.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4861d1897168e4d2c32d045826e571e0f8b264da]

INTEGRATION: CWS changefileheader (1.12.44); FILE MERGED 2008/04/01 15:04:04 thb 1.12.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.12.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [964b4a967d9bc48c64268298bb326532cf6fa50a]

INTEGRATION: CWS changefileheader (1.9.292); FILE MERGED 2008/04/01 15:30:11 thb 1.9.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:17 thb 1.9.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:40 rt 1.9.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [acf226534686289ec7bd418b515729c0149bbe68]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:32 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b837507bb47fff7a6028efa5e69269931d87a3e7]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/04/01 12:36:15 thb 1.6.492.2: #i85898# Stripping all external header guards 2008/03/31 17:14:34 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0a761d1c39d488a6ef0eb36802a413da4a2811b1]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/04/01 15:04:04 thb 1.4.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:20 thb 1.4.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8eb88ee03a63127fd573ca58ffee8486edbb81cb]

INTEGRATION: CWS changefileheader (1.9.492); FILE MERGED 2008/04/01 15:30:11 thb 1.9.492.3: #i85898# Stripping all external header guards 2008/04/01 12:36:15 thb 1.9.492.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.9.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [514ee4fda20951f02a2c67c9ca03f018de8566fa]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/04/01 10:50:20 thb 1.4.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3b73f58ee60f91e362a3f8e1b5dcfb61170af497]

INTEGRATION: CWS changefileheader (1.30.238); FILE MERGED 2008/04/01 15:30:11 thb 1.30.238.3: #i85898# Stripping all external header guards 2008/04/01 12:36:15 thb 1.30.238.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.30.238.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [545c1a2248c4940c75d60863f3c323734fd911de]

INTEGRATION: CWS changefileheader (1.26.292); FILE MERGED 2008/04/01 15:30:10 thb 1.26.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:15 thb 1.26.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.26.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6fa2d01d536c93eaccc07f3bd041e43375e37775]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/04/01 12:36:15 thb 1.4.492.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [365befe7b7658b27da724195b28f7d04028a8cf7]

INTEGRATION: CWS changefileheader (1.31.244); FILE MERGED 2008/04/01 15:30:10 thb 1.31.244.3: #i85898# Stripping all external header guards 2008/04/01 12:36:14 thb 1.31.244.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.31.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8353e6fef55d4f5c09e016ef348d1517c0f81d78]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/04/01 12:36:14 thb 1.11.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [84ccb1e0812b6512bd8f738192e88119aa8b4603]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/03/28 16:43:32 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [97af6220846fa69db1988481f320780488621127]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:04 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9c40e21c4682408a49f1dad8acd1f02bd74c7f88]

INTEGRATION: CWS changefileheader (1.8.244); FILE MERGED 2008/04/01 15:30:10 thb 1.8.244.3: #i85898# Stripping all external header guards 2008/04/01 12:36:14 thb 1.8.244.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.8.244.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0e1453158d294b4601cbf35e1459761b6e105618]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/04/01 15:04:04 thb 1.6.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:32 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9ab275c88152a482f0f5bde747d2a08235ed45fa]

INTEGRATION: CWS changefileheader (1.21.328); FILE MERGED 2008/04/01 15:30:10 thb 1.21.328.3: #i85898# Stripping all external header guards 2008/04/01 12:36:14 thb 1.21.328.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.21.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ea450b4253d1f967124f783a22e07277fa33f67f]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:31 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [353134a796ac06938255a40c019f14d0252b4d60]

INTEGRATION: CWS changefileheader (1.25.34); FILE MERGED 2008/04/01 12:36:14 thb 1.25.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.25.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9f9fb527ede88b8ba4e03d58a35af7f03d582613]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/04/01 15:04:04 thb 1.3.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:20 thb 1.3.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:31 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ed4800f640c88e4382410f5b7d60312b76b21c40]

INTEGRATION: CWS changefileheader (1.13.292); FILE MERGED 2008/04/01 15:30:10 thb 1.13.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:14 thb 1.13.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.13.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [21c85dfa7bd6c4c0d9a2405d7d4050b47764ae64]

INTEGRATION: CWS changefileheader (1.17.88); FILE MERGED 2008/04/01 15:30:10 thb 1.17.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:14 thb 1.17.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.17.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [241164d54eabe97140c11a3659f5d3bbee8da8c5]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:31 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [343a3cd2b5483948de800941407ef71575de0657]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:43:31 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [659af09e3b54c6970030620cab158e424012228a]

INTEGRATION: CWS changefileheader (1.9.88); FILE MERGED 2008/03/31 17:14:33 rt 1.9.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [90fdb7ab3cf15808a8b318a71a00c174bb8834a4]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:04:04 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:31 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [75c9244f48d4c93ef8b62f94cb46b38b3b878a00]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/04/01 12:36:13 thb 1.5.492.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [568412c2512638b016ca5f72521f64283ad321a7]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 15:04:04 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:31 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e964c77ffa957a77c02afe94ace464848316bb66]

INTEGRATION: CWS changefileheader (1.8.88); FILE MERGED 2008/04/01 12:36:13 thb 1.8.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.8.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [337889fcf69e0fa7d935ac7aec387ae199b9dcbb]

INTEGRATION: CWS changefileheader (1.36.88); FILE MERGED 2008/04/01 15:30:09 thb 1.36.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:13 thb 1.36.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.36.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c1104cc4ec4aa568c10ccf7ac1f9474dd099d3d6]

INTEGRATION: CWS changefileheader (1.4.292); FILE MERGED 2008/04/01 12:36:13 thb 1.4.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:33 rt 1.4.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b4ada1f90109858afeef30823ef37682796d57de]

INTEGRATION: CWS changefileheader (1.21.328); FILE MERGED 2008/04/01 12:36:13 thb 1.21.328.2: #i85898# Stripping all external header guards 2008/03/31 17:14:32 rt 1.21.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [130125d7f5c3c41c965b9d41295f183957823af9]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:04 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:20 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:31 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [549c9f36666bc495b3008db16c0c7b572db0bd3b]

INTEGRATION: CWS changefileheader (1.23.292); FILE MERGED 2008/04/01 12:36:13 thb 1.23.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:32 rt 1.23.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6a4a9e1b14fc35dc8c282a6e706faaff55d786b2]

INTEGRATION: CWS changefileheader (1.17.34); FILE MERGED 2008/03/31 17:14:32 rt 1.17.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ed4a5e273eefcd21be04e4e80690237d32463f44]

INTEGRATION: CWS changefileheader (1.17.88); FILE MERGED 2008/04/01 15:30:09 thb 1.17.88.3: #i85898# Stripping all external header guards 2008/04/01 12:36:13 thb 1.17.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:32 rt 1.17.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cd3ca2d870483438def79a36360809effcf8655a]

INTEGRATION: CWS changefileheader (1.3.70); FILE MERGED 2008/04/01 15:04:04 thb 1.3.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:20 thb 1.3.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:31 rt 1.3.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ec2facc56d8bd28186472dca2a899874821fc36a]

INTEGRATION: CWS changefileheader (1.9.266); FILE MERGED 2008/04/01 12:36:13 thb 1.9.266.2: #i85898# Stripping all external header guards 2008/03/31 17:14:32 rt 1.9.266.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5250b084967b12fcb97c8fc24fb15448b2fc5186]

INTEGRATION: CWS changefileheader (1.23.34); FILE MERGED 2008/04/01 12:36:13 thb 1.23.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:32 rt 1.23.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2146a22e7d46dfcf7bd74c7e1fd7663a9efe5f66]

INTEGRATION: CWS changefileheader (1.4.70); FILE MERGED 2008/04/01 15:04:04 thb 1.4.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:20 thb 1.4.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:31 rt 1.4.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b9538709b4342016f6a57761bfc9604bd7a3ab64]

INTEGRATION: CWS changefileheader (1.28.266); FILE MERGED 2008/04/01 15:30:09 thb 1.28.266.3: #i85898# Stripping all external header guards 2008/04/01 12:36:12 thb 1.28.266.2: #i85898# Stripping all external header guards 2008/03/31 17:14:32 rt 1.28.266.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [650a83cc23adcf1cd956c63dc0d4b8c93dac2049]

INTEGRATION: CWS changefileheader (1.3.66); FILE MERGED 2008/03/28 16:43:31 rt 1.3.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [632c98651f0c038e1ddc0df293c9ca28fc666710]

INTEGRATION: CWS changefileheader (1.4.328); FILE MERGED 2008/04/01 12:36:12 thb 1.4.328.2: #i85898# Stripping all external header guards 2008/03/31 17:14:32 rt 1.4.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [adfcceea18c65eecaef35c79af270187b58810c6]

INTEGRATION: CWS changefileheader (1.4.94); FILE MERGED 2008/04/01 15:04:03 thb 1.4.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:31 rt 1.4.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2f4832b09f396211bc1e8bfde352eae940677b40]

INTEGRATION: CWS changefileheader (1.55.88); FILE MERGED 2008/03/31 17:14:32 rt 1.55.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [90a1e613eed5056ef7ced69e62c18869741267b1]

INTEGRATION: CWS changefileheader (1.8.94); FILE MERGED 2008/03/28 16:43:31 rt 1.8.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [44522e58dda1259a5a286040939e30bde9d47ef0]

INTEGRATION: CWS changefileheader (1.30.86); FILE MERGED 2008/04/01 15:30:09 thb 1.30.86.3: #i85898# Stripping all external header guards 2008/04/01 12:36:12 thb 1.30.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:32 rt 1.30.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [48a5b174736513b9b09ce3faeb7e8c3982e44e5c]

INTEGRATION: CWS changefileheader (1.18.10); FILE MERGED 2008/03/31 17:14:31 rt 1.18.10.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5acdfe3e2fa6c5cb6ec94426a821739bc7d93368]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/04/01 15:04:03 thb 1.3.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:20 thb 1.3.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [42d4d001e90cf5ce076b9af9c0c53f92c435aa2d]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 12:36:12 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c8ea8f5825a3f313ec5f546a638aae1884639baa]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:30 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [faf117a95f4a3d4e1fc15bf3b03f35835df6b9f6]

INTEGRATION: CWS changefileheader (1.17.86); FILE MERGED 2008/04/01 15:30:08 thb 1.17.86.3: #i85898# Stripping all external header guards 2008/04/01 12:36:12 thb 1.17.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.17.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ba222c20a3465768dfb8f3771a0a9c9dfc63f57d]

INTEGRATION: CWS changefileheader (1.7.20); FILE MERGED 2008/04/01 15:04:03 thb 1.7.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.7.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bef21a035ffb38169c33bc7a9d3055f7f1833efb]

INTEGRATION: CWS changefileheader (1.9.34); FILE MERGED 2008/03/28 16:43:30 rt 1.9.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5ae8cd475fec7145e7b9d27fe07fba87c986b6b0]

INTEGRATION: CWS changefileheader (1.32.86); FILE MERGED 2008/04/01 15:30:08 thb 1.32.86.3: #i85898# Stripping all external header guards 2008/04/01 12:36:12 thb 1.32.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.32.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [72fcd2ad4a7d32fe0fb0338c2ab36d8fa5472a47]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 15:04:03 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [01d16b455fa973b8d852e5d14e1b4a940e6fc6c7]

INTEGRATION: CWS changefileheader (1.12.292); FILE MERGED 2008/04/01 12:36:11 thb 1.12.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.12.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [07cb85120520005694fa2c18f8143c2af13fd53b]

INTEGRATION: CWS changefileheader (1.9.94); FILE MERGED 2008/04/01 15:04:03 thb 1.9.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.9.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [62c493485c0d34864d64ff4459284bf443c7acc8]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/04/01 12:36:11 thb 1.10.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e96a1160fb0371c89b6fb2599176903f49450027]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:03 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:20 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2c79c69d2d6276ae035d6c45e6a1026b4d5e5366]

INTEGRATION: CWS changefileheader (1.22.158); FILE MERGED 2008/04/01 15:30:08 thb 1.22.158.3: #i85898# Stripping all external header guards 2008/04/01 12:36:11 thb 1.22.158.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.22.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [50f8cd72ac037f3230f15b003421f22549a934af]

INTEGRATION: CWS changefileheader (1.9.292); FILE MERGED 2008/04/01 12:36:11 thb 1.9.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.9.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [25b3d965cf56c94fcc0635695dd793b7d8cefa2b]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:02 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [06a2f9aee5c8b0b7586af9050a4376c4c178aef6]

INTEGRATION: CWS changefileheader (1.19.222); FILE MERGED 2008/04/01 15:30:08 thb 1.19.222.3: #i85898# Stripping all external header guards 2008/04/01 12:36:11 thb 1.19.222.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.19.222.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ae1d89cf7851dda35c9b1507da98676b5a778c96]

INTEGRATION: CWS changefileheader (1.3.106); FILE MERGED 2008/03/28 16:43:30 rt 1.3.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [79ecd576e4541ef746828bb42396dddc75f486dc]

INTEGRATION: CWS changefileheader (1.14.292); FILE MERGED 2008/04/01 15:30:07 thb 1.14.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:11 thb 1.14.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.14.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cfd1118eeb7ab8597cd80c149a663bb8d2f25b57]

INTEGRATION: CWS changefileheader (1.3.106); FILE MERGED 2008/04/01 15:04:02 thb 1.3.106.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.3.106.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.3.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f88ebdb6c4e0e8c684b1817b9007170ed9887e2b]

INTEGRATION: CWS changefileheader (1.4.94); FILE MERGED 2008/04/01 15:04:02 thb 1.4.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.4.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.4.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ddb8639973c2eb6e488dc10c416071d95202b067]

INTEGRATION: CWS changefileheader (1.20.292); FILE MERGED 2008/04/01 15:30:07 thb 1.20.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:10 thb 1.20.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:31 rt 1.20.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a902ee9c5d27cdfd83632d753d0b556fcc1fee58]

INTEGRATION: CWS changefileheader (1.30.266); FILE MERGED 2008/04/01 15:30:07 thb 1.30.266.3: #i85898# Stripping all external header guards 2008/04/01 12:36:10 thb 1.30.266.2: #i85898# Stripping all external header guards 2008/03/31 17:14:30 rt 1.30.266.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [58dafcfe45a8bcdf168387ddc369e32edf148784]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:02 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:30 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d449868ea580c0f657c4f10b00434ef065159139]

INTEGRATION: CWS changefileheader (1.24.24); FILE MERGED 2008/04/01 12:36:10 thb 1.24.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:30 rt 1.24.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [71d0fa4658efb23e4d12cf1d2b05dafbbe9d747b]

INTEGRATION: CWS changefileheader (1.4.94); FILE MERGED 2008/04/01 15:04:02 thb 1.4.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.4.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:29 rt 1.4.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [091055bcf768b5953c00b49e0f360b71033a0808]

INTEGRATION: CWS changefileheader (1.23.88); FILE MERGED 2008/03/31 17:14:30 rt 1.23.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [397347051296b176f589d3b9eb41e75ca749cfde]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:29 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [16b1c99d675984f5c5e3fb781a8a98280b077cfe]

INTEGRATION: CWS changefileheader (1.22.86); FILE MERGED 2008/04/01 15:30:07 thb 1.22.86.3: #i85898# Stripping all external header guards 2008/04/01 12:36:10 thb 1.22.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:30 rt 1.22.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c8e87a667569055a3ca86d8772cffb9badb58620]

INTEGRATION: CWS changefileheader (1.8.10); FILE MERGED 2008/03/31 17:14:30 rt 1.8.10.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c73c511498075980b252d720af7c351e855037e6]

INTEGRATION: CWS changefileheader (1.13.34); FILE MERGED 2008/03/31 17:14:30 rt 1.13.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [69c61535f0535f4e34be71f2bb5c9044271109ca]

INTEGRATION: CWS changefileheader (1.3.34); FILE MERGED 2008/03/28 16:43:29 rt 1.3.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [42f02586753504518f2098a86351906f02663d67]

INTEGRATION: CWS changefileheader (1.69.86); FILE MERGED 2008/04/01 12:36:10 thb 1.69.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:30 rt 1.69.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2f79ed8c766e2ece12b55381aeda063d942c8114]

INTEGRATION: CWS changefileheader (1.3.34); FILE MERGED 2008/04/01 15:04:02 thb 1.3.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:29 rt 1.3.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [368778afc6b97db3bccdd3a22c3612db1505d5a2]

INTEGRATION: CWS changefileheader (1.25.88); FILE MERGED 2008/04/01 12:36:10 thb 1.25.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:30 rt 1.25.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6d4e5a642350148080a7829cf74e86e0b622381e]

INTEGRATION: CWS changefileheader (1.41.46); FILE MERGED 2008/03/31 17:14:30 rt 1.41.46.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ccc1fd448afc0d36fc653c8e7f091999fed68f4f]

INTEGRATION: CWS changefileheader (1.93.32); FILE MERGED 2008/03/31 17:14:30 rt 1.93.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [da62412ed43540b1dc8de8268df57e2f10c194b6]

INTEGRATION: CWS changefileheader (1.2.66); FILE MERGED 2008/03/28 16:43:29 rt 1.2.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [74cfcc365e1c8537882508f8f0ed0dc35e45dcaa]

INTEGRATION: CWS changefileheader (1.9.328); FILE MERGED 2008/03/31 17:14:29 rt 1.9.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d074a43b32e8e3f41d0ce1398b2cd927e7be3a03]

INTEGRATION: CWS changefileheader (1.3.60); FILE MERGED 2008/04/01 15:04:02 thb 1.3.60.2: #i85898# Stripping all external header guards 2008/03/28 16:43:29 rt 1.3.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2d4e412af5ead89e347f9d8dbdf001c8f2110b0b]

INTEGRATION: CWS changefileheader (1.3.60); FILE MERGED 2008/03/28 16:43:29 rt 1.3.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fa5090b5c4dc39bd6927c3bbb3cf91a8f7104df3]

INTEGRATION: CWS changefileheader (1.15.300); FILE MERGED 2008/04/01 12:36:10 thb 1.15.300.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.15.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [07e5067e403db2904b8655cb832c375e3573a86e]

INTEGRATION: CWS changefileheader (1.2.74); FILE MERGED 2008/03/28 16:43:29 rt 1.2.74.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [413a0f20da55d9c8d7dcce31b168fd9445807ce4]

INTEGRATION: CWS changefileheader (1.32.46); FILE MERGED 2008/04/01 12:36:10 thb 1.32.46.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.32.46.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [70b0bed46d6df45cfc0eac52f7d427bcdd3e3c05]

INTEGRATION: CWS changefileheader (1.60.300); FILE MERGED 2008/04/01 12:36:10 thb 1.60.300.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.60.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b7167b253dddc879ce453affa8af4fdae2f9882f]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/03/28 16:43:29 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9a3297fd716a92c5476714d0dbb51a277bda608a]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:29 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d8324dbeb6aa843ff0212bdd9439d3e9c9e9e940]

INTEGRATION: CWS changefileheader (1.87.292); FILE MERGED 2008/04/01 15:30:06 thb 1.87.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:10 thb 1.87.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.87.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b87f92a19bfcf9fabfff48faecb0e0d64c65c77e]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:02 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:29 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d9afd178595d2b21c87c95ca0cca1e7e6d891c36]

INTEGRATION: CWS changefileheader (1.45.292); FILE MERGED 2008/04/01 15:30:06 thb 1.45.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:09 thb 1.45.292.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.45.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c3d55f78819be9f11a3f0eb32921c53a955493fb]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:02 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:28 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [05a143e38da56c7da8bd9847d160ba546cb966d4]

INTEGRATION: CWS changefileheader (1.123.44); FILE MERGED 2008/04/01 15:30:05 thb 1.123.44.3: #i85898# Stripping all external header guards 2008/04/01 12:36:09 thb 1.123.44.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.123.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f89989d6e62c8b221f7a9e296605385545f8316f]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:28 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [699ed930e440c5a26191f331dd9ad82497279157]

INTEGRATION: CWS changefileheader (1.46.34); FILE MERGED 2008/04/01 12:36:09 thb 1.46.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.46.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [69d51bf99b72ef80b3c6810bf9100064983ef526]

INTEGRATION: CWS changefileheader (1.50.34); FILE MERGED 2008/04/01 15:30:05 thb 1.50.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:09 thb 1.50.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.50.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ecc25aad8c2a80c7980017b6cd4e1debce2e16a8]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/03/28 16:43:28 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f54bd852dabe6edc50873794e4a61b642e600826]

INTEGRATION: CWS changefileheader (1.25.328); FILE MERGED 2008/04/01 15:30:05 thb 1.25.328.3: #i85898# Stripping all external header guards 2008/04/01 12:36:09 thb 1.25.328.2: #i85898# Stripping all external header guards 2008/03/31 17:14:29 rt 1.25.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a505d8d328bdabbd14a95250d84a7c76ea65f128]

INTEGRATION: CWS changefileheader (1.67.290); FILE MERGED 2008/04/01 12:36:09 thb 1.67.290.2: #i85898# Stripping all external header guards 2008/03/31 17:14:28 rt 1.67.290.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [89fd9788b1887d041f8dc76b67d39f9efca8e32d]

INTEGRATION: CWS changefileheader (1.9.60); FILE MERGED 2008/03/28 16:43:28 rt 1.9.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0870931f90f216dd2f410655f310565031cf2f9d]

INTEGRATION: CWS changefileheader (1.33.88); FILE MERGED 2008/04/01 12:36:08 thb 1.33.88.2: #i85898# Stripping all external header guards 2008/03/31 17:14:28 rt 1.33.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a2c29268acd29118600766e5039c799c78bf2732]

INTEGRATION: CWS changefileheader (1.4.60); FILE MERGED 2008/03/28 16:43:28 rt 1.4.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2827fe911e0ae98dd50eca4c4df053cf7b5e39ce]

INTEGRATION: CWS changefileheader (1.90.146); FILE MERGED 2008/04/01 15:30:04 thb 1.90.146.3: #i85898# Stripping all external header guards 2008/04/01 12:36:08 thb 1.90.146.2: #i85898# Stripping all external header guards 2008/03/31 17:14:28 rt 1.90.146.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1fae95823d3cb682307665f2996b5523e43d5a3b]

INTEGRATION: CWS changefileheader (1.4.60); FILE MERGED 2008/04/01 15:04:02 thb 1.4.60.2: #i85898# Stripping all external header guards 2008/03/28 16:43:28 rt 1.4.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0c184e176e091ecc21eb02a6878d6037051c2103]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/03/31 17:14:28 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [720d3f92d4b9620bf4270eb81b3284600caf52d2]

INTEGRATION: CWS changefileheader (1.4.60); FILE MERGED 2008/04/01 15:04:01 thb 1.4.60.2: #i85898# Stripping all external header guards 2008/03/28 16:43:28 rt 1.4.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [55aa6edaadae7b92611989cb4147d2c4e26d6da8]

INTEGRATION: CWS changefileheader (1.13.328); FILE MERGED 2008/03/31 17:14:28 rt 1.13.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [586f247397001732c34a5cab43d1d0f7ab903602]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:28 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [754d7b4287639ba7f35b2184b0c79633259209d5]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:01 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:28 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c71ecaeba46ba14e1a6cf93c347072a6878674f9]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/04/01 15:30:04 thb 1.10.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:27 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cade484f0c2e35150bae160151ebc6425978cc4c]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/04/01 15:30:04 thb 1.6.492.2: #i85898# Stripping all external header guards 2008/03/31 17:14:20 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [04ea30e91b2e0f28f4fc6ba0b3794c87773bdea5]

INTEGRATION: CWS changefileheader (1.18.20); FILE MERGED 2008/03/28 16:43:28 rt 1.18.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [be037b7337c41409933c8d2e84ec0f8c5af98570]

INTEGRATION: CWS changefileheader (1.8.136); FILE MERGED 2008/03/31 17:14:19 rt 1.8.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6500942d12dc27d75c7dddccc90bb476ffa2a916]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/04/01 15:30:04 thb 1.10.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:19 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [36e52a82ee083144b0141e029464762fe65d6161]

INTEGRATION: CWS changefileheader (1.7.320); FILE MERGED 2008/03/31 17:14:19 rt 1.7.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fa39a97b63190f15eb21d63c2746405b7b0d6b5e]

INTEGRATION: CWS changefileheader (1.32.34); FILE MERGED 2008/04/01 15:30:03 thb 1.32.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:19 rt 1.32.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [75ca75a499add40846f5a99356fd3e5a0441c2f4]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/03/31 17:14:19 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a98d5b849966cea0b8e3c83de4f1e0cebc1ec289]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:14:19 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8ee06c5421eb318f75eb42e0801cff287a551312]

INTEGRATION: CWS changefileheader (1.16.86); FILE MERGED 2008/04/01 15:30:03 thb 1.16.86.2: #i85898# Stripping all external header guards 2008/03/31 17:14:19 rt 1.16.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ba37603043e111673ef73bfdbf39a80cbde1da17]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:14:19 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4263362b99e5d2192371f28ffdd00ebbc49a19e5]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:14:19 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8050629d00e9c75301f82f48e27c414e5ca12c5f]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:14:18 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [19e4e6643efa48ac81b1983dfd88ae10dc5ee494]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/03/31 17:14:18 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [944d6e8f2c9ef8b116b65fb7309312c0ade61e1e]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:14:18 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ba993c02fb76821d33178583098f9883c5996130]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/03/28 16:43:25 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [46224b592c04591c5658ee2de1b2de08d95f2b9e]

INTEGRATION: CWS changefileheader (1.11.24); FILE MERGED 2008/04/01 12:36:08 thb 1.11.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:18 rt 1.11.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3c98eadf6ee23ea48fef01c1cdd14eb7efdb1a25]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:24 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9a7ca33acb8333665b8fc2038210304a85059ded]

INTEGRATION: CWS changefileheader (1.8.94); FILE MERGED 2008/03/31 17:14:18 rt 1.8.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fe098f9000b87970d66f83d11c41627512334a3d]

INTEGRATION: CWS changefileheader (1.27.34); FILE MERGED 2008/04/01 15:30:03 thb 1.27.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:18 rt 1.27.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e69cb384656bd118ac3716b926d1a15b92c02857]

INTEGRATION: CWS changefileheader (1.3.106); FILE MERGED 2008/04/01 15:04:01 thb 1.3.106.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.3.106.2: #i85898# Stripping all external header guards 2008/03/28 16:43:24 rt 1.3.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dbc94a516080a527733f00c8f182276035c26c1e]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/03/31 17:14:18 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [41a4fc3c167ac01dd13b2a9b67f80516f5add39c]

INTEGRATION: CWS changefileheader (1.8.126); FILE MERGED 2008/03/28 16:43:24 rt 1.8.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [42c8a3703142b0dc56cec13861fe6a5002db8e3a]

INTEGRATION: CWS changefileheader (1.6.492); FILE MERGED 2008/03/31 17:14:18 rt 1.6.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c65c1d83e2245bd0349818b3b880cad6a7c944c7]

INTEGRATION: CWS changefileheader (1.22.18); FILE MERGED 2008/04/01 15:04:01 thb 1.22.18.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.22.18.2: #i85898# Stripping all external header guards 2008/03/28 16:43:24 rt 1.22.18.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ff72a59c3e5705b7f3a8f184a0ead0c39d854031]

INTEGRATION: CWS changefileheader (1.2.66); FILE MERGED 2008/04/01 15:04:01 thb 1.2.66.2: #i85898# Stripping all external header guards 2008/03/28 16:43:24 rt 1.2.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bd9e6fc922ff24c9fca5e0dd6151bf7e4def1c05]

INTEGRATION: CWS changefileheader (1.6.240); FILE MERGED 2008/03/31 17:14:18 rt 1.6.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [86511e0802fe2f573db2db7d0fd661d2f3879682]

INTEGRATION: CWS changefileheader (1.11.34); FILE MERGED 2008/03/31 17:14:18 rt 1.11.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cef2b809456d6676847d93cdd85ec6cf58bb8afd]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/28 16:43:24 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ad6d0162ae46399b661ab87e999c62fa3c937f47]

INTEGRATION: CWS changefileheader (1.8.330); FILE MERGED 2008/04/01 15:30:03 thb 1.8.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:18 rt 1.8.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4b4a1cbdf1f7d0b29f95e4d1c3670e1947d2881d]

INTEGRATION: CWS changefileheader (1.3.86); FILE MERGED 2008/03/31 17:14:18 rt 1.3.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b0abdb5560dda20a343e0b9109f751c886453eb1]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/04/01 10:50:19 thb 1.2.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:24 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a7cd6e2bf2b311374f5d3e8c7e319b7ac98041c6]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/03/31 17:14:17 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a8c591d05b8c1098fa8998894113af34d1092725]

INTEGRATION: CWS changefileheader (1.7.34); FILE MERGED 2008/03/28 16:43:24 rt 1.7.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c20a3fe06d467b07056acff8f2fd08a431a2790d]

INTEGRATION: CWS changefileheader (1.29.34); FILE MERGED 2008/03/31 17:14:17 rt 1.29.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [57f286d845f8d6cd441536554f7bee7a84c3714c]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:43:24 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [65afe351dde5434694a5ecb367c635b4bb9d029f]

INTEGRATION: CWS changefileheader (1.3.96); FILE MERGED 2008/03/31 17:14:17 rt 1.3.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a98d7ee295cb92318385adb1480ec9996e48f0bb]

INTEGRATION: CWS changefileheader (1.6.32); FILE MERGED 2008/04/01 15:30:02 thb 1.6.32.2: #i85898# Stripping all external header guards 2008/03/31 17:14:17 rt 1.6.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3b52ba72007c783e5321b09dd6d32bf413e97284]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:43:24 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [09fb39a217ec37627fbc4405ddcd20b67fe8e603]

INTEGRATION: CWS changefileheader (1.30.32); FILE MERGED 2008/04/01 15:30:02 thb 1.30.32.2: #i85898# Stripping all external header guards 2008/03/31 17:14:17 rt 1.30.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [69388a3de90b6d2e4c3599162687faf2e6e54caf]

INTEGRATION: CWS changefileheader (1.55.32); FILE MERGED 2008/03/31 17:14:17 rt 1.55.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [32a75e575b9fd58c12e2143c5b05fb8d35a266b8]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/04/01 15:04:01 thb 1.7.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:24 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aea5d5e0757e681cd4c6861603b97597ec7b394c]

INTEGRATION: CWS changefileheader (1.21.32); FILE MERGED 2008/03/31 17:14:17 rt 1.21.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2a1a42495c2137753e139f49a10845cc16aff20d]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:24 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6ccf8854f9f338ffb4fff8a86307542295a77c1b]

INTEGRATION: CWS changefileheader (1.35.32); FILE MERGED 2008/03/31 17:14:17 rt 1.35.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [65c18fd64e997b6a379bea700f8fcf1ebb98f9ad]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:23 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [54092e9d2f6105b49c895584d72b0d26ad3ee546]

INTEGRATION: CWS changefileheader (1.56.32); FILE MERGED 2008/04/01 15:30:01 thb 1.56.32.2: #i85898# Stripping all external header guards 2008/03/31 17:14:16 rt 1.56.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0bd4f137af267d8963613a7d5973c31f8bb7942d]

INTEGRATION: CWS changefileheader (1.7.60); FILE MERGED 2008/03/28 16:43:23 rt 1.7.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [86f7d4b3cba43822c8254f9c4e622cdb1bb32147]

INTEGRATION: CWS changefileheader (1.5.66); FILE MERGED 2008/03/28 16:43:23 rt 1.5.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [87c5784f50b74ac8f6541161b90c53fa88f94f43]

INTEGRATION: CWS changefileheader (1.9.320); FILE MERGED 2008/03/31 17:14:16 rt 1.9.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [65ff068f2f27b69e1f52a9792b01e5c0ba034044]

INTEGRATION: CWS changefileheader (1.9.66); FILE MERGED 2008/03/28 16:43:23 rt 1.9.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7fb5d4720f29a446c2d0e2f0a38fb48e36677b0d]

INTEGRATION: CWS changefileheader (1.7.126); FILE MERGED 2008/03/28 16:43:23 rt 1.7.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2479b022ff497f3a8ab048e73dfd6d71e51b6151]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:14:16 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [989252a74e45d050c545dfd44252461170d91141]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:43:23 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [081b1471c983a31a611e4f9e529db3a4f18bbacd]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:14:16 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8a156399c8f0244c8748d9e8f3606da68b837268]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/04/01 15:04:01 thb 1.6.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:23 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [eddf33c6b91aa9b56cad5f086f3338ea09f5aa91]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/03/31 17:14:16 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7c93f49f95e3b323e9550d001b9f7145b5a4b290]

INTEGRATION: CWS changefileheader (1.32.78); FILE MERGED 2008/04/01 15:30:01 thb 1.32.78.2: #i85898# Stripping all external header guards 2008/03/31 17:14:16 rt 1.32.78.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8a722c758de320a24f83ebf7b8f09083d44f532d]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:23 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8b6a4a775bbd94031913904f1dc1914350a02938]

INTEGRATION: CWS changefileheader (1.8.320); FILE MERGED 2008/03/31 17:14:16 rt 1.8.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b418c0085f92ff68dee255d0501a0aa563d6b22e]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:00 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:23 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4ddc059bf6752850d1f6e7d2cef587bc21436a7d]

INTEGRATION: CWS changefileheader (1.28.88); FILE MERGED 2008/03/31 17:14:16 rt 1.28.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [48fa6e5a55c46ff3f960e39466c7bdc460d0112d]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:14:16 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1cf0c273c7e513372e9fbbebcdf3f83ee53de171]

INTEGRATION: CWS changefileheader (1.15.330); FILE MERGED 2008/04/01 15:30:01 thb 1.15.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:16 rt 1.15.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [29de16a82fa37451d94dd03c0885000733c9ed80]

INTEGRATION: CWS changefileheader (1.3.34); FILE MERGED 2008/04/01 15:04:00 thb 1.3.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:23 rt 1.3.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8b8001d316d357536b6eae1d1c177a7eb6da2e52]

INTEGRATION: CWS changefileheader (1.16.330); FILE MERGED 2008/04/01 15:30:01 thb 1.16.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:16 rt 1.16.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [88c1c262ca2c638a455888f274f62b9e69c547dc]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:00 thb 1.3.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:19 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:23 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b888b50d248ef2c6a731a9436bc559ed61aa9eec]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:22 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [edffe0237e3a12bcdd7b9c8e57a379706c05858e]

INTEGRATION: CWS changefileheader (1.6.328); FILE MERGED 2008/03/31 17:14:16 rt 1.6.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [68a367569abb0acadac45032f9ce9aa9cbf73f16]

INTEGRATION: CWS changefileheader (1.75.32); FILE MERGED 2008/04/01 15:30:00 thb 1.75.32.2: #i85898# Stripping all external header guards 2008/03/31 17:14:15 rt 1.75.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ed762ff4f92fcf72e8ef5468a5660304d783204f]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/03/28 16:43:22 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f9f0e973554bf9507d410eae4387a21b030ea0ae]

INTEGRATION: CWS changefileheader (1.2.20); FILE MERGED 2008/04/01 15:04:00 thb 1.2.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:22 rt 1.2.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [69bc0f4feac0bedf3b534393bc8185c129fe487d]

INTEGRATION: CWS changefileheader (1.13.330); FILE MERGED 2008/04/01 15:30:00 thb 1.13.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:15 rt 1.13.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [830a9e36177cfe83d8f941eba79da9436c05ee07]

INTEGRATION: CWS changefileheader (1.6.126); FILE MERGED 2008/03/28 16:43:22 rt 1.6.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6df46397ba37d664c52354523aba6024bbaeb028]

INTEGRATION: CWS changefileheader (1.7.34); FILE MERGED 2008/03/31 17:14:15 rt 1.7.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d5a0215ff7f3288403e009c2eae3ac938d05cf28]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:43:22 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cc6afa7fbfa939ab792991f1b50c43010044e692]

INTEGRATION: CWS changefileheader (1.29.34); FILE MERGED 2008/04/01 15:29:59 thb 1.29.34.2: #i85898# Stripping all external header guards 2008/03/31 17:14:15 rt 1.29.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9e53518e32fc4fc620171d3f2bf587903bc4c627]

INTEGRATION: CWS changefileheader (1.14.126); FILE MERGED 2008/04/01 10:50:18 thb 1.14.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:22 rt 1.14.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bb1e70c821332e0c55c951853a1976c2c0594531]

INTEGRATION: CWS changefileheader (1.3.96); FILE MERGED 2008/03/31 17:14:15 rt 1.3.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6a7c98da40a59ff15856effbe1f0f6514e271b2a]

INTEGRATION: CWS changefileheader (1.3.34); FILE MERGED 2008/03/28 16:43:22 rt 1.3.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [797e8471fc3e91a3562e48d4ee8751105792b03c]

INTEGRATION: CWS changefileheader (1.3.88); FILE MERGED 2008/03/31 17:14:15 rt 1.3.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e48dfc76de9b8f7a34b1b05638dca26677376769]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:04:00 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:22 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c9716af8a7522e9c406c4f878c6ef8bc1a7e943e]

INTEGRATION: CWS changefileheader (1.10.292); FILE MERGED 2008/03/31 17:14:15 rt 1.10.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5dc3519b8172ca7d5f5b8e48fd187b664d2a5d86]

INTEGRATION: CWS changefileheader (1.5.66); FILE MERGED 2008/03/28 16:43:22 rt 1.5.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [41ecdddfa4176e444ba29ce848e0300269941ad1]

INTEGRATION: CWS changefileheader (1.23.182); FILE MERGED 2008/03/31 17:14:15 rt 1.23.182.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b5d79a972ec21cbc5ab7b6a0152a90a1b6c648b5]

INTEGRATION: CWS changefileheader (1.7.20); FILE MERGED 2008/03/28 16:43:22 rt 1.7.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [84a8ce501ead2cd172858bad0953ec7f180eec41]

INTEGRATION: CWS changefileheader (1.4.96); FILE MERGED 2008/03/31 17:14:15 rt 1.4.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [134b7c24a07d46e1a9ac1ad80b37df48c34bdcd3]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/03/28 16:43:22 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e087f21e1b000f2f2683479e65a03562934bbf00]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/03/31 17:14:15 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4050e2f7cdab729bf15dfdd298210b0593daa49e]

INTEGRATION: CWS changefileheader (1.7.34); FILE MERGED 2008/03/28 16:43:22 rt 1.7.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [762f2ebe7e42193d9b7085e0ef3eaffd640a37ef]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/04/01 15:29:59 thb 1.11.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:15 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b872cdf9d3f395b1e705de0bd4025d60b923e769]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/03/28 16:43:21 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [45acd97c1d07330e84fbc96cb3e80a711c6f80ff]

INTEGRATION: CWS changefileheader (1.21.300); FILE MERGED 2008/04/01 15:29:59 thb 1.21.300.2: #i85898# Stripping all external header guards 2008/03/31 17:14:14 rt 1.21.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c928f58d710ea1bb36a1bde77f0e07583f61139d]

INTEGRATION: CWS changefileheader (1.11.20); FILE MERGED 2008/03/28 16:43:21 rt 1.11.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [07c5526b96c361ff81834db560e7c111b49e5f8b]

INTEGRATION: CWS changefileheader (1.11.34); FILE MERGED 2008/03/31 17:14:14 rt 1.11.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a04dd0db6774b8014fe8627a8bdfc351516356fd]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/03/28 16:43:21 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fcbbcaa3aaccdd0820867f43dfcff5374c8ca991]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:29:59 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:14 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f54881610a2eea7a989c538ebc9f5a9934d4efbb]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:43:21 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9081671546c0d80bd9069b5917261ab8f1eb548f]

INTEGRATION: CWS changefileheader (1.10.96); FILE MERGED 2008/03/31 17:14:14 rt 1.10.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6ed0b536469ac9f12f0fcfdd0f4d59b9cd086404]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:04:00 thb 1.3.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:18 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:21 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [63d8473a23e6c14ebda198e6305a7d6d18ea1da0]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/03/31 17:14:14 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c43adc1cd3d9a1af9e5bd171de45924530c81c7e]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:21 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2e37e4c03a16ef7f0207f3142f168e571cf3600f]

INTEGRATION: CWS changefileheader (1.4.492); FILE MERGED 2008/04/01 12:36:08 thb 1.4.492.2: #i85898# Stripping all external header guards 2008/03/31 17:14:14 rt 1.4.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f7192c02bee24de2ddcd714d39ffe1788ca42a29]

INTEGRATION: CWS changefileheader (1.2.70); FILE MERGED 2008/03/28 16:43:21 rt 1.2.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [08e0e5024afd5334c7231efad7724bca531343b2]

INTEGRATION: CWS changefileheader (1.25.34); FILE MERGED 2008/03/31 17:14:14 rt 1.25.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [db490e2199edf848235aa05593259196a10bc5b3]

INTEGRATION: CWS changefileheader (1.8.34); FILE MERGED 2008/04/01 15:04:00 thb 1.8.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:21 rt 1.8.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [790a4826bd76d1ebd79a7ce6574cc990ffa2f2eb]

INTEGRATION: CWS changefileheader (1.3.96); FILE MERGED 2008/03/31 17:14:14 rt 1.3.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [685f889e071ad356528e73e3b7b293e66828e298]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 10:50:18 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:21 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a5ab38f2fae80b89d4fe2a1e4edaf797f9a065ff]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:14:08 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [998dc52d88a534d0ca541dc89c4c2bf54b2dabb4]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/03/28 16:43:21 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [28e783f7482844fbd2467fae1ae7af4201a7c42a]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/04/01 10:50:18 thb 1.5.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:21 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0161f66fae656c43c7f49ab6d920376417a926f7]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/03/28 16:43:20 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4c0bb7b72a0616a138b1a5f12dff60db21a0eb4f]

INTEGRATION: CWS changefileheader (1.4.34); FILE MERGED 2008/04/01 15:03:59 thb 1.4.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:18 thb 1.4.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:20 rt 1.4.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a9cfa5603ca3c6d2c6bf70c856f5cd9d5c2ffbb4]

INTEGRATION: CWS changefileheader (1.6.20); FILE MERGED 2008/04/01 15:03:59 thb 1.6.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:20 rt 1.6.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9c613a033cf0b3f46f9e2e14673b2f0b4110f358]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:43:20 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c4bb9e86f6d98227cc549e00bb226c8c235ed02d]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:20 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3d38c57a15417bd32d5e5137988568d1a1c2bd5b]

INTEGRATION: CWS changefileheader (1.57.34); FILE MERGED 2008/03/31 17:14:05 rt 1.57.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f3f9878ce39d7ef8fd3b69ac02c498eccb913062]

INTEGRATION: CWS changefileheader (1.3.106); FILE MERGED 2008/04/01 15:03:59 thb 1.3.106.3: #i85898# Stripping all external header guards 2008/04/01 10:50:18 thb 1.3.106.2: #i85898# Stripping all external header guards 2008/03/28 16:43:20 rt 1.3.106.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c7715e4b3fdb3ad5227dcf0a3d50b6e1228f4c69]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:14:05 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ecd18ccfb546c7ba458a00ed5bc52450fbcf2c49]

INTEGRATION: CWS changefileheader (1.5.44); FILE MERGED 2008/04/01 15:03:59 thb 1.5.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:18 thb 1.5.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:20 rt 1.5.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f766cb8603ab80bac293b23060cde8208bac7592]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:58 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:05 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [41dccd93330eafb8f7bcfafa035f9360cf8769d2]

INTEGRATION: CWS changefileheader (1.4.690); FILE MERGED 2008/03/31 17:14:05 rt 1.4.690.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ceb7dfa6e0949b52d6f044cb526773fee40cdec0]

INTEGRATION: CWS changefileheader (1.5.24); FILE MERGED 2008/04/01 15:29:58 thb 1.5.24.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.5.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7139e61561ca05c86a2be2656db83afb43c969e5]

INTEGRATION: CWS changefileheader (1.5.20); FILE MERGED 2008/03/28 16:43:19 rt 1.5.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8694a10475fdf5ce15a7888f202dd94eacac2e00]

INTEGRATION: CWS changefileheader (1.4.94); FILE MERGED 2008/04/01 12:36:06 thb 1.4.94.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.4.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [18d1154f2132f46c320ff23770e7c14fc11dab9e]

INTEGRATION: CWS changefileheader (1.4.34); FILE MERGED 2008/03/28 16:43:19 rt 1.4.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d90158151a179d959792b1f81d0dfd18732b3345]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:14:04 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [54919f35dc52b445f5f0f0d536f1484be8fcf1e9]

INTEGRATION: CWS changefileheader (1.7.20); FILE MERGED 2008/03/28 16:43:19 rt 1.7.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [71973946fe3e51b5a460f7e5acd5b11eb35ce4eb]

INTEGRATION: CWS changefileheader (1.5.240); FILE MERGED 2008/04/01 15:29:57 thb 1.5.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:05 thb 1.5.240.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.5.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bdd412cdcbbd4b2eb6b39fc7f70ac31aa1e8f3cf]

INTEGRATION: CWS changefileheader (1.32.32); FILE MERGED 2008/04/01 15:29:57 thb 1.32.32.3: #i85898# Stripping all external header guards 2008/04/01 12:36:05 thb 1.32.32.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.32.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [26b6ec4947af8b319684206e5318d45540db58b8]

INTEGRATION: CWS changefileheader (1.3.126); FILE MERGED 2008/03/28 16:43:19 rt 1.3.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e64f333a86d7603fd3ec7eeaf027b7c4d1c14ea2]

INTEGRATION: CWS changefileheader (1.10.158); FILE MERGED 2008/04/01 15:29:57 thb 1.10.158.3: #i85898# Stripping all external header guards 2008/04/01 12:36:05 thb 1.10.158.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.10.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5abf2540c76a3c0eef3dbe3bb25429d5aea14a7f]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:19 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ac31329955370c323b74101ae19df1987687113b]

INTEGRATION: CWS changefileheader (1.16.158); FILE MERGED 2008/03/31 17:14:04 rt 1.16.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a747bb4d974af2e27b2ba49785da01ad2d3603c2]

INTEGRATION: CWS changefileheader (1.3.92); FILE MERGED 2008/03/28 16:43:19 rt 1.3.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0848c699029eec601b716e42d6ea7f79d8d3935e]

INTEGRATION: CWS changefileheader (1.3.146); FILE MERGED 2008/03/31 17:14:04 rt 1.3.146.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fd26e593db95a8b5b8649628734a1f8e9aa8b917]

INTEGRATION: CWS changefileheader (1.3.74); FILE MERGED 2008/03/28 16:43:19 rt 1.3.74.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7534369907d640b63b6f03adb9a45f7176d343ea]

INTEGRATION: CWS changefileheader (1.6.176); FILE MERGED 2008/04/01 15:29:57 thb 1.6.176.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.6.176.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [72555f57b3f94cd9a7affe1f0eb4ad5a7e48a42e]

INTEGRATION: CWS changefileheader (1.6.20); FILE MERGED 2008/04/01 15:03:59 thb 1.6.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:18 thb 1.6.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:18 rt 1.6.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [477714bd61fa43d7f4ed8cdb642daf3047915dce]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/04/01 15:29:57 thb 1.4.330.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fe146f249ff21cacf2625d518ff599cc8c5d94df]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:56 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:05 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [810ff70c8c90b56b3735ba285adc4127710f5640]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:18 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b9501c673ef91e7e855393b7fb9c579d2e3ff757]

INTEGRATION: CWS changefileheader (1.4.92); FILE MERGED 2008/04/01 10:50:18 thb 1.4.92.2: #i85898# Stripping all external header guards 2008/03/28 16:43:18 rt 1.4.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c31bf4ef3a642e6e636dc01c3b032b99ec81852]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:56 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:14:04 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0276e6c1c247d8f7932656a3e9c2006f463c669d]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:18 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [18c46c2b4ce660de30c43d060eb5eede7fba9649]

INTEGRATION: CWS changefileheader (1.22.32); FILE MERGED 2008/04/01 15:29:55 thb 1.22.32.2: #i85898# Stripping all external header guards 2008/03/31 17:13:54 rt 1.22.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [165f823c730c56c004b3cf3879c2fdf4934a0d98]

INTEGRATION: CWS changefileheader (1.4.20); FILE MERGED 2008/03/28 16:43:18 rt 1.4.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7fdbfc59fa622f0b4867c5e0272aa09fcafa9e51]

INTEGRATION: CWS changefileheader (1.11.88); FILE MERGED 2008/03/31 17:13:54 rt 1.11.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ac641864f58ee028f189f5411025188df893107b]

INTEGRATION: CWS changefileheader (1.17.34); FILE MERGED 2008/03/31 17:13:54 rt 1.17.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [314edf5b1c4dad358246a400cfb599553adb6132]

INTEGRATION: CWS changefileheader (1.13.330); FILE MERGED 2008/03/31 17:13:54 rt 1.13.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dd59441c1f2346a4e92ca506211741d296008717]

INTEGRATION: CWS changefileheader (1.22.86); FILE MERGED 2008/04/01 15:29:55 thb 1.22.86.2: #i85898# Stripping all external header guards 2008/03/31 17:13:54 rt 1.22.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f9fc30438e5b90fe8cd734c532ba30ddc2847f06]

INTEGRATION: CWS changefileheader (1.6.20); FILE MERGED 2008/04/01 10:50:18 thb 1.6.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:18 rt 1.6.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3e262206b5828f34b3144971e08df554d46a387e]

INTEGRATION: CWS changefileheader (1.29.176); FILE MERGED 2008/04/01 15:29:54 thb 1.29.176.2: #i85898# Stripping all external header guards 2008/03/31 17:13:54 rt 1.29.176.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [34f92f855ebb345302d09d96b872e83f6ddc5076]

INTEGRATION: CWS changefileheader (1.39.84); FILE MERGED 2008/04/01 15:29:54 thb 1.39.84.2: #i85898# Stripping all external header guards 2008/03/31 17:13:54 rt 1.39.84.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [89eee1d406fc1709cb52edfa4b197d1e7faeee5e]

INTEGRATION: CWS changefileheader (1.24.34); FILE MERGED 2008/03/31 17:13:54 rt 1.24.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5be7e5d90a0ea59b9dcd569259935e785e6ede91]

INTEGRATION: CWS changefileheader (1.3.66); FILE MERGED 2008/03/28 16:43:17 rt 1.3.66.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1a20a12c75fe5610052dd0d819f45e2b06a4778d]

INTEGRATION: CWS changefileheader (1.11.300); FILE MERGED 2008/03/31 17:13:53 rt 1.11.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [152a85571675b97bbd59200885b507b5d4edb8d1]

INTEGRATION: CWS changefileheader (1.6.44); FILE MERGED 2008/04/01 10:50:17 thb 1.6.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:17 rt 1.6.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [295e642a187ee887cb7b44b4d5775237f47f58e0]

INTEGRATION: CWS changefileheader (1.17.24); FILE MERGED 2008/03/31 17:13:53 rt 1.17.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [df64df9443e36a2c009f6051d3ddf7a687000abb]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:17 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f6e6f652c3c2f6fc088fac6ae398b77fe82bf2e0]

INTEGRATION: CWS changefileheader (1.7.88); FILE MERGED 2008/04/01 15:29:54 thb 1.7.88.2: #i85898# Stripping all external header guards 2008/03/31 17:13:53 rt 1.7.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6e49d135037a7617c32e0c65682769cd163f52dc]

INTEGRATION: CWS changefileheader (1.5.92); FILE MERGED 2008/04/01 15:03:58 thb 1.5.92.2: #i85898# Stripping all external header guards 2008/03/28 16:43:17 rt 1.5.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [215db52aba96d437929ffcc690134447600f9c40]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/03/31 17:13:53 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [70201fd913ec40dfd4f2a86e6f27dd9e88257b24]

INTEGRATION: CWS changefileheader (1.10.330); FILE MERGED 2008/04/01 15:29:53 thb 1.10.330.3: #i85898# Stripping all external header guards 2008/04/01 12:36:05 thb 1.10.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:53 rt 1.10.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3085698ab57f7029d509be79aa2caa6477aac62a]

INTEGRATION: CWS changefileheader (1.7.24); FILE MERGED 2008/03/31 17:13:53 rt 1.7.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b0c2b0fdf76e11d1f0bce6d8f4d3bd65e355c818]

INTEGRATION: CWS changefileheader (1.13.140); FILE MERGED 2008/04/01 15:29:53 thb 1.13.140.2: #i85898# Stripping all external header guards 2008/03/31 17:13:53 rt 1.13.140.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a224a2364b1f0f0e31e8b178777e25f752ba0b5a]

INTEGRATION: CWS changefileheader (1.4.92); FILE MERGED 2008/03/28 16:43:17 rt 1.4.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [84bccdea37870472bc499940913bdc934f862456]

INTEGRATION: CWS changefileheader (1.11.86); FILE MERGED 2008/03/31 17:13:53 rt 1.11.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dfb26ce5e86035764c84b58d22ae162f7febc625]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/03/28 16:43:17 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d5ad44035cff3399aa9d326c065cc68fce2368ee]

INTEGRATION: CWS changefileheader (1.33.302); FILE MERGED 2008/03/31 17:13:53 rt 1.33.302.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [79d1b1d1a1059559c698c41b4b4631fd266fa09b]

INTEGRATION: CWS changefileheader (1.3.20); FILE MERGED 2008/04/01 10:50:17 thb 1.3.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:16 rt 1.3.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7b61d60da574f787cc2285beb081507669a3bc41]

INTEGRATION: CWS changefileheader (1.5.492); FILE MERGED 2008/03/31 17:13:53 rt 1.5.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c7bcc17c78e516f881e4f3c783f9ed71927a7e60]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:16 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e34dec4a95be045c29ccf32dfa41fa248442c54d]

INTEGRATION: CWS changefileheader (1.9.88); FILE MERGED 2008/03/31 17:13:53 rt 1.9.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [09f349fde5aea156a98d445d5fe5fdd6a799f312]

INTEGRATION: CWS changefileheader (1.4.92); FILE MERGED 2008/04/01 15:03:58 thb 1.4.92.2: #i85898# Stripping all external header guards 2008/03/28 16:43:15 rt 1.4.92.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3d32673b141251a4b5d4a98fca7426808b494d3d]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/03/31 17:13:53 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2073e1c1fc28b5bb59c4959127efaf48b1b51319]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:15 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2794ce0a51dbc255b055758cf0f704108729b866]

INTEGRATION: CWS changefileheader (1.10.78); FILE MERGED 2008/03/31 17:13:52 rt 1.10.78.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [40a0b11940753c3daf3bf50bb2005ee0485ec6ec]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/03/28 16:43:15 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9f738788ec7e3fcc53005f9469c544c1bd3f348e]

INTEGRATION: CWS changefileheader (1.23.32); FILE MERGED 2008/03/31 17:13:52 rt 1.23.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [794ea942c9997f9c097d2e73cca1df682bc37117]

INTEGRATION: CWS changefileheader (1.13.100); FILE MERGED 2008/04/01 15:29:53 thb 1.13.100.2: #i85898# Stripping all external header guards 2008/03/31 17:13:52 rt 1.13.100.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1dc85c6672c5ecc064d934273de1de180c217090]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:43:15 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [72637c300f35be7b2f8d7072831a6db130c5c28a]

INTEGRATION: CWS changefileheader (1.22.88); FILE MERGED 2008/04/01 15:29:52 thb 1.22.88.2: #i85898# Stripping all external header guards 2008/03/31 17:13:52 rt 1.22.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [494c9f5ae67e7a6f6f760a4d4cfee4c681da7ddb]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:03:58 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:17 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:15 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c64a7fa0823f960e07cd5746c03828e34ec85c80]

INTEGRATION: CWS changefileheader (1.54.34); FILE MERGED 2008/04/01 15:29:52 thb 1.54.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:04 thb 1.54.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:52 rt 1.54.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c443707f09996b5a2e51618e124734f80caf233e]

INTEGRATION: CWS changefileheader (1.14.78); FILE MERGED 2008/03/31 17:13:52 rt 1.14.78.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [311b3fbb68c758f1ff2dfe59b5539e09b22aaa04]

INTEGRATION: CWS changefileheader (1.54.46); FILE MERGED 2008/04/01 15:29:52 thb 1.54.46.3: #i85898# Stripping all external header guards 2008/04/01 12:36:04 thb 1.54.46.2: #i85898# Stripping all external header guards 2008/03/31 17:13:52 rt 1.54.46.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f2ad90bf43cf15efb275335ac75b27783ce3c6f2]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 10:50:17 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:15 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [42bdea85aad9f05bb83d67e0726155c48168829c]

INTEGRATION: CWS changefileheader (1.9.492); FILE MERGED 2008/03/31 17:13:52 rt 1.9.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f4263b0b9051dd6e7f7b0dec4914698cebf13678]

INTEGRATION: CWS changefileheader (1.23.86); FILE MERGED 2008/04/01 15:29:51 thb 1.23.86.3: #i85898# Stripping all external header guards 2008/04/01 12:36:04 thb 1.23.86.2: #i85898# Stripping all external header guards 2008/03/31 17:13:52 rt 1.23.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [374ecd3415347299162ef830acf590ea5b21b711]

INTEGRATION: CWS changefileheader (1.5.74); FILE MERGED 2008/04/01 15:03:58 thb 1.5.74.3: #i85898# Stripping all external header guards 2008/04/01 10:50:17 thb 1.5.74.2: #i85898# Stripping all external header guards 2008/03/28 16:43:15 rt 1.5.74.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [14c200a39f10c4e63564b7cb6ba99597e17d5c62]

INTEGRATION: CWS changefileheader (1.11.328); FILE MERGED 2008/03/31 17:13:52 rt 1.11.328.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ec19854f68b2dd9938fb97c70171658147d2314b]

INTEGRATION: CWS changefileheader (1.7.74); FILE MERGED 2008/04/01 15:03:58 thb 1.7.74.3: #i85898# Stripping all external header guards 2008/04/01 10:50:17 thb 1.7.74.2: #i85898# Stripping all external header guards 2008/03/28 16:43:15 rt 1.7.74.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f49f696bcf39d3c0c39543fa229803ce7fab3b8b]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 10:50:17 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:15 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [710087cc769d1d5cccfb91e24216fe0afe111764]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/04/01 15:29:51 thb 1.12.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:52 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7bce14ec8bdf55b762755f757cf5d68d6cf47790]

INTEGRATION: CWS changefileheader (1.9.330); FILE MERGED 2008/03/31 17:13:52 rt 1.9.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5f971e1162b0c2f73147188f9fce635a47fde413]

INTEGRATION: CWS changefileheader (1.12.330); FILE MERGED 2008/03/31 17:13:52 rt 1.12.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fea16e8ca28e115a4b9075489addb71d044c3c00]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:03:58 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:17 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6bb3c3c6a9fd4d103efda1b62826792a1e3d6e51]

INTEGRATION: CWS changefileheader (1.12.136); FILE MERGED 2008/03/31 17:13:51 rt 1.12.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1405c96bf903a76c5d965ecb689b58ed58b28411]

INTEGRATION: CWS changefileheader (1.7.94); FILE MERGED 2008/04/01 15:03:58 thb 1.7.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.7.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.7.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7a2bba0e454a3211ef48bea86361f62f14c13477]

INTEGRATION: CWS changefileheader (1.16.134); FILE MERGED 2008/03/31 17:13:51 rt 1.16.134.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0ba1eac6db2c1904bb154e4b426df4fd7a43fa10]

INTEGRATION: CWS changefileheader (1.3.70); FILE MERGED 2008/04/01 15:03:57 thb 1.3.70.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.3.70.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.3.70.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [76f124b5f984eb1ed501c13e7addecad0aac58e9]

INTEGRATION: CWS changefileheader (1.22.134); FILE MERGED 2008/03/31 17:13:51 rt 1.22.134.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f6902eac180becaa9a09a8d4b6260968883b977f]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:03:57 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [484b62bb7460334d6efac9494c9913ce7d970145]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 12:36:03 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:51 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [101afdf15ce56fa805337dac40583f382224ac73]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/04/01 15:03:57 thb 1.6.34.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.6.34.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [599667be0daae2e5c8dd69b8dc98060ff07f6e05]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:13:51 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9c47f4067afc88059828205e1f1f70a3c7779a0b]

INTEGRATION: CWS changefileheader (1.13.32); FILE MERGED 2008/04/01 15:03:57 thb 1.13.32.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.13.32.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.13.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b2b9ef68adc8f01be10846deabdc672d4ea87fc1]

INTEGRATION: CWS changefileheader (1.86.34); FILE MERGED 2008/04/01 15:29:50 thb 1.86.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:51 rt 1.86.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9513312120225c1a3f8fa68c50eac35b2842da9e]

INTEGRATION: CWS changefileheader (1.6.74); FILE MERGED 2008/04/01 15:03:57 thb 1.6.74.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.6.74.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.6.74.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [886cd858e5299699e86a01add510c3b66cd1c492]

INTEGRATION: CWS changefileheader (1.41.88); FILE MERGED 2008/03/31 17:13:51 rt 1.41.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3f98f527e5d1969ebeb2578a9abb20bb3a9d12b4]

INTEGRATION: CWS changefileheader (1.14.20); FILE MERGED 2008/04/01 15:03:57 thb 1.14.20.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.14.20.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.14.20.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [eb453ec39d232669901cc31b75b208bdc5e7ce55]

INTEGRATION: CWS changefileheader (1.51.88); FILE MERGED 2008/03/31 17:13:51 rt 1.51.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9eb52aa5d160589ed1ee47dac47791f5900914dd]

INTEGRATION: CWS changefileheader (1.8.44); FILE MERGED 2008/04/01 15:03:57 thb 1.8.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.8.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.8.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d7632932878872196795d0cdd9f41d0a9d329eff]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/04/01 15:29:50 thb 1.11.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:51 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5066ed752e23a8be756873d5e3bdd6054f4fcc5f]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:03:57 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2d54e90601e18815a977d1dd068cd59409578051]

INTEGRATION: CWS changefileheader (1.14.330); FILE MERGED 2008/03/31 17:13:51 rt 1.14.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ff7acb27a939adb424d73034a6db6fba04785771]

INTEGRATION: CWS changefileheader (1.6.94); FILE MERGED 2008/04/01 15:03:56 thb 1.6.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.6.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:14 rt 1.6.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d57a28523672ad48e8064ab6112d659b88648cca]

INTEGRATION: CWS changefileheader (1.31.140); FILE MERGED 2008/04/01 15:29:50 thb 1.31.140.2: #i85898# Stripping all external header guards 2008/03/31 17:13:50 rt 1.31.140.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8b4566cdef87969aad30f2e67a61df4c5ee501a2]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:03:56 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:13 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0cd7cb7c7aee7f2939041410a3ec8c90379ccba7]

INTEGRATION: CWS changefileheader (1.21.34); FILE MERGED 2008/03/31 17:13:50 rt 1.21.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a452d4290bf2bfd82f509a3a4c787b3fe28867b1]

INTEGRATION: CWS changefileheader (1.3.116); FILE MERGED 2008/03/28 16:43:13 rt 1.3.116.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [87c66f420b47bbe3197eba70d1073469b51b72ff]

INTEGRATION: CWS changefileheader (1.40.86); FILE MERGED 2008/03/31 17:13:50 rt 1.40.86.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6e514dba9c866999ed77062b52fb14818fff47f4]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/04/01 15:03:56 thb 1.4.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.4.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:13 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [749361a806a47034691f0f331a1963d0b71107b9]

INTEGRATION: CWS changefileheader (1.71.34); FILE MERGED 2008/04/01 15:29:49 thb 1.71.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:50 rt 1.71.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [79d93993310a9fa42bdb61ddea42ae49ae4af973]

INTEGRATION: CWS changefileheader (1.9.44); FILE MERGED 2008/04/01 15:03:56 thb 1.9.44.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.9.44.2: #i85898# Stripping all external header guards 2008/03/28 16:43:13 rt 1.9.44.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c6a9d7ee208a81d4b851741818ce1eb240bad4e9]

INTEGRATION: CWS changefileheader (1.24.300); FILE MERGED 2008/03/31 17:13:50 rt 1.24.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [08bcd95062cd41311d6bfcf0962d4caee99a3a9a]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:03:56 thb 1.3.94.3: #i85898# Stripping all external header guards 2008/04/01 10:50:16 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:13 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ad0e40a8306ec7ed3d86a4648d1f9f2ec0d2fcbc]

INTEGRATION: CWS changefileheader (1.20.34); FILE MERGED 2008/03/31 17:13:50 rt 1.20.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a7f74e38dce9531ecc3684e6b814b314f6d2772a]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/03/28 16:43:13 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b279fda273f772bf2851ff79ae878252f6795725]

INTEGRATION: CWS changefileheader (1.8.240); FILE MERGED 2008/03/31 17:13:50 rt 1.8.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [68f1efca24168d862429709d5b3056533509601c]

INTEGRATION: CWS changefileheader (1.24.34); FILE MERGED 2008/04/01 15:29:49 thb 1.24.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:50 rt 1.24.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c6b68d0b9fca2a11cce531ea2f6a3821c81ff319]

INTEGRATION: CWS changefileheader (1.4.60); FILE MERGED 2008/03/28 16:43:13 rt 1.4.60.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [eff52e2671ed5cc6d33f84f4c850fece8fcdea6a]

INTEGRATION: CWS changefileheader (1.9.146); FILE MERGED 2008/04/01 12:36:03 thb 1.9.146.2: #i85898# Stripping all external header guards 2008/03/31 17:13:50 rt 1.9.146.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a899d35b420cf3ba191a255f0958ed1504e7239e]

INTEGRATION: CWS changefileheader (1.3.12); FILE MERGED 2008/03/28 16:43:13 rt 1.3.12.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5e8ee26c7fe2b0d3ef5f3ce4dc0db491723ea265]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/03/28 16:43:13 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [75b169d5ffe22357faf2b7f99309fd758df8e401]

INTEGRATION: CWS changefileheader (1.26.34); FILE MERGED 2008/03/31 17:13:50 rt 1.26.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1cde020e79b9c6bc74ec0a1ab77b6be2d0dbf8cb]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:03:56 thb 1.2.126.3: #i85898# Stripping all external header guards 2008/04/01 10:50:15 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:13 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f67d19498da8fd31901ae1ecc3b7fee14e4e54b4]

INTEGRATION: CWS changefileheader (1.31.32); FILE MERGED 2008/03/31 17:13:50 rt 1.31.32.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8ac9a077e267aef4b69f5db0766c723f5e805b36]

INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED 2008/04/01 15:03:55 thb 1.3.94.2: #i85898# Stripping all external header guards 2008/03/28 16:43:13 rt 1.3.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9016ff0b6982d1bae25114d70c93d1038d5923f1]

INTEGRATION: CWS changefileheader (1.30.10); FILE MERGED 2008/03/31 17:13:50 rt 1.30.10.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f038f39cd78a859cbdaff70786f6fc7fda5028cc]

INTEGRATION: CWS changefileheader (1.32.34); FILE MERGED 2008/04/01 15:29:49 thb 1.32.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:49 rt 1.32.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e4b63ee6915e86f052b07adb031ea78ec02e1087]

INTEGRATION: CWS changefileheader (1.2.126); FILE MERGED 2008/04/01 15:03:55 thb 1.2.126.2: #i85898# Stripping all external header guards 2008/03/28 16:43:13 rt 1.2.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1eeddba113d34abe3d163e159426192c05c6f146]

INTEGRATION: CWS changefileheader (1.41.34); FILE MERGED 2008/04/01 15:29:49 thb 1.41.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:49 rt 1.41.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ba28aaa56e0fa3d1737cc689cc8d342756188db1]

INTEGRATION: CWS changefileheader (1.11.28); FILE MERGED 2008/03/28 16:43:12 rt 1.11.28.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [16002238a00d946fcfea9f79877b5949c0f13d20]

INTEGRATION: CWS changefileheader (1.10.34); FILE MERGED 2008/03/31 17:13:49 rt 1.10.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c906eaa90b6bb3ba9081b584c012b26ff2cdb94a]

INTEGRATION: CWS changefileheader (1.2.94); FILE MERGED 2008/03/28 16:43:12 rt 1.2.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [685138ff3c6bccf59aca169e46289c9e2ba3b499]

INTEGRATION: CWS changefileheader (1.3.492); FILE MERGED 2008/03/31 17:13:49 rt 1.3.492.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6ff780841e0fae955b7c17f169f91e8fd96d40f3]

INTEGRATION: CWS changefileheader (1.5.94); FILE MERGED 2008/03/28 16:43:12 rt 1.5.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8a60c63887f34df8121b3e1a52970d53a23dbc11]

INTEGRATION: CWS changefileheader (1.18.88); FILE MERGED 2008/04/01 12:36:03 thb 1.18.88.2: #i85898# Stripping all external header guards 2008/03/31 17:13:49 rt 1.18.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6f92c1a6dc9edda09f54c7a780aa244a246c82c1]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/03/28 16:43:12 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c14d95516a2dd17924e11e9d0511d8d6e030129]

INTEGRATION: CWS changefileheader (1.24.88); FILE MERGED 2008/04/01 15:29:48 thb 1.24.88.2: #i85898# Stripping all external header guards 2008/03/31 17:13:49 rt 1.24.88.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1b7ee2943b259829463bd2147cc22a32e2d8a14f]

INTEGRATION: CWS changefileheader (1.2.170); FILE MERGED 2008/03/28 16:43:12 rt 1.2.170.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [09e49af527a79557dff9edc1277bdd1d3164ba4b]

INTEGRATION: CWS changefileheader (1.21.240); FILE MERGED 2008/03/31 17:13:49 rt 1.21.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [eae73dc90635f81b0ff026c3e5bebd93c67bb10f]

INTEGRATION: CWS changefileheader (1.2.156); FILE MERGED 2008/03/28 16:43:11 rt 1.2.156.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3201a0e9c6073145c38f51c19300d8dea862b9dd]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:13:49 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8bcb1e817d82da0bb67c45e747bbcbf93b9b590f]

INTEGRATION: CWS changefileheader (1.5.126); FILE MERGED 2008/03/28 16:43:11 rt 1.5.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b827a89dec1ef5d3798920cb307081b101c72d8c]

INTEGRATION: CWS changefileheader (1.9.700); FILE MERGED 2008/03/31 17:13:49 rt 1.9.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e350923c7365227e7a9b02ebdfd19bf0b1f0c509]

INTEGRATION: CWS changefileheader (1.4.126); FILE MERGED 2008/03/28 16:43:11 rt 1.4.126.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a4e23fbdc784dfffbec4872dec471305d1e59b8d]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:13:49 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [419abe972caeee515c55b0944216d8705b484681]

INTEGRATION: CWS changefileheader (1.39.34); FILE MERGED 2008/03/31 17:13:48 rt 1.39.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8632a575016d5dd2b076090ad467a7db16f84036]

INTEGRATION: CWS changefileheader (1.6.78); FILE MERGED 2008/03/31 17:13:48 rt 1.6.78.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8aaf7c5051b2833d7d54bd6905619a5b07247982]

INTEGRATION: CWS changefileheader (1.5.554); FILE MERGED 2008/03/31 17:13:48 rt 1.5.554.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b128ab9748558e92df023889402d39d5390b3845]

INTEGRATION: CWS changefileheader (1.4.554); FILE MERGED 2008/03/31 17:13:48 rt 1.4.554.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8ee8936f8eb9947b7a371d84e1f8d0c1dfec8d89]

INTEGRATION: CWS changefileheader (1.10.338); FILE MERGED 2008/03/31 17:13:48 rt 1.10.338.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cffc86ab34755e16f41247c011676d5aa7f8f31b]

INTEGRATION: CWS changefileheader (1.8.554); FILE MERGED 2008/03/31 17:13:47 rt 1.8.554.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ad068fd13bfba32a8fa90330b682d010fa9960d0]

INTEGRATION: CWS changefileheader (1.13.554); FILE MERGED 2008/03/31 17:13:47 rt 1.13.554.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6738ca0d6a64c52f695b39ee4ee7c3561aacd87c]

INTEGRATION: CWS changefileheader (1.10.554); FILE MERGED 2008/03/31 17:13:47 rt 1.10.554.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bf4b2d30da01ef10e1b5b5f58f83eaf2371df0dd]

INTEGRATION: CWS changefileheader (1.16.80); FILE MERGED 2008/03/31 17:13:47 rt 1.16.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b5231c26f0775f7610a603c090de75ab4286070f]

INTEGRATION: CWS changefileheader (1.4.554); FILE MERGED 2008/03/31 17:13:47 rt 1.4.554.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8462c1c781d7aa70db3644ca08df15f9b0cb2c3f]

INTEGRATION: CWS changefileheader (1.20.80); FILE MERGED 2008/03/31 17:13:47 rt 1.20.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9c96a296a0a57b01afbea688fd4772639f3fffd8]

INTEGRATION: CWS changefileheader (1.10.34); FILE MERGED 2008/03/31 17:13:47 rt 1.10.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3e25ad1b3a8aeea96a168605a4aed64ac21e69b9]

INTEGRATION: CWS changefileheader (1.23.80); FILE MERGED 2008/03/31 17:13:47 rt 1.23.80.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8e8bfdff04e64264f5875e0add9962cb9824a605]

INTEGRATION: CWS changefileheader (1.7.226); FILE MERGED 2008/03/31 17:13:46 rt 1.7.226.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e3812c432d6c93434d5b94c44dfa26fe382dec93]

INTEGRATION: CWS changefileheader (1.6.226); FILE MERGED 2008/03/31 17:13:45 rt 1.6.226.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ae5a6a5b7181271f4636f64aeaa2a7d88bd080ec]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:13:45 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [746a104ff8766ade5859e04b112d98cc33cdcc2a]

INTEGRATION: CWS changefileheader (1.5.388); FILE MERGED 2008/03/31 17:13:45 rt 1.5.388.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1e52b1089881aca307eb52e5d82d1ea9dd4bcc09]

INTEGRATION: CWS changefileheader (1.5.388); FILE MERGED 2008/03/31 17:13:44 rt 1.5.388.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e4ab5512e41f9f270288e4489e84ca901f559de8]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:13:44 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c003b03f690662f844e3c94f3d2a1f3ca685db99]

INTEGRATION: CWS changefileheader (1.6.226); FILE MERGED 2008/03/31 17:13:44 rt 1.6.226.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [49a32254c1b75655fe9338bfc291a6f524b28e7b]

INTEGRATION: CWS changefileheader (1.3.226); FILE MERGED 2008/03/31 17:13:44 rt 1.3.226.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [96bb226a3e6c176511e418a714576acf89cfb0b1]

INTEGRATION: CWS changefileheader (1.7.300); FILE MERGED 2008/03/31 17:13:41 rt 1.7.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3211d59d039fdb1c6c943d4826e5d71992c5886f]

INTEGRATION: CWS changefileheader (1.2.442); FILE MERGED 2008/03/31 17:13:41 rt 1.2.442.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [cb39fc0e06b6476a60efb33894d4390aa1d2333d]

INTEGRATION: CWS changefileheader (1.5.572); FILE MERGED 2008/04/01 15:29:47 thb 1.5.572.2: #i85898# Stripping all external header guards 2008/03/31 17:13:36 rt 1.5.572.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a79adf87950d7a823c4a93aaa1ef9bf220ebead8]

INTEGRATION: CWS changefileheader (1.15.700); FILE MERGED 2008/04/01 15:29:47 thb 1.15.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:36 rt 1.15.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f596c922a6d235670930fd976d980a0a691a2c9c]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:13:36 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c782ec2fc945fd9f82a3aecb30d0677191bb1187]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:47 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:36 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [96e1933611b1ab064ffa3f625482aca40cffca14]

INTEGRATION: CWS changefileheader (1.11.240); FILE MERGED 2008/04/01 15:29:46 thb 1.11.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:03 thb 1.11.240.2: #i85898# Stripping all external header guards 2008/03/31 17:13:36 rt 1.11.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e3125aa3763034d90e68f8633fd26c0be6b3db6c]

INTEGRATION: CWS changefileheader (1.7.698); FILE MERGED 2008/04/01 15:29:46 thb 1.7.698.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.7.698.2: #i85898# Stripping all external header guards 2008/03/31 17:13:36 rt 1.7.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [654e4f692d3f2ad93e9fde2d366bad0a86dedb14]

INTEGRATION: CWS changefileheader (1.14.34); FILE MERGED 2008/04/01 12:36:02 thb 1.14.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:36 rt 1.14.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4846af120ae80259ac126a79116dfe9eb2d25b2f]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:46 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:36 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7e5395370e753723649c0f3537c5ed568dfd6a1c]

INTEGRATION: CWS changefileheader (1.7.240); FILE MERGED 2008/04/01 15:29:45 thb 1.7.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.7.240.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.7.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4ff719586b3ed1e0f2df7d76951844447b39b2f1]

INTEGRATION: CWS changefileheader (1.8.292); FILE MERGED 2008/04/01 15:29:45 thb 1.8.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.8.292.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.8.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [fb90cdfc6dc8ede22125d0025b0d15e122ca3539]

INTEGRATION: CWS changefileheader (1.2.292); FILE MERGED 2008/04/01 15:29:45 thb 1.2.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.2.292.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.2.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [698215ca328de939964d57a0dd69e060e80104a2]

INTEGRATION: CWS changefileheader (1.79.30); FILE MERGED 2008/03/31 17:13:35 rt 1.79.30.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [72d93f494590beed9ba2a34dbb6d2e01093c07f8]

INTEGRATION: CWS changefileheader (1.2.698); FILE MERGED 2008/04/01 15:29:44 thb 1.2.698.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.2.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b53b7013061d1d4458d6af4500ae0eea480188db]

INTEGRATION: CWS changefileheader (1.4.572); FILE MERGED 2008/03/31 17:13:35 rt 1.4.572.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4af12f46e49f59444053546a06f6e2a3de1f7455]

INTEGRATION: CWS changefileheader (1.2.96); FILE MERGED 2008/04/01 15:29:44 thb 1.2.96.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.2.96.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.2.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [35be443e5a64d279f9761f7852bbefee5de0b7d6]

INTEGRATION: CWS changefileheader (1.11.34); FILE MERGED 2008/04/01 15:29:44 thb 1.11.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.11.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.11.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [476b6bfe1a66a7ac4b5646ec7b7510b3c7fdcbde]

INTEGRATION: CWS changefileheader (1.14.34); FILE MERGED 2008/04/01 15:29:44 thb 1.14.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.14.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.14.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6bbdb6e147a1e590a774cb5c7774588f8ad0c8e4]

INTEGRATION: CWS changefileheader (1.14.700); FILE MERGED 2008/04/01 15:29:44 thb 1.14.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.14.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.14.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dc883fcd3aa384c89759217ed425fc2166efce78]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:44 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:02 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4e7d698d74079eeb5de7bbcd3f3eda41526fd7ef]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 12:36:02 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5b7e0c9ad90e16ef7f2ef68bc8b3d6d74a86a2dc]

INTEGRATION: CWS changefileheader (1.18.158); FILE MERGED 2008/04/01 15:29:43 thb 1.18.158.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.18.158.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.18.158.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [df1c6fbe40944a3d3f3a5dba956a71c043b7846b]

INTEGRATION: CWS changefileheader (1.34.34); FILE MERGED 2008/04/01 15:29:43 thb 1.34.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.34.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.34.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [16e9b28605d2cda65a468a9e322fbadbbc5610f8]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:36:01 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f827964bb7972e6aeb8f5eaa53fda3a391b1520f]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 15:29:43 thb 1.5.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [85718c46baa91bb11dfe9c620ee535d7c54b87c2]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:43 thb 1.2.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4a81c24b818fdfe56d2896c04fd364c28fc68338]

INTEGRATION: CWS changefileheader (1.4.24); FILE MERGED 2008/04/01 15:29:43 thb 1.4.24.2: #i85898# Stripping all external header guards 2008/03/31 17:13:35 rt 1.4.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [017d740c4244a57fe92608fd44354a09329cf14e]

INTEGRATION: CWS changefileheader (1.5.24); FILE MERGED 2008/04/01 15:29:43 thb 1.5.24.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.5.24.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f46d59ad81de45b06287151ada8f6021a46891ac]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:42 thb 1.2.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e89127f7ff141dbd0ca0d6d58b8f8a13ecef693d]

INTEGRATION: CWS changefileheader (1.5.130); FILE MERGED 2008/04/01 15:29:42 thb 1.5.130.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.5.130.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.5.130.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5ec9e707c98d86906ba1423c31a72aea5e6c918f]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:13:34 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6f0b0f2b13dac03cd4c1e958e667fd05e82fbfe7]

INTEGRATION: CWS changefileheader (1.10.240); FILE MERGED 2008/04/01 15:29:42 thb 1.10.240.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.10.240.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.10.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e381166532ada2c497170fe3f7e0a1d0432d36df]

INTEGRATION: CWS changefileheader (1.13.96); FILE MERGED 2008/04/01 15:29:42 thb 1.13.96.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.13.96.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.13.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e6ffd09601ee6bb8f50e3aaae82cc1a41303ed8c]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:13:34 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7a26507bbd33aa045a54e55911421f38025949e9]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:42 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a37748492909ac0d3fbc484e5389d6eb70fe3451]

INTEGRATION: CWS changefileheader (1.23.34); FILE MERGED 2008/04/01 15:29:42 thb 1.23.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:01 thb 1.23.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.23.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [82c41e300b4282ccf7a864abfb6aa54abe1a8c11]

INTEGRATION: CWS changefileheader (1.10.34); FILE MERGED 2008/04/01 15:29:42 thb 1.10.34.3: #i85898# Stripping all external header guards 2008/04/01 12:36:00 thb 1.10.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.10.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f437faa50d4851f1f5e80e026ced47e2b15f7e9c]

INTEGRATION: CWS changefileheader (1.11.300); FILE MERGED 2008/03/31 17:13:34 rt 1.11.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [660b6174010fc825b79d969306c399afea1e93d0]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:41 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2710f905c094b4911943f2b8364fd820b0d683b7]

INTEGRATION: CWS changefileheader (1.13.34); FILE MERGED 2008/03/31 17:13:34 rt 1.13.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ea61b50d9603b791cfdd306e43a75126c75e8ddc]

INTEGRATION: CWS changefileheader (1.12.700); FILE MERGED 2008/04/01 15:29:41 thb 1.12.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:00 thb 1.12.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.12.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1d194178100df05dfaa5d4e35e6ca8894808956c]

INTEGRATION: CWS changefileheader (1.7.390); FILE MERGED 2008/04/01 15:29:41 thb 1.7.390.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.7.390.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [46828e2fefec9b0b99c00a058a12e4689bf07225]

INTEGRATION: CWS changefileheader (1.2.1046); FILE MERGED 2008/04/01 15:29:41 thb 1.2.1046.1: #i85898# Stripping all external header guards


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c64e34cdecbf8fb379186057189ff81a22763c5e]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:41 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:34 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c8416de5c99075bc9bea28714678beadfda43b8c]

INTEGRATION: CWS changefileheader (1.10.192); FILE MERGED 2008/04/01 15:29:40 thb 1.10.192.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.10.192.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2e5e7d13d6d702f7cf74345658a96aab6eeec8c7]

INTEGRATION: CWS changefileheader (1.61.34); FILE MERGED 2008/03/31 17:13:33 rt 1.61.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [17c5e7fb0f5606c16c1e371c358c3b2ca8a0114b]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/03/31 17:13:33 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4ea7a0d96312cc981b1508d4ac8c28df01e776d5]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:40 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [af5871e7eea0616e9d7683fa76aebe69eae05746]

INTEGRATION: CWS changefileheader (1.3.430); FILE MERGED 2008/04/01 15:29:40 thb 1.3.430.3: #i85898# Stripping all external header guards 2008/04/01 12:36:00 thb 1.3.430.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.3.430.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [19ebe303563748530e94a11ac3807c0aba19cea8]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/04/01 12:36:00 thb 1.6.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dba1ac4d891b85195824cb7bff9991f1ebc8d727]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/04/01 12:36:00 thb 1.5.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [44d885bcbd819e299cb662e0b0582d97527a5bf7]

INTEGRATION: CWS changefileheader (1.3.572); FILE MERGED 2008/04/01 15:29:40 thb 1.3.572.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.3.572.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [996d007068b31f2270b1b6f0bed2ad48ced169a2]

INTEGRATION: CWS changefileheader (1.9.292); FILE MERGED 2008/04/01 15:29:40 thb 1.9.292.3: #i85898# Stripping all external header guards 2008/04/01 12:36:00 thb 1.9.292.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.9.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [abd6d4437758269c4f4fd05a6014a37c2bb7d77c]

INTEGRATION: CWS changefileheader (1.5.94); FILE MERGED 2008/04/01 15:29:39 thb 1.5.94.3: #i85898# Stripping all external header guards 2008/04/01 12:36:00 thb 1.5.94.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.5.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ecd65d98332f455e12cc8434f82c5405a3c6f0ad]

INTEGRATION: CWS changefileheader (1.15.34); FILE MERGED 2008/04/01 12:36:00 thb 1.15.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.15.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6c9fb48b49612a5928f12f8a321e00ffacdde622]

INTEGRATION: CWS changefileheader (1.8.300); FILE MERGED 2008/04/01 15:29:39 thb 1.8.300.3: #i85898# Stripping all external header guards 2008/04/01 12:36:00 thb 1.8.300.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.8.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6b76648f53eed011c771ee33ce56791d05ac7830]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:39 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1c455baf5dfb13ecdd906434a7fc56d1f86703ea]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:39 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:36:00 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4bffacc2849aef04e68a7a514ef3c6413a8b995d]

INTEGRATION: CWS changefileheader (1.4.698); FILE MERGED 2008/04/01 15:29:39 thb 1.4.698.3: #i85898# Stripping all external header guards 2008/04/01 12:35:59 thb 1.4.698.2: #i85898# Stripping all external header guards 2008/03/31 17:13:33 rt 1.4.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [353293b12b33b43468bfdcaccffbf19f5ad81084]

INTEGRATION: CWS changefileheader (1.6.700); FILE MERGED 2008/04/01 15:29:39 thb 1.6.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:59 thb 1.6.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.6.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [64ba565832530550805f84dbba166c854db8440b]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:29:38 thb 1.7.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:59 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8a9fbbb6cae974bac9c165452fd97427947f623c]

INTEGRATION: CWS changefileheader (1.13.330); FILE MERGED 2008/04/01 15:29:38 thb 1.13.330.3: #i85898# Stripping all external header guards 2008/04/01 12:35:59 thb 1.13.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.13.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e359cff712fc609b333017ccf42f25249d412d89]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:38 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:59 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [42dca8b9b13cfff152d69daa6451a94fce0702c5]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:38 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1df2bdb92d4ccafbc17867eedfcd2cc6b008cde1]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:35:59 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c6eb068a16c047e4a48413275b89b5c7a37b4c90]

INTEGRATION: CWS changefileheader (1.4.330); FILE MERGED 2008/04/01 15:29:38 thb 1.4.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.4.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [549bc73da5cb08920f4b4cacc5f8c0928accd0ac]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 12:35:59 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [08b903f4019776c5b148c43eae3d6882c8cff50b]

INTEGRATION: CWS changefileheader (1.22.34); FILE MERGED 2008/04/01 15:29:38 thb 1.22.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.22.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4a01fedca427ea79b7ff5da2aa7e4d106ed97cbd]

INTEGRATION: CWS changefileheader (1.5.700); FILE MERGED 2008/04/01 12:35:59 thb 1.5.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.5.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2c120fe41d9a04a7d4b571b3d8b950e89f416094]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:37 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:59 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aa4f2027343bd9e8532f7ec471330c23fd51a784]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:37 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [77b34edd3f66dceb35336ae2eb9f0ef28172451b]

INTEGRATION: CWS changefileheader (1.6.34); FILE MERGED 2008/04/01 15:29:37 thb 1.6.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:59 thb 1.6.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.6.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [597c02831bae1b2c1622c195d766e54b00c113d0]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:37 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [452a47857951ec1c6e38905afc11371bb34258fa]

INTEGRATION: CWS changefileheader (1.8.700); FILE MERGED 2008/04/01 15:29:37 thb 1.8.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:58 thb 1.8.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.8.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1b1b6cf32af26fee1a7aa4b9ca0462909b1d0ddf]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:37 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:58 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:32 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5f46b575bcbe1bbd530b33ea07d117bf8b1370db]

INTEGRATION: CWS changefileheader (1.5.78); FILE MERGED 2008/04/01 15:29:36 thb 1.5.78.3: #i85898# Stripping all external header guards 2008/04/01 12:35:58 thb 1.5.78.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.5.78.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dd868b78f065464e1d89e6213dd3ace6f3b2640e]

INTEGRATION: CWS changefileheader (1.2.414); FILE MERGED 2008/03/31 17:13:31 rt 1.2.414.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b9d6d4da169b712627be3e3ac3a4e6c84046a04f]

INTEGRATION: CWS changefileheader (1.2.182); FILE MERGED 2008/04/01 15:29:36 thb 1.2.182.3: #i85898# Stripping all external header guards 2008/04/01 12:35:57 thb 1.2.182.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.2.182.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f9df75440f380df683e177a4b7661c3b42f8c09d]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:36 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:57 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [2a1eca73f183c57d1a556c92618ecc61c823611e]

INTEGRATION: CWS changefileheader (1.6.96); FILE MERGED 2008/04/01 15:29:36 thb 1.6.96.3: #i85898# Stripping all external header guards 2008/04/01 12:35:57 thb 1.6.96.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.6.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [31f1ac7528dafd4f036fb89af03819f3b1e1fc15]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/03/31 17:13:31 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b1520a2de868fc9bc19646e0747e3939736f9b48]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:36 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6321cf212ac4370b530544a84af9302ef42c6e1c]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:35 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [63859b67d328a17ca613cfdff5b79c42ab3cb410]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:13:31 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e18864321b50fc6b54cf2291df7373054668a489]

INTEGRATION: CWS changefileheader (1.4.698); FILE MERGED 2008/04/01 15:29:35 thb 1.4.698.3: #i85898# Stripping all external header guards 2008/04/01 12:35:57 thb 1.4.698.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.4.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8c7287e04ae4661fbda40582031f6fd5733a5a08]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/04/01 12:35:57 thb 1.2.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [275336109221ced7efe925d9390130b407cd00d8]

INTEGRATION: CWS changefileheader (1.21.34); FILE MERGED 2008/03/31 17:13:31 rt 1.21.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d3ecbe5454e83ecc3853e0f7f00a216999b3fc84]

INTEGRATION: CWS changefileheader (1.52.34); FILE MERGED 2008/04/01 15:29:35 thb 1.52.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:57 thb 1.52.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.52.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d44ac34672f2931eea95670ddd42c5398e33003d]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:34 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:57 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:31 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [761521acb250dcbaa403571d8b5bad44df05a7e5]

INTEGRATION: CWS changefileheader (1.2.34); FILE MERGED 2008/03/31 17:13:31 rt 1.2.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [504773f4579a2c757c1124e68e157c76cb33ac3c]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:34 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f2d010d6f466adf91385ce05123acae0395fddbe]

INTEGRATION: CWS changefileheader (1.9.34); FILE MERGED 2008/04/01 15:29:34 thb 1.9.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:56 thb 1.9.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.9.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [05d988534ddb4dba6fee6dd069cb353870fda7af]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:33 thb 1.2.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:56 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [680f600e7e2b2652cb375822d2388fe496615796]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:33 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5486f858bc507223676f8ee8ce51815cc2e2ba08]

INTEGRATION: CWS changefileheader (1.7.622); FILE MERGED 2008/04/01 15:29:33 thb 1.7.622.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.7.622.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [35f257e86ed84852de41018df71b3b46996d7f80]

INTEGRATION: CWS changefileheader (1.4.436); FILE MERGED 2008/04/01 15:29:33 thb 1.4.436.3: #i85898# Stripping all external header guards 2008/04/01 12:35:56 thb 1.4.436.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.4.436.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [25f11317e92b21ff3e503206daa0f6cdb87ceca9]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:29:32 thb 1.7.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:56 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e333525aeb0086ccd9b5575c5536c3789a9dcb7c]

INTEGRATION: CWS changefileheader (1.5.240); FILE MERGED 2008/04/01 15:29:32 thb 1.5.240.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.5.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5b8b19b4e799aa47cf4116ad1d7c7e7000d683a1]

INTEGRATION: CWS changefileheader (1.3.300); FILE MERGED 2008/03/31 17:13:30 rt 1.3.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [76637a3d48b342f4c7bae501711410393ce1aa03]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 12:35:56 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9b4f71407b662930ee93adcb0ef707a8c0b6b910]

INTEGRATION: CWS changefileheader (1.11.330); FILE MERGED 2008/04/01 15:29:31 thb 1.11.330.3: #i85898# Stripping all external header guards 2008/04/01 12:35:56 thb 1.11.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.11.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [4b083b71bbacb19f4c0411a130bdae2037284b1b]

INTEGRATION: CWS changefileheader (1.16.698); FILE MERGED 2008/04/01 15:29:31 thb 1.16.698.3: #i85898# Stripping all external header guards 2008/04/01 12:35:55 thb 1.16.698.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.16.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1e4ca67dc99185eebda9054b2bdae58bcc7249da]

INTEGRATION: CWS changefileheader (1.20.240); FILE MERGED 2008/04/01 15:29:30 thb 1.20.240.3: #i85898# Stripping all external header guards 2008/04/01 12:35:55 thb 1.20.240.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.20.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [86ce43a6ff1d9b527333586bc566f5b7b147ac32]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:30 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:30 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3ddd6388b8498c429079ba8204dc23f6befee360]

INTEGRATION: CWS changefileheader (1.4.510); FILE MERGED 2008/03/31 17:13:29 rt 1.4.510.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3c518a870fc9f293a27580458fd75759604d5262]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/04/01 15:29:30 thb 1.3.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [785ed90ea26657c62189cddde00fb6574b7842d1]

INTEGRATION: CWS changefileheader (1.10.134); FILE MERGED 2008/04/01 15:29:30 thb 1.10.134.3: #i85898# Stripping all external header guards 2008/04/01 12:35:55 thb 1.10.134.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.10.134.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5c88420d4ba9f388705a0a9848e540ba15fecce4]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 15:29:29 thb 1.7.330.3: #i85898# Stripping all external header guards 2008/04/01 12:35:55 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [696d5656e5e18266392c1140298e1f3888cae211]

INTEGRATION: CWS changefileheader (1.6.344); FILE MERGED 2008/04/01 15:29:29 thb 1.6.344.3: #i85898# Stripping all external header guards 2008/04/01 12:35:55 thb 1.6.344.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.6.344.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8116265ecfb8c1ab9d65ab7caa35fe4a1c4ad66f]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:35:55 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9959c6c70e1993960205ac952ebeaa43152dfbb0]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:29 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:55 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c26ebf515a31eb02f53c735baffaeb6ed312aa36]

INTEGRATION: CWS changefileheader (1.10.136); FILE MERGED 2008/04/01 15:29:29 thb 1.10.136.3: #i85898# Stripping all external header guards 2008/04/01 12:35:55 thb 1.10.136.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.10.136.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [245c199e145b2a12bffe8df1cf6a03f8cf788090]

INTEGRATION: CWS changefileheader (1.9.134); FILE MERGED 2008/04/01 12:35:54 thb 1.9.134.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.9.134.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d44868fc0e19d7866ff5d646b3ef7dcb66f4085e]

INTEGRATION: CWS changefileheader (1.13.134); FILE MERGED 2008/04/01 12:35:54 thb 1.13.134.2: #i85898# Stripping all external header guards 2008/03/31 17:13:29 rt 1.13.134.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [db9fff70d2761139c1172de95da6845f1b89de70]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:35:54 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [da574b2ab06fa73ca298fa235e170d1822e9cd1f]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:29 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:54 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3c2070bd3774c1edc3b64fdda2230e443b95fc6c]

INTEGRATION: CWS changefileheader (1.26.34); FILE MERGED 2008/04/01 15:29:28 thb 1.26.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:54 thb 1.26.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.26.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c18d3be35422782bc68c2f065ac7cd535feb5f2e]

INTEGRATION: CWS changefileheader (1.109.34); FILE MERGED 2008/04/01 15:29:28 thb 1.109.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:54 thb 1.109.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.109.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d04adab26e038240414b5e3167f6aba728c19cf1]

INTEGRATION: CWS changefileheader (1.9.700); FILE MERGED 2008/04/01 15:29:28 thb 1.9.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.9.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [270f7297ae2d03af1a035c5ea66a8218da790c7e]

INTEGRATION: CWS changefileheader (1.6.698); FILE MERGED 2008/04/01 15:29:27 thb 1.6.698.3: #i85898# Stripping all external header guards 2008/04/01 12:35:54 thb 1.6.698.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.6.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [1d4f7d4e994b463a58c25c036f4426bd003430a8]

INTEGRATION: CWS changefileheader (1.8.34); FILE MERGED 2008/04/01 15:29:27 thb 1.8.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:54 thb 1.8.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.8.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [62f3772f8b2ae17c23023fa1b4334afe4eeccbea]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:29:27 thb 1.5.330.3: #i85898# Stripping all external header guards 2008/04/01 12:35:54 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9df588adc540fdccaa662533e235db7b03332580]

INTEGRATION: CWS changefileheader (1.10.500); FILE MERGED 2008/04/01 15:29:26 thb 1.10.500.3: #i85898# Stripping all external header guards 2008/04/01 12:35:54 thb 1.10.500.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.10.500.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [c7c93c5cfa991e735d05c801663c1d15a1373b8f]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/04/01 15:29:26 thb 1.6.330.3: #i85898# Stripping all external header guards 2008/04/01 12:35:53 thb 1.6.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7f98b0281abcf9bf6db3472803b9e3e020f803c2]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:25 thb 1.2.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:53 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [888c79fbe8d7124c1ddbde0546f8c77bb9d7d63a]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:35:53 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:28 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6cb334b2fda25497bbde1b1c27250f8871a89713]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:24 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:53 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7b5f819dbdf48fb36da5fef4360d7b78e028277b]

INTEGRATION: CWS changefileheader (1.12.300); FILE MERGED 2008/04/01 12:35:53 thb 1.12.300.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.12.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [bf452034000fc01873712a7788f53f97448e9eec]

INTEGRATION: CWS changefileheader (1.7.330); FILE MERGED 2008/04/01 15:29:24 thb 1.7.330.3: #i85898# Stripping all external header guards 2008/04/01 12:35:53 thb 1.7.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.7.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [57ee4505992b6ebba1864b15f90170da9d76d790]

INTEGRATION: CWS changefileheader (1.9.638); FILE MERGED 2008/04/01 15:29:23 thb 1.9.638.3: #i85898# Stripping all external header guards 2008/04/01 12:35:53 thb 1.9.638.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.9.638.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [76b6ec12f7ebe0a08546c60b6f6d836ca3429b04]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 12:35:52 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a211e4d41991ace6916bf470ea13f68b07112952]

INTEGRATION: CWS changefileheader (1.6.572); FILE MERGED 2008/04/01 15:29:23 thb 1.6.572.3: #i85898# Stripping all external header guards 2008/04/01 12:35:52 thb 1.6.572.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.6.572.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [aed59f38412b4b05cc427d9ba5efe3e5908e2849]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 12:35:52 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e1e45e1362d84d3d94a2119ce84d448128a1d637]

INTEGRATION: CWS changefileheader (1.3.700); FILE MERGED 2008/04/01 15:29:22 thb 1.3.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:52 thb 1.3.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.3.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9bb90dad76f7dd927b49e87d76cc61045c74dc2d]

INTEGRATION: CWS changefileheader (1.12.34); FILE MERGED 2008/04/01 15:29:22 thb 1.12.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:52 thb 1.12.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.12.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3b36711af538b6343e97c0b3a635e6bb6a61be32]

INTEGRATION: CWS changefileheader (1.6.330); FILE MERGED 2008/03/31 17:13:27 rt 1.6.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [be0e10dc497a7b98d415c136449cfd9f0a3be77b]

INTEGRATION: CWS changefileheader (1.35.34); FILE MERGED 2008/04/01 15:29:22 thb 1.35.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:52 thb 1.35.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.35.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0d61bf73c0553f414831d8b3814a4a9f979cea71]

INTEGRATION: CWS changefileheader (1.19.34); FILE MERGED 2008/03/31 17:13:27 rt 1.19.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [65144a5f35ab6fd4a20ba7ff6617c03ba85c38f9]

INTEGRATION: CWS changefileheader (1.20.78); FILE MERGED 2008/04/01 15:29:21 thb 1.20.78.3: #i85898# Stripping all external header guards 2008/04/01 12:35:52 thb 1.20.78.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.20.78.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a92c0046015a14500592fc8367894c5e826b33a9]

INTEGRATION: CWS changefileheader (1.5.330); FILE MERGED 2008/04/01 15:29:21 thb 1.5.330.3: #i85898# Stripping all external header guards 2008/04/01 12:35:52 thb 1.5.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.5.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [d6fb9a680e94c1b06430736f4a42c9e21e5031c1]

INTEGRATION: CWS changefileheader (1.5.34); FILE MERGED 2008/04/01 15:29:20 thb 1.5.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:52 thb 1.5.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.5.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [01c6c265303f80a491ba23e6bd7cbaf2872669a0]

INTEGRATION: CWS changefileheader (1.29.34); FILE MERGED 2008/04/01 15:29:20 thb 1.29.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:51 thb 1.29.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.29.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0fde1a2cf0365cdeb73f9ee3c6d2a326277ef53a]

INTEGRATION: CWS changefileheader (1.5.292); FILE MERGED 2008/04/01 15:29:19 thb 1.5.292.3: #i85898# Stripping all external header guards 2008/04/01 12:35:51 thb 1.5.292.2: #i85898# Stripping all external header guards 2008/03/31 17:13:27 rt 1.5.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [8c4f839dd41708ef9aec13012faf7e0c79546089]

INTEGRATION: CWS changefileheader (1.2.292); FILE MERGED 2008/04/01 12:35:51 thb 1.2.292.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.2.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9f301b346efea4bff69ebc509204ef79d9f0cf85]

INTEGRATION: CWS changefileheader (1.2.224); FILE MERGED 2008/03/31 17:13:26 rt 1.2.224.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [dd714ba5d226cdfac55b080d071c957dc66f4856]

INTEGRATION: CWS changefileheader (1.7.292); FILE MERGED 2008/04/01 15:29:19 thb 1.7.292.3: #i85898# Stripping all external header guards 2008/04/01 12:35:51 thb 1.7.292.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.7.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [97d95d5cb5bb79dee6fcfa6734e9ae1cc47c6014]

INTEGRATION: CWS changefileheader (1.6.292); FILE MERGED 2008/04/01 12:35:51 thb 1.6.292.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.6.292.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [263adf4bf022bd2a20525d3a57f3a7986f885245]

INTEGRATION: CWS changefileheader (1.5.226); FILE MERGED 2008/04/01 15:29:19 thb 1.5.226.3: #i85898# Stripping all external header guards 2008/04/01 12:35:51 thb 1.5.226.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.5.226.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [395065d55508c5013ef6781dfef13b32ca432843]

INTEGRATION: CWS changefileheader (1.3.554); FILE MERGED 2008/03/31 17:13:26 rt 1.3.554.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [262dcfbb6220237eecef3b2e1478ecae922978a0]

INTEGRATION: CWS changefileheader (1.32.34); FILE MERGED 2008/04/01 15:29:18 thb 1.32.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:50 thb 1.32.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.32.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a109824da7f96f817e0c8f53218a74b39440d18e]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:18 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [89462a65f000532abf9de39da16caa9b37c1e547]

INTEGRATION: CWS changefileheader (1.28.34); FILE MERGED 2008/04/01 15:29:18 thb 1.28.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:50 thb 1.28.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.28.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b38d01cfb929df599ab71eb960a5a9c57ef9efc8]

INTEGRATION: CWS changefileheader (1.2.698); FILE MERGED 2008/04/01 12:35:50 thb 1.2.698.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.2.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [02f98a11f9ab19092c61ff1e593f156b2638f0cd]

INTEGRATION: CWS changefileheader (1.5.698); FILE MERGED 2008/04/01 15:29:17 thb 1.5.698.3: #i85898# Stripping all external header guards 2008/04/01 12:35:50 thb 1.5.698.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.5.698.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [49e91b3c0c573bf6b03445ee17476ef14f2f0c46]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 12:35:50 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [99335637336b95ef57f3118d4a8532200693dabb]

INTEGRATION: CWS changefileheader (1.3.176); FILE MERGED 2008/04/01 12:35:50 thb 1.3.176.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.3.176.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [01233e69821f9b58ae0d9a4598aefc2b4dfb7878]

INTEGRATION: CWS changefileheader (1.7.700); FILE MERGED 2008/04/01 15:29:17 thb 1.7.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:50 thb 1.7.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.7.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [ed21c1d06f3462c3c827cd628b6fd626d634f603]

INTEGRATION: CWS changefileheader (1.9.300); FILE MERGED 2008/04/01 15:29:17 thb 1.9.300.3: #i85898# Stripping all external header guards 2008/04/01 12:35:49 thb 1.9.300.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.9.300.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [725cf0780512b08d08c48fd4ec38a6fb5d9e6105]

INTEGRATION: CWS changefileheader (1.8.700); FILE MERGED 2008/04/01 12:35:49 thb 1.8.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:26 rt 1.8.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f2c89fcae800100c533b6550dc0082093db54e17]

INTEGRATION: CWS changefileheader (1.11.240); FILE MERGED 2008/04/01 15:29:16 thb 1.11.240.3: #i85898# Stripping all external header guards 2008/04/01 12:35:49 thb 1.11.240.2: #i85898# Stripping all external header guards 2008/03/31 17:13:25 rt 1.11.240.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [0cac5f5e04cee62382d927d4f838bd33a2a0cd37]

INTEGRATION: CWS changefileheader (1.9.34); FILE MERGED 2008/04/01 15:29:16 thb 1.9.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:49 thb 1.9.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:25 rt 1.9.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e967c447e55f3cfa8e3f9f6b635db355cfd70b2d]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:16 thb 1.2.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:49 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:25 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [a40e1653fdf713e360a854bd69818fac2be0dbe1]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/04/01 15:29:15 thb 1.2.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:49 thb 1.2.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:25 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [7362697673666e191afd30d5365a298031aace2a]

INTEGRATION: CWS changefileheader (1.4.700); FILE MERGED 2008/04/01 15:29:15 thb 1.4.700.3: #i85898# Stripping all external header guards 2008/04/01 12:35:49 thb 1.4.700.2: #i85898# Stripping all external header guards 2008/03/31 17:13:25 rt 1.4.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5898e06ecf9c99831a62b45e67b7dffe4a97686d]

INTEGRATION: CWS changefileheader (1.16.34); FILE MERGED 2008/04/01 15:29:14 thb 1.16.34.3: #i85898# Stripping all external header guards 2008/04/01 12:35:48 thb 1.16.34.2: #i85898# Stripping all external header guards 2008/03/31 17:13:25 rt 1.16.34.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6811abc938484c27cb6c40a4e44db138966761ec]

INTEGRATION: CWS changefileheader (1.11.94); FILE MERGED 2008/04/01 15:29:14 thb 1.11.94.3: #i85898# Stripping all external header guards 2008/04/01 12:35:48 thb 1.11.94.2: #i85898# Stripping all external header guards 2008/03/31 17:13:25 rt 1.11.94.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [f5a60f9106c075041246e716b4e7971811d1be56]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/04/01 15:29:14 thb 1.3.330.2: #i85898# Stripping all external header guards 2008/03/31 17:13:25 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e01ed50650d1ade5f7b97ba20e3d85df596b35e2]

INTEGRATION: CWS changefileheader (1.7.96); FILE MERGED 2008/03/31 17:13:25 rt 1.7.96.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [93f8e0e0e08cc87e2128678b114878e669f52590]

INTEGRATION: CWS changefileheader (1.6.320); FILE MERGED 2008/03/31 17:13:25 rt 1.6.320.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b942d145cd32305ad8acf3adb67b46718389017a]

INTEGRATION: CWS changefileheader (1.2.622); FILE MERGED 2008/03/31 17:13:25 rt 1.2.622.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b0a51f18302c3e5aeb179da49b37b4ef7e7c14d5]

INTEGRATION: CWS changefileheader (1.22.622); FILE MERGED 2008/03/31 17:13:25 rt 1.22.622.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [048bffbba880c58b5878d245f8d34269cb3e1dbb]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/03/31 17:13:25 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [9b38718b6f57da8177b6189b9b49b40aa2410222]

INTEGRATION: CWS changefileheader (1.13.46); FILE MERGED 2008/03/31 17:13:25 rt 1.13.46.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [3dc9a64795f52c955c6156f1507ceca6feedaed9]

INTEGRATION: CWS changefileheader (1.2.700); FILE MERGED 2008/03/31 17:13:24 rt 1.2.700.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [b5c322df75e5b64a8c8c1ce0bfe987810d094a10]

INTEGRATION: CWS changefileheader (1.3.100); FILE MERGED 2008/03/31 17:13:24 rt 1.3.100.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [e40ac2bc968c86a73f6b6691e993cd98d6852dea]

INTEGRATION: CWS changefileheader (1.14.46); FILE MERGED 2008/03/31 17:13:24 rt 1.14.46.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [6e7804e80405dbea7d85f13fb9c9c9775225fa1e]

INTEGRATION: CWS changefileheader (1.33.622); FILE MERGED 2008/03/31 17:13:24 rt 1.33.622.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [11e96545768f7000018697b89d74b31c03086326]

INTEGRATION: CWS changefileheader (1.3.330); FILE MERGED 2008/03/31 17:13:24 rt 1.3.330.1: #i87441# Change license header to LPGL v3.


2008-04-10  Rüdiger Timm  <rt@openoffice.org>  [5f2c8e430b5b5350aee499c5ce4049462e2e813d]

INTEGRATION: CWS changefileheader (1.2.320); FILE MERGED 2008/03/31 17:13:24 rt 1.2.320.1: #i87441# Change license header to LPGL v3.


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [c20c34d695bcf951f3c961bc85a3a5e5af11c1a4]

INTEGRATION: CWS chart23 (1.8.44); FILE MERGED 2008/03/05 08:52:31 iha 1.8.44.2: #i86579# Can't change Asian fonts in Charts 2008/03/05 08:42:13 iha 1.8.44.1: #i86579# Can't change Asian fonts in Charts


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [0eefeb5505d23e04b429c2844839c9caff52f3b6]

INTEGRATION: CWS chart23 (1.25.44); FILE MERGED 2008/03/12 14:06:01 iha 1.25.44.3: RESYNC: (1.25-1.26); FILE MERGED 2008/03/07 16:04:24 iha 1.25.44.2: #i85934#,#i82456# don't use hard coded default fonts 2008/03/07 13:49:51 iha 1.25.44.1: #i84964# missing font language


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [e3d5dd41eb6f44daee44463aa91336cef0511943]

INTEGRATION: CWS chart23 (1.7.44); FILE MERGED 2008/03/12 10:33:58 iha 1.7.44.1: #i86661# Logarithmic regression equations are displaying log(x) instead of ln(x)


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [ca435daf296a96ed76a9184853b7a46bc67254b3]

INTEGRATION: CWS chart23 (1.14.30); FILE MERGED 2008/03/12 14:05:58 iha 1.14.30.2: RESYNC: (1.14-1.15); FILE MERGED 2008/03/12 09:31:41 iha 1.14.30.1: #i85803# save and load stacking mode correctly


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [2cae1d416af0b7c40dcc34d8a0c240c6f8c8327a]

INTEGRATION: CWS chart23 (1.8.44); FILE MERGED 2008/03/12 09:30:45 iha 1.8.44.1: #i85803# save and load stacking mode correctly


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [4736a92860c21db0d6ee979c842411d4271941e3]

INTEGRATION: CWS chart23 (1.18.6); FILE MERGED 2008/03/12 09:32:26 iha 1.18.6.1: #i85803# save and load stacking mode correctly


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [15695f701af2976482a4581dfb231d28696afae5]

INTEGRATION: CWS chart23 (1.7.54); FILE MERGED 2008/03/10 16:07:53 iha 1.7.54.3: #i85934#,#i82456# don't use hard coded default fonts 2008/03/07 16:05:33 iha 1.7.54.2: #i85934#,#i82456# don't use hard coded default fonts 2008/03/07 13:51:19 iha 1.7.54.1: #i84964# missing font language


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [6f0c9b8ff59b5f1407bc8498e79684778f8f7e3f]

INTEGRATION: CWS chart23 (1.10.44); FILE MERGED 2008/03/12 09:34:11 iha 1.10.44.1: #i85803# save and load stacking mode correctly


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [dab6a27d01977e3bfded2b6b731a8fe0a953f674]

INTEGRATION: CWS chart23 (1.18.44); FILE MERGED 2008/03/12 09:34:56 iha 1.18.44.1: #i85803# save and load stacking mode correctly


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [4335a2aebe20cd12eba6f3f48a7885bab4b15245]

INTEGRATION: CWS chart23 (1.6.30); FILE MERGED 2008/03/12 09:29:36 iha 1.6.30.1: #i85803# save and load stacking mode correctly


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [264eac565925d0b32d9f32a126e3536d9dcbdb6b]

INTEGRATION: CWS chart23 (1.4.100); FILE MERGED 2008/03/12 09:22:02 iha 1.4.100.1: #i85803# save and load stacking mode correctly


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [ce6e7f3c9f87510e38ad3e385d3388902937ab45]

INTEGRATION: CWS chart23 (1.6.44); FILE MERGED 2008/02/22 11:51:54 iha 1.6.44.1: #i79262# Rotated Titles get an offset


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [bb2cad85d9585dbfef2a6eaf78836d49d2521c31]

INTEGRATION: CWS chart23 (1.27.6); FILE MERGED 2008/03/12 14:05:44 iha 1.27.6.2: RESYNC: (1.27-1.28); FILE MERGED 2008/02/22 13:55:18 iha 1.27.6.1: #i86355# crash in debug version when moving chart elements via mouse


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [1b740998b417cca5f3992728056e534f707fc855]

INTEGRATION: CWS chart23 (1.9.78); FILE MERGED 2008/02/22 12:22:12 iha 1.9.78.1: #i26488# disable sizing controls for Title and Legend as long as those functions are not available


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [fb4c96323e41d39ee480617d51da467e8b0e7839]

INTEGRATION: CWS chart23 (1.11.78); FILE MERGED 2008/03/07 13:52:15 iha 1.11.78.1: #i84964# missing font language


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [465998b2d9160d8b6828ab77db3c25d40fa5964f]

INTEGRATION: CWS chart23 (1.13.6); FILE MERGED 2008/03/12 09:39:34 iha 1.13.6.1: #i85803# save and load stacking mode correctly


2008-04-04  Kurt Zenker  <kz@openoffice.org>  [ce118971eeae9c6e0865a1c252c4877f8df8ade2]

INTEGRATION: CWS chart23 (1.2.78); FILE MERGED 2008/03/12 13:39:50 iha 1.2.78.1: corrected binary file


2008-03-25  Oliver Bolte  <obo@openoffice.org>  [64a1088c9c9e144bba1382f877784e24ab70d06f]

INTEGRATION: CWS winordinals (1.44.134); FILE MERGED 2008/03/07 15:19:56 vg 1.44.134.1: #i86800# switch to symbol-exporting scheme


2008-03-20  Rüdiger Timm  <rt@openoffice.org>  [1ee42423e8bdd89cff1c5000b78deb2ea6eb988a]

#i87297# Initialize variable.


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [ff187636df138e92b2b82ddd48e0afc8de98d3aa]

INTEGRATION: CWS unoapi3 (1.8.68); FILE MERGED 2008/03/07 12:58:29 cn 1.8.68.2: #i84995 update issues 2008/03/07 12:47:33 cn 1.8.68.1: #i84995 update issues


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [df305c558421bdd108e3fdcac4c83778747eb1aa]

INTEGRATION: CWS chartmappingfix (1.3.70); FILE MERGED 2008/02/07 15:43:55 bm 1.3.70.1:  #i85913# Sequence Mapping is not needed for internal data


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [510c564336062207984d820250349ddd89029147]

INTEGRATION: CWS dr60 (1.37.62); FILE MERGED 2008/03/10 12:06:43 dr 1.37.62.1: #i28752# show correct icon for transparent background


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [e9bfde6a8e98423e7a9e29a032e0590432f66201]

INTEGRATION: CWS dr60 (1.7.300); FILE MERGED 2008/03/10 11:27:35 dr 1.7.300.1: #i51462# handle Enter key in Navigator scenario listbox


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [4004053d6ddc5e06370d8b5c3f80e3fc9d905d50]

INTEGRATION: CWS dr60 (1.8.300); FILE MERGED 2008/03/10 11:51:38 dr 1.8.300.1: #i10755# remember listbox position in name list


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [3467d4144f79be2cd2730f0ac3335bf38ccd9689]

INTEGRATION: CWS dr60 (1.11.56); FILE MERGED 2008/03/10 11:11:33 dr 1.11.56.2: #i85166# set Excel's 3D defaults in pie charts 2008/03/07 17:44:11 dr 1.11.56.1: #i85166# #i85167# pie rotation


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [44d449d64bbae1294171008d319074cd7bed1bfc]

INTEGRATION: CWS dr60 (1.10.56); FILE MERGED 2008/03/07 17:44:11 dr 1.10.56.1: #i85166# #i85167# pie rotation


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [436f2a10125bc2216662d74119e7a8221cb5801c]

INTEGRATION: CWS dr60 (1.4.56); FILE MERGED 2008/03/07 17:44:10 dr 1.4.56.1: #i85166# #i85167# pie rotation


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [1549c384027068a448bc04d5579eb73f2c672948]

INTEGRATION: CWS dr60 (1.17.56); FILE MERGED 2008/03/10 11:13:00 dr 1.17.56.3: #i85166# set Excel's 3D defaults in pie charts 2008/03/10 11:11:58 dr 1.17.56.2: #i85166# set Excel's 3D defaults in pie charts 2008/03/07 17:44:11 dr 1.17.56.1: #i85166# #i85167# pie rotation


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [0f8db9c561561e2b6d2a164a728b8090402a7cec]

INTEGRATION: CWS dr60 (1.6.56); FILE MERGED 2008/03/07 17:44:11 dr 1.6.56.1: #i85166# #i85167# pie rotation


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [55a6e94c91f7136fc32c00290bdc5da550f61b2c]

INTEGRATION: CWS sb83 (1.44.94); FILE MERGED 2008/03/17 11:01:32 sb 1.44.94.4: fixed previous fix 2008/03/17 10:11:01 sb 1.44.94.3: #i84200# avoid build break on Mac OS X (see commit comment for 1.44.94.1) 2008/03/17 09:14:26 sb 1.44.94.2: RESYNC: (1.44-1.45); FILE MERGED 2008/03/07 08:22:41 sb 1.44.94.1: #i84200# marked the shared lib that goes into oovbaapi.oxt as RPATH=OXT, though that is not enought to make it work, at least on Mac OS X, as the lib links against non-URE libs (like VCLLIB)


2008-03-18  Vladimir Glazounov  <vg@openoffice.org>  [f771e53cc2bf28b9698d9d37ec70a17707368e7f]

INTEGRATION: CWS sb83 (1.25.22); FILE MERGED 2008/03/17 09:11:14 sb 1.25.22.4: RESYNC: (1.28-1.29); FILE MERGED 2008/02/22 11:12:03 sb 1.25.22.3: RESYNC: (1.26-1.28); FILE MERGED 2008/02/01 13:31:07 sb 1.25.22.2: RESYNC: (1.25-1.26); FILE MERGED 2008/01/11 09:14:32 sb 1.25.22.1: made code warning free (on unxmacxi.pro)


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [a2c9c359f2806f14b54bd2a2453a455f96e24515]

INTEGRATION: CWS impresstables2 (1.37.38); FILE MERGED 2008/02/24 00:24:53 cl 1.37.38.2: RESYNC: (1.37-1.38); FILE MERGED 2008/02/20 17:04:33 cl 1.37.38.1: #i68103# use rtf as default paste format for drawing tables


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [77ff2885c8a80653b4274d1ca6c28a40dae47298]

INTEGRATION: CWS impresstables2 (1.35.64); FILE MERGED 2008/01/30 13:28:19 cl 1.35.64.3: RESYNC: (1.36-1.37); FILE MERGED 2007/08/01 22:51:57 cl 1.35.64.2: RESYNC: (1.35-1.36); FILE MERGED 2007/07/26 21:40:58 cl 1.35.64.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [e4d54ab7208170c46bd48f9f316d0675de1c0edc]

INTEGRATION: CWS impresstables2 (1.39.66); FILE MERGED 2008/02/20 17:53:16 cl 1.39.66.3: RESYNC: (1.40-1.41); FILE MERGED 2008/01/30 13:28:26 cl 1.39.66.2: RESYNC: (1.39-1.40); FILE MERGED 2007/07/26 21:40:58 cl 1.39.66.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [0c09f41c41aa528a4a5a4f12b525deed17bc4119]

INTEGRATION: CWS impresstables2 (1.21.40); FILE MERGED 2007/07/30 14:39:33 cl 1.21.40.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [2b45d6b4f2c8866ebcd88c80b1ab5d00980dea29]

INTEGRATION: CWS impresstables2 (1.7.40); FILE MERGED 2007/07/30 14:39:33 cl 1.7.40.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [80025296a9043e04fffa596f4606174097e45b73]

INTEGRATION: CWS impresstables2 (1.103.54); FILE MERGED 2008/03/11 19:24:07 cl 1.103.54.6: RESYNC: (1.110-1.111); FILE MERGED 2008/02/20 17:53:30 cl 1.103.54.5: RESYNC: (1.109-1.110); FILE MERGED 2008/01/30 13:28:22 cl 1.103.54.4: RESYNC: (1.108-1.109); FILE MERGED 2008/01/02 11:15:42 cl 1.103.54.3: RESYNC: (1.107-1.108); FILE MERGED 2007/08/01 22:50:11 cl 1.103.54.2: RESYNC: (1.103-1.107); FILE MERGED 2007/07/26 21:40:58 cl 1.103.54.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [d389af9a912eecda2d4505e7c6a473961c1075f3]

INTEGRATION: CWS impresstables2 (1.7.40); FILE MERGED 2007/07/26 21:40:57 cl 1.7.40.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [c1895fc6b0481b0dba002e958c121309de542c79]

INTEGRATION: CWS impresstables2 (1.8.40); FILE MERGED 2007/07/26 21:40:57 cl 1.8.40.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [e0658a961ba426f3f4583b28bfdaa5f2eb5a9104]

INTEGRATION: CWS impresstables2 (1.12.54); FILE MERGED 2007/10/15 10:29:02 cl 1.12.54.1: #i68103# changed return type of Execute()


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [eea6302147d001cd010e1af7afff1b2696aeae3e]

INTEGRATION: CWS impresstables2 (1.66.34); FILE MERGED 2008/03/11 19:28:01 cl 1.66.34.2: RESYNC: (1.66-1.67); FILE MERGED 2008/01/01 18:43:37 cl 1.66.34.1: #i68103# working on tables


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [a0212c827c83f4a071bb5d49bc8022028f1d7386]

INTEGRATION: CWS impresstables2 (1.59.40); FILE MERGED 2008/03/11 19:28:09 cl 1.59.40.3: RESYNC: (1.60-1.61); FILE MERGED 2008/02/20 17:52:59 cl 1.59.40.2: RESYNC: (1.59-1.60); FILE MERGED 2007/07/30 14:39:33 cl 1.59.40.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [4bb00455673c68edd0a22ef3914468d40500624b]

INTEGRATION: CWS impresstables2 (1.12.40); FILE MERGED 2007/07/30 14:39:32 cl 1.12.40.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [abe04cbe4db8c2e07e556826956098cb875ae078]

INTEGRATION: CWS impresstables2 (1.15.40); FILE MERGED 2007/07/30 14:39:32 cl 1.15.40.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [b4d317d335f594f674ff57e13201696e72376e66]

INTEGRATION: CWS impresstables2 (1.44.40); FILE MERGED 2007/07/30 14:39:32 cl 1.44.40.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [41e1ab4aa9c6f4d3eba0ca10a445f9301c2b653c]

INTEGRATION: CWS impresstables2 (1.15.58); FILE MERGED 2007/07/30 14:39:32 cl 1.15.58.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [3f9d466006a1e77b7a6c25fba8a137ba72722091]

INTEGRATION: CWS impresstables2 (1.27.58); FILE MERGED 2007/07/30 14:39:32 cl 1.27.58.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [e902ff443b9e250ad2bbc31adffe5b9c12bfc195]

INTEGRATION: CWS impresstables2 (1.10.58); FILE MERGED 2007/07/30 14:39:32 cl 1.10.58.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [2d410c3fe9dea1c483cf443d75c8e2befad6bfae]

INTEGRATION: CWS impresstables2 (1.9.40); FILE MERGED 2007/07/30 14:39:32 cl 1.9.40.1: fixed namespace errors


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [94929d0db363aea35581773c4c6c8def0dd18c0f]

INTEGRATION: CWS impresstables2 (1.17.22); FILE MERGED 2008/03/11 19:24:11 cl 1.17.22.5: RESYNC: (1.21-1.23); FILE MERGED 2008/02/20 17:53:06 cl 1.17.22.4: RESYNC: (1.20-1.21); FILE MERGED 2007/10/12 02:32:25 cl 1.17.22.3: RESYNC: (1.19-1.20); FILE MERGED 2007/08/01 22:27:24 cl 1.17.22.2: RESYNC: (1.17-1.19); FILE MERGED 2007/07/26 21:40:57 cl 1.17.22.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [32965bf08c9c5d646131c0f3c5092084230dec6c]

INTEGRATION: CWS impresstables2 (1.4.408); FILE MERGED 2007/07/26 21:40:57 cl 1.4.408.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [5bc87e566722434de731118ebf48a2283cf61a48]

INTEGRATION: CWS impresstables2 (1.16.68); FILE MERGED 2007/07/26 21:40:56 cl 1.16.68.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [5a94b669c997758c290b32f0afeb2c1b06239e2e]

INTEGRATION: CWS impresstables2 (1.6.200); FILE MERGED 2007/07/26 21:40:56 cl 1.6.200.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [ddac876b66c82961fa095fa7bfe0b53f18224c31]

INTEGRATION: CWS impresstables2 (1.3.406); FILE MERGED 2007/07/26 21:40:27 cl 1.3.406.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [e08c60396a10de4f3d26cf6dc3a80f9e922bd9b5]

INTEGRATION: CWS impresstables2 (1.4.40); FILE MERGED 2007/07/26 21:40:27 cl 1.4.40.1: #i68103# reworked styles to use refcounting


2008-03-12  Rüdiger Timm  <rt@openoffice.org>  [d0ef7c79c0870db531730e00e6a777bc44ff814f]

INTEGRATION: CWS impresstables2 (1.2.30); FILE MERGED 2007/07/26 22:11:25 cl 1.2.30.1: worked on tables in draw


2008-03-11  Oliver Bolte  <obo@openoffice.org>  [6cab2ffdd314a77bcc901fb313c5cf96ce4cc559]

#i86824#


2008-03-10  Oliver Bolte  <obo@openoffice.org>  [26f98d1ca7d021461edb1a592fe1697c753e7928]

#i86824#


2008-03-10  Oliver Bolte  <obo@openoffice.org>  [f3ac4e7b02e72cffd7e44e848420233ff43a0103]

#i86824#


2008-03-10  Oliver Bolte  <obo@openoffice.org>  [62505a5b5399718dcac45809dc096d1c1de79315]

#i10000# merge problem


2008-03-10  Oliver Bolte  <obo@openoffice.org>  [31115601e46e349f6535e0305b0c57a187cf9ab6]

#i86846# initialize value


2008-03-10  Oliver Bolte  <obo@openoffice.org>  [7d26403a5a340b0782bf10c82ee31297cd11e156]

#i86847# initialize value


2008-03-09  Kurt Zenker  <kz@openoffice.org>  [bb0b6d27d50edd775b774816205eb3a1a8a19fa0]

INTEGRATION: CWS odff (1.51.56); FILE MERGED 2008/02/20 16:41:50 er 1.51.56.21: #i32340# ISBLANK needs to distinguish between inherited / non-inherited emptiness; corrected ISNUMBER and ISTEXT/ISNONTEXT handling of svEmptyCell 2008/02/07 13:10:02 er 1.51.56.20: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/02/06 10:16:23 er 1.51.56.19: for clarity and safety on signed types, comparison on >0 2008/02/05 17:59:05 er 1.51.56.18: #i77280# treat undefined name as usual ocBad ScStringOpToken, so ISERROR(undefinedname) yields TRUE; => ocBad doesn't terminate compilation anymore. 2008/01/31 22:15:16 er 1.51.56.17: more consistent error codes, IllegalArgument vs. IllegalParameter 2008/01/31 20:05:33 er 1.51.56.16: now that we have error token: some PopError() instead of Pop() and some PushError(...) instead of SetError(...) 2008/01/31 15:34:23 er 1.51.56.15: #i32340# ScFormulaResult, third wave 2008/01/25 14:19:41 er 1.51.56.14: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/24 16:41:01 er 1.51.56.13: #i32340# variable cell result ScFormulaResult, second wave 2008/01/17 17:31:34 er 1.51.56.12: #i32340# variable cell result ScFormulaResult, first wave 2008/01/11 19:54:56 er 1.51.56.11: ScErrorToken matrix cases 2008/01/10 16:54:27 er 1.51.56.10: introduce ScErrorToken, get rid of secondary error stack 2008/01/08 21:09:27 er 1.51.56.9: rename StackVar svErr to svUnknown 2008/01/04 19:37:56 er 1.51.56.8: #i32341# ScUnionFunc: set #REF! if needed 2008/01/04 18:43:15 er 1.51.56.7: #i32341# make AREAS() handle RefList 2007/12/20 19:35:08 er 1.51.56.6: ConvertMatrixParameter: svRefList is error if no reference is expected 2007/12/19 20:15:02 er 1.51.56.5: #i32341# ocUnion: functions handling svRefList 2007/12/17 15:59:34 er 1.51.56.4: #i32341# union / range list operator ocUnion; first wave 2007/11/29 19:06:46 er 1.51.56.3: #i4904# range operator ocRange 2007/10/23 13:30:56 er 1.51.56.2: RESYNC: (1.51-1.52); FILE MERGED 2007/08/30 09:57:29 er 1.51.56.1: resynced to cws xmlfilter02


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [cc7cf667cd2c5700f11962a2f6407811a3d28ac3]

INTEGRATION: CWS unifysound01_DEV300 (1.11.236); FILE MERGED 2007/08/30 09:22:04 cmc 1.11.236.1: #i81145# move from Sound::IsSoundFile to ::avmedia::MediaWindow::isMediaURL


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [3501aa9c8bdc7e93e86484ac62d7d79b093a0066]

INTEGRATION: CWS calcshare_DEV300 (1.43.56); FILE MERGED 2008/02/28 13:21:28 tbe 1.43.56.7: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/20 12:40:31 tbe 1.43.56.6: ##i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/20 11:52:06 mav 1.43.56.5: #i8811# title related fixes 2008/02/04 10:30:45 tbe 1.43.56.4: RESYNC: (1.43-1.44); FILE MERGED 2007/12/13 09:50:33 tbe 1.43.56.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/11 15:34:51 tbe 1.43.56.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:18:17 tbe 1.43.56.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [014c81a4e7f4e7e75b5ec9d77faf84d401cf2c0e]

INTEGRATION: CWS calcshare_DEV300 (1.8.306); FILE MERGED 2007/12/04 13:17:30 tbe 1.8.306.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [abf465f6a7e28b95ee30f475a23096e829622eba]

INTEGRATION: CWS calcshare_DEV300 (1.74.56); FILE MERGED 2008/02/04 10:30:23 tbe 1.74.56.2: RESYNC: (1.74-1.75); FILE MERGED 2007/12/04 13:01:18 tbe 1.74.56.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [086c1a045bfc153031ab7560cec430248042b6aa]

INTEGRATION: CWS calcshare_DEV300 (1.56.14); FILE MERGED 2008/02/23 18:46:26 tbe 1.56.14.6: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 09:43:54 tbe 1.56.14.5: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/06 11:03:00 tbe 1.56.14.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/04 10:30:20 tbe 1.56.14.3: RESYNC: (1.56-1.57); FILE MERGED 2008/01/30 12:55:55 tbe 1.56.14.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:00:21 tbe 1.56.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [fc9db96fdc6720dd6d2f404aa5bb185f387b5159]

INTEGRATION: CWS calcshare_DEV300 (1.19.14); FILE MERGED 2008/02/26 19:07:33 tbe 1.19.14.11: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 12:01:02 tbe 1.19.14.10: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 18:22:20 tbe 1.19.14.9: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 15:27:39 tbe 1.19.14.8: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 18:45:44 tbe 1.19.14.7: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 16:21:44 tbe 1.19.14.6: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 13:44:08 tbe 1.19.14.5: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 11:41:00 tbe 1.19.14.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/15 16:11:06 tbe 1.19.14.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/13 14:07:08 tbe 1.19.14.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 12:59:44 tbe 1.19.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [08ea65ab12e8fddea96452202bf43b17ecccfb4b]

INTEGRATION: CWS calcshare_DEV300 (1.29.6); FILE MERGED 2008/02/26 12:04:49 tbe 1.29.6.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:39:40 tbe 1.29.6.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [e12017efed77cbeb5d313e1e2f67a4d50eda085b]

INTEGRATION: CWS calcshare_DEV300 (1.15.124); FILE MERGED 2007/12/04 13:39:01 tbe 1.15.124.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [54675327cf3f6316f9663be0b1bd9b1a4b62b76b]

INTEGRATION: CWS calcshare_DEV300 (1.22.70); FILE MERGED 2007/12/14 13:11:04 tbe 1.22.70.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:38:24 tbe 1.22.70.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [cf44f836f1a25504565fe357f6cce37e573b88db]

INTEGRATION: CWS calcshare_DEV300 (1.28.14); FILE MERGED 2008/02/04 10:30:48 tbe 1.28.14.2: RESYNC: (1.28-1.29); FILE MERGED 2007/12/04 13:37:38 tbe 1.28.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [b9c22cde2b3a1ed0c5442cc2214f3809f6ffc232]

INTEGRATION: CWS calcshare_DEV300 (1.70.14); FILE MERGED 2008/02/27 17:00:56 tbe 1.70.14.12: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 19:16:02 tbe 1.70.14.11: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 12:03:48 tbe 1.70.14.10: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 18:27:27 tbe 1.70.14.9: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 15:30:41 tbe 1.70.14.8: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 18:48:57 tbe 1.70.14.7: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 16:23:42 tbe 1.70.14.6: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 13:47:20 tbe 1.70.14.5: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 11:44:20 tbe 1.70.14.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/15 16:15:58 tbe 1.70.14.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/13 14:14:03 tbe 1.70.14.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:36:50 tbe 1.70.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [9f385320eb33bc4bf868e0ea254192090d3a1e6b]

INTEGRATION: CWS calcshare_DEV300 (1.1.2); FILE ADDED 2008/02/27 11:45:44 tbe 1.1.2.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 19:15:22 tbe 1.1.2.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 18:26:41 tbe 1.1.2.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 09:42:35 tbe 1.1.2.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [7b182c7b6bf820958e5e08051c211a79ec9b1cc9]

INTEGRATION: CWS calcshare_DEV300 (1.1.2); FILE ADDED 2008/02/27 11:45:16 tbe 1.1.2.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 19:14:49 tbe 1.1.2.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 18:25:59 tbe 1.1.2.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 09:42:07 tbe 1.1.2.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [e5eabcb80e96895b4987db5c526887d5082b0a10]

INTEGRATION: CWS calcshare_DEV300 (1.8.116); FILE MERGED 2008/02/26 12:02:51 tbe 1.8.116.5: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 09:47:15 tbe 1.8.116.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/01/30 12:57:12 tbe 1.8.116.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/19 14:26:17 tbe 1.8.116.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:35:39 tbe 1.8.116.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [7ff96c643011c86d8489fbaa08dcc5d514bc34dd]

INTEGRATION: CWS calcshare_DEV300 (1.1.2); FILE ADDED 2008/02/26 19:13:55 tbe 1.1.2.5: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 18:48:05 tbe 1.1.2.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/15 16:15:06 tbe 1.1.2.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/07 18:40:58 tbe 1.1.2.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/01/30 12:54:53 tbe 1.1.2.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [f148c5bd11c5823ee41655c682da49f8f2582c9f]

INTEGRATION: CWS calcshare_DEV300 (1.1.2); FILE ADDED 2008/02/26 19:13:22 tbe 1.1.2.6: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 11:43:22 tbe 1.1.2.5: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/18 12:58:13 tbe 1.1.2.4: ##i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/15 16:14:20 tbe 1.1.2.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/07 18:41:51 tbe 1.1.2.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/01/30 12:54:24 tbe 1.1.2.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [728a340af1a5e5851f173dda5bb2ee1a13fea636]

INTEGRATION: CWS calcshare_DEV300 (1.1.2); FILE ADDED 2008/02/27 11:44:38 tbe 1.1.2.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 19:12:30 tbe 1.1.2.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 18:25:07 tbe 1.1.2.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 09:41:04 tbe 1.1.2.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [93d4e4905f28eb6b9967325650c1a5dffc905ee1]

INTEGRATION: CWS calcshare_DEV300 (1.1.2); FILE ADDED 2008/02/27 11:44:09 tbe 1.1.2.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 19:11:51 tbe 1.1.2.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 18:24:28 tbe 1.1.2.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 09:40:34 tbe 1.1.2.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [58342345243ae8c5169ac718a5aec78c5dc92f53]

INTEGRATION: CWS calcshare_DEV300 (1.1.2); FILE ADDED 2008/02/26 19:11:10 tbe 1.1.2.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/15 16:13:20 tbe 1.1.2.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/07 18:39:55 tbe 1.1.2.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/01/30 12:53:36 tbe 1.1.2.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [d31126a3c048168ae2dba846ea6d527418ab8371]

INTEGRATION: CWS calcshare_DEV300 (1.1.2); FILE ADDED 2008/02/26 19:10:30 tbe 1.1.2.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/07 18:38:49 tbe 1.1.2.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/01/30 12:52:57 tbe 1.1.2.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [339eed7ed4467b800814f806b922bca3ce75ec87]

INTEGRATION: CWS calcshare_DEV300 (1.57.14); FILE MERGED 2008/02/26 19:09:31 tbe 1.57.14.11: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 12:02:05 tbe 1.57.14.10: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 18:23:39 tbe 1.57.14.9: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 16:22:47 tbe 1.57.14.8: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 13:46:14 tbe 1.57.14.7: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 09:46:21 tbe 1.57.14.6: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/20 11:52:06 mav 1.57.14.5: #i8811# title related fixes 2008/02/04 10:30:42 tbe 1.57.14.4: RESYNC: (1.57-1.58); FILE MERGED 2007/12/14 13:10:30 tbe 1.57.14.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/11 15:34:06 tbe 1.57.14.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:17:01 tbe 1.57.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [e9ffd9680bd9db2e6c492034c100357af1987662]

INTEGRATION: CWS calcshare_DEV300 (1.30.52); FILE MERGED 2008/02/28 13:20:30 tbe 1.30.52.12: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 11:42:08 tbe 1.30.52.11: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/20 12:41:48 tbe 1.30.52.10: ##i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/15 16:12:11 tbe 1.30.52.9: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/06 11:04:06 tbe 1.30.52.8: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/04 10:30:38 tbe 1.30.52.7: RESYNC: (1.30-1.32); FILE MERGED 2008/01/30 12:56:35 tbe 1.30.52.6: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/01/09 16:09:08 tbe 1.30.52.5: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/19 14:21:43 tbe 1.30.52.4: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/13 09:49:49 tbe 1.30.52.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/11 15:33:29 tbe 1.30.52.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:16:18 tbe 1.30.52.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [cb8e4a294e2a2ea9415e80e9d434cbc4ad645cbb]

INTEGRATION: CWS calcshare_DEV300 (1.93.44); FILE MERGED 2008/02/27 19:09:33 tbe 1.93.44.11: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/26 19:08:39 tbe 1.93.44.10: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/25 15:29:51 tbe 1.93.44.9: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 18:47:15 tbe 1.93.44.8: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/23 13:45:23 tbe 1.93.44.7: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/20 11:52:06 mav 1.93.44.6: #i8811# title related fixes 2008/02/13 14:11:06 tbe 1.93.44.5: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2008/02/04 10:30:36 tbe 1.93.44.4: RESYNC: (1.93-1.95); FILE MERGED 2007/12/14 13:10:06 tbe 1.93.44.3: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/11 15:32:26 tbe 1.93.44.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:15:09 tbe 1.93.44.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [1862a60539284b29cef28287dda43d5e4f3bca2e]

INTEGRATION: CWS jl89_DEV300 (1.4.202); FILE MERGED 2008/02/18 14:38:49 jl 1.4.202.1: #i86188# remove insert applet menu entries


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [a19b340614d64247bd596eee6463036b2bb1e90e]

INTEGRATION: CWS jl89_DEV300 (1.30.18); FILE MERGED 2008/02/18 14:38:49 jl 1.30.18.1: #i86188# remove insert applet menu entries


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [c56c5ce9254116d5f927ecdda77dcc9e905c2aee]

INTEGRATION: CWS calcshare_DEV300 (1.55.14); FILE MERGED 2008/02/04 10:30:32 tbe 1.55.14.2: RESYNC: (1.55-1.56); FILE MERGED 2007/12/04 13:14:12 tbe 1.55.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [fd1d7e15d440bfeae1522669c1cc4eb4c3f81ff7]

INTEGRATION: CWS calcshare_DEV300 (1.25.28); FILE MERGED 2008/02/04 10:30:29 tbe 1.25.28.2: RESYNC: (1.25-1.27); FILE MERGED 2007/12/04 13:06:54 tbe 1.25.28.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [e6cbc40c14b37e19867b04e941f2a956c4a3964c]

INTEGRATION: CWS calcshare_DEV300 (1.6.156); FILE MERGED 2007/12/04 13:06:17 tbe 1.6.156.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [39a05d5b0b9e19ad888a4e8e5c557216e030d94d]

INTEGRATION: CWS calcshare_DEV300 (1.26.156); FILE MERGED 2008/02/04 10:30:26 tbe 1.26.156.2: RESYNC: (1.26-1.27); FILE MERGED 2007/12/04 13:05:44 tbe 1.26.156.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [01bfa7e0c15a84fa8fe627eccc244de41ee8d529]

INTEGRATION: CWS calcshare_DEV300 (1.10.14); FILE MERGED 2008/02/25 15:29:02 tbe 1.10.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [7b79e637c4eefbc105f2d9e50f7e9560c416a916]

INTEGRATION: CWS calcshare_DEV300 (1.36.6); FILE MERGED 2008/02/23 09:45:00 tbe 1.36.6.2: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing 2007/12/04 13:03:09 tbe 1.36.6.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [0aa396b5d82b707533e7268116af156b61a69adf]

INTEGRATION: CWS calcshare_DEV300 (1.9.376); FILE MERGED 2007/12/04 13:02:34 tbe 1.9.376.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [87583ec946ac26c47e9984e8a293c03c21f71cd2]

INTEGRATION: CWS calcshare_DEV300 (1.22.126); FILE MERGED 2007/12/04 13:00:51 tbe 1.22.126.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [5b2338c091c3829a384d20d8e57057c804df24d3]

INTEGRATION: CWS calcshare_DEV300 (1.4.524); FILE MERGED 2007/12/04 12:59:09 tbe 1.4.524.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [e88db8b38cf54ae06bbe7ae65c09e87e8f324eb9]

INTEGRATION: CWS calcshare_DEV300 (1.28.146); FILE MERGED 2007/12/04 12:58:26 tbe 1.28.146.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [a91d50ff5f3a2e8a040efc417f056f273cac8e71]

INTEGRATION: CWS calcshare_DEV300 (1.8.14); FILE MERGED 2008/02/25 15:27:00 tbe 1.8.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [5b1494328ffd248907b030cbac956ef6164714c8]

INTEGRATION: CWS odff02 (1.27.30); FILE MERGED 2008/02/29 23:55:45 er 1.27.30.2: #i86514# prepare functions EUROCONVERT and NUMBERVALUE, suppressed 2008/02/29 21:13:32 er 1.27.30.1: #i86514# prepare functions UNICODE and UNICHAR, suppressed


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [10cbf941f949accf091a1da056ea2c108d5d2bd7]

INTEGRATION: CWS odff02 (1.40.4); FILE MERGED 2008/02/28 16:19:51 er 1.40.4.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [572230ea0c1d8139288b82034611657343b2d275]

INTEGRATION: CWS odff02 (1.37.4); FILE MERGED 2008/02/28 16:19:50 er 1.37.4.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [9de5de84c5a61ec0fba1250160552641700256a4]

INTEGRATION: CWS odff02 (1.22.294); FILE MERGED 2008/02/28 16:19:50 er 1.22.294.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [636526a1ae2a61f9834b15fe028d86b83f2eb4b4]

INTEGRATION: CWS odff02 (1.92.210); FILE MERGED 2008/02/29 23:55:43 er 1.92.210.5: #i86514# prepare functions EUROCONVERT and NUMBERVALUE, suppressed 2008/02/29 21:13:30 er 1.92.210.4: #i86514# prepare functions UNICODE and UNICHAR, suppressed 2008/02/28 18:12:50 er 1.92.210.3: removed FIXME test case 2008/02/28 18:10:40 er 1.92.210.2: #i86514# ADDRESS: inserted suppressed 4th parameter; INDIRECT: appended suppressed 2nd parameter 2008/02/28 16:19:48 er 1.92.210.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [95aa8c2fac2058bcf2115e4e78654361cc44fbe8]

INTEGRATION: CWS odff02 (1.70.100); FILE MERGED 2008/03/02 18:33:21 er 1.70.100.2: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas 2008/02/25 18:55:55 er 1.70.100.1: Adjust descriptional strings of errors defined for ERROR.TYPE before UI freeze; usage of error codes to be aligned with ODFF later


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [3601ded180a3a6f40870741d961d370d22e7f087]

INTEGRATION: CWS odff02 (1.3.666); FILE MERGED 2008/02/28 16:19:48 er 1.3.666.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [00711bf2a935e3bf3505626901282f7d056eae6c]

INTEGRATION: CWS odff02 (1.5.296); FILE MERGED 2008/02/28 16:19:48 er 1.5.296.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [9d9b9a8c5a7b0628345ac321840fc08d431a8c8e]

INTEGRATION: CWS odff02 (1.8.296); FILE MERGED 2008/02/28 17:44:19 er 1.8.296.2: insert space before (optional) or (required) against ugliness 2008/02/28 16:19:47 er 1.8.296.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [be3b969815232346a14b19197a0e75485d89bbce]

INTEGRATION: CWS odff02 (1.3.666); FILE MERGED 2008/03/02 20:35:34 er 1.3.666.1: unxsols4 needs exceptions turned on when using STL vector


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [a3d5be28701b689ff6881d082def961dc147ae53]

INTEGRATION: CWS odff02 (1.5.296); FILE MERGED 2008/02/28 16:19:47 er 1.5.296.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [5c0d600b17f9921cc5b1a78ea1ad43dc7756e0a9]

INTEGRATION: CWS odff02 (1.16.46); FILE MERGED 2008/02/28 16:19:47 er 1.16.46.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [6601d83a6740890a7693f968472054c411945caf]

INTEGRATION: CWS odff02 (1.13.266); FILE MERGED 2008/02/28 16:19:47 er 1.13.266.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [fe9249fecebf555d027508d1043b442e97437bc4]

INTEGRATION: CWS odff02 (1.54.190); FILE MERGED 2008/02/28 16:19:47 er 1.54.190.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [6112b312dc7c1458abd6cf3238cb3f1d8bde1870]

INTEGRATION: CWS odff02 (1.75.46); FILE MERGED 2008/02/28 16:19:47 er 1.75.46.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [508cb212eb723853b57a8558dbb3f45775e4d821]

INTEGRATION: CWS odff02 (1.21.44); FILE MERGED 2008/03/02 18:33:21 er 1.21.44.1: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [6eb17066bab16f6d54881f74129d2121c2de57f9]

INTEGRATION: CWS odff02 (1.9.54); FILE MERGED 2008/03/02 18:33:20 er 1.9.54.2: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas 2008/02/28 16:19:47 er 1.9.54.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [7a1619ac43be959dffeb239c9f9f8fbc55d61054]

INTEGRATION: CWS odff02 (1.73.44); FILE MERGED 2008/03/05 13:55:47 er 1.73.44.2: oops, broke functions without parameters 2008/03/02 18:33:20 er 1.73.44.1: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [d130ad09f719ed6e2954891998f1034e4b8da4e8]

INTEGRATION: CWS odff02 (1.24.46); FILE MERGED 2008/02/28 16:19:47 er 1.24.46.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [c21abfbce527452543c1f08683c1c5e6ddaaf4b7]

INTEGRATION: CWS odff02 (1.55.54); FILE MERGED 2008/03/02 18:33:20 er 1.55.54.3: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas 2008/02/29 23:55:42 er 1.55.54.2: #i86514# prepare functions EUROCONVERT and NUMBERVALUE, suppressed 2008/02/29 21:13:30 er 1.55.54.1: #i86514# prepare functions UNICODE and UNICHAR, suppressed


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [7dc678c60282cde3b5ca6a755769c6acc0500126]

INTEGRATION: CWS odff02 (1.22.22); FILE MERGED 2008/03/02 19:37:46 er 1.22.22.1: unxsols4 needs exceptions turned on when using STL vector


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [d3750f835f2d709ed8ef1d21db02782180d738d1]

INTEGRATION: CWS odff02 (1.53.54); FILE MERGED 2008/03/02 18:33:19 er 1.53.54.2: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas 2008/02/28 16:19:46 er 1.53.54.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [8bea28e64e24ea4ee9dca52f191a1edb9fd55bec]

INTEGRATION: CWS odff02 (1.12.210); FILE MERGED 2008/02/29 23:55:42 er 1.12.210.2: #i86514# prepare functions EUROCONVERT and NUMBERVALUE, suppressed 2008/02/29 21:13:29 er 1.12.210.1: #i86514# prepare functions UNICODE and UNICHAR, suppressed


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [07b7359561bedba448ebead4b9aa70f2c532efab]

INTEGRATION: CWS odff02 (1.20.54); FILE MERGED 2008/03/02 18:33:19 er 1.20.54.3: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas 2008/02/29 23:55:42 er 1.20.54.2: #i86514# prepare functions EUROCONVERT and NUMBERVALUE, suppressed 2008/02/29 21:13:29 er 1.20.54.1: #i86514# prepare functions UNICODE and UNICHAR, suppressed


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [46f482e13bf5da0598509e05e793a9fb30cc065d]

INTEGRATION: CWS odff02 (1.19.100); FILE MERGED 2008/03/02 18:33:19 er 1.19.100.2: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas 2008/02/28 16:19:46 er 1.19.100.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [b0c536a62a780bc916f5537f37286fdadc5e1871]

INTEGRATION: CWS odff02 (1.51.98); FILE MERGED 2008/02/28 16:19:46 er 1.51.98.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [da0fb1bd9e3f33c4c31ba3a93bd406c4bc455ad9]

INTEGRATION: CWS odff02 (1.1.2); FILE ADDED 2008/02/28 16:19:46 er 1.1.2.1: #i86514# preparation for additional functions and parameters not yet implemented but to be added as string resources, suppress in UI


2008-03-07  Kurt Zenker  <kz@openoffice.org>  [bc6073cd67b74fc562e2beb2bbcf35578bb9ac08]

INTEGRATION: CWS odff02 (1.18.54); FILE MERGED 2008/03/02 18:33:19 er 1.18.54.3: #i86514# move short error strings from globstr.src to compiler.src in preparation of support for error constants in formulas 2008/02/29 23:55:42 er 1.18.54.2: #i86514# prepare functions EUROCONVERT and NUMBERVALUE, suppressed 2008/02/29 21:13:29 er 1.18.54.1: #i86514# prepare functions UNICODE and UNICHAR, suppressed


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [4f7bc2af0d9b5c2e04795a5f6c15916eea8a2582]

INTEGRATION: CWS odbmacros2 (1.4.68); FILE MERGED 2008/02/04 13:14:00 fs 1.4.68.2: RESYNC: (1.4-1.5); FILE MERGED 2007/12/18 21:17:36 fs 1.4.68.1: #i49133# SfxObjectShell's WorkingDocument changed to CurrentComponent


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [c98aa280c43fbc07b87bf7f44d44f9fe19491470]

INTEGRATION: CWS odbmacros2 (1.9.238); FILE MERGED 2007/12/22 13:36:50 fs 1.9.238.2: during #i49133#: extended the previous change (per AS' request) so the factory method does not take two booleans, but a 64 bit field instead 2007/12/12 11:17:59 fs 1.9.238.1: #i49133# allow creating documents which do not support scripting.

For this purpose, use a DocShell ctor which allows disabling scripting,
plus a service factory creator (::sfx2::createSfxModelFacrtory instead
of ::cppu::createSingleFactory) which extracts this setting from the
arguments given to createInstanceWithArguments

2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7cbcda6b9dc6433c077fe29d07d59cc4cb78be0d]

INTEGRATION: CWS odbmacros2 (1.22.238); FILE MERGED 2007/12/22 13:36:50 fs 1.22.238.2: during #i49133#: extended the previous change (per AS' request) so the factory method does not take two booleans, but a 64 bit field instead 2007/12/12 11:17:59 fs 1.22.238.1: #i49133# allow creating documents which do not support scripting.

For this purpose, use a DocShell ctor which allows disabling scripting,
plus a service factory creator (::sfx2::createSfxModelFacrtory instead
of ::cppu::createSingleFactory) which extracts this setting from the
arguments given to createInstanceWithArguments

2008-03-06  Kurt Zenker  <kz@openoffice.org>  [d93be147620fd5d23d6c5fdf2da403cf1efbb6c9]

INTEGRATION: CWS odbmacros2 (1.43.142); FILE MERGED 2008/03/04 12:10:39 fs 1.43.142.3: RESYNC: (1.44-1.45); FILE MERGED 2008/02/04 13:13:57 fs 1.43.142.2: RESYNC: (1.43-1.44); FILE MERGED 2007/12/12 11:17:32 fs 1.43.142.1: #i49133# ctor now takes new (defaulted) argument which allows to switch off scripting support (by calling SfxObjectShell::SetHasNoBasic)


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [1dd40653c46f6f067ee187a3b647c6b355a853cb]

INTEGRATION: CWS odbmacros2 (1.93.60); FILE MERGED 2008/03/04 12:10:36 fs 1.93.60.3: RESYNC: (1.95-1.96); FILE MERGED 2008/02/04 13:13:55 fs 1.93.60.2: RESYNC: (1.93-1.95); FILE MERGED 2007/12/12 11:17:34 fs 1.93.60.1: #i49133# ctor now takes new (defaulted) argument which allows to switch off scripting support (by calling SfxObjectShell::SetHasNoBasic)


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [60cceb91633b0e06e34a33f4d0f42a45bc188713]

INTEGRATION: CWS odbmacros2 (1.5.18); FILE MERGED 2008/03/04 12:09:49 fs 1.5.18.2: RESYNC: (1.5-1.6); FILE MERGED 2008/01/15 09:56:41 fs 1.5.18.1: some re-factoring of OWizardMachine, RoadmapWizard and derived classes, to prepare the migration UI for #i49133#


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ded7c52ccb81b8405ee70b98108d7b01950720b8]

INTEGRATION: CWS odbmacros2 (1.2.90); FILE MERGED 2008/01/15 09:55:46 fs 1.2.90.1: some re-factoring of OWizardMachine, RoadmapWizard and derived classes, to prepare the migration UI for #i49133#


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7f440411441e926e4c85b75c929ae6eb247f5ff8]

INTEGRATION: CWS odbmacros2 (1.2.90); FILE MERGED 2008/02/11 11:13:08 fs 1.2.90.3: IWizardPage is COMMIT_REASON is deprecated - replace usages with CommitPageReason, while I have an svtools-incompatible CWS 2008/01/30 13:21:56 fs 1.2.90.2: canAdvance made const 2008/01/15 09:55:46 fs 1.2.90.1: some re-factoring of OWizardMachine, RoadmapWizard and derived classes, to prepare the migration UI for #i49133#


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7b1cd95e88924e676c4fc0afc77e08f072685d18]

INTEGRATION: CWS odbmacros2 (1.3.56); FILE MERGED 2008/03/04 12:09:42 fs 1.3.56.4: RESYNC: (1.3-1.4); FILE MERGED 2008/02/11 11:13:08 fs 1.3.56.3: IWizardPage is COMMIT_REASON is deprecated - replace usages with CommitPageReason, while I have an svtools-incompatible CWS 2008/01/30 13:21:56 fs 1.3.56.2: canAdvance made const 2008/01/15 09:55:46 fs 1.3.56.1: some re-factoring of OWizardMachine, RoadmapWizard and derived classes, to prepare the migration UI for #i49133#


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [0ef5e125275890983bb58d3b0f3b4622304cdb08]

INTEGRATION: CWS odbmacros2 (1.2.90); FILE MERGED 2008/01/30 13:21:56 fs 1.2.90.2: canAdvance made const 2008/01/15 09:55:46 fs 1.2.90.1: some re-factoring of OWizardMachine, RoadmapWizard and derived classes, to prepare the migration UI for #i49133#


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [55c03d4f219860237c98f9f638966eca2c35a266]

INTEGRATION: CWS odbmacros2 (1.2.90); FILE MERGED 2008/02/11 11:13:08 fs 1.2.90.1: IWizardPage is COMMIT_REASON is deprecated - replace usages with CommitPageReason, while I have an svtools-incompatible CWS


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [071a1f4d489128bdb17c4331343551f571ca2ccb]

INTEGRATION: CWS odbmacros2 (1.6.28); FILE MERGED 2008/02/11 11:13:07 fs 1.6.28.1: IWizardPage is COMMIT_REASON is deprecated - replace usages with CommitPageReason, while I have an svtools-incompatible CWS


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [17edefec08e88f8c51da0c1ea9f3766e6b344071]

INTEGRATION: CWS odbmacros2 (1.3.56); FILE MERGED 2008/01/15 09:55:46 fs 1.3.56.1: some re-factoring of OWizardMachine, RoadmapWizard and derived classes, to prepare the migration UI for #i49133#


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [b990ffaea73eedf9a49dff8407de25f15e1e3315]

INTEGRATION: CWS odbmacros2 (1.3.28); FILE MERGED 2008/01/15 09:55:46 fs 1.3.28.1: some re-factoring of OWizardMachine, RoadmapWizard and derived classes, to prepare the migration UI for #i49133#


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [decfe68bffe091e8aaa8c0d7936a620630dc255e]

INTEGRATION: CWS chart20_DEV300 (1.7.4); FILE MERGED 2008/02/21 15:59:29 bm 1.7.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [24cd55fb7588a9387be3a9db15b95b69b211ed1a]

INTEGRATION: CWS chart20_DEV300 (1.40.28); FILE MERGED 2008/02/21 15:59:28 bm 1.40.28.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [b9b5bdb653913c552e8ddb04b995718a3f80cca1]

INTEGRATION: CWS chart20_DEV300 (1.5.28); FILE MERGED 2008/02/21 15:59:28 bm 1.5.28.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [70a3f619543f56e5e40460dff889e66f77eae751]

INTEGRATION: CWS chart20_DEV300 (1.4.152); FILE MERGED 2008/02/22 17:13:24 bm 1.4.152.3: #i366# unused variable 2008/02/22 16:51:39 bm 1.4.152.2: #i366# +removeErrorBars() 2008/02/21 15:59:28 bm 1.4.152.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e7986f0c033d1ec5130f22f26b8e9b3de573c2ec]

INTEGRATION: CWS chart20_DEV300 (1.4.76); FILE MERGED 2008/02/21 15:59:28 bm 1.4.76.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [100dc388243e078240c079108a84da58a8635869]

INTEGRATION: CWS chart20_DEV300 (1.3.76); FILE MERGED 2008/02/22 14:53:19 bm 1.3.76.2: #i366# unused code removal, introduce an appendSequence() method rather than using magic numbers (that are btw. valid for normal use) 2008/02/21 15:59:28 bm 1.3.76.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [9153baec4f41c350e65d193032ed01a089339798]

INTEGRATION: CWS chart20_DEV300 (1.9.28); FILE MERGED 2008/02/21 15:59:28 bm 1.9.28.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [0c096aa10ebe393daae75b2b859f1a5306d43fba]

INTEGRATION: CWS chart20_DEV300 (1.14.28); FILE MERGED 2008/02/21 15:59:28 bm 1.14.28.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [283006fe008fb0f8b4f88f5de68508e464a3d52d]

INTEGRATION: CWS chart20_DEV300 (1.3.76); FILE MERGED 2008/02/21 15:59:28 bm 1.3.76.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [f13b4b7fe8414da0fce3f34ec8e808674f4980f1]

INTEGRATION: CWS chart20_DEV300 (1.15.28); FILE MERGED 2008/02/21 15:59:28 bm 1.15.28.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [36b8c32bd18927cf80910f52209245a7cef1a98a]

INTEGRATION: CWS chart20_DEV300 (1.9.28); FILE MERGED 2008/02/21 15:59:28 bm 1.9.28.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [2e7d81d9fa767ff2ba03f4b973ee8ed6abea6feb]

INTEGRATION: CWS chart20_DEV300 (1.4.52); FILE MERGED 2008/02/21 15:59:28 bm 1.4.52.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [c40fa9d96a5396a95025c0ddde222afcf26085fc]

INTEGRATION: CWS chart20_DEV300 (1.7.28); FILE MERGED 2008/02/21 15:59:28 bm 1.7.28.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [d1f6c34b73811b3552670a7af105cb852c9a981c]

INTEGRATION: CWS chart20_DEV300 (1.5.4); FILE MERGED 2008/02/21 15:59:27 bm 1.5.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [c137070203a7c2d69cb741a9101d5074aff63f3c]

INTEGRATION: CWS chart20_DEV300 (1.2.108); FILE MERGED 2008/02/21 15:59:27 bm 1.2.108.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [357a78cc4923d508931655c869bfd1ebeef56046]

INTEGRATION: CWS chart20_DEV300 (1.6.4); FILE MERGED 2008/02/21 15:59:27 bm 1.6.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [4cd9326ef96ff8a5c7812a6f61d0c0e97371a640]

INTEGRATION: CWS chart20_DEV300 (1.2.228); FILE MERGED 2008/02/22 16:51:28 bm 1.2.228.2: #i366# +removeErrorBars() 2008/02/21 15:59:27 bm 1.2.228.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [8c21cb561903f96271b2576bd328d71a87b46f98]

INTEGRATION: CWS chart20_DEV300 (1.2.108); FILE MERGED 2008/02/21 15:59:27 bm 1.2.108.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e8c3a2a7c23c9c3bcdd1b58e879e3b35d0165483]

INTEGRATION: CWS chart20_DEV300 (1.4.22); FILE MERGED 2008/02/22 14:53:41 bm 1.4.22.2: #i366# introduce an appendSequence() method rather than using magic numbers (that are btw. valid for normal use) 2008/02/21 15:59:27 bm 1.4.22.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [5bed0d912e53f8c73377d4f14b03a406894cea6f]

INTEGRATION: CWS chart20_DEV300 (1.5.76); FILE MERGED 2008/02/21 15:59:27 bm 1.5.76.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e03912ce1db0f3123bef62638445bee845652cbc]

INTEGRATION: CWS chart20_DEV300 (1.5.42); FILE MERGED 2008/02/21 15:59:27 bm 1.5.42.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [10bca3f9979d53387eec988b4b7d774f809a7845]

INTEGRATION: CWS chart20_DEV300 (1.6.4); FILE MERGED 2008/02/22 16:52:19 bm 1.6.4.2: #i366# commands for deleting statistics objects 2008/02/21 15:59:27 bm 1.6.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [9fa8336fcdabeca94becc65cfe4bcc4e8ce3ab63]

INTEGRATION: CWS chart20_DEV300 (1.27.4); FILE MERGED 2008/02/22 16:52:19 bm 1.27.4.2: #i366# commands for deleting statistics objects 2008/02/21 15:59:27 bm 1.27.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [6b3e062865625d9ba7b386c11c9ee8fb2b62116d]

INTEGRATION: CWS chart20_DEV300 (1.6.4); FILE MERGED 2008/02/21 15:59:27 bm 1.6.4.2: #i366# error bars from ranges 2008/02/21 15:07:44 bm 1.6.4.1: #i85441# remove selection after deleting objects


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [b58b10cc79ff39f0906a6df9513eb9fe4ac9c295]

INTEGRATION: CWS chart20_DEV300 (1.31.4); FILE MERGED 2008/02/21 15:59:27 bm 1.31.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [b1ca9a36781b3640fd6dfa1af4b69fde45409ad2]

INTEGRATION: CWS chart20_DEV300 (1.14.4); FILE MERGED 2008/02/22 16:52:19 bm 1.14.4.2: #i366# commands for deleting statistics objects 2008/02/21 15:59:27 bm 1.14.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [f9a630db7d14ccb2eb66f831b131d5c91328af33]

INTEGRATION: CWS chart20_DEV300 (1.10.4); FILE MERGED 2008/02/22 16:52:19 bm 1.10.4.3: #i366# commands for deleting statistics objects 2008/02/21 15:59:27 bm 1.10.4.2: #i366# error bars from ranges 2008/02/21 15:07:44 bm 1.10.4.1: #i85441# remove selection after deleting objects


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7027fd138f3919be32b2c41b3d3cb5af73603763]

INTEGRATION: CWS chart20_DEV300 (1.27.4); FILE MERGED 2008/02/22 16:52:19 bm 1.27.4.2: #i366# commands for deleting statistics objects 2008/02/21 15:59:26 bm 1.27.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7a56bf37cc7e05e84722248224579efb6396ff6a]

INTEGRATION: CWS chart20_DEV300 (1.8.42); FILE MERGED 2008/02/21 15:59:26 bm 1.8.42.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [797f6f0abc69215270b443aa9a85a158386a8824]

INTEGRATION: CWS chart20_DEV300 (1.19.4); FILE MERGED 2008/02/22 15:14:44 bm 1.19.4.2: #i366# use appendSequence() instead of insertSequence( magic ) 2008/02/21 15:59:26 bm 1.19.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [9d90b41339ab42ce6e81099f51320449fd8a4a29]

INTEGRATION: CWS chart20_DEV300 (1.7.4); FILE MERGED 2008/02/21 15:59:26 bm 1.7.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [c73573482ca13adf3105fd3dcd2bcaaebe168ce6]

INTEGRATION: CWS chart20_DEV300 (1.3.4); FILE MERGED 2008/02/21 15:59:26 bm 1.3.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [9d2378160f8de4e2ce9e96b0ebaa97459c7a96f2]

INTEGRATION: CWS chart20_DEV300 (1.1.2); FILE ADDED 2008/02/22 15:15:03 bm 1.1.2.2: #i366# use appendSequence() instead of insertSequence( magic ) 2008/02/21 22:12:25 bm 1.1.2.1: #i366# converter for error bar properties


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e3e7b8e22ba3056dcb4fb1319bf4492a267c05a4]

INTEGRATION: CWS chart20_DEV300 (1.2.4); FILE MERGED 2008/02/29 16:17:47 bm 1.2.4.3: #i10000# declaring Dialog forward. Tinderbox breakage 2008/02/22 16:52:33 bm 1.2.4.2: #i366# correct handling for Writer: uses ranges from outside, but has no range chooser 2008/02/21 15:59:26 bm 1.2.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [2a754831f83cf74e9df2051bb5bc0b30979aa483]

INTEGRATION: CWS chart20_DEV300 (1.9.4); FILE MERGED 2008/02/21 15:59:26 bm 1.9.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [fb8de5aa8e1cb2388aceaeb2e2d009e7d6a995b3]

INTEGRATION: CWS chart20_DEV300 (1.2.4); FILE MERGED 2008/02/21 15:59:26 bm 1.2.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7ef4f126d47e2989bbd218d33a4c3cf02b77dbf8]

INTEGRATION: CWS chart20_DEV300 (1.1.4); FILE ADDED 2008/02/21 16:01:01 bm 1.1.4.2: #i366# moved to inc for broader access 2004/03/19 14:27:54 bm 1.1.4.1: file RangeSelectionListener.hxx was added on branch cws_src680_chart20 on 2008-02-21 16:01:01 +0000


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [a4635c799f815e904fb3ea0f362cbab92ac7ac1a]

INTEGRATION: CWS chart20_DEV300 (1.1.2); FILE ADDED 2008/02/21 16:00:48 bm 1.1.2.1: #i366# moved to inc for broader access


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [5a71a41334256795e3c56545ef691481b8bc4f68]

INTEGRATION: CWS chart20_DEV300 (1.1.2); FILE ADDED 2008/02/21 16:00:39 bm 1.1.2.1: #i366# moved to inc for broader access


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [870131593cde150cfc6e004f654ae1c2051f7bd1]

INTEGRATION: CWS chart20_DEV300 (1.1.2); FILE ADDED 2008/02/21 22:12:04 bm 1.1.2.1: #i366# converter for error bar properties


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [38a2aebe48820daf0c9afaddb3cfc19bb520fa1d]

INTEGRATION: CWS chart20_DEV300 (1.2.4); FILE MERGED 2008/02/25 15:43:24 bm 1.2.4.3: #i366# remove fixed info text 2008/02/25 13:27:32 bm 1.2.4.2: #i366# adapted some field widths, added info text for using error bars from data  using own data table 2008/02/21 15:59:26 bm 1.2.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ac0c35ba6e8632cc6cb2fae4c525fa7b9598beb6]

INTEGRATION: CWS chart20_DEV300 (1.3.4); FILE MERGED 2008/02/21 15:59:26 bm 1.3.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [53e5a0ba6be2cb34e67f9b5d9d029d613a4191af]

INTEGRATION: CWS chart20_DEV300 (1.3.4); FILE MERGED 2008/02/25 15:41:28 bm 1.3.4.3: #i366# hide parameters fixed-line when there are no parameters 2008/02/22 16:51:03 bm 1.3.4.2: #i366# correct handling for Writer: uses ranges from outside, but has no range chooser 2008/02/21 15:59:25 bm 1.3.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [6acd486c970a570b7bdc4d27b312fd32bd64bd57]

INTEGRATION: CWS chart20_DEV300 (1.21.4); FILE MERGED 2008/02/21 15:59:25 bm 1.21.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [aa70b687ef77431343501fa492c7f1197fee9344]

INTEGRATION: CWS chart20_DEV300 (1.2.4); FILE MERGED 2008/02/21 15:59:25 bm 1.2.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [c64d2ab00464b9b274ef1db1f458355bbab5fe40]

INTEGRATION: CWS chart20_DEV300 (1.6.4); FILE MERGED 2008/02/25 15:39:20 bm 1.6.4.2: from data -> from data table 2008/02/21 15:59:25 bm 1.6.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [aed81d86ebd4fb63a1140c9238e4f583db90baae]

INTEGRATION: CWS chart20_DEV300 (1.10.4); FILE MERGED 2008/02/21 15:59:25 bm 1.10.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [8baa00cb6ba9dbb37eb971ec7494092fa3db9fe7]

INTEGRATION: CWS chart20_DEV300 (1.4.56); FILE MERGED 2008/02/21 15:59:25 bm 1.4.56.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [6c18228cf38f0397f095dc33c1422ae51abb6690]

INTEGRATION: CWS chart20_DEV300 (1.4.98); FILE MERGED 2008/02/21 15:59:25 bm 1.4.98.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [2bbb1f99ec66d436d9d0fd699e633d96dcd5785a]

INTEGRATION: CWS chart20_DEV300 (1.3.76); FILE MERGED 2008/02/21 15:59:25 bm 1.3.76.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [33e05e65aee19649935847831dcd2c36b48c814e]

INTEGRATION: CWS chart20_DEV300 (1.5.4); FILE MERGED 2008/02/21 15:59:25 bm 1.5.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [3ccedbc5a812645a2e8c6b83d2687fcf0e491279]

INTEGRATION: CWS odff (1.39.4); FILE MERGED 2008/02/27 18:35:28 er 1.39.4.3: RESYNC: (1.39-1.40); FILE MERGED 2008/02/15 14:23:08 er 1.39.4.2: #i81063# grammar here, grammar there, grammar everywhere 2008/01/25 14:19:42 er 1.39.4.1: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [155fd4f641a366edd65ffb916ec0507ae99a9cd5]

INTEGRATION: CWS chart20_DEV300 (1.4.4); FILE MERGED 2008/02/21 15:59:25 bm 1.4.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [bf6f0c24c8a276797a6abcab47c42e45d5466e6b]

INTEGRATION: CWS odff (1.49.128); FILE MERGED 2008/02/27 18:35:25 er 1.49.128.3: RESYNC: (1.50-1.51); FILE MERGED 2007/08/28 12:55:18 er 1.49.128.2: #i81063# use OpCode 2007/08/27 15:24:21 er 1.49.128.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [3b84a7cb7b4fbfcd793673a1c15d28e74ecd7f11]

INTEGRATION: CWS chart20_DEV300 (1.6.4); FILE MERGED 2008/02/21 15:59:25 bm 1.6.4.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [19023786660c07f8f235f2a7d64990112b14f1ff]

INTEGRATION: CWS odff (1.83.8); FILE MERGED 2008/02/27 18:35:21 er 1.83.8.5: RESYNC: (1.89-1.91); FILE MERGED 2008/01/21 18:51:45 er 1.83.8.4: RESYNC: (1.85-1.89); FILE MERGED 2007/10/23 13:39:23 er 1.83.8.3: RESYNC: (1.83-1.85); FILE MERGED 2007/08/28 12:55:17 er 1.83.8.2: #i81063# use OpCode 2007/08/27 15:24:21 er 1.83.8.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [9220a574cc016730907759f44e80f2f6ddb76713]

INTEGRATION: CWS chart20_DEV300 (1.5.54); FILE MERGED 2008/02/21 15:59:25 bm 1.5.54.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [55781ceea4a78c6ca1f11d5bc0d7af11edb4e3bc]

INTEGRATION: CWS chart20_DEV300 (1.2.108); FILE MERGED 2008/02/21 15:59:25 bm 1.2.108.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [5e760dc17083b6fc96f82e19fd6eff7ffe94bd1c]

INTEGRATION: CWS odff (1.5.38); FILE MERGED 2008/02/27 18:35:18 er 1.5.38.2: RESYNC: (1.5-1.6); FILE MERGED 2008/02/11 18:33:46 er 1.5.38.1: applied gcc 4.1.2 build issue patch from Kohei


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [62dcf307f193f622b45d8a46d96def2ab9261357]

INTEGRATION: CWS chart20_DEV300 (1.3.76); FILE MERGED 2008/02/21 15:59:25 bm 1.3.76.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [4c1d4fd08a35b7eb4e1f57def44e5fa45ca08c60]

INTEGRATION: CWS odff (1.2.4); FILE MERGED 2008/01/21 21:29:54 er 1.2.4.1: ScCompiler::SetCompileEnglish() is gone, adapt to new SetFormulaLanguage() concept


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [4a738f602bb44a8c1703e71dd615f239337420e6]

INTEGRATION: CWS chart20_DEV300 (1.5.56); FILE MERGED 2008/02/21 15:59:25 bm 1.5.56.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [5f63f09e03ef8670a8e405ae6bde63be9bfc8a4e]

INTEGRATION: CWS odff (1.16.158); FILE MERGED 2008/02/15 14:23:08 er 1.16.158.3: #i81063# grammar here, grammar there, grammar everywhere 2008/01/21 18:51:42 er 1.16.158.2: RESYNC: (1.16-1.17); FILE MERGED 2007/09/06 10:43:10 er 1.16.158.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [72fc42182d47b965710c1d6572dac53c7e7feaeb]

INTEGRATION: CWS odff (1.18.60); FILE MERGED 2008/02/15 14:23:08 er 1.18.60.2: #i81063# grammar here, grammar there, grammar everywhere 2007/08/27 15:24:21 er 1.18.60.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [c9f12accd00ccb56b9c20e5c45c6c3c6e3ff0a22]

INTEGRATION: CWS odff (1.14.158); FILE MERGED 2008/02/18 12:44:28 er 1.14.158.4: Mac OSX gcc-4.0.1 does not realize that a variable is not used uninitialized ion this case ... 2008/02/15 14:23:08 er 1.14.158.3: #i81063# grammar here, grammar there, grammar everywhere 2008/01/21 18:51:39 er 1.14.158.2: RESYNC: (1.14-1.15); FILE MERGED 2007/09/06 10:43:10 er 1.14.158.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [267bb42fe5141f33c18f2b6b3cc794cf0861872b]

INTEGRATION: CWS chart20_DEV300 (1.13.42); FILE MERGED 2008/02/21 15:59:25 bm 1.13.42.1: #i366# error bars from ranges


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [a6b726e6a3ccb15fd2b6c7b00b33c59c08b92e82]

INTEGRATION: CWS odff (1.107.34); FILE MERGED 2008/02/27 18:35:14 er 1.107.34.4: RESYNC: (1.109-1.110); FILE MERGED 2008/02/15 14:23:07 er 1.107.34.3: #i81063# grammar here, grammar there, grammar everywhere 2008/01/21 18:51:36 er 1.107.34.2: RESYNC: (1.107-1.109); FILE MERGED 2007/09/06 10:43:10 er 1.107.34.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7a57e62a4fb48413bae63b936d5a6f08a33c5b24]

INTEGRATION: CWS odff (1.16.4); FILE MERGED 2008/02/15 14:23:07 er 1.16.4.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [54d64fc1a371d43c2a05fcb278855ea4df851279]

INTEGRATION: CWS odff (1.40.8); FILE MERGED 2008/02/15 14:23:07 er 1.40.8.2: #i81063# grammar here, grammar there, grammar everywhere 2007/09/06 10:43:10 er 1.40.8.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [8411752a095c95064f4e520eed7f1f5fcdf14192]

INTEGRATION: CWS odff (1.31.4); FILE MERGED 2008/02/27 18:35:10 er 1.31.4.2: RESYNC: (1.31-1.32); FILE MERGED 2008/02/15 14:23:07 er 1.31.4.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7a541ce305f904978b1fd97b751091a925a2c556]

INTEGRATION: CWS odff (1.66.62); FILE MERGED 2008/02/15 14:23:07 er 1.66.62.3: #i81063# grammar here, grammar there, grammar everywhere 2008/01/21 18:51:32 er 1.66.62.2: RESYNC: (1.66-1.67); FILE MERGED 2007/09/06 10:43:09 er 1.66.62.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [73993b728662c77833204e0652eb1cb1affb4a79]

INTEGRATION: CWS odff (1.71.148); FILE MERGED 2008/02/27 18:35:06 er 1.71.148.2: RESYNC: (1.71-1.73); FILE MERGED 2008/02/11 18:33:05 er 1.71.148.1: applied gcc 4.1.2 build issue patch from Kohei


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [0d0eb9084935a9e38add3dfcfb6828944ac6eb7f]

INTEGRATION: CWS odff (1.29.158); FILE MERGED 2008/02/27 18:35:03 er 1.29.158.2: RESYNC: (1.29-1.30); FILE MERGED 2008/02/15 14:23:06 er 1.29.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [da24445eb52a54e3e6b15a5cea868d67091d8455]

INTEGRATION: CWS odff (1.47.158); FILE MERGED 2008/02/15 14:23:06 er 1.47.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [0dde5a289cd8a9b2f4107d4a225caf1a95e6e86b]

INTEGRATION: CWS odff (1.25.158); FILE MERGED 2008/02/27 18:35:00 er 1.25.158.3: RESYNC: (1.25-1.26); FILE MERGED 2008/02/19 08:43:00 erack 1.25.158.2: conditional true-formula doesn't need to be preparsed 2008/02/15 14:23:06 er 1.25.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [839f95b8b4f50860e58dd013a813dec0f586ec22]

INTEGRATION: CWS odff (1.59.158); FILE MERGED 2008/02/27 18:34:57 er 1.59.158.3: RESYNC: (1.59-1.60); FILE MERGED 2008/02/19 08:43:00 erack 1.59.158.2: conditional true-formula doesn't need to be preparsed 2008/02/15 14:23:06 er 1.59.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [3e507a5326b1e0363834906d398dc8728fdd727c]

INTEGRATION: CWS odff (1.66.118); FILE MERGED 2008/02/15 14:23:06 er 1.66.118.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [a8297d7931190ae8e054957b4cb3783e9d2fb54f]

INTEGRATION: CWS odff (1.16.158); FILE MERGED 2008/02/19 08:33:14 erack 1.16.158.2: simple table:cell-range-address is not a formula expression, no brackets used in range 2008/02/15 14:23:06 er 1.16.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [22b819e38c01c6f77700051346319dc933ee784f]

INTEGRATION: CWS odff (1.92.388); FILE MERGED 2008/02/27 18:34:54 er 1.92.388.2: RESYNC: (1.92-1.93); FILE MERGED 2008/02/15 14:23:06 er 1.92.388.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [367718c708038e5c2a4925371a364c55f00afd07]

INTEGRATION: CWS odff (1.127.60); FILE MERGED 2008/02/27 18:34:51 er 1.127.60.3: RESYNC: (1.127-1.128); FILE MERGED 2008/02/19 08:33:14 erack 1.127.60.2: simple table:cell-range-address is not a formula expression, no brackets used in range 2008/02/15 14:23:06 er 1.127.60.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [9ee62088d315e53c6ab5138b6dfa13d31c61cdf6]

INTEGRATION: CWS odff (1.207.60); FILE MERGED 2008/02/27 18:34:46 er 1.207.60.6: RESYNC: (1.208-1.209); FILE MERGED 2008/02/15 14:23:06 er 1.207.60.5: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:08 er 1.207.60.4: #i81063# introduce StorageGrammar per document 2008/01/21 18:51:29 er 1.207.60.3: RESYNC: (1.207-1.208); FILE MERGED 2007/11/23 15:34:42 er 1.207.60.2: WriteNamedExpressions: remove superfluous duplicated getContent of symbols 2007/09/06 10:43:09 er 1.207.60.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [78942f775040cff8d554be80a297950f3a5a87ed]

INTEGRATION: CWS odff (1.25.158); FILE MERGED 2008/02/15 14:23:06 er 1.25.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [daac3b421dfa40dc4bdff4f10ee9dbe499beaa0b]

INTEGRATION: CWS odff (1.24.158); FILE MERGED 2008/02/15 14:23:06 er 1.24.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ecd03d17835491072a5114e818006152d3daa51e]

INTEGRATION: CWS odff (1.93.158); FILE MERGED 2008/02/27 18:34:01 er 1.93.158.2: RESYNC: (1.93-1.94); FILE MERGED 2008/02/15 14:23:06 er 1.93.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [f0c382281c167262e25fbc293f6e8c0baf1c0194]

INTEGRATION: CWS odff (1.28.8); FILE MERGED 2008/02/27 18:34:31 er 1.28.8.2: RESYNC: (1.28-1.29); FILE MERGED 2008/02/15 14:23:05 er 1.28.8.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7e7db2f0e297b5fcbfada979309ff77079e4ca2e]

INTEGRATION: CWS odff (1.48.118); FILE MERGED 2008/02/27 18:34:21 er 1.48.118.2: RESYNC: (1.48-1.49); FILE MERGED 2008/02/15 14:23:05 er 1.48.118.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [884de43f944317938d5032c2470621d18ee6909e]

INTEGRATION: CWS odff (1.15.326); FILE MERGED 2008/02/27 18:34:15 er 1.15.326.2: RESYNC: (1.15-1.16); FILE MERGED 2008/02/15 14:23:05 er 1.15.326.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [89ee9dd7e48263165ee8aeac6aea13e930480670]

INTEGRATION: CWS odff (1.26.118); FILE MERGED 2008/02/27 18:34:12 er 1.26.118.3: RESYNC: (1.26-1.27); FILE MERGED 2008/02/15 14:23:05 er 1.26.118.2: #i81063# grammar here, grammar there, grammar everywhere 2007/09/06 10:43:09 er 1.26.118.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [06a341462c2605f66a508608270175a31e6c5abf]

INTEGRATION: CWS odff (1.30.8); FILE MERGED 2008/02/27 18:34:07 er 1.30.8.4: RESYNC: (1.30-1.31); FILE MERGED 2008/02/15 14:23:05 er 1.30.8.3: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:08 er 1.30.8.2: #i81063# introduce StorageGrammar per document 2007/09/06 10:43:09 er 1.30.8.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ddbbeb02402e121ad9d7f242384187ed0cb80e2b]

INTEGRATION: CWS odff (1.21.68); FILE MERGED 2008/02/27 18:33:55 er 1.21.68.2: RESYNC: (1.21-1.23); FILE MERGED 2008/02/15 14:23:05 er 1.21.68.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [592c83326676dcff02307f9f9cb3521fdb1e7c2c]

INTEGRATION: CWS odff (1.6.60); FILE MERGED 2008/02/27 18:33:45 er 1.6.60.2: RESYNC: (1.6-1.7); FILE MERGED 2007/12/19 20:05:23 er 1.6.60.1: #i32341# renamed some ugly German opcodes of functions touched for ocUnion


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [4d262227f750581386c2b30bab7d8db86619cc4d]

INTEGRATION: CWS odff (1.13.58); FILE MERGED 2007/12/19 20:05:23 er 1.13.58.1: #i32341# renamed some ugly German opcodes of functions touched for ocUnion


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [1496515b760648d6cc60f0742a0cc09a01045543]

INTEGRATION: CWS odff (1.12.90); FILE MERGED 2008/01/10 14:40:27 dr 1.12.90.1: import/export error codes


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [0a5351b68aa56335e4e8f37d845aaccaa6b3c80b]

INTEGRATION: CWS odff (1.19.90); FILE MERGED 2008/02/15 13:07:24 dr 1.19.90.2: '#i67777#' 2007/11/29 19:06:47 er 1.19.90.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [b56f30e72b3eb4b68d3ed8d99f912711db52d129]

INTEGRATION: CWS odff (1.24.60); FILE MERGED 2007/12/19 20:05:22 er 1.24.60.1: #i32341# renamed some ugly German opcodes of functions touched for ocUnion


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [0d30b922c68262a69e448151546b9134603674ef]

INTEGRATION: CWS odff (1.15.156); FILE MERGED 2008/02/27 18:33:40 er 1.15.156.2: RESYNC: (1.15-1.16); FILE MERGED 2008/02/15 14:23:05 er 1.15.156.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [74bdea75e096ae8a201de356edd14329992565b7]

INTEGRATION: CWS odff (1.22.64); FILE MERGED 2008/02/15 14:23:05 er 1.22.64.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [18dfc2d3ceead9230bc0b403252e304e79d1f6fd]

INTEGRATION: CWS odff (1.20.8); FILE MERGED 2008/02/27 18:33:35 er 1.20.8.5: RESYNC: (1.20-1.21); FILE MERGED 2008/01/25 14:19:42 er 1.20.8.4: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/10 14:40:48 dr 1.20.8.3: import/export error codes 2008/01/08 21:09:27 er 1.20.8.2: rename StackVar svErr to svUnknown 2007/09/06 10:43:09 er 1.20.8.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [c70783534edfb33dc4987d4f7bcc66207471a3b9]

INTEGRATION: CWS odff (1.12.90); FILE MERGED 2008/01/18 20:45:34 er 1.12.90.2: ScToken base class without OpCode member but implicit ocPush, derived ScOpToken class to inherit from if explicit OpCode needed; this saves 2 bytes on each (!) allocation of ScDoubleToken, ScStringToken, ScSingleRefToken, ScDoubleRefToken. And there are zillions.. 2008/01/10 14:40:48 dr 1.12.90.1: import/export error codes


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [298b2f6a39523abd1a3ae79ce10ae4a3fb0a4a63]

INTEGRATION: CWS odff (1.90.68); FILE MERGED 2008/02/27 18:33:23 er 1.90.68.2: RESYNC: (1.90-1.91); FILE MERGED 2008/02/15 14:23:05 er 1.90.68.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [01327a05b0e9464ec9677144f1dc859f00de7e1d]

INTEGRATION: CWS odff (1.44.60); FILE MERGED 2008/02/27 18:33:16 er 1.44.60.3: RESYNC: (1.44-1.45); FILE MERGED 2008/01/10 14:40:48 dr 1.44.60.2: import/export error codes 2007/11/29 19:06:47 er 1.44.60.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [1e105a8acf3fd7915da89aaaa231b746b8a3a236]

INTEGRATION: CWS odff (1.48.60); FILE MERGED 2008/02/27 18:33:09 er 1.48.60.6: RESYNC: (1.48-1.49); FILE MERGED 2008/02/15 14:23:05 er 1.48.60.5: #i81063# grammar here, grammar there, grammar everywhere 2008/02/15 13:07:24 dr 1.48.60.4: '#i67777#' 2008/01/25 14:19:42 er 1.48.60.3: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/10 14:40:48 dr 1.48.60.2: import/export error codes 2007/11/29 19:06:47 er 1.48.60.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [d66dfa2168cc56d2f7111653a3a2c610125d4e0e]

INTEGRATION: CWS odff (1.29.30); FILE MERGED 2008/02/27 18:33:02 er 1.29.30.23: RESYNC: (1.29-1.30); FILE MERGED 2008/02/20 16:41:51 er 1.29.30.22: #i32340# ISBLANK needs to distinguish between inherited / non-inherited emptiness; corrected ISNUMBER and ISTEXT/ISNONTEXT handling of svEmptyCell 2008/02/15 14:23:04 er 1.29.30.21: #i81063# grammar here, grammar there, grammar everywhere 2008/02/06 16:34:49 er 1.29.30.20: Non-const GetMatrix() is private and unused but must be implemented to satisfy vtable linkage 2008/02/05 17:59:06 er 1.29.30.19: #i77280# treat undefined name as usual ocBad ScStringOpToken, so ISERROR(undefinedname) yields TRUE; => ocBad doesn't terminate compilation anymore. 2008/01/31 15:34:23 er 1.29.30.18: #i32340# ScFormulaResult, third wave 2008/01/24 20:42:17 er 1.29.30.17: #i32340# ScFormulaResult, handle error code and matrix clone 2008/01/24 16:41:01 er 1.29.30.16: #i32340# variable cell result ScFormulaResult, second wave 2008/01/21 19:53:59 er 1.29.30.15: IF_NOT_OPCODE_ERROR macro has parameters, also if expanded empty in PRODUCT version 2008/01/18 20:45:34 er 1.29.30.14: ScToken base class without OpCode member but implicit ocPush, derived ScOpToken class to inherit from if explicit OpCode needed; this saves 2 bytes on each (!) allocation of ScDoubleToken, ScStringToken, ScSingleRefToken, ScDoubleRefToken. And there are zillions.. 2008/01/17 17:31:34 er 1.29.30.13: #i32340# variable cell result ScFormulaResult, first wave 2008/01/10 16:54:28 er 1.29.30.12: introduce ScErrorToken, get rid of secondary error stack 2008/01/10 13:45:12 dr 1.29.30.11: #i10000# wntmsci10.pro compiler warning 2008/01/08 21:09:27 er 1.29.30.10: rename StackVar svErr to svUnknown 2008/01/08 20:44:14 er 1.29.30.9: get rid of distracting binfilter legacy 2008/01/08 19:45:44 er 1.29.30.8: get rid of distracting binfilter legacy 2008/01/08 19:30:27 er 1.29.30.7: get rid of distracting binfilter legacy 2007/12/17 15:59:34 er 1.29.30.6: #i32341# union / range list operator ocUnion; first wave 2007/12/05 22:13:38 er 1.29.30.5: #i4904# ocRange: treat Flag3D as expected by stringizer and UI 2007/12/05 13:30:38 er 1.29.30.4: ExtendRangeReference: don't reuse shared references 2007/12/05 11:52:59 er 1.29.30.3: #i4904# ocRange: merge tokenized SingleRef+ocRange+SingleRef into DoubleRef to save memory 2007/11/30 18:30:55 er 1.29.30.2: #i4904# ocRange: if sheet reference not given adjust inherited from first SingleRef 2007/11/29 19:06:47 er 1.29.30.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e217be377a7ab5df3526f39151a8963d0e005af8]

INTEGRATION: CWS odff (1.5.318); FILE MERGED 2008/02/07 13:10:02 er 1.5.318.4: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2007/12/05 22:13:38 er 1.5.318.3: #i4904# ocRange: treat Flag3D as expected by stringizer and UI 2007/11/30 18:30:55 er 1.5.318.2: #i4904# ocRange: if sheet reference not given adjust inherited from first SingleRef 2007/11/29 19:06:46 er 1.5.318.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [a4bfeef9e74f6b344a1f420e33f015da96c17244]

INTEGRATION: CWS odff (1.24.158); FILE MERGED 2008/02/27 21:07:17 er 1.24.158.7: IsReference: adapt to changes, ScCompiler SetCompileEnglish() and SetCompileXML() are gone 2008/02/27 18:32:54 er 1.24.158.6: RESYNC: (1.25-1.26); FILE MERGED 2008/01/25 14:19:41 er 1.24.158.5: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/08 19:45:44 er 1.24.158.4: get rid of distracting binfilter legacy 2008/01/08 19:30:27 er 1.24.158.3: get rid of distracting binfilter legacy 2007/09/06 10:43:08 er 1.24.158.2: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ... 2007/08/27 15:24:20 er 1.24.158.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [5ce1bd3299cc97e17e5464734432b8b79e8c1a82]

INTEGRATION: CWS odff (1.8.126); FILE MERGED 2007/12/19 20:15:02 er 1.8.126.4: #i32341# ocUnion: functions handling svRefList 2007/10/23 16:56:05 er 1.8.126.3: resync to xmlfilter02 2007/08/31 10:13:27 er 1.8.126.2: resync to cws xmlfilter02 2007/08/27 15:24:20 er 1.8.126.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [1c2086da26da29b9992ba7e20d7f4ca94cab82fa]

INTEGRATION: CWS odff (1.22.32); FILE MERGED 2008/01/21 20:08:58 er 1.22.32.4: unxsols4: STL needs exceptions turned on 2008/01/21 18:51:23 er 1.22.32.3: RESYNC: (1.24-1.27); FILE MERGED 2007/10/23 13:31:14 er 1.22.32.2: RESYNC: (1.22-1.24); FILE MERGED 2007/08/27 15:24:20 er 1.22.32.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [566fb2ed777661ce748adb23bb872945d30b75af]

INTEGRATION: CWS odff (1.5.156); FILE MERGED 2008/02/07 13:10:02 er 1.5.156.1: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future.


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [d4cbea13f20cf98cc7135022c59a88f99439b81c]

INTEGRATION: CWS odff (1.27.34); FILE MERGED 2008/02/20 16:41:51 er 1.27.34.10: #i32340# ISBLANK needs to distinguish between inherited / non-inherited emptiness; corrected ISNUMBER and ISTEXT/ISNONTEXT handling of svEmptyCell 2008/02/07 13:10:02 er 1.27.34.9: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/02/06 21:26:12 er 1.27.34.8: #i8946# FREQUENCY sort arbitrary bins; applied patch from <kohei> with slight modifications 2008/02/06 10:16:23 er 1.27.34.7: for clarity and safety on signed types, comparison on >0 2008/01/31 22:15:17 er 1.27.34.6: more consistent error codes, IllegalArgument vs. IllegalParameter 2008/01/31 20:05:33 er 1.27.34.5: now that we have error token: some PopError() instead of Pop() and some PushError(...) instead of SetError(...) 2008/01/31 15:34:23 er 1.27.34.4: #i32340# ScFormulaResult, third wave 2008/01/21 18:51:20 er 1.27.34.3: RESYNC: (1.27-1.29); FILE MERGED 2008/01/10 16:54:28 er 1.27.34.2: introduce ScErrorToken, get rid of secondary error stack 2007/12/19 20:15:02 er 1.27.34.1: #i32341# ocUnion: functions handling svRefList


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [994faf0389cccaccdac8a9f7282850b497e10525]

INTEGRATION: CWS odff (1.20.30); FILE MERGED 2008/02/13 15:50:10 dr 1.20.30.10: 'warnings' 2008/02/07 13:10:02 er 1.20.30.9: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/02/06 23:37:34 er 1.20.30.8: #i8946# QuickSort: when shuffling sort array, index order has to follow 2008/02/06 21:26:12 er 1.20.30.7: #i8946# FREQUENCY sort arbitrary bins; applied patch from <kohei> with slight modifications 2008/02/06 10:16:23 er 1.20.30.6: for clarity and safety on signed types, comparison on >0 2008/02/05 17:59:05 er 1.20.30.5: #i77280# treat undefined name as usual ocBad ScStringOpToken, so ISERROR(undefinedname) yields TRUE; => ocBad doesn't terminate compilation anymore. 2008/01/31 22:15:16 er 1.20.30.4: more consistent error codes, IllegalArgument vs. IllegalParameter 2008/01/31 20:05:33 er 1.20.30.3: now that we have error token: some PopError() instead of Pop() and some PushError(...) instead of SetError(...) 2008/01/10 16:54:27 er 1.20.30.2: introduce ScErrorToken, get rid of secondary error stack 2007/12/19 20:15:02 er 1.20.30.1: #i32341# ocUnion: functions handling svRefList


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [316efb612a9856287ab4c3babdcb601c4df72519]

INTEGRATION: CWS odff (1.33.56); FILE MERGED 2008/02/27 18:32:49 er 1.33.56.13: RESYNC: (1.33-1.34); FILE MERGED 2008/02/07 13:10:02 er 1.33.56.12: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/02/06 10:16:23 er 1.33.56.11: for clarity and safety on signed types, comparison on >0 2008/01/31 22:15:16 er 1.33.56.10: more consistent error codes, IllegalArgument vs. IllegalParameter 2008/01/31 20:05:33 er 1.33.56.9: now that we have error token: some PopError() instead of Pop() and some PushError(...) instead of SetError(...) 2008/01/31 15:34:23 er 1.33.56.8: #i32340# ScFormulaResult, third wave 2008/01/25 14:19:41 er 1.33.56.7: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/10 16:54:27 er 1.33.56.6: introduce ScErrorToken, get rid of secondary error stack 2008/01/08 21:09:27 er 1.33.56.5: rename StackVar svErr to svUnknown 2008/01/04 19:37:56 er 1.33.56.4: #i32341# ScUnionFunc: set #REF! if needed 2007/12/19 20:15:02 er 1.33.56.3: #i32341# ocUnion: functions handling svRefList 2007/12/17 15:59:34 er 1.33.56.2: #i32341# union / range list operator ocUnion; first wave 2007/11/29 19:06:46 er 1.33.56.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ab6ad9003c095e77072a2c05854b82728a418d7d]

INTEGRATION: CWS odff (1.51.38); FILE MERGED 2008/02/27 18:32:38 er 1.51.38.21: RESYNC: (1.53-1.55); FILE MERGED 2008/02/20 16:41:50 er 1.51.38.20: #i32340# ISBLANK needs to distinguish between inherited / non-inherited emptiness; corrected ISNUMBER and ISTEXT/ISNONTEXT handling of svEmptyCell 2008/02/13 15:50:10 dr 1.51.38.19: 'warnings' 2008/02/12 11:21:12 er 1.51.38.18: #i77280# make CHOOSE() select an endpoint path in case of error so ISERROR(CHOOSE()) yields TRUE 2008/02/07 13:10:02 er 1.51.38.17: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/02/06 22:27:46 er 1.51.38.16: #i8947# MATCH with array/matrix as lookup parameter; applied patch from <kohei> 2008/02/06 10:16:22 er 1.51.38.15: for clarity and safety on signed types, comparison on >0 2008/01/31 22:15:16 er 1.51.38.14: more consistent error codes, IllegalArgument vs. IllegalParameter 2008/01/31 20:05:32 er 1.51.38.13: now that we have error token: some PopError() instead of Pop() and some PushError(...) instead of SetError(...) 2008/01/31 15:34:23 er 1.51.38.12: #i32340# ScFormulaResult, third wave 2008/01/21 18:51:17 er 1.51.38.11: RESYNC: (1.51-1.53); FILE MERGED 2008/01/11 19:54:56 er 1.51.38.10: ScErrorToken matrix cases 2008/01/10 16:54:27 er 1.51.38.9: introduce ScErrorToken, get rid of secondary error stack 2008/01/08 15:39:30 er 1.51.38.8: #i38759# ScMin/ScMax: for MS-Excel interoperability the result of an empty set (no value at all in the arguments given) is zero instead of error; even if that could be regarded as mathematical nonsense..; patch from Lv Yue <lvyue>, slightly modified 2008/01/07 19:42:01 er 1.51.38.7: #i85000# shrinking the source range is the better approach 2008/01/07 13:11:42 er 1.51.38.6: #i85000# ScSumIf: Xcl silent cutaway style ignoring out-of-sheet-bounds 2008/01/07 11:37:32 er 1.51.38.5: #i85000# ScSumIf: if 3rd parameter use only upper left and take geometry from 1st parameter; patch from Kohei 2008/01/04 18:43:15 er 1.51.38.4: #i32341# make AREAS() handle RefList 2008/01/04 16:45:15 er 1.51.38.3: #i32341# get rid of INDEX() special treatment and use RefList instead 2007/12/19 20:15:02 er 1.51.38.2: #i32341# ocUnion: functions handling svRefList 2007/12/17 15:59:34 er 1.51.38.1: #i32341# union / range list operator ocUnion; first wave


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [582091fbe73587e65256c949683cec3104c590c7]

INTEGRATION: CWS odff (1.70.56); FILE MERGED 2008/02/27 18:32:10 er 1.70.56.25: RESYNC: (1.72-1.73); FILE MERGED 2008/02/15 15:49:13 er 1.70.56.24: experimental English function names and separators in UI 2008/02/15 14:23:04 er 1.70.56.23: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:07 er 1.70.56.22: #i81063# introduce StorageGrammar per document 2008/02/07 13:10:01 er 1.70.56.21: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/02/06 11:14:22 er 1.70.56.20: #i77280# Factor: no restriction on the position where an ocBad can occur; if no ocOpen follows it is a plain bad name, anywhere. 2008/02/05 17:59:05 er 1.70.56.19: #i77280# treat undefined name as usual ocBad ScStringOpToken, so ISERROR(undefinedname) yields TRUE; => ocBad doesn't terminate compilation anymore. 2008/01/25 14:19:41 er 1.70.56.18: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/18 20:45:34 er 1.70.56.17: ScToken base class without OpCode member but implicit ocPush, derived ScOpToken class to inherit from if explicit OpCode needed; this saves 2 bytes on each (!) allocation of ScDoubleToken, ScStringToken, ScSingleRefToken, ScDoubleRefToken. And there are zillions.. 2008/01/10 13:39:24 dr 1.70.56.16: #i10000# wntmsci10.pro compiler warning 2008/01/04 16:45:14 er 1.70.56.15: #i32341# get rid of INDEX() special treatment and use RefList instead 2007/12/19 20:15:02 er 1.70.56.14: #i32341# ocUnion: functions handling svRefList 2007/12/17 15:59:33 er 1.70.56.13: #i32341# union / range list operator ocUnion; first wave 2007/12/06 16:41:05 er 1.70.56.12: range operator is SC_COMPILER_C_CHAR, don't fall into i18n 2007/12/05 11:52:59 er 1.70.56.11: #i4904# ocRange: merge tokenized SingleRef+ocRange+SingleRef into DoubleRef to save memory 2007/11/30 18:30:54 er 1.70.56.10: #i4904# ocRange: if sheet reference not given adjust inherited from first SingleRef 2007/11/29 19:06:46 er 1.70.56.9: #i4904# range operator ocRange 2007/11/23 15:20:53 er 1.70.56.8: correct convention for A1_ODF 2007/10/23 13:30:32 er 1.70.56.7: RESYNC: (1.70-1.71); FILE MERGED 2007/10/12 15:53:43 er 1.70.56.6: resync to cws xmlfilter02 2007/09/06 11:44:52 er 1.70.56.5: resynced to cws xmlfilter02 2007/09/06 10:43:08 er 1.70.56.4: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ... 2007/08/30 14:42:56 er 1.70.56.3: resynced to cws xmlfilter02 2007/08/29 14:33:51 er 1.70.56.2: #i81063# SetFormulaLanguage, prepare replacement of SetCompileEnglish and SetCompileXML 2007/08/27 15:24:20 er 1.70.56.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [41642546e7a93e1963444fd93ae5f2de1ef12019]

INTEGRATION: CWS odff (1.26.158); FILE MERGED 2008/02/27 18:31:51 er 1.26.158.2: RESYNC: (1.26-1.27); FILE MERGED 2008/02/15 14:23:04 er 1.26.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [44e9ef004fccb56b311f423c3425bc0976e40837]

INTEGRATION: CWS odff (1.5.318); FILE MERGED 2008/01/31 15:34:22 er 1.5.318.1: #i32340# ScFormulaResult, third wave


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ad5c320dec68d8c4dbeedbe83022be4d67f1c6dc]

INTEGRATION: CWS odff (1.54.64); FILE MERGED 2008/01/03 20:27:43 er 1.54.64.3: looks like we should continue to support MULTIRANGE for legacy reasons 2007/12/17 15:59:33 er 1.54.64.2: #i32341# union / range list operator ocUnion; first wave 2007/12/07 14:35:27 er 1.54.64.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [a65b5903a88dd1cb197e8909c0a374f12c5e5e6c]

INTEGRATION: CWS odff (1.31.38); FILE MERGED 2008/02/07 13:10:01 er 1.31.38.12: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/02/06 21:26:12 er 1.31.38.11: #i8946# FREQUENCY sort arbitrary bins; applied patch from <kohei> with slight modifications 2008/02/05 17:59:04 er 1.31.38.10: #i77280# treat undefined name as usual ocBad ScStringOpToken, so ISERROR(undefinedname) yields TRUE; => ocBad doesn't terminate compilation anymore. 2008/01/31 22:15:16 er 1.31.38.9: more consistent error codes, IllegalArgument vs. IllegalParameter 2008/01/31 15:34:22 er 1.31.38.8: #i32340# ScFormulaResult, third wave 2008/01/17 17:31:33 er 1.31.38.7: #i32340# variable cell result ScFormulaResult, first wave 2008/01/11 19:54:56 er 1.31.38.6: ScErrorToken matrix cases 2008/01/10 16:54:26 er 1.31.38.5: introduce ScErrorToken, get rid of secondary error stack 2008/01/04 18:43:15 er 1.31.38.4: #i32341# make AREAS() handle RefList 2007/12/19 20:15:01 er 1.31.38.3: #i32341# ocUnion: functions handling svRefList 2007/12/17 15:59:33 er 1.31.38.2: #i32341# union / range list operator ocUnion; first wave 2007/11/29 19:06:46 er 1.31.38.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [15594096b8e6d6c31cee89a6fbf4dcf7efe6cb62]

INTEGRATION: CWS odff (1.21.62); FILE MERGED 2008/02/15 14:23:04 er 1.21.62.2: #i81063# grammar here, grammar there, grammar everywhere 2007/09/06 10:43:08 er 1.21.62.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [27fcbfcdef912fb03e1ce74e361387759e6e7d87]

INTEGRATION: CWS odff (1.14.60); FILE MERGED 2008/02/27 18:31:26 er 1.14.60.4: RESYNC: (1.15-1.16); FILE MERGED 2008/02/15 14:23:04 er 1.14.60.3: #i81063# grammar here, grammar there, grammar everywhere 2008/01/21 18:51:12 er 1.14.60.2: RESYNC: (1.14-1.15); FILE MERGED 2007/09/06 10:43:08 er 1.14.60.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [bfb83fcc88e5aad88a845ce76e5de0ec4e0e2b8d]

INTEGRATION: CWS odff (1.81.4); FILE MERGED 2008/02/27 18:31:20 er 1.81.4.2: RESYNC: (1.81-1.84); FILE MERGED 2008/01/31 15:34:22 er 1.81.4.1: #i32340# ScFormulaResult, third wave


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [b069ed65df780b1f54482bc23ad95e53b4bb087b]

INTEGRATION: CWS odff (1.18.158); FILE MERGED 2008/02/27 18:31:06 er 1.18.158.6: RESYNC: (1.19-1.20); FILE MERGED 2008/02/15 14:23:04 er 1.18.158.5: #i81063# grammar here, grammar there, grammar everywhere 2008/01/18 20:45:34 er 1.18.158.4: ScToken base class without OpCode member but implicit ocPush, derived ScOpToken class to inherit from if explicit OpCode needed; this saves 2 bytes on each (!) allocation of ScDoubleToken, ScStringToken, ScSingleRefToken, ScDoubleRefToken. And there are zillions.. 2008/01/17 17:31:33 er 1.18.158.3: #i32340# variable cell result ScFormulaResult, first wave 2007/08/28 12:55:17 er 1.18.158.2: #i81063# use OpCode 2007/08/27 15:24:20 er 1.18.158.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [02a24d12163c23b31478db492752545aae63ff50]

INTEGRATION: CWS odff (1.67.38); FILE MERGED 2008/02/27 18:31:00 er 1.67.38.4: RESYNC: (1.68-1.70); FILE MERGED 2008/02/07 19:37:07 er 1.67.38.3: #i81063# introduce StorageGrammar per document 2008/01/21 18:51:08 er 1.67.38.2: RESYNC: (1.67-1.68); FILE MERGED 2008/01/08 19:45:44 er 1.67.38.1: get rid of distracting binfilter legacy


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [56223953ad5e24f416d46ab6b28cdb3424cf0484]

INTEGRATION: CWS ause084_DEV300 (1.15.246); FILE MERGED 2007/12/18 10:09:34 hjs 1.15.246.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [00f00927d3bd0b4c27088504aeca60140f471847]

INTEGRATION: CWS odff (1.19.158); FILE MERGED 2008/01/31 15:34:22 er 1.19.158.2: #i32340# ScFormulaResult, third wave 2008/01/08 22:19:49 er 1.19.158.1: #i38759# value iterator's GetFirst/GetNext: correct behavior does not reset double& rValue to 0.0 if no value found


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e8ef70b2de1e54847f2270899113478744eca4dd]

INTEGRATION: CWS ause084_DEV300 (1.18.206); FILE MERGED 2008/01/24 17:38:26 hjs 1.18.206.2: RESYNC: (1.18-1.19); FILE MERGED 2007/12/18 10:09:33 hjs 1.18.206.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e4a43dc443fb57ab36fff6fddcbdd4c66ba41c07]

INTEGRATION: CWS odff (1.21.158); FILE MERGED 2008/02/27 18:30:53 er 1.21.158.5: RESYNC: (1.22-1.23); FILE MERGED 2008/02/15 14:23:03 er 1.21.158.4: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:07 er 1.21.158.3: #i81063# introduce StorageGrammar per document 2008/01/21 18:51:05 er 1.21.158.2: RESYNC: (1.21-1.22); FILE MERGED 2007/09/06 10:43:08 er 1.21.158.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [62b7c78ab807444ba2fdcc809a4b7cfd0c1c1b95]

INTEGRATION: CWS ause084_DEV300 (1.4.246); FILE MERGED 2007/12/18 10:09:33 hjs 1.4.246.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [77179b336d2691a054b91e05570a174996ae22c7]

INTEGRATION: CWS odff (1.24.158); FILE MERGED 2008/02/27 18:30:45 er 1.24.158.2: RESYNC: (1.24-1.25); FILE MERGED 2008/02/15 14:23:03 er 1.24.158.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [34c7607eda68dcd695b0716be2df18c91c15c88b]

INTEGRATION: CWS ause084_DEV300 (1.5.614); FILE MERGED 2007/12/18 10:09:33 hjs 1.5.614.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [1ec3c8eab2607d7c6cd7ea6d70a5af4837f0ab0b]

INTEGRATION: CWS odff (1.29.124); FILE MERGED 2008/02/27 18:30:33 er 1.29.124.2: RESYNC: (1.29-1.30); FILE MERGED 2008/01/08 19:30:27 er 1.29.124.1: get rid of distracting binfilter legacy


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [13ffbe7a45b9ac01cf445c90459dbb0e997c061e]

INTEGRATION: CWS ause084_DEV300 (1.4.614); FILE MERGED 2007/12/18 10:09:33 hjs 1.4.614.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [be250ed83ffdcf303f8c5abd3c97c22ad181b830]

INTEGRATION: CWS odff (1.25.36); FILE MERGED 2008/02/27 18:30:25 er 1.25.36.2: RESYNC: (1.25-1.28); FILE MERGED 2008/01/25 14:19:41 er 1.25.36.1: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [fbde529accc17764445580b5fc19e6ebcc5dc927]

INTEGRATION: CWS odff (1.30.90); FILE MERGED 2008/02/27 18:30:17 er 1.30.90.8: RESYNC: (1.30-1.31); FILE MERGED 2008/02/15 14:23:03 er 1.30.90.7: #i81063# grammar here, grammar there, grammar everywhere 2008/01/31 15:34:22 er 1.30.90.6: #i32340# ScFormulaResult, third wave 2008/01/25 14:19:41 er 1.30.90.5: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/24 20:42:16 er 1.30.90.4: #i32340# ScFormulaResult, handle error code and matrix clone 2008/01/24 16:41:00 er 1.30.90.3: #i32340# variable cell result ScFormulaResult, second wave 2008/01/17 17:31:33 er 1.30.90.2: #i32340# variable cell result ScFormulaResult, first wave 2007/09/06 10:43:07 er 1.30.90.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [0cb2e19f3e5b02adc3a8bdedb1a234e89d7b3c01]

INTEGRATION: CWS ause084_DEV300 (1.4.614); FILE MERGED 2007/12/18 10:09:32 hjs 1.4.614.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e480ffe945e49afed9b3396a208b8e3bdf45e6a2]

INTEGRATION: CWS ause084_DEV300 (1.2.614); FILE MERGED 2007/12/18 10:09:32 hjs 1.2.614.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [e56f546db7272836355bc1310fa9e5ea9c564632]

INTEGRATION: CWS odff (1.39.60); FILE MERGED 2008/02/27 18:30:09 er 1.39.60.12: RESYNC: (1.39-1.40); FILE MERGED 2008/02/15 14:23:03 er 1.39.60.11: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:07 er 1.39.60.10: #i81063# introduce StorageGrammar per document 2008/01/31 15:34:22 er 1.39.60.9: #i32340# ScFormulaResult, third wave 2008/01/25 14:19:41 er 1.39.60.8: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/24 20:42:16 er 1.39.60.7: #i32340# ScFormulaResult, handle error code and matrix clone 2008/01/24 16:41:00 er 1.39.60.6: #i32340# variable cell result ScFormulaResult, second wave 2008/01/21 23:07:27 er 1.39.60.5: GetResultDimensions: MSVC didn't get it that pMat _can't_ be used unitialized here 2008/01/17 17:31:33 er 1.39.60.4: #i32340# variable cell result ScFormulaResult, first wave 2008/01/08 19:30:27 er 1.39.60.3: get rid of distracting binfilter legacy 2007/11/29 19:06:46 er 1.39.60.2: #i4904# range operator ocRange 2007/09/06 10:43:07 er 1.39.60.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [97b9d50d139fbed6e9e65eef202bef3becce3ba6]

INTEGRATION: CWS ause084_DEV300 (1.8.208); FILE MERGED 2008/02/14 16:36:26 hjs 1.8.208.2: RESYNC: (1.8-1.9); FILE MERGED 2007/12/18 10:09:32 hjs 1.8.208.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ffe5ee03766f64271fbd0b14f890151b8899a25d]

INTEGRATION: CWS odff (1.9.40); FILE MERGED 2008/01/30 14:57:29 er 1.9.40.1: AreaBroadcast: increment iterator before it may get invalidated during broadcast if a Notify() calls EndlisteningArea()


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7101671ea2e17623de32762afd093d30228a644e]

INTEGRATION: CWS ause084_DEV300 (1.3.614); FILE MERGED 2007/12/18 10:09:32 hjs 1.3.614.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [098b3f53b0fc9401c88e16106308f9ec70cf14aa]

INTEGRATION: CWS odff (1.13.64); FILE MERGED 2007/09/06 10:43:07 er 1.13.64.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [5c626dcbe19a9684f9461ec327fe338492ffa7e7]

INTEGRATION: CWS ause084_DEV300 (1.8.614); FILE MERGED 2007/12/18 10:09:31 hjs 1.8.614.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [897a95457aca3a57d85aafca261c0ea280413a71]

INTEGRATION: CWS odff (1.75.4); FILE MERGED 2008/02/27 18:30:01 er 1.75.4.2: RESYNC: (1.75-1.76); FILE MERGED 2008/02/15 14:23:03 er 1.75.4.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [af040620aeb28b1406e500908fe40e25439bad87]

INTEGRATION: CWS odff (1.10.30); FILE MERGED 2008/01/25 14:19:40 er 1.10.30.5: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/18 20:45:33 er 1.10.30.4: ScToken base class without OpCode member but implicit ocPush, derived ScOpToken class to inherit from if explicit OpCode needed; this saves 2 bytes on each (!) allocation of ScDoubleToken, ScStringToken, ScSingleRefToken, ScDoubleRefToken. And there are zillions.. 2008/01/08 19:30:26 er 1.10.30.3: get rid of distracting binfilter legacy 2007/12/05 11:52:58 er 1.10.30.2: #i4904# ocRange: merge tokenized SingleRef+ocRange+SingleRef into DoubleRef to save memory 2007/11/29 19:06:45 er 1.10.30.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [63fc70965cbe75bc66785db677da2428e1846876]

INTEGRATION: CWS ause084_DEV300 (1.8.396); FILE MERGED 2008/02/14 16:36:30 hjs 1.8.396.2: RESYNC: (1.8-1.9); FILE MERGED 2007/12/18 10:09:31 hjs 1.8.396.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [f736dbc0a9e50f74b52322b21b9d12fa82ed97b2]

INTEGRATION: CWS odff (1.13.60); FILE MERGED 2008/02/20 16:41:50 er 1.13.60.18: #i32340# ISBLANK needs to distinguish between inherited / non-inherited emptiness; corrected ISNUMBER and ISTEXT/ISNONTEXT handling of svEmptyCell 2008/02/15 14:23:03 er 1.13.60.17: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 13:10:01 er 1.13.60.16: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/02/06 16:15:17 er 1.13.60.15: warning-free 2008/02/05 17:59:04 er 1.13.60.14: #i77280# treat undefined name as usual ocBad ScStringOpToken, so ISERROR(undefinedname) yields TRUE; => ocBad doesn't terminate compilation anymore. 2008/01/31 15:34:21 er 1.13.60.13: #i32340# ScFormulaResult, third wave 2008/01/24 20:42:16 er 1.13.60.12: #i32340# ScFormulaResult, handle error code and matrix clone 2008/01/24 16:41:00 er 1.13.60.11: #i32340# variable cell result ScFormulaResult, second wave 2008/01/21 20:07:30 er 1.13.60.10: satisfy compilers 2008/01/21 19:58:40 er 1.13.60.9: make 'enum is int' conditional return happy 2008/01/18 20:45:33 er 1.13.60.8: ScToken base class without OpCode member but implicit ocPush, derived ScOpToken class to inherit from if explicit OpCode needed; this saves 2 bytes on each (!) allocation of ScDoubleToken, ScStringToken, ScSingleRefToken, ScDoubleRefToken. And there are zillions.. 2008/01/17 17:31:33 er 1.13.60.7: #i32340# variable cell result ScFormulaResult, first wave 2008/01/10 16:54:26 er 1.13.60.6: introduce ScErrorToken, get rid of secondary error stack 2008/01/08 21:09:26 er 1.13.60.5: rename StackVar svErr to svUnknown 2008/01/08 20:44:14 er 1.13.60.4: get rid of distracting binfilter legacy 2008/01/08 19:30:26 er 1.13.60.3: get rid of distracting binfilter legacy 2007/12/17 15:59:33 er 1.13.60.2: #i32341# union / range list operator ocUnion; first wave 2007/11/29 19:06:45 er 1.13.60.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ebdb2afe28a645562f4fb55d49f36dbefd7f3e87]

INTEGRATION: CWS ause084_DEV300 (1.9.246); FILE MERGED 2007/12/18 10:09:31 hjs 1.9.246.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [36b427528c5259a3f289a17da9ca92a3732fad34]

INTEGRATION: CWS odff (1.8.90); FILE MERGED 2008/01/31 15:34:21 er 1.8.90.3: #i32340# ScFormulaResult, third wave 2008/01/24 20:42:16 er 1.8.90.2: #i32340# ScFormulaResult, handle error code and matrix clone 2007/08/30 09:57:29 er 1.8.90.1: resynced to cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [18a32f96bcc86ab20f82dcac861ec1cd7476fc64]

INTEGRATION: CWS ause084_DEV300 (1.5.614); FILE MERGED 2007/12/18 10:09:31 hjs 1.5.614.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [81cac08279b63b1a9bce7f0660a470c8d282f1b4]

INTEGRATION: CWS ause084_DEV300 (1.4.354); FILE MERGED 2007/12/18 10:09:30 hjs 1.4.354.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [141e2368bf9568fcad06be593c3369f0d184f772]

INTEGRATION: CWS odff (1.5.526); FILE MERGED 2008/02/07 13:10:01 er 1.5.526.3: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2007/12/17 15:59:33 er 1.5.526.2: #i32341# union / range list operator ocUnion; first wave 2007/11/29 19:06:45 er 1.5.526.1: #i4904# range operator ocRange


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [8fa43a82b1f41c2e44355aac348f6b785da52a00]

INTEGRATION: CWS ause084_DEV300 (1.16.614); FILE MERGED 2007/12/18 10:09:30 hjs 1.16.614.1: #i78233# remove PDBTARGET and friends


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [07ded877f8a9e7b56174af33aa30206acb4b5560]

INTEGRATION: CWS odff (1.4.498); FILE MERGED 2008/01/17 17:31:33 er 1.4.498.1: #i32340# variable cell result ScFormulaResult, first wave


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [8c2611a2acc2daaac9094f8a24b1e45e4929ebaa]

INTEGRATION: CWS odff (1.12.158); FILE MERGED 2008/02/27 18:29:45 er 1.12.158.4: RESYNC: (1.13-1.14); FILE MERGED 2008/01/21 18:50:59 er 1.12.158.3: RESYNC: (1.12-1.13); FILE MERGED 2008/01/08 19:45:43 er 1.12.158.2: get rid of distracting binfilter legacy 2007/09/06 10:43:07 er 1.12.158.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [7a4c7b51ea769cebc9de3409d1468cb62031ed42]

INTEGRATION: CWS odff (1.19.60); FILE MERGED 2007/12/19 20:05:55 er 1.19.60.2: #i32341# renamed some ugly German opcodes of functions touched for ocUnion 2007/08/27 15:24:19 er 1.19.60.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [a65575b0fd5cbb542fe50a530c4f70372c7cd25c]

INTEGRATION: CWS odff (1.5.4); FILE MERGED 2008/02/15 14:23:03 er 1.5.4.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [8f8519c1b7c172984a1689338bbd97d0f19ea09b]

INTEGRATION: CWS odff (1.1.2); FILE ADDED 2008/02/15 14:23:03 er 1.1.2.4: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:07 er 1.1.2.3: #i81063# introduce StorageGrammar per document 2007/11/23 13:54:44 er 1.1.2.2: extractRefConvention: there's kEnglishBit ... 2007/09/06 10:40:21 er 1.1.2.1: new ScGrammar, grammars digested by ScCompiler


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [135adf6fb3707ca9edbcc041eaf91b0b782392c9]

INTEGRATION: CWS odff (1.1.2); FILE ADDED 2008/02/15 14:23:03 er 1.1.2.6: #i81063# grammar here, grammar there, grammar everywhere 2008/01/31 15:34:21 er 1.1.2.5: #i32340# ScFormulaResult, third wave 2008/01/25 14:19:40 er 1.1.2.4: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/24 20:42:16 er 1.1.2.3: #i32340# ScFormulaResult, handle error code and matrix clone 2008/01/24 16:41:00 er 1.1.2.2: #i32340# variable cell result ScFormulaResult, second wave 2008/01/17 17:31:33 er 1.1.2.1: #i32340# variable cell result ScFormulaResult, first wave


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [a2a6bb471a08add1230bfa210bd92f1f3d537266]

INTEGRATION: CWS odff (1.7.526); FILE MERGED 2008/02/15 14:23:03 er 1.7.526.3: #i81063# grammar here, grammar there, grammar everywhere 2008/01/21 18:50:56 er 1.7.526.2: RESYNC: (1.7-1.8); FILE MERGED 2007/09/06 10:43:07 er 1.7.526.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [aa41cacca63bae088915bd16d2e26438e6669ea1]

INTEGRATION: CWS odff (1.106.4); FILE MERGED 2008/02/27 18:29:41 er 1.106.4.4: RESYNC: (1.106-1.107); FILE MERGED 2008/02/15 14:23:03 er 1.106.4.3: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:07 er 1.106.4.2: #i81063# introduce StorageGrammar per document 2008/01/31 15:34:21 er 1.106.4.1: #i32340# ScFormulaResult, third wave


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [07d308f979302a77182e353bd67b05fe24fdc709]

INTEGRATION: CWS odff (1.7.158); FILE MERGED 2008/01/08 22:19:48 er 1.7.158.1: #i38759# value iterator's GetFirst/GetNext: correct behavior does not reset double& rValue to 0.0 if no value found


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [1bd6e71913c78da54f59be43496512fce78bf2af]

INTEGRATION: CWS odff (1.10.158); FILE MERGED 2008/02/15 14:23:03 er 1.10.158.4: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:07 er 1.10.158.3: #i81063# introduce StorageGrammar per document 2008/01/21 18:50:53 er 1.10.158.2: RESYNC: (1.10-1.11); FILE MERGED 2007/09/06 10:43:07 er 1.10.158.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [505a0e358bee8555531d06345170cb79ed19b6e6]

INTEGRATION: CWS odff (1.32.36); FILE MERGED 2008/02/15 14:23:03 er 1.32.36.14: #i81063# grammar here, grammar there, grammar everywhere 2008/02/07 19:37:06 er 1.32.36.13: #i81063# introduce StorageGrammar per document 2008/02/07 13:10:01 er 1.32.36.12: Always wanted to do this, now I'm taking the opportunity: :retab on selected files and all tabs are gone, producing hopefully easier to read diffs in future. 2008/01/21 18:50:50 er 1.32.36.11: RESYNC: (1.33-1.34); FILE MERGED 2008/01/08 19:30:26 er 1.32.36.10: get rid of distracting binfilter legacy 2007/12/17 15:59:33 er 1.32.36.9: #i32341# union / range list operator ocUnion; first wave 2007/11/30 18:30:54 er 1.32.36.8: #i4904# ocRange: if sheet reference not given adjust inherited from first SingleRef 2007/11/29 19:06:45 er 1.32.36.7: #i4904# range operator ocRange 2007/10/23 17:02:20 er 1.32.36.6: resync to xmlfilter02 2007/10/23 13:26:34 er 1.32.36.5: RESYNC: (1.32-1.33); FILE MERGED 2007/09/06 11:44:52 er 1.32.36.4: resynced to cws xmlfilter02 2007/09/06 10:43:07 er 1.32.36.3: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ... 2007/08/29 14:33:51 er 1.32.36.2: #i81063# SetFormulaLanguage, prepare replacement of SetCompileEnglish and SetCompileXML 2007/08/27 15:24:19 er 1.32.36.1: #i81063# OpCodeMap: update/join/merge relevant parts from cws xmlfilter02


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [06683fd2b62f4401a4a9fd2b04324231673b498e]

INTEGRATION: CWS odff (1.31.4); FILE MERGED 2008/02/15 14:23:03 er 1.31.4.1: #i81063# grammar here, grammar there, grammar everywhere


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [a4b7f71d2b995b359d824ef3e65f286209d44a7a]

INTEGRATION: CWS odff (1.25.64); FILE MERGED 2008/02/27 20:48:07 er 1.25.64.10: erroneously removed grammar.hxx during resync 2008/02/27 18:29:10 er 1.25.64.9: RESYNC: (1.25-1.27); FILE MERGED 2008/02/15 14:23:02 er 1.25.64.8: #i81063# grammar here, grammar there, grammar everywhere 2008/02/01 16:40:18 er 1.25.64.7: clarify on SetDouble()/SetString() usage; no SetHybrid() necessary/possible as investigation showed 2008/01/31 15:34:21 er 1.25.64.6: #i32340# ScFormulaResult, third wave 2008/01/25 14:19:40 er 1.25.64.5: #i32340# ScFormulaResult, start differentiating between compiler/code token error and interpreter/result error; make iterations work with result errors 2008/01/24 16:41:00 er 1.25.64.4: #i32340# variable cell result ScFormulaResult, second wave 2008/01/17 17:31:33 er 1.25.64.3: #i32340# variable cell result ScFormulaResult, first wave 2008/01/08 19:30:26 er 1.25.64.2: get rid of distracting binfilter legacy 2007/09/06 10:43:07 er 1.25.64.1: #i81063# new ScGrammar; get rid of SetCompileEnglish, SetCompileXML, GetEnglishFormula, ...


2008-03-06  Kurt Zenker  <kz@openoffice.org>  [ea169701fd8e898b14e166f59a6810ac519081dd]

INTEGRATION: CWS odff (1.13.90); FILE MERGED 2008/02/27 18:29:21 er 1.13.90.3: RESYNC: (1.14-1.15); FILE MERGED 2007/10/23 13:26:12 er 1.13.90.2: RESYNC: (1.13-1.14); FILE MERGED 2007/08/29 14:33:51 er 1.13.90.1: #i81063# SetFormulaLanguage, prepare replacement of SetCompileEnglish and SetCompileXML


2008-03-06  Rüdiger Timm  <rt@openoffice.org>  [4f4a9ca62205ddaabe83a21c8d5e62e572fb54be]

#i10000# We are sccomp now, not scext


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [013ad5952e599fdc34cc5501a733122655e5e612]

INTEGRATION: CWS aquavcl05_DEV300 (1.64.12); FILE MERGED 2008/02/14 15:55:10 pl 1.64.12.2: RESYNC: (1.64-1.65); FILE MERGED 2008/02/11 10:06:37 nn 1.64.12.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [78dc01a74b207b509cf6cad389a241758ffd0d9f]

INTEGRATION: CWS aquavcl05_DEV300 (1.44.24); FILE MERGED 2008/02/14 15:55:00 pl 1.44.24.2: RESYNC: (1.44-1.45); FILE MERGED 2008/02/11 10:06:37 nn 1.44.24.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [b832712c32e182e926e1abbe510949e87cadef7d]

INTEGRATION: CWS aquavcl05_DEV300 (1.17.6); FILE MERGED 2008/02/14 15:55:14 pl 1.17.6.2: RESYNC: (1.17-1.18); FILE MERGED 2008/02/11 10:06:36 nn 1.17.6.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [9ab1238d09f06914cf274a51fa283f0ea98aff10]

INTEGRATION: CWS aquavcl05_DEV300 (1.47.286); FILE MERGED 2008/02/11 10:06:36 nn 1.47.286.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [10b753b683aed7e155cabcf755d9c4ef4c6b4b47]

INTEGRATION: CWS aquavcl05_DEV300 (1.90.14); FILE MERGED 2008/02/14 15:54:55 pl 1.90.14.2: RESYNC: (1.90-1.91); FILE MERGED 2008/02/11 10:06:36 nn 1.90.14.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [d3815160d19ed6c1cfd2e6e5fa88cae61b5c21a8]

INTEGRATION: CWS aquavcl05_DEV300 (1.21.38); FILE MERGED 2008/02/14 15:55:19 pl 1.21.38.2: RESYNC: (1.21-1.23); FILE MERGED 2008/02/11 10:06:35 nn 1.21.38.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [e957e45dcc7302ebce98a03cfb7b9bcf432843fb]

INTEGRATION: CWS aquavcl05_DEV300 (1.81.12); FILE MERGED 2008/02/14 15:55:29 pl 1.81.12.2: RESYNC: (1.81-1.84); FILE MERGED 2008/02/11 10:06:35 nn 1.81.12.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [2205e215fd708fa9ec9d9dd2e80f6fa143ce55df]

INTEGRATION: CWS aquavcl05_DEV300 (1.32.130); FILE MERGED 2008/02/14 15:55:41 pl 1.32.130.2: RESYNC: (1.32-1.33); FILE MERGED 2008/02/11 10:06:35 nn 1.32.130.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [d472d929b95e30281c6554b2afe2d64fbb219436]

INTEGRATION: CWS aquavcl05_DEV300 (1.24.248); FILE MERGED 2008/02/11 10:06:35 nn 1.24.248.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [a2f353dcc94a19d99a4c42d1815eab6e2800eb18]

INTEGRATION: CWS aquavcl05_DEV300 (1.106.12); FILE MERGED 2008/02/14 15:55:36 pl 1.106.12.2: RESYNC: (1.106-1.107); FILE MERGED 2008/02/11 10:06:35 nn 1.106.12.1: #i85992# single progress for updating row heights of all sheets after loading


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [933560ee03f5e3081eca6602944d0cc0b3b2ae97]

INTEGRATION: CWS xmlfilter03_DEV300 (1.17.2); FILE MERGED 2008/02/06 10:59:49 dr 1.17.2.1: shared formula property for defined names


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [56360ff212c397616ba8fa8e7dc184a073afb25c]

INTEGRATION: CWS xmlfilter03_DEV300 (1.75.2); FILE MERGED 2008/02/18 16:14:07 dr 1.75.2.2: RESYNC: (1.75-1.76); FILE MERGED 2008/02/06 10:59:37 dr 1.75.2.1: shared formula property for defined names


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [84a7cf33470efbdc558a71dcb499fd329ce80d4d]

INTEGRATION: CWS rptchart01_DEV300 (1.4.28); FILE MERGED 2008/01/25 08:31:23 oj 1.4.28.1: #i85225# allow CachedDataSequence to be created as uno service


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [5b533731649c3f40c77da3fc6b6fa0c2e923baa6]

INTEGRATION: CWS rptchart01_DEV300 (1.3.44); FILE MERGED 2008/01/29 06:55:47 oj 1.3.44.3: compile error 2008/01/28 06:27:47 oj 1.3.44.2: RESYNC: (1.3-1.4); FILE MERGED 2008/01/25 08:31:22 oj 1.3.44.1: #i85225# allow CachedDataSequence to be created as uno service


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [52a69daff4ad9f64f825e6e600da443aa5bf6999]

INTEGRATION: CWS rptchart01_DEV300 (1.6.64); FILE MERGED 2008/01/25 08:32:20 oj 1.6.64.1: #i85225# allow dochandler and new filter for report chart filtering


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [a45770216f7ef3f5d3fad004258ba8276944e99e]

INTEGRATION: CWS rptchart01_DEV300 (1.3.76); FILE MERGED 2008/01/25 08:32:20 oj 1.3.76.1: #i85225# allow dochandler and new filter for report chart filtering


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [39f44a5bb90dab4461cf1ebb700e7bf6afdeaa40]

INTEGRATION: CWS rptchart01_DEV300 (1.3.78); FILE MERGED 2008/01/28 06:27:44 oj 1.3.78.2: RESYNC: (1.3-1.4); FILE MERGED 2008/01/25 08:30:26 oj 1.3.78.1: #i85225# allow CachedDataSequence to be created as uno service


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [5d8db2bc973618c4fe6e1d01dd2c2a7e50c7112a]

INTEGRATION: CWS rptchart01_DEV300 (1.4.98); FILE MERGED 2008/01/25 08:30:25 oj 1.4.98.1: #i85225# allow CachedDataSequence to be created as uno service


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [1de5df28b8c84acabeea92a20e68443466953e5e]

INTEGRATION: CWS rptchart01_DEV300 (1.6.64); FILE MERGED 2008/01/25 06:58:30 oj 1.6.64.1: #i85225# new uno dialog for chart type


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [1e165e97a27e559263407e4b2fce51bba29f6b16]

INTEGRATION: CWS rptchart01_DEV300 (1.1.2); FILE ADDED 2008/01/29 06:55:47 oj 1.1.2.2: compile error 2008/01/25 06:58:50 oj 1.1.2.1: #i85225# new uno dialog for chart type


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [d464bc633c2c552ff8f19dc36222ee1f07d7f5b1]

INTEGRATION: CWS rptchart01_DEV300 (1.16.26); FILE MERGED 2008/03/05 09:13:08 oj 1.16.26.2: RESYNC: (1.16-1.17); FILE MERGED 2008/01/25 06:58:30 oj 1.16.26.1: #i85225# new uno dialog for chart type


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [7f1e05aa462d97c9576bc16be3a9945917c4aa73]

INTEGRATION: CWS rptchart01_DEV300 (1.1.2); FILE ADDED 2008/01/25 06:58:59 oj 1.1.2.1: #i85225# new uno dialog for chart type


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [d53f0e7ae5de0530446b136000f694a2ed75af5a]

INTEGRATION: CWS nativeprintdlg01_DEV300 (1.71.12); FILE MERGED 2008/02/05 19:19:51 ericb 1.71.12.2: RESYNC: (1.71-1.72); FILE MERGED 2008/02/05 17:30:58 ericb 1.71.12.1: #i77579# fix the issue where only the selected sheet was printed (all sheets appear now)


2008-03-05  Kurt Zenker  <kz@openoffice.org>  [8db284dabf191c05a7eeb018f3960fd1c2ee39e8]

INTEGRATION: CWS nativeprintdlg01_DEV300 (1.40.14); FILE MERGED 2008/02/21 09:48:01 pl 1.40.14.3: RESYNC: (1.41-1.42); FILE MERGED 2008/02/05 19:19:48 ericb 1.40.14.2: RESYNC: (1.40-1.41); FILE MERGED 2008/02/05 17:30:58 ericb 1.40.14.1: #i77579# fix the issue where only the selected sheet was printed (all sheets appear now)


2008-03-03  Oliver Bolte  <obo@openoffice.org>  [7efe0d42106a3e16d87867633de0bd383fad68aa]

#i86604# WaE initialize variable gcc-4.0.2


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [9eda6598ce1e933efd0338c5e78000008a2dc716]

INTEGRATION: CWS custommeta (1.8.386); FILE MERGED 2008/02/26 10:40:59 mst 1.8.386.2: RESYNC: (1.8-1.9); FILE MERGED 2008/01/21 11:47:04 mst 1.8.386.1: - sc/source/ui/docshell/docsh3.cxx:   + use XDocumentProperties instead of SfxDocumentInfo - sc/source/core/data/drwlayer.cxx, sc/source/filter/xml/xmlwrap.cxx:   + remove unneeded includes - sc/source/ui/docshell/makefile.mk:   + enable exceptions for docsh3.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [09ebf2fe725cb3ce30b3e2e53199c3004ea280e5]

INTEGRATION: CWS custommeta (1.30.140); FILE MERGED 2008/02/01 10:37:20 mst 1.30.140.2: RESYNC: (1.30-1.32); FILE MERGED 2008/01/21 11:47:04 mst 1.30.140.1: - sc/source/ui/docshell/docsh3.cxx:   + use XDocumentProperties instead of SfxDocumentInfo - sc/source/core/data/drwlayer.cxx, sc/source/filter/xml/xmlwrap.cxx:   + remove unneeded includes - sc/source/ui/docshell/makefile.mk:   + enable exceptions for docsh3.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [28938ad73d6335f3e74c47014f3e96a2d2f4015e]

INTEGRATION: CWS custommeta (1.66.146); FILE MERGED 2008/01/21 11:47:03 mst 1.66.146.1: - sc/source/ui/docshell/docsh3.cxx:   + use XDocumentProperties instead of SfxDocumentInfo - sc/source/core/data/drwlayer.cxx, sc/source/filter/xml/xmlwrap.cxx:   + remove unneeded includes - sc/source/ui/docshell/makefile.mk:   + enable exceptions for docsh3.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [8b31e2f5decdddb24055496d0bcc8d4b4f5e7fef]

INTEGRATION: CWS custommeta (1.92.466); FILE MERGED 2008/02/01 10:37:16 mst 1.92.466.2: RESYNC: (1.92-1.93); FILE MERGED 2007/12/21 12:12:35 mst 1.92.466.1: refactoring for XDocumentProperties import/export: calc - sc/source/filter/xml/xmlimprt.{hxx,cxx}:   + ScXMLDocContext_Impl virtually inherits from SvXMLImportContext   + new class ScXMLFlatDocContext_Impl for flat file ODF;     multiply inherits from ScXMLDocContext_Impl and SvXMLMetaDocumentContext   + refactor ScXMLImport::CreateContext to use SvXMLMetaDocumentContext   + replace method SetStatisticAttributes with SetStatistics - sc/source/filter/xml/xmlexprt.cxx:   + remove the statistics export in _ExportMeta;     this is done in SvXMLMetaExport::Export   + call XDocumentProperties::setDocumentStatistics in _ExportMeta


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [ab8ea9a93fa322df6f4ef88f3d704e3fa6132146]

INTEGRATION: CWS custommeta (1.127.142); FILE MERGED 2008/02/01 10:37:06 mst 1.127.142.2: RESYNC: (1.127-1.128); FILE MERGED 2007/12/21 12:12:35 mst 1.127.142.1: refactoring for XDocumentProperties import/export: calc - sc/source/filter/xml/xmlimprt.{hxx,cxx}:   + ScXMLDocContext_Impl virtually inherits from SvXMLImportContext   + new class ScXMLFlatDocContext_Impl for flat file ODF;     multiply inherits from ScXMLDocContext_Impl and SvXMLMetaDocumentContext   + refactor ScXMLImport::CreateContext to use SvXMLMetaDocumentContext   + replace method SetStatisticAttributes with SetStatistics - sc/source/filter/xml/xmlexprt.cxx:   + remove the statistics export in _ExportMeta;     this is done in SvXMLMetaExport::Export   + call XDocumentProperties::setDocumentStatistics in _ExportMeta


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [3d7602afb2286f900b8674c99b5b76ffe1c17d8f]

INTEGRATION: CWS custommeta (1.207.142); FILE MERGED 2008/02/01 10:37:02 mst 1.207.142.2: RESYNC: (1.207-1.209); FILE MERGED 2007/12/21 12:12:35 mst 1.207.142.1: refactoring for XDocumentProperties import/export: calc - sc/source/filter/xml/xmlimprt.{hxx,cxx}:   + ScXMLDocContext_Impl virtually inherits from SvXMLImportContext   + new class ScXMLFlatDocContext_Impl for flat file ODF;     multiply inherits from ScXMLDocContext_Impl and SvXMLMetaDocumentContext   + refactor ScXMLImport::CreateContext to use SvXMLMetaDocumentContext   + replace method SetStatisticAttributes with SetStatistics - sc/source/filter/xml/xmlexprt.cxx:   + remove the statistics export in _ExportMeta;     this is done in SvXMLMetaExport::Export   + call XDocumentProperties::setDocumentStatistics in _ExportMeta


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [8df000aaea4ca6c7ddd6635a0b67dc29dddd810c]

INTEGRATION: CWS custommeta (1.4.236); FILE MERGED 2008/01/16 17:07:07 mst 1.4.236.1: - sc/source/filter/html/{htmlpars.cxx,htmlexp.cxx}:   + use XDocumentProperties instead of SfxDocumentInfo when importing and     exporting - sc/source/filter/html/makefile.mk:   + enable exceptions for htmlexp.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [a92c5cd28b850c417a43db2f55de81ea9a75092b]

INTEGRATION: CWS custommeta (1.31.206); FILE MERGED 2008/02/01 10:36:59 mst 1.31.206.2: RESYNC: (1.31-1.32); FILE MERGED 2008/01/16 17:07:07 mst 1.31.206.1: - sc/source/filter/html/{htmlpars.cxx,htmlexp.cxx}:   + use XDocumentProperties instead of SfxDocumentInfo when importing and     exporting - sc/source/filter/html/makefile.mk:   + enable exceptions for htmlexp.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [56e2eac0e8a3221f501429f4f50eb684bb81fe4f]

INTEGRATION: CWS custommeta (1.35.142); FILE MERGED 2008/02/01 10:36:55 mst 1.35.142.2: RESYNC: (1.35-1.36); FILE MERGED 2008/01/16 17:07:07 mst 1.35.142.1: - sc/source/filter/html/{htmlpars.cxx,htmlexp.cxx}:   + use XDocumentProperties instead of SfxDocumentInfo when importing and     exporting - sc/source/filter/html/makefile.mk:   + enable exceptions for htmlexp.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [5775c5ceee276f74c5d5f426192a147ead564b00]

INTEGRATION: CWS custommeta (1.40.170); FILE MERGED 2008/01/16 15:51:56 mst 1.40.170.1: - sc/source/filter/excel/{excimp8.cxx,expop2.cxx}:   + use XDocumentProperties instead of SfxDocumentInfo when importing and     exporting - sc/source/filter/excel/makefile.mk:   + enable exceptions for excimp8.cxx, expop2.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [e98f2ae491dcea21b7ed9ac475170aeb8c34cf38]

INTEGRATION: CWS custommeta (1.31.142); FILE MERGED 2008/02/01 17:28:43 mst 1.31.142.3: - sc/source/filter/excel/{excimp8.cxx,expop2.cxx}:   + adapt to sfx2 namespace and GetPreviewMetaFile interface change 2008/01/23 13:48:57 mst 1.31.142.2: - sc/source/filter/excel/expop2.cxx:   + adapt to SaveOlePropertySet interface change 2008/01/16 15:51:56 mst 1.31.142.1: - sc/source/filter/excel/{excimp8.cxx,expop2.cxx}:   + use XDocumentProperties instead of SfxDocumentInfo when importing and     exporting - sc/source/filter/excel/makefile.mk:   + enable exceptions for excimp8.cxx, expop2.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [782756928b3f1efaebdb191cd85e80b0b69a8f97]

INTEGRATION: CWS custommeta (1.120.142); FILE MERGED 2008/02/01 17:28:43 mst 1.120.142.4: - sc/source/filter/excel/{excimp8.cxx,expop2.cxx}:   + adapt to sfx2 namespace and GetPreviewMetaFile interface change 2008/02/01 10:36:52 mst 1.120.142.3: RESYNC: (1.120-1.122); FILE MERGED 2008/01/16 15:51:56 mst 1.120.142.2: - sc/source/filter/excel/{excimp8.cxx,expop2.cxx}:   + use XDocumentProperties instead of SfxDocumentInfo when importing and     exporting - sc/source/filter/excel/makefile.mk:   + enable exceptions for excimp8.cxx, expop2.cxx 2007/12/18 18:09:58 mst 1.120.142.1: - sc/source/filter/excel/excimp8.cxx:   adapt to removal of SfxDocumentInfo::operator=


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [4a001a3a5ddd7b6703730ffa0a82afc5ba065819]

INTEGRATION: CWS custommeta (1.52.58); FILE MERGED 2008/02/01 10:36:49 mst 1.52.58.2: RESYNC: (1.52-1.53); FILE MERGED 2008/01/21 11:47:03 mst 1.52.58.1: - sc/source/ui/docshell/docsh3.cxx:   + use XDocumentProperties instead of SfxDocumentInfo - sc/source/core/data/drwlayer.cxx, sc/source/filter/xml/xmlwrap.cxx:   + remove unneeded includes - sc/source/ui/docshell/makefile.mk:   + enable exceptions for docsh3.cxx


2008-02-26  Oliver Bolte  <obo@openoffice.org>  [70af1223211c7bc75b5e04626ffd4992ad4bdb3a]

INTEGRATION: CWS custommeta (1.24.198); FILE MERGED 2008/01/25 11:55:52 mst 1.24.198.1: - sc/inc/docuno.hxx:   + remove unneeded includes


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [eb63e5d2dd652461947851f8aa5422efc03b3d07]

INTEGRATION: CWS supdremove02 (1.6.224); FILE MERGED 2008/01/25 15:50:22 rt 1.6.224.1: #i85482# Remove UPD from library names.


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [c2e8b7f468ad16621cba28554d41796fbc4cee95]

INTEGRATION: CWS supdremove02 (1.44.108); FILE MERGED 2008/01/25 15:50:22 rt 1.44.108.1: #i85482# Remove UPD from library names.


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [3fa33ed859be9f3810dd795c8b7bcf408237e5e8]

INTEGRATION: CWS supdremove02 (1.53.10); FILE MERGED 2008/01/25 15:50:21 rt 1.53.10.1: #i85482# Remove UPD from library names.


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [3b7803444606a01da564bb52273042d300d98fd7]

INTEGRATION: CWS supdremove02 (1.12.260); FILE MERGED 2008/01/25 15:50:20 rt 1.12.260.1: #i85482# Remove UPD from library names.


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [3e0eaa32fa04c349fbe6967305d858fea3d62499]

INTEGRATION: CWS supdremove02 (1.13.118); FILE MERGED 2008/01/25 15:50:19 rt 1.13.118.1: #i85482# Remove UPD from library names.


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [017fc427b0f886f3b75b1fcca024317f5365822e]

INTEGRATION: CWS supdremove02 (1.2.92); FILE MERGED 2008/01/28 10:59:31 rt 1.2.92.1: #i85482# Remove UPD from library name


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [0cce272fbe1ed3f028caf0e4c9d0cbafeecd074f]

INTEGRATION: CWS supdremove02 (1.6.34); FILE MERGED 2008/01/28 10:59:31 rt 1.6.34.1: #i85482# Remove UPD from library name


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [a3d6369115a3b6013c8c7a745fc7b167c8b205ef]

INTEGRATION: CWS supdremove02 (1.8.92); FILE MERGED 2008/01/28 10:59:31 rt 1.8.92.1: #i85482# Remove UPD from library name


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [8ef2e6c75d120f006a55cd0fd188da72ca38d328]

INTEGRATION: CWS supdremove02 (1.25.22); FILE MERGED 2008/01/28 10:59:30 rt 1.25.22.1: #i85482# Remove UPD from library name


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [4850520b5ab5cdab1903049916fef1565b2d07d1]

INTEGRATION: CWS supdremove02 (1.5.92); FILE MERGED 2008/01/28 10:59:30 rt 1.5.92.1: #i85482# Remove UPD from library name


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [1c06d4d0fd07d46da5cbce1499d155d16e74c41d]

INTEGRATION: CWS supdremove02 (1.10.92); FILE MERGED 2008/01/28 10:59:30 rt 1.10.92.1: #i85482# Remove UPD from library name


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [aae497da5835143086c1e5dbb1b7582907904f71]

INTEGRATION: CWS supdremove02 (1.14.42); FILE MERGED 2008/01/28 10:40:57 rt 1.14.42.1: #i85482# Remove UPD from library name


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [5d22a6450f48c436663400d93c35abd00bafb359]

INTEGRATION: CWS supdremove02 (1.13.36); FILE MERGED 2008/01/31 13:46:40 rt 1.13.36.1: #i85482# Remove UPD from resource name.


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [c964ec20a6213a1739c8a1ae141361ce2b33ee93]

INTEGRATION: CWS supdremove02 (1.17.18); FILE MERGED 2008/01/28 10:40:57 rt 1.17.18.1: #i85482# Remove UPD from library name


2008-02-25  Oliver Bolte  <obo@openoffice.org>  [9cdf54d52b428f40b9fa69f744e7195c3a559bb3]

INTEGRATION: CWS supdremove02 (1.43.64); FILE MERGED 2008/01/31 16:01:22 rt 1.43.64.2: RESYNC: (1.43-1.44); FILE MERGED 2008/01/31 13:46:40 rt 1.43.64.1: #i85482# Remove UPD from resource name.


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [0d9d69d477560d2afd94e1abdc9ffc50eb79724f]

INTEGRATION: CWS calcselection (1.39.36); FILE MERGED 2008/02/13 19:54:22 nn 1.39.36.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [ba86609f1760ed5d24fc36798b95f01a55d2fc56]

INTEGRATION: CWS calcselection (1.37.108); FILE MERGED 2008/02/13 19:54:21 nn 1.37.108.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [09b2380245b9081542ad00e0251a6e96ea86d32a]

INTEGRATION: CWS calcselection (1.36.66); FILE MERGED 2008/02/13 19:54:21 nn 1.36.66.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [1865a8f4b0fdba2932f30ba55e78b3af35c371ca]

INTEGRATION: CWS calcselection (1.22.84); FILE MERGED 2008/02/13 13:56:00 nn 1.22.84.1: #i86069# transparent cell selection


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [23494bf3de2ee64957c0d55c443e77864f1fab62]

INTEGRATION: CWS calcselection (1.9.382); FILE MERGED 2008/02/13 19:54:21 nn 1.9.382.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [69d4194aee09496d406f75dfba7cca4a532d2be3]

INTEGRATION: CWS calcselection (1.64.18); FILE MERGED 2008/02/13 19:54:21 nn 1.64.18.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [a1fe440002244ac3b05c775df8d1ab7ae87b4967]

INTEGRATION: CWS calcselection (1.34.84); FILE MERGED 2008/02/13 13:56:00 nn 1.34.84.2: #i86069# transparent cell selection 2008/02/13 13:00:39 nn 1.34.84.1: #i86069# new look for column/row headers


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [a62bb0ff078f3556a8e91c55a1bf4e36fc854ba9]

INTEGRATION: CWS calcselection (1.5.358); FILE MERGED 2008/02/13 13:56:00 nn 1.5.358.1: #i86069# transparent cell selection


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [edaa84618ba4012a8ca5bba6e6c3a9978623a808]

INTEGRATION: CWS calcselection (1.19.282); FILE MERGED 2008/02/13 13:00:39 nn 1.19.282.1: #i86069# new look for column/row headers


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [bee704f9977ff818d01ba2f9c5262f01e634e997]

INTEGRATION: CWS calcselection (1.37.18); FILE MERGED 2008/02/13 13:56:00 nn 1.37.18.1: #i86069# transparent cell selection


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [dcc4482e52f6f6c44901e2a386c1da7bfefbfee0]

INTEGRATION: CWS calcselection (1.90.18); FILE MERGED 2008/02/13 13:55:59 nn 1.90.18.1: #i86069# transparent cell selection


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [29a34b09ee031dc388c53ed39acd972bd649542d]

INTEGRATION: CWS calcselection (1.15.82); FILE MERGED 2008/02/13 19:54:21 nn 1.15.82.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [7d28831bc7a5c9024206c4a0df9bfa0decbfef75]

INTEGRATION: CWS calcselection (1.34.84); FILE MERGED 2008/02/13 19:54:21 nn 1.34.84.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [2822ab223c8d54f757aecf1a79b9bc738b6208ea]

INTEGRATION: CWS calcselection (1.6.282); FILE MERGED 2008/02/13 19:54:21 nn 1.6.282.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [a3179c6d0bf011afe808915feee52bdc2c00d599]

INTEGRATION: CWS calcselection (1.17.18); FILE MERGED 2008/02/13 19:54:21 nn 1.17.18.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [e47ec0a4f94df0f20160e3e0439e1714c8e9312c]

INTEGRATION: CWS calcselection (1.20.18); FILE MERGED 2008/02/13 19:54:20 nn 1.20.18.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [41372101796f520bd9f8a6e3a37fe472733af88c]

INTEGRATION: CWS calcselection (1.10.282); FILE MERGED 2008/02/13 19:54:20 nn 1.10.282.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [ea0ba9579cfc5640ccddc3af06bd8024fef8da22]

INTEGRATION: CWS calcselection (1.25.282); FILE MERGED 2008/02/13 19:54:20 nn 1.25.282.1: #i86069# update selection overlay after direct changes to mark data


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [2b1f552e7ddfa2c957c516f8fc973202c3f537f4]

INTEGRATION: CWS calcselection (1.26.84); FILE MERGED 2008/02/13 19:54:20 nn 1.26.84.2: #i86069# update selection overlay after direct changes to mark data 2008/02/13 13:55:59 nn 1.26.84.1: #i86069# transparent cell selection


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [c6dd840ebf19ec821d6844ad9d9d079a2cdc8ed3]

INTEGRATION: CWS calcselection (1.4.652); FILE MERGED 2008/02/13 13:00:17 nn 1.4.652.1: #i86069# new look for column/row headers


2008-02-19  Rüdiger Timm  <rt@openoffice.org>  [92b724e3c58dd391cd539c2a8cf1285311e9f424]

INTEGRATION: CWS calcselection (1.27.128); FILE MERGED 2008/02/13 13:55:59 nn 1.27.128.1: #i86069# transparent cell selection


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [58cbb40b8a69905aa8b9ec8a0268551a60468734]

INTEGRATION: CWS chart19 (1.2.78); FILE MERGED 2008/01/11 15:52:16 bm 1.2.78.3: #i44768# "Trendlines" for "Insert" menu, "Insert Trendline" for context menu of data series 2007/12/20 21:21:56 bm 1.2.78.2: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/11/20 16:52:14 iha 1.2.78.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [bad157447f37d297ceff38e3f43a7faadb484489]

INTEGRATION: CWS chart19 (1.27.10); FILE MERGED 2007/12/18 13:45:23 bm 1.27.10.2: RESYNC: (1.27-1.28); FILE MERGED 2007/12/15 14:28:31 iha 1.27.10.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [718a9eca3ad3178459a6c52f4b59611202c83f17]

INTEGRATION: CWS chart19 (1.40.10); FILE MERGED 2008/01/18 15:08:50 iha 1.40.10.4: RESYNC: (1.41-1.42); FILE MERGED 2007/12/18 13:45:26 bm 1.40.10.3: RESYNC: (1.40-1.41); FILE MERGED 2007/12/15 14:30:56 iha 1.40.10.2: #i16776# starting angle for pie charts 2007/11/20 16:55:19 iha 1.40.10.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [26d02150ed025bfc68720bc9fc71d38781c12497]

INTEGRATION: CWS chart19 (1.5.10); FILE MERGED 2008/01/08 12:14:59 iha 1.5.10.3: #i37823# clockwise pie charts 2007/12/18 13:45:20 bm 1.5.10.2: RESYNC: (1.5-1.6); FILE MERGED 2007/12/15 13:00:58 iha 1.5.10.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [d57e451106f17a30a52d488e4f841f080e387265]

INTEGRATION: CWS chart19 (1.17.10); FILE MERGED 2007/12/18 13:45:14 bm 1.17.10.2: RESYNC: (1.17-1.18); FILE MERGED 2007/12/15 14:27:02 iha 1.17.10.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [cbeda19513999443c8611415c1a56a1c44f8af9e]

INTEGRATION: CWS chart19 (1.16.44); FILE MERGED 2008/01/18 15:08:47 iha 1.16.44.4: RESYNC: (1.17-1.18); FILE MERGED 2008/01/08 16:33:06 iha 1.16.44.3: #i37823# clockwise pie charts - adapt best fit algorithm 2007/12/18 13:45:17 bm 1.16.44.2: RESYNC: (1.16-1.17); FILE MERGED 2007/12/15 14:31:48 iha 1.16.44.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [87d45bc4e921ffa44edc9df06dc50418ad62dd71]

INTEGRATION: CWS chart19 (1.8.22); FILE MERGED 2007/11/20 16:38:35 iha 1.8.22.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [017b6bae09d65f239653cb2b0842122e6e94f55b]

INTEGRATION: CWS chart19 (1.12.8); FILE MERGED 2008/01/14 16:08:55 bm 1.12.8.2: #i44768# +getRegressionCurveIndex 2008/01/11 15:58:43 bm 1.12.8.1: #i44768# make it easier to add and modify trendlines


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [e59f5ed42c23009ba78435a5581ef75083ecda29]

INTEGRATION: CWS chart19 (1.4.18); FILE MERGED 2008/01/14 16:08:08 bm 1.4.18.3: #i44768# +getSeriesParticleFromCID 2007/12/18 13:46:10 bm 1.4.18.2: RESYNC: (1.4-1.5); FILE MERGED 2007/11/20 16:51:11 iha 1.4.18.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [c5d9e02dbc411d20a4b067fa2a79413ee929a32e]

INTEGRATION: CWS chart19 (1.16.12); FILE MERGED 2007/12/18 13:46:13 bm 1.16.12.2: RESYNC: (1.16-1.17); FILE MERGED 2007/12/15 13:05:51 iha 1.16.12.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [2364fbfe3a1f898c59191795af79e9c63245b950]

INTEGRATION: CWS chart19 (1.13.18); FILE MERGED 2008/01/08 13:09:35 iha 1.13.18.4: #i16776# starting angle for pie charts - correct import of old 3D pie charts 2008/01/08 12:28:38 iha 1.13.18.3: #i37823# clockwise pie charts 2007/12/18 13:46:26 bm 1.13.18.2: RESYNC: (1.13-1.14); FILE MERGED 2007/12/15 14:32:30 iha 1.13.18.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [b4fbeddabb8b72e8c2146e6e9a3c3ca3523b2d36]

INTEGRATION: CWS chart19 (1.19.12); FILE MERGED 2008/01/18 15:09:06 iha 1.19.12.2: RESYNC: (1.19-1.20); FILE MERGED 2007/12/15 13:07:10 iha 1.19.12.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [2fd066e4c973455aa951533cda7c048b7e787d73]

INTEGRATION: CWS chart19 (1.3.10); FILE MERGED 2008/01/08 12:14:26 iha 1.3.10.3: #i37823# clockwise pie charts 2007/12/18 13:46:23 bm 1.3.10.2: RESYNC: (1.3-1.4); FILE MERGED 2007/12/15 12:59:11 iha 1.3.10.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [2940fa41b37b883a04dcc2db5545e3f4e01322ba]

INTEGRATION: CWS chart19 (1.5.78); FILE MERGED 2007/11/20 16:38:15 iha 1.5.78.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [9b70985c78bed2693a00e83ca627512d831b492e]

INTEGRATION: CWS chart19 (1.4.10); FILE MERGED 2008/01/15 08:19:29 bm 1.4.10.5: #i44768# some string adaptions for trendlines 2007/12/20 16:15:13 bm 1.4.10.4: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 13:46:16 bm 1.4.10.3: RESYNC: (1.4-1.5); FILE MERGED 2007/12/10 11:39:23 bm 1.4.10.2: #i79739# warn user about incorrect input 2007/11/20 16:32:38 iha 1.4.10.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [81dfee48d77892f3a9d462faa21a35e1052452fa]

INTEGRATION: CWS chart19 (1.9.8); FILE MERGED 2008/01/14 16:08:42 bm 1.9.8.2: #i44768# +getRegressionCurveIndex 2008/01/11 15:58:43 bm 1.9.8.1: #i44768# make it easier to add and modify trendlines


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [464b543bba361de6f6caa74e63496051235ece89]

INTEGRATION: CWS chart19 (1.4.8); FILE MERGED 2008/01/14 16:08:19 bm 1.4.8.1: #i44768# +getSeriesParticleFromCID


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [c10d6c5a91f16a980f42aee8d96fd339daae1f3d]

INTEGRATION: CWS chart19 (1.11.12); FILE MERGED 2007/12/18 13:46:19 bm 1.11.12.2: RESYNC: (1.11-1.12); FILE MERGED 2007/12/15 13:05:10 iha 1.11.12.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [97b4ac32d77ea09022d8b3cd51656f20fa9b973d]

INTEGRATION: CWS chart19 (1.3.44); FILE MERGED 2008/01/18 15:08:53 iha 1.3.44.7: RESYNC: (1.4-1.5); FILE MERGED 2008/01/15 12:37:33 bm 1.3.44.6: #i44768# only allow adding trendlines and mean values lines for chart types that support them 2008/01/14 13:46:10 bm 1.3.44.5: #i44768# insert/delete mean value lines via menu commands 2008/01/11 15:58:43 bm 1.3.44.4: #i44768# make it easier to add and modify trendlines 2007/12/20 16:15:27 bm 1.3.44.3: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 13:45:39 bm 1.3.44.2: RESYNC: (1.3-1.4); FILE MERGED 2007/11/20 17:07:18 iha 1.3.44.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [dce4aa90b34d0e315d1a3f8c0f0041cde32a443d]

INTEGRATION: CWS chart19 (1.26.8); FILE MERGED 2008/01/14 13:46:10 bm 1.26.8.1: #i44768# insert/delete mean value lines via menu commands


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [7908251a6c1e297bb94f36be1075e2f1c2a4dca2]

INTEGRATION: CWS chart19 (1.5.8); FILE MERGED 2008/01/15 07:46:45 bm 1.5.8.2: #i44768# allow deleting a trendline with pressing deleting its legend key 2008/01/14 13:46:10 bm 1.5.8.1: #i44768# insert/delete mean value lines via menu commands


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [565f7bf9d6924bcf678a6ad9dc4a8cdfc906d411]

INTEGRATION: CWS chart19 (1.29.10); FILE MERGED 2008/01/11 15:58:43 bm 1.29.10.4: #i44768# make it easier to add and modify trendlines 2007/12/20 16:15:27 bm 1.29.10.3: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 13:45:33 bm 1.29.10.2: RESYNC: (1.29-1.30); FILE MERGED 2007/11/20 17:06:29 iha 1.29.10.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [fc6d8375985c74f4459dcd352a3bb7e115ccce86]

INTEGRATION: CWS chart19 (1.13.8); FILE MERGED 2008/01/15 08:19:42 bm 1.13.8.7: #i44768# some string adaptions for trendlines 2008/01/14 17:14:50 bm 1.13.8.6: #i44768# executeDispatch_InsertTrendline: commit changes when property dialog  was quit with OK without having changed anything in the dialog. 2008/01/14 16:09:37 bm 1.13.8.5: #i44768# set correct CID for properties dialog for trendline 2008/01/14 13:46:10 bm 1.13.8.4: #i44768# insert/delete mean value lines via menu commands 2008/01/14 12:15:56 bm 1.13.8.3: #i44768# optimize width of trendline dialog 2008/01/11 15:58:43 bm 1.13.8.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:15:27 bm 1.13.8.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [282512a69d82414e1ee96f7cf2b20c004ed66536]

INTEGRATION: CWS chart19 (1.9.8); FILE MERGED 2008/01/14 13:46:09 bm 1.9.8.3: #i44768# insert/delete mean value lines via menu commands 2008/01/11 15:58:43 bm 1.9.8.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:15:27 bm 1.9.8.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [31638ea7a919f81c3bfdec9d2725ba25d4098feb]

INTEGRATION: CWS chart19 (1.24.18); FILE MERGED 2008/01/18 15:08:56 iha 1.24.18.6: RESYNC: (1.25-1.26); FILE MERGED 2008/01/14 13:46:09 bm 1.24.18.5: #i44768# insert/delete mean value lines via menu commands 2008/01/11 15:58:43 bm 1.24.18.4: #i44768# make it easier to add and modify trendlines 2007/12/20 16:15:26 bm 1.24.18.3: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 13:45:36 bm 1.24.18.2: RESYNC: (1.24-1.25); FILE MERGED 2007/11/20 17:05:55 iha 1.24.18.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [c9153f87a36ec305af7e08b6d25279a0b15aa347]

INTEGRATION: CWS chart19 (1.18.8); FILE MERGED 2008/01/11 15:58:42 bm 1.18.8.1: #i44768# make it easier to add and modify trendlines


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [66d418aed3602a04614cacf72cda25241a135a02]

INTEGRATION: CWS chart19 (1.4.12); FILE MERGED 2008/02/01 10:22:35 iha 1.4.12.3: #i85718# Undo for the new features Rotation direction and starting angle 2008/01/08 12:21:24 iha 1.4.12.2: #i37823# clockwise pie charts 2007/12/15 13:03:04 iha 1.4.12.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [3719916ead448572e5ac60b33329ec438e7f0861]

INTEGRATION: CWS chart19 (1.5.10); FILE MERGED 2008/01/11 15:58:42 bm 1.5.10.4: #i44768# make it easier to add and modify trendlines 2008/01/08 12:17:14 iha 1.5.10.3: #i37823# clockwise pie charts 2007/12/18 13:46:07 bm 1.5.10.2: RESYNC: (1.5-1.6); FILE MERGED 2007/12/15 13:02:24 iha 1.5.10.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [c3e332ffafd23383bdd4a222c5688bceed6d9568]

INTEGRATION: CWS chart19 (1.2.8); FILE MERGED 2008/01/11 15:58:42 bm 1.2.8.1: #i44768# make it easier to add and modify trendlines


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [3529373455f0d033c07e58c58a4de55c551a3858]

INTEGRATION: CWS chart19 (1.12.12); FILE MERGED 2007/12/18 13:46:04 bm 1.12.12.2: RESYNC: (1.12-1.13); FILE MERGED 2007/11/20 17:05:14 iha 1.12.12.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [02de1207ede0e55aebe347dd6159b82725bccb39]

INTEGRATION: CWS chart19 (1.12.12); FILE MERGED 2008/01/11 15:58:42 bm 1.12.12.1: #i44768# make it easier to add and modify trendlines


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [71704bc051543f2e466fd512b6a8356490ac62bd]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2007/12/20 16:19:19 bm 1.1.2.1: #i84801# moved header from dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [52a42967ea355421fda456d0554d7496ed1074df]

INTEGRATION: CWS chart19 (1.8.12); FILE MERGED 2008/01/14 17:13:42 bm 1.8.12.2: #i44768# allow getting the information if OK was pressed, although nothing was changed 2007/12/15 13:04:04 iha 1.8.12.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [7af80ee112f365cd277378973254fbd361f442dd]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/14 12:15:56 bm 1.1.2.2: #i44768# optimize width of trendline dialog 2007/12/20 16:19:59 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [00a8c419305a0bc978780389c9e8d9112139095f]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2007/12/20 16:19:49 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [d9b2c27c2e0e82186f5745e37ac4d7f93143531c]

INTEGRATION: CWS chart19 (1.2.78); FILE MERGED 2007/12/10 11:39:22 bm 1.2.78.1: #i79739# warn user about incorrect input


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [a8cdb6d71b547a38630b917df0d71ce40c7187a5]

INTEGRATION: CWS chart19 (1.3.12); FILE MERGED 2008/01/08 12:18:34 iha 1.3.12.2: #i37823# clockwise pie charts 2007/12/15 13:03:34 iha 1.3.12.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [9ecd4f3b68e8daa47e2073332df19e82956d9d22]

INTEGRATION: CWS chart19 (1.8.78); FILE MERGED 2008/01/11 15:58:42 bm 1.8.78.1: #i44768# make it easier to add and modify trendlines


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [7a1b45cbfc77774278ed6575d9853b1044495693]

INTEGRATION: CWS chart19 (1.4.12); FILE MERGED 2008/01/14 17:35:51 bm 1.4.12.5: #i44768# add help ids for trendline template 2008/01/14 17:32:11 bm 1.4.12.4: #i44768# add help ids for trendline template 2008/01/10 10:03:05 iha 1.4.12.3: #i16776# starting angle for pie charts - use dial control 2007/12/18 13:46:01 bm 1.4.12.2: RESYNC: (1.4-1.5); FILE MERGED 2007/11/20 16:33:57 iha 1.4.12.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [e326beffc5fb6dfa135aba66803f8f6887621978]

INTEGRATION: CWS chart19 (1.3.22); FILE MERGED 2008/01/14 15:51:31 iha 1.3.22.2: #1163# nicer look for insert title dialog 2007/11/20 17:11:54 iha 1.3.22.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [a00b8ab1cdda90e11cbee6e45c182805ff203496]

INTEGRATION: CWS chart19 (1.3.44); FILE MERGED 2007/11/20 17:12:15 iha 1.3.44.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [1b7bea8a28661611c34881e4aa94e6b2ebc242b3]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/11 15:58:42 bm 1.1.2.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:18:43 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [7d7c92165a4c83da7197b0c584961ed150dec88a]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2007/12/20 16:18:43 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [6c6fb8ebc3ee48c5a92502328cc464a2a544bffe]

INTEGRATION: CWS chart19 (1.8.20); FILE MERGED 2007/12/18 14:57:04 bm 1.8.20.1: #i84587# make label controls larger to prevent problems with localizations


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [68a39b00dd4202afa79caf084030d55f800e9351]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/10 10:05:02 iha 1.1.2.3: #i16776# starting angle for pie charts - use dial control 2008/01/08 12:24:13 iha 1.1.2.2: #i37823# clockwise pie charts 2007/12/15 12:56:15 iha 1.1.2.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [4e88d9a95acd3170fdf90fc2674b1e2053eb013f]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/10 10:06:12 iha 1.1.2.3: #i16776# starting angle for pie charts - use dial control 2008/01/08 12:24:32 iha 1.1.2.2: #i37823# clockwise pie charts 2007/12/15 12:55:27 iha 1.1.2.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [7c414d87324d518211300db7342b4b4806c482e5]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/10 10:04:17 iha 1.1.2.3: #i16776# starting angle for pie charts - use dial control 2008/01/08 12:23:55 iha 1.1.2.2: #i37823# clockwise pie charts 2007/12/15 12:55:58 iha 1.1.2.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [01253855f3ad6db4c43da93e41318f87d7637ea4]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/15 19:19:15 iha 1.1.2.4: #i16776#,#i37823# don't offer pie options for single pie pieces 2008/01/10 10:07:18 iha 1.1.2.3: #i16776# starting angle for pie charts - use dial control 2008/01/08 12:25:05 iha 1.1.2.2: #i37823# clockwise pie charts 2007/12/15 12:55:43 iha 1.1.2.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [2b0bda12ef6776aa16924c79ce0c1121f9176749]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2007/12/20 16:18:32 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [052a2e0d88ded86663e7c8d49f661619bdb95483]

INTEGRATION: CWS chart19 (1.8.18); FILE MERGED 2007/12/18 14:55:50 bm 1.8.18.1: #i84587# make label controls larger to prevent problems with localizations


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [916bfd73189894c51e2a7eb6bb0f7e825cc93683]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/15 09:25:42 bm 1.1.2.5: #i44768# duplicate mnemonics 2008/01/15 08:19:55 bm 1.1.2.4: #i44768# some string adaptions for trendlines 2008/01/14 17:32:45 bm 1.1.2.3: #i44768# add help ids for trendline template 2008/01/11 15:58:42 bm 1.1.2.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:20:49 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [5c7e7ce484abea2a4f3cb8e71174551491f3b075]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/11 15:58:42 bm 1.1.2.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:20:38 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [7b2b4f0d6d873f375dd7faf4d0047a3082f3a5c1]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/14 12:15:55 bm 1.1.2.3: #i44768# optimize width of trendline dialog 2008/01/11 15:58:42 bm 1.1.2.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:18:11 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [fd2c281e2cabd61f423dac467685dba2aec324b0]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/14 12:27:44 bm 1.1.2.4: #i44768# leave some more space after the longest text 2008/01/14 12:15:55 bm 1.1.2.3: #i44768# optimize width of trendline dialog 2008/01/11 15:58:42 bm 1.1.2.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:18:11 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [a90a15921755eb9f0de66a676aec11c246512e2e]

INTEGRATION: CWS chart19 (1.2.22); FILE MERGED 2008/01/14 15:48:53 iha 1.2.22.2: #1163# nicer look for insert title dialog 2007/11/20 17:15:38 iha 1.2.22.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [2f8e2db5eac3f457b9479859e53fdbc5956c5e41]

INTEGRATION: CWS chart19 (1.2.78); FILE MERGED 2008/01/14 15:49:28 iha 1.2.78.2: #1163# nicer look for insert title dialog 2007/11/20 17:14:29 iha 1.2.78.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [1ee19b9bc89996fced9992e4b1b77fc1a77238eb]

INTEGRATION: CWS chart19 (1.2.78); FILE MERGED 2008/01/14 15:48:18 iha 1.2.78.2: #1163# nicer look for insert title dialog 2007/11/20 17:14:58 iha 1.2.78.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [7b8df10737ce287ceccf8c6e77430597d3cbb1b5]

INTEGRATION: CWS chart19 (1.2.78); FILE MERGED 2008/01/14 15:49:47 iha 1.2.78.2: #1163# nicer look for insert title dialog 2007/11/20 17:16:43 iha 1.2.78.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [54e29cd64da9e609557c8fa86e01ddc4546f5937]

INTEGRATION: CWS chart19 (1.5.78); FILE MERGED 2007/12/18 14:53:34 bm 1.5.78.1: #i84587# make label controls larger to prevent problems with localizations


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [bc5d1e62049a6706c365938ceb0762488447be1c]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/09 16:36:14 bm 1.1.2.2: #i84801# place negative constant value field below positive value field 2007/12/20 16:20:26 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [6c6e2671d25d99183edc9ce019688be9ef1994e3]

INTEGRATION: CWS chart19 (1.2.44); FILE MERGED 2007/12/20 16:14:49 bm 1.2.44.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [ec0156109afe5c886d4907eddb3ed7b24ca5660a]

INTEGRATION: CWS chart19 (1.2.44); FILE MERGED 2008/01/09 11:54:17 bm 1.2.44.3: #i84801# handle CHERROR_NONE correctly 2007/12/20 16:14:49 bm 1.2.44.2: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 08:38:49 bm 1.2.44.1: #i44768# rename error indicator icons (and add those for x-errors)


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [139eb215112386404bcbf699f61840c25efeef30]

INTEGRATION: CWS chart19 (1.15.10); FILE MERGED 2008/01/14 16:06:23 bm 1.15.10.4: #i44768# tp_RegressionOptions became obsolete 2007/12/20 16:14:49 bm 1.15.10.3: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 13:45:45 bm 1.15.10.2: RESYNC: (1.15-1.16); FILE MERGED 2007/12/15 12:58:00 iha 1.15.10.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [5291ebcc97bb94933f3d1612133bc98feaec235d]

INTEGRATION: CWS chart19 (1.3.12); FILE MERGED 2008/01/14 17:37:01 bm 1.3.12.5: #i44768# add help ids for trendline template 2008/01/14 17:32:23 bm 1.3.12.4: #i44768# add help ids for trendline template 2008/01/10 10:03:36 iha 1.3.12.3: #i16776# starting angle for pie charts - use dial control 2007/12/18 13:45:55 bm 1.3.12.2: RESYNC: (1.3-1.4); FILE MERGED 2007/11/20 16:34:34 iha 1.3.12.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [07cec9d46f3496e4637a525b8a1989c53a34b6bf]

INTEGRATION: CWS chart19 (1.19.10); FILE MERGED 2008/01/15 19:18:28 iha 1.19.10.9: #i16776#,#i37823# don't offer pie options for single pie pieces 2008/01/15 08:19:54 bm 1.19.10.8: #i44768# some string adaptions for trendlines 2008/01/14 17:13:26 bm 1.19.10.7: #i44768# allow getting the information if OK was pressed, although nothing was changed 2008/01/14 16:19:19 bm 1.19.10.6: #i44768# tp_RegressionOptions became obsolete 2008/01/14 16:10:28 bm 1.19.10.5: #i44768# tp_RegressionOptions became obsolete 2008/01/11 15:58:42 bm 1.19.10.4: #i44768# make it easier to add and modify trendlines 2007/12/20 16:14:49 bm 1.19.10.3: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 13:45:52 bm 1.19.10.2: RESYNC: (1.19-1.20); FILE MERGED 2007/12/15 13:04:45 iha 1.19.10.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [aa0e713f52e600cc87d45a5107dd439344959f72]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/14 12:15:55 bm 1.1.2.3: #i44768# optimize width of trendline dialog 2008/01/11 15:58:42 bm 1.1.2.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:16:55 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [800ba70c80a03f5dc6937381f71f0b76fafcdf34]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2007/12/20 16:16:55 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [7bac209607c01d2e526255307c97acd561b31165]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/15 08:19:54 bm 1.1.2.4: #i44768# some string adaptions for trendlines 2008/01/14 12:15:55 bm 1.1.2.3: #i44768# optimize width of trendline dialog 2008/01/11 15:58:42 bm 1.1.2.2: #i44768# make it easier to add and modify trendlines 2007/12/20 16:16:55 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [982d3decc37803f3e076c3b366d1416b09d569ee]

INTEGRATION: CWS chart19 (1.6.22); FILE MERGED 2008/01/14 15:50:45 iha 1.6.22.2: #1163# nicer look for insert title dialog 2007/11/20 17:17:45 iha 1.6.22.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [ee9232402ba349df0fb45e6cd338c1bff49544c0]

INTEGRATION: CWS chart19 (1.6.78); FILE MERGED 2007/11/20 17:17:18 iha 1.6.78.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [2db23bec39307439d8d59542ba05a9f7db05ae80]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2007/12/20 16:16:37 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [61db65d4d50ea66d612c864f08a74a5f5eaf7772]

INTEGRATION: CWS chart19 (1.1.2); FILE ADDED 2008/01/09 16:36:34 bm 1.1.2.2: #i84801# correct title of dialog 2007/12/20 16:16:37 bm 1.1.2.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [cda245f8adb5083e36bc29a5ee886255cc912f38]

INTEGRATION: CWS chart19 (1.2.78); FILE MERGED 2007/12/10 11:39:22 bm 1.2.78.1: #i79739# warn user about incorrect input


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [9c2853fd25e69e7ae52bb7aebb6b8b66d49f059c]

INTEGRATION: CWS chart19 (1.2.78); FILE MERGED 2007/11/20 17:11:12 iha 1.2.78.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [55deec3e4473a2c2b7accd85e47f3514a93edcd7]

INTEGRATION: CWS chart19 (1.5.78); FILE MERGED 2008/01/11 14:12:03 bm 1.5.78.2: #i85102# regression types case mismatch 2007/12/20 16:14:49 bm 1.5.78.1: #i84801# split up statistic dialog into error bar dialog and trendline dialog


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [d0bb72da857ac76e0db731a832bb96020cfc69f4]

INTEGRATION: CWS chart19 (1.6.78); FILE MERGED 2008/01/11 14:11:40 bm 1.6.78.1: #i85102# percent stacked case mismatch


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [e0fbfa3971a478ad4b32eafde67c24f66382aad3]

INTEGRATION: CWS chart19 (1.8.10); FILE MERGED 2008/01/15 15:45:28 bm 1.8.10.8: #i44768# STR_OBJECT_CURVE_WITH_PARAMETERS: Trend Line -> Trend line 2008/01/15 15:13:15 bm 1.8.10.7: #i44768# trendline -> trend line 2008/01/15 10:42:35 bm 1.8.10.6: #i44768# average value -> mean value for consistency 2008/01/15 08:19:54 bm 1.8.10.5: #i44768# some string adaptions for trendlines 2007/12/20 16:14:49 bm 1.8.10.4: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 13:45:42 bm 1.8.10.3: RESYNC: (1.8-1.9); FILE MERGED 2007/12/10 11:39:22 bm 1.8.10.2: #i79739# warn user about incorrect input 2007/11/20 16:33:08 iha 1.8.10.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [96e9c68458a73702ce2ca4a66454c0c1fa1448dd]

INTEGRATION: CWS chart19 (1.3.10); FILE MERGED 2008/01/14 16:10:06 bm 1.3.10.4: #i44768# tp_RegressionOptions became obsolete 2007/12/20 16:14:49 bm 1.3.10.3: #i84801# split up statistic dialog into error bar dialog and trendline dialog 2007/12/18 13:45:58 bm 1.3.10.2: RESYNC: (1.3-1.4); FILE MERGED 2007/12/15 12:57:30 iha 1.3.10.1: #i16776# starting angle for pie charts


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [fc32b18c877054bfc153130486fe24033fb52e91]

INTEGRATION: CWS chart19 (1.6.10); FILE MERGED 2007/12/18 13:45:49 bm 1.6.10.2: RESYNC: (1.6-1.7); FILE MERGED 2007/11/20 17:07:55 iha 1.6.10.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [e9fecb52052a1662aa30b990038d95e9f2a42417]

INTEGRATION: CWS chart19 (1.3.18); FILE MERGED 2007/12/10 11:39:22 bm 1.3.18.1: #i79739# warn user about incorrect input


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [5c6d046b9fa98e46dbdbb510214ebd1489afeb33]

INTEGRATION: CWS chart19 (1.4.44); FILE MERGED 2007/12/10 14:40:03 bm 1.4.44.2: #i79739# initializer order 2007/12/10 11:39:22 bm 1.4.44.1: #i79739# warn user about incorrect input


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [2cd61647dbafa62e133dca6f79f37d6772645240]

INTEGRATION: CWS chart19 (1.3.78); FILE MERGED 2007/12/18 08:37:43 bm 1.3.78.1: #i44768# rename error indicator icons (and add those for x-errors)


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [0cc9724eabd083c0870327533f28e5cd38d83a5a]

INTEGRATION: CWS chart19 (1.3.78); FILE MERGED 2007/12/18 08:37:18 bm 1.3.78.1: #i44768# rename error indicator icons (and add those for x-errors)


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [42c0db3947b374c10222cc209cc738cb84a2caea]

INTEGRATION: CWS chart19 (1.5.78); FILE MERGED 2007/12/18 08:37:58 bm 1.5.78.1: #i44768# rename error indicator icons (and add those for x-errors)


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [fb6c4e84c77a6106c2f03bf706a73ffd38586afe]

INTEGRATION: CWS chart19 (1.3.78); FILE MERGED 2007/12/18 08:35:46 bm 1.3.78.1: #i44768# rename error indicator icons (and add those for x-errors)


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [03c89b272411a8eafc18fd400b2905267932b2b5]

INTEGRATION: CWS chart19 (1.4.40); FILE MERGED 2007/12/18 13:45:29 bm 1.4.40.2: RESYNC: (1.4-1.5); FILE MERGED 2007/11/20 17:02:48 iha 1.4.40.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [86d549044b43d30db2f3aa0f64033ffbdf2491e1]

INTEGRATION: CWS chart19 (1.5.22); FILE MERGED 2007/11/20 16:56:51 iha 1.5.22.1: #1163# title for secondary axes


2008-02-18  Rüdiger Timm  <rt@openoffice.org>  [3159ba7872498f19ce6e6dbd19598bac46801b46]

INTEGRATION: CWS chart19 (1.11.12); FILE MERGED 2008/01/18 15:09:02 iha 1.11.12.3: RESYNC: (1.11-1.12); FILE MERGED 2007/12/15 13:06:35 iha 1.11.12.2: #i16776# starting angle for pie charts 2007/11/20 16:57:32 iha 1.11.12.1: #1163# title for secondary axes


2008-02-15  Niklas Nebel  <nn@openoffice.org>  [468d023ef27d0d730f211e0a6c8ccfdc26146ed1]

moved from module scext


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [f168951e9b396147006f08b4dd82d4f5a84d708e]

INTEGRATION: CWS pagemargins (1.4.768); FILE MERGED 2008/02/01 14:10:56 nn 1.4.768.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [f2ea7f07612ceff17be907df5c9a5bda7823f5bc]

INTEGRATION: CWS pagemargins (1.54.8); FILE MERGED 2008/02/01 14:45:26 nn 1.54.8.2: #i51656# make warning-clean 2008/02/01 14:10:56 nn 1.54.8.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [72395b672600c7246d0ffc6794a9fa08e098dea0]

INTEGRATION: CWS pagemargins (1.41.8); FILE MERGED 2008/02/01 14:10:56 nn 1.41.8.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [338dadfa969d7128ae8c76745f344a2352d0421b]

INTEGRATION: CWS pagemargins (1.32.250); FILE MERGED 2008/02/01 14:45:26 nn 1.32.250.2: #i51656# make warning-clean 2008/02/01 14:10:56 nn 1.32.250.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [0684d1c8f92d29dc536b0a2747e7858943cde465]

INTEGRATION: CWS pagemargins (1.12.650); FILE MERGED 2008/02/01 14:10:55 nn 1.12.650.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [5c22aa3647bf2e1f22afcabed580fae1d35c1e24]

INTEGRATION: CWS pagemargins (1.9.280); FILE MERGED 2008/02/01 14:10:55 nn 1.9.280.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [cdcac0104fe88fdad1997fe3cea267e426d83374]

INTEGRATION: CWS pagemargins (1.36.140); FILE MERGED 2008/02/01 14:10:55 nn 1.36.140.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [5f86f5c26e53b3ce83ee11f8ad0a4e3b7e8f96d0]

INTEGRATION: CWS pagemargins (1.5.650); FILE MERGED 2008/02/01 14:10:55 nn 1.5.650.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [8abb85354c61fb206806fdc4e1e9a7930fa61ede]

INTEGRATION: CWS pagemargins (1.57.26); FILE MERGED 2008/02/01 14:10:55 nn 1.57.26.1: #i51656# page margins in page preview (patch from maoyg)


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [1e34e1c233f6da5e0bdd1c76ecdad1c2858d8236]

INTEGRATION: CWS calccolumns (1.21.62); FILE MERGED 2008/02/06 09:41:02 nn 1.21.62.1: #i85906# don't try to load more columns than there are in the file


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [0b0a291138f7099d2f119548d7dae24d934843cc]

INTEGRATION: CWS calccolumns (1.31.232); FILE MERGED 2008/01/23 13:29:35 nn 1.31.232.1: #i31612# don't limit page number to USHORT


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [5d0fd355c823c04e96950272428b9afa01d84a0e]

INTEGRATION: CWS calccolumns (1.20.262); FILE MERGED 2008/01/28 18:09:47 nn 1.20.262.2: RESYNC: (1.20-1.21); FILE MERGED 2008/01/23 13:28:48 nn 1.20.262.1: #i31612# limit GetPrintArea, performance of SetOptimalHeight


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [536fea40f42a1a34edb1a6f96adf583cce9075f8]

INTEGRATION: CWS calccolumns (1.9.262); FILE MERGED 2008/01/28 10:30:26 nn 1.9.262.1: #i31612# save performance with increased column count


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [428a9eebf7ab20bf67ca4d30c9ac6aac1d7ca90f]

INTEGRATION: CWS calccolumns (1.13.262); FILE MERGED 2008/01/28 10:30:26 nn 1.13.262.1: #i31612# save performance with increased column count


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [55e3bfab08e445ac592f2c4a464629b2e87ecd18]

INTEGRATION: CWS calccolumns (1.80.108); FILE MERGED 2008/01/28 18:09:44 nn 1.80.108.2: RESYNC: (1.80-1.81); FILE MERGED 2008/01/28 10:30:26 nn 1.80.108.1: #i31612# save performance with increased column count


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [450345c101797d9a74b915b9f8baa4386e5fb4d4]

INTEGRATION: CWS calccolumns (1.25.28); FILE MERGED 2008/01/28 10:30:26 nn 1.25.28.1: #i31612# save performance with increased column count


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [b06bc1f7249040e0a979ffba2d4ae486ad15edbb]

INTEGRATION: CWS calccolumns (1.4.632); FILE MERGED 2008/01/28 10:30:26 nn 1.4.632.1: #i31612# save performance with increased column count


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [034784c77cc37435127c52e9ede0d5d20470a163]

INTEGRATION: CWS calccolumns (1.14.106); FILE MERGED 2008/01/23 13:27:26 nn 1.14.106.1: #i31612# 1024 columns


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [b9637646a382fbf2a8b3bf64a33d3ffaa35ed87e]

INTEGRATION: CWS sheetdrag (1.21.14); FILE MERGED 2008/01/31 16:04:31 nn 1.21.14.1: #b6632130# find used named ranges in only one loop


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [15cd297833924c148a7a902d387b34be3c0595f7]

INTEGRATION: CWS sheetdrag (1.21.276); FILE MERGED 2008/01/31 17:34:53 nn 1.21.276.1: #b6632130# exceptions


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [d9cc9cc9fc17f4de6b7d079aae53a3a1865a7a81]

INTEGRATION: CWS sheetdrag (1.81.14); FILE MERGED 2008/01/31 16:20:40 nn 1.81.14.2: RESYNC: (1.81-1.82); FILE MERGED 2008/01/31 16:04:29 nn 1.81.14.1: #b6632130# find used named ranges in only one loop


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [a5ca3981c3c421bdc4e1b847019907649dd3c36b]

INTEGRATION: CWS sheetdrag (1.68.12); FILE MERGED 2008/01/31 16:20:36 nn 1.68.12.2: RESYNC: (1.68-1.69); FILE MERGED 2008/01/31 16:04:27 nn 1.68.12.1: #b6632130# find used named ranges in only one loop


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [c90fa772f41673d367b2c875e15f9a1604a21970]

INTEGRATION: CWS sheetdrag (1.25.46); FILE MERGED 2008/01/31 16:20:33 nn 1.25.46.2: RESYNC: (1.25-1.26); FILE MERGED 2008/01/31 16:04:26 nn 1.25.46.1: #b6632130# find used named ranges in only one loop


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [2f4b2231ff202809ab4402058354a0e8ab35fb54]

INTEGRATION: CWS sheetdrag (1.30.210); FILE MERGED 2008/01/31 16:04:24 nn 1.30.210.1: #b6632130# find used named ranges in only one loop


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [493538829b0f3ebb3aa4f88733240c16a6d8bb6d]

INTEGRATION: CWS sheetdrag (1.32.118); FILE MERGED 2008/01/31 16:04:23 nn 1.32.118.1: #b6632130# find used named ranges in only one loop


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [a253b2afad044fce2c4d56f7c13fd560fad0bbab]

INTEGRATION: CWS sheetdrag (1.18.290); FILE MERGED 2008/01/31 16:20:30 nn 1.18.290.2: RESYNC: (1.18-1.19); FILE MERGED 2008/01/31 16:04:22 nn 1.18.290.1: #b6632130# find used named ranges in only one loop


2008-02-12  Vladimir Glazounov  <vg@openoffice.org>  [50623a0be52ff15350698ad7d0cd9e6d7192890f]

INTEGRATION: CWS sheetdrag (1.25.188); FILE MERGED 2008/01/31 16:20:27 nn 1.25.188.2: RESYNC: (1.25-1.26); FILE MERGED 2008/01/31 16:04:22 nn 1.25.188.1: #b6632130# find used named ranges in only one loop


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [be85f590d5811490ec8e1123e2a866460d168ce0]

INTEGRATION: CWS calcsolver (1.26.110); FILE MERGED 2007/12/14 18:48:33 nn 1.26.110.1: #i8808# solver options


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [9fa4870079e3329bd2745a8cc3409a5ae5ef9ad6]

INTEGRATION: CWS calcsolver (1.29.64); FILE MERGED 2007/12/05 18:02:59 nn 1.29.64.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [db73b1629dd7fd56f3be3491e10a18adb59b0e4d]

INTEGRATION: CWS calcsolver (1.11.162); FILE MERGED 2007/12/05 18:02:59 nn 1.11.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [ed14cc0bfb55fb13de3e93655c8ebabc991fb149]

INTEGRATION: CWS calcsolver (1.12.162); FILE MERGED 2007/12/05 18:02:59 nn 1.12.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [23764d551fe0112f8b94cc44aa3ee8062d4143dd]

INTEGRATION: CWS calcsolver (1.10.162); FILE MERGED 2007/12/05 18:02:59 nn 1.10.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [d589ca0cebf69ff9651b3c75bb271a1b686cd339]

INTEGRATION: CWS calcsolver (1.22.162); FILE MERGED 2007/12/05 18:02:59 nn 1.22.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [a2c19951402e3ba2eb64c1eb860e1f91f3ae0713]

INTEGRATION: CWS calcsolver (1.1.2); FILE ADDED 2007/12/17 18:55:09 nn 1.1.2.2: #i8808# solver interaction 2007/12/14 18:48:33 nn 1.1.2.1: #i8808# solver options


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [8c8902080d9e36bb4e589b76370a39fc6f76ac04]

INTEGRATION: CWS calcsolver (1.1.2); FILE ADDED 2007/12/20 16:34:58 nn 1.1.2.4: #i8808# DefButton 2007/12/18 20:50:42 nn 1.1.2.3: #i8808# solver messages 2007/12/17 18:55:09 nn 1.1.2.2: #i8808# solver interaction 2007/12/05 18:02:58 nn 1.1.2.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [6793f1feb6e70d4daaa78ff91212442af636f498]

INTEGRATION: CWS calcsolver (1.9.162); FILE MERGED 2007/12/14 18:48:32 nn 1.9.162.2: #i8808# solver options 2007/12/05 18:02:58 nn 1.9.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [f965989a4ea8e9dd352a3742bf4f75decae3f5f3]

INTEGRATION: CWS calcsolver (1.1.2); FILE ADDED 2007/12/18 20:50:41 nn 1.1.2.3: #i8808# solver messages 2007/12/17 18:55:09 nn 1.1.2.2: #i8808# solver interaction 2007/12/14 18:48:32 nn 1.1.2.1: #i8808# solver options


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [1bb54544c81423820b4559995559c3e1dd2589da]

INTEGRATION: CWS calcsolver (1.1.2); FILE ADDED 2007/12/21 10:31:52 nn 1.1.2.7: #i8808# format cursor pos as absolute ref 2007/12/21 10:14:50 nn 1.1.2.6: #i8808# integer/binary conditions don't need a value 2007/12/20 14:15:11 nn 1.1.2.5: #i8808# try to make sure the progress dialog is painted before solving 2007/12/18 20:50:41 nn 1.1.2.4: #i8808# solver messages 2007/12/17 18:55:09 nn 1.1.2.3: #i8808# solver interaction 2007/12/14 18:48:32 nn 1.1.2.2: #i8808# solver options 2007/12/05 18:02:58 nn 1.1.2.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [0428d86f3a5225f5b57bb52580a505df684c8cfb]

INTEGRATION: CWS calcsolver (1.8.162); FILE MERGED 2007/12/14 18:48:32 nn 1.8.162.2: #i8808# solver options 2007/12/05 18:02:58 nn 1.8.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [956e52c50fa96e6cd4125710ba48989cc3330074]

INTEGRATION: CWS calcsolver (1.19.162); FILE MERGED 2007/12/05 18:02:58 nn 1.19.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [604aa746c88c7efacb999d65367dcef560b98917]

INTEGRATION: CWS calcsolver (1.1.2); FILE ADDED 2007/12/18 20:50:41 nn 1.1.2.3: #i8808# solver messages 2007/12/17 18:55:08 nn 1.1.2.2: #i8808# solver interaction 2007/12/14 18:48:32 nn 1.1.2.1: #i8808# solver options


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [5bc225199b84f522f96a5e0bfd60967bca07ebc0]

INTEGRATION: CWS calcsolver (1.1.2); FILE ADDED 2007/12/14 18:48:32 nn 1.1.2.1: #i8808# solver options


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [873ad2d784e3d716f560391ea0fbb1a0badc30f9]

INTEGRATION: CWS calcsolver (1.5.162); FILE MERGED 2007/12/05 18:02:57 nn 1.5.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [c25580421f04d30d0353ce283f7d41c377421643]

INTEGRATION: CWS calcsolver (1.1.2); FILE ADDED 2007/12/18 20:50:41 nn 1.1.2.4: #i8808# solver messages 2007/12/17 18:55:08 nn 1.1.2.3: #i8808# solver interaction 2007/12/14 18:48:32 nn 1.1.2.2: #i8808# solver options 2007/12/05 18:02:57 nn 1.1.2.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [c4291da53af4c9e8e3a84bf1abb775c1b802a2ad]

INTEGRATION: CWS calcsolver (1.1.2); FILE ADDED 2007/12/18 20:50:41 nn 1.1.2.3: #i8808# solver messages 2007/12/17 18:55:08 nn 1.1.2.2: #i8808# solver interaction 2007/12/05 18:02:57 nn 1.1.2.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [4fcd408c0a01ca7bf3397ca0c12ff50b828256de]

INTEGRATION: CWS calcsolver (1.43.104); FILE MERGED 2007/12/05 18:02:57 nn 1.43.104.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [365d5a65b4523ad2eee5548f4c279958c51ba773]

INTEGRATION: CWS calcsolver (1.9.200); FILE MERGED 2007/12/05 18:02:57 nn 1.9.200.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [f6855075cdbafce5d856d9198e254b66d31d5d84]

INTEGRATION: CWS calcsolver (1.8.350); FILE MERGED 2007/12/20 09:42:54 nn 1.8.350.1: exceptions


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [3f25bb2af0d410239e68b716a6eb89af51e25e36]

INTEGRATION: CWS calcsolver (1.92.86); FILE MERGED 2007/12/19 10:23:38 nn 1.92.86.2: RESYNC: (1.92-1.93); FILE MERGED 2007/12/05 18:02:57 nn 1.92.86.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [16705e19da0ba701377ec615cbce86bf936ff34f]

INTEGRATION: CWS calcsolver (1.41.106); FILE MERGED 2007/12/19 10:23:35 nn 1.41.106.2: RESYNC: (1.41-1.42); FILE MERGED 2007/12/05 18:02:56 nn 1.41.106.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [e4f9e32cafdba696c08ae8e2ea6947b7437dd517]

INTEGRATION: CWS calcsolver (1.36.64); FILE MERGED 2007/12/05 18:02:56 nn 1.36.64.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [78553b63bfbbb0502af5ba15aaa67fcb4aff2303]

INTEGRATION: CWS calcsolver (1.15.162); FILE MERGED 2007/12/05 18:02:56 nn 1.15.162.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [484fb818b490d3da44e33cae118d00deda532189]

INTEGRATION: CWS calcsolver (1.19.106); FILE MERGED 2007/12/05 18:02:56 nn 1.19.106.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [759fc1e16e394e6bceff12487b4b5a1b83d2a7f8]

INTEGRATION: CWS calcsolver (1.22.64); FILE MERGED 2007/12/05 18:02:56 nn 1.22.64.1: #i8808 solver dialog


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [d4179c1b8df639bf9de384d587b75b283b31adf8]

INTEGRATION: CWS calcsolver (1.74.104); FILE MERGED 2007/12/17 18:55:08 nn 1.74.104.1: #i8808# solver interaction


2008-02-05  Ivo Hinkelmann  <ihi@openoffice.org>  [15ae13752c5dd2fb0295860af22bb72cd8acbe54]

INTEGRATION: CWS calcsolver (1.55.40); FILE MERGED 2007/12/19 10:23:32 nn 1.55.40.4: RESYNC: (1.55-1.56); FILE MERGED 2007/12/17 18:55:08 nn 1.55.40.3: #i8808# solver interaction 2007/12/14 18:48:32 nn 1.55.40.2: #i8808# solver options 2007/12/05 18:02:56 nn 1.55.40.1: #i8808 solver dialog


2008-01-30  Rüdiger Timm  <rt@openoffice.org>  [a43b8f9c3d9a78b8b9f1092f6f7539e25ca51c45]

#i85399# prevent warnings (patch by pjanik).


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [062a78943ab8af72e2214dd96612be77703df7da]

INTEGRATION: CWS oj30 (1.3.52); FILE MERGED 2008/01/10 14:34:37 oj 1.3.52.1: #i85085# add std


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [fa07c3d9d20d225147b894dec1914d4195429e8f]

INTEGRATION: CWS oj30 (1.5.20); FILE MERGED 2008/01/11 06:58:09 oj 1.5.20.1: #i85085# add std


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [1ef4db26dc582e49f50b133f8493c20f4adf5d96]

INTEGRATION: CWS oj30 (1.71.244); FILE MERGED 2008/01/11 06:58:09 oj 1.71.244.1: #i85085# add std


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [31891f0ee7354acc21e34a8d3ae6ee0b52f9b15f]

INTEGRATION: CWS fwk82_SRC680 (1.28.60); FILE MERGED 2008/01/11 13:49:25 mav 1.28.60.1: #i82141# do not allow to set printer on embedded object


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [010beaf2d9a2dfb6631dd8ce0979c9a4bdfc4baa]

INTEGRATION: CWS dr58_SRC680 (1.71.12); FILE MERGED 2008/01/10 21:16:34 er 1.71.12.1: #i82644# signed values in array constants


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [f73f9a2e747fb7cc55157c8e6c9d29f2f32e4375]

INTEGRATION: CWS dr58_SRC680 (1.39.156); FILE MERGED 2007/12/14 10:51:02 nn 1.39.156.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [a1367f05ab8420e3091193894a175bfd5e1ea839]

INTEGRATION: CWS dr58_SRC680 (1.49.158); FILE MERGED 2007/12/21 17:01:53 er 1.49.158.2: #i74225# PasteDataFormat: Text Import dialog only if more than one line 2007/12/14 10:51:03 nn 1.49.158.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [658c674c516a7c565c2ed0612e43a78dac632110]

INTEGRATION: CWS dr58_SRC680 (1.60.24); FILE MERGED 2008/01/14 13:07:06 nn 1.60.24.4: #i84689# handle hidden rows at the end of the sheet correctly 2008/01/11 13:25:30 dr 1.60.24.3: RESYNC: (1.60-1.61); FILE MERGED 2008/01/10 19:59:41 nn 1.60.24.2: #i84689# skip multiple hidden rows also in GetScrPos 2008/01/09 19:45:45 nn 1.60.24.1: #i84689# improve performance of repaint notifications from conditional formats


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [77783522daa7eee0bfa7dd6f650473232edebaeb]

INTEGRATION: CWS dr58_SRC680 (1.14.188); FILE MERGED 2007/12/14 10:51:03 nn 1.14.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [b49bbeb3813bce72e640dedc1080a96ee569dbf5]

INTEGRATION: CWS dr58_SRC680 (1.11.158); FILE MERGED 2007/12/14 10:51:03 nn 1.11.158.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [116602abb55e20fcf329cac04b0899e13dc5ebaa]

INTEGRATION: CWS dr58_SRC680 (1.36.40); FILE MERGED 2007/12/14 10:51:03 nn 1.36.40.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [7b5eb3119fc771b7561c3baa5cbc8827db13aa9e]

INTEGRATION: CWS dr58_SRC680 (1.11.188); FILE MERGED 2008/01/09 19:45:45 nn 1.11.188.1: #i84689# improve performance of repaint notifications from conditional formats


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [1a763223d0e8ea6b41d48e24b349ed926783dbf3]

INTEGRATION: CWS dr58_SRC680 (1.70.26); FILE MERGED 2007/12/14 10:51:03 nn 1.70.26.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [ab80adaa27f09a81d39823b1edd321d308afa348]

INTEGRATION: CWS dr58_SRC680 (1.62.22); FILE MERGED 2008/01/11 13:25:27 dr 1.62.22.2: RESYNC: (1.62-1.63); FILE MERGED 2008/01/09 19:45:45 nn 1.62.22.1: #i84689# improve performance of repaint notifications from conditional formats


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [e950135b998c240d3e1206bb542ca38f4b03335e]

INTEGRATION: CWS dr58_SRC680 (1.15.188); FILE MERGED 2008/01/11 12:50:46 nn 1.15.188.1: #i83005# ExecuteDrop: don't move to the same position


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d89b1fe49bb5314ffb8a68918f0e484344dfac12]

INTEGRATION: CWS dr58_SRC680 (1.53.30); FILE MERGED 2008/01/11 12:49:59 dr 1.53.30.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [405309975da23dd9c006a71cfdabbd117e81e18f]

INTEGRATION: CWS dr58_SRC680 (1.40.26); FILE MERGED 2007/12/14 10:51:03 nn 1.40.26.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [66d2d613624caf3379f843d424c0d5cdf22287a1]

INTEGRATION: CWS dr58_SRC680 (1.54.156); FILE MERGED 2007/12/14 10:51:02 nn 1.54.156.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [9de35ed9f9b4d07b35413b59f7bfd3a1b9422358]

INTEGRATION: CWS dr58_SRC680 (1.31.96); FILE MERGED 2008/01/11 13:25:23 dr 1.31.96.2: RESYNC: (1.31-1.32); FILE MERGED 2008/01/11 12:49:59 dr 1.31.96.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [0776202d518577ed709108482a4e4fc6707f9272]

INTEGRATION: CWS dr58_SRC680 (1.21.94); FILE MERGED 2008/01/11 12:49:58 dr 1.21.94.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [fa3d82a11ca41020ecdb22d8f938a2d9eedbdca6]

INTEGRATION: CWS dr58_SRC680 (1.36.94); FILE MERGED 2007/12/14 10:51:02 nn 1.36.94.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [785e9cf3612891397a4310ba52e36b2004b37613]

INTEGRATION: CWS dr58_SRC680 (1.14.158); FILE MERGED 2007/12/14 10:51:02 nn 1.14.158.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [f1b95ccad3ffa0f15bc209344ed95c4863ddc6a7]

INTEGRATION: CWS dr58_SRC680 (1.87.18); FILE MERGED 2008/01/11 13:25:20 dr 1.87.18.2: RESYNC: (1.87-1.88); FILE MERGED 2007/12/14 10:51:02 nn 1.87.18.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [15fd2eeb89dcaa0d88950d420044579ee17ee3ae]

INTEGRATION: CWS dr58_SRC680 (1.48.40); FILE MERGED 2008/01/11 12:49:58 dr 1.48.40.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:51:02 nn 1.48.40.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [2e18425e8f4a7bdd7113804a08ca8074db4d15a9]

INTEGRATION: CWS dr58_SRC680 (1.30.56); FILE MERGED 2007/12/14 10:51:02 nn 1.30.56.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [34316b983464473a2d691996f21efe5b4089cb64]

INTEGRATION: CWS dr58_SRC680 (1.48.24); FILE MERGED 2007/12/14 10:51:02 nn 1.48.24.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [b85a6203b54162ea91f4a87dcd1450f0c9f651d3]

INTEGRATION: CWS dr58_SRC680 (1.44.30); FILE MERGED 2008/01/11 12:49:58 dr 1.44.30.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [2e91b04934598e38950fb3d20398b9ca29502452]

INTEGRATION: CWS dr58_SRC680 (1.3.34); FILE MERGED 2008/01/11 16:17:17 dr 1.3.34.1: #i10000# missing includes


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [354db12fcc50048e56822011c6fa8928541369bd]

INTEGRATION: CWS dr58_SRC680 (1.5.26); FILE MERGED 2008/01/11 16:17:16 dr 1.5.26.2: #i10000# missing includes 2008/01/11 16:07:15 dr 1.5.26.1: #i10000# missing include


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d9011b42f5ae10c76e044df4e0850633c27cd604]

INTEGRATION: CWS dr58_SRC680 (1.19.94); FILE MERGED 2007/12/14 10:51:02 nn 1.19.94.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [428d02bf5b1bb380c1cfa4e3a878167c1d241e65]

INTEGRATION: CWS dr58_SRC680 (1.9.188); FILE MERGED 2007/12/14 10:51:02 nn 1.9.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d94af8dc6c411c5e7217b0dd96c8de8af7ca0b51]

INTEGRATION: CWS dr58_SRC680 (1.63.26); FILE MERGED 2007/12/14 10:51:01 nn 1.63.26.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [ee5595fc3708c42ebb40ec4eed60d2e1a1eef6ac]

INTEGRATION: CWS dr58_SRC680 (1.107.74); FILE MERGED 2008/01/11 13:25:17 dr 1.107.74.3: RESYNC: (1.107-1.108); FILE MERGED 2008/01/11 12:49:58 dr 1.107.74.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:51:01 nn 1.107.74.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [921f33a2836141e8457b3e3250c4c28032b6ce05]

INTEGRATION: CWS dr58_SRC680 (1.16.188); FILE MERGED 2007/12/14 10:51:01 nn 1.16.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [77a572ef52dfd27c88233c83861b9d1768f93523]

INTEGRATION: CWS dr58_SRC680 (1.10.150); FILE MERGED 2007/12/14 10:51:01 nn 1.10.150.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [0babc1c2451cd3df059f2f056e1c490bcd2eba50]

INTEGRATION: CWS dr58_SRC680 (1.13.158); FILE MERGED 2007/12/14 10:51:01 nn 1.13.158.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [683af12734e8c312d93c6d7d8d33a6d422f92c3a]

INTEGRATION: CWS dr58_SRC680 (1.19.188); FILE MERGED 2008/01/11 12:49:58 dr 1.19.188.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:51:01 nn 1.19.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [f98fa8ea8cffad01ec44f3ac6d025c3668025e7e]

INTEGRATION: CWS dr58_SRC680 (1.9.188); FILE MERGED 2007/12/14 10:51:01 nn 1.9.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [14abdcb121c6610e5f2e6246e5cbbeb1104dc2ff]

INTEGRATION: CWS dr58_SRC680 (1.23.188); FILE MERGED 2008/01/11 12:49:57 dr 1.23.188.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:51:00 nn 1.23.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [4db272114c51456e800a15bc36884067d65762b7]

INTEGRATION: CWS dr58_SRC680 (1.4.188); FILE MERGED 2007/12/21 16:25:41 er 1.4.188.1: remove superfluous SC_MAXFIELDS


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [29615f7913528717aeff013c6f93e4bb8c66451f]

INTEGRATION: CWS dr58_SRC680 (1.5.556); FILE MERGED 2007/12/21 16:26:42 er 1.5.556.1: #i30977# allow all columns in Sort and Subtotals


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [e4de9728ca008fda99a973456f2ec6131e7247a7]

INTEGRATION: CWS dr58_SRC680 (1.7.188); FILE MERGED 2007/12/21 16:26:41 er 1.7.188.1: #i30977# allow all columns in Sort and Subtotals


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [0b19f84dc58a63f0fcdbe3bc02f16292afb303e0]

INTEGRATION: CWS dr58_SRC680 (1.15.188); FILE MERGED 2008/01/11 12:49:57 dr 1.15.188.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2008/01/09 12:02:46 dr 1.15.188.1: #i75893# decode URLs in reference input


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [751f460e68559d9011cd0cae1872c5e2be289f62]

INTEGRATION: CWS dr58_SRC680 (1.12.262); FILE MERGED 2008/01/11 13:25:12 dr 1.12.262.2: RESYNC: (1.12-1.13); FILE MERGED 2008/01/11 12:49:57 dr 1.12.262.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [8c10b1caba08f4abc13a63d139a5c2e57c63b36c]

INTEGRATION: CWS dr58_SRC680 (1.23.94); FILE MERGED 2008/01/11 12:49:57 dr 1.23.94.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [f1ad333b4c68ed4f456a11eeac3efad1a0e6ecd5]

INTEGRATION: CWS dr58_SRC680 (1.35.94); FILE MERGED 2008/01/11 12:49:57 dr 1.35.94.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [60f1bb7fa0570352862143e7c8ac646991451656]

INTEGRATION: CWS dr58_SRC680 (1.17.188); FILE MERGED 2007/12/14 10:51:00 nn 1.17.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [45416229a045f62a16789f888192babf2a26cf32]

INTEGRATION: CWS dr58_SRC680 (1.57.26); FILE MERGED 2007/12/14 10:51:00 nn 1.57.26.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [b54f70e910e594339a03598eab29c30b6cf2c849]

INTEGRATION: CWS dr58_SRC680 (1.30.92); FILE MERGED 2007/12/14 10:51:00 nn 1.30.92.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [1690841dd45843db968169e2ba2bc21379fca849]

INTEGRATION: CWS dr58_SRC680 (1.93.56); FILE MERGED 2007/12/14 10:51:00 nn 1.93.56.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [a3c3b3dc6f7ca750d257c948236ce81c50a9eb57]

INTEGRATION: CWS dr58_SRC680 (1.22.178); FILE MERGED 2007/12/14 10:51:00 nn 1.22.178.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [de6e1faeee7c9978212115dba161b7cfe7575406]

INTEGRATION: CWS dr58_SRC680 (1.18.30); FILE MERGED 2007/12/14 10:51:00 nn 1.18.30.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [cc08908541b141acee8e495f5359d605245f7f87]

INTEGRATION: CWS dr58_SRC680 (1.14.188); FILE MERGED 2007/12/14 10:51:00 nn 1.14.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [78f888a16cfc6630cc212a4e578a206ec63e385b]

INTEGRATION: CWS dr58_SRC680 (1.7.188); FILE MERGED 2007/12/14 10:50:59 nn 1.7.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d04fd3902825019a70bcb6e856ad75e12bce1564]

INTEGRATION: CWS dr58_SRC680 (1.55.26); FILE MERGED 2007/12/14 10:50:59 nn 1.55.26.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [04157b58be4427db44740b1571f85c96cbf7e1c0]

INTEGRATION: CWS dr58_SRC680 (1.74.14); FILE MERGED 2008/01/11 12:49:56 dr 1.74.14.3: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2008/01/09 12:02:02 dr 1.74.14.2: #i75893# decode URLs in reference input 2007/12/14 10:50:59 nn 1.74.14.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [f4073c3a222bee2cbc063b8a3ef553328965a341]

INTEGRATION: CWS dr58_SRC680 (1.39.158); FILE MERGED 2007/12/14 10:50:59 nn 1.39.158.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [4be774878ea57857d91419f9dfc3cac354459812]

INTEGRATION: CWS dr58_SRC680 (1.49.94); FILE MERGED 2007/12/14 10:50:59 nn 1.49.94.2: #i84560# braces for gcc 4.2.1 warnings (patch fom hub) 2007/12/10 14:47:42 dr 1.49.94.1: #i82409# always update active cell on selection event


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [1152c0d0d3c8d9adf4b2421b50ad1e3db06bddcf]

INTEGRATION: CWS dr58_SRC680 (1.36.158); FILE MERGED 2008/01/11 12:49:56 dr 1.36.158.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:59 nn 1.36.158.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [5adecae0bba6d02405e1efc5fbd8eec473963ccd]

INTEGRATION: CWS dr58_SRC680 (1.71.178); FILE MERGED 2007/12/14 10:50:59 nn 1.71.178.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [94ca7699249d728c1d8142f731b5f5843c72e68a]

INTEGRATION: CWS dr58_SRC680 (1.13.188); FILE MERGED 2007/12/14 10:50:59 nn 1.13.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [6a1105334f8b3b153578f157e48f020c2a6372a6]

INTEGRATION: CWS dr58_SRC680 (1.29.188); FILE MERGED 2008/01/11 12:49:19 dr 1.29.188.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [fdacbe6c1e38934d085e2e86ea1892990fbeb721]

INTEGRATION: CWS dr58_SRC680 (1.25.188); FILE MERGED 2008/01/11 12:49:19 dr 1.25.188.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d53077cca68651269824f1d08678332f23558146]

INTEGRATION: CWS dr58_SRC680 (1.59.188); FILE MERGED 2007/12/14 10:50:58 nn 1.59.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [10666bcdb65595eba45e4341548ac9a157811d73]

INTEGRATION: CWS dr58_SRC680 (1.92.418); FILE MERGED 2008/01/11 12:49:19 dr 1.92.418.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [0ed740ba717b1ef9e7b931bbcc647473a4b1a5c2]

INTEGRATION: CWS dr58_SRC680 (1.127.94); FILE MERGED 2008/01/11 12:49:19 dr 1.127.94.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [1b48bd030651676324d03ed74dd455c02f6cc765]

INTEGRATION: CWS dr58_SRC680 (1.207.94); FILE MERGED 2008/01/11 13:25:09 dr 1.207.94.2: RESYNC: (1.207-1.208); FILE MERGED 2008/01/11 12:49:19 dr 1.207.94.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [eabf5996fd8e7005e7d904dd82918efcc1a6fcd8]

INTEGRATION: CWS dr58_SRC680 (1.93.188); FILE MERGED 2008/01/11 12:49:19 dr 1.93.188.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:58 nn 1.93.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [b8c10d262872ea658fcb045ef29dc4c1a7c6cd53]

INTEGRATION: CWS dr58_SRC680 (1.28.56); FILE MERGED 2007/12/14 10:50:58 nn 1.28.56.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [0a4fbfee401a1f8b87bb0d8fcbfa00f6dd109e52]

INTEGRATION: CWS dr58_SRC680 (1.11.556); FILE MERGED 2008/01/11 12:49:19 dr 1.11.556.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [754ba514b3b80ada1e3042fbb67b23a18512667a]

INTEGRATION: CWS dr58_SRC680 (1.29.80); FILE MERGED 2007/12/14 10:50:58 nn 1.29.80.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [428c2e8e48b6fb7212fdaa7341a2e3df453ed7a2]

INTEGRATION: CWS dr58_SRC680 (1.8.556); FILE MERGED 2008/01/11 12:49:19 dr 1.8.556.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [e3b4f5a23f343fefd798f13ecc146dea0e06a894]

INTEGRATION: CWS dr58_SRC680 (1.20.188); FILE MERGED 2007/12/14 10:50:58 nn 1.20.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [256a2881a9c33bf8b191d7e4af799cb5eb9f8195]

INTEGRATION: CWS dr58_SRC680 (1.27.188); FILE MERGED 2008/01/11 12:49:19 dr 1.27.188.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [a98113d06df5e19c12113fd6e1735cbaf17d8b47]

INTEGRATION: CWS dr58_SRC680 (1.48.150); FILE MERGED 2007/12/14 10:50:58 nn 1.48.150.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [4701d9b2f26c06ef05853f25cb93efae15da1fd0]

INTEGRATION: CWS dr58_SRC680 (1.31.188); FILE MERGED 2008/01/11 12:49:19 dr 1.31.188.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [7c521a773ff0b24ea5879339077b3ec1563ac29b]

INTEGRATION: CWS dr58_SRC680 (1.10.556); FILE MERGED 2008/01/11 12:49:19 dr 1.10.556.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [2cd3d15ddfb762f88fbd3b2f4546a0a30cfff75d]

INTEGRATION: CWS dr58_SRC680 (1.9.556); FILE MERGED 2008/01/11 12:49:19 dr 1.9.556.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [a13ab2ec7d09554c52b042d7908be02db0e9ce71]

INTEGRATION: CWS dr58_SRC680 (1.15.356); FILE MERGED 2008/01/11 12:49:19 dr 1.15.356.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [7996ff4179d642bb5a58d3d78d412851a3a55f0c]

INTEGRATION: CWS dr58_SRC680 (1.26.150); FILE MERGED 2007/12/14 10:50:58 nn 1.26.150.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [c23c5f56b511e3566f03544ce2eb362f05ef5440]

INTEGRATION: CWS dr58_SRC680 (1.15.556); FILE MERGED 2008/01/11 12:49:19 dr 1.15.556.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [457a6f122f52e23fcf87613a932f900fb0ad5852]

INTEGRATION: CWS dr58_SRC680 (1.30.56); FILE MERGED 2007/12/14 10:50:58 nn 1.30.56.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [9de683ce9edd4b4e891c281a798c831fa3b6ee7b]

INTEGRATION: CWS dr58_SRC680 (1.21.24); FILE MERGED 2008/01/11 12:48:45 dr 1.21.24.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [be52f28abd2ee21f17c7b6db30750162f8d6580b]

INTEGRATION: CWS dr58_SRC680 (1.4.348); FILE MERGED 2007/12/12 16:55:11 dr 1.4.348.1: #i84496# import lotus sheet names, patch by kohei


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [6b1952ee9f844d0c44a1e4a9f560002621640ed0]

INTEGRATION: CWS dr58_SRC680 (1.16.92); FILE MERGED 2008/01/11 12:46:17 dr 1.16.92.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/12 16:55:11 dr 1.16.92.1: #i84496# import lotus sheet names, patch by kohei


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [a46070fa9f8dcae685cce894d42175a5f1e55790]

INTEGRATION: CWS dr58_SRC680 (1.8.188); FILE MERGED 2007/12/18 10:42:50 dr 1.8.188.1: #i76299# do not rely on SvStream::IsEof


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [9b9386c4dec4f9a378035cc836efa4cd67ed445b]

INTEGRATION: CWS dr58_SRC680 (1.10.356); FILE MERGED 2007/12/14 14:43:48 dr 1.10.356.1: #i84562# do not try to load ODBC connections


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [31bc54ba281c3323ce644fb4b74143ff460c2526]

INTEGRATION: CWS dr58_SRC680 (1.10.56); FILE MERGED 2008/01/08 13:03:59 dr 1.10.56.7: #i84812# import/export solid fill including transparency from Escher property set 2007/12/18 09:20:05 dr 1.10.56.6: #i83151# hairlines only in 3d bar/pie charts 2007/12/17 15:55:02 dr 1.10.56.5: #i81392# better 3d light, import/export data label number format 2007/12/17 13:49:39 dr 1.10.56.4: #i83372# import/export of data label placement 2007/12/17 11:58:10 dr 1.10.56.3: #i83372# import of data label placement 2007/12/14 14:18:22 dr 1.10.56.2: #i83100# export of trendline equations, default text handling 2007/12/13 15:21:29 dr 1.10.56.1: #i83100# import trendline equation settings


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [39b6348a986f1d13c53b37084e26485b574405e9]

INTEGRATION: CWS dr58_SRC680 (1.14.94); FILE MERGED 2007/12/12 13:22:21 dr 1.14.94.1: #i81154# replace special characters in sheet names in hyperlinks, patch by kohei


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [b9beed96105a9c020e17c61262979bb5d0a0531d]

INTEGRATION: CWS dr58_SRC680 (1.9.98); FILE MERGED 2007/12/18 09:20:05 dr 1.9.98.5: #i83151# hairlines only in 3d bar/pie charts 2007/12/17 15:55:02 dr 1.9.98.4: #i81392# better 3d light, import/export data label number format 2007/12/17 13:49:38 dr 1.9.98.3: #i83372# import/export of data label placement 2007/12/14 14:18:22 dr 1.9.98.2: #i83100# export of trendline equations, default text handling 2007/12/13 15:21:28 dr 1.9.98.1: #i83100# import trendline equation settings


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [70046b9f00767ebea54bfeba7db025041741a986]

INTEGRATION: CWS dr58_SRC680 (1.9.150); FILE MERGED 2007/12/10 17:07:30 dr 1.9.150.1: #i48182# set manual row height for merged cells with automatic linebreak


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [20ea611b2cf708eb60285759140a3fce31eff7f8]

INTEGRATION: CWS dr58_SRC680 (1.18.150); FILE MERGED 2007/12/10 17:07:30 dr 1.18.150.1: #i48182# set manual row height for merged cells with automatic linebreak


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [ea175999235df92c67bb5346e6d6a21540e9cddf]

INTEGRATION: CWS dr58_SRC680 (1.3.98); FILE MERGED 2008/01/08 13:03:59 dr 1.3.98.4: #i84812# import/export solid fill including transparency from Escher property set 2007/12/17 15:55:02 dr 1.3.98.3: #i81392# better 3d light, import/export data label number format 2007/12/17 13:49:38 dr 1.3.98.2: #i83372# import/export of data label placement 2007/12/14 14:18:21 dr 1.3.98.1: #i83100# export of trendline equations, default text handling


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [e2f84a981a616837d83c262b327ec11b310d9d11]

INTEGRATION: CWS dr58_SRC680 (1.3.556); FILE MERGED 2007/12/12 16:55:10 dr 1.3.556.1: #i84496# import lotus sheet names, patch by kohei


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [36a66c54e3a01a83d6b9868bc1168f8ed0d151c2]

INTEGRATION: CWS dr58_SRC680 (1.13.188); FILE MERGED 2008/01/14 15:14:08 dr 1.13.188.1: #i84878# shared formulas still broken sometimes


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [2410e9ab70c2a88d7dcd98b4c0a15b7923d3792b]

INTEGRATION: CWS dr58_SRC680 (1.68.186); FILE MERGED 2008/01/07 14:34:43 dr 1.68.186.1: #i38093# #i70026# do not set CR_FILTERED flags for unfiltered autofilter ranges


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [b996204b12a753d646a24bb717d1f20d2d2b3c5d]

INTEGRATION: CWS dr58_SRC680 (1.31.158); FILE MERGED 2007/12/14 10:50:58 nn 1.31.158.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [f1e2b428e7dfb04fc4ed4631bfab705cd75f4e7f]

INTEGRATION: CWS dr58_SRC680 (1.8.348); FILE MERGED 2007/12/14 10:50:57 nn 1.8.348.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [abb8ae9fbf46e22b163087b99f0458b324569dbc]

INTEGRATION: CWS dr58_SRC680 (1.11.76); FILE MERGED 2007/12/17 11:58:42 dr 1.11.76.1: #i83372# import of data label placement


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [9f19905b86d4c194abde872c69dc1749728f5705]

INTEGRATION: CWS dr58_SRC680 (1.16.76); FILE MERGED 2007/12/17 11:58:42 dr 1.16.76.3: #i83372# import of data label placement 2007/12/14 14:18:32 dr 1.16.76.2: #i83100# export of trendline equations, default text handling 2007/12/13 12:48:21 dr 1.16.76.1: #i84527# BIFF5/8 differences in import/export of constant arrays


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [8222938a5a193c701d8fd9fed163c36e157004d6]

INTEGRATION: CWS dr58_SRC680 (1.8.150); FILE MERGED 2008/01/08 13:03:30 dr 1.8.150.4: #i84812# import/export solid fill including transparency from Escher property set 2007/12/17 13:49:57 dr 1.8.150.3: #i83372# import/export of data label placement 2007/12/17 11:58:42 dr 1.8.150.2: #i83372# import of data label placement 2007/12/14 14:18:32 dr 1.8.150.1: #i83100# export of trendline equations, default text handling


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [2e875334ccd1f242d7865c93439c7316948ee51a]

INTEGRATION: CWS dr58_SRC680 (1.7.150); FILE MERGED 2007/12/19 13:52:28 dr 1.7.150.1: #i4140# handle automatic axis line color


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [a10a0e22090bd955cf7700a5f5b79f8054de7404]

INTEGRATION: CWS dr58_SRC680 (1.35.98); FILE MERGED 2007/12/18 10:07:24 dr 1.35.98.1: #i74508# auto-wrap for specific vertical alignments


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d704bfa12c507e17e1d41d11a0c37ea92ef8a3f3]

INTEGRATION: CWS dr58_SRC680 (1.15.186); FILE MERGED 2008/01/11 12:46:04 dr 1.15.186.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/19 14:45:41 dr 1.15.186.1: #i80222# no assertion for empty fields


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [3356469be7ea20dabdb92329be3596f4c627f99b]

INTEGRATION: CWS dr58_SRC680 (1.16.98); FILE MERGED 2007/12/14 10:50:57 nn 1.16.98.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [7921e4e6ab16e100b7e30337b229859f1cd505ad]

INTEGRATION: CWS dr58_SRC680 (1.54.94); FILE MERGED 2008/01/11 12:46:04 dr 1.54.94.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:57 nn 1.54.94.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [8e4471d2fd403546c36d27f68a7ec12d89684ce5]

INTEGRATION: CWS dr58_SRC680 (1.29.76); FILE MERGED 2007/12/14 14:50:05 dr 1.29.76.3: #i84562# do not try to load ODBC connections 2007/12/14 10:50:57 nn 1.29.76.2: #i84560# braces for gcc 4.2.1 warnings (patch fom hub) 2007/12/12 13:22:21 dr 1.29.76.1: #i81154# replace special characters in sheet names in hyperlinks, patch by kohei


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [c8b381b11f295dcf4dc693023d36dd503ad580ce]

INTEGRATION: CWS dr58_SRC680 (1.16.56); FILE MERGED 2007/12/19 13:52:28 dr 1.16.56.7: #i4140# handle automatic axis line color 2007/12/18 09:20:21 dr 1.16.56.6: #i83151# hairlines only in 3d bar/pie charts 2007/12/17 15:54:39 dr 1.16.56.5: #i81392# better 3d light, import/export data label number format 2007/12/17 13:49:57 dr 1.16.56.4: #i83372# import/export of data label placement 2007/12/17 11:58:42 dr 1.16.56.3: #i83372# import of data label placement 2007/12/14 14:18:32 dr 1.16.56.2: #i83100# export of trendline equations, default text handling 2007/12/13 15:21:51 dr 1.16.56.1: #i83100# import trendline equation settings


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [57743c1b3849fa15db69cb5699ea0b45d27061a3]

INTEGRATION: CWS dr58_SRC680 (1.16.150); FILE MERGED 2007/12/11 16:02:09 dr 1.16.150.2: #i79416# add note for cells with multiple hyperlinks, again 2007/12/10 17:06:36 dr 1.16.150.1: #i48182# set manual row height for merged cells with automatic linebreak


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [821f38957b87b874c1c59470b2619fa076bbc9af]

INTEGRATION: CWS dr58_SRC680 (1.30.92); FILE MERGED 2007/12/10 17:06:36 dr 1.30.92.1: #i48182# set manual row height for merged cells with automatic linebreak


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [e7ed2446dea75cd525bca0e1ac7ac1f9ef470dc4]

INTEGRATION: CWS dr58_SRC680 (1.20.54); FILE MERGED 2008/01/10 14:31:44 dr 1.20.54.2: typo... 2007/12/13 12:48:20 dr 1.20.54.1: #i84527# BIFF5/8 differences in import/export of constant arrays


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d95fd5898d44eaf8abcd70d633fb24381b5f51c8]

INTEGRATION: CWS dr58_SRC680 (1.22.76); FILE MERGED 2008/01/11 12:46:04 dr 1.22.76.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/11 16:02:09 dr 1.22.76.1: #i79416# add note for cells with multiple hyperlinks, again


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [c7f0044f19b00236877ee7a9f89cd2aa40c826f4]

INTEGRATION: CWS dr58_SRC680 (1.21.150); FILE MERGED 2007/12/14 14:50:05 dr 1.21.150.1: #i84562# do not try to load ODBC connections


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [abc6da6ff887262c80d142dd6762a3b54d6f73d6]

INTEGRATION: CWS dr58_SRC680 (1.5.56); FILE MERGED 2008/01/08 13:03:30 dr 1.5.56.4: #i84812# import/export solid fill including transparency from Escher property set 2007/12/17 15:54:39 dr 1.5.56.3: #i81392# better 3d light, import/export data label number format 2007/12/17 13:49:57 dr 1.5.56.2: #i83372# import/export of data label placement 2007/12/14 14:18:32 dr 1.5.56.1: #i83100# export of trendline equations, default text handling


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [47f0d5175a70c086750e66bf948805ae7e65ff22]

INTEGRATION: CWS dr58_SRC680 (1.68.98); FILE MERGED 2007/12/18 14:43:38 dr 1.68.98.1: #i81389# recalc after filters


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [0a8698faadc148194eed4c3063d12f3c6ced9f8a]

INTEGRATION: CWS dr58_SRC680 (1.24.188); FILE MERGED 2008/01/14 15:14:19 dr 1.24.188.2: #i84878# shared formulas still broken sometimes 2008/01/10 10:00:25 dr 1.24.188.1: #i84878# clear shared formula buffer for every sheet


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [beabae67169d413d74623eae728970837aa7c13b]

INTEGRATION: CWS dr58_SRC680 (1.90.24); FILE MERGED 2008/01/14 15:14:19 dr 1.90.24.4: #i84878# shared formulas still broken sometimes 2008/01/11 12:46:03 dr 1.90.24.3: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2008/01/10 10:00:25 dr 1.90.24.2: #i84878# clear shared formula buffer for every sheet 2008/01/07 14:34:33 dr 1.90.24.1: #i38093# #i70026# do not set CR_FILTERED flags for unfiltered autofilter ranges


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [456412b74900a5b512d21b3602c6a19e96a88397]

INTEGRATION: CWS dr58_SRC680 (1.120.94); FILE MERGED 2008/01/11 13:25:05 dr 1.120.94.2: RESYNC: (1.120-1.121); FILE MERGED 2008/01/07 14:34:33 dr 1.120.94.1: #i38093# #i70026# do not set CR_FILTERED flags for unfiltered autofilter ranges


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [1f4e81b3e90cc490cd52e74b027469265be9a0a6]

INTEGRATION: CWS dr58_SRC680 (1.44.94); FILE MERGED 2007/12/13 12:48:20 dr 1.44.94.1: #i84527# BIFF5/8 differences in import/export of constant arrays


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [c09aa2589e134f4f132c5c5cc46a38e3c8fbd747]

INTEGRATION: CWS dr58_SRC680 (1.48.94); FILE MERGED 2008/01/09 09:53:34 dr 1.48.94.2: #i84758# correct size of additional data of NLR tokens 2007/12/13 12:48:20 dr 1.48.94.1: #i84527# BIFF5/8 differences in import/export of constant arrays


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [22066b9604b605efee52e5d7e5781fda3b450e34]

INTEGRATION: CWS dr58_SRC680 (1.32.188); FILE MERGED 2008/01/07 14:34:33 dr 1.32.188.2: #i38093# #i70026# do not set CR_FILTERED flags for unfiltered autofilter ranges 2007/10/25 10:41:26 dr 1.32.188.1: #i81396# do not hide rows with default height


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [61f7634c0c3c2513607d5e545555405cc631075d]

INTEGRATION: CWS dr58_SRC680 (1.29.14); FILE MERGED 2008/01/10 21:16:52 er 1.29.14.1: #i82644# signed values in array constants; parse away spaces too


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [a5954decb6b29eff8cb9375a7e3f5a191bc80395]

INTEGRATION: CWS dr58_SRC680 (1.15.120); FILE MERGED 2007/12/14 10:50:57 nn 1.15.120.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d52fbab872d42238d79909339789b9a099162e63]

INTEGRATION: CWS dr58_SRC680 (1.33.90); FILE MERGED 2008/01/11 12:45:44 dr 1.33.90.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [53e6ff6a361d8b721797a841ae1825aa0b3bd444]

INTEGRATION: CWS dr58_SRC680 (1.53.36); FILE MERGED 2008/01/11 18:54:37 er 1.53.36.4: /me sleepy, cast double 2008/01/11 18:20:01 er 1.53.36.3: ScRand: +1 2007/12/21 16:39:09 er 1.53.36.2: #i53642# RAND() [0;1[ not including 1 ... 2007/12/14 10:50:57 nn 1.53.36.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [fc6d4b24e5002eacc8492df2256d25a829ea69ec]

INTEGRATION: CWS dr58_SRC680 (1.27.188); FILE MERGED 2008/01/11 12:45:44 dr 1.27.188.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:57 nn 1.27.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [00e6d2ec30c901ff64df06e68fc0ca58db12f258]

INTEGRATION: CWS dr58_SRC680 (1.26.188); FILE MERGED 2007/12/14 10:50:57 nn 1.26.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [c03dfc95ae9c7ba0a78f2a4b613f95ce6785948d]

INTEGRATION: CWS dr58_SRC680 (1.2.76); FILE MERGED 2008/01/11 12:45:44 dr 1.2.76.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [c392912e85044795bf875cb62dfc1a8272b69d31]

INTEGRATION: CWS dr58_SRC680 (1.22.94); FILE MERGED 2007/12/14 10:50:56 nn 1.22.94.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [888b0201ec93eb3e1ef9a6cbabde0069a424b4fe]

INTEGRATION: CWS dr58_SRC680 (1.10.94); FILE MERGED 2007/12/14 10:50:56 nn 1.10.94.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d3e342b1276b192f9456ccb15545862901c4df2a]

INTEGRATION: CWS dr58_SRC680 (1.14.94); FILE MERGED 2008/01/11 13:25:02 dr 1.14.94.3: RESYNC: (1.14-1.15); FILE MERGED 2008/01/11 12:45:26 dr 1.14.94.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:56 nn 1.14.94.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [bc8ed548ece1d9980566926e21a51d1682c26e1d]

INTEGRATION: CWS dr58_SRC680 (1.21.38); FILE MERGED 2007/12/14 10:50:56 nn 1.21.38.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [66c5c79196100ed979fbaa16f6709fbe26e9994c]

INTEGRATION: CWS dr58_SRC680 (1.38.28); FILE MERGED 2008/01/11 12:45:26 dr 1.38.28.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:56 nn 1.38.28.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [edf8c8acc6808a917135d1bc1c2d0e6b915888a4]

INTEGRATION: CWS dr58_SRC680 (1.5.188); FILE MERGED 2008/01/11 13:24:59 dr 1.5.188.2: RESYNC: (1.5-1.6); FILE MERGED 2007/12/14 10:50:56 nn 1.5.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [f88adc86f4b167f6fc84fc43296b5c1ee3e65c04]

INTEGRATION: CWS dr58_SRC680 (1.10.28); FILE MERGED 2007/12/14 10:50:56 nn 1.10.28.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [efb71cf8cf0e34c5d59eccb2f950d59d1e510d3d]

INTEGRATION: CWS dr58_SRC680 (1.8.188); FILE MERGED 2007/12/14 10:50:56 nn 1.8.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [57b4edd9633d7715aafbfdb00b275d9866837aa0]

INTEGRATION: CWS dr58_SRC680 (1.21.188); FILE MERGED 2007/12/14 10:50:56 nn 1.21.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [556c76d838ce0cf39bb082813d4dc9db8e6d832a]

INTEGRATION: CWS dr58_SRC680 (1.52.56); FILE MERGED 2008/01/11 12:45:26 dr 1.52.56.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:56 nn 1.52.56.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [159bb2d5eca0e4856e117497c760cd8bafe8dd29]

INTEGRATION: CWS dr58_SRC680 (1.22.24); FILE MERGED 2008/01/11 12:45:26 dr 1.22.24.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [50f36ed52e0aa9caef1d5658fa546786fb15f1b9]

INTEGRATION: CWS dr58_SRC680 (1.80.30); FILE MERGED 2008/01/11 12:45:25 dr 1.80.30.4: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2008/01/10 19:03:58 nn 1.80.30.3: #i83784# use ScBulkBroadcast in BroadcastFromClip 2008/01/09 19:45:45 nn 1.80.30.2: #i84689# improve performance of repaint notifications from conditional formats 2007/12/14 10:50:56 nn 1.80.30.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [db77155fa5a218a4bd6080a7e20975ccb951851c]

INTEGRATION: CWS dr58_SRC680 (1.40.56); FILE MERGED 2008/01/11 12:45:25 dr 1.40.56.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:56 nn 1.40.56.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [435975bdc5f7b14413247c520a41c1fa8441dc42]

INTEGRATION: CWS dr58_SRC680 (1.50.26); FILE MERGED 2007/12/14 10:50:55 nn 1.50.26.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [3071699c7cea7cb390b92e11567b00d209ba6e10]

INTEGRATION: CWS dr58_SRC680 (1.18.188); FILE MERGED 2007/12/14 10:50:55 nn 1.18.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [87f9fdb2d3fcc551ba0763d5bdd490cb79b4f996]

INTEGRATION: CWS dr58_SRC680 (1.38.32); FILE MERGED 2008/01/11 12:45:25 dr 1.38.32.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:55 nn 1.38.32.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [2ff6a306d667f64ab2bf7052a20bd6819dd2406e]

INTEGRATION: CWS dr58_SRC680 (1.67.28); FILE MERGED 2008/01/11 12:45:25 dr 1.67.28.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:55 nn 1.67.28.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [fc635325a902017d1f3edb97d784ebc34d6e9364]

INTEGRATION: CWS dr58_SRC680 (1.21.188); FILE MERGED 2007/12/14 10:50:55 nn 1.21.188.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [af596096c3f22f098810d93f57ce19eb926f0a72]

INTEGRATION: CWS dr58_SRC680 (1.24.188); FILE MERGED 2008/01/11 12:45:25 dr 1.24.188.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [c58678d9672acaaaf3ac31746c4f94d32968c7d5]

INTEGRATION: CWS dr58_SRC680 (1.29.156); FILE MERGED 2008/01/11 12:45:25 dr 1.29.156.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [bbde60fde92944bf5c8e9655af2ec7a39a6293ec]

INTEGRATION: CWS dr58_SRC680 (1.24.30); FILE MERGED 2008/01/11 13:24:56 dr 1.24.30.3: RESYNC: (1.24-1.25); FILE MERGED 2008/01/11 12:45:24 dr 1.24.30.2: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header 2007/12/14 10:50:55 nn 1.24.30.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [6eea52507d6963781148515fa4f82937b4aa9bd9]

INTEGRATION: CWS dr58_SRC680 (1.39.94); FILE MERGED 2008/01/11 12:45:24 dr 1.39.94.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [1cb1473d1bb728b1574e74882cad4accc1f41d17]

INTEGRATION: CWS dr58_SRC680 (1.17.26); FILE MERGED 2007/12/14 10:50:55 nn 1.17.26.1: #i84560# braces for gcc 4.2.1 warnings (patch fom hub)


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [44a9aebb0eb7c915ae21262aa27c1a3ac8aca104]

INTEGRATION: CWS dr58_SRC680 (1.23.188); FILE MERGED 2008/01/09 19:45:45 nn 1.23.188.1: #i84689# improve performance of repaint notifications from conditional formats


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [0b183002b81fe5e4f565a262876ce2dc618ce1d2]

INTEGRATION: CWS dr58_SRC680 (1.105.30); FILE MERGED 2008/01/11 15:10:07 dr 1.105.30.1: #i10000# missing include


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [9c7822d6388a0fb485cf24a7a625f1f0d0d0ac8c]

INTEGRATION: CWS dr58_SRC680 (1.18.202); FILE MERGED 2008/01/11 12:41:39 dr 1.18.202.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [d533089861df17b8577f0eb0ace1b2f71673e19d]

INTEGRATION: CWS dr58_SRC680 (1.25.98); FILE MERGED 2008/01/11 12:41:39 dr 1.25.98.1: #i84412# set note visibility when copying cells, remove global depenencies from postit.hxx header


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [273d07ab81ec8962965a59eda26d115808969616]

INTEGRATION: CWS dr58_SRC680 (1.55.22); FILE MERGED 2007/12/10 12:25:06 dr 1.55.22.1: #i84395# loop in ERF/ERFC with argument 0.65


2008-01-29  Rüdiger Timm  <rt@openoffice.org>  [f0f6b9ccf4cfebdb6610cb5c80649261b5d9c471]

INTEGRATION: CWS dr58_SRC680 (1.43.54); FILE MERGED 2008/01/11 10:31:26 dr 1.43.54.1: #i75536# handling of negative values in QUOTIENT function


2008-01-29  Vladimir Glazounov  <vg@openoffice.org>  [0ba52190af77fbfc5f927a9084acd383789596a3]

INTEGRATION: CWS kohei01 (1.36.38); FILE MERGED 2007/12/16 21:35:37 kohei 1.36.38.1: Issue number: i80448 Submitted by: kohei Reviewed by: kohei


2008-01-29  Vladimir Glazounov  <vg@openoffice.org>  [7b861b92ab75025cb165fa347b15525a0e226136]

INTEGRATION: CWS kohei01 (1.3.8); FILE MERGED 2007/12/17 16:38:07 kohei 1.3.8.1: Issue number: i84602 i84604 i84605 Submitted by: erack Reviewed by: npower


2008-01-29  Vladimir Glazounov  <vg@openoffice.org>  [9092444711f53e36f79d1c07f6d484147a9610bd]

INTEGRATION: CWS kohei01 (1.24.242); FILE MERGED 2007/12/16 21:37:31 kohei 1.24.242.1: Issue number: i4695 Submitted by: kohei Reviewed by: er


2008-01-29  Vladimir Glazounov  <vg@openoffice.org>  [d1f59ecd38883cb934be1b9aee5ed3d50c987f60]

INTEGRATION: CWS kohei01 (1.53.48); FILE MERGED 2007/12/16 21:37:31 kohei 1.53.48.1: Issue number: i4695 Submitted by: kohei Reviewed by: er


2008-01-29  Vladimir Glazounov  <vg@openoffice.org>  [3138523cf5026087ef8b44387e2ab73cd2f83ad5]

INTEGRATION: CWS kohei01 (1.13.8); FILE MERGED 2007/12/16 21:37:30 kohei 1.13.8.1: Issue number: i4695 Submitted by: kohei Reviewed by: er


2008-01-28  Vladimir Glazounov  <vg@openoffice.org>  [38bf8578348ccee22f88963f73fabe91d2c093d9]

INTEGRATION: CWS sjfixes03_SRC680 (1.5.194); FILE MERGED 2007/11/22 11:00:25 nn 1.5.194.1: #b6633041# qpro attribute and formula handling


2008-01-28  Vladimir Glazounov  <vg@openoffice.org>  [14b49bc9393ee31f98f34bcb01d22dbb0db71e2d]

INTEGRATION: CWS sjfixes03_SRC680 (1.6.130); FILE MERGED 2007/11/22 11:00:25 nn 1.6.130.1: #b6633041# qpro attribute and formula handling


2008-01-28  Vladimir Glazounov  <vg@openoffice.org>  [2df6a0a27eee9d25cf7c8b479fd664fecda2bcc5]

INTEGRATION: CWS sjfixes03_SRC680 (1.4.224); FILE MERGED 2007/11/22 11:00:25 nn 1.4.224.1: #b6633041# qpro attribute and formula handling


2008-01-28  Vladimir Glazounov  <vg@openoffice.org>  [2efdf1413b1b931ae30ae03e3d59b4c74af43a72]

INTEGRATION: CWS sjfixes03_SRC680 (1.3.224); FILE MERGED 2007/11/22 11:00:25 nn 1.3.224.1: #b6633041# qpro attribute and formula handling


2008-01-28  Oliver Bolte  <obo@openoffice.org>  [bcff2e2ac776466211e8159ed737fc18c7888ba1]

#i85602# precompiled header include missing


2008-01-16  Ivo Hinkelmann  <ihi@openoffice.org>  [9292e3ca8f9533fa0329e017ea98945028714b38]

INTEGRATION: CWS ause085 (1.25.16); FILE MERGED 2007/12/10 14:37:10 hjs 1.25.16.5: #i84262# ugly typo... 2007/12/10 14:33:28 hjs 1.25.16.4: #84262# comment sign troubled bash 2007/12/10 12:32:50 hjs 1.25.16.3: #i84262# see all in bot 2007/12/10 08:54:26 hjs 1.25.16.2: #i84262# ignore rm error 2007/12/05 13:21:01 hjs 1.25.16.1: #i84262# move define from commandline into generated header; add missing pch includes


2008-01-16  Ivo Hinkelmann  <ihi@openoffice.org>  [81bec903e9decbc7a5d521972b057880be47fce2]

INTEGRATION: CWS ause085 (1.2.80); FILE MERGED 2007/12/05 13:21:01 hjs 1.2.80.1: #i84262# move define from commandline into generated header; add missing pch includes


2008-01-16  Ivo Hinkelmann  <ihi@openoffice.org>  [75d330a1da5915203e4c7ed8bca0af7470b12769]

INTEGRATION: CWS ause085 (1.28.16); FILE MERGED 2007/12/05 13:21:01 hjs 1.28.16.1: #i84262# move define from commandline into generated header; add missing pch includes


2008-01-16  Ivo Hinkelmann  <ihi@openoffice.org>  [c4a58cea8b5204a95f8638dc1739594ba095d0c7]

INTEGRATION: CWS ause085 (1.2.194); FILE MERGED 2007/12/05 13:21:01 hjs 1.2.194.1: #i84262# move define from commandline into generated header; add missing pch includes


2008-01-16  Ivo Hinkelmann  <ihi@openoffice.org>  [77bc23f3f4bae9c53c40fb7727d3d8ce413192e3]

INTEGRATION: CWS ause085 (1.3.16); FILE MERGED 2007/12/05 13:21:01 hjs 1.3.16.1: #i84262# move define from commandline into generated header; add missing pch includes


2008-01-16  Ivo Hinkelmann  <ihi@openoffice.org>  [47b769a305dfcbd7966cdb88681004529a4ae7a9]

INTEGRATION: CWS ause085 (1.2.370); FILE MERGED 2007/12/05 13:21:00 hjs 1.2.370.1: #i84262# move define from commandline into generated header; add missing pch includes


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [b8c811224d289d679ce54f6e985772a495729706]

INTEGRATION: CWS unoapi2 (1.3.10); FILE MERGED 2007/11/22 14:10:47 cn 1.3.10.1: #i83871# update list with issues


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [3b63e2faec5ebac84b9dc121ab9382d40b25f334]

INTEGRATION: CWS unoapi2 (1.2.10); FILE MERGED 2007/11/22 14:10:47 cn 1.2.10.1: #i83871# update list with issues


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [53f25f956fbdfb7bef92186a53edca5ede2d7911]

INTEGRATION: CWS unoapi2 (1.6.580); FILE MERGED 2007/12/20 07:59:18 cn 1.6.580.1: #i83871# update lists


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [fca1c1e888071ae51df44b69dd5b27e0ca80e08f]

INTEGRATION: CWS unoapi2 (1.7.64); FILE MERGED 2007/12/20 07:59:18 cn 1.7.64.1: #i83871# update lists


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [46317858ea195a671383750f71b35d72b6a986c8]

INTEGRATION: CWS chart15 (1.15.4); FILE MERGED 2008/01/02 13:38:29 iha 1.15.4.1: #i84548# 2D Pie disapears when only one value differs from zero


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [a47371fb415c9ca318721b927ea82a1995312abe]

INTEGRATION: CWS chart15 (1.6.56); FILE MERGED 2008/01/03 21:48:56 iha 1.6.56.1: #i66963# better performance when clipping large polygons


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [1226e16c2e1941b1186d4f5072f48308f2d0dd40]

INTEGRATION: CWS chart15 (1.4.10); FILE MERGED 2007/11/29 18:03:31 iha 1.4.10.1: #i82893#,#i75867# charts must be painted resolution dependent - only recreate view if necessary


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [632e0629eb26ae431d6737debf5abddbb0506cc6]

INTEGRATION: CWS chart15 (1.40.2); FILE MERGED 2007/12/12 09:51:42 bm 1.40.2.2: RESYNC: (1.40-1.41); FILE MERGED 2007/11/29 18:05:25 iha 1.40.2.1: #i82893#,#i75867# charts must be painted resolution dependent - only recreate view if necessary


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c2cb1ba510012360df90c71a12bb603947aa63ec]

INTEGRATION: CWS chart15 (1.20.2); FILE MERGED 2007/12/12 09:51:45 bm 1.20.2.2: RESYNC: (1.20-1.21); FILE MERGED 2007/11/29 17:42:11 iha 1.20.2.1: #i82893#,#i75867# charts must be painted resolution dependent - only recreate view if necessary


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [a3d64d846faf9f683e0a2bec488e90077b4779d8]

INTEGRATION: CWS chart15 (1.38.2); FILE MERGED 2007/12/12 09:51:48 bm 1.38.2.3: RESYNC: (1.38-1.39); FILE MERGED 2007/11/29 17:42:43 iha 1.38.2.2: #i82893#,#i75867# charts must be painted resolution dependent - only recreate view if necessary 2007/11/15 19:05:09 iha 1.38.2.1: #i82905# check for valid data before painting Error margins


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c3bbd0194d958b98ed4085700c475788dfa6f823]

INTEGRATION: CWS chart15 (1.17.4); FILE MERGED 2008/01/02 13:42:26 iha 1.17.4.1: wrong loop check


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [710657a1f82e84b694793936c80de94f3948f061]

INTEGRATION: CWS chart15 (1.3.22); FILE MERGED 2007/12/11 20:04:16 iha 1.3.22.1: #i15298# don't show a close value line if it is outside the scale range


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [529ef155c12c037fcbeaadde94ff59325267df78]

INTEGRATION: CWS chart15 (1.21.2); FILE MERGED 2007/12/12 09:51:54 bm 1.21.2.3: RESYNC: (1.21-1.22); FILE MERGED 2007/12/10 12:39:18 iha 1.21.2.2: #i84392# wrong values in data labels 2007/11/29 17:43:31 iha 1.21.2.1: #i82893#,#i75867# charts must be painted resolution dependent - only recreate view if necessary


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [4ca39a8897381888bff28bcbd61f59028459ee05]

INTEGRATION: CWS chart15 (1.50.2); FILE MERGED 2008/01/03 21:50:14 iha 1.50.2.3: #i66963# better performance for splines (remove duplicates dependent on resolution) 2007/12/12 09:51:51 bm 1.50.2.2: RESYNC: (1.50-1.51); FILE MERGED 2007/11/29 17:43:10 iha 1.50.2.1: #i82893#,#i75867# charts must be painted resolution dependent - only recreate view if necessary


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [adbb6e344fb74b4c4ec4cc013db9616387ce44ec]

INTEGRATION: CWS chart15 (1.4.10); FILE MERGED 2007/12/03 15:50:07 bm 1.4.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [f512de5d13c805b6c852a79668cba5a15a62d924]

INTEGRATION: CWS chart15 (1.2.4); FILE MERGED 2007/12/12 14:41:57 bm 1.2.4.1: #i10000# resync adaption


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [a0b0eacc8567c23e835abf5a4101128aa0bb19a5]

INTEGRATION: CWS chart15 (1.6.22); FILE MERGED 2007/12/12 09:51:39 bm 1.6.22.2: RESYNC: (1.6-1.7); FILE MERGED 2007/12/03 15:50:07 bm 1.6.22.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [14bbe0f427e362e686b5e6e1b043067586637fd0]

INTEGRATION: CWS chart15 (1.3.22); FILE MERGED 2007/12/03 15:50:06 bm 1.3.22.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [cb010b06247890a8bb27099b0091532d967357e6]

INTEGRATION: CWS chart15 (1.2.56); FILE MERGED 2007/12/03 15:50:06 bm 1.2.56.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [1d73dea8f795964bd6f227be03782a034241d0de]

INTEGRATION: CWS chart15 (1.8.10); FILE MERGED 2007/12/03 15:50:06 bm 1.8.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0010f3fdbcaa45ef3d06c5c63cccbd6de1b598e9]

INTEGRATION: CWS chart15 (1.13.6); FILE MERGED 2007/12/05 13:13:14 bm 1.13.6.1: #i79698# + set/getGeometry3D


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c02f59c14e451d15043cb4ae6856a157ed8d40b1]

INTEGRATION: CWS chart15 (1.6.22); FILE MERGED 2007/12/03 15:50:06 bm 1.6.22.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [e2619320fe86c375871f96eb8d1c0df29255b576]

INTEGRATION: CWS chart15 (1.11.10); FILE MERGED 2007/12/12 09:51:30 bm 1.11.10.2: RESYNC: (1.11-1.12); FILE MERGED 2007/12/05 13:22:55 bm 1.11.10.1: #i79698# use new helper DiagramHelper::getGeometry3D


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [439273f08b09f9929db51d801da323e743aca1ee]

INTEGRATION: CWS chart15 (1.12.10); FILE MERGED 2007/12/03 15:50:06 bm 1.12.10.2: #151172# crash due to shared mutex between model objects and event notifier classes fixed 2007/11/30 17:28:30 bm 1.12.10.1: #151172# remove as listener from formatted strings in DTOR


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [eb8d15342efffe54c96a7233ef3ba5262f0479ad]

INTEGRATION: CWS chart15 (1.4.10); FILE MERGED 2007/12/03 15:50:06 bm 1.4.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [b3d8025f7ffb0b2a3c0dc810184b04b2e99814e4]

INTEGRATION: CWS chart15 (1.9.10); FILE MERGED 2007/12/03 15:50:06 bm 1.9.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [87f352a5afd848b4968333cefde383291340a0a0]

INTEGRATION: CWS chart15 (1.17.4); FILE MERGED 2007/12/03 15:50:06 bm 1.17.4.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [d2a9fc3568eb184151d42ede97b1684ff3bb681c]

INTEGRATION: CWS chart15 (1.14.22); FILE MERGED 2007/12/12 15:48:02 iha 1.14.22.1: #i84494# use no perpective for 3D charts per default


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [10c274d8cd38ac6809219399e88326ba2831ed62]

INTEGRATION: CWS chart15 (1.5.10); FILE MERGED 2007/12/03 15:50:06 bm 1.5.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [a9bb0be1974149596c22c8dbc16e64261722851b]

INTEGRATION: CWS chart15 (1.7.22); FILE MERGED 2007/12/03 15:50:05 bm 1.7.22.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [299274157e369056cd88e34597b4955e5e591114]

INTEGRATION: CWS chart15 (1.19.4); FILE MERGED 2007/12/03 15:50:05 bm 1.19.4.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [8a3d5cd7efc74f04f6fa8815857db90e4658f1ac]

INTEGRATION: CWS chart15 (1.8.10); FILE MERGED 2007/12/03 15:50:05 bm 1.8.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [4538067e37f0cd7b22a939e67116e80311147389]

INTEGRATION: CWS chart15 (1.6.22); FILE MERGED 2007/12/03 15:50:05 bm 1.6.22.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [b3d55b52b5b605a7c057d7cc6964befb8c25921e]

INTEGRATION: CWS chart15 (1.4.10); FILE MERGED 2007/12/03 15:50:05 bm 1.4.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [e5993d1c403fa5ba9809db54c1b122a025ef65f0]

INTEGRATION: CWS chart15 (1.13.10); FILE MERGED 2007/12/03 15:50:05 bm 1.13.10.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [92d181eef6fe979779eabe50a1393a0841b8bae2]

INTEGRATION: CWS chart15 (1.3.56); FILE MERGED 2007/11/29 18:12:50 iha 1.3.56.1: #i82893#,#i75867# charts must be painted resolution dependent


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [8873b1a4c5a644e56e817f41d72f4b82f2a5117c]

INTEGRATION: CWS chart15 (1.2.56); FILE MERGED 2007/12/03 15:50:05 bm 1.2.56.1: #151172# crash due to shared mutex between model objects and event notifier classes fixed


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [b9f0092baa5383c88a49c90630594ab59f4c862c]

INTEGRATION: CWS chart15 (1.5.34); FILE MERGED 2007/12/05 13:12:54 bm 1.5.34.1: #i79698# + set/getGeometry3D


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [2e5194bd137b73e1ac1123c45db13b9f352b15a1]

INTEGRATION: CWS chart15 (1.7.56); FILE MERGED 2007/11/29 18:12:16 iha 1.7.56.1: #i82893#,#i75867# charts must be painted resolution dependent


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [88c60b7cc354d5125dacd75e7af5a06357eb19d1]

INTEGRATION: CWS chart15 (1.2.56); FILE MERGED 2007/12/06 12:23:57 bm 1.2.56.1: #i78290# only dispatch commands when available


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [a1af2c99f32e4992e735a72801efe46989d069a0]

INTEGRATION: CWS chart15 (1.3.22); FILE MERGED 2007/12/12 09:51:36 bm 1.3.22.2: RESYNC: (1.3-1.4); FILE MERGED 2007/12/06 12:23:57 bm 1.3.22.1: #i78290# only dispatch commands when available


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [4008337212229b15dc1735e384ae509a2e4e95c0]

INTEGRATION: CWS chart15 (1.1.2); FILE ADDED 2007/12/07 16:23:24 iha 1.1.2.2: #i84323# charts never should be stretched 2007/11/29 18:11:33 iha 1.1.2.1: #i82893#,#i75867# charts must be painted resolution dependent


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [06dcfe6219761693c4ee26c8ee8328b2347ca87b]

INTEGRATION: CWS chart15 (1.24.10); FILE MERGED 2007/12/12 09:51:33 bm 1.24.10.2: RESYNC: (1.24-1.25); FILE MERGED 2007/11/29 17:39:39 iha 1.24.10.1: #i82893#,#i75867# charts must be painted resolution dependent


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [49f47643c08fa8ed46dc4fc6cec59ade69847ba9]

INTEGRATION: CWS chart15 (1.9.22); FILE MERGED 2007/12/05 12:21:19 bm 1.9.22.2: #i79965# scroll window back after text edit 2007/11/29 17:36:50 iha 1.9.22.1: #i82893#,#i75867# charts must be painted resolution dependent


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [3f3c1370e92bf34eea2b3d4c2572618f8594cce3]

INTEGRATION: CWS chart15 (1.1.2); FILE ADDED 2007/11/29 18:11:16 iha 1.1.2.1: #i82893#,#i75867# charts must be painted resolution dependent


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [cbd41cc262ccb75898ec6e97a403eca2f06630bf]

INTEGRATION: CWS chart15 (1.16.22); FILE MERGED 2007/12/05 12:21:00 bm 1.16.22.2: #i79965# scroll window back after text edit 2007/11/29 17:39:02 iha 1.16.22.1: #i82893#,#i75867# charts must be painted resolution dependent


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c173fb6da05b816822d4ea16479bcbbff38524d1]

INTEGRATION: CWS chart15 (1.8.4); FILE MERGED 2008/01/03 12:49:15 iha 1.8.4.1: #i84587# [DE] 'Logarithmische Skalierung' doesn't fit


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0545888c697735cf1b20c21d4a6c1886e6534c2f]

INTEGRATION: CWS chart15 (1.11.4); FILE MERGED 2008/01/04 09:50:58 iha 1.11.4.2: #i84587# ensure that the controls are not shifted out of the dialog 2008/01/03 12:49:56 iha 1.11.4.1: #i84587# [DE] 'Logarithmische Skalierung' doesn't fit


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [2d16b49c3264d562745a09ae51ffd180a827a00a]

INTEGRATION: CWS chart15 (1.4.22); FILE MERGED 2007/12/12 14:46:04 iha 1.4.22.1: don't use cylinder but cuboid as default


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [070f215b4ac1888f72fbdceda03eec7f8960bc9f]

INTEGRATION: CWS chart15 (1.5.4); FILE MERGED 2008/01/03 13:44:48 iha 1.5.4.1: #i78238# minor interval wrong on import/export of chart with logarithmic scaling


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [b13118f7822d5e41250ba2cb6291e2f9d9ba92f8]

INTEGRATION: CWS chart15 (1.11.4); FILE MERGED 2007/12/05 13:43:25 bm 1.11.4.2: #i79698# correct property name 2007/12/05 13:14:23 bm 1.11.4.1: #i79698# handle SolidType at the diagram


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c9dc8d1e0327c1ce90b5884435e1965b8f28f65a]

INTEGRATION: CWS chart15 (1.7.22); FILE MERGED 2007/11/29 18:13:32 iha 1.7.22.1: #i82893#,#i75867# charts must be painted resolution dependent


2008-01-14  Ivo Hinkelmann  <ihi@openoffice.org>  [f2bfe82d9406f6ecbf6b3720b6d021a56dcaef5f]

INTEGRATION: CWS chart15 (1.8.4); FILE MERGED 2008/01/03 13:42:58 iha 1.8.4.1: #i78238# minor interval wrong on import/export of chart with logarithmic scaling


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [6a014658cf3f2ced1a4b7128ca4e44a4639b34ba]

INTEGRATION: CWS xmlfilter02 (1.37.16); FILE MERGED 2007/12/12 10:10:03 dr 1.37.16.2: RESYNC: (1.37-1.38); FILE MERGED 2007/06/28 15:47:36 nn 1.37.16.1: #i75682# token array for array formulas, XFormulaTokens methods renamed


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [ae1054959e5f0df208e0cfc4536fb17e16fedc1a]

INTEGRATION: CWS xmlfilter02 (1.49.8); FILE MERGED 2007/08/14 18:32:03 er 1.49.8.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [0f66e3643cb3703d66f06b7571e98043b4e68a1d]

INTEGRATION: CWS xmlfilter02 (1.59.16); FILE MERGED 2007/12/12 10:10:00 dr 1.59.16.5: RESYNC: (1.59-1.60); FILE MERGED 2007/11/27 15:06:54 dr 1.59.16.4: set view mode for objects 2007/07/06 13:52:38 dr 1.59.16.3: deselect selected sheets 2007/06/11 08:58:35 dr 1.59.16.2: view settings extensions for OOX filter 2007/06/08 13:21:31 dr 1.59.16.1: view settings extensions for OOX filter


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [fbbc36b02731ab8f149a8a6eaf1ea175e96153bb]

INTEGRATION: CWS xmlfilter02 (1.64.18); FILE MERGED 2007/12/12 10:09:57 dr 1.64.18.6: RESYNC: (1.68-1.70); FILE MERGED 2007/07/24 21:48:04 dr 1.64.18.5: RESYNC: (1.66-1.68); FILE MERGED 2007/05/29 15:35:59 dr 1.64.18.4: RESYNC: (1.64-1.66); FILE MERGED 2007/05/08 16:15:56 dr 1.64.18.3: #i10000# warning 2007/04/17 11:05:21 tbe 1.64.18.2: #i76026# API: Undo history must be disabled while loading file 2007/03/20 12:48:31 tbe 1.64.18.1: #i74668# missing property to suppress default sheets


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [ea7e046f59a43fbd898cc72a7a640829956d5aa1]

INTEGRATION: CWS xmlfilter02 (1.7.194); FILE MERGED 2007/05/08 16:13:27 dr 1.7.194.3: #i10000# warning 2007/05/08 10:19:55 dr 1.7.194.2: RESYNC: (1.7-1.8); FILE MERGED 2007/04/17 11:04:35 tbe 1.7.194.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [df690aa860ad2f076193926cfbe2fc0954d66472]

INTEGRATION: CWS xmlfilter02 (1.4.194); FILE MERGED 2007/05/08 16:12:56 dr 1.4.194.2: #i10000# warning 2007/04/17 11:04:04 tbe 1.4.194.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [b83abbbc3f0ed4cd90128d330f9b6e7932b5f848]

INTEGRATION: CWS xmlfilter02 (1.82.12); FILE MERGED 2007/12/12 10:09:53 dr 1.82.12.3: RESYNC: (1.85-1.87); FILE MERGED 2007/10/04 09:22:56 os 1.82.12.2: RESYNC: (1.82-1.85); FILE MERGED 2007/08/14 18:32:03 er 1.82.12.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [36fbb77e784374e3f8aebe00cd64545c1ceab16e]

INTEGRATION: CWS xmlfilter02 (1.33.18); FILE MERGED 2007/07/24 21:45:28 dr 1.33.18.5: RESYNC: (1.35-1.36); FILE MERGED 2007/05/29 15:17:10 dr 1.33.18.4: RESYNC: (1.34-1.35); FILE MERGED 2007/05/08 16:10:57 dr 1.33.18.3: #i10000# warning 2007/05/08 10:19:29 dr 1.33.18.2: RESYNC: (1.33-1.34); FILE MERGED 2007/04/17 11:03:22 tbe 1.33.18.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [f13bb0e89f53e110133ea40cfcf997b05bfceeaf]

INTEGRATION: CWS xmlfilter02 (1.5.194); FILE MERGED 2007/05/08 16:08:31 dr 1.5.194.2: #i10000# warning 2007/04/17 11:02:43 tbe 1.5.194.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [acba765ea0844cc815b6e48ec6f0aff3d1e585d7]

INTEGRATION: CWS xmlfilter02 (1.1.2); FILE ADDED 2007/08/30 09:22:54 er 1.1.2.7: #i75682# handle inline arrays 2007/08/29 11:59:02 dr 1.1.2.6: remove ParameterSeparator property 2007/08/22 08:23:00 er 1.1.2.5: #i75682# use ScCompiler::OpCodeMapPtr 2007/08/14 18:32:03 er 1.1.2.4: #i75682# Compiler OpCodeMap 2007/06/22 18:33:04 nn 1.1.2.3: #i75682# more options 2007/06/22 09:58:39 dr 1.1.2.2: option to compile formulas in English 2007/03/23 15:52:52 nn 1.1.2.1: #i75682# API for formula as token array


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [a56fc50c27470536bd20a577450642cf755c1f2c]

INTEGRATION: CWS xmlfilter02 (1.37.18); FILE MERGED 2007/11/22 12:33:43 dr 1.37.18.4: do not clear page scaling settings when setting 'FirstPageNumber' property 2007/05/29 15:05:44 dr 1.37.18.3: RESYNC: (1.38-1.39); FILE MERGED 2007/05/08 10:07:37 dr 1.37.18.2: RESYNC: (1.37-1.38); FILE MERGED 2007/03/22 15:36:58 tbe 1.37.18.1: #i74667# API: property 'TableBorder' does not work for styles


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [b30bc2b92b54516ab497f6f9b51c131ab0a81c5a]

INTEGRATION: CWS xmlfilter02 (1.14.192); FILE MERGED 2007/08/14 18:32:03 er 1.14.192.3: #i75682# Compiler OpCodeMap 2007/05/29 15:03:15 dr 1.14.192.2: RESYNC: (1.14-1.15); FILE MERGED 2007/03/23 15:52:52 nn 1.14.192.1: #i75682# API for formula as token array


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [23b47f2422507574c0a7b99b5f8f83df94bbee3c]

INTEGRATION: CWS xmlfilter02 (1.16.18); FILE MERGED 2007/07/24 09:07:20 tbe 1.16.18.4: #i79890# API: Missing API to suppress update of all defined names 2007/07/23 13:52:34 tbe 1.16.18.3: #i79890# API: Missing API to suppress update of all defined names 2007/07/06 10:10:44 nn 1.16.18.2: #i75682# property TokenIndex for named range/database range 2007/06/29 14:26:44 nn 1.16.18.1: #i75682# XFormulaTokens for named range


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [d67ced3e28310573d9b39d350fc31150c52b6852]

INTEGRATION: CWS xmlfilter02 (1.17.402); FILE MERGED 2007/05/29 15:02:02 dr 1.17.402.2: RESYNC: (1.17-1.18); FILE MERGED 2007/03/23 15:52:52 nn 1.17.402.1: #i75682# API for formula as token array


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [86af6ce74241376cde3bdaa43a73d71fc8ffa1e5]

INTEGRATION: CWS xmlfilter02 (1.16.48); FILE MERGED 2007/11/29 12:07:55 tbe 1.16.48.2: #i81573# API: need interface to add DDE links 2007/11/29 10:25:32 tbe 1.16.48.1: #i81573# API: need interface to add DDE links


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [1b91ebbb8b2c9764cb6c0f6e44f72c6fda305f94]

INTEGRATION: CWS xmlfilter02 (1.18.10); FILE MERGED 2007/08/14 18:32:03 er 1.18.10.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [c54e8bff36a225868aea413015094c85658bf38f]

INTEGRATION: CWS xmlfilter02 (1.14.18); FILE MERGED 2007/08/09 11:35:20 kohei 1.14.18.7: Tweaked if-statement block to reduce indent level & added code to unpack tokens when the type of Any data passed as formula is a token sequence. 2007/08/09 04:28:38 kohei 1.14.18.6: allow direct passing of formula tokens to conditional formatting object for OOXML import. 2007/08/08 20:58:05 kohei 1.14.18.5: Changing the name back from getFormulaCount() to getCount(). 2007/08/08 20:31:30 kohei 1.14.18.4: fixed name clash on getCount.  XIndexAccess also has method with the same name. 2007/08/07 15:57:44 kohei 1.14.18.3: throw an out-of-bound exception when the index is negative. 2007/08/07 15:35:36 kohei 1.14.18.2: changed index and size types from sal_uInt16 to sal_Int32 as part of the similar data type change in XMultiFormulaTokens.idl.  And also to throw an out-of-bound exception when the index is outside the allowed range. 2007/08/06 21:56:39 kohei 1.14.18.1: changes to allow passing formula tokens to data validation objects.


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [957196a03e624f0edd038261be254e08190f8901]

INTEGRATION: CWS xmlfilter02 (1.59.16); FILE MERGED 2007/12/12 10:09:41 dr 1.59.16.10: RESYNC: (1.62-1.63); FILE MERGED 2007/12/07 09:26:11 dr 1.59.16.9: support import into read-only documents 2007/11/22 09:14:10 tbe 1.59.16.8: #i81572# API: need interface to add linked sheets 2007/07/20 12:26:32 tbe 1.59.16.7: #i79826# API: missing property to suppress automatic adjustment of row height 2007/05/29 14:59:20 dr 1.59.16.6: RESYNC: (1.61-1.62); FILE MERGED 2007/05/08 10:06:20 dr 1.59.16.5: RESYNC: (1.59-1.61); FILE MERGED 2007/04/17 11:02:07 tbe 1.59.16.4: #i76026# API: Undo history must be disabled while loading file 2007/04/12 10:31:11 tbe 1.59.16.3: #i76026# API: Undo history must be disabled while loading file 2007/03/23 15:48:36 tbe 1.59.16.2: #i75447# API: get an XDevice from the document 2007/03/20 12:47:45 tbe 1.59.16.1: #i74668# missing property to suppress default sheets


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [0499c5bb352f6fc1e412c9b5ab71b7eedbab3e60]

INTEGRATION: CWS xmlfilter02 (1.28.48); FILE MERGED 2007/07/06 10:10:44 nn 1.28.48.1: #i75682# property TokenIndex for named range/database range


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [3191759aa8b587098966ae20dd8131e5ad4cbc4b]

INTEGRATION: CWS xmlfilter02 (1.100.18); FILE MERGED 2007/12/12 10:09:38 dr 1.100.18.8: RESYNC: (1.107-1.108); FILE MERGED 2007/11/22 09:13:30 tbe 1.100.18.7: #i81572# API: need interface to add linked sheets 2007/07/24 21:43:50 dr 1.100.18.6: RESYNC: (1.103-1.106); FILE MERGED 2007/06/28 15:47:35 nn 1.100.18.5: #i75682# token array for array formulas, XFormulaTokens methods renamed 2007/06/22 09:58:28 dr 1.100.18.4: compiler warning 2007/05/29 14:57:10 dr 1.100.18.3: RESYNC: (1.101-1.103); FILE MERGED 2007/05/08 10:05:29 dr 1.100.18.2: RESYNC: (1.100-1.101); FILE MERGED 2007/03/23 15:52:51 nn 1.100.18.1: #i75682# API for formula as token array


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [d922fb8624f9b44c1f06a049cde8120db40b94de]

INTEGRATION: CWS xmlfilter02 (1.20.18); FILE MERGED 2007/12/12 10:09:34 dr 1.20.18.3: RESYNC: (1.20-1.21); FILE MERGED 2007/06/11 08:57:35 dr 1.20.18.2: view settings extensions for OOX filter 2007/06/08 13:21:21 dr 1.20.18.1: view settings extensions for OOX filter


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [2c4980daa52f05cc117ac68f38d5889b38566213]

INTEGRATION: CWS xmlfilter02 (1.40.18); FILE MERGED 2007/07/24 21:36:57 dr 1.40.18.4: RESYNC: (1.42-1.43); FILE MERGED 2007/05/29 14:32:18 dr 1.40.18.3: RESYNC: (1.41-1.42); FILE MERGED 2007/05/08 09:55:00 dr 1.40.18.2: RESYNC: (1.40-1.41); FILE MERGED 2007/03/20 12:47:15 tbe 1.40.18.1: #i74668# missing property to suppress default sheets


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [a66721e61d12499299b5e6f7ead1a679bcb6442f]

INTEGRATION: CWS xmlfilter02 (1.15.8); FILE MERGED 2007/07/24 09:06:24 tbe 1.15.8.3: #i79890# API: Missing API to suppress update of all defined names 2007/07/23 13:51:40 tbe 1.15.8.2: #i79890# API: Missing API to suppress update of all defined names 2007/06/28 15:47:35 nn 1.15.8.1: #i75682# token array for array formulas, XFormulaTokens methods renamed


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [8a9da59f5a1b653a2df51d71ae7efc27081d1abc]

INTEGRATION: CWS xmlfilter02 (1.29.18); FILE MERGED 2007/07/24 21:35:11 dr 1.29.18.5: RESYNC: (1.31-1.32); FILE MERGED 2007/05/29 14:21:08 dr 1.29.18.4: RESYNC: (1.30-1.31); FILE MERGED 2007/05/08 16:54:28 dr 1.29.18.3: #i10000# warning 2007/05/08 09:52:43 dr 1.29.18.2: RESYNC: (1.29-1.30); FILE MERGED 2007/04/17 11:01:07 tbe 1.29.18.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [403deeb52b1cbeabaa106daafe0b1360f75faa70]

INTEGRATION: CWS xmlfilter02 (1.23.82); FILE MERGED 2007/07/24 21:34:52 dr 1.23.82.3: RESYNC: (1.23-1.24); FILE MERGED 2007/05/08 16:53:35 dr 1.23.82.2: #i10000# warning 2007/04/17 11:00:00 tbe 1.23.82.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [46b2f69bc25d0b7e4b17f40fc2132636124990ea]

INTEGRATION: CWS xmlfilter02 (1.29.18); FILE MERGED 2007/07/24 21:33:36 dr 1.29.18.2: RESYNC: (1.29-1.30); FILE MERGED 2007/06/28 15:47:35 nn 1.29.18.1: #i75682# token array for array formulas, XFormulaTokens methods renamed


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [eb75417865e6d9243ac76d8aaa26a1dc5eb175f6]

INTEGRATION: CWS xmlfilter02 (1.22.18); FILE MERGED 2007/05/29 14:19:39 dr 1.22.18.2: RESYNC: (1.22-1.23); FILE MERGED 2007/03/20 12:46:47 tbe 1.22.18.1: #i74668# missing property to suppress default sheets


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [bc09a67534735c67a1c475161e17dbc5750713d7]

INTEGRATION: CWS xmlfilter02 (1.89.16); FILE MERGED 2007/12/12 10:09:31 dr 1.89.16.5: RESYNC: (1.92-1.93); FILE MERGED 2007/10/04 09:13:43 os 1.89.16.4: RESYNC: (1.91-1.92); FILE MERGED 2007/07/24 21:33:29 dr 1.89.16.3: RESYNC: (1.90-1.91); FILE MERGED 2007/05/29 14:19:13 dr 1.89.16.2: RESYNC: (1.89-1.90); FILE MERGED 2007/04/12 10:30:45 tbe 1.89.16.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [96f6929519bd59d133d925a227584916e5704347]

INTEGRATION: CWS xmlfilter02 (1.65.16); FILE MERGED 2007/12/07 09:25:55 dr 1.65.16.6: support import into read-only documents 2007/07/25 07:11:14 dr 1.65.16.5: RESYNC: (1.65-1.66); FILE MERGED 2007/07/24 09:05:41 tbe 1.65.16.4: #i79890# API: Missing API to suppress update of all defined names 2007/07/23 13:50:57 tbe 1.65.16.3: #i79890# API: Missing API to suppress update of all defined names 2007/07/20 12:25:41 tbe 1.65.16.2: #i79826# API: missing property to suppress automatic adjustment of row height 2007/06/28 15:47:34 nn 1.65.16.1: #i75682# token array for array formulas, XFormulaTokens methods renamed


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [e19f7f3cd16350a557f6353cf12424883e6f975f]

INTEGRATION: CWS xmlfilter02 (1.16.18); FILE MERGED 2007/08/14 18:32:02 er 1.16.18.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [7b1793d1121b69550080000ef2d5655f065b591e]

INTEGRATION: CWS xmlfilter02 (1.28.6); FILE MERGED 2007/07/24 21:19:45 dr 1.28.6.2: RESYNC: (1.28-1.30); FILE MERGED 2007/07/20 12:27:26 tbe 1.28.6.1: #i79826# warning free


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [8a36ac5a9e35b7be352398f51c5ec5aab2ca8f43]

INTEGRATION: CWS xmlfilter02 (1.7.194); FILE MERGED 2007/08/30 15:10:48 er 1.7.194.2: bool = (Any >>= double) doesn't evaluate to true if not TypeClass_DOUBLE 2007/08/30 09:24:13 er 1.7.194.1: #i75682# generalize uno::Sequence to ScMatrix conversion


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [5d040a27f29a769c9983b9fca055604247b09984]

INTEGRATION: CWS xmlfilter02 (1.24.18); FILE MERGED 2007/08/14 18:32:02 er 1.24.18.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [95a7af16ff29ffa0267f1357c9c5c0064893affd]

INTEGRATION: CWS xmlfilter02 (1.7.18); FILE MERGED 2007/10/23 16:17:56 dr 1.7.18.5: #i10000# unxlngi6.pro build breaker 2007/08/31 10:09:49 er 1.7.18.4: #i75682# now that we interface tokens to outer space we need to check for sane OpCode values 2007/08/23 17:47:43 er 1.7.18.3: ODF_11 OpCodeMap; fill from AddInCollection; sort out English vs. ODF_11 vs. Upper symbols 2007/08/14 18:32:02 er 1.7.18.2: #i75682# Compiler OpCodeMap 2007/03/21 13:18:16 dr 1.7.18.1: #i10000# merge changes from CWS calcwarnings2


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [42755dad986da91abe48dac6e217bbe0c00737c8]

INTEGRATION: CWS xmlfilter02 (1.1.2); FILE ADDED 2007/08/31 10:33:03 er 1.1.2.4: DOLLARFR and DOLLARDE are ODFF specified 2007/08/24 19:19:09 er 1.1.2.3: AddIn _ADD vs. internal and ODFF 2007/08/23 17:47:43 er 1.1.2.2: ODF_11 OpCodeMap; fill from AddInCollection; sort out English vs. ODF_11 vs. Upper symbols 2007/08/22 08:25:05 er 1.1.2.1: #i75682# preliminary ODFF AddInMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [17990382425085da4713822863c893c6157a5e95]

INTEGRATION: CWS xmlfilter02 (1.20.14); FILE MERGED 2007/12/12 10:09:28 dr 1.20.14.3: RESYNC: (1.24-1.25); FILE MERGED 2007/10/04 09:09:07 os 1.20.14.2: RESYNC: (1.20-1.24); FILE MERGED 2007/08/22 08:26:16 er 1.20.14.1: #i75682# ODFF AddInMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [c4f7332ed24a3c29996cf03b9ad43b2238c4dca5]

INTEGRATION: CWS xmlfilter02 (1.47.14); FILE MERGED 2007/12/12 10:09:22 dr 1.47.14.4: RESYNC: (1.51-1.52); FILE MERGED 2007/08/30 09:24:13 er 1.47.14.3: #i75682# generalize uno::Sequence to ScMatrix conversion 2007/07/24 21:16:02 dr 1.47.14.2: RESYNC: (1.47-1.51); FILE MERGED 2007/07/03 15:53:00 dr 1.47.14.1: add svMissing in ScInterpreter::ConvertMatrixParameters()


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [168a15cb2f15e3f96b52f051f69a31ff4f201aa3]

INTEGRATION: CWS xmlfilter02 (1.68.18); FILE MERGED 2007/12/12 10:09:18 dr 1.68.18.18: RESYNC: (1.70-1.71); FILE MERGED 2007/10/12 15:51:45 er 1.68.18.17: InitSymbolsEnglish: actually mxSymbolsODF_11 shouldn't had been used at all, that's a c&p error 2007/10/08 11:10:53 os 1.68.18.16: cast from OpCodeEnum to OpCode 2007/09/28 23:16:10 kohei 1.68.18.15: prevent uninitialized mxSymbolsODF_11 from being used. 2007/08/31 18:32:35 er 1.68.18.14: 4 ScCompiler::Convention instances 2007/08/31 15:08:50 er 1.68.18.13: IsOpCode: with an external OpCodeMap we can't rely on the order of symbols anymore, handle ocSub/ocNegSub 2007/08/31 08:56:38 dr 1.68.18.12: remove some inlines 2007/08/30 14:28:44 er 1.68.18.11: NextSymbol: handle remapped ocSep; reintroduced ssGetValue to parse simple ASCII number strings internally instead of passing them to i18n 2007/08/23 17:47:42 er 1.68.18.10: ODF_11 OpCodeMap; fill from AddInCollection; sort out English vs. ODF_11 vs. Upper symbols 2007/08/22 12:13:47 er 1.68.18.9: damn copy&paste 2007/08/22 12:10:13 dr 1.68.18.8: push add-in functions to vector 2007/08/22 08:26:16 er 1.68.18.7: #i75682# ODFF AddInMap 2007/08/17 11:55:25 er 1.68.18.6: #i75682# preallocate vector for FormulaMapGroup::SPECIAL 2007/08/17 09:29:54 dr 1.68.18.5: NOT and NEG are functions, add missing breaks in switch, cleanup 2007/08/16 14:44:32 dr 1.68.18.4: fixed more errors..., added ARRAY_SEPARATORS group 2007/08/14 18:32:02 er 1.68.18.3: #i75682# Compiler OpCodeMap 2007/07/24 21:15:22 dr 1.68.18.2: RESYNC: (1.68-1.70); FILE MERGED 2007/06/27 15:40:35 nn 1.68.18.1: #i75682# handle single-sheet cases with compatibility references


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [8fd8d775bf6a95d7a86a97910128fd95940f3fc4]

INTEGRATION: CWS xmlfilter02 (1.9.18); FILE MERGED 2007/06/27 15:40:35 nn 1.9.18.1: #i75682# handle single-sheet cases with compatibility references


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [51d8d6047841aed5b4c366e1b0b77cef8d53e5ca]

INTEGRATION: CWS xmlfilter02 (1.22.10); FILE MERGED 2007/08/30 09:24:13 er 1.22.10.3: #i75682# generalize uno::Sequence to ScMatrix conversion 2007/08/23 17:47:42 er 1.22.10.2: ODF_11 OpCodeMap; fill from AddInCollection; sort out English vs. ODF_11 vs. Upper symbols 2007/08/14 18:32:02 er 1.22.10.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [62a3ae0c2cc30743dccdbc2d8a13f9829481cefc]

INTEGRATION: CWS xmlfilter02 (1.54.14); FILE MERGED 2007/08/24 19:19:09 er 1.54.14.3: AddIn _ADD vs. internal and ODFF 2007/08/22 08:24:31 er 1.54.14.2: #i75682# ODFF has a dot in ERROR.TYPE 2007/08/14 18:32:02 er 1.54.14.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [becf6d86df260e6696f1a528c73c525d171ae019]

INTEGRATION: CWS xmlfilter02 (1.3.402); FILE MERGED 2007/10/23 12:58:25 dr 1.3.402.2: #i10000# unxlngi6.pro build breaker 2007/08/31 10:09:49 er 1.3.402.1: #i75682# now that we interface tokens to outer space we need to check for sane OpCode values


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [37335a22985589592cc7299bec43a6b8a96a5fc8]

INTEGRATION: CWS xmlfilter02 (1.20.18); FILE MERGED 2007/07/20 12:24:45 tbe 1.20.18.1: #i79826# API: missing property to suppress automatic adjustment of row height


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [9b2339cbaa3d9d7c760c1ce1b8b55653d6ed0ea8]

INTEGRATION: CWS xmlfilter02 (1.52.10); FILE MERGED 2007/08/15 15:45:37 dr 1.52.10.2: wntmsci10 compiler warning 2007/08/14 18:32:01 er 1.52.10.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [e37a8e3411bca8b32815539e4b211c72e190798f]

INTEGRATION: CWS xmlfilter02 (1.80.14); FILE MERGED 2007/12/07 09:25:39 dr 1.80.14.1: support import into read-only documents


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [911602a2bd6d9066bb4c900caefcccb005ee3def]

INTEGRATION: CWS xmlfilter02 (1.18.18); FILE MERGED 2007/08/14 18:32:01 er 1.18.18.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [293d2ba3924e2aa995714c5359dd8571dbca1e55]

INTEGRATION: CWS xmlfilter02 (1.38.16); FILE MERGED 2007/12/07 09:25:39 dr 1.38.16.1: support import into read-only documents


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [1cefdb314c9ba9369568a4b71676d3b96167980b]

INTEGRATION: CWS xmlfilter02 (1.62.18); FILE MERGED 2007/12/07 09:25:38 dr 1.62.18.8: support import into read-only documents 2007/11/22 09:12:36 tbe 1.62.18.7: #i81572# API: need interface to add linked sheets 2007/10/04 09:05:12 os 1.62.18.6: RESYNC: (1.65-1.67); FILE MERGED 2007/07/25 07:11:03 dr 1.62.18.5: RESYNC: (1.64-1.65); FILE MERGED 2007/07/24 09:04:57 tbe 1.62.18.4: #i79890# API: Missing API to suppress update of all defined names 2007/07/20 12:22:04 tbe 1.62.18.3: #i79826# API: missing property to suppress automatic adjustment of row height 2007/05/29 12:28:07 dr 1.62.18.2: RESYNC: (1.62-1.64); FILE MERGED 2007/04/12 10:30:03 tbe 1.62.18.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [40567b498da3ab2048db89a866eba201633ef8b4]

INTEGRATION: CWS xmlfilter02 (1.21.18); FILE MERGED 2007/09/21 08:57:21 dr 1.21.18.2: update flag for relative references, if formulas are set via API calls 2007/08/06 21:56:39 kohei 1.21.18.1: changes to allow passing formula tokens to data validation objects.


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [f0646f3acf1d103282da4e92756c2e26beb88d0d]

INTEGRATION: CWS xmlfilter02 (1.71.250); FILE MERGED 2007/12/07 09:25:20 dr 1.71.250.15: support import into read-only documents 2007/11/22 09:11:52 tbe 1.71.250.14: #i81572# API: need interface to add linked sheets 2007/08/29 11:58:50 dr 1.71.250.13: remove ParameterSeparator property 2007/08/14 18:32:01 er 1.71.250.12: #i75682# Compiler OpCodeMap 2007/07/24 21:08:55 dr 1.71.250.11: RESYNC: (1.73-1.74); FILE MERGED 2007/07/20 12:20:43 tbe 1.71.250.10: #i79826# API: missing property to suppress automatic adjustment of row height 2007/07/06 10:10:30 nn 1.71.250.9: #i75682# property TokenIndex for named range/database range 2007/06/22 18:32:58 nn 1.71.250.8: #i75682# more options 2007/06/22 09:57:57 dr 1.71.250.7: option to compile formulas in English 2007/05/29 12:19:43 dr 1.71.250.6: RESYNC: (1.72-1.73); FILE MERGED 2007/05/08 09:42:36 dr 1.71.250.5: RESYNC: (1.71-1.72); FILE MERGED 2007/04/12 10:29:04 tbe 1.71.250.4: #i76026# API: Undo history must be disabled while loading file 2007/03/23 15:52:51 nn 1.71.250.3: #i75682# API for formula as token array 2007/03/23 15:47:37 tbe 1.71.250.2: #i75447# API: get an XDevice from the document 2007/03/20 12:46:00 tbe 1.71.250.1: #i74668# missing property to suppress default sheets


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [b051929c90abb6d53eb493096fdac040ef091231]

INTEGRATION: CWS xmlfilter02 (1.1.2); FILE ADDED 2007/08/29 11:58:50 dr 1.1.2.6: remove ParameterSeparator property 2007/08/22 08:22:23 er 1.1.2.5: #i75682# use ScCompiler::OpCodeMapPtr 2007/08/14 18:32:01 er 1.1.2.4: #i75682# Compiler OpCodeMap 2007/06/22 18:32:58 nn 1.1.2.3: #i75682# more options 2007/06/22 09:57:57 dr 1.1.2.2: option to compile formulas in English 2007/03/23 15:52:51 nn 1.1.2.1: #i75682# API for formula as token array


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [f609e18d40c2d2fe4daccead2bb47565afce6ee9]

INTEGRATION: CWS xmlfilter02 (1.12.402); FILE MERGED 2007/08/14 18:32:01 er 1.12.402.2: #i75682# Compiler OpCodeMap 2007/03/23 15:52:50 nn 1.12.402.1: #i75682# API for formula as token array


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [d5aa983929bb0617c94462e86f0683d3819ed6f0]

INTEGRATION: CWS xmlfilter02 (1.8.44); FILE MERGED 2007/08/30 09:24:13 er 1.8.44.1: #i75682# generalize uno::Sequence to ScMatrix conversion


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [2cfb5853ecccc76e483e5a8b0b67dd2869eef8d7]

INTEGRATION: CWS xmlfilter02 (1.54.10); FILE MERGED 2007/12/12 10:09:15 dr 1.54.10.3: RESYNC: (1.55-1.56); FILE MERGED 2007/10/04 09:02:05 os 1.54.10.2: RESYNC: (1.54-1.55); FILE MERGED 2007/08/14 18:32:01 er 1.54.10.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [85609eec9e6e133ecb401aba6e215cf2d4372313]

INTEGRATION: CWS xmlfilter02 (1.4.402); FILE MERGED 2007/08/30 09:24:13 er 1.4.402.1: #i75682# generalize uno::Sequence to ScMatrix conversion


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [cde235e4bb4000a6983bb3992355bddd6a5be8fc]

INTEGRATION: CWS xmlfilter02 (1.19.10); FILE MERGED 2007/08/14 18:32:01 er 1.19.10.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [c9a7b5de9521aca095d118bc0d6b675c42450b4a]

INTEGRATION: CWS xmlfilter02 (1.4.402); FILE MERGED 2007/07/24 09:04:11 tbe 1.4.402.3: #i79890# API: Missing API to suppress update of all defined names 2007/07/23 13:49:36 tbe 1.4.402.2: #i79890# API: Missing API to suppress update of all defined names 2007/06/29 14:26:32 nn 1.4.402.1: #i75682# XFormulaTokens for named range


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [c1cf54f76db6c1f9aa70976d4de7bf84dd9f06d5]

INTEGRATION: CWS xmlfilter02 (1.5.18); FILE MERGED 2007/11/29 12:06:40 tbe 1.5.18.2: #i81573# API: need interface to add DDE links 2007/11/29 10:24:15 tbe 1.5.18.1: #i81573# API: need interface to add DDE links


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [8660c91311e6eb4b96238d3cc4b5213887a91ded]

INTEGRATION: CWS xmlfilter02 (1.7.402); FILE MERGED 2007/08/09 04:28:38 kohei 1.7.402.5: allow direct passing of formula tokens to conditional formatting object for OOXML import. 2007/08/08 20:57:59 kohei 1.7.402.4: Changing the name back from getFormulaCount() to getCount(). 2007/08/08 20:31:30 kohei 1.7.402.3: fixed name clash on getCount.  XIndexAccess also has method with the same name. 2007/08/07 15:35:36 kohei 1.7.402.2: changed index and size types from sal_uInt16 to sal_Int32 as part of the similar data type change in XMultiFormulaTokens.idl.  And also to throw an out-of-bound exception when the index is outside the allowed range. 2007/08/06 21:56:39 kohei 1.7.402.1: changes to allow passing formula tokens to data validation objects.


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [5f11371b02f9bd8d5cf72bb057d3ed70be7a0b82]

INTEGRATION: CWS xmlfilter02 (1.97.44); FILE MERGED 2007/12/12 10:09:12 dr 1.97.44.10: RESYNC: (1.104-1.105); FILE MERGED 2007/12/07 09:25:20 dr 1.97.44.9: support import into read-only documents 2007/11/22 09:11:15 tbe 1.97.44.8: #i81572# API: need interface to add linked sheets 2007/10/04 09:01:58 os 1.97.44.7: RESYNC: (1.101-1.104); FILE MERGED 2007/07/25 07:10:40 dr 1.97.44.6: RESYNC: (1.100-1.101); FILE MERGED 2007/07/24 09:03:48 tbe 1.97.44.5: #i79890# API: Missing API to suppress update of all defined names 2007/07/20 12:19:51 tbe 1.97.44.4: #i79826# API: missing property to suppress automatic adjustment of row height 2007/05/29 12:17:44 dr 1.97.44.3: RESYNC: (1.99-1.100); FILE MERGED 2007/05/08 09:41:30 dr 1.97.44.2: RESYNC: (1.97-1.99); FILE MERGED 2007/04/12 10:28:48 tbe 1.97.44.1: #i76026# API: Undo history must be disabled while loading file


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [66e6acc9b3fabde13e6353e5a69938dc3cbbf90e]

INTEGRATION: CWS xmlfilter02 (1.10.18); FILE MERGED 2007/08/06 21:56:39 kohei 1.10.18.1: changes to allow passing formula tokens to data validation objects.


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [5c889d1ebdd23fba84de3ebde80cc36a0c5b6ac1]

INTEGRATION: CWS xmlfilter02 (1.31.44); FILE MERGED 2007/12/12 10:09:08 dr 1.31.44.8: RESYNC: (1.32-1.33); FILE MERGED 2007/10/15 13:48:04 dr 1.31.44.7: #i10000# missing friend for Solaris compiler 2007/10/04 09:01:51 os 1.31.44.6: RESYNC: (1.31-1.32); FILE MERGED 2007/08/31 08:56:27 dr 1.31.44.5: remove some inlines 2007/08/23 17:47:42 er 1.31.44.4: ODF_11 OpCodeMap; fill from AddInCollection; sort out English vs. ODF_11 vs. Upper symbols 2007/08/22 08:26:15 er 1.31.44.3: #i75682# ODFF AddInMap 2007/08/15 15:44:48 dr 1.31.44.2: typo 2007/08/14 18:32:01 er 1.31.44.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [4a2fe3af8f112eb15f28d7c365ea2bec751f414e]

INTEGRATION: CWS xmlfilter02 (1.16.14); FILE MERGED 2007/08/14 18:32:01 er 1.16.14.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [86e3e0e3849a3b7fd63221370646f50e9fb1eca2]

INTEGRATION: CWS xmlfilter02 (1.27.18); FILE MERGED 2007/12/12 10:09:05 dr 1.27.18.6: RESYNC: (1.29-1.30); FILE MERGED 2007/11/22 09:10:25 tbe 1.27.18.5: #i81572# API: need interface to add linked sheets 2007/06/28 15:47:22 nn 1.27.18.4: #i75682# token array for array formulas, XFormulaTokens methods renamed 2007/05/29 12:15:08 dr 1.27.18.3: RESYNC: (1.28-1.29); FILE MERGED 2007/05/08 09:40:50 dr 1.27.18.2: RESYNC: (1.27-1.28); FILE MERGED 2007/03/23 15:52:50 nn 1.27.18.1: #i75682# API for formula as token array


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [49e0ac05961b7d220d52322af139490986a37d4b]

INTEGRATION: CWS xmlfilter02 (1.9.172); FILE MERGED 2007/10/04 09:01:03 os 1.9.172.4: RESYNC: (1.9-1.10); FILE MERGED 2007/08/30 09:24:13 er 1.9.172.3: #i75682# generalize uno::Sequence to ScMatrix conversion 2007/08/23 17:47:42 er 1.9.172.2: ODF_11 OpCodeMap; fill from AddInCollection; sort out English vs. ODF_11 vs. Upper symbols 2007/08/14 18:32:01 er 1.9.172.1: #i75682# Compiler OpCodeMap


2008-01-10  Oliver Bolte  <obo@openoffice.org>  [e71c1f271a905b144780c46985fef331ec8854a0]

INTEGRATION: CWS xmlfilter02 (1.5.402); FILE MERGED 2007/12/12 10:09:02 dr 1.5.402.3: RESYNC: (1.5-1.6); FILE MERGED 2007/06/11 08:57:11 dr 1.5.402.2: view settings extensions for OOX filter 2007/06/08 13:20:57 dr 1.5.402.1: view settings extensions for OOX filter


2008-01-07  Oliver Bolte  <obo@openoffice.org>  [66bd27649fbc89990bbcad4d43306f97d18f7ef6]

INTEGRATION: CWS supdremove (1.39.190); FILE MERGED 2007/11/16 10:24:54 vg 1.39.190.1: #i83674# cleanup: remove obsolete SUPD macro use


2008-01-07  Oliver Bolte  <obo@openoffice.org>  [ffbc9fff48706ca252ef57a0bcf9f142b9ec0d68]

INTEGRATION: CWS supdremove (1.35.126); FILE MERGED 2007/11/16 10:24:54 vg 1.35.126.1: #i83674# cleanup: remove obsolete SUPD macro use


2008-01-07  Oliver Bolte  <obo@openoffice.org>  [785b8362a6ddc22b6d0a2e96800c6108b7a84464]

INTEGRATION: CWS supdremove (1.12.158); FILE MERGED 2007/11/16 10:24:54 vg 1.12.158.1: #i83674# cleanup: remove obsolete SUPD macro use


2008-01-07  Oliver Bolte  <obo@openoffice.org>  [95760454e3160ee36d2bf277365c4b62f1fdda64]

INTEGRATION: CWS supdremove (1.2.586); FILE MERGED 2007/11/16 10:24:54 vg 1.2.586.1: #i83674# cleanup: remove obsolete SUPD macro use


2007-12-14  Kurt Zenker  <kz@openoffice.org>  [12bc46f420607cf5e7f77f1b06acbf8774c421c0]

#i10000# resolve warnings


2007-12-14  Kurt Zenker  <kz@openoffice.org>  [c3a6f874070ea50b5094fa4d11b77821aaf18f76]

#i10000# build error fixes


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [aff79fc4445e7d62c4b1de4cc359ffb45c3c2a0a]

INTEGRATION: CWS calc45 (1.35.62); FILE MERGED 2007/10/31 19:16:51 nn 1.35.62.1: #i77236# don't unmerge protected cells


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [d52793fe22932bbe9acb5c4a69362caff1161cae]

INTEGRATION: CWS calc45 (1.59.150); FILE MERGED 2007/12/03 09:54:55 nn 1.59.150.2: RESYNC: (1.59-1.60); FILE MERGED 2007/10/02 15:26:12 nn 1.59.150.1: #i81936# use sal_Int32 instead of long as UNO type


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [8f466a7d23c2d84c557a80b271ef32f933886dcc]

INTEGRATION: CWS calc45 (1.60.18); FILE MERGED 2007/12/03 09:54:52 nn 1.60.18.2: RESYNC: (1.60-1.62); FILE MERGED 2007/10/05 17:15:06 nn 1.60.18.1: #i79808# show validation input help window only if message isn't empty


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [f471fae1d65cbed362e636bcbe95974a29b75140]

INTEGRATION: CWS calc45 (1.31.86); FILE MERGED 2007/10/09 15:57:33 nn 1.31.86.1: #i80447# DrawClipMarks: don't draw at invalid position when nOutWidth is 0


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [82dc0be8f33361a8de5000060bfabd691c75ad7a]

INTEGRATION: CWS calc45 (1.85.4); FILE MERGED 2007/12/03 09:54:49 nn 1.85.4.3: RESYNC: (1.85-1.87); FILE MERGED 2007/11/13 13:45:31 nn 1.85.4.2: #i53533# MouseButtonUp: draw AutoFilter button with correct state 2007/10/15 12:22:21 nn 1.85.4.1: #i63144# don't allow editing of notes in protected cells (patch from maoyg)


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [370cfb83d0de802ee5e30c3a391c66978d2ad059]

INTEGRATION: CWS calc45 (1.3.550); FILE MERGED 2007/12/03 09:40:11 nn 1.3.550.1: #i83017# Warnings on 64bit Linux (patch from pjanik)


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [3361c7a3ebffd3fcf2f04bb859b1b8b4cf695823]

INTEGRATION: CWS calc45 (1.12.256); FILE MERGED 2007/10/15 12:22:20 nn 1.12.256.1: #i63144# don't allow editing of notes in protected cells (patch from maoyg)


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [9ba60461f4cd94482e28dfdd7136c51cbec05654]

INTEGRATION: CWS calc45 (1.26.182); FILE MERGED 2007/10/15 12:22:20 nn 1.26.182.1: #i63144# don't allow editing of notes in protected cells (patch from maoyg)


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [cc080c89aa74d391ea4196b738ad153d59478d8b]

INTEGRATION: CWS calc45 (1.10.256); FILE MERGED 2007/10/15 12:22:20 nn 1.10.256.1: #i63144# don't allow editing of notes in protected cells (patch from maoyg)


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [930e03503c4461178bbb07f7b5cf713c6235a99b]

INTEGRATION: CWS calc45 (1.207.84); FILE MERGED 2007/12/03 09:22:28 nn 1.207.84.3: #i84077# 'uninitialized' warning in gcc 4.1.2 again 2007/11/05 14:47:24 nn 1.207.84.2: #i29101# IsCellEqual: for values, also compare number formats 2007/10/02 15:26:11 nn 1.207.84.1: #i81936# use sal_Int32 instead of long as UNO type


2007-12-12  Kurt Zenker  <kz@openoffice.org>  [25de4e5b3ff0366831052bbd2ec1dc1bcb12987e]

INTEGRATION: CWS calc45 (1.24.6); FILE MERGED 2007/12/03 09:39:29 nn 1.24.6.1: #i83017# Warnings on 64bit Linux (patch from pjanik)


2007-12-10  Vladimir Glazounov  <vg@openoffice.org>  [10144af4c564ac4b5ec833d53c1da6d21b00f614]

#i84360#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [7a473c8e2b8506b04c3c4092bcf86e060180342b]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/30 17:43:50 npower 1.1.2.1: some regression/unit testing bits


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [0b8fac13f7095a235016f5af8acb89d05e5014cc]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/30 17:47:50 npower 1.1.2.1: benchmark logs for the regression/unit tests


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [a3eb92ef61f134c6939ec64b608afe094c68dce2]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/11/13 10:15:22 npower 1.1.2.2: Issue number: Submitted by: Reviewed by: 2007/10/30 17:47:50 npower 1.1.2.1: benchmark logs for the regression/unit tests


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [9e664d56639dd53274b989d24d378379ce4fec03]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/30 17:47:49 npower 1.1.2.1: benchmark logs for the regression/unit tests


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [4e85689de5cfa84f6b7b586845a06f729f8153c7]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/30 17:47:48 npower 1.1.2.1: benchmark logs for the regression/unit tests


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [15dd73da364901503f2c23fcb4ded1b27a472ff5]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/30 17:47:47 npower 1.1.2.1: benchmark logs for the regression/unit tests


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [90fbf45fb5bce0bcc8682b835e64dd87403c18cc]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [c6acc3eb46a6d82807d85a16d58e749a48e0ac2d]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/16 09:36:59 npower 1.2.4.3: #i77189# 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [9d0f93b54756651b8bd509028e9b87bad14d0889]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/16 09:36:59 npower 1.2.4.4: #i77189# 2007/10/11 19:24:27 npower 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [941b614c2d94f1a7877926b2f1d902e6b98e022a]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/17 17:52:47 npower 1.2.4.5: #i77189# 2007/10/16 09:36:59 npower 1.2.4.4: #i77189# 2007/09/03 12:19:43 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [3c57c278e26c327eaab9a13b48229717f6fd3e58]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/31 21:00:26 npower 1.2.4.6: Issue number:  #i77189# warning as error removal 2007/10/17 17:52:47 npower 1.2.4.5: #i77189# 2007/10/16 09:36:59 npower 1.2.4.4: #i77189# 2007/09/03 12:19:43 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [9a03a45f51e97eebe275ba03cc00c79d7b7c8b23]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/09/03 12:19:42 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [1522698df91771c9441db039425b324c10e9280a]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/16 09:36:59 npower 1.2.4.4: #i77189# 2007/09/03 12:19:42 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [83e3dd122ad2529335901f34a08e1ea2cd4d8d44]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/17 17:52:47 npower 1.2.4.4: #i77189# 2007/09/03 12:19:42 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [3cf07c5cd80994953990c518042de44aeff6369d]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/17 17:52:47 npower 1.2.4.5: #i77189# 2007/10/16 09:36:59 npower 1.2.4.4: #i77189# 2007/09/03 12:19:42 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:11 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [75cbdfff1acec27568414e4fde2b78f9d0dabb1a]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [fbf96165def84da53b0f3b35e282dd67efc16e9e]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/30 16:18:49 npower 1.2.4.4: #i77189# 2007/10/16 09:36:59 npower 1.2.4.3: #i77189# 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [6465c8146b945f99e316dcb7a2aa1b0cb28e6702]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/31 15:24:27 npower 1.2.4.6: #i77189# - remove warning 2007/10/30 16:18:49 npower 1.2.4.5: #i77189# 2007/10/16 09:36:59 npower 1.2.4.4: #i77189# 2007/08/07 18:24:52 npower 1.2.4.3: change calls to GetTopWindow_Impl to GetSystemWindow 2007/07/18 13:46:48 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [cfece345e5291a92256841d4a2ce41cad0201391]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/18 13:46:47 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [843ba5d5e4e06d934a7cf35ecd6df64f7742a9e3]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:26 npower 1.1.2.3: Issue number:  #i77189# warning as error removal 2007/07/18 13:46:47 npower 1.1.2.2: #i77189# sync ooo-build and this module 2007/05/10 11:21:47 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [7e2c19a58e22b5928b5f21cb0ae260ffa4d4d592]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:47 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:47 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [cbf31b805d7466b3dd6bd45fcd84ef10bfd80074]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/23 11:47:24 npower 1.1.2.4: i#77189# 2007/07/18 13:46:47 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:47 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [944adc4311f6b32c02610da962f00c87c2107fb2]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 22:40:44 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [b7d08ed12b08ec96b058103445a0054e2d4b57cf]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:26 npower 1.1.2.2: Issue number:  #i77189# warning as error removal 2007/07/18 22:40:44 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [a941a11d61578924505e7c30d2f310cbb900e655]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [ca86008e4f0a27a146624ba867a0717e5ff7c06b]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:26 npower 1.1.2.2: Issue number:  #i77189# warning as error removal 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [f30068dcf951a21ed8c21e95612cc0fe56ddbf8c]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/16 09:36:59 npower 1.1.2.5: #i77189# 2007/09/03 12:19:42 npower 1.1.2.4: #i77189# sync with oobuild 2007/07/18 13:46:47 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:47 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [3d1f91eafe2a5bd7bf1c9e8624f5956fa94b4cf7]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 16:05:13 npower 1.1.2.6: #i77189# - remove warning 2007/10/16 09:36:59 npower 1.1.2.5: #i77189# 2007/09/03 12:19:42 npower 1.1.2.4: #i77189# sync with oobuild 2007/07/18 13:46:47 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:47 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [780c7084fb9467c0c5863d6ae03ea4f6e3520666]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/16 09:36:59 npower 1.1.2.4: #i77189# 2007/07/18 13:46:47 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [0d28cdd7a52ea16bfc6f3d3391ee2e22b6194f18]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/16 09:36:59 npower 1.1.2.6: #i77189# 2007/07/23 14:36:41 npower 1.1.2.5: more uninitialized value warning removal 2007/07/23 11:47:24 npower 1.1.2.4: i#77189# 2007/07/18 13:46:47 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [728d0e5bf44b5a54a1e6df43b8a50cce192cdf8c]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/30 16:18:49 npower 1.2.4.5: #i77189# 2007/10/16 09:36:59 npower 1.2.4.4: #i77189# 2007/09/03 12:19:42 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:47 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [03fada55177203341471d6a57f1fd66060bf5028]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/11/30 10:57:33 npower 1.2.4.12: compare widths based on twips not the converted doubles which seem to exhibit strange fp related ( or maybe even gcc specific ) problems, these result in some of the comparisons failing when they shouldn't Issue number: Submitted by: Reviewed by: 2007/11/05 17:07:21 npower 1.2.4.11: Issue number:  #i77189# 2007/10/31 21:00:26 npower 1.2.4.10: Issue number:  #i77189# warning as error removal 2007/10/30 16:18:48 npower 1.2.4.9: #i77189# 2007/10/30 11:53:39 npower 1.2.4.8: #i68901# 2007/10/16 09:36:59 npower 1.2.4.7: #i77189# 2007/10/11 19:24:24 npower 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2007/09/03 12:19:42 npower 1.2.4.5: #i77189# sync with oobuild 2007/07/23 11:47:24 npower 1.2.4.4: i#77189# 2007/07/18 13:46:47 npower 1.2.4.3: #i77189# sync ooo-build and this module 2007/05/13 07:09:06 npower 1.2.4.2: wrong constant def Issue number: Submitted by: Reviewed by: 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [6e8488ee3fb1fc600b62597a51a58b5d3197dbe6]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:47 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [5b403320193cb64a7b02d9ff9b7a972819dac338]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/23 11:47:24 npower 1.1.2.4: i#77189# 2007/07/18 13:46:47 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [a8ea2049c7f5417a469ae09765b54eebfe44e761]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/09/03 12:19:42 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:47 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [31f800eedf62380c3e403a956c3db0bf703ad999]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/18 13:46:46 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [86d52bb2e14649d9600f7ac993c63cb174c9944e]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/18 13:46:46 npower 1.2.4.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [91d1737353dc4f1d6b7e08304b15ae13cdface19]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:46 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [c535c6f33ad5c70c8159f8d4b259b6989e810d62]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:26 npower 1.1.2.5: Issue number:  #i77189# warning as error removal 2007/09/03 12:19:42 npower 1.1.2.4: #i77189# sync with oobuild 2007/07/18 13:46:46 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [6c9d8d73aefbc46981760f92c910d7a9fdd0e1fe]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/23 14:36:41 npower 1.1.2.3: more uninitialized value warning removal 2007/07/23 11:47:24 npower 1.1.2.2: i#77189# 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [e6d6e275fa1147a6bcb1a14e00236a06c604e192]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:26 npower 1.1.2.5: Issue number:  #i77189# warning as error removal 2007/09/03 12:19:42 npower 1.1.2.4: #i77189# sync with oobuild 2007/07/23 14:36:41 npower 1.1.2.3: more uninitialized value warning removal 2007/07/23 11:47:24 npower 1.1.2.2: i#77189# 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [f19de6192605a185c14845aca48a4366db81e4af]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/08/07 18:25:20 npower 1.1.2.3: add missing SAL_CALL to uno Delete method 2007/07/23 11:47:24 npower 1.1.2.2: i#77189# 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [c17fa1d9fa2ac26bc1e667fc071189cc7ef42e27]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/23 11:47:24 npower 1.1.2.2: i#77189# 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [3d30aafe084430c541fb4c7054353dda613c9e75]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:26 npower 1.1.2.4: Issue number:  #i77189# warning as error removal 2007/07/18 13:46:46 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:01 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [693a33f9d87a3878694ff55561486ba17715501a]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:46 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:00 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [6736125bcaaea8d9cc5ba16d2697e2a8f5f494a2]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/16 09:36:59 npower 1.1.2.6: #i77189# 2007/07/23 14:46:00 npower 1.1.2.5: warning removal 2007/07/23 11:47:24 npower 1.1.2.4: i#77189# 2007/07/18 13:46:46 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:00 npower 1.1.2.2: Add licence info 2007/05/10 11:21:46 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [d77697f21ca0dadfa6177cacfdb0d91bf14dfdc4]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/23 11:47:24 npower 1.2.4.3: i#77189# 2007/07/18 13:46:46 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [c5e14b7fd5fb5a19d2afb48476cea1ae1097c113]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:46 npower 1.1.2.2: #i77189# sync ooo-build and this module 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [a1efdeb3ec58fa02fa2b63617696de78a38f4f11]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/30 16:18:48 npower 1.2.4.7: #i77189# 2007/10/17 17:52:47 npower 1.2.4.6: #i77189# 2007/10/16 09:36:59 npower 1.2.4.5: #i77189# 2007/10/11 19:24:14 npower 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2007/07/18 13:46:46 npower 1.2.4.3: #i77189# sync ooo-build and this module 2007/05/14 15:53:54 npower 1.2.4.2: remove bits that are already commited in npower7 ( also reorg the modifications so the diff context is more useable in ooo-build ) 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [65033e3700e3e8168088d019ae9d78cb13333b1e]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/30 16:18:48 npower 1.2.4.6: #i77189# 2007/10/16 09:36:59 npower 1.2.4.5: #i77189# 2007/07/23 14:36:41 npower 1.2.4.4: more uninitialized value warning removal 2007/07/23 11:47:24 npower 1.2.4.3: i#77189# 2007/07/18 13:46:46 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:10 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [fe8f3118a0f8fe41e8e9d1605d5a032488aa1cc3]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/18 13:46:46 npower 1.2.4.4: #i77189# sync ooo-build and this module 2007/05/22 06:18:53 npower 1.2.4.3: change back the implementation name ( will be fixed ( I hope ) by 77436 2007/05/16 13:13:08 npower 1.2.4.2: temporary hack to allow extension manager to work 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [7935aa4d964e472d72ba2852b8224034e372a972]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [663530226923de4bcf28a5b9451da83c8dbcc5f1]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:26 npower 1.1.2.2: Issue number:  #i77189# warning as error removal 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [6c3d5e94d29e46b3bbe0ddc5ec195b04352fc8e1]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/11/07 16:13:25 npower 1.1.2.4: Issue number:  77189 fix solarix errors 2007/10/31 21:00:26 npower 1.1.2.3: Issue number:  #i77189# warning as error removal 2007/09/03 12:19:42 npower 1.1.2.2: #i77189# sync with oobuild 2007/07/18 22:40:43 npower 1.1.2.1: #i77189# sync ooo-build and this module


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [bc0d7b9f6edd0b87ca39f518c830180e918e80c0]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/18 13:46:46 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [bbeec377fdf5ea2cb3e91650be0b93584473c0f8]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/11 19:24:10 npower 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2007/07/23 14:46:00 npower 1.2.4.3: warning removal 2007/07/18 13:46:46 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [0442a328f669bdca26e5f1c30d83495fc0c62e46]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:46 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:00 npower 1.1.2.2: Add licence info 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [6ef0212f212c29ac6540bc6a1db7b20647b52564]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/16 09:36:58 npower 1.1.2.5: #i77189# 2007/07/23 11:47:24 npower 1.1.2.4: i#77189# 2007/07/18 13:46:46 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:00 npower 1.1.2.2: Add licence info 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [8b183158bc19b3db7232df90ec0b0385ee2e7090]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/23 11:47:24 npower 1.2.4.3: i#77189# 2007/07/18 13:46:45 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [ed7b03d53cb7793eb556e7ace15fe7eed71e96fc]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/18 13:46:45 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [f5b837b5849a7843f84f028ec32993f356d06da2]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:45 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:00 npower 1.1.2.2: Add licence info 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [1e34633251e17a71881712baadfac43bfbda80c8]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/09/03 12:19:42 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:45 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [b5f0d9bc49cfe114d8727b558d5b4de4b944633b]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/11 19:24:07 npower 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2007/07/18 13:46:45 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [7f12cceaf195327da9fea145884debc569615ace]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/16 09:36:58 npower 1.1.2.4: #i77189# 2007/07/18 13:46:45 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:00 npower 1.1.2.2: Add licence info 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [2dc2642896dae1fd51f264d1d8e3131246d908b6]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/31 21:00:26 npower 1.2.4.4: Issue number:  #i77189# warning as error removal 2007/10/16 09:36:58 npower 1.2.4.3: #i77189# 2007/07/18 13:46:45 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [4ba510c539b9bfccb364d075bc48c58e6f1d4ec5]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:45 npower 1.1.2.2: #i77189# sync ooo-build and this module 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [ac5f446630c4bc08d961c7dbae6dbfe54f69df99]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:26 npower 1.1.2.3: Issue number:  #i77189# warning as error removal 2007/07/18 13:46:45 npower 1.1.2.2: #i77189# sync ooo-build and this module 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [a576464ae13a576fb1bb4634f64186a806d1ae67]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/31 21:00:26 npower 1.2.4.3: Issue number:  #i77189# warning as error removal 2007/07/18 13:46:45 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [01c23d3e31bce33bfa9d72e716376471ed7bc8ce]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/31 21:00:26 npower 1.2.4.4: Issue number:  #i77189# warning as error removal 2007/07/23 11:47:24 npower 1.2.4.3: i#77189# 2007/07/18 13:46:45 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:09 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [5457fc763b270e97c2df820d756384efd1559846]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/07/23 11:47:24 npower 1.2.4.3: i#77189# 2007/07/18 13:46:45 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:08 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [e836dfc15787e75489e6c1d9a5b3b0a31a010e91]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:44 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:00 npower 1.1.2.2: Add licence info 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [1788220a03965e2dd88ecd24518553e9d31137cc]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/07/18 13:46:44 npower 1.1.2.2: #i77189# sync ooo-build and this module 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [152d304970856d1c6fff0663559e6f7a8c65c7a8]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/10/31 21:00:25 npower 1.1.2.3: Issue number:  #i77189# warning as error removal 2007/07/18 13:46:44 npower 1.1.2.2: #i77189# sync ooo-build and this module 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [e306cb0968277ad367997bc3e6a8910822d1e8da]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/16 09:36:58 npower 1.2.4.3: #i77189# 2007/07/18 13:46:44 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:08 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [5b7c3ddb52d7e640ef44925b914548cdde422863]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/10/31 21:00:25 npower 1.2.4.6: Issue number:  #i77189# warning as error removal 2007/10/30 16:18:48 npower 1.2.4.5: #i77189# 2007/10/16 09:36:58 npower 1.2.4.4: #i77189# 2007/10/11 19:24:04 npower 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2007/07/18 13:46:44 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:08 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [5be94794557c7f01c7b2ef267fab5dcfbf5e319e]

INTEGRATION: CWS npower8 (1.2.4); FILE MERGED 2007/09/03 12:19:42 npower 1.2.4.3: #i77189# sync with oobuild 2007/07/18 13:46:44 npower 1.2.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:08 npower 1.2.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [d1faa4f5651900e67269da54034924a33eac49d5]

INTEGRATION: CWS npower8 (1.4.4); FILE MERGED 2007/07/18 13:46:44 npower 1.4.4.2: #i77189# sync ooo-build and this module 2007/05/10 11:23:08 npower 1.4.4.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [194001dadc1bbdfd72a93571d7304dd6074efc32]

INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/11/07 15:55:49 npower 1.1.2.5: Issue number: Submitted by: Reviewed by: 2007/10/31 21:00:25 npower 1.1.2.4: Issue number:  #i77189# warning as error removal 2007/07/18 13:46:44 npower 1.1.2.3: #i77189# sync ooo-build and this module 2007/05/13 07:34:00 npower 1.1.2.2: Add licence info 2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [9457d574169297387f24bb7a4c2f2022b5a19080]

INTEGRATION: CWS npower8 (1.101.40); FILE MERGED 2007/10/11 19:24:00 npower 1.101.40.2: RESYNC: (1.101-1.107); FILE MERGED 2007/07/18 13:42:05 npower 1.101.40.1: #i68902# all vba code to access a copy of SfxItemSet that hasn't had ClearInvalidItems called on it


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [a76e8c06bddbc9c42125b8db5e45c70c782a000d]

INTEGRATION: CWS npower8 (1.6.226); FILE MERGED 2007/10/11 19:23:11 npower 1.6.226.2: RESYNC: (1.6-1.7); FILE MERGED 2007/07/18 13:45:04 npower 1.6.226.1: #i77189# visibility changes needed by vba api model to access core calc bits


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [9239a3959869746042ca3fdb8d0aeae612b2b2d9]

INTEGRATION: CWS npower8 (1.120.92); FILE MERGED 2007/11/09 17:06:15 npower 1.120.92.1: #i83503# - if vba interop enabled then import macros uncommented


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [1ef3acb8f41bffc834964b70b08318ac48c9a6c6]

INTEGRATION: CWS npower8 (1.5.62); FILE MERGED 2007/10/30 11:53:39 npower 1.5.62.1: #i68901#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [6279e5c37b6003107a2db7cbe9105cca7f6f5612]

INTEGRATION: CWS npower8 (1.4.426); FILE MERGED 2007/10/30 11:53:39 npower 1.4.426.1: #i68901#


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [2f62e1212bee65a6fd5ba6362fd6f038590f015c]

INTEGRATION: CWS npower8 (1.12.62); FILE MERGED 2007/07/18 13:45:04 npower 1.12.62.1: #i77189# visibility changes needed by vba api model to access core calc bits


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [79d4371d4e91c26e42b63a57bbcb1b46be05a518]

INTEGRATION: CWS npower8 (1.99.4); FILE MERGED 2007/10/30 11:53:38 npower 1.99.4.3: #i68901# 2007/10/11 19:21:43 npower 1.99.4.2: RESYNC: (1.99-1.104); FILE MERGED 2007/07/18 13:45:04 npower 1.99.4.1: #i77189# visibility changes needed by vba api model to access core calc bits


2007-12-07  Vladimir Glazounov  <vg@openoffice.org>  [ee41a570aa5c80362fc8d4d00ad2850559a4ff08]

INTEGRATION: CWS npower8 (1.28.4); FILE MERGED 2007/10/11 19:21:37 npower 1.28.4.2: RESYNC: (1.28-1.29); FILE MERGED 2007/07/18 13:42:05 npower 1.28.4.1: #i68902# all vba code to access a copy of SfxItemSet that hasn't had ClearInvalidItems called on it


2007-12-05  Vladimir Glazounov  <vg@openoffice.org>  [8af3e425c1c4530e4032c952ab943eb32057732c]

INTEGRATION: CWS regexp02 (1.14.116); FILE MERGED 2007/11/06 13:12:18 ama 1.14.116.1: Fix #i15666#: Backward references in regular expressions


2007-12-05  Vladimir Glazounov  <vg@openoffice.org>  [ad4b09b24dc52dbeadeb086f8b8ac83e0af01bad]

INTEGRATION: CWS gcc412warnings (1.7.4); FILE MERGED 2007/11/22 09:11:53 gh 1.7.4.2: RESYNC: (1.7-1.9); FILE MERGED 2007/09/05 10:15:27 gh 1.7.4.1: #i81284# fix warnings in gcc 4.1.2


2007-12-05  Vladimir Glazounov  <vg@openoffice.org>  [9e781f63db8b819f656bfeba313eb2860cd630c3]

INTEGRATION: CWS gcc412warnings (1.3.2); FILE MERGED 2007/11/22 09:36:44 gh 1.3.2.2: RESYNC: (1.3-1.4); FILE MERGED 2007/09/05 10:15:27 gh 1.3.2.1: #i81284# fix warnings in gcc 4.1.2


2007-11-27  Ivo Hinkelmann  <ihi@openoffice.org>  [5910474c7febed32e13e7630a01c1cc7483e61fa]

#i10000# fixed l10n


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [ed9193de0ecd82dc9ccb03ce6f0c88be796d19e5]

INTEGRATION: CWS calcprintdlg (1.68.108); FILE MERGED 2007/11/09 14:46:10 tbe 1.68.108.3: #i82071# Flaws in print logic 2007/11/08 11:46:31 tbe 1.68.108.2: #i82071# Flaws in print logic 2007/11/06 16:37:06 pb 1.68.108.1: fix: #i82071# new PrintDialog::Ctor()


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [e24f2d446b7dfca1141791db86eb54b3edd42559]

INTEGRATION: CWS calcprintdlg (1.38.48); FILE MERGED 2007/11/09 14:45:06 tbe 1.38.48.3: #i82071# Flaws in print logic 2007/11/08 11:45:00 tbe 1.38.48.2: #i82071# Flaws in print logic 2007/11/06 16:37:06 pb 1.38.48.1: fix: #i82071# new PrintDialog::Ctor()


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [667df38c6513ca3cf6ec574cd535cc34a4342a4e]

INTEGRATION: CWS calcprintdlg (1.27.110); FILE MERGED 2007/11/09 14:44:09 tbe 1.27.110.1: #i82071# Flaws in print logic


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [970d9ef474c67b73639f8a2526511fbbd4578a3f]

INTEGRATION: CWS calcprintdlg (1.7.174); FILE MERGED 2007/11/09 17:45:32 tbe 1.7.174.2: #i82071# Flaws in print logic 2007/11/08 11:47:21 pb 1.7.174.1: fix: #i82071# consider new item SID_PRINT_SELECTEDSHEET


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [320fb757b48eccbbeb5eae96f534d7d778dad712]

INTEGRATION: CWS calcprintdlg (1.56.110); FILE MERGED 2007/11/09 17:44:05 tbe 1.56.110.2: #i82071# Flaws in print logic 2007/11/09 14:43:09 tbe 1.56.110.1: #i82071# Flaws in print logic


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [2a976f684ac2a2a1712afc44648cdb124d93077f]

INTEGRATION: CWS calcprintdlg (1.49.92); FILE MERGED 2007/11/09 17:43:00 tbe 1.49.92.2: #i82071# Flaws in print logic 2007/11/08 11:45:41 pb 1.49.92.1: fix: #i82071# printer itemset enhanced with SID_PRINT_SELECTEDSHEET


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [7e6370181c6246086c11d1a0a1814c2630915e72]

INTEGRATION: CWS datapilotdetails (1.85.46); FILE MERGED 2007/11/02 09:54:52 nn 1.85.46.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [3131398c8f4c54b4ad5999b27131f152673f6b52]

INTEGRATION: CWS datapilotdetails (1.13.208); FILE MERGED 2007/11/02 09:54:52 nn 1.13.208.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [cb92ae5882a279da084339dacff8301b1eee7c55]

INTEGRATION: CWS datapilotdetails (1.46.178); FILE MERGED 2007/11/02 09:54:52 nn 1.46.178.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [3ef5dca3ecac9fa6d8ad450b39b4722cd1ef013c]

INTEGRATION: CWS datapilotdetails (1.7.168); FILE MERGED 2007/11/02 09:54:52 nn 1.7.168.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [70899fc55217a221acffbd58679c1e2c1fe18990]

INTEGRATION: CWS datapilotdetails (1.20.52); FILE MERGED 2007/11/02 09:54:51 nn 1.20.52.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [627d6248b3f6931dba8848418ff7c11af33c344c]

INTEGRATION: CWS datapilotdetails (1.15.118); FILE MERGED 2007/11/02 10:09:49 nn 1.15.118.2: #i57030# warning in product versions 2007/11/02 09:54:51 nn 1.15.118.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [071c2dff677c9a2da86c252765979d06ed005432]

INTEGRATION: CWS datapilotdetails (1.21.118); FILE MERGED 2007/11/02 09:54:51 nn 1.21.118.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [6e20bdafe4f8aa4b8ec344f464fdac151f873d64]

INTEGRATION: CWS datapilotdetails (1.8.222); FILE MERGED 2007/11/02 09:54:51 nn 1.8.222.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [eb68e958c6d3be35fd97d44dc0ecb6522ea3f889]

INTEGRATION: CWS datapilotdetails (1.8.118); FILE MERGED 2007/11/02 09:54:51 nn 1.8.118.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [b64e9be7dee1b3de8497f48ad477dbc4369eb926]

INTEGRATION: CWS datapilotdetails (1.12.118); FILE MERGED 2007/11/02 09:54:51 nn 1.12.118.1: #i57030# DataPilot drill down to source rows for result values


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [392ff1f392931ec85a62e0f00c0b44998bc16fa1]

INTEGRATION: CWS aw053 (1.18.48); FILE MERGED 2007/09/14 10:51:01 aw 1.18.48.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [96e567ba9084f17bb269600e93e9e68a8f88806c]

INTEGRATION: CWS aw053 (1.32.42); FILE MERGED 2007/09/14 16:44:10 aw 1.32.42.2: #i80528# Removal of draft paint modes; safer ScVObjMode assignment handling 2007/09/14 10:51:01 aw 1.32.42.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [9590d307c54e4cb8378331afdd04babf7c6e9707]

INTEGRATION: CWS aw053 (1.65.48); FILE MERGED 2007/09/14 10:51:01 aw 1.65.48.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [2de1bbd5b32aa7d0c001b5adc634994747381054]

INTEGRATION: CWS aw053 (1.68.42); FILE MERGED 2007/11/01 18:37:36 aw 1.68.42.2: RESYNC: (1.68-1.69); FILE MERGED 2007/09/14 10:51:00 aw 1.68.42.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [8dca8d3cc0c0fa2a9e3c980457fb1abaf4ef2a7e]

INTEGRATION: CWS aw053 (1.19.110); FILE MERGED 2007/11/01 18:31:51 aw 1.19.110.2: RESYNC: (1.19-1.20); FILE MERGED 2007/09/14 10:51:00 aw 1.19.110.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [16aee7d3c4c99aa0e4a7ae057efcb33cb3d19c57]

INTEGRATION: CWS aw053 (1.89.74); FILE MERGED 2007/09/14 10:50:59 aw 1.89.74.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [6bd97540b27a5f7654ccc1b87fae6fbd0751ff85]

INTEGRATION: CWS aw053 (1.7.134); FILE MERGED 2007/09/14 16:44:10 aw 1.7.134.2: #i80528# Removal of draft paint modes; safer ScVObjMode assignment handling 2007/09/14 10:50:59 aw 1.7.134.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [16efa10b18160c52ce7fda278463695cb40c1644]

INTEGRATION: CWS aw053 (1.16.112); FILE MERGED 2007/09/14 16:44:09 aw 1.16.112.2: #i80528# Removal of draft paint modes; safer ScVObjMode assignment handling 2007/09/14 10:50:59 aw 1.16.112.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [8f9a1f58ed743011e3f66cff07785eb3dc7b7c6b]

INTEGRATION: CWS aw053 (1.17.42); FILE MERGED 2007/11/01 18:24:30 aw 1.17.42.2: RESYNC: (1.17-1.18); FILE MERGED 2007/09/14 10:50:28 aw 1.17.42.1: #i80528# Removal of draft paint modes


2007-11-26  Ivo Hinkelmann  <ihi@openoffice.org>  [d85f1ef4b90e487e72af4ae484ea488eae3c9a00]

INTEGRATION: CWS aw053 (1.50.18); FILE MERGED 2007/09/14 10:50:28 aw 1.50.18.1: #i80528# Removal of draft paint modes


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [81740f4ead6a0dd18db5f06b89c1c7d5091a1c2d]

INTEGRATION: CWS langstatusbar (1.34.146); FILE MERGED 2007/10/01 21:11:00 tl 1.34.146.3: RESYNC: (1.35-1.37); FILE MERGED 2007/06/25 16:13:04 tl 1.34.146.2: RESYNC: (1.34-1.35); FILE MERGED 2007/06/08 14:17:30 tl 1.34.146.1: #i77208# new language status-bar control


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [d0f87d12663aef7a60b49fa08439eb6247030c30]

INTEGRATION: CWS chart17 (1.4.66); FILE MERGED 2007/11/05 14:26:37 iha 1.4.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [81d6246d72fc9981fa9489f62d930842e24a6a50]

INTEGRATION: CWS chart17 (1.26.32); FILE MERGED 2007/11/05 14:23:29 iha 1.26.32.3: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:53:49 bm 1.26.32.2: RESYNC: (1.26-1.27); FILE MERGED 2007/10/12 12:35:11 bm 1.26.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [294c3a9d5f4415952216d7fe324dabcb0ffa352a]

INTEGRATION: CWS chart17 (1.7.66); FILE MERGED 2007/10/12 12:35:11 bm 1.7.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [769ab0ceb4b21322d98731a4369f44648f3a4306]

INTEGRATION: CWS chart17 (1.5.66); FILE MERGED 2007/11/05 14:21:34 iha 1.5.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [b4f0521caae3e7eb5f8ecac3b4c238bbac7cd549]

INTEGRATION: CWS chart17 (1.14.32); FILE MERGED 2007/11/05 14:25:30 iha 1.14.32.2: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/23 15:02:39 bm 1.14.32.1: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues()


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [c59651781218665821d1bfec45868ab76b7a5136]

INTEGRATION: CWS chart17 (1.39.2); FILE MERGED 2007/11/05 14:26:15 iha 1.39.2.3: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:53:52 bm 1.39.2.2: RESYNC: (1.39-1.40); FILE MERGED 2007/10/12 12:35:11 bm 1.39.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [fac907023c682c59502b07cb8c9fa56e65e9a8d6]

INTEGRATION: CWS chart17 (1.4.2); FILE MERGED 2007/11/05 18:00:19 iha 1.4.2.6: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/11/05 14:19:54 iha 1.4.2.5: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:53:55 bm 1.4.2.4: RESYNC: (1.4-1.5); FILE MERGED 2007/10/26 08:23:29 bm 1.4.2.3: #i10000# sfx item cleanup as preparation for resync 2007/10/26 07:55:01 bm 1.4.2.2: #i10000# prepared for resync to avoid conflicts 2007/10/12 12:35:11 bm 1.4.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [a2bbd9885b52156b32d1a38bef903c2db26dfb56]

INTEGRATION: CWS chart17 (1.19.2); FILE MERGED 2007/11/05 14:24:14 iha 1.19.2.4: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:53:58 bm 1.19.2.3: RESYNC: (1.19-1.20); FILE MERGED 2007/10/23 15:02:39 bm 1.19.2.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:11 bm 1.19.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [2caf216eca0fd337d972802743294333aa2f6448]

INTEGRATION: CWS chart17 (1.16.54); FILE MERGED 2007/11/05 14:22:14 iha 1.16.54.3: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:54:03 bm 1.16.54.2: RESYNC: (1.16-1.17); FILE MERGED 2007/10/12 12:35:11 bm 1.16.54.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [6825cf56223a7be3011a72fbc419c6ad0be57847]

INTEGRATION: CWS chart17 (1.6.66); FILE MERGED 2007/10/23 07:25:06 bm 1.6.66.2: superfluous qualifier removed 2007/10/12 12:35:11 bm 1.6.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [4cbc9ef7f2030c923135816e75f62956ff489789]

INTEGRATION: CWS chart17 (1.3.66); FILE MERGED 2007/11/05 14:21:12 iha 1.3.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [7efc85e4f13d0f07daa47ea46e7c6efdb7c2fffe]

INTEGRATION: CWS chart17 (1.11.4); FILE MERGED 2007/11/05 14:25:50 iha 1.11.4.3: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:54:01 bm 1.11.4.2: RESYNC: (1.11-1.12); FILE MERGED 2007/10/23 15:02:39 bm 1.11.4.1: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues()


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [d8142faf1178d5314dbe2ffab25399b8144213e4]

INTEGRATION: CWS chart17 (1.37.26); FILE MERGED 2007/11/05 14:24:54 iha 1.37.26.5: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:54:09 bm 1.37.26.4: RESYNC: (1.37-1.38); FILE MERGED 2007/10/24 13:05:56 bm 1.37.26.3: #i7998# allow showing equations even if the regression curve is not visible (clipped away) 2007/10/23 15:02:37 bm 1.37.26.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:10 bm 1.37.26.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [d0c694de48f9acb8248324730ae79e353b912f5a]

INTEGRATION: CWS chart17 (1.7.66); FILE MERGED 2007/11/05 14:29:00 iha 1.7.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [2ca7dd5e5c956bb1beea93b598955c63af384b3d]

INTEGRATION: CWS chart17 (1.16.32); FILE MERGED 2007/11/05 14:29:30 iha 1.16.32.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [ea927024f9da2fd12229cffdec81b98fd1cbdfd0]

INTEGRATION: CWS chart17 (1.7.2); FILE MERGED 2007/11/05 14:28:20 iha 1.7.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [bd4bea2687750a4c044e7d63ab70c208a2befb50]

INTEGRATION: CWS chart17 (1.20.10); FILE MERGED 2007/11/05 17:21:10 iha 1.20.10.5: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/11/05 14:28:42 iha 1.20.10.4: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:54:12 bm 1.20.10.3: RESYNC: (1.20-1.21); FILE MERGED 2007/10/23 15:02:37 bm 1.20.10.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:10 bm 1.20.10.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [5f29ad93a1a496d339ccbad0abb2482e08b12c8e]

INTEGRATION: CWS chart17 (1.13.66); FILE MERGED 2007/10/12 12:35:10 bm 1.13.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [255d4c37edb4c9aa0ab85317978bb6b97bb8ef68]

INTEGRATION: CWS chart17 (1.49.12); FILE MERGED 2007/11/05 14:27:41 iha 1.49.12.4: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:54:06 bm 1.49.12.3: RESYNC: (1.49-1.50); FILE MERGED 2007/10/23 15:02:37 bm 1.49.12.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:10 bm 1.49.12.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [c84bd91b213f3ae2531f4193a7f31e895f2f990e]

INTEGRATION: CWS chart17 (1.24.32); FILE MERGED 2007/10/12 12:35:09 bm 1.24.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [aac1d5783f2bcf95f7997f1d7c03065202331143]

INTEGRATION: CWS chart17 (1.3.32); FILE MERGED 2007/10/12 12:35:09 bm 1.3.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [2200e2e78aefa1fbdde3c4cb7bdac964b6e9edaa]

INTEGRATION: CWS chart17 (1.1.2); FILE ADDED 2007/10/25 12:54:52 bm 1.1.2.2: #10000# using ::cppu::OPropertySetHelper::disposing; needed for Solaris compiler 2007/10/12 12:32:44 bm 1.1.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [f609ab6e867fd50eab16995d14c82a170696e443]

INTEGRATION: CWS chart17 (1.1.2); FILE ADDED 2007/10/12 12:32:44 bm 1.1.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [6b5603560bc98ebddee49a9417bbaf9aeecc3d2d]

INTEGRATION: CWS chart17 (1.5.4); FILE MERGED 2007/10/12 15:01:21 bm 1.5.4.2: #i7998# CTOR member order 2007/10/12 12:35:09 bm 1.5.4.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [dac9b86a598373d11e58712a403a872b6a28e856]

INTEGRATION: CWS chart17 (1.6.32); FILE MERGED 2007/10/29 16:53:17 bm 1.6.32.2: #i7998# set hairline line width as hard attribute to get a new default that works with old implementations 2007/10/12 12:35:09 bm 1.6.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [14ee78f26c06ccf79d9a592288a1ba196f40cae5]

INTEGRATION: CWS chart17 (1.11.32); FILE MERGED 2007/10/25 12:51:42 bm 1.11.32.2: #i7998# added helpers for resetting trendline equation positions of all equations when doing new arrangement 2007/10/12 12:35:09 bm 1.11.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [cd497971c0148f19ecc408d7f9f5a007c34cefe5]

INTEGRATION: CWS chart17 (1.1.2); FILE ADDED 2007/10/23 16:51:19 bm 1.1.2.3: #i82891# no scaling means automatically linear 2007/10/23 15:02:36 bm 1.1.2.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:32:34 bm 1.1.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [f9cd52b6d7480fad89bfb775f6477c1832c73d33]

INTEGRATION: CWS chart17 (1.4.32); FILE MERGED 2007/10/12 12:35:09 bm 1.4.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [3512b846820fe7e2eaae5e359baf2ff7619e0566]

INTEGRATION: CWS chart17 (1.5.110); FILE MERGED 2007/10/23 15:02:36 bm 1.5.110.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:09 bm 1.5.110.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [70ae32f869f38abfb32e21fb48b4f10b01c6f508]

INTEGRATION: CWS chart17 (1.4.4); FILE MERGED 2007/10/12 12:35:09 bm 1.4.4.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [6b2f14cabc14dcc14c758c94f608792271f06166]

INTEGRATION: CWS chart17 (1.5.32); FILE MERGED 2007/10/30 13:53:46 bm 1.5.32.4: RESYNC: (1.5-1.6); FILE MERGED 2007/10/23 16:36:44 bm 1.5.32.3: #i82891# optimization can also be done with logarithmic scaling in both directions 2007/10/23 15:02:36 bm 1.5.32.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:09 bm 1.5.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [923197162e0d93486015ceca94b30a8ad3a92f3c]

INTEGRATION: CWS chart17 (1.6.110); FILE MERGED 2007/10/23 15:02:36 bm 1.6.110.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:09 bm 1.6.110.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [af100e1d29b815437aece91428255d8cd8bb8d45]

INTEGRATION: CWS chart17 (1.6.66); FILE MERGED 2007/10/23 15:02:36 bm 1.6.66.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:09 bm 1.6.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [53e1d4beaafdc79e65ef22a5c13cc677d2b82fec]

INTEGRATION: CWS chart17 (1.7.26); FILE MERGED 2007/11/06 11:03:39 iha 1.7.26.1: #i63857#, #i4039#, #i83344# iterate correct over attributed data point


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [302ae685ab0c4d0a5d2234910332ae98dddcaead]

INTEGRATION: CWS chart17 (1.16.2); FILE MERGED 2007/11/05 14:17:23 iha 1.16.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [b981349bd183c811d6056bc7d501510f2595c9ec]

INTEGRATION: CWS chart17 (1.10.54); FILE MERGED 2007/11/05 14:15:46 iha 1.10.54.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [1982406d5dcd2b630ca3b7c5b0c490a35903a75b]

INTEGRATION: CWS chart17 (1.4.66); FILE MERGED 2007/11/05 14:13:36 iha 1.4.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [5aeda40644d029707f35f873402e00c386225225]

INTEGRATION: CWS chart17 (1.9.4); FILE MERGED 2007/11/05 14:13:53 iha 1.9.4.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [a7df53c27a404db5a3e48fd398211d22055ea72a]

INTEGRATION: CWS chart17 (1.7.54); FILE MERGED 2007/11/05 14:12:59 iha 1.7.54.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [aaf89ab3305813913d3b7ac0d7de4e2e315fe85b]

INTEGRATION: CWS chart17 (1.11.4); FILE MERGED 2007/11/05 14:13:17 iha 1.11.4.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [731221cb5feec1befdb4d60915ce6284c98be75c]

INTEGRATION: CWS chart17 (1.5.66); FILE MERGED 2007/11/05 14:12:14 iha 1.5.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [d816c2700c9cf86874027852d4289774728469eb]

INTEGRATION: CWS chart17 (1.13.4); FILE MERGED 2007/11/05 14:12:30 iha 1.13.4.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [bb5e10fec7a20c3a368a082f7fc3047e014eb69b]

INTEGRATION: CWS chart17 (1.4.66); FILE MERGED 2007/11/05 14:10:45 iha 1.4.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [8f9bbe062366822fc089d4a3d96946e33feb12ae]

INTEGRATION: CWS chart17 (1.7.32); FILE MERGED 2007/11/05 14:11:45 iha 1.7.32.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [7811ea4af93d03e75656d818b3258f03e36851d1]

INTEGRATION: CWS chart17 (1.11.66); FILE MERGED 2007/11/05 14:10:03 iha 1.11.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [bfa33731687289d28d4d0f1c38ce12ba7e56ccc6]

INTEGRATION: CWS chart17 (1.16.4); FILE MERGED 2007/11/05 14:10:22 iha 1.16.4.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [bb0e0058eececa4f524062756f69f653bb2c0bd6]

INTEGRATION: CWS chart17 (1.7.66); FILE MERGED 2007/11/05 14:05:08 iha 1.7.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [102ed3bb8c37f8c9b90917d5284b5424259759ff]

INTEGRATION: CWS chart17 (1.9.4); FILE MERGED 2007/11/05 14:09:10 iha 1.9.4.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [13c38820ec2a7d1af4539f6ad85ef5e7e703d269]

INTEGRATION: CWS chart17 (1.8.66); FILE MERGED 2007/11/05 14:01:16 iha 1.8.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [0b5583b7d0d7da9085f97b177955826ea09ff38a]

INTEGRATION: CWS chart17 (1.17.4); FILE MERGED 2007/11/06 11:05:21 iha 1.17.4.2: #i63857#, #i4039#, #i83344# iterate correct over attributed data point 2007/11/05 14:01:45 iha 1.17.4.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [0b3ced416fff56ede5c41deb4a8125a6bbbccefa]

INTEGRATION: CWS chart17 (1.6.66); FILE MERGED 2007/11/05 14:04:10 iha 1.6.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [6cd34cae3853fb729d4b10792977bb9edc7ab73e]

INTEGRATION: CWS chart17 (1.11.4); FILE MERGED 2007/11/05 14:04:41 iha 1.11.4.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [ba415e7580151a15d5e291e1b56497273945b36b]

INTEGRATION: CWS chart17 (1.6.66); FILE MERGED 2007/11/05 14:02:15 iha 1.6.66.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [b12ca2c452d529bccb0d2fc4871ea28f17bfef48]

INTEGRATION: CWS chart17 (1.9.4); FILE MERGED 2007/11/05 14:03:28 iha 1.9.4.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [44c2c9902f70293d20954d329bf42f8b539777a3]

INTEGRATION: CWS chart17 (1.7.2); FILE MERGED 2007/11/05 13:58:36 iha 1.7.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [ab478b1a708fb66af1114137249a98acab008985]

INTEGRATION: CWS chart17 (1.15.2); FILE MERGED 2007/11/05 13:59:08 iha 1.15.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [41efb88ab9ef525c23686e085a64faf6f408ec55]

INTEGRATION: CWS chart17 (1.2.66); FILE MERGED 2007/11/05 14:18:12 iha 1.2.66.5: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:53:43 bm 1.2.66.4: RESYNC: (1.2-1.3); FILE MERGED 2007/10/26 08:23:29 bm 1.2.66.3: #i10000# sfx item cleanup as preparation for resync 2007/10/26 07:49:35 bm 1.2.66.2: #i10000# prepared for resync to avoid conflicts 2007/10/12 12:35:08 bm 1.2.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [79dfed9eb206a322d7f4a4c64e7844ab871f1b0b]

INTEGRATION: CWS chart17 (1.3.44); FILE MERGED 2007/10/30 13:53:40 bm 1.3.44.3: RESYNC: (1.3-1.4); FILE MERGED 2007/10/25 15:00:12 bm 1.3.44.2: #i10000# merged in changes from chart14 to avoid resync conflicts 2007/10/12 12:35:08 bm 1.3.44.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [e3afd2848384df619107fb0ff8b343deb562bbf6]

INTEGRATION: CWS chart17 (1.8.66); FILE MERGED 2007/10/25 12:51:54 bm 1.8.66.2: #i7998# added helpers for resetting trendline equation positions of all equations when doing new arrangement 2007/10/12 12:35:08 bm 1.8.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [c9fc28aab2f7c81a65f2aecd7ccd8e5567bd5f0a]

INTEGRATION: CWS chart17 (1.1.2); FILE ADDED 2007/10/23 15:02:35 bm 1.1.2.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:32:10 bm 1.1.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [41e5b8aa92a2e95a2f59a4aac93cf0b81f1995b1]

INTEGRATION: CWS chart17 (1.3.186); FILE MERGED 2007/10/23 15:02:35 bm 1.3.186.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:08 bm 1.3.186.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [f8262fa03edc68731abc6b4aa833fae0e5ed21fa]

INTEGRATION: CWS chart17 (1.3.4); FILE MERGED 2007/10/12 12:35:08 bm 1.3.4.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [ef20bdaad7bb0af709394c8dc8ab6fc3d976195b]

INTEGRATION: CWS chart17 (1.5.186); FILE MERGED 2007/10/23 15:02:35 bm 1.5.186.2: #i82891# improve rendering of regression curves using XRegressionCurveCalculator::getCurveValues() 2007/10/12 12:35:08 bm 1.5.186.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [aae464f58ce30db04ae6111ff123231dcc3ee718]

INTEGRATION: CWS chart17 (1.11.2); FILE MERGED 2007/11/05 14:16:22 iha 1.11.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [17a49fb2c285710e787069a8a107dd1dfb0b8c9c]

INTEGRATION: CWS chart17 (1.7.54); FILE MERGED 2007/11/05 14:14:29 iha 1.7.54.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [ad4b87c43c8bf077fe513877482b3155eb62ac0e]

INTEGRATION: CWS chart17 (1.5.66); FILE MERGED 2007/10/12 12:35:08 bm 1.5.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [53cbf475030eccbc930c119c68c528b25d8564ed]

INTEGRATION: CWS chart17 (1.4.4); FILE MERGED 2007/11/07 13:13:50 bm 1.4.4.1: #i7998# equation


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [b28300aa246f50bb9ed5e10d68996cae6a6f6fe8]

INTEGRATION: CWS chart17 (1.3.32); FILE MERGED 2007/10/12 12:35:08 bm 1.3.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [748912f464e194a8e1e0b42734192cdb46589f3c]

INTEGRATION: CWS chart17 (1.25.32); FILE MERGED 2007/10/12 12:35:08 bm 1.25.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [2e3578e4f366c5c0c50391edfe4005d134fd1ce7]

INTEGRATION: CWS chart17 (1.4.32); FILE MERGED 2007/11/05 16:39:25 iha 1.4.32.3: enable to delete data points via delete key 2007/10/25 12:51:05 bm 1.4.32.2: #i7998# reset trendline equation position when doing new arrangement 2007/10/12 12:35:08 bm 1.4.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [9f5025cbf345a1cd6ae1e031c3ac3faadca4c02f]

INTEGRATION: CWS chart17 (1.28.32); FILE MERGED 2007/11/05 14:33:34 iha 1.28.32.3: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:54:16 bm 1.28.32.2: RESYNC: (1.28-1.29); FILE MERGED 2007/10/12 12:35:08 bm 1.28.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [e2c271408a5abc22b53c8c22eae724b1deae47ca]

INTEGRATION: CWS chart17 (1.12.32); FILE MERGED 2007/10/12 15:06:24 bm 1.12.32.2: #i7998# compile problem on Linux 2007/10/12 12:35:07 bm 1.12.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [a3e2f894532e4a06b1af3ca71e1a56abe4ea376e]

INTEGRATION: CWS chart17 (1.8.32); FILE MERGED 2007/10/12 12:35:07 bm 1.8.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [0fce184b391e4ee1cec6727adee8b59545176d1d]

INTEGRATION: CWS chart17 (1.24.4); FILE MERGED 2007/10/12 12:35:07 bm 1.24.4.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [d6c73f07d9a5ee7c8ac7d8a8322805686c6b10d6]

INTEGRATION: CWS chart17 (1.7.66); FILE MERGED 2007/10/12 12:35:07 bm 1.7.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [9c3982f5c3e50ec9df3950f42a45c48e5517780f]

INTEGRATION: CWS chart17 (1.17.32); FILE MERGED 2007/10/12 12:35:07 bm 1.17.32.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [e2db5ab251f695d40275e59e0db62724f3be6366]

INTEGRATION: CWS chart17 (1.4.66); FILE MERGED 2007/11/05 14:32:47 iha 1.4.66.4: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels 2007/10/30 13:54:34 bm 1.4.66.3: RESYNC: (1.4-1.5); FILE MERGED 2007/10/26 08:23:29 bm 1.4.66.2: #i10000# sfx item cleanup as preparation for resync 2007/10/12 12:35:07 bm 1.4.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [9f21d6abdd7d0fa395b5c50b10a82aa5e441b731]

INTEGRATION: CWS chart17 (1.1.2); FILE ADDED 2007/10/12 12:31:51 bm 1.1.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [7eeed221d4c75aa73dd806a9fa1a90d99024b097]

INTEGRATION: CWS chart17 (1.1.2); FILE ADDED 2007/10/12 12:31:41 bm 1.1.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [67d558b32fec87e1c64e64a4ad211c85cd3899a9]

INTEGRATION: CWS chart17 (1.12.2); FILE MERGED 2007/11/05 14:32:06 iha 1.12.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [3752d605823c90819a1e3637fc7acb2b003e2ff4]

INTEGRATION: CWS chart17 (1.17.2); FILE MERGED 2007/11/05 14:31:22 iha 1.17.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [54cb8a81aa9e700ee82bbf2a7234ebc27df5d5be]

INTEGRATION: CWS chart17 (1.1.2); FILE ADDED 2007/10/12 12:31:17 bm 1.1.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [1c7c3f941fe23956e8b8e06b2fa6138d9c89e1fd]

INTEGRATION: CWS chart17 (1.1.2); FILE ADDED 2007/10/12 12:31:08 bm 1.1.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [c12b8b9a416d9e069e03e95b579b0a1a3c970367]

INTEGRATION: CWS chart17 (1.4.2); FILE MERGED 2007/11/05 14:30:46 iha 1.4.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [5359c1b7d9bce61e6c6a3c8d4704a33ba770464c]

INTEGRATION: CWS chart17 (1.11.2); FILE MERGED 2007/11/05 14:30:16 iha 1.11.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [5a1b85f3a31b6c8ad795952cce7f3c50340b1498]

INTEGRATION: CWS chart17 (1.2.2); FILE MERGED 2007/11/05 14:39:07 iha 1.2.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [a87ae86d9304d0eb35e3f8b8209800d8dc29702e]

INTEGRATION: CWS chart17 (1.2.2); FILE MERGED 2007/11/05 14:39:30 iha 1.2.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [879bffe15b7ed1b4af111d9e06207d41d6dd7e92]

INTEGRATION: CWS chart17 (1.7.2); FILE MERGED 2007/11/05 14:38:23 iha 1.7.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [d1d538634b1339c801b8e54776226844f1c8cf57]

INTEGRATION: CWS chart17 (1.3.2); FILE MERGED 2007/11/05 14:37:09 iha 1.3.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [6a22a503e9a2446857539cc2bfd9a39295e0feb6]

INTEGRATION: CWS chart17 (1.3.2); FILE MERGED 2007/11/05 14:36:41 iha 1.3.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [3d5b5cb7ad26c96c40b0133adc04e07e6aeb09da]

INTEGRATION: CWS chart17 (1.3.2); FILE MERGED 2007/11/05 14:36:16 iha 1.3.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [9dec54ce39588c2dbb96ec40415c072ace6a36a9]

INTEGRATION: CWS chart17 (1.14.2); FILE MERGED 2007/10/30 13:54:28 bm 1.14.2.2: RESYNC: (1.14-1.15); FILE MERGED 2007/10/12 12:35:07 bm 1.14.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [123dc09dae9bc29beb359d68b7e851e9267e6446]

INTEGRATION: CWS chart17 (1.3.2); FILE MERGED 2007/11/05 14:35:03 iha 1.3.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [b0892965960d9350dbf8bfd26952e0af15739031]

INTEGRATION: CWS chart17 (1.18.2); FILE MERGED 2007/10/30 13:54:22 bm 1.18.2.2: RESYNC: (1.18-1.19); FILE MERGED 2007/10/12 12:35:07 bm 1.18.2.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [bb3cbdd4945e8b8eb5713f7682436a9cc97fc3dc]

INTEGRATION: CWS chart17 (1.6.2); FILE MERGED 2007/11/05 14:35:37 iha 1.6.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [5bd8e4138ea3e8f1cbb7d5716072b521ad256e41]

INTEGRATION: CWS chart17 (1.7.44); FILE MERGED 2007/10/30 13:54:31 bm 1.7.44.3: RESYNC: (1.7-1.8); FILE MERGED 2007/10/25 15:00:24 bm 1.7.44.2: #i10000# merged in changes from chart14 to avoid resync conflicts 2007/10/12 12:35:07 bm 1.7.44.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [e97b236b659ea8cbb8a7e8328d6895f00c795457]

INTEGRATION: CWS chart17 (1.2.66); FILE MERGED 2007/10/30 13:54:19 bm 1.2.66.2: RESYNC: (1.2-1.3); FILE MERGED 2007/10/12 12:35:07 bm 1.2.66.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [165676203eb5cc64ac68afbb6bb3e8d40a074e05]

INTEGRATION: CWS chart17 (1.5.26); FILE MERGED 2007/10/30 13:54:25 bm 1.5.26.2: RESYNC: (1.5-1.6); FILE MERGED 2007/10/12 12:35:07 bm 1.5.26.1: #i7998# equations for regression curves


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [1e951936f58ac12bc83540b3d7d52e484c3acf97]

INTEGRATION: CWS chart17 (1.12.2); FILE MERGED 2007/11/05 14:00:21 iha 1.12.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels


2007-11-23  Ivo Hinkelmann  <ihi@openoffice.org>  [4d686051a44eb70e77a8a9089f15cc88bd1e5081]

INTEGRATION: CWS chart17 (1.3.4); FILE MERGED 2007/10/12 12:35:06 bm 1.3.4.1: #i7998# equations for regression curves


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [a76b99645b9a745ef0a888fd3d06794a73a7ded9]

INTEGRATION: CWS sheetzoom (1.59.176); FILE MERGED 2007/11/12 13:44:24 nn 1.59.176.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [4de10f59941a4a4ac0b6cd5968bde2faa17ed576]

INTEGRATION: CWS sheetzoom (1.68.110); FILE MERGED 2007/11/12 13:44:24 nn 1.68.110.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [e216f7ad97efb245fb5278a953b3966134d44b2c]

INTEGRATION: CWS sheetzoom (1.35.50); FILE MERGED 2007/11/12 13:44:24 nn 1.35.50.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [94bcd02a5fa12eb39d76475b08de3f01d60272a4]

INTEGRATION: CWS sheetzoom (1.21.176); FILE MERGED 2007/11/12 13:44:24 nn 1.21.176.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [fa2dfdeabffc3a619acb2ac92edf68a804778a1e]

INTEGRATION: CWS sheetzoom (1.61.26); FILE MERGED 2007/11/12 13:44:24 nn 1.61.26.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [efc20a824ea02918dc06247dc2e8386f68b8e719]

INTEGRATION: CWS sheetzoom (1.33.96); FILE MERGED 2007/11/12 13:44:24 nn 1.33.96.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [9df1beeb6aaa143d863c62c01e5ef6088ab243fa]

INTEGRATION: CWS sheetzoom (1.32.112); FILE MERGED 2007/11/12 13:44:24 nn 1.32.112.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [8db46430858c50df1d38dc730c14debed56614ea]

INTEGRATION: CWS sheetzoom (1.65.116); FILE MERGED 2007/11/12 13:44:23 nn 1.65.116.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [d6015a26cacd55d0fb77040497667b26c1cedfc8]

INTEGRATION: CWS sheetzoom (1.18.176); FILE MERGED 2007/11/12 13:44:23 nn 1.18.176.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [30fbd860c1003eb8df9c3c431f314b59d59f0099]

INTEGRATION: CWS sheetzoom (1.20.206); FILE MERGED 2007/11/12 13:44:23 nn 1.20.206.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [70466d4963abdd2fc8df21da807548b12a70cf52]

INTEGRATION: CWS sheetzoom (1.8.206); FILE MERGED 2007/11/12 13:44:23 nn 1.8.206.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [525b0d2e1b7a14e37acb967f67e406f44755ad68]

INTEGRATION: CWS sheetzoom (1.25.10); FILE MERGED 2007/11/12 13:44:23 nn 1.25.10.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [cd4036b2b630b0a134df009ba1858127234ce2d4]

INTEGRATION: CWS sheetzoom (1.8.574); FILE MERGED 2007/11/12 13:44:23 nn 1.8.574.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [e640cbb6294001daccc1d2f8cc6df08df473ae1c]

INTEGRATION: CWS sheetzoom (1.54.168); FILE MERGED 2007/11/12 13:44:22 nn 1.54.168.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [909046349727bfcca78c9eac9f8276e70bb8846f]

INTEGRATION: CWS sheetzoom (1.9.196); FILE MERGED 2007/11/12 13:44:22 nn 1.9.196.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [98a1bced907d3ffe635b123c07a06138c69e4d22]

INTEGRATION: CWS sheetzoom (1.55.48); FILE MERGED 2007/11/12 13:44:22 nn 1.55.48.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [587f3aa31d309b798fa70c07631a59051f08165a]

INTEGRATION: CWS sheetzoom (1.7.446); FILE MERGED 2007/11/12 13:44:22 nn 1.7.446.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [dc5aa398b99e1a9d25f63fbcf2d1bb9333774ea8]

INTEGRATION: CWS sheetzoom (1.5.574); FILE MERGED 2007/11/12 13:44:22 nn 1.5.574.1: #i24372# allow separate zoom per sheet


2007-11-21  Ivo Hinkelmann  <ihi@openoffice.org>  [f0073dbe1e728ed8054d73f7620e3e0aa404f209]

INTEGRATION: CWS dba24c (1.3.684); FILE MERGED 2007/10/23 12:04:19 fs 1.3.684.1: Form Design toolbar should have an icon to toggle the design mode


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [79cf697bc86830e041891078330f1c8e9d8f7d6b]

INTEGRATION: CWS datapilotsort (1.83.12); FILE MERGED 2007/10/01 09:36:00 nn 1.83.12.3: RESYNC: (1.83-1.85); FILE MERGED 2007/09/26 16:49:16 nn 1.83.12.2: #i32307# manual sorting: several items 2007/09/19 16:57:50 nn 1.83.12.1: #i32307# DataPilot manual sorting


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [aa40b9c048a10d6377331173d7bd082cdd878f80]

INTEGRATION: CWS datapilotsort (1.13.160); FILE MERGED 2007/09/26 16:49:16 nn 1.13.160.2: #i32307# manual sorting: several items 2007/09/19 16:57:50 nn 1.13.160.1: #i32307# DataPilot manual sorting


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [8d0ad985a27b66ec18ad5c805dbdea6a21746f0e]

INTEGRATION: CWS datapilotsort (1.46.130); FILE MERGED 2007/09/26 17:51:04 nn 1.46.130.1: #i32307# DataPilot manual sorting via copy & paste


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [344e89ab589839c3a5044fda3f7e1ab9355093db]

INTEGRATION: CWS datapilotsort (1.19.160); FILE MERGED 2007/09/28 12:01:54 nn 1.19.160.1: #i32307# DataPilot manual sorting via API


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [90cc4e93d513ce9085c9097102c17233e696daee]

INTEGRATION: CWS datapilotsort (1.7.120); FILE MERGED 2007/09/19 16:57:50 nn 1.7.120.1: #i32307# DataPilot manual sorting


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [dfde647228732f1cbe45dbe1e015e1844097df97]

INTEGRATION: CWS datapilotsort (1.26.66); FILE MERGED 2007/09/19 16:57:49 nn 1.26.66.1: #i32307# DataPilot manual sorting


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [6a1381e9b75c80d09b094b82ca2200b053521de9]

INTEGRATION: CWS datapilotsort (1.19.150); FILE MERGED 2007/10/01 09:26:01 nn 1.19.150.3: RESYNC: (1.19-1.20); FILE MERGED 2007/09/28 16:05:13 nn 1.19.150.2: #i32307# default sorting is ascending by name 2007/09/19 16:57:48 nn 1.19.150.1: #i32307# DataPilot manual sorting


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [2ace9fb64b337ab97ea599e8c83a059a8236d8b1]

INTEGRATION: CWS datapilotsort (1.11.160); FILE MERGED 2007/09/28 12:01:54 nn 1.11.160.2: #i32307# DataPilot manual sorting via API 2007/09/19 16:57:48 nn 1.11.160.1: #i32307# DataPilot manual sorting


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [515de4d831590c2fe2fcd4b8824c14906eeb3acc]

INTEGRATION: CWS datapilotsort (1.8.174); FILE MERGED 2007/09/19 16:57:48 nn 1.8.174.1: #i32307# DataPilot manual sorting


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [9a1532fcb64726947ac525383718417d8e23fda3]

INTEGRATION: CWS datapilotsort (1.9.174); FILE MERGED 2007/09/28 12:01:54 nn 1.9.174.2: #i32307# DataPilot manual sorting via API 2007/09/19 16:57:48 nn 1.9.174.1: #i32307# DataPilot manual sorting


2007-11-20  Ivo Hinkelmann  <ihi@openoffice.org>  [5c7d7a5c91983831924be08cd3ad739c581bca99]

INTEGRATION: CWS beppec56pdflinks (1.62.100); FILE MERGED 2007/08/10 14:10:43 beppec56 1.62.100.1: Issue: i56629 Submitted by: beppec56 Reviewed by: beppec56 PDF relative hyperlinks


2007-11-19  Ivo Hinkelmann  <ihi@openoffice.org>  [aac5bc3acb9fa0bdfe1ee43da35980132a942827]

INTEGRATION: CWS fwk74 (1.41.74); FILE MERGED 2007/09/07 12:21:32 cd 1.41.74.1: #i74437# Don't use obsolete old font height toolbox controller


2007-11-13  Rüdiger Timm  <rt@openoffice.org>  [fd5733860ae0cfd5b5477f428b27cf6aa0783066]

INTEGRATION: CWS sb82 (1.14.60); FILE MERGED 2007/11/07 14:02:00 sb 1.14.60.1: #i83412# Merged in 1.14.14.1.


2007-11-13  Rüdiger Timm  <rt@openoffice.org>  [c29dfd326199b87d99e91c5d7af9657dee912f5f]

INTEGRATION: CWS sb82 (1.12.68); FILE MERGED 2007/11/07 14:11:45 sb 1.12.68.1: #i83412# obsolete #pragma optimize(q,off) // p-code off


2007-11-13  Rüdiger Timm  <rt@openoffice.org>  [24e875e074c0d8bbf5483042a9dd1cbc4c2ebd47]

INTEGRATION: CWS sb82 (1.9.66); FILE MERGED 2007/11/07 14:11:45 sb 1.9.66.1: #i83412# obsolete #pragma optimize(q,off) // p-code off


2007-11-13  Rüdiger Timm  <rt@openoffice.org>  [23e06a182ba61a9dcb5ca3852268895dca0137bf]

INTEGRATION: CWS sb82 (1.30.18); FILE MERGED 2007/11/07 14:11:45 sb 1.30.18.1: #i83412# obsolete #pragma optimize(q,off) // p-code off


2007-11-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [16daf2d8903b1b55611b8c32f8646b6988a41775]

INTEGRATION: CWS os2port02 (1.23.4); FILE MERGED 2007/10/29 14:28:55 ydario 1.23.4.3: Windows nt4 build requires backslash. Issue number: 81904 Submitted by: ydario Reviewed by: ydario 2007/10/08 14:27:16 obr 1.23.4.2: RESYNC: (1.23-1.24); FILE MERGED 2007/10/05 13:31:45 ydario 1.23.4.1: Use $(EMQ) for makefile.mk


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [7f4ee36eb7bfc949f3d0b7b42f1fffd2ec884e6a]

INTEGRATION: CWS dr59_SRC680 (1.37.6); FILE MERGED 2007/10/16 08:51:01 tbe 1.37.6.1: #i82290# Calc - empty first sheet in workbook does not allow printing from preview


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [5f78dcad22f270bc9f48758ef5de2f22a217f627]

INTEGRATION: CWS dr59_SRC680 (1.23.160); FILE MERGED 2007/10/12 12:03:10 nn 1.23.160.1: #i81647# test if change track exists in UpdateSelectionHdl


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [68db0350fbe7c41361d9657138db12f869a3497d]

INTEGRATION: CWS dr59_SRC680 (1.17.160); FILE MERGED 2007/10/12 11:42:01 nn 1.17.160.1: #i82429# use right WhichID for SvxWritingModeItem


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [04592c9cae8bfdbb76929dcc2699534e27ab0003]

INTEGRATION: CWS dr59_SRC680 (1.13.96); FILE MERGED 2007/10/15 12:52:13 dr 1.13.96.1: #i81974# - remove macros from drawing objects, patch by npower


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [88566b454ff236c93f65b6fa5124726e991c38b9]

INTEGRATION: CWS dr59_SRC680 (1.89.100); FILE MERGED 2007/10/15 12:21:26 dr 1.89.100.1: #i82184# cast result of XclImpStream::GetRecLeft() to 32 bits


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [a3ac67cdd0bdda3f1f929efff538d8943481da2e]

INTEGRATION: CWS dr59_SRC680 (1.50.10); FILE MERGED 2007/10/12 13:27:52 nn 1.50.10.1: #i82487# don't try to write to empty string's BufferAccess


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [0633019eb72feb33672861d6e292c1a52ab0fa09]

INTEGRATION: CWS dr59_SRC680 (1.8.350); FILE MERGED 2007/10/23 13:37:00 er 1.8.350.1: #i80954# possible heap corruption


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [79b80d1de70f73ab27d1fc6e6b2f8aa910e064be]

INTEGRATION: CWS celltrans02 (1.1.2); FILE ADDED 2007/09/06 02:57:32 kohei 1.1.2.4: finished the code generation script. 2007/09/06 00:07:31 kohei 1.1.2.3: routes output to the output file & added default input/output files. 2007/09/05 23:57:44 kohei 1.1.2.2: now the script parses the source text file correctly. 2007/09/05 21:22:21 kohei 1.1.2.1: initial commit for auto-generating cell keyword code.


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [ea8ecbeb62eb39905b110670b33157ef8d5fb6ba]

INTEGRATION: CWS celltrans02 (1.1.2); FILE ADDED 2007/10/03 20:14:35 kohei 1.1.2.4: added missing hungarian keywords. 2007/10/02 15:36:17 kohei 1.1.2.3: fixed one Hungarian localized keyword for FILENAME. 2007/09/06 02:57:32 kohei 1.1.2.2: finished the code generation script. 2007/09/05 21:22:21 kohei 1.1.2.1: initial commit for auto-generating cell keyword code.


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [7d5c816e5a7ed2af89a7f078eba5f8cbc2fd4fa7]

INTEGRATION: CWS celltrans02 (1.27.48); FILE MERGED 2007/09/06 16:23:30 kohei 1.27.48.2: use transliteration object to upcase the strings, instead of character classification object. 2007/09/06 03:02:22 kohei 1.27.48.1: added Hungarian keywords & made changes so that the keywords are stored in unicode instead of in ascii.


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [a51b552d83bba0d1ce81cc0842ff6ca02204c023]

INTEGRATION: CWS celltrans02 (1.50.42); FILE MERGED 2007/09/06 16:23:30 kohei 1.50.42.2: use transliteration object to upcase the strings, instead of character classification object. 2007/09/06 03:02:22 kohei 1.50.42.1: added Hungarian keywords & made changes so that the keywords are stored in unicode instead of in ascii.


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [b8c367d195f7110d8239d610d023f88d957a5f0a]

INTEGRATION: CWS celltrans02 (1.1.2); FILE ADDED 2007/10/03 20:15:32 kohei 1.1.2.3: added missing hungarian keywords. 2007/10/02 15:37:39 kohei 1.1.2.2: fixed one Hungarian localized keyword for FILENAME. 2007/09/06 03:02:22 kohei 1.1.2.1: added Hungarian keywords & made changes so that the keywords are stored in unicode instead of in ascii.


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [cfba4553fd662def2e425ce41367d3d0a69b8ca6]

INTEGRATION: CWS celltrans02 (1.2.50); FILE MERGED 2007/09/06 17:50:33 kohei 1.2.50.5: minor tweak in the in-line comment. 2007/09/06 16:36:52 kohei 1.2.50.4: Added more in-line comment about the keyword file. 2007/09/06 16:23:30 kohei 1.2.50.3: use transliteration object to upcase the strings, instead of character classification object. 2007/09/06 03:19:23 kohei 1.2.50.2: added mutex guard to protect statically instantiated variables. 2007/09/06 03:02:22 kohei 1.2.50.1: added Hungarian keywords & made changes so that the keywords are stored in unicode instead of in ascii.


2007-11-01  Jens-Heiner Rechtien  <hr@openoffice.org>  [88939b09c8b0b27f2aecbdc4adf3681ca267622b]

INTEGRATION: CWS celltrans02 (1.2.50); FILE MERGED 2007/09/06 16:23:30 kohei 1.2.50.1: use transliteration object to upcase the strings, instead of character classification object.


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [718f1413a398de5fc15a9fa73c5bd8582ac5368b]

INTEGRATION: CWS so3deadcorpses (1.1.1474); FILE MERGED 2007/09/10 10:03:37 fs 1.1.1474.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [9f8dfc9cbeb27a37cd26172c20258bc2f163015e]

INTEGRATION: CWS so3deadcorpses (1.4.1482); FILE MERGED 2007/09/10 10:03:37 fs 1.4.1482.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [8d9584f1f770dc7189bb7b61f04fb86752bdb346]

INTEGRATION: CWS so3deadcorpses (1.2.660); FILE MERGED 2007/09/10 10:03:36 fs 1.2.660.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [d71f416ada286dbc2e192c4fa416303bbb2c7a84]

INTEGRATION: CWS so3deadcorpses (1.4.1482); FILE MERGED 2007/09/10 10:03:36 fs 1.4.1482.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [9cce6049bb66bae52c534e42ae64280bb1949f2e]

INTEGRATION: CWS so3deadcorpses (1.2.1080); FILE MERGED 2007/09/10 10:03:36 fs 1.2.1080.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [cc285ddb1524decc876c32fc4ef72727760f3a8c]

INTEGRATION: CWS so3deadcorpses (1.1.1448); FILE MERGED 2007/09/10 10:03:36 fs 1.1.1448.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [2bc4e645d5082667490f58ce302c609d094c5d7b]

INTEGRATION: CWS so3deadcorpses (1.1.1452); FILE MERGED 2007/09/10 10:03:35 fs 1.1.1452.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [ea8b1ba6b1aa6ff319b27463a28b1070c2adeeef]

INTEGRATION: CWS so3deadcorpses (1.4.1482); FILE MERGED 2007/09/10 10:03:35 fs 1.4.1482.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [3ee3181eef0acb59f10abb7396660fb14608b786]

INTEGRATION: CWS so3deadcorpses (1.3.1346); FILE MERGED 2007/09/10 10:03:35 fs 1.3.1346.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [903e865256a243f040b3e7af389c23bc8227e4cc]

INTEGRATION: CWS so3deadcorpses (1.2.1052); FILE MERGED 2007/09/10 10:03:35 fs 1.2.1052.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [3ed8bd25bcce873193f39d2b963da66b02f5a98b]

INTEGRATION: CWS so3deadcorpses (1.3.1482); FILE MERGED 2007/09/10 10:03:35 fs 1.3.1482.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [31d78db6b19ac615957f9adb726360526733313a]

INTEGRATION: CWS so3deadcorpses (1.2.1030); FILE MERGED 2007/09/10 10:03:35 fs 1.2.1030.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [ec44c13943849add926cb7263ce9f4c1974c3dba]

INTEGRATION: CWS so3deadcorpses (1.2.660); FILE MERGED 2007/09/10 10:03:35 fs 1.2.660.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [12d0d92351345df2f224f0789ca92afa2908bc42]

INTEGRATION: CWS so3deadcorpses (1.3.1482); FILE MERGED 2007/09/10 10:03:34 fs 1.3.1482.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [b3200ae5954e4f263607086b0e90e88eab012841]

INTEGRATION: CWS so3deadcorpses (1.2.1482); FILE MERGED 2007/09/10 10:03:34 fs 1.2.1482.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [5e7604245563bed421c96f4269348f7c1252eb34]

INTEGRATION: CWS so3deadcorpses (1.1.1452); FILE MERGED 2007/09/10 10:03:34 fs 1.1.1452.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [be9d233768e78fbef3a0793b72b213d42a420824]

INTEGRATION: CWS so3deadcorpses (1.2.736); FILE MERGED 2007/09/10 10:03:34 fs 1.2.736.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [04177ecca5ad53a32ad3946048bed26b141a4a37]

INTEGRATION: CWS so3deadcorpses (1.36.78); FILE MERGED 2007/09/09 18:47:59 fs 1.36.78.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [1dcd0109b5c09b2399fb8508e462300c150cf987]

INTEGRATION: CWS so3deadcorpses (1.14.144); FILE MERGED 2007/09/09 18:47:58 fs 1.14.144.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [ef5965b72b1211917efc1de50b7a3b891e09b14c]

INTEGRATION: CWS so3deadcorpses (1.16.78); FILE MERGED 2007/09/09 18:47:58 fs 1.16.78.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [4bfd218a8b5f182c316216280b85fac323c9a2fc]

INTEGRATION: CWS so3deadcorpses (1.24.136); FILE MERGED 2007/09/09 18:47:58 fs 1.24.136.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [3dd787fd57f0b049e80950387de2042770d49436]

INTEGRATION: CWS so3deadcorpses (1.5.244); FILE MERGED 2007/09/09 18:47:58 fs 1.5.244.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [c53e85a9593a256558029291c955761db8788ab5]

INTEGRATION: CWS so3deadcorpses (1.14.78); FILE MERGED 2007/09/09 18:47:58 fs 1.14.78.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [7d5ab9c0b4682de2eb0ab1299f0da99910dda3fa]

INTEGRATION: CWS so3deadcorpses (1.92.50); FILE MERGED 2007/09/09 18:47:58 fs 1.92.50.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [d8d5416ad6c47487c49d3ce70576336ef2f417da]

INTEGRATION: CWS so3deadcorpses (1.11.144); FILE MERGED 2007/09/09 18:47:58 fs 1.11.144.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [80892460ca4d5bac774e0dc6b7234a8ece841e34]

INTEGRATION: CWS so3deadcorpses (1.20.82); FILE MERGED 2007/09/09 18:47:57 fs 1.20.82.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [f3d19fba7164b3e393f52f316e61ef5e62eac75f]

INTEGRATION: CWS so3deadcorpses (1.21.230); FILE MERGED 2007/09/09 18:47:57 fs 1.21.230.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [0b2f2d8f150396c299353df4c5b9e49a65217e93]

INTEGRATION: CWS so3deadcorpses (1.9.542); FILE MERGED 2007/09/10 10:02:52 fs 1.9.542.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [ef6f191b42927e72c1cff4f2e03f38d273abd6c6]

INTEGRATION: CWS so3deadcorpses (1.15.144); FILE MERGED 2007/09/09 18:47:57 fs 1.15.144.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [ae77612dd747c462885ddc46b55061b077a768bf]

INTEGRATION: CWS so3deadcorpses (1.51.78); FILE MERGED 2007/09/09 18:47:57 fs 1.51.78.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [53f70b4a706249fb51b54aa7e2612c2f79a1eb09]

INTEGRATION: CWS so3deadcorpses (1.39.136); FILE MERGED 2007/09/09 18:47:57 fs 1.39.136.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [c7882ace710423cf15f18e0f3da95c6fa32368d9]

INTEGRATION: CWS so3deadcorpses (1.28.50); FILE MERGED 2007/09/09 18:47:57 fs 1.28.50.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [b1418b111a8048209c9025c74ea03507bfed9d2e]

INTEGRATION: CWS so3deadcorpses (1.17.82); FILE MERGED 2007/09/09 18:47:56 fs 1.17.82.1: #i81309# so3 is dead


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [22aa705d7ee2e5e26ac0f2872793bb59ff4f9eef]

INTEGRATION: CWS unoapi1 (1.6.474); FILE MERGED 2007/10/11 14:44:33 cn 1.6.474.1: #i79479# update lists


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [f82e537e3ebd1726a5eb1e45ff0eb7434c411478]

INTEGRATION: CWS unoapi1 (1.2.26); FILE MERGED 2007/09/28 12:42:08 cn 1.2.26.1: #i79479# update list


2007-10-23  Vladimir Glazounov  <vg@openoffice.org>  [e7c6079229d3f018b5e4391dcfeee105f1bc13b0]

INTEGRATION: CWS unoapi1 (1.1.2); FILE ADDED 2007/09/28 12:41:41 cn 1.1.2.1: #i79479# new exlusion list


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [97be5384b7fffb7bfcd958008c75461e0f2c6ee8]

INTEGRATION: CWS chart14 (1.26.12); FILE MERGED 2007/08/31 14:17:36 bm 1.26.12.2: #i26795# implement feature: display bars on different axes side-by-side 2007/08/10 22:32:48 iha 1.26.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [738e3e329b7467174baba4e3598f82759aaf4469]

INTEGRATION: CWS chart14 (1.38.12); FILE MERGED 2007/10/01 15:06:43 iha 1.38.12.3: #i37792# #i79194# numberformat for data label - select automatic default in dialog 2007/09/24 12:02:09 bm 1.38.12.2: RESYNC: (1.38-1.39); FILE MERGED 2007/08/31 14:17:36 bm 1.38.12.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [2e4d903866cfd4742cf063b48f888a4c58eb613f]

INTEGRATION: CWS chart14 (1.3.12); FILE MERGED 2007/09/28 10:15:03 iha 1.3.12.7: #i82051# Allow to display each part of a data label in a separate line 2007/09/24 12:02:03 bm 1.3.12.6: RESYNC: (1.3-1.4); FILE MERGED 2007/09/20 08:25:00 iha 1.3.12.5: #i24614# enable reverse scales 2007/09/20 07:14:28 iha 1.3.12.4: #i43489# allow to display value and percentage at the same time 2007/09/14 12:46:51 bm 1.3.12.3: #i7998# new ids for regression curve options 2007/08/31 14:17:36 bm 1.3.12.2: #i26795# implement feature: display bars on different axes side-by-side 2007/08/10 22:32:03 iha 1.3.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [9e8077bba4c58e9de4119e5ea52b7394e196c24b]

INTEGRATION: CWS chart14 (1.18.46); FILE MERGED 2007/10/11 09:22:07 iha 1.18.46.3: #i26795# display bars on different axes next to each other - overlap&gapwidth 2007/09/24 12:01:56 bm 1.18.46.2: RESYNC: (1.18-1.19); FILE MERGED 2007/09/20 07:16:38 iha 1.18.46.1: #i43489# allow to display value and percentage at the same time


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [8974e6c2779ee7795984b9b2850713f10cf4823c]

INTEGRATION: CWS chart14 (1.16.34); FILE MERGED 2007/08/31 14:17:36 bm 1.16.34.2: #i26795# implement feature: display bars on different axes side-by-side 2007/08/10 22:31:19 iha 1.16.34.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [828f624e54e089ec9a05b654658ecbc15888c3df]

INTEGRATION: CWS chart14 (1.37.6); FILE MERGED 2007/10/11 09:22:38 iha 1.37.6.4: #i26795# display bars on different axes next to each other - overlap&gapwidth 2007/09/28 10:18:24 iha 1.37.6.3: #i82051# Allow to display each part of a data label in a separate line 2007/09/20 07:16:56 iha 1.37.6.2: #i43489# allow to display value and percentage at the same time 2007/08/10 22:30:27 iha 1.37.6.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [1bf6fec4c8ad07adcf48e0fbdd630b31dd72e8c5]

INTEGRATION: CWS chart14 (1.6.46); FILE MERGED 2007/10/11 09:23:32 iha 1.6.46.1: #i26795# display bars on different axes next to each other - overlap&gapwidth


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [e2d1aaaae83d3d63c10119a360a4c4fbee613709]

INTEGRATION: CWS chart14 (1.19.12); FILE MERGED 2007/10/11 09:23:11 iha 1.19.12.4: #i26795# display bars on different axes next to each other - overlap&gapwidth 2007/10/02 08:49:25 iha 1.19.12.3: #i26795# remove superfluous comment 2007/09/24 12:01:17 bm 1.19.12.2: RESYNC: (1.19-1.20); FILE MERGED 2007/08/31 14:17:36 bm 1.19.12.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [87fe644f14ffdb6e9278b842c2297e67954b7b0d]

INTEGRATION: CWS chart14 (1.5.12); FILE MERGED 2007/08/30 16:49:45 bm 1.5.12.1: #i80177# add mean value line value and standard deviation in the status bar in analogy to the regression curve formula


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [8ca86813177cf7331929333ad66f437a0a217cb8]

INTEGRATION: CWS chart14 (1.14.12); FILE MERGED 2007/09/24 11:58:14 bm 1.14.12.2: RESYNC: (1.14-1.15); FILE MERGED 2007/08/31 14:17:36 bm 1.14.12.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [ed42f542ec149608dda7799d37ae6c8c8512e9bd]

INTEGRATION: CWS chart14 (1.15.12); FILE MERGED 2007/09/24 11:54:22 bm 1.15.12.2: RESYNC: (1.15-1.16); FILE MERGED 2007/09/11 16:54:11 bm 1.15.12.1: #i10000# add CharacterProperties to supported services


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [19bfba6b19ba674eaad74c237f68b567d5cedc26]

INTEGRATION: CWS chart14 (1.16.12); FILE MERGED 2007/09/24 11:53:47 bm 1.16.12.2: RESYNC: (1.16-1.18); FILE MERGED 2007/08/31 14:17:35 bm 1.16.12.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [80a7d2edd9e6d05ecdffeb06d5199f8532e84a3a]

INTEGRATION: CWS chart14 (1.6.48); FILE MERGED 2007/09/28 10:22:20 iha 1.6.48.2: #i82051# Allow to display each part of a data label in a separate line 2007/08/10 22:29:32 iha 1.6.48.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [edfbbf61adeff52df85ad127b3cdef9441d9fb8d]

INTEGRATION: CWS chart14 (1.13.26); FILE MERGED 2007/09/28 10:22:54 iha 1.13.26.3: #i82051# Allow to display each part of a data label in a separate line 2007/09/24 11:53:19 bm 1.13.26.2: RESYNC: (1.13-1.14); FILE MERGED 2007/08/10 22:29:06 iha 1.13.26.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [8bc486996358132b648ab3947e59b1b45f31dbc5]

INTEGRATION: CWS chart14 (1.4.48); FILE MERGED 2007/10/01 15:06:10 iha 1.4.48.1: #i37792# #i79194# numberformat for data label - select automatic default in dialog


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [6a392b534cf92e7de6cbd868f547fa476ae01183]

INTEGRATION: CWS chart14 (1.2.48); FILE MERGED 2007/09/28 10:12:02 iha 1.2.48.7: #i82051# Allow to display each part of a data label in a separate line 2007/09/20 08:24:03 iha 1.2.48.6: #i24614# enable reverse scales 2007/09/20 07:13:29 iha 1.2.48.5: #i43489# allow to display value and percentage at the same time 2007/09/14 13:07:37 iha 1.2.48.4: removed number comments as they will becsome wrong soon 2007/09/14 12:47:14 bm 1.2.48.3: #i7998# new ids for regression curve options 2007/08/31 14:17:35 bm 1.2.48.2: #i26795# implement feature: display bars on different axes side-by-side 2007/08/10 22:27:51 iha 1.2.48.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [eab888f493aff36bf06236dba8adfcf08f07e3c3]

INTEGRATION: CWS chart14 (1.3.26); FILE MERGED 2007/09/28 10:26:00 iha 1.3.26.4: #i82051# Allow to display each part of a data label in a separate line 2007/08/30 16:58:46 bm 1.3.26.3: #i37792#, #i80177# same id for new ressources 2007/08/30 16:49:45 bm 1.3.26.2: #i80177# add mean value line value and standard deviation in the status bar in analogy to the regression curve formula 2007/08/10 22:04:27 iha 1.3.26.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [244168cd86a6f37912d4ee1ab828abe106601c00]

INTEGRATION: CWS chart14 (1.9.26); FILE MERGED 2007/09/24 11:51:08 bm 1.9.26.2: RESYNC: (1.9-1.10); FILE MERGED 2007/08/31 14:17:35 bm 1.9.26.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [01b6565bca9e5ba14c0770fc9647dfad9c9f5f7a]

INTEGRATION: CWS chart14 (1.28.12); FILE MERGED 2007/10/01 15:14:17 iha 1.28.12.1: #i37792# #i79194# numberformat for data label - select automatic default in dialog


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [f852cc93d70eb98028dec6733eea4fdee0515866]

INTEGRATION: CWS chart14 (1.3.12); FILE MERGED 2007/10/11 09:24:29 iha 1.3.12.3: #i26795# display bars on different axes next to each other - overlap&gapwidth 2007/09/05 18:06:50 bm 1.3.12.2: #i26795# warnings removed 2007/08/31 14:17:35 bm 1.3.12.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [36ab9811b6b7c3e8c89bcfafbb12b40448eb8991]

INTEGRATION: CWS chart14 (1.4.48); FILE MERGED 2007/09/14 12:47:54 bm 1.4.48.3: #i7998# new ids for regression curve options 2007/08/31 14:17:35 bm 1.4.48.2: #i26795# implement feature: display bars on different axes side-by-side 2007/08/10 22:26:06 iha 1.4.48.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [408590ed1a159008a93d4ec0d3faf8275b7c89e3]

INTEGRATION: CWS chart14 (1.11.2); FILE MERGED 2007/10/11 13:29:16 iha 1.11.2.3: #i82383#, #i82424# number format for data labels - preselect automatic number format - handle mixed states 2007/10/11 10:07:49 iha 1.11.2.2: #i82383#, #i82424# number format for data labels - preselect automatic number format 2007/10/01 15:13:37 iha 1.11.2.1: #i37792# #i79194# numberformat for data label - select automatic default in dialog


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [dbdff91ff496f231270fbd517c9600133576ab2c]

INTEGRATION: CWS chart14 (1.11.12); FILE MERGED 2007/08/10 22:24:58 iha 1.11.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [62f4b71458ff155bf28e75139ad862cfa7c0779d]

INTEGRATION: CWS chart14 (1.16.6); FILE MERGED 2007/10/11 13:28:56 iha 1.16.6.6: #i82383#, #i82424# number format for data labels - preselect automatic number format - handle mixed states 2007/10/01 15:12:46 iha 1.16.6.5: #i37792# #i79194# numberformat for data label - select automatic default in dialog 2007/09/28 10:24:51 iha 1.16.6.4: #i82051# Allow to display each part of a data label in a separate line 2007/09/20 07:20:07 iha 1.16.6.3: #i43489# allow to display value and percentage at the same time 2007/09/10 09:07:33 bm 1.16.6.2: #i37792# initialize nKey (warning on MacOSX) 2007/08/10 22:23:24 iha 1.16.6.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [d627e6973aed99ff2bd17dbb52b89f34cbcc5230]

INTEGRATION: CWS chart14 (1.11.6); FILE MERGED 2007/09/24 11:50:10 bm 1.11.6.3: RESYNC: (1.11-1.12); FILE MERGED 2007/09/20 11:21:29 iha 1.11.6.2: #i24614# enable reverse scales 2007/09/20 08:39:33 iha 1.11.6.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [8eb79403acb05d260ebe6b8ba13d4f1bbce45620]

INTEGRATION: CWS chart14 (1.7.12); FILE MERGED 2007/09/20 11:10:13 iha 1.7.12.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [4f1d6edd560c8920decae8fe0f14221ab2fafb48]

INTEGRATION: CWS chart14 (1.4.12); FILE MERGED 2007/08/10 22:21:24 iha 1.4.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [5cf9911f597d55a1c2398b1edcd7e112fbd42e55]

INTEGRATION: CWS chart14 (1.2.48); FILE MERGED 2007/08/31 14:17:35 bm 1.2.48.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [3d719d54d8bd88ed779907c32858d327827c95a8]

INTEGRATION: CWS chart14 (1.3.48); FILE MERGED 2007/10/18 08:08:31 iha 1.3.48.2: #82051# HelpId for label separator listbox 2007/08/10 22:20:09 iha 1.3.48.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [23d9a656ae419eb1fa5b612e856a9b1b2aa96da0]

INTEGRATION: CWS chart14 (1.10.12); FILE MERGED 2007/10/01 15:10:39 iha 1.10.12.1: #i37792# #i79194# numberformat for data label - select automatic default in dialog


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [ac6d69a99b02674f7ea544bc768458ad9b3524f2]

INTEGRATION: CWS chart14 (1.6.48); FILE MERGED 2007/09/28 12:09:35 bm 1.6.48.4: #i26795# changed string due to spec 2007/09/27 10:00:24 bm 1.6.48.3: #i26795# add mnemonic for CB_BARS_SIDE_BY_SIDE 2007/09/26 09:15:00 bm 1.6.48.2: #i26795# adapt semantics in UI: ! group bars -> side by side 2007/08/31 14:17:34 bm 1.6.48.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [3010df654fab905976424342412ee8a6d22b651d]

INTEGRATION: CWS chart14 (1.3.168); FILE MERGED 2007/09/26 09:15:00 bm 1.3.168.2: #i26795# adapt semantics in UI: ! group bars -> side by side 2007/08/31 14:17:34 bm 1.3.168.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [cb245e0c91fb65d8639c64665a380dfe0c687770]

INTEGRATION: CWS chart14 (1.8.12); FILE MERGED 2007/09/26 09:15:00 bm 1.8.12.2: #i26795# adapt semantics in UI: ! group bars -> side by side 2007/08/31 14:17:34 bm 1.8.12.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [5cc262382f684a785727e97a737e944f1857bb41]

INTEGRATION: CWS chart14 (1.7.48); FILE MERGED 2007/09/20 08:57:25 iha 1.7.48.2: corrected tabs to spaces 2007/09/20 08:45:05 iha 1.7.48.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [0a66f9a9f90d2454669eda17834c16d90310ae7f]

INTEGRATION: CWS chart14 (1.5.12); FILE MERGED 2007/09/20 11:18:50 iha 1.5.12.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [1ace282224cc9db3da91d6bf61c79538e0785e03]

INTEGRATION: CWS chart14 (1.9.12); FILE MERGED 2007/09/24 11:49:05 bm 1.9.12.2: RESYNC: (1.9-1.10); FILE MERGED 2007/09/20 11:21:00 iha 1.9.12.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [7b4e3eef3ccfcdd9c6d30f5dc04df08fd20ef9b9]

INTEGRATION: CWS chart14 (1.2.168); FILE MERGED 2007/09/20 07:35:33 iha 1.2.168.1: #i43489# allow to display value and percentage at the same time


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [7393268f1957da8b6141eab5b5c67f5c7e034d14]

INTEGRATION: CWS chart14 (1.1.2); FILE ADDED 2007/10/18 08:09:47 iha 1.1.2.2: #82051# HelpId for label separator listbox 2007/09/28 10:30:45 iha 1.1.2.1: #i82051# Allow to display each part of a data label in a separate line


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [05731659e2b170e1cac41dc2906e31d243ad54d8]

INTEGRATION: CWS chart14 (1.1.2); FILE ADDED 2007/09/28 10:30:32 iha 1.1.2.1: #i82051# Allow to display each part of a data label in a separate line


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [a69f400a9cc7084b420590ed3eb90b949cc36f3e]

INTEGRATION: CWS chart14 (1.1.2); FILE ADDED 2007/09/28 10:30:19 iha 1.1.2.1: #i82051# Allow to display each part of a data label in a separate line


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [c05540fd9cbea10bb172e38b8e0f9bc42f66b486]

INTEGRATION: CWS chart14 (1.6.12); FILE MERGED 2007/10/18 09:03:00 iha 1.6.12.3: #i43489# correct HelpId for percentage checkbox 2007/09/20 07:24:22 iha 1.6.12.2: #i43489# allow to display value and percentage at the same time 2007/08/10 22:08:40 iha 1.6.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [9f860d12125ea1d023d143c35bfd1339c62861ee]

INTEGRATION: CWS chart14 (1.2.12); FILE MERGED 2007/09/20 07:23:36 iha 1.2.12.2: #i43489# allow to display value and percentage at the same time 2007/08/10 22:09:52 iha 1.2.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [c0c29663e42b7536a976a28a77090c1fc412ef52]

INTEGRATION: CWS chart14 (1.2.12); FILE MERGED 2007/10/11 13:30:35 iha 1.2.12.5: #i82383#, #i82424# number format for data labels - preselect automatic number format - handle mixed states 2007/09/28 10:32:13 iha 1.2.12.4: #i82051# Allow to display each part of a data label in a separate line 2007/09/20 07:27:28 iha 1.2.12.3: #i43489# allow to display value and percentage at the same time 2007/09/20 07:26:18 iha 1.2.12.2: #i43489# allow to display value and percentage at the same time 2007/08/10 22:10:30 iha 1.2.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [3ea6890d7bad2dff1795b4e9fe49e8058bc7bd73]

INTEGRATION: CWS chart14 (1.2.12); FILE MERGED 2007/10/11 13:30:43 iha 1.2.12.4: #i82383#, #i82424# number format for data labels - preselect automatic number format - handle mixed states 2007/09/28 10:33:50 iha 1.2.12.3: #i82051# Allow to display each part of a data label in a separate line 2007/09/20 07:34:00 iha 1.2.12.2: #i43489# allow to display value and percentage at the same time 2007/08/10 22:11:21 iha 1.2.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [a46eaf623ff1b8d8022f0e97980a895446f92746]

INTEGRATION: CWS chart14 (1.12.12); FILE MERGED 2007/09/28 10:31:19 iha 1.12.12.3: #i82051# Allow to display each part of a data label in a separate line 2007/09/24 11:48:34 bm 1.12.12.2: RESYNC: (1.12-1.14); FILE MERGED 2007/08/10 22:03:04 iha 1.12.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [c2569afb5c85e62f6d9fe47b93a0fa57eb17183d]

INTEGRATION: CWS chart14 (1.2.48); FILE MERGED 2007/10/18 08:09:06 iha 1.2.48.2: #82051# HelpId for label separator listbox 2007/08/10 22:15:59 iha 1.2.48.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [cf813f9f3a5af2d01c21f5f3604e595c6296921f]

INTEGRATION: CWS chart14 (1.17.12); FILE MERGED 2007/09/24 11:48:28 bm 1.17.12.3: RESYNC: (1.17-1.18); FILE MERGED 2007/09/20 11:11:36 iha 1.17.12.2: #i24614# enable reverse scales 2007/08/10 22:15:11 iha 1.17.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [15e1aab7ee7746e6f90803a807c1a4b42cb037ef]

INTEGRATION: CWS chart14 (1.1.4); FILE ADDED 2007/08/10 22:00:52 iha 1.1.4.2: #i37792# number format for data labels 2007/06/28 16:14:27 iha 1.1.4.1: file dlg_NumberFormat.hxx was added on branch cws_src680_chart14 on 2007-08-10 22:00:52 +0000


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [6151128b68d8ee42ea24854db74eabac7c7a1241]

INTEGRATION: CWS chart14 (1.1.4); FILE ADDED 2007/08/30 16:57:24 bm 1.1.4.3: #i37792# warning (shadowed variable) removed 2007/08/10 22:01:22 iha 1.1.4.2: #i37792# number format for data labels 2007/06/28 16:14:40 iha 1.1.4.1: file dlg_NumberFormat.cxx was added on branch cws_src680_chart14 on 2007-08-10 22:01:22 +0000


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [95976294492959fe00681b249197877c3cd4a10c]

INTEGRATION: CWS chart14 (1.5.48); FILE MERGED 2007/09/28 10:34:21 iha 1.5.48.3: #i82051# Allow to display each part of a data label in a separate line 2007/09/20 07:35:09 iha 1.5.48.2: #i43489# allow to display value and percentage at the same time 2007/08/10 22:12:45 iha 1.5.48.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [966eedfc1b31021ff01f2c2b9d752f7b0101d017]

INTEGRATION: CWS chart14 (1.4.12); FILE MERGED 2007/08/10 22:12:19 iha 1.4.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [63b8169e61cdc55febc65efb556db860c3436eb5]

INTEGRATION: CWS chart14 (1.8.12); FILE MERGED 2007/08/10 22:13:37 iha 1.8.12.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [67e6134ace3cb24d5f4c9d2f0469fc91bb9c4839]

INTEGRATION: CWS chart14 (1.4.12); FILE MERGED 2007/09/26 09:15:00 bm 1.4.12.3: #i26795# adapt semantics in UI: ! group bars -> side by side 2007/09/20 08:42:37 iha 1.4.12.2: #i24614# enable reverse scales 2007/08/31 14:17:34 bm 1.4.12.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [73d97f645e36b16a71790c182b9660e188e7812f]

INTEGRATION: CWS chart14 (1.2.48); FILE MERGED 2007/09/28 10:29:23 iha 1.2.48.1: #i82051# Allow to display each part of a data label in a separate line


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [9bc3baf93af267bb0266eadb407b9d2c4510f4d5]

INTEGRATION: CWS chart14 (1.7.26); FILE MERGED 2007/08/30 16:49:45 bm 1.7.26.2: #i80177# add mean value line value and standard deviation in the status bar in analogy to the regression curve formula 2007/08/10 22:05:18 iha 1.7.26.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [429abdd8677b74eba3f7bffbfe9e2e9eab09d37c]

INTEGRATION: CWS chart14 (1.2.48); FILE MERGED 2007/09/28 10:28:34 iha 1.2.48.1: #i82051# Allow to display each part of a data label in a separate line


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [2c7dd6c5dbd5eb56ce360215c9fccd7e6e2ce06f]

INTEGRATION: CWS chart14 (1.5.6); FILE MERGED 2007/08/30 16:49:45 bm 1.5.6.1: #i80177# add mean value line value and standard deviation in the status bar in analogy to the regression curve formula


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [210f8fb26d62736dbf9a1f2741fc84ca8a73c856]

INTEGRATION: CWS chart14 (1.2.48); FILE MERGED 2007/09/20 11:22:12 iha 1.2.48.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [734d2eaea9d6d746dadb17363e68f4180cd291bb]

INTEGRATION: CWS chart14 (1.3.6); FILE MERGED 2007/09/24 11:46:32 bm 1.3.6.2: RESYNC: (1.3-1.4); FILE MERGED 2007/09/20 11:32:11 iha 1.3.6.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [04f6ae8761cff1a09b5ceaaecd839e5a8651da9c]

INTEGRATION: CWS chart14 (1.9.4); FILE MERGED 2007/09/24 11:45:50 bm 1.9.4.2: RESYNC: (1.9-1.10); FILE MERGED 2007/08/31 14:17:34 bm 1.9.4.1: #i26795# implement feature: display bars on different axes side-by-side


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [7ca74c2c43eead7122b10e46adb33f1a39f27c2d]

INTEGRATION: CWS chart14 (1.9.4); FILE MERGED 2007/09/28 10:23:54 iha 1.9.4.3: #i82051# Allow to display each part of a data label in a separate line 2007/09/24 11:45:35 bm 1.9.4.2: RESYNC: (1.9-1.10); FILE MERGED 2007/08/10 22:34:22 iha 1.9.4.1: #i37792# number format for data labels


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [99e2897f55a19eb40b66f669392310f2c308921e]

INTEGRATION: CWS chart14 (1.6.12); FILE MERGED 2007/09/20 11:32:46 iha 1.6.12.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [192d4fa8a7054d1f9a0140e021bd210641adce6f]

INTEGRATION: CWS chart14 (1.9.52); FILE MERGED 2007/09/20 11:37:45 iha 1.9.52.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [052269d3a43652f771a6cf9a518276dfd15150c0]

INTEGRATION: CWS chart14 (1.14.52); FILE MERGED 2007/09/24 11:34:55 bm 1.14.52.2: RESYNC: (1.14-1.15); FILE MERGED 2007/09/20 11:38:29 iha 1.14.52.1: #i24614# enable reverse scales


2007-10-22  Vladimir Glazounov  <vg@openoffice.org>  [306060c363b2d5fa407b947b9ef8c57272fb7e41]

INTEGRATION: CWS chart14 (1.3.52); FILE MERGED 2007/09/24 11:34:40 bm 1.3.52.2: RESYNC: (1.3-1.4); FILE MERGED 2007/09/20 11:38:51 iha 1.3.52.1: #i24614# enable reverse scales


2007-10-15  Ivo Hinkelmann  <ihi@openoffice.org>  [869bc051fae42fd08e8ded801ee49dbbfdca5b8b]

INTEGRATION: CWS chart18_SRC680 (1.10.46); FILE MERGED 2007/09/26 16:29:42 iha 1.10.46.1: #i81947# missing points in logarithmic xy plot


2007-10-15  Ivo Hinkelmann  <ihi@openoffice.org>  [ce438ef17a55fc76f910aa16a24e8b2a1483bc2d]

INTEGRATION: CWS chart18_SRC680 (1.48.10.1.10); FILE MERGED 2007/09/26 18:18:07 iha 1.48.10.1.10.2: #i81947# missing points in logarithmic xy plot 2007/09/26 16:31:44 iha 1.48.10.1.10.1: #i81947# missing points in logarithmic xy plot


2007-10-15  Ivo Hinkelmann  <ihi@openoffice.org>  [49d24150fad44f183410ea56788ae0e82de07d76]

INTEGRATION: CWS chart18_SRC680 (1.11.52); FILE MERGED 2007/10/09 14:30:39 iha 1.11.52.2: #i81902# log axis min value not shown if < 1 2007/10/09 12:35:08 iha 1.11.52.1: #i81902# log axis min value not shown if < 1


2007-10-15  Ivo Hinkelmann  <ihi@openoffice.org>  [ac1980216210d8a0092ed389666fc093b0d0c0fe]

INTEGRATION: CWS chart18_SRC680 (1.8.34); FILE MERGED 2007/09/27 11:16:26 iha 1.8.34.1: #i82006# don't loop


2007-10-15  Ivo Hinkelmann  <ihi@openoffice.org>  [9ece4aacff43b634e5c445b88098dcf1f6be405e]

INTEGRATION: CWS chart16_SRC680 (1.2.58); FILE MERGED 2007/09/12 13:20:13 iha 1.2.58.1: #81390# Smooth Lines dialog is too small to set all properties


2007-10-15  Ivo Hinkelmann  <ihi@openoffice.org>  [b28ff72e5c76cc97e165eb44a4ecfb7a4ff0e422]

INTEGRATION: CWS chart16_SRC680 (1.5.18); FILE MERGED 2007/09/12 13:19:48 iha 1.5.18.1: #81390# Smooth Lines dialog is too small to set all properties


2007-10-15  Ivo Hinkelmann  <ihi@openoffice.org>  [af93c3507212af0a0ef3ff2f3408caa4391a1850]

INTEGRATION: CWS chart16_SRC680 (1.9.2.1.6); FILE MERGED 2007/09/12 14:58:41 iha 1.9.2.1.6.1: #80431# Auto-resized fonts of axes and data labels are exported in the original size


2007-10-15  Ivo Hinkelmann  <ihi@openoffice.org>  [a97933a92801338cfceab0fe05bf897e569f91fa]

INTEGRATION: CWS chart16_SRC680 (1.6.24); FILE MERGED 2007/09/12 14:59:52 iha 1.6.24.1: #80431# Auto-resized fonts of axes and data labels are exported in the original size


2007-10-15  Vladimir Glazounov  <vg@openoffice.org>  [3c875435bbb5b1a5a9d999566518abc6e1f42888]

INTEGRATION: CWS sb71 (1.7.186); FILE MERGED 2007/10/12 06:42:59 sb 1.7.186.1: Make osl_loadModuleRelative work for absolute urls, too.


2007-10-15  Vladimir Glazounov  <vg@openoffice.org>  [a85938dbc0e4459a1e8d0915c37afc4841f24d12]

INTEGRATION: CWS sb71 (1.51.86); FILE MERGED 2007/10/12 06:42:59 sb 1.51.86.1: Make osl_loadModuleRelative work for absolute urls, too.


2007-10-09  Kurt Zenker  <kz@openoffice.org>  [d20a0e0711523f0b3588543901ac200990660a6d]

INTEGRATION: CWS basmgr03 (1.41.76); FILE MERGED 2007/09/06 06:25:12 fs 1.41.76.2: RESYNC: (1.41-1.42); FILE MERGED 2007/08/01 09:47:02 fs 1.41.76.1: #i73331# vbauno lib needs to be linked against toolkit now


2007-10-09  Kurt Zenker  <kz@openoffice.org>  [f8f517b17eff2c020cc4aab29f811ea7ff02cd8b]

INTEGRATION: CWS basmgr03 (1.2.88); FILE MERGED 2007/09/06 06:23:51 fs 1.2.88.2: RESYNC: (1.2-1.3); FILE MERGED 2007/08/01 09:46:25 fs 1.2.88.1: #i73331# SfxObjectShell::WorkingDocument is an XModel now / preparation of #i76129#: some refactoring


2007-10-09  Kurt Zenker  <kz@openoffice.org>  [654a2d5fb9349a791e8fb2afdfe2dc79164c1f92]

INTEGRATION: CWS calcdatainput (1.57.24); FILE MERGED 2007/08/22 14:14:43 tbe 1.57.24.1: #i15546# Enter-Key behaves not as expected


2007-10-02  Kurt Zenker  <kz@openoffice.org>  [0bcb2cf19a421f7fb9118f9e0a134fe2d00aa253]

INTEGRATION: CWS calcformula (1.37.116); FILE MERGED 2007/08/20 15:05:43 tbe 1.37.116.1: #i20496# Enhanced formula input


2007-10-02  Kurt Zenker  <kz@openoffice.org>  [04cfe8b985724ed4c27eba7bdd856b5232b94816]

INTEGRATION: CWS calcformula (1.21.48); FILE MERGED 2007/08/20 15:04:52 tbe 1.21.48.1: #i20496# Enhanced formula input


2007-10-02  Kurt Zenker  <kz@openoffice.org>  [476eeb0e7dbd3c54ea2790180d17c773e7962fcb]

INTEGRATION: CWS calcformula (1.73.44); FILE MERGED 2007/08/20 15:04:23 tbe 1.73.44.1: #i20496# Enhanced formula input


2007-10-02  Kurt Zenker  <kz@openoffice.org>  [8a07764e8ec97bb727b042bf127c8cedff644f39]

INTEGRATION: CWS calcformula (1.28.80); FILE MERGED 2007/09/25 15:02:02 tbe 1.28.80.2: #i81939# Enhanced formula input does not work for references 2007/08/20 15:03:53 tbe 1.28.80.1: #i20496# Enhanced formula input


2007-10-02  Kurt Zenker  <kz@openoffice.org>  [4f129358d5c685d525bd5de3da3c38b72d887904]

INTEGRATION: CWS calcformula (1.70.44); FILE MERGED 2007/08/20 10:28:06 er 1.70.44.1: #i20496# mode to not close brackets automatically


2007-10-02  Kurt Zenker  <kz@openoffice.org>  [5e9ad281d602c470429e813786550f426ab7febd]

INTEGRATION: CWS calcformula (1.9.80); FILE MERGED 2007/08/20 15:03:15 tbe 1.9.80.1: #i20496# Enhanced formula input


2007-10-02  Kurt Zenker  <kz@openoffice.org>  [95cbc9036ad89e21cbf7181e829f0c2b4f36b6ca]

INTEGRATION: CWS calcformula (1.32.24); FILE MERGED 2007/08/20 10:28:06 er 1.32.24.1: #i20496# mode to not close brackets automatically


2007-10-02  Kurt Zenker  <kz@openoffice.org>  [2d846f4aa9b4a18bfa7230fb681c04d153bad2f3]

INTEGRATION: CWS calcformula (1.16.54); FILE MERGED 2007/08/20 11:01:02 er 1.16.54.1: #i20496# merge join from cws xmlfilter02, except renaming of SC_OPCOCE_JUMP


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [16c8bfd8647e3f67dcf73794a5ff8c28e5072542]

INTEGRATION: CWS calc44 (1.34.66); FILE MERGED 2007/09/13 12:55:19 nn 1.34.66.1: #i27725# finish cell input before protecting sheet


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc2cc88ce1068047ae50715b025faea569fe2c30]

INTEGRATION: CWS calc44 (1.52.66); FILE MERGED 2007/09/07 16:48:18 nn 1.52.66.1: #i77477# header/footer text direction depends on locale setting


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [5917aed3c733d8ee45770258f33840c8eb39f636]

INTEGRATION: CWS calc44 (1.37.62); FILE MERGED 2007/08/31 16:40:48 nn 1.37.62.1: #i7269# Handling of PageUp/PageDown (patch from tqfa)


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [8ae5d791e2ce98af245f0df2028772dd85b0cab2]

INTEGRATION: CWS calc44 (1.83.14); FILE MERGED 2007/09/06 13:33:17 nn 1.83.14.3: #i17486# return after starting edit mode with double click (patch from kohei) 2007/09/05 16:53:11 nn 1.83.14.2: #i7560# allow scrolling during formula input 2007/09/05 15:43:08 nn 1.83.14.1: #i81298# ClickExtern: don't delete the filter box in select handler


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [c696184b12a91945382f22fef91f24fd77980832]

INTEGRATION: CWS calc44 (1.43.124); FILE MERGED 2007/09/07 12:07:15 nn 1.43.124.1: #i78010# disable insert columns for whole rows and vice versa


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [9e51a1a9a8830291040ed916f5d8f9acea8acb1f]

INTEGRATION: CWS calc44 (1.18.132); FILE MERGED 2007/09/07 16:48:18 nn 1.18.132.1: #i77477# header/footer text direction depends on locale setting


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [13f913f11c78da62390f18bd0789eddd42de7a53]

INTEGRATION: CWS calc44 (1.9.132); FILE MERGED 2007/09/06 14:45:48 nn 1.9.132.1: #i78592# for RTL re-swap left and right area (left must remain left, patch from ayaniger)


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [dee732c0b7080ffefdaebdeb43269c170de90d31]

INTEGRATION: CWS calc44 (1.12.164); FILE MERGED 2007/09/07 16:48:17 nn 1.12.164.1: #i77477# header/footer text direction depends on locale setting


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [3366793ed95aa061f84156393efd4dfff775b86f]

INTEGRATION: CWS calc44 (1.17.164); FILE MERGED 2007/09/05 16:22:36 nn 1.17.164.1: #i23299# set whole rows dirty when applying filter


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [93d610be5ee400735d36c4365a350ee7c2923a4a]

INTEGRATION: CWS calc44 (1.14.134); FILE MERGED 2007/09/06 17:32:29 nn 1.14.134.1: #i77440# OpenOffice++ patches for sc


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [0abe6ca2c02cba032ee3d831a199caef783fa6cc]

INTEGRATION: CWS calc44 (1.19.130); FILE MERGED 2007/09/06 17:32:28 nn 1.19.130.1: #i77440# OpenOffice++ patches for sc


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [d66d8da485543c48110bab263fdc3c1ca970ee97]

INTEGRATION: CWS calc44 (1.12.162); FILE MERGED 2007/09/17 16:48:26 nn 1.12.162.2: RESYNC: (1.12-1.13); FILE MERGED 2007/09/06 17:32:28 nn 1.12.162.1: #i77440# OpenOffice++ patches for sc


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [130bd6c39bea456566a397843e5b9edb6e1a2e63]

INTEGRATION: CWS calc44 (1.22.40); FILE MERGED 2007/09/18 10:21:41 nn 1.22.40.2: #i81336# #b6582756# make compilable on Solaris 2007/09/07 13:24:39 er 1.22.40.1: #i81336# #b6582756# new ScLookupCache, caching strategy for VLOOKUP and MATCH


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [ed771166ab10e212dea809ce440fe880020133dd]

INTEGRATION: CWS calc44 (1.1.2); FILE ADDED 2007/09/18 10:21:40 nn 1.1.2.2: #i81336# #b6582756# make compilable on Solaris 2007/09/07 13:24:39 er 1.1.2.1: #i81336# #b6582756# new ScLookupCache, caching strategy for VLOOKUP and MATCH


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [f2be146ad1f612dd2f0f2c2da47d421729a4991b]

INTEGRATION: CWS calc44 (1.50.38); FILE MERGED 2007/09/10 11:43:13 nn 1.50.38.2: #i81416# initialize variable to avoid warning on some gcc versions 2007/09/07 13:24:39 er 1.50.38.1: #i81336# #b6582756# new ScLookupCache, caching strategy for VLOOKUP and MATCH


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [3e9392752423950ed173b3d7106642f4366fde25]

INTEGRATION: CWS calc44 (1.30.64); FILE MERGED 2007/09/24 09:14:38 nn 1.30.64.2: #i81336# #b6582756# removed unnecessary class name (tinderbox error) 2007/09/07 13:24:39 er 1.30.64.1: #i81336# #b6582756# new ScLookupCache, caching strategy for VLOOKUP and MATCH


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [f367092d263267f2a709b1b212d29d3028d608ea]

INTEGRATION: CWS calc44 (1.5.70); FILE MERGED 2007/09/06 14:44:05 er 1.5.70.1: #i81332# #b6582756# bulk broadcast in DeleteArea


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [9cb77c64bd27e6421ba48bb858f6a0ea79dfb441]

INTEGRATION: CWS calc44 (1.37.162); FILE MERGED 2007/09/06 14:44:04 er 1.37.162.1: #i81332# #b6582756# bulk broadcast in DeleteArea


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [ba4a98d30334e4807a25dc9aa0ff2fc5c44750a3]

INTEGRATION: CWS calc44 (1.19.154); FILE MERGED 2007/09/06 17:32:28 nn 1.19.154.1: #i77440# OpenOffice++ patches for sc


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [6e10dcf43bfa1118f2f0fb6588a66c299bef9853]

INTEGRATION: CWS calc44 (1.79.62); FILE MERGED 2007/09/06 14:44:04 er 1.79.62.1: #i81332# #b6582756# bulk broadcast in DeleteArea


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [346c524fc91823bae2d69b591e774e2a3c5ecd9b]

INTEGRATION: CWS calc44 (1.66.40); FILE MERGED 2007/09/18 10:21:40 nn 1.66.40.3: #i81336# #b6582756# make compilable on Solaris 2007/09/10 10:36:09 nn 1.66.40.2: #i81336# #b6582756# make compilable on non-pro 2007/09/07 13:24:38 er 1.66.40.1: #i81336# #b6582756# new ScLookupCache, caching strategy for VLOOKUP and MATCH


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [23ac54e5a38622352e98eb0698a7c64b30756419]

INTEGRATION: CWS calc44 (1.22.164); FILE MERGED 2007/09/17 16:47:20 nn 1.22.164.2: RESYNC: (1.22-1.23); FILE MERGED 2007/08/31 14:49:00 nn 1.22.164.1: #i80302# TestInsertCol: correct test conditions (patch from maoyg)


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [3a02be23e0fdf497c376280963c9c385b30fdb5b]

INTEGRATION: CWS calc44 (1.8.70); FILE MERGED 2007/09/06 14:44:04 er 1.8.70.1: #i81332# #b6582756# bulk broadcast in DeleteArea


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [de4360efed51da92c1749f39fb3988d1fc6a8f97]

INTEGRATION: CWS calc44 (1.1.2); FILE ADDED 2007/09/07 13:24:38 er 1.1.2.1: #i81336# #b6582756# new ScLookupCache, caching strategy for VLOOKUP and MATCH


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [92513a5ea50656d41bd2968b690e0ad8151ee357]

INTEGRATION: CWS calc44 (1.102.38); FILE MERGED 2007/09/07 13:24:38 er 1.102.38.2: #i81336# #b6582756# new ScLookupCache, caching strategy for VLOOKUP and MATCH 2007/09/06 14:44:04 er 1.102.38.1: #i81332# #b6582756# bulk broadcast in DeleteArea


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [259183aca63375a2aa2bb29967342849ce2e5120]

INTEGRATION: CWS calc44 (1.2.454); FILE MERGED 2007/09/17 13:34:45 nn 1.2.454.1: #i81594# Remove duplicate hash code function


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [3e761341a8a456b2f556c8e9ca42f156bb242b93]

INTEGRATION: CWS calc44 (1.13.96); FILE MERGED 2007/09/07 13:24:38 er 1.13.96.1: #i81336# #b6582756# new ScLookupCache, caching strategy for VLOOKUP and MATCH


2007-09-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [2c0c4d5ffb4e1d3fbb42ebc1de449e9e897a7db6]

INTEGRATION: CWS calc44 (1.9.302); FILE MERGED 2007/09/17 13:34:44 nn 1.9.302.1: #i81594# Remove duplicate hash code function


2007-09-21  Vladimir Glazounov  <vg@openoffice.org>  [cf99422a39f66bf8ee3b5b562d51c8f7288717af]

INTEGRATION: CWS calcautofilter (1.82.30); FILE MERGED 2007/09/12 13:56:38 tbe 1.82.30.4: RESYNC: (1.82-1.83); FILE MERGED 2007/09/12 12:51:22 tbe 1.82.30.3: #i81508# Listbox for Category in Datapilot needs a separator due to changes in Autofilter strings 2007/08/10 14:09:49 tbe 1.82.30.2: #i27745 Basing autofiltering on the result set, not all rows. 2007/08/09 15:00:31 tbe 1.82.30.1: #i27745 Basing autofiltering on the result set, not all rows.


2007-09-21  Vladimir Glazounov  <vg@openoffice.org>  [61a4e0752a14d0b424eab17d731641f7a9f218a0]

INTEGRATION: CWS calcautofilter (1.87.28); FILE MERGED 2007/09/12 12:49:55 tbe 1.87.28.2: #i81508# Listbox for Category in Datapilot needs a separator due to changes in Autofilter strings 2007/08/10 14:07:58 tbe 1.87.28.1: #i27745 Basing autofiltering on the result set, not all rows.


2007-09-21  Vladimir Glazounov  <vg@openoffice.org>  [f669df361e7db6ef3ac7a6b12effd3f897c2fd2c]

INTEGRATION: CWS calcautofilter (1.25.26); FILE MERGED 2007/09/12 13:49:00 tbe 1.25.26.2: RESYNC: (1.25-1.26); FILE MERGED 2007/08/10 14:07:25 tbe 1.25.26.1: #i27745 Basing autofiltering on the result set, not all rows.


2007-09-21  Vladimir Glazounov  <vg@openoffice.org>  [de6b394326c42f9fb1733b773a0c38a5b757ede9]

INTEGRATION: CWS calcautofilter (1.28.120); FILE MERGED 2007/08/09 15:00:00 tbe 1.28.120.1: #i27745 Basing autofiltering on the result set, not all rows.


2007-09-21  Vladimir Glazounov  <vg@openoffice.org>  [d58ef6fd9bb7a84071062a235d53f1238225d7ca]

INTEGRATION: CWS calcautofilter (1.36.32); FILE MERGED 2007/08/13 09:37:29 tbe 1.36.32.2: RESYNC: (1.36-1.37); FILE MERGED 2007/08/09 14:59:20 tbe 1.36.32.1: #i27745 Basing autofiltering on the result set, not all rows.


2007-09-21  Vladimir Glazounov  <vg@openoffice.org>  [79a648f5f52029c84e52d88479255c8c94c58526]

INTEGRATION: CWS calcautofilter (1.31.144); FILE MERGED 2007/08/09 14:58:28 tbe 1.31.144.1: #i27745 Basing autofiltering on the result set, not all rows.


2007-09-21  Vladimir Glazounov  <vg@openoffice.org>  [151edc3c11a0f15ee2c5eb6521236fa16146844f]

INTEGRATION: CWS calcautofilter (1.54.28); FILE MERGED 2007/09/12 12:49:09 tbe 1.54.28.1: #i81508# Listbox for Category in Datapilot needs a separator due to changes in Autofilter strings


2007-09-21  Vladimir Glazounov  <vg@openoffice.org>  [c48e865dfbf85eb733d01a44d0ee643d06a7dd6d]

INTEGRATION: CWS calcautofilter (1.101.30); FILE MERGED 2007/08/13 09:37:12 tbe 1.101.30.2: RESYNC: (1.101-1.102); FILE MERGED 2007/08/09 14:58:02 tbe 1.101.30.1: #i27745 Basing autofiltering on the result set, not all rows.


2007-09-20  Vladimir Glazounov  <vg@openoffice.org>  [cd8a0f991b1bcbc5013ca1a221e57a685e567420]

INTEGRATION: CWS os2port01 (1.17.96); FILE MERGED 2007/09/05 08:46:35 obr 1.17.96.3: RESYNC: (1.20-1.22); FILE MERGED 2007/08/01 06:04:38 obr 1.17.96.2: RESYNC: (1.17-1.20); FILE MERGED 2007/01/21 16:38:02 ydario 1.17.96.1: Build system quote fix.


2007-09-20  Vladimir Glazounov  <vg@openoffice.org>  [3cd2116adf3a343ea94244e433895daffb602480]

INTEGRATION: CWS os2port01 (1.7.8); FILE MERGED 2007/08/01 05:35:46 obr 1.7.8.2: RESYNC: (1.7-1.12); FILE MERGED 2006/12/28 15:04:44 ydario 1.7.8.1: OS/2 initial import.


2007-09-20  Vladimir Glazounov  <vg@openoffice.org>  [042f97dbace10d158201c3256f463c1d54d44173]

INTEGRATION: CWS os2port01 (1.4.38); FILE MERGED 2007/08/10 13:52:18 obr 1.4.38.2: RESYNC: (1.4-1.5); FILE MERGED 2006/12/28 14:34:30 ydario 1.4.38.1: OS/2 initial import.


2007-09-20  Vladimir Glazounov  <vg@openoffice.org>  [72158fd786a13a6146263db3326ae3d832821618]

INTEGRATION: CWS os2port01 (1.14.30); FILE MERGED 2007/07/16 12:50:59 obr 1.14.30.2: RESYNC: (1.14-1.16); FILE MERGED 2006/12/28 15:04:51 ydario 1.14.30.1: OS/2 initial import.


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [1ecd7f047e967a2819ca4499d2435c1421bd63dd]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/08/10 16:35:29 iha 1.3.2.2: #i77362 additional shapes do not trigger an update - fix test edit mode problems 2007/07/31 20:52:08 iha 1.3.2.1: #i77362 additional shapes do not trigger an update


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [156c0e0f50602fb1958419c2c1846500a09e76ec]

INTEGRATION: CWS chart11 (1.38.2); FILE MERGED 2007/08/10 16:36:28 iha 1.38.2.2: #i77362 additional shapes do not trigger an update - fix text edit mode problems 2007/07/31 20:52:07 iha 1.38.2.1: #i77362 additional shapes do not trigger an update


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [1899c474bb963e4781f261bc3cfa95ebf6194998]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/07/31 12:37:01 bm 1.3.2.1: #i79024# use correct CTOR for brush item to get a transparent color as default


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [55edc606a6296bde21fee1f953aba87b1704f544]

INTEGRATION: CWS chart11 (1.18.38); FILE MERGED 2007/08/10 16:38:16 iha 1.18.38.1: remove superfluos include


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [bed2cf911bded2f7d452f3ff6c1138863da30b32]

INTEGRATION: CWS chart11 (1.10.38); FILE MERGED 2007/07/31 22:19:26 bm 1.10.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [2d0834ed6a2dfabb0af045a755f191ef8f67cf57]

INTEGRATION: CWS chart11 (1.8.26); FILE MERGED 2007/07/31 21:33:31 iha 1.8.26.1: avoid duplicate code - isLogarithmic


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [ea031a817600b4af5ecaa5b8c37d9d62900be774]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/08/15 16:02:47 bm 1.3.2.1: #i64495# fixed by weiz. Adapt the selection after rearranging data series and remember former selection in an undo-action


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [2906638e0f861e812d720619fa72ec0e8516f014]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/07/31 22:19:26 bm 1.3.2.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [c9c75c8259da21b2997272e45f6607d48e9d9ecc]

INTEGRATION: CWS chart11 (1.3.14); FILE MERGED 2007/08/03 13:21:05 bm 1.3.14.3: #i80084# oops, wrong id for default 2007/08/03 12:58:06 bm 1.3.14.2: #i80084# using template specialization instead of a different function name in PropertyHelper 2007/07/31 12:56:46 bm 1.3.14.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [244bd77dbdc104ac08ebb87e31620f267efda97c]

INTEGRATION: CWS chart11 (1.4.38); FILE MERGED 2007/07/31 22:19:26 bm 1.4.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [8d5e4fa2cdaca39a298d344fde5a8e227b147feb]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/08/23 12:38:16 bm 1.2.38.2: RESYNC: (1.2-1.3); FILE MERGED 2007/08/22 09:06:56 bm 1.2.38.1: #i67225# rename getAllAxis... to getAllAxes... (plural)


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [fa2f0f5cf9ed3126fa90e923da426065b005c330]

INTEGRATION: CWS chart11 (1.4.38); FILE MERGED 2007/08/24 08:27:25 bm 1.4.38.4: #i80084# define template specialization in cxx 2007/08/24 07:18:15 bm 1.4.38.3: #i80084# template spezialization needed 2007/08/03 12:57:35 bm 1.4.38.2: #i80084# using template specialization instead of a different function name 2007/07/31 12:56:46 bm 1.4.38.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [26673407c087fa3bc3877d63d226925740020c53]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/08/22 09:05:45 bm 1.3.2.2: #i67225# +createClassifiedIdentifierForAxis 2007/08/15 16:02:47 bm 1.3.2.1: #i64495# fixed by weiz. Adapt the selection after rearranging data series and remember former selection in an undo-action


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [df0b65f3be8fbe2df66c2405c23e0af88d6923b8]

INTEGRATION: CWS chart11 (1.5.38); FILE MERGED 2007/07/31 12:56:46 bm 1.5.38.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [7102dcd433b37d59fb941af6aa25cd5e9869cc47]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/09/06 09:19:41 bm 1.3.2.3: #i64495# oops, removed passing data to UndoElementWithData::applyToModel on error 2007/08/23 12:37:57 bm 1.3.2.2: RESYNC: (1.3-1.4); FILE MERGED 2007/08/15 16:02:47 bm 1.3.2.1: #i64495# fixed by weiz. Adapt the selection after rearranging data series and remember former selection in an undo-action


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [85a83ed833aadf86bfff5227227c17ef251f76dd]

INTEGRATION: CWS chart11 (1.6.2); FILE MERGED 2007/07/31 12:56:46 bm 1.6.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [8535815df1b735dd95d8c6c3bfd3421190d3fa17]

INTEGRATION: CWS chart11 (1.7.2); FILE MERGED 2007/07/31 12:56:46 bm 1.7.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [aa211422c582c07bcf0320181818aeb0bb38433a]

INTEGRATION: CWS chart11 (1.14.2); FILE MERGED 2007/08/17 16:30:21 bm 1.14.2.1: #i67225# do not include invisible objects in ObjectHierarchy for a11y and keyboard navigation


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [c49a32d94a503ec26b6ad3e2bc0e158751906ee4]

INTEGRATION: CWS chart11 (1.5.2); FILE MERGED 2007/08/23 12:37:28 bm 1.5.2.2: RESYNC: (1.5-1.6); FILE MERGED 2007/07/31 12:56:46 bm 1.5.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [4ae5bc6ee90a777b96426a1fdb07c27182ec8927]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/08/22 09:03:54 bm 1.2.38.2: #i67225# rename getAllAxis... to getAllAxes... (plural), add bOnlyVisible parameter to retrieve only axes with Show==true 2007/07/31 21:32:45 iha 1.2.38.1: avoid duplicate code - isLogarithmic


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [3f6dc38d41a1ae3f10d4757396abcb750d8c4bf6]

INTEGRATION: CWS chart11 (1.7.2); FILE MERGED 2007/08/23 12:37:21 bm 1.7.2.2: RESYNC: (1.7-1.8); FILE MERGED 2007/07/31 12:56:46 bm 1.7.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [60be2b178a46cbc8417382d0d480da5d5fd7632d]

INTEGRATION: CWS chart11 (1.10.2); FILE MERGED 2007/07/31 12:56:46 bm 1.10.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [cee7556b0d46230ba6f5c46696de2b35c6fefb69]

INTEGRATION: CWS chart11 (1.6.38); FILE MERGED 2007/07/31 12:56:46 bm 1.6.38.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [0913a5f4ff2f72979cedee94b109b9280d47e842]

INTEGRATION: CWS chart11 (1.11.2); FILE MERGED 2007/08/23 12:37:12 bm 1.11.2.2: RESYNC: (1.11-1.12); FILE MERGED 2007/07/31 12:56:46 bm 1.11.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [992e32e464f05fb39e779c931027dbbf3c37c0c1]

INTEGRATION: CWS chart11 (1.15.2); FILE MERGED 2007/07/31 12:56:45 bm 1.15.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [456ed2e5809077bda0654a49dfdb0723f4fc13ee]

INTEGRATION: CWS chart11 (1.9.38); FILE MERGED 2007/07/31 12:56:45 bm 1.9.38.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [f59ac81fcba5ff54816ee642c94c43e836d6568c]

INTEGRATION: CWS chart11 (1.8.38); FILE MERGED 2007/07/31 12:56:45 bm 1.8.38.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [e39f15a8f36b8392f929de8779b357a5d164a76d]

INTEGRATION: CWS chart11 (1.5.38); FILE MERGED 2007/07/31 12:56:45 bm 1.5.38.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [e5b0d3175e6a7d3576ca3caf88a14f8f5633bca4]

INTEGRATION: CWS chart11 (1.16.2); FILE MERGED 2007/08/22 09:01:48 bm 1.16.2.1: #i67225# rename getAllAxis... to getAllAxes... (plural)


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [76b629e40cb3b54100eb80b6c9a70c6ee30601cc]

INTEGRATION: CWS chart11 (1.4.38); FILE MERGED 2007/07/31 22:19:26 bm 1.4.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [40d32b20fb36127725840eda205a332ff347f8fc]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/07/31 12:56:45 bm 1.3.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [b73b660134e24685d7bb1651fbacf49980a0ff83]

INTEGRATION: CWS chart11 (1.9.2); FILE MERGED 2007/08/23 12:37:05 bm 1.9.2.2: RESYNC: (1.9-1.10); FILE MERGED 2007/07/31 12:56:45 bm 1.9.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [a96c6cefcff4aafc7de8d819ed7700b8336c6392]

INTEGRATION: CWS chart11 (1.8.2); FILE MERGED 2007/07/31 12:56:45 bm 1.8.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [422d0f33fafd8ae31c6ea7d6fe75b218c186acde]

INTEGRATION: CWS chart11 (1.3.38); FILE MERGED 2007/07/31 22:19:25 bm 1.3.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [29d350d8d2d96357fa192709aab420a675ba16e1]

INTEGRATION: CWS chart11 (1.7.2); FILE MERGED 2007/07/31 12:56:45 bm 1.7.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [c8805537fea0f757c475c7a8e88e620ca8a6eaab]

INTEGRATION: CWS chart11 (1.5.38); FILE MERGED 2007/07/31 22:19:25 bm 1.5.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [ee5e32a459639786cebb6dbe56c8047ac1fcdbc9]

INTEGRATION: CWS chart11 (1.11.2); FILE MERGED 2007/07/31 12:56:45 bm 1.11.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [d97da277bd3ad8d89f926e5c13ec688ce1b0c1d1]

INTEGRATION: CWS chart11 (1.6.38); FILE MERGED 2007/07/31 22:19:25 bm 1.6.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [54ea28f561fdf1dc1dbedc89361bffc946adebb0]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/07/31 22:19:25 bm 1.2.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [b2570057c780eccfff4ed785335ca2b3a24999e7]

INTEGRATION: CWS chart11 (1.4.2); FILE MERGED 2007/07/31 22:19:25 bm 1.4.2.2: #i79522# warnings on Solaris removed 2007/07/31 12:56:45 bm 1.4.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [2afe86c791613d4bf446e0082fa813207d7bb00f]

INTEGRATION: CWS chart11 (1.4.38); FILE MERGED 2007/07/31 22:19:25 bm 1.4.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [0d6a0a2e514d21e8332acf61512a09e8d395da93]

INTEGRATION: CWS chart11 (1.16.2); FILE MERGED 2007/08/23 12:36:57 bm 1.16.2.2: RESYNC: (1.16-1.17); FILE MERGED 2007/07/31 12:56:45 bm 1.16.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [7ce1c43173f86134d77d2cbdb13637d8421bcd7f]

INTEGRATION: CWS chart11 (1.4.38); FILE MERGED 2007/07/31 12:56:45 bm 1.4.38.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [68305481c7b851b5bb4ead6dd671632b77bc34fa]

INTEGRATION: CWS chart11 (1.7.2); FILE MERGED 2007/08/03 11:45:32 bm 1.7.2.1: #i80084# avoid usage of operator[] with enums as keys


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [113d36889d501c3993039240525c5475d7e4a9e1]

INTEGRATION: CWS chart11 (1.13.14); FILE MERGED 2007/08/15 15:26:06 bm 1.13.14.3: cppu-type of bool should be queried with getBooleanCppuType 2007/08/15 14:59:49 bm 1.13.14.2: cppu-type of bool should be queried with getBooleanCppuType 2007/07/31 12:56:45 bm 1.13.14.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [7cb1e723ec5c70adcf17c1e61ceba9b2560e4aa6]

INTEGRATION: CWS chart11 (1.12.2); FILE MERGED 2007/08/23 12:36:36 bm 1.12.2.2: RESYNC: (1.12-1.13); FILE MERGED 2007/07/31 22:19:25 bm 1.12.2.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [29c77de889d3416a0bac3c4fcb7108b2b8872daf]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/08/15 14:59:30 bm 1.3.2.2: cppu-type of bool should be queried with getBooleanCppuType 2007/07/31 12:56:45 bm 1.3.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [fc5a95d1de389ae18b4003bc111c87a05d7c7988]

INTEGRATION: CWS chart11 (1.6.38); FILE MERGED 2007/08/23 12:36:29 bm 1.6.38.2: RESYNC: (1.6-1.7); FILE MERGED 2007/07/31 22:19:25 bm 1.6.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [9481c52eeee7e8b9a0e5b6cb7e9f9f945a7e820f]

INTEGRATION: CWS chart11 (1.11.2); FILE MERGED 2007/08/23 12:36:21 bm 1.11.2.2: RESYNC: (1.11-1.12); FILE MERGED 2007/07/31 12:56:45 bm 1.11.2.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [3ea3b2f8ce4f74c8ec0aed085f9be431d58fee62]

INTEGRATION: CWS chart11 (1.10.38); FILE MERGED 2007/08/23 12:36:13 bm 1.10.38.2: RESYNC: (1.10-1.11); FILE MERGED 2007/07/31 22:19:25 bm 1.10.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [d82f1af448c2195ab31b4b5a2307aa874f44ccbd]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/08/15 16:02:47 bm 1.3.2.1: #i64495# fixed by weiz. Adapt the selection after rearranging data series and remember former selection in an undo-action


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [0019cfff6a19ee70930fc1261a59aa879ff98a11]

INTEGRATION: CWS chart11 (1.4.38); FILE MERGED 2007/08/24 08:27:37 bm 1.4.38.4: #i80084# define template specialization in cxx 2007/08/24 07:18:32 bm 1.4.38.3: #i80084# template spezialization needed 2007/08/03 12:57:48 bm 1.4.38.2: #i80084# using template specialization instead of a different function name 2007/07/31 12:56:44 bm 1.4.38.1: #i80084# avoid usage of map operator[] with enums as keys, simplify initialization of default property values


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [61e2aebbb577f5b628d4e24eb901e265a5803bc2]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/08/22 09:05:27 bm 1.2.38.2: #i67225# +createClassifiedIdentifierForAxis 2007/08/15 16:02:47 bm 1.2.38.1: #i64495# fixed by weiz. Adapt the selection after rearranging data series and remember former selection in an undo-action


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [e7f6cf617daa00e588713a02909f671b78d041e5]

INTEGRATION: CWS chart11 (1.9.14); FILE MERGED 2007/08/17 16:30:21 bm 1.9.14.1: #i67225# do not include invisible objects in ObjectHierarchy for a11y and keyboard navigation


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [2ac6d217dcdc944ba2ef7013d33fd9d096c50cba]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/08/22 09:03:30 bm 1.2.38.2: #i67225# rename getAllAxis... to getAllAxes... (plural), add bOnlyVisible parameter to retrieve only axes with Show==true 2007/07/31 21:32:17 iha 1.2.38.1: avoid duplicate code - isLogarithmic


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [eaa1a1f708805493ac7abf97abd479f0a075e707]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/08/23 12:36:03 bm 1.2.38.4: RESYNC: (1.2-1.3); FILE MERGED 2007/08/22 10:24:30 bm 1.2.38.3: #i67225# need to have all axes (also invisible ones) for the grid, of course 2007/08/22 09:04:15 bm 1.2.38.2: #i67225# rename getAllAxis... to getAllAxes... (plural), add bOnlyVisible parameter to retrieve only axes with Show==true 2007/08/17 16:30:20 bm 1.2.38.1: #i67225# do not include invisible objects in ObjectHierarchy for a11y and keyboard navigation


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [315b2909443494dc72095b37be48a05cf2f8a4df]

INTEGRATION: CWS chart11 (1.12.2); FILE MERGED 2007/08/10 16:37:22 iha 1.12.2.1: #i77362 additional shapes do not trigger an update - fix text edit mode problems


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [9dd580fb31e344764f0ac285c977d7d89f631dea]

INTEGRATION: CWS chart11 (1.23.2); FILE MERGED 2007/08/15 16:02:47 bm 1.23.2.2: #i64495# fixed by weiz. Adapt the selection after rearranging data series and remember former selection in an undo-action 2007/07/31 22:19:25 bm 1.23.2.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [ca16444346e220e219a636ef245b5ac3e360c192]

INTEGRATION: CWS chart11 (1.10.2); FILE MERGED 2007/08/22 09:04:34 bm 1.10.2.1: #i67225# rename getAllAxis... to getAllAxes... (plural)


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [e66d12dc9a0544549803a24895714ffb5728731a]

INTEGRATION: CWS chart11 (1.10.2); FILE MERGED 2007/08/23 12:35:33 bm 1.10.2.2: RESYNC: (1.10-1.11); FILE MERGED 2007/07/31 22:19:24 bm 1.10.2.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [4cdb6b5734d81dfc1494112efd4f6d67bd096c56]

INTEGRATION: CWS chart11 (1.10.2); FILE MERGED 2007/08/23 12:35:14 bm 1.10.2.2: RESYNC: (1.10-1.11); FILE MERGED 2007/07/31 21:36:19 iha 1.10.2.1: avoid duplicate code - isLogarithmic


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [9f36f10110cbeea07b9969b6a4c6e470c28c5a27]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/07/31 22:19:24 bm 1.2.38.1: #i79522# warnings on Solaris removed


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [9672e71c2a233dc5e4f4cf6f1ba83496b8418471]

INTEGRATION: CWS chart11 (1.9.2); FILE MERGED 2007/09/05 13:51:59 bm 1.9.2.5: #i81259# do not use the standard number format but the correct one, while using the input format at the FormattedField 2007/09/05 13:29:00 bm 1.9.2.4: #i81259# do not use the standard number format but the correct one, while using the input format at the FormattedField 2007/09/05 12:04:00 bm 1.9.2.3: #i81259#, #i6278# corrected comment 2007/09/04 20:46:35 bm 1.9.2.2: #i81259#, #101318# use input string for formatting, re-fix 2007/08/22 16:12:13 bm 1.9.2.1: #i56524# call IsNumberFormat with the correct format index


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [ea25cb570be01d4016814a6b75388867e426bad6]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/08/30 11:11:44 bm 1.3.2.1: #i79259# handle F2 in range edit fields for opening the range chooser


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [92ce536830703de68f27a1a23c26dd16e6ddb19e]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/08/30 12:19:14 bm 1.3.2.2: #i79259# get the focus back to the edit field after range choosing 2007/08/30 11:11:44 bm 1.3.2.1: #i79259# handle F2 in range edit fields for opening the range chooser


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [20210f2695bb072e21c4e0f23b590fa316c08b0f]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/08/30 11:11:44 bm 1.2.38.1: #i79259# handle F2 in range edit fields for opening the range chooser


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [86a3202d2425a826e593a469ef2294085cb2a4bf]

INTEGRATION: CWS chart11 (1.3.2); FILE MERGED 2007/08/30 12:20:12 bm 1.3.2.2: #i79259# get the focus back to the edit field after range choosing 2007/08/30 11:11:44 bm 1.3.2.1: #i79259# handle F2 in range edit fields for opening the range chooser


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [eedd9689b6de3eb0d07a1ba7d652086b02514138]

INTEGRATION: CWS chart11 (1.13.2); FILE MERGED 2007/08/30 11:11:44 bm 1.13.2.1: #i79259# handle F2 in range edit fields for opening the range chooser


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [2aac139defce3d19e98e487015050dee14f2fa81]

INTEGRATION: CWS chart11 (1.17.2); FILE MERGED 2007/09/05 07:46:07 bm 1.17.2.2: #i81259# use correct number formatter for scale tab page. 2007/08/15 14:49:02 bm 1.17.2.1: #i66181# ObjectPropertiesDialogParameter::init: some properties were added for regression-curves that are not available for that object


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [6eadaa9a931c3cd9a4efa4fd9e4c30b5b7749210]

INTEGRATION: CWS chart11 (1.1.2); FILE ADDED 2007/09/04 06:21:57 bm 1.1.2.2: #i79259# added precompiled header directive 2007/08/30 11:10:13 bm 1.1.2.1: #i79259# handle F2 in range edit fields for opening the range chooser


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [4ba41eff93f0ad277c13a12a60cf37f7c998cee8]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/08/23 12:31:46 bm 1.2.38.2: RESYNC: (1.2-1.3); FILE MERGED 2007/07/31 21:35:04 iha 1.2.38.1: avoid duplicate code - isLogarithmic


2007-09-18  Vladimir Glazounov  <vg@openoffice.org>  [70c9e726c7a38debfc49def534fa155c580294b4]

INTEGRATION: CWS chart11 (1.2.38); FILE MERGED 2007/08/01 06:10:36 bm 1.2.38.1: #i79522# warning removed (unxsoli4)


2007-09-07  Hans-Joachim Lankenau  <hjs@openoffice.org>  [792414edbeaf92fd5ddb56307daf3085e9f131f4]

#i10000# wait for library to exist before registering


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [00ae25583751df7ec15eff11c2eb87936d627e6c]

INTEGRATION: CWS mingwport06 (1.2.522); FILE MERGED 2007/08/24 13:08:31 vg 1.2.522.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [f34cef1758d38bf17944913b9cc88ade7433dacd]

INTEGRATION: CWS mingwport06 (1.5.314); FILE MERGED 2007/08/24 13:08:31 vg 1.5.314.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [f7dadf52d8215d8cf753e30e1a8d53ccb2e3d69f]

INTEGRATION: CWS mingwport06 (1.35.114); FILE MERGED 2007/08/24 13:08:30 vg 1.35.114.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [daee081aac3178783a35ee8bd9741d7d96f78887]

INTEGRATION: CWS mingwport06 (1.25.114); FILE MERGED 2007/08/24 13:08:30 vg 1.25.114.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [3d4e7e3ccd188dba8d1ea016e9e5f59213d9c0a5]

INTEGRATION: CWS mingwport06 (1.59.2); FILE MERGED 2007/08/24 13:08:30 vg 1.59.2.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [ab8beb2b11b766188c7fc402b3c559f44c6efee0]

INTEGRATION: CWS mingwport06 (1.47.114); FILE MERGED 2007/08/24 13:08:30 vg 1.47.114.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [9d5c8247776d50dc3e0b83c419a9a76a1067fead]

INTEGRATION: CWS mingwport06 (1.29.56); FILE MERGED 2007/08/24 13:08:30 vg 1.29.56.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [e02f37a074d36b26c47e8ae7cf8975452c3d4900]

INTEGRATION: CWS mingwport06 (1.9.114); FILE MERGED 2007/08/24 13:08:30 vg 1.9.114.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [1921b934ebb5aca7a2d65e813452f31ef25dfa85]

INTEGRATION: CWS mingwport06 (1.5.114); FILE MERGED 2007/08/24 13:08:30 vg 1.5.114.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [4e73a091e463d311d98e807a0b08a862e5eefce1]

INTEGRATION: CWS mingwport06 (1.10.154); FILE MERGED 2007/08/24 13:08:30 vg 1.10.154.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [97c6193d8af651990ea1ccbfecc9c3ea8f26a16b]

INTEGRATION: CWS mingwport06 (1.21.56); FILE MERGED 2007/08/24 13:08:30 vg 1.21.56.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [0dd3de581b6d685393e1d900209168db5e10f2a1]

INTEGRATION: CWS mingwport06 (1.12.152); FILE MERGED 2007/08/24 13:08:29 vg 1.12.152.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [08b657e58bd2e9991979156f9fa566a6a1a4c915]

INTEGRATION: CWS mingwport06 (1.22.114); FILE MERGED 2007/08/24 13:08:29 vg 1.22.114.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [c42b620da717978da0889135c91158c66cfd45b8]

INTEGRATION: CWS mingwport06 (1.20.120); FILE MERGED 2007/08/24 13:08:29 vg 1.20.120.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [1928be91e546e5e98ac94798dc5158b399693144]

INTEGRATION: CWS mingwport06 (1.11.122); FILE MERGED 2007/08/24 13:08:29 vg 1.11.122.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [2fcdfb7a9cdf623ae96fcd15e3708fe464908528]

INTEGRATION: CWS mingwport06 (1.8.152); FILE MERGED 2007/08/24 13:08:29 vg 1.8.152.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [4c8fcd4bf4e62e8a4c3104ed3de51cb1ef00fad5]

INTEGRATION: CWS mingwport06 (1.28.28); FILE MERGED 2007/08/24 13:08:29 vg 1.28.28.1: #i75499# pragma is for MSVC


2007-09-06  Kurt Zenker  <kz@openoffice.org>  [a495e9b694a67b7b00dc0acc1fdac90b228ce2b9]

INTEGRATION: CWS mingwport06 (1.22.154); FILE MERGED 2007/08/24 13:08:29 vg 1.22.154.1: #i75499# pragma is for MSVC


2007-09-05  Kurt Zenker  <kz@openoffice.org>  [64460f88848b1b0821463bef02e279bfeaa7538a]

INTEGRATION: CWS l10nfix22_SRC680 (1.7.52); FILE MERGED 2007/09/03 13:01:56 ihi 1.7.52.1: #i80591# enabled translation


2007-08-30  Vladimir Glazounov  <vg@openoffice.org>  [0a94696f7c3f453a4be685b79d516596d9738756]

INTEGRATION: CWS localisation22_SRC680 (1.7.50); FILE MERGED 2007/08/23 15:53:20 ihi 1.7.50.1: #i75790# #i80591# #i80827# #i80840# #i80931# Localisation OOo 2.3


2007-08-30  Vladimir Glazounov  <vg@openoffice.org>  [2e215095b82ca74baa47f2325a74cc354f4674c2]

INTEGRATION: CWS npower7 (1.39.2); FILE MERGED 2007/07/05 13:16:15 npower 1.39.2.2: RESYNC: (1.39-1.41); FILE MERGED 2007/05/03 09:00:47 npower 1.39.2.1: #i76886# really define LIBCOMPNAME


2007-08-30  Vladimir Glazounov  <vg@openoffice.org>  [bf27d7b55ed704e5e12d35f5bc027f36ae02f57b]

INTEGRATION: CWS npower7 (1.2.2); FILE MERGED 2007/05/17 16:12:07 npower 1.2.2.1: fix warning = error on mac build ( from tinderbox )


2007-08-30  Vladimir Glazounov  <vg@openoffice.org>  [515c14a9d2e18385d613e90d5e3fa8aedfd08470]

INTEGRATION: CWS npower7 (1.2.2); FILE MERGED 2007/08/07 12:59:15 npower 1.2.2.3: more warning removal 2007/07/23 11:51:59 npower 1.2.2.2: get rid of uninitialised warnings 2007/05/18 12:38:29 npower 1.2.2.1: attempt to fix mac errors from tinderbox


2007-08-30  Vladimir Glazounov  <vg@openoffice.org>  [a05674e25093a23a8b61b66d5662715b1862f3ca]

INTEGRATION: CWS npower7 (1.2.2); FILE MERGED 2007/07/23 11:51:59 npower 1.2.2.1: get rid of uninitialised warnings


2007-08-30  Vladimir Glazounov  <vg@openoffice.org>  [2391f99f97685a4d5fec486ad135940386cd5d47]

INTEGRATION: CWS npower7 (1.2.2); FILE MERGED 2007/05/03 11:16:34 npower 1.2.2.1: #i76886#


2007-08-30  Vladimir Glazounov  <vg@openoffice.org>  [ee8a6d8b180546b8e0e4df91c5603db4294565c0]

INTEGRATION: CWS npower7 (1.2.2); FILE MERGED 2007/08/07 12:59:15 npower 1.2.2.1: more warning removal


2007-08-30  Vladimir Glazounov  <vg@openoffice.org>  [1a570bd3d0de8e6aba9f488ecf4c0821e6821b29]

INTEGRATION: CWS npower7 (1.2.2); FILE MERGED 2007/05/18 12:38:29 npower 1.2.2.1: attempt to fix mac errors from tinderbox


2007-08-21  Ivo Hinkelmann  <ihi@openoffice.org>  [ba3a83b6fb6782cee3c88bff3ef01f76a298c9f4]

INTEGRATION: CWS calccolrowmove (1.81.36); FILE MERGED 2007/07/06 09:29:08 tbe 1.81.36.4: RESYNC: (1.81-1.82); FILE MERGED 2007/07/06 07:30:31 tbe 1.81.36.3: #i7180# Need ability to move columns/rows in spreadsheet 2007/07/04 13:59:39 tbe 1.81.36.2: #i7180# Need ability to move columns/rows in spreadsheet 2007/07/04 10:43:09 tbe 1.81.36.1: #i7180# Need ability to move columns/rows in spreadsheet


2007-08-21  Ivo Hinkelmann  <ihi@openoffice.org>  [1e70aa3680a1b43de89aa2df10b23eebec878400]

INTEGRATION: CWS calccolrowmove (1.23.80); FILE MERGED 2007/07/24 10:22:21 tbe 1.23.80.3: RESYNC: (1.24-1.25); FILE MERGED 2007/07/06 09:20:46 tbe 1.23.80.2: RESYNC: (1.23-1.24); FILE MERGED 2007/07/04 10:40:22 tbe 1.23.80.1: #i7180# Need ability to move columns/rows in spreadsheet


2007-08-21  Ivo Hinkelmann  <ihi@openoffice.org>  [1bbbba372d91d26bf41c45b293c0d09b6c62684d]

INTEGRATION: CWS calccolrowmove (1.18.2); FILE MERGED 2007/07/24 10:13:53 tbe 1.18.2.2: RESYNC: (1.18-1.19); FILE MERGED 2007/07/06 15:19:11 tbe 1.18.2.1: #i7180# warnings


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [4bc99a45f0f8bba4a5591214613d472735e63a11]

INTEGRATION: CWS calctextcol (1.28.58); FILE MERGED 2007/07/31 15:08:03 tbe 1.28.58.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [a0d4fa9995084565ff7de4c9f6fb7537512d9f23]

INTEGRATION: CWS calctextcol (1.56.4); FILE MERGED 2007/07/31 15:07:21 tbe 1.56.4.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [b9ca0b3da400b0e9b3e48ee435a199f793de1c1a]

INTEGRATION: CWS calctextcol (1.29.82); FILE MERGED 2007/08/07 11:29:29 tbe 1.29.82.2: #i4040 Convert text to columns 2007/07/31 15:06:56 tbe 1.29.82.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [bae968fc93e178920a58ac51906b46f8d99a7d54]

INTEGRATION: CWS calctextcol (1.68.6); FILE MERGED 2007/07/31 14:59:30 tbe 1.68.6.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [92933380ec249169f9ba0d1ba407f25c75759bd9]

INTEGRATION: CWS calctextcol (1.5.482); FILE MERGED 2007/07/31 14:58:59 tbe 1.5.482.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [4d1d3c92128bf9cfa58df30f95da3d474dc0cd57]

INTEGRATION: CWS calctextcol (1.12.210); FILE MERGED 2007/08/07 11:28:55 tbe 1.12.210.2: #i4040 Convert text to columns 2007/07/31 14:58:32 tbe 1.12.210.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [cb15419a6f30679f04de45a5c479717902ea051f]

INTEGRATION: CWS calctextcol (1.39.112); FILE MERGED 2007/08/07 11:27:41 tbe 1.39.112.2: #i4040 Convert text to columns 2007/07/31 14:58:04 tbe 1.39.112.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [33d261d217c9dd111427ca8007ad3ea7220ff86a]

INTEGRATION: CWS calctextcol (1.12.112); FILE MERGED 2007/07/31 14:57:13 tbe 1.12.112.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [21e4fbb04fed2f3ac96ef52f72b25fe69f900a04]

INTEGRATION: CWS calctextcol (1.34.84); FILE MERGED 2007/07/31 14:56:46 tbe 1.34.84.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [b03801966fa78b9025f881623e875d29dd071a15]

INTEGRATION: CWS calctextcol (1.4.482); FILE MERGED 2007/07/31 14:56:31 tbe 1.4.482.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [ebe0f57e07fb9531904aeab01bdebc80d4c7e6e0]

INTEGRATION: CWS calctextcol (1.11.82); FILE MERGED 2007/07/31 14:56:03 tbe 1.11.82.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [8f60b70298aff53ef6dd9646b06ac9f9823ecc57]

INTEGRATION: CWS calctextcol (1.12.82); FILE MERGED 2007/07/31 14:55:43 tbe 1.12.82.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [5a260c0dd5a8c9b5b71b97454d9d712d7fefd2e3]

INTEGRATION: CWS calctextcol (1.35.4); FILE MERGED 2007/07/31 14:54:52 tbe 1.35.4.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [dc9d61c23b2740b9509870939d362c1fa852d5cb]

INTEGRATION: CWS calctextcol (1.21.72); FILE MERGED 2007/07/31 14:54:26 tbe 1.21.72.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [0cab75ec3742bcd8fe601319f30e802525fc7191]

INTEGRATION: CWS calctextcol (1.9.82); FILE MERGED 2007/07/31 14:53:55 tbe 1.9.82.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [7b96df89d0ce0b823ffcc242c3a303bd5ee2c819]

INTEGRATION: CWS calctextcol (1.17.6); FILE MERGED 2007/07/31 14:53:29 tbe 1.17.6.1: #i4040 Convert text to columns


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [379c190c256117232886af2d1147a849fd3ab234]

INTEGRATION: CWS calcodfrng (1.27.136); FILE MERGED 2007/08/07 14:40:07 er 1.27.136.1: #i80033# ODF RNG: table:dependency instead of table:dependence


2007-08-20  Ivo Hinkelmann  <ihi@openoffice.org>  [c7c2daafff6dfd2e880d079b98ab30526adcdf65]

INTEGRATION: CWS calcodfrng (1.29.96); FILE MERGED 2007/08/07 14:40:07 er 1.29.96.1: #i80033# ODF RNG: table:dependency instead of table:dependence


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [fe2c953d671f22effd1c2a438fb20410261159aa]

INTEGRATION: CWS localisation21 (1.2.36); FILE MERGED 2007/08/02 14:06:36 ihi 1.2.36.1: #i80266# English strings


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [789a684e897e7bc20f921117b592fb59f652d067]

INTEGRATION: CWS localisation21 (1.1.2); FILE ADDED 2007/08/02 13:22:41 ihi 1.1.2.1: #i80266# English strings


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [f7a6d1c90233b180fddca3ae0370dc229cdacc25]

INTEGRATION: CWS localisation21 (1.1.2); FILE ADDED 2007/08/08 12:31:25 ihi 1.1.2.1: #i80440# new tmpl file


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [fdd96ddd6d1fd0fb0cef5bc6176bd8fdb9e409ba]

INTEGRATION: CWS localisation21 (1.11.10); FILE MERGED 2007/08/08 12:31:25 ihi 1.11.10.2: #i80440# new tmpl file 2007/08/02 13:22:40 ihi 1.11.10.1: #i80266# English strings


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [853ef628cceb0befcad744ab924aff4b05bca3c0]

INTEGRATION: CWS localisation21 (1.5.36); FILE MERGED 2007/08/02 13:22:38 ihi 1.5.36.1: #i80266# English strings


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [194e8408da82d11847cd44e33229504c62100954]

INTEGRATION: CWS dr57 (1.57.8); FILE MERGED 2007/08/09 09:51:05 dr 1.57.8.1: #i80499# redraw selection also for grouping actions


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [6e4bec00ed340c5eaa4d1c5f684665f0b1a13738]

INTEGRATION: CWS chart12 (1.14.4); FILE MERGED 2007/08/09 12:25:53 iha 1.14.4.1: #i80521# rotated titles are loaded wrong and saved wrong


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [40a5895fba1e79c27f31b1c733ee2c177eba78ca]

INTEGRATION: CWS chart12 (1.19.4); FILE MERGED 2007/08/07 16:31:30 iha 1.19.4.3: #i80401# correct percent values for 3D deep stacked charts 2007/08/07 15:56:52 iha 1.19.4.2: #i80401# correct percent values in data for not stacked charts 2007/08/07 14:15:37 iha 1.19.4.1: #i80401# correct percent values in data for not stacked charts


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [df2497d8e5c51ff10166cbc1789be9795607d2bb]

INTEGRATION: CWS chart12 (1.48.4); FILE MERGED 2007/08/07 16:32:02 iha 1.48.4.3: #i80401# correct percent values for 3D deep stacked charts 2007/08/07 15:56:25 iha 1.48.4.2: #i80401# correct percent values in data for not stacked charts 2007/08/07 14:16:22 iha 1.48.4.1: #i80401# correct percent values in data for not stacked charts


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [c95d2451c1b492b222b4ef786ab1f45b0b928099]

INTEGRATION: CWS chart12 (1.7.40); FILE MERGED 2007/08/06 08:05:51 bm 1.7.40.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [624f746a26286e7b6ea08573360b9b5235eb3088]

INTEGRATION: CWS chart12 (1.2.40); FILE MERGED 2007/08/06 08:05:51 bm 1.2.40.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [66722b91302b56f1ee9e69189ec69ad74c36a550]

INTEGRATION: CWS chart12 (1.3.4); FILE MERGED 2007/08/06 08:05:51 bm 1.3.4.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [453049b75a7708b36d211583d68222edb7d58753]

INTEGRATION: CWS chart12 (1.11.4); FILE MERGED 2007/08/07 15:48:06 bm 1.11.4.2: RESYNC: (1.11-1.12); FILE MERGED 2007/08/06 08:05:50 bm 1.11.4.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [198e6a74a04ce640f5204fc65e71f6823a0a25d0]

INTEGRATION: CWS chart12 (1.16.4); FILE MERGED 2007/08/06 08:05:50 bm 1.16.4.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [49ba77d2acaccc3608b3c14d55767a93b7606aa8]

INTEGRATION: CWS chart12 (1.8.4); FILE MERGED 2007/08/06 08:05:50 bm 1.8.4.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [ee01fc1506d7dc0484a88aeb451ddbb33f06be88]

INTEGRATION: CWS chart12 (1.12.4); FILE MERGED 2007/08/06 08:05:50 bm 1.12.4.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [04953cfcc5d89d8b0aeee5647fb80fa05aef8d5f]

INTEGRATION: CWS chart12 (1.6.40); FILE MERGED 2007/08/06 08:05:50 bm 1.6.40.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [689165b824231cc54b20a6281ccdf03b8e9143f7]

INTEGRATION: CWS chart12 (1.11.4); FILE MERGED 2007/08/06 08:05:50 bm 1.11.4.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [1ba4bcb091e64955b3b0fe4e690e53dbc2f7181d]

INTEGRATION: CWS chart12 (1.10.40); FILE MERGED 2007/08/06 08:05:50 bm 1.10.40.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [897089d35d78d54d5a4f0f2a85879e856d861406]

INTEGRATION: CWS chart12 (1.2.40); FILE MERGED 2007/08/06 08:05:50 bm 1.2.40.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [47c51843c2823b3cdb049a7d2f92e1c023dc3dc3]

INTEGRATION: CWS chart12 (1.3.4); FILE MERGED 2007/08/06 08:05:49 bm 1.3.4.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [95e5fc9f6d4fb8d3db8afb338b3d8a9f72352824]

INTEGRATION: CWS chart12 (1.2.40); FILE MERGED 2007/08/07 14:00:43 iha 1.2.40.1: #i80250# symbol style automatic is not saved correctly


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [a76c2242c23a31823303871e56713257c8bca30f]

INTEGRATION: CWS chart12 (1.3.4); FILE MERGED 2007/08/08 23:27:08 iha 1.3.4.3: #i78615# missing symbol size is not interpreted correctly for bitmap symbols 2007/08/08 18:42:35 iha 1.3.4.2: #i78615# missing symbol size is not interpreted correctly for bitmap symbols 2007/08/07 14:00:42 iha 1.3.4.1: #i80250# symbol style automatic is not saved correctly


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [90a133f7687e502f7a9dde46be668daf587e2e9f]

INTEGRATION: CWS chart12 (1.3.4); FILE MERGED 2007/08/07 15:44:54 bm 1.3.4.2: RESYNC: (1.3-1.4); FILE MERGED 2007/08/07 13:55:40 iha 1.3.4.1: #i80250# symbol style automatic is not saved correctly


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [73ad68022b93080141052017cc42fa56ade8f9a6]

INTEGRATION: CWS chart12 (1.4.40); FILE MERGED 2007/08/06 08:05:49 bm 1.4.40.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [5d1ea21853d88f8b8bbf4914d68486be520143c7]

INTEGRATION: CWS chart12 (1.6.4); FILE MERGED 2007/08/06 08:05:49 bm 1.6.4.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [203105a647c84f88e63461d50c650adc3fda4238]

INTEGRATION: CWS chart12 (1.4.40); FILE MERGED 2007/08/07 14:00:42 iha 1.4.40.1: #i80250# symbol style automatic is not saved correctly


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [640bed3ffe35d83a46dec60f6eb85191594f4f65]

INTEGRATION: CWS chart12 (1.8.4); FILE MERGED 2007/08/07 15:43:45 bm 1.8.4.2: RESYNC: (1.8-1.9); FILE MERGED 2007/08/07 14:00:42 iha 1.8.4.1: #i80250# symbol style automatic is not saved correctly


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [0b96adbec598e239177bedac46556136ba966057]

INTEGRATION: CWS chart12 (1.5.40); FILE MERGED 2007/08/07 14:00:42 iha 1.5.40.1: #i80250# symbol style automatic is not saved correctly


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [85801b7f542f0fdfc2f46278911ea28a71b82597]

INTEGRATION: CWS chart12 (1.8.4); FILE MERGED 2007/08/08 23:29:19 iha 1.8.4.5: #i78615# missing symbol size is not interpreted correctly for bitmap symbols 2007/08/07 19:19:07 bm 1.8.4.4: #i80250# contstructor order wrong, still, oops 2007/08/07 19:12:01 bm 1.8.4.3: #i80250# contstructor order wrong 2007/08/07 15:43:36 bm 1.8.4.2: RESYNC: (1.8-1.9); FILE MERGED 2007/08/07 14:00:41 iha 1.8.4.1: #i80250# symbol style automatic is not saved correctly


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [41b57d978d6edc0aa31d10a784e91900b4d70579]

INTEGRATION: CWS chart12 (1.14.36); FILE MERGED 2007/08/06 08:21:15 bm 1.14.36.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-17  Ivo Hinkelmann  <ihi@openoffice.org>  [b81d20e9fe9da92661213d5d19c5de5894ac06d5]

INTEGRATION: CWS chart12 (1.3.36); FILE MERGED 2007/08/06 08:21:15 bm 1.3.36.1: #i80297# rename set/getTitle of interface XTitled to set/getTitleObject to avoid name clash with old API XChartDocument::getTitle


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [4b0b82dc9fe6399e29668cd5aedee72cf5fc6199]

INTEGRATION: CWS swa11y01 (1.2.14); FILE MERGED 2007/07/23 09:25:04 pb 1.2.14.3: fix: #i79896# dont use bDisableTransientChildren of class ValueSet at the moment 2007/07/20 23:47:08 pb 1.2.14.2: RESYNC: (1.2-1.3); FILE MERGED 2007/06/12 16:10:33 bm 1.2.14.1: #i73746# use valueset with disabled transient children for accessibility


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [b9a38b985e7ed2dc7c57440f45135664af871a20]

INTEGRATION: CWS chart10 (1.91.20); FILE MERGED 2007/07/26 14:34:12 iha 1.91.20.1: #i79849# prevent to many view updates of charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [39966bf1868739c1d99f07925f02724f5dfcee24]

INTEGRATION: CWS chart10 (1.20.22); FILE MERGED 2007/07/26 14:29:54 iha 1.20.22.1: #i79849# prevent to many view updates of charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [518b767ed5f36aedd653675ad3df35a185313d8d]

INTEGRATION: CWS chart10 (1.1.2); FILE ADDED 2007/07/27 12:59:08 iha 1.1.2.2: #i79849# prevent to many view updates of charts - also lock newly loaded charts 2007/07/26 14:29:26 iha 1.1.2.1: #i79849# prevent to many view updates of charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9dab2275f21b05cf90e9ac1dd5b41ca7195d2938]

INTEGRATION: CWS chart10 (1.48.22); FILE MERGED 2007/07/26 14:33:11 iha 1.48.22.1: #i79849# prevent to many view updates of charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3c9e16827b14e19bf2e636893f79bae20d63fd4f]

INTEGRATION: CWS chart10 (1.27.80); FILE MERGED 2007/07/27 13:00:06 iha 1.27.80.1: #i79849# prevent to many view updates of charts - also lock newly loaded charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [fc1e5a7b69afd5c9033574e50fb0da98cea39d5e]

INTEGRATION: CWS chart10 (1.36.22); FILE MERGED 2007/07/26 14:32:20 iha 1.36.22.1: #i79849# prevent to many view updates of charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [29ae119967c2fd6a2c1011adb7c86aecffb1f46d]

INTEGRATION: CWS chart10 (1.65.20); FILE MERGED 2007/07/26 14:31:26 iha 1.65.20.1: #i79849# prevent to many view updates of charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2cb158d34d2724735343dd301becc75682b38f23]

INTEGRATION: CWS chart10 (1.101.20); FILE MERGED 2007/07/26 14:28:50 iha 1.101.20.1: #i79849# prevent to many view updates of charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f8c3b1187cca31028dcc912fafc8d28ccd9a7dc0]

INTEGRATION: CWS chart10 (1.1.2); FILE ADDED 2007/07/27 12:56:06 iha 1.1.2.2: #i79849# prevent to many view updates of charts - also lock newly loaded charts 2007/07/26 14:28:16 iha 1.1.2.1: #i79849# prevent to many view updates of charts


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a69245c244619c97304f42d59e376a72a3ab93ce]

INTEGRATION: CWS pj83 (1.13.42); FILE MERGED 2007/08/01 07:20:44 pjanik 1.13.42.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [fbb601c93e48e57115d6515e6444aa8ad923800c]

INTEGRATION: CWS pj83 (1.5.42); FILE MERGED 2007/08/01 07:20:44 pjanik 1.5.42.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cff5618b517424361c632291d224412675e73046]

INTEGRATION: CWS pj83 (1.36.6); FILE MERGED 2007/08/01 07:20:43 pjanik 1.36.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9f3ce5e4803904e901a022469363e59bf3ae56ec]

INTEGRATION: CWS pj83 (1.5.42); FILE MERGED 2007/08/01 07:20:43 pjanik 1.5.42.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ad879ce47d2c40766c29fcd295b0635cf7be997e]

INTEGRATION: CWS pj83 (1.6.6); FILE MERGED 2007/08/01 07:20:43 pjanik 1.6.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cd179478f47d6c7af6667a1f70661909c108b730]

INTEGRATION: CWS pj83 (1.11.6); FILE MERGED 2007/08/01 07:20:43 pjanik 1.11.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [175974fcc912ac7db8ab9cc982ddbd8c0e01da81]

INTEGRATION: CWS pj83 (1.5.6); FILE MERGED 2007/08/01 07:20:43 pjanik 1.5.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ac1a7cd6edacf5745e7f25dc531fa6761b0b92f7]

INTEGRATION: CWS pj83 (1.7.6); FILE MERGED 2007/08/01 07:20:43 pjanik 1.7.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [62d05e07f2cdff8c444e1959497bd59bc67918db]

INTEGRATION: CWS pj83 (1.9.6); FILE MERGED 2007/08/01 07:20:42 pjanik 1.9.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1c1b3898f228604f73adba0de3c76af50e945f62]

INTEGRATION: CWS pj83 (1.4.42); FILE MERGED 2007/08/01 07:20:42 pjanik 1.4.42.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1f8da0d886778f442df5a54b0ad738fa6fea4be9]

INTEGRATION: CWS pj83 (1.10.6); FILE MERGED 2007/08/01 07:20:42 pjanik 1.10.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [44f77b56aa26eddc18374a92c42f0738dc9127cf]

INTEGRATION: CWS pj83 (1.15.6); FILE MERGED 2007/08/01 07:20:42 pjanik 1.15.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [efb2e969bb324de33c409615f827185c47865ede]

INTEGRATION: CWS pj83 (1.4.6); FILE MERGED 2007/08/01 07:20:42 pjanik 1.4.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6d48ac45daa13234976db7131750bb331db6043f]

INTEGRATION: CWS pj83 (1.2.42); FILE MERGED 2007/08/01 07:20:42 pjanik 1.2.42.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a59018517e6b00f528c59f65a09af1adb77544e3]

INTEGRATION: CWS pj83 (1.3.6); FILE MERGED 2007/08/01 07:20:41 pjanik 1.3.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7282720a1cbd9592f37115d46506453ebba0a560]

INTEGRATION: CWS pj83 (1.2.42); FILE MERGED 2007/08/01 07:20:41 pjanik 1.2.42.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [db5dce6f9bad275f28206ab6d438450bb2e49384]

INTEGRATION: CWS pj83 (1.4.6); FILE MERGED 2007/08/01 07:20:41 pjanik 1.4.6.1: #i80015#: Make chart2 WaE clean.


2007-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3533d467be6fe02c13b8c85122d1e56bbe8a30ed]

INTEGRATION: CWS pj83 (1.8.6); FILE MERGED 2007/08/01 07:20:41 pjanik 1.8.6.1: #i80015#: Make chart2 WaE clean.


2007-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [01d41d135c8a3e40196636382ff2cabc1f02516b]

INTEGRATION: CWS aw052 (1.2.24); FILE MERGED 2007/06/26 16:39:26 aw 1.2.24.1: #i78696# changed handling of rotation contained in transformation to mathematically correct orientation


2007-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [5d3a9abbbb4219b3fce010186ae1271d9d8a5adc]

INTEGRATION: CWS aw052 (1.7.24); FILE MERGED 2007/06/27 11:40:22 aw 1.7.24.2: #i78696# unified creation of fRotationAnglePi 2007/06/26 16:39:26 aw 1.7.24.1: #i78696# changed handling of rotation contained in transformation to mathematically correct orientation


2007-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [4ed947fd2c482cfc1ab686dda29997c9daf3c8a6]

INTEGRATION: CWS dr56 (1.10.194); FILE MERGED 2007/07/31 14:01:50 dr 1.10.194.1: #i76047# restrict pivotcache strings to 255 chars


2007-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [d6938e5e38b47daba46a1dcec3b67bbc22e5a838]

INTEGRATION: CWS dr56 (1.10.86); FILE MERGED 2007/07/31 14:02:31 dr 1.10.86.1: #i76047# restrict pivotcache strings to 255 chars


2007-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [90cdd781dc24e61d3fe331a70a4293a3d9901fcc]

INTEGRATION: CWS dr56 (1.15.58); FILE MERGED 2007/07/31 09:45:26 dr 1.15.58.1: #i80006# ignore hi-byte in column indexes in HLINK record


2007-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [08f3c51967747174312862444d2706b03614659c]

INTEGRATION: CWS dr56 (1.28.24); FILE MERGED 2007/07/31 09:45:25 dr 1.28.24.1: #i80006# ignore hi-byte in column indexes in HLINK record


2007-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [b059008d772327b3dcf2f19a3350a89fc94d32e1]

INTEGRATION: CWS dr56 (1.18.84); FILE MERGED 2007/07/31 14:02:30 dr 1.18.84.1: #i76047# restrict pivotcache strings to 255 chars


2007-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [ed03ea9a2823ccdc005d9b90bed368c29a9f9999]

INTEGRATION: CWS dr56 (1.21.86); FILE MERGED 2007/07/31 09:00:35 dr 1.21.86.1: #i80162# unxlngi4.pro compiler problem


2007-07-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [7c9c4fb18060c89ed10b76cb57b157a4052ca52e]

INTEGRATION: CWS calc43 (1.34.34); FILE MERGED 2007/07/19 10:05:50 tbe 1.34.34.1: #i79570# Calc: AutoSum when marking text data only


2007-07-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [a2bd5721062cbdc83035a26610501757c24eb81f]

INTEGRATION: CWS calc43 (1.55.8); FILE MERGED 2007/07/23 14:56:36 nn 1.55.8.2: RESYNC: (1.55-1.56); FILE MERGED 2007/07/23 12:10:05 nn 1.55.8.1: #i79909# make sure overlays aren't drawn in edit MapMode


2007-07-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [842877d333d48e590afeea2ef3245633f290a9d9]

INTEGRATION: CWS calc43 (1.31.54); FILE MERGED 2007/07/23 14:56:28 nn 1.31.54.2: RESYNC: (1.31-1.32); FILE MERGED 2007/07/23 12:10:05 nn 1.31.54.1: #i79909# make sure overlays aren't drawn in edit MapMode


2007-07-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [250af0f251a0fcd988f8ad858c05cf78b812e358]

INTEGRATION: CWS calc43 (1.25.10); FILE MERGED 2007/07/18 14:16:59 nn 1.25.10.1: #i76114# PrePrintDrawingLayer: set MapMode, disable region intersecting


2007-07-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [15aa76d4504f8e5945403e0903a2ecaa002266c2]

INTEGRATION: CWS calc43 (1.31.10); FILE MERGED 2007/07/23 14:53:55 nn 1.31.10.2: RESYNC: (1.31-1.32); FILE MERGED 2007/07/19 10:05:19 tbe 1.31.10.1: #i79570# Calc: AutoSum when marking text data only


2007-07-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [27dfef99641d01aab3304c4fafd96694189f2992]

INTEGRATION: CWS calc43 (1.53.34); FILE MERGED 2007/07/19 10:04:56 tbe 1.53.34.1: #i79570# Calc: AutoSum when marking text data only


2007-07-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [a4899d9573b986762d0c104e3739e1ebf77fdecf]

INTEGRATION: CWS calc43 (1.19.4); FILE MERGED 2007/07/18 17:58:37 er 1.19.4.1: #i78250# numerical stability of CORREL, COVAR, PEARSON, RSQ, STEYX, SLOPE, INTERCEPT, FORECAST


2007-07-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [4bfd4576447b72224882b8a5860ab7baafb90525]

INTEGRATION: CWS calc43 (1.47.8); FILE MERGED 2007/07/18 14:11:07 er 1.47.8.2: RESYNC: (1.47-1.48); FILE MERGED 2007/07/17 18:57:21 er 1.47.8.1: #i78727# JIS/ASC conversion of katakana middle dot


2007-07-27  Rüdiger Timm  <rt@openoffice.org>  [ae96b387801232eec9f7a7e0091d0bd4942ee0cf]

#i80091# Remove SISSL license.


2007-07-26  Rüdiger Timm  <rt@openoffice.org>  [3652dbaa5763a8b312e63df2d77fc42b77228b44]

INTEGRATION: CWS chart09 (1.6.32); FILE MERGED 2007/07/18 15:05:47 iha 1.6.32.1: #i79069# dashed lines in charts are not saved anymore


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [657701b88f7ea4976a4bf2ea90f7f4a5a1a34bd6]

INTEGRATION: CWS chart07 (1.104.4); FILE MERGED 2007/07/13 10:58:48 bm 1.104.4.1: #i7180# warnings


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [76b8690fd977c9ed80772b63775a8584aba35cfe]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:48:52 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [4bfb0ba5f26ce5a8510d24dcc64a0ea071abb431]

INTEGRATION: CWS chart07 (1.25.8); FILE MERGED 2007/07/11 14:49:20 bm 1.25.8.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [c98bfd70cfaab3b1d5f96eccba1182f53c3f4156]

INTEGRATION: CWS chart07 (1.23.8); FILE MERGED 2007/07/11 15:03:58 bm 1.23.8.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [831db1ec34751f458c559be004ea97f61c7b74ca]

INTEGRATION: CWS chart07 (1.13.12); FILE MERGED 2007/07/10 14:33:40 bm 1.13.12.2: #i69281# warnings removed 2007/07/10 13:48:52 bm 1.13.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [099c63f1fd65c6d94f5ec38ff5008880f064b5b1]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/12 13:19:29 iha 1.2.12.1: #i75867# Poor quality of OLE's alternative view for 3D scenes


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [a6456c6f5d363e56b589a8ca402f761e4ee7a86a]

INTEGRATION: CWS chart07 (1.37.8); FILE MERGED 2007/07/12 13:20:33 iha 1.37.8.4: #i75867# Poor quality of OLE's alternative view for 3D scenes 2007/07/11 15:32:31 bm 1.37.8.3: #i69281# warnings removed 2007/07/11 15:03:58 bm 1.37.8.2: #i69281# warnings removed 2007/07/04 16:50:59 bm 1.37.8.1: #i78870# some solar mutex locks added for safety


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [968c6ddea3548c456eef164b7cc2f89a6fa105e4]

INTEGRATION: CWS chart07 (1.15.4); FILE MERGED 2007/07/11 16:43:47 bm 1.15.4.4: #i69281# warnings removed 2007/07/11 15:21:39 bm 1.15.4.3: #i69281# warnings removed 2007/07/11 15:03:57 bm 1.15.4.2: #i69281# warnings removed 2007/07/10 13:18:39 bm 1.15.4.1: include to Rotation.hxx removed -> deprecated


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [7032472fbb538465279077771bfcacfcf4b3341c]

INTEGRATION: CWS chart07 (1.35.12); FILE MERGED 2007/07/10 13:49:01 bm 1.35.12.2: #i69281# warnings removed 2007/06/20 15:15:16 iha 1.35.12.1: #i63016# no regression curve entries in legend for 3D


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [e2efc0d774b5b6bd29fd9cab277253f38d80e699]

INTEGRATION: CWS chart07 (1.9.12); FILE MERGED 2007/07/16 08:28:45 bm 1.9.12.3: #i13699# render cubic splines correctly for data with unsorted x-values 2007/07/10 13:46:20 iha 1.9.12.2: #i72216# allow unsorted b-splines 2007/07/10 12:03:45 iha 1.9.12.1: #i72216# allow unsorted b-splines


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f9e7033b99f5863e4ead76ec6d2d5a560d08dc75]

INTEGRATION: CWS chart07 (1.15.12); FILE MERGED 2007/07/10 13:49:01 bm 1.15.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [1922da82b2b3804b8ae069939768506542f5828c]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:49:01 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [ec4451cf39a1ab05f83079e4c7e317dc09bfb08e]

INTEGRATION: CWS chart07 (1.18.12); FILE MERGED 2007/07/06 14:47:23 iha 1.18.12.1: #i66786# correct error bar ends


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [c8a696f95677aa77be2719b19b848374eddc5fc3]

INTEGRATION: CWS chart07 (1.47.8); FILE MERGED 2007/07/09 12:52:57 iha 1.47.8.1: #i79270# area chart has symbols


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [878c4c60a206928fc7fbe0e762134d6569d71094]

INTEGRATION: CWS chart07 (1.8.12); FILE MERGED 2007/07/10 13:48:38 bm 1.8.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [49f0d79ed16897fe9a4f2ad6057c6e714480615d]

INTEGRATION: CWS chart07 (1.8.12); FILE MERGED 2007/07/11 15:03:57 bm 1.8.12.3: #i69281# warnings removed 2007/07/10 14:32:18 bm 1.8.12.2: #i69281# warnings removed 2007/07/10 13:48:37 bm 1.8.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [901d4949a3a7b6b8c50ceaa82194c12ab946c166]

INTEGRATION: CWS chart07 (1.7.12); FILE MERGED 2007/07/11 15:03:57 bm 1.7.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [017da9805ecddcbf95c25b5a2ae895fad1278c90]

INTEGRATION: CWS chart07 (1.11.12); FILE MERGED 2007/07/10 13:48:37 bm 1.11.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [0f45894e7447b197bfa645de83779b5c5fb457ab]

INTEGRATION: CWS chart07 (1.23.4); FILE MERGED 2007/07/10 12:47:37 bm 1.23.4.1: Rotation.cxx is deprecated


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [8072523529b2805754b218ea65b7201bd45160bd]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/04 16:48:58 bm 1.2.12.1: warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [c68f815b1f921acbf7e62ce86f9733b375c6dff9]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:59:36 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [c5d2c5d44fb26ff7b5479b93f9c8557295f1c372]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/06 12:00:53 bm 1.2.12.1: #ii78871# implemented property listener (for one property) by passing to inner property. For more complex properties the methods would have to be overloaded


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [5bcbf746a298ce3d8b200f53f3c492d41f1945e3]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:38:42 bm 1.2.12.2: #i69281# warnings removed 2007/07/07 12:02:20 bm 1.2.12.1: #i79087# give ignore-properties a state for deprecated properties


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [627d5c17ca6ca618dc90807b271a11bbc598015e]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:38:42 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [9e9d048aca55e54b2625a999ad2c2779948f6109]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:58:57 bm 1.2.12.4: #i69281# warnings removed 2007/06/27 09:05:42 bm 1.2.12.3: implement XUndoHelper 2007/06/26 13:22:23 bm 1.2.12.2: #i74653# removed superfluous commented-out code 2007/06/25 12:52:12 bm 1.2.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [9a81f2a8e54fd9b8c5d6a6e805ba251f0ebe752e]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/25 12:52:12 bm 1.2.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f067f966987f17d0b398907e9c4e783b0458170e]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:56:32 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [00577e2f8ca9d9271f954b3a9651b47853b2ad27]

INTEGRATION: CWS chart07 (1.2.4); FILE MERGED 2007/07/10 14:27:24 bm 1.2.4.3: #i69281# warnings removed 2007/07/10 13:55:02 bm 1.2.4.2: #i69281# warnings removed 2007/07/10 13:02:01 bm 1.2.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [b82887afc2f4810231e4dbd3dd7741f6b1e77ef4]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 11:57:30 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f7e2733a4f4597e10a61c47558ec1ef019066c51]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/10 14:42:03 bm 1.5.12.2: #i69281# warnings removed 2007/07/04 16:48:58 bm 1.5.12.1: warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [d32ed9eafea3c042e640978a1ba40e4df9d2ef75]

INTEGRATION: CWS chart07 (1.10.12); FILE MERGED 2007/07/04 16:48:58 bm 1.10.12.1: warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f9239942df6688915833737b0cc658ddf8ae1449]

INTEGRATION: CWS chart07 (1.3.136); FILE MERGED 2007/07/12 05:50:10 bm 1.3.136.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [9f45ad8eb72e93d65a819840b8539f1da471f123]

INTEGRATION: CWS chart07 (1.3.8); FILE MERGED 2007/07/10 11:57:30 bm 1.3.8.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [2dc4391c29f75c14ad4fad0a53a61e8efae0ae70]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/10 14:42:03 bm 1.5.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [6b525cb78eb8b1c4aedffc5a610f18c5359596bc]

INTEGRATION: CWS chart07 (1.3.58); FILE MERGED 2007/07/10 11:57:30 bm 1.3.58.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [3cdcccdb641ac4ecbc4deab0b1d3d55e35fb4529]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 14:42:03 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [b10ff844c1d5fb05fc88242b4735209e4efa7d78]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/26 11:28:31 bm 1.2.12.1: #i78794# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [3f367345292833a218f28c2b77d2e0e39ae427cc]

INTEGRATION: CWS chart07 (1.4.58); FILE MERGED 2007/07/10 11:57:30 bm 1.4.58.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [83a40991debefc9a15809976032219383f435dba]

INTEGRATION: CWS chart07 (1.4.12); FILE MERGED 2007/07/09 14:22:50 bm 1.4.12.1: #i79087# dispose: send disposing events to all listeners, not only those of type XEventListener


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [39e2ff18d340fcc52ddb41dbd5d95ed78a01046f]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/12 12:50:50 bm 1.2.12.5: #i79414# use a map as temporary storage for modified ranges 2007/07/12 05:48:59 bm 1.2.12.4: #i69281# warnings removed 2007/07/11 16:45:40 bm 1.2.12.3: #i79414# try to fix STL-port only buildability with valarray 2007/07/10 13:01:18 bm 1.2.12.2: #i69281# warnings removed 2007/06/26 20:27:05 bm 1.2.12.1: adaption to XDataProvider interface change


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [6407e85eb8b5b6fcd543c62c3924de1d8d48faa4]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/12 09:09:37 bm 1.2.12.2: #i69281# rename UndoElementWithData::initialize() to initializeData() to remove warning for Solaris compiler 2007/06/27 09:05:42 bm 1.2.12.1: implement XUndoHelper


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [34149630989751883605cbe35e257df7f3833520]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/12 09:09:20 bm 1.2.12.3: #i69281# rename UndoElementWithData::initialize() to initializeData() to remove warning for Solaris compiler 2007/07/10 12:58:21 bm 1.2.12.2: #i69281# warnings removed 2007/06/27 09:05:42 bm 1.2.12.1: implement XUndoHelper


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [73c6e814706ed444e71213da93cc49a9bbbf13eb]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/09 07:27:22 bm 1.5.12.1: #i79087# FillxxxName is void per default so add MAYBEVOID


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [8fab1b1a09d6df92b7ceca0d6cfec62833b0d7b4]

INTEGRATION: CWS chart07 (1.6.12); FILE MERGED 2007/07/10 12:56:19 bm 1.6.12.2: #i69281# warnings removed 2007/07/04 16:47:59 bm 1.6.12.1: warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [827ce1d97732a36c03ed77583e598b38e0b26325]

INTEGRATION: CWS chart07 (1.10.4); FILE MERGED 2007/07/10 13:01:44 bm 1.10.4.2: #i69281# warnings removed 2007/07/10 11:57:30 bm 1.10.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [97af12372b43e80bf00a96c01604e5807388f3bc]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 12:56:07 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [004b023f83566f60361bb290dcd59b35ad5fb1f2]

INTEGRATION: CWS chart07 (1.5.8); FILE MERGED 2007/07/10 14:40:44 bm 1.5.8.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [ebfc0b755eda7bbd1ceb6e1d80cbdb29ab47b5ec]

INTEGRATION: CWS chart07 (1.10.12); FILE MERGED 2007/07/10 11:57:30 bm 1.10.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [68cbc1b6973cfa35c949d6ed6747133eeae4f392]

INTEGRATION: CWS chart07 (1.13.4); FILE MERGED 2007/07/10 11:57:30 bm 1.13.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [d08825169138af13a36bc9619eebe91f46cb1f51]

INTEGRATION: CWS chart07 (1.4.12); FILE MERGED 2007/07/06 11:16:50 bm 1.4.12.1: #i78870# font style names may be void


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [63c65f061e1225a587446944a25af507fa092a6d]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 12:51:31 bm 1.2.12.2: #i69281# warnings removed 2007/07/10 11:57:30 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [891e8c24be2dd1a99de473a3eedc6ff966ff31a6]

INTEGRATION: CWS chart07 (1.3.4); FILE MERGED 2007/07/10 11:57:30 bm 1.3.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [47ba497d01056b3e03f66adb051b8cc6b4859537]

INTEGRATION: CWS chart07 (1.6.12); FILE MERGED 2007/06/27 13:40:23 bm 1.6.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [1945555a9f82bda9e1bcb8e019982ec9b72a5b4a]

INTEGRATION: CWS chart07 (1.9.8); FILE MERGED 2007/06/27 13:40:23 bm 1.9.8.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [392bb9facbb35dec6bca0ea25cc18a134f82b11a]

INTEGRATION: CWS chart07 (1.9.12); FILE MERGED 2007/07/10 13:39:35 bm 1.9.12.3: include to Rotation.hxx removed -> deprecated 2007/07/06 16:51:18 bm 1.9.12.2: RESYNC: (1.9-1.10); FILE MERGED 2007/06/27 13:40:23 bm 1.9.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [3214524d379fc6feae5bbab689bf3ecf0ca79aa3]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/06/27 13:40:23 bm 1.5.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [0ad2d6b17fa25c32b66ebf53c699bfbfe7219feb]

INTEGRATION: CWS chart07 (1.14.12); FILE MERGED 2007/06/27 13:40:23 bm 1.14.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [995cc055e651a734d32771936920539dbd337e00]

INTEGRATION: CWS chart07 (1.15.12); FILE MERGED 2007/06/27 13:40:23 bm 1.15.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [44dd118a9754cfc46e31b6940175c6128cd3f2bf]

INTEGRATION: CWS chart07 (1.16.12); FILE MERGED 2007/06/27 13:40:23 bm 1.16.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [d58000efc5de7606b8b7c498c66b5f70dfd3eb97]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/11 14:49:20 bm 1.5.12.2: #i69281# warnings removed 2007/06/26 11:23:43 bm 1.5.12.1: #i78794# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f8e5656a17394e3c0508a0634affe922e66956c3]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/27 13:40:23 bm 1.2.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [68317996364f487704bb00932e5bd0a4534ce571]

INTEGRATION: CWS chart07 (1.7.12); FILE MERGED 2007/07/06 16:51:09 bm 1.7.12.2: RESYNC: (1.7-1.8); FILE MERGED 2007/06/27 13:40:23 bm 1.7.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [775b9b9ce9e454eccc95d9b1bd68563c7bed04f8]

INTEGRATION: CWS chart07 (1.7.12); FILE MERGED 2007/06/27 13:40:23 bm 1.7.12.1: some warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [1ee77d78714e24d5f5998569c2700e3d56964594]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/06/25 12:52:12 bm 1.5.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [6826f702fc25d6b62f32c78f485cdacd5122e59d]

INTEGRATION: CWS chart07 (1.6.12); FILE MERGED 2007/07/11 14:49:20 bm 1.6.12.2: #i69281# warnings removed 2007/06/27 13:28:52 bm 1.6.12.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [9d0dff427582b22512099457229023f2e66127b3]

INTEGRATION: CWS chart07 (1.10.12); FILE MERGED 2007/07/11 14:49:20 bm 1.10.12.2: #i69281# warnings removed 2007/06/27 13:28:52 bm 1.10.12.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [453cf72ac5e3b21e19b70f86813c62e4e580711c]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/11 14:49:20 bm 1.2.12.2: #i69281# warnings removed 2007/06/27 13:28:52 bm 1.2.12.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [5485276860c879b1b22b3f6e9a90f8bdaedab9cf]

INTEGRATION: CWS chart07 (1.7.8); FILE MERGED 2007/07/11 14:49:20 bm 1.7.8.2: #i69281# warnings removed 2007/06/27 13:28:52 bm 1.7.8.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [317bbf9cb91814c7857b7b7d3a219ca7fc67e7ff]

INTEGRATION: CWS chart07 (1.14.12); FILE MERGED 2007/07/11 14:49:20 bm 1.14.12.3: #i69281# warnings removed 2007/07/07 11:46:32 bm 1.14.12.2: #i79349# set the default for Expansion to HIGH which corresposnd to the default LINE_END for AnchorPosition 2007/06/27 13:28:52 bm 1.14.12.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [7dd08fd5d229e366cb0d2a6b38bdd4a765cc6dec]

INTEGRATION: CWS chart07 (1.7.12); FILE MERGED 2007/06/25 13:58:05 bm 1.7.12.3: RESYNC: (1.7-1.8); FILE MERGED 2007/06/25 13:02:27 bm 1.7.12.2: #i74653# include for XUndoManager missing 2007/06/25 12:52:12 bm 1.7.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [171435ea0dc24b1604722ab1094320af6b861a19]

INTEGRATION: CWS chart07 (1.11.12); FILE MERGED 2007/07/11 14:49:20 bm 1.11.12.4: #i69281# warnings removed 2007/07/06 16:51:00 bm 1.11.12.3: RESYNC: (1.12-1.13); FILE MERGED 2007/06/25 13:57:58 bm 1.11.12.2: RESYNC: (1.11-1.12); FILE MERGED 2007/06/25 12:52:12 bm 1.11.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [21ec9058a7cc6403e71ea5642f55be9571013a16]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/11 14:49:20 bm 1.2.12.3: #i69281# warnings removed 2007/07/06 16:50:52 bm 1.2.12.2: RESYNC: (1.2-1.3); FILE MERGED 2007/06/27 13:28:52 bm 1.2.12.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [9eae91b29b626e68918c10b2ce970a37fed7ea79]

INTEGRATION: CWS chart07 (1.14.12); FILE MERGED 2007/07/11 14:49:20 bm 1.14.12.3: #i69281# warnings removed 2007/07/06 16:50:44 bm 1.14.12.2: RESYNC: (1.14-1.15); FILE MERGED 2007/06/27 13:28:52 bm 1.14.12.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [bdcf5c5aef837b86928370c2aac604ed1e9aeb47]

INTEGRATION: CWS chart07 (1.6.12); FILE MERGED 2007/07/11 14:49:20 bm 1.6.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [c86a28607bbeabbdd16c4b1fcbf8560fe3e5edfb]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/11 14:49:20 bm 1.5.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [477fe3f24f8d9450c16f87ae18d168c7d597118d]

INTEGRATION: CWS chart07 (1.7.12); FILE MERGED 2007/06/25 16:18:36 bm 1.7.12.2: misleading comment corrected 2007/06/25 12:52:12 bm 1.7.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [398b6cb3bb91d48f4baab710230ee641b83c8b22]

INTEGRATION: CWS chart07 (1.10.12); FILE MERGED 2007/07/11 14:49:20 bm 1.10.12.5: #i69281# warnings removed 2007/07/09 14:22:02 bm 1.10.12.4: #i79087# getCurrentSelection: return the selected object, add/removeEventListener: use correct interface type 2007/07/05 15:09:06 bm 1.10.12.3: #i78872# call setModified() without locked mutex, because this call calls listeners 2007/06/25 13:57:40 bm 1.10.12.2: RESYNC: (1.10-1.11); FILE MERGED 2007/06/25 12:52:12 bm 1.10.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [9fc91a73a4c210f65aa45ce4a8be8062405f2256]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/11 14:49:19 bm 1.2.12.2: #i69281# warnings removed 2007/06/27 13:28:52 bm 1.2.12.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [610533334ad774f05719a858ae598624282797da]

INTEGRATION: CWS chart07 (1.9.12); FILE MERGED 2007/07/11 14:49:19 bm 1.9.12.3: #i69281# warnings removed 2007/07/06 16:50:24 bm 1.9.12.2: RESYNC: (1.9-1.10); FILE MERGED 2007/06/27 13:28:52 bm 1.9.12.1: some unused parameter warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [d0c1baef91fe8a34d6af759be41b006a6027feb2]

INTEGRATION: CWS chart07 (1.3.12); FILE MERGED 2007/07/11 16:53:41 bm 1.3.12.1: ASSERT_EXCEPTION: if no debug generate code that can be removed by compiler optimization


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [a0b920ba386456afbf27425f7008fe2819614ce7]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/07 12:01:48 bm 1.2.12.1: #i79087# give ignore-properties a state for deprecated properties


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [7dabeb225d3c472e449dffe85c550304b871debc]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/26 10:59:44 bm 1.2.12.1: #i78783# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [e7ee004ab17c6df8330ab8f1b2caa34da2f56eed]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/27 09:05:41 bm 1.2.12.2: implement XUndoHelper 2007/06/25 12:52:12 bm 1.2.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [4d705ab577c7c09fc3beaeaf820a5e40acbca7ba]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/25 12:52:12 bm 1.2.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [15f536d16c97746800ced28cbcaa9a4cb10686ae]

INTEGRATION: CWS chart07 (1.4.12); FILE MERGED 2007/07/04 16:47:34 bm 1.4.12.1: warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f4ccec1f9c844b0537c98f18a2d2ae6bffbef53a]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 14:42:15 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [95ca6c46cb18fd2b769d7a3f3d958191df596924]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:18:55 bm 1.2.12.2: #i69281# warnings removed 2007/06/26 20:26:55 bm 1.2.12.1: adaption to XDataProvider interface change


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [3cfc7aa55a199de5002257256d3b81563ad78bdd]

INTEGRATION: CWS chart07 (1.4.12); FILE MERGED 2007/07/12 05:29:01 bm 1.4.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [31c984e46ccf9623dc3d030c6591867318999f62]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/06/25 12:52:11 bm 1.5.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [7e8989dc9d9366d5c5b5c0f7139e85276f738dbb]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/25 12:52:11 bm 1.2.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [a11045562cd8c966b950b2dc778ac55803f52f96]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/26 11:19:05 bm 1.2.12.2: #i78793# fix for (broken) gcc 3.3 for Mac OS/X Panther applied 2007/06/25 12:52:11 bm 1.2.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [72c4b7a4b868e439204fe8887dbf43c13a73246b]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:38:14 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [505fe9919d3dd2e32494f0839a20c5f6a56f553c]

INTEGRATION: CWS chart07 (1.3.4); FILE MERGED 2007/07/10 13:38:14 bm 1.3.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [db843bd0bf0dd6c62caf9c02add341b1bcf239ab]

INTEGRATION: CWS chart07 (1.23.12); FILE MERGED 2007/07/12 13:22:10 iha 1.23.12.4: #i75867# Poor quality of OLE's alternative view for 3D scenes 2007/07/04 15:43:49 bm 1.23.12.3: #i78870# make requestQuickHelp more safe, check if model exists 2007/06/25 13:56:40 bm 1.23.12.2: RESYNC: (1.23-1.24); FILE MERGED 2007/06/25 12:52:11 bm 1.23.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [99fe940b03754a991ed90fa8492ac91e6d98c0c0]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/06 16:48:07 bm 1.2.12.4: RESYNC: (1.2-1.3); FILE MERGED 2007/06/29 08:49:15 bm 1.2.12.3: #i78792# gcc 3-3 problem fixed 2007/06/26 11:16:31 bm 1.2.12.2: #i78792# fix for (broken) gcc 3.3 for Mac OS/X Panther applied 2007/06/25 12:52:11 bm 1.2.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [52c32cc771222cdafa622ec746aa5aa04eb13021]

INTEGRATION: CWS chart07 (1.11.12); FILE MERGED 2007/06/25 12:52:11 bm 1.11.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [381be25b828f3ae1bf399b930f32716461a8844d]

INTEGRATION: CWS chart07 (1.27.12); FILE MERGED 2007/07/06 13:31:24 iha 1.27.12.3: #i8877# Error bar values limited to 0.1 and above 2007/06/26 11:12:52 bm 1.27.12.2: #i78791# fix for (broken) gcc 3.3 for Mac OS/X Panther applied 2007/06/25 12:52:11 bm 1.27.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [227e3b3eaf0d2e3fcb5632857063e6fa62f38205]

INTEGRATION: CWS chart07 (1.8.12); FILE MERGED 2007/06/25 12:52:11 bm 1.8.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [df6669c25670abbf4d9918a404146bb2fe8ee321]

INTEGRATION: CWS chart07 (1.11.12); FILE MERGED 2007/07/13 11:20:44 iha 1.11.12.4: cleanup data label controls (one implementation only) 2007/07/06 13:30:40 iha 1.11.12.3: #i8877# Error bar values limited to 0.1 and above 2007/07/05 12:52:32 iha 1.11.12.2: cleanup statistic controls (one implementation only) - prepare for issue 8877 2007/06/25 12:52:11 bm 1.11.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [398e88e0601693baebbcff03e08fe6201a3cadb1]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/06/26 11:09:57 bm 1.5.12.2: #i78790# fix for (broken) gcc 3.3 for Mac OS/X Panther applied 2007/06/25 12:52:11 bm 1.5.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [777828f6499be83330503ed2e8459870922ea301]

INTEGRATION: CWS chart07 (1.7.12); FILE MERGED 2007/06/25 12:52:10 bm 1.7.12.1: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [e98e2b33453a5b4d811474691bd93d9a9f90ef7f]

INTEGRATION: CWS chart07 (1.21.12); FILE MERGED 2007/07/18 15:30:47 bm 1.21.12.12: #i78870# re-added the check for the models existence for ending the range highlighting. This is needed for avoiding a crash in the API tests when they close the model. In this situation m_aModel is already 0. 2007/07/18 13:04:04 iha 1.21.12.11: #i79753# crash when leaving chart while edit mode (model reference was deleted to early) 2007/07/11 16:54:19 bm 1.21.12.10: #i69281# warnings removed 2007/07/05 14:04:19 bm 1.21.12.9: #i79087# Close frame when the model is closed 2007/07/04 16:49:42 bm 1.21.12.8: #i78870# fix closing crashes (when document is closed via XCloseable::close()) 2007/07/04 09:32:09 bm 1.21.12.7: issue number to comment added 2007/07/03 11:41:54 bm 1.21.12.6: createElement still necessary for toolbars 2007/06/26 11:07:44 bm 1.21.12.5: #i78789# fix for (broken) gcc 3.3 for Mac OS/X Panther applied 2007/06/25 13:56:32 bm 1.21.12.4: RESYNC: (1.21-1.22); FILE MERGED 2007/06/25 12:52:10 bm 1.21.12.3: #i74653# store undo manager at model to be able to do an undo even after inplace re-activation 2007/06/21 16:34:33 bm 1.21.12.2: unused parameter warnings removed 2007/06/14 07:08:54 bm 1.21.12.1: createElement for the layout manager is no longer necessary, requestElement suffices


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [46238e43a77bc9ea44a8bad62316e4c196e2a4e7]

INTEGRATION: CWS chart07 (1.9.12); FILE MERGED 2007/07/10 11:57:29 bm 1.9.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [702bfaebd20a27d120fe032447ce00f09c49aa13]

INTEGRATION: CWS chart07 (1.16.12); FILE MERGED 2007/07/04 16:46:34 bm 1.16.12.1: warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [e6b546d39d2a51d33f164103d3ce4edda5c4dda0]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 11:57:29 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [41e1c64c475a21199225cd3cf78c213fee9bf0aa]

INTEGRATION: CWS chart07 (1.6.12); FILE MERGED 2007/07/10 11:57:29 bm 1.6.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [d94286026dbcb26d04c56bcd2e969f36110fc01c]

INTEGRATION: CWS chart07 (1.9.12); FILE MERGED 2007/07/13 13:02:50 iha 1.9.12.2: #i78944# change all data labels at once 2007/07/10 11:57:29 bm 1.9.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [90b190346f093ef06f8c6df808f5b36fe507aafa]

INTEGRATION: CWS chart07 (1.14.12); FILE MERGED 2007/07/10 11:57:29 bm 1.14.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [85aeab793c17801a454cf3979751fafe58db1ea8]

INTEGRATION: CWS chart07 (1.10.12); FILE MERGED 2007/07/10 11:57:29 bm 1.10.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [3aeead6680e7ee63b415022e76bbd982f02a0a13]

INTEGRATION: CWS chart07 (1.14.12); FILE MERGED 2007/07/13 13:01:50 iha 1.14.12.2: #i78944# change all data labels at once 2007/07/10 11:57:29 bm 1.14.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [48b8147d10952191ae4edf29654dc59d56dfb30c]

INTEGRATION: CWS chart07 (1.6.12); FILE MERGED 2007/07/06 13:29:43 iha 1.6.12.1: #i8877# Error bar values limited to 0.1 and above


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [8649741c0fc12d2b85a9873bfc09c6f2e09b9e1f]

INTEGRATION: CWS chart07 (1.3.136); FILE MERGED 2007/07/13 11:19:02 iha 1.3.136.1: cleanup data label controls (one implementation only)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [34554be4d008a92a341db43eca4f20b94024b18c]

INTEGRATION: CWS chart07 (1.8.12); FILE MERGED 2007/06/21 11:26:34 bm 1.8.12.1: #i69281# warning removed (patch from maoyg)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [2dcf1871f92fa7ea57f75fc65aa9d170141b71b7]

INTEGRATION: CWS chart07 (1.9.12); FILE MERGED 2007/07/13 13:01:15 iha 1.9.12.1: #i78944# change all data labels at once


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [5a080e654d8868f6656bcb3e0792748fd094adaf]

INTEGRATION: CWS chart07 (1.15.12); FILE MERGED 2007/07/10 11:57:29 bm 1.15.12.2: #i69281# warnings removed 2007/06/21 11:26:01 bm 1.15.12.1: #i69281# warning removed (patch from maoyg)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [af5a8c433a3ea8ab7af8f881a3a18d98e61ae5d7]

INTEGRATION: CWS chart07 (1.7.8); FILE MERGED 2007/07/10 11:57:29 bm 1.7.8.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [06b58b6c39adcdc21ed28977c60ceae16ce5eeb2]

INTEGRATION: CWS chart07 (1.4.12); FILE MERGED 2007/06/21 09:29:22 bm 1.4.12.1: #i69281# warning removed (patch from maoyg)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f22dfb5fae3db9527d1061e484e30d6db5bf6cce]

INTEGRATION: CWS chart07 (1.8.12); FILE MERGED 2007/07/10 11:57:29 bm 1.8.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [c8b6e3a5539033eff6d7f2e3e49ea31499b5bb8a]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/12 14:39:10 bm 1.2.12.1: #i79531# do not disable the radio buttons and checkboxes when a range is invalid, as those control can make a range valid again, at least in Writer


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f40c9f3cbafdc34081bc9021a4df498bc8e21317]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/13 08:07:27 bm 1.2.12.4: #i79531# instead of enabling the controls for an invalid range name, invalidate the controls when the range is valid, but a change to the control would render the range invalid together with the parameters 2007/07/12 14:40:15 bm 1.2.12.3: #i79531# do not disable the radio buttons and checkboxes when a range is invalid, as those control can make a range valid again, at least in Writer 2007/06/28 06:15:29 bm 1.2.12.2: use new XDataProvider interfaces for checking validity of ranges 2007/06/26 11:05:03 bm 1.2.12.1: #i78788# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [d8b63d5600800f06076211ab6e8a2a5412413195]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/21 15:50:09 bm 1.2.12.1: #i76760# don't update the model with empty ranges before the range choser is opened


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [6b403a5cd6f9665f84656b66b4a6152d1f375733]

INTEGRATION: CWS chart07 (1.3.136); FILE MERGED 2007/07/13 11:16:41 iha 1.3.136.1: cleanup data label controls (one implementation only)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [88170fef48c85d9bc47379d81f23ae6470cdb35b]

INTEGRATION: CWS chart07 (1.7.12); FILE MERGED 2007/07/13 11:17:12 iha 1.7.12.1: cleanup data label controls (one implementation only)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [324d38eb1a45f4da788cab3fe72bbbb1cbbe072d]

INTEGRATION: CWS chart07 (1.3.4); FILE MERGED 2007/07/10 13:38:14 bm 1.3.4.2: #i69281# warnings removed 2007/07/10 11:57:29 bm 1.3.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [4d362dc188a6ad8e40691176cc0374fd611d1122]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/11 16:43:16 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [b5f61d95a928cd076b5e356338d037cf501178cc]

INTEGRATION: CWS chart07 (1.3.4); FILE MERGED 2007/07/11 15:48:28 bm 1.3.4.3: #i69281# warnings removed 2007/07/11 14:49:19 bm 1.3.4.2: #i69281# warnings removed 2007/07/10 11:57:28 bm 1.3.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [a155294951a37d9090f9fddd9e8e27acc61dd051]

INTEGRATION: CWS chart07 (1.3.4); FILE MERGED 2007/07/10 15:24:14 bm 1.3.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [711325d2585b3e0f94d325668b58ea2bc9a93f35]

INTEGRATION: CWS chart07 (1.1.2); FILE ADDED 2007/07/05 12:49:00 iha 1.1.2.1: cleanup statistic controls (one implementation only) - prepare for issue 8877


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [81a5949af4dfddf96db567fd9b7e85fe8c590f16]

INTEGRATION: CWS chart07 (1.1.2); FILE ADDED 2007/07/10 13:38:13 bm 1.1.2.5: #i69281# warnings removed 2007/07/09 13:06:51 iha 1.1.2.4: #i30955# Steps for Percentage and Error margin 2007/07/06 13:47:11 iha 1.1.2.3: switch on error indicator when errorstyle is selected 2007/07/06 13:26:39 iha 1.1.2.2: #i8877# Error bar values limited to 0.1 and above 2007/07/05 12:47:52 iha 1.1.2.1: cleanup statistic controls (one implementation only) - prepare for issue 8877


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [7d8d7c39d4763443e3803119b6e3917410a36984]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/13 11:14:05 iha 1.5.12.1: cleanup data label controls (one implementation only)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [78b157b894f3e5587bf3d4bc7ea91a7c1e0de8a8]

INTEGRATION: CWS chart07 (1.1.4); FILE ADDED 2007/07/13 11:09:41 iha 1.1.4.2: cleanup data label controls (one implementation only) 2007/06/28 16:23:18 iha 1.1.4.1: file res_DataLabel_IDs.hrc was added on branch cws_src680_chart07 on 2007-07-13 11:09:41 +0000


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [caae7da65255b834202631a57d847dcd3129930d]

INTEGRATION: CWS chart07 (1.1.4); FILE ADDED 2007/07/13 10:59:03 iha 1.1.4.2: cleanup data label controls (one implementation only) 2007/06/28 16:21:43 iha 1.1.4.1: file res_DataLabel.hxx was added on branch cws_src680_chart07 on 2007-07-13 10:59:03 +0000


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [510eaf1a122d84fea4c159e7231b86925a172a8e]

INTEGRATION: CWS chart07 (1.1.4); FILE ADDED 2007/07/13 11:03:13 iha 1.1.4.2: cleanup data label controls (one implementation only) 2007/06/28 16:22:50 iha 1.1.4.1: file res_DataLabel.cxx was added on branch cws_src680_chart07 on 2007-07-13 11:03:13 +0000


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [143fcdb0dcf5a4fd6582132d73ff17b8755a376c]

INTEGRATION: CWS chart07 (1.10.12); FILE MERGED 2007/07/13 11:11:14 iha 1.10.12.3: cleanup data label controls (one implementation only) 2007/07/06 16:46:48 bm 1.10.12.2: RESYNC: (1.10-1.11); FILE MERGED 2007/07/05 12:50:14 iha 1.10.12.1: cleanup statistic controls (one implementation only) - prepare for issue 8877


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [fecbd869b995a2db56fcc5bd3fbc7ac8fafbbd68]

INTEGRATION: CWS chart07 (1.16.12); FILE MERGED 2007/07/13 11:18:01 iha 1.16.12.3: cleanup data label controls (one implementation only) 2007/07/06 13:29:12 iha 1.16.12.2: #i8877# Error bar values limited to 0.1 and above 2007/07/05 12:57:35 iha 1.16.12.1: cleanup statistic controls (one implementation only) - prepare for issue 8877


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [3b25505cb5fe7b92b443e643cf8461a9458b8e97]

INTEGRATION: CWS chart07 (1.3.12); FILE MERGED 2007/07/13 11:13:17 iha 1.3.12.1: cleanup data label controls (one implementation only)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [6c43906444278dab6e63f99284225a620acec9d1]

INTEGRATION: CWS chart07 (1.7.12); FILE MERGED 2007/07/13 11:20:01 iha 1.7.12.1: cleanup data label controls (one implementation only)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [eaff133809d2446d1633a606f851efa8a4f626eb]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 11:57:28 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [7c079e0c3ad01e0188af7253a13fabd931fdc0a7]

INTEGRATION: CWS chart07 (1.3.12); FILE MERGED 2007/07/13 11:14:44 iha 1.3.12.2: cleanup data label controls (one implementation only) 2007/07/05 12:56:40 iha 1.3.12.1: cleanup statistic controls (one implementation only) - prepare for issue 8877


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [548a8d866786f2f298f1dd34644be5800007b052]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 11:57:28 bm 1.2.12.2: #i69281# warnings removed 2007/06/28 06:15:29 bm 1.2.12.1: use new XDataProvider interfaces for checking validity of ranges


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [c24594caf30fe10c662474e3d943d8a506f49ec6]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/06 16:45:56 bm 1.2.12.2: RESYNC: (1.2-1.3); FILE MERGED 2007/06/26 10:51:48 bm 1.2.12.1: #i78787# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [e5279c67d62afdcd355c0f5f1165d7d5afd011ce]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/21 16:54:02 bm 1.2.12.1: code review: constness, empty throw removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [0c18a42be77f894b3f8897dd55bf53ea278c2935]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 15:21:56 bm 1.2.12.2: #i69281# warnings removed 2007/07/10 15:21:33 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [a5ffa110b66987bee6c76dd825a83cd80575dfe0]

INTEGRATION: CWS chart07 (1.3.8); FILE MERGED 2007/07/10 15:21:02 bm 1.3.8.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f6109aef2fa992ccafb085b3293c60fde4c49337]

INTEGRATION: CWS chart07 (1.3.4); FILE MERGED 2007/07/10 11:57:28 bm 1.3.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [2899cbb697751871f27c8304b31c543ce3cf6514]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/09 15:43:47 bm 1.2.12.2: #i79087# allow creation of symbols via URLs other than graphic manager URLs (e.g. file URLs) 2007/06/26 10:02:12 bm 1.2.12.1: #i78786# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [ad81e1ad5ac7dd051d988ef973409516ae1a0ff2]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/04 16:44:17 bm 1.2.12.1: warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [e3155a529ac20dd0a73b90a32726dcf55ab071ff]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/26 09:59:19 bm 1.2.12.1: #i78786# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [a5235616c0fd389d0ba697ee5783aaa154fab974]

INTEGRATION: CWS chart07 (1.3.8); FILE MERGED 2007/07/10 11:57:28 bm 1.3.8.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [a109c4ec810563f900f5769d69f41e5eb00fad76]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 13:38:13 bm 1.2.12.2: #i69281# warnings removed 2007/07/10 11:57:28 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [dff85b55783c0cffcb90589fd0a4880b15597a21]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/10 11:57:28 bm 1.5.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [1f96fcf1770d492834dcc6ddfa9a2081494c17ff]

INTEGRATION: CWS chart07 (1.6.4); FILE MERGED 2007/07/07 11:55:52 bm 1.6.4.1: #i79349# set Expansion correctly


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [96cb6509b0952fd40831ae4f54cad679b0d4646c]

INTEGRATION: CWS chart07 (1.7.4); FILE MERGED 2007/07/10 11:57:28 bm 1.7.4.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [742a963965d6e28d7cc01c98f1851c18e417581e]

INTEGRATION: CWS chart07 (1.6.12); FILE MERGED 2007/07/10 15:17:01 bm 1.6.12.3: #i69281# warnings removed 2007/07/10 11:57:28 bm 1.6.12.2: #i69281# warnings removed 2007/07/09 15:23:37 bm 1.6.12.1: #i79087# CTOR: pass eType correctly for data points


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [b5a0fcd6370d649fb2bd975caceac767a291acae]

INTEGRATION: CWS chart07 (1.6.8); FILE MERGED 2007/07/10 15:10:21 bm 1.6.8.2: #i69281# warnings removed 2007/07/10 11:57:28 bm 1.6.8.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [2fca04872f618c1983a6457e249e29f99f58c532]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/02 21:34:07 bm 1.5.12.2: #i78873# fire event listeners when data changes 2007/06/26 09:57:04 bm 1.5.12.1: #i78785# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [f17f1dd97809ef3006d39cecea0962b142117889]

INTEGRATION: CWS chart07 (1.5.12); FILE MERGED 2007/07/10 11:57:28 bm 1.5.12.2: #i69281# warnings removed 2007/07/04 14:27:01 iha 1.5.12.1: #i79224# switching off axis labels is not saved and reloaded


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [30701d2f1fd0ad3d4778c8e3adba9ef0314f48c1]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 11:57:27 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [18cfb1f18772741629cb83b410023066b7b4a457]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/06/26 11:02:31 bm 1.2.12.1: #i78784# fix for (broken) gcc 3.3 for Mac OS/X Panther applied


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [ecc14c82d127e7c6a7768543e3c8e9b7a41f4ee3]

INTEGRATION: CWS chart07 (1.2.12); FILE MERGED 2007/07/10 14:02:51 bm 1.2.12.2: #i69281# warnings removed 2007/07/10 11:57:27 bm 1.2.12.1: #i69281# warnings removed


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [ba1cc0b8a2de01469168ace5aca1fc8537a01b77]

INTEGRATION: CWS chart07 (1.7.24); FILE MERGED 2007/07/13 15:15:10 nn 1.7.24.2: #i79013# implement create...Possible methods 2007/06/26 16:16:12 bm 1.7.24.1: XDataProvider: offer an API for reliably returning if it is possible to create data with the given arguments, not yet implemented (only trivial)


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [d03dc8e9c224960f162f237e38c576aff346346a]

INTEGRATION: CWS chart07 (1.26.24); FILE MERGED 2007/07/12 17:33:30 nn 1.26.24.1: #i76055# limit whole columns/rows to used area


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [5e0007f62eb1070ca62a8b83e932134388ed7b95]

INTEGRATION: CWS chart07 (1.28.24); FILE MERGED 2007/06/12 18:33:30 nn 1.28.24.1: #i78086# call CreateChartListener also when anchored to sheet


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [d200485a4d8ae82ffc0bf0a8be2ad22a63931fcf]

INTEGRATION: CWS chart07 (1.27.24); FILE MERGED 2007/06/12 18:33:30 nn 1.27.24.1: #i78086# call CreateChartListener also when anchored to sheet


2007-07-25  Rüdiger Timm  <rt@openoffice.org>  [642136b05b722dda0d007aab530c52266c795d45]

INTEGRATION: CWS chart07 (1.4.24); FILE MERGED 2007/06/26 16:13:51 bm 1.4.24.1: XDataProvider: offer an API for reliably returning if it is possible to create data with the given arguments


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [903d6bb74f62314b0d67841aa753644b120016bf]

INTEGRATION: CWS complextest1 (1.6.112); FILE MERGED 2007/06/28 16:05:38 cn 1.6.112.1: #i78349# fix bug in makefile


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [4ff925210a364c0a29b71d07639476518beea820]

INTEGRATION: CWS complextest1 (1.5.112); FILE MERGED 2007/07/16 13:29:15 sg 1.5.112.1: #i78662#fixed makefile bug


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [32ecf2699f7297f441acffdf5e10463c540190c4]

INTEGRATION: CWS complextest1 (1.5.112); FILE MERGED 2007/07/16 13:30:03 sg 1.5.112.1: #i78662#fixed makefile bug


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [48767a5c6d722b5b6ca4aa1bd4f2c094dbdde391]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/22 14:53:41 sg 1.1.2.1: #i78662# distributed tests for calc


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [9fdbfc4bc64a5575d64e3181abfd45c91f52519a]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/22 14:53:30 sg 1.1.2.1: #i78662# distributed tests for calc


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [c2c292eb848e57b12c45f786d7e3d599837f80fa]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/22 14:54:23 sg 1.1.2.1: #i78662# distributed tests for calc


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [eda1f0778acef358a04a3c3750698c29b8d030ef]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/22 14:54:53 sg 1.1.2.1: #i78662# distributed tests for calc


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [f15bade9a10a9da96413ffa5dc6ec27ed8af0d96]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/22 14:54:42 sg 1.1.2.1: #i78662# distributed tests for calc


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [75652423a824820615a4e12a436f2362e5c8a986]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/28 15:37:50 cn 1.1.2.1: #i78349# fix bug in makefile and add this file to new chart2


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [2a575da33cb8e154a7e6698f7a3870068a6e358f]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/28 15:37:39 cn 1.1.2.1: #i78349# fix bug in makefile and add this file to new chart2


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [ae05fd74a913aed0e258f6a2b29bc47e0aa6b7ad]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/28 15:36:45 cn 1.1.2.1: #i78349# fix bug in makefile and add this file to new chart2


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [1be198d235bd174ce3580f9ff7f968efd0ad482e]

INTEGRATION: CWS complextest1 (1.1.2); FILE ADDED 2007/06/28 15:35:45 cn 1.1.2.1: #i78349# fix bug in makefile and add this files to new chart2 project


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [5aae12816f048f65bfb6c675de61c5723fdfdc2c]

INTEGRATION: CWS complextest1 (1.4.28); FILE MERGED 2007/07/16 10:52:19 sg 1.4.28.1: #i78662#fixed makefile bug


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [b7436e24bb8bad8da03aed9f479363ab697d4d12]

INTEGRATION: CWS celltrans01 (1.19.62); FILE MERGED 2007/07/18 13:17:13 er 1.19.62.3: exceptionfiles of course also need to be present in the list of objects 2007/07/18 10:45:09 er 1.19.62.2: need to compile cellkeytranslator.cxx with exceptions because of STL 2007/07/17 15:52:30 kohei 1.19.62.1: committed the patch from i77996.


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [e24cd88a9c4c60667bc9c8ba54f7614bef0aef1d]

INTEGRATION: CWS celltrans01 (1.24.28); FILE MERGED 2007/07/17 15:52:30 kohei 1.24.28.1: committed the patch from i77996.


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [0c19c09bb7a79d04ce45c6e1f263696bf6a8117b]

INTEGRATION: CWS celltrans01 (1.46.28); FILE MERGED 2007/07/17 15:52:30 kohei 1.46.28.1: committed the patch from i77996.


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [9ce1ecb19fb4425e27227e366e4c34e6dc4375f4]

INTEGRATION: CWS celltrans01 (1.1.2); FILE ADDED 2007/07/18 13:19:41 er 1.1.2.3: use Opcode instead of OpCodeEnum; added some const correctness 2007/07/18 10:47:12 er 1.1.2.2: do not specify empty throw() 2007/07/17 15:52:30 kohei 1.1.2.1: committed the patch from i77996.


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [bcc81a777993c8c5e4dfe2d1358aa3b4c6bc01d0]

INTEGRATION: CWS celltrans01 (1.1.2); FILE ADDED 2007/07/18 13:28:57 kohei 1.1.2.4: just a minor comment fix.  There is now only one transKeyword function. 2007/07/18 13:19:41 er 1.1.2.3: use Opcode instead of OpCodeEnum; added some const correctness 2007/07/18 10:47:12 er 1.1.2.2: do not specify empty throw() 2007/07/17 15:52:29 kohei 1.1.2.1: committed the patch from i77996.


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [fa2bf9d095e31244e17b6440e61ebb082e140050]

INTEGRATION: CWS celltrans01 (1.48.76); FILE MERGED 2007/07/17 15:52:29 kohei 1.48.76.1: committed the patch from i77996.


2007-07-24  Rüdiger Timm  <rt@openoffice.org>  [bbde4665b17640178bcc5db82c7cdc6c623a5929]

INTEGRATION: CWS celltrans01 (1.31.32); FILE MERGED 2007/07/17 15:52:29 kohei 1.31.32.1: committed the patch from i77996.


2007-07-20  Vladimir Glazounov  <vg@openoffice.org>  [846a6ea6ec15f6de700ad550bad633039d59999d]

#i10000# include datetime.hxx missing


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [fa17afea8d594a3ccb808a1f9f1f600f1e3d6260]

INTEGRATION: CWS aw051 (1.103.38); FILE MERGED 2007/06/22 09:33:15 aw 1.103.38.1: changes after resync: warning free


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [d580701a9250482eb8aeabbd6c9b8e7be0a30729]

INTEGRATION: CWS aw051 (1.28.42); FILE MERGED 2007/06/22 08:58:56 aw 1.28.42.1: changes after resync: warning free


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [0f24c260176f56d9511019b3f21ae5b64ffa01a1]

INTEGRATION: CWS aw051 (1.7.64); FILE MERGED 2007/06/09 11:50:16 aw 1.7.64.1: #i77162# Adaptions to changed B2DPolygon bezier handling


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [d470892b2e9df5d6bb120ee4b69e928bfe6c1b26]

INTEGRATION: CWS aw051 (1.17.4); FILE MERGED 2007/06/22 08:58:56 aw 1.17.4.1: changes after resync: warning free


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [897261d560ee769ba9432707f4f97e1c53d84791]

INTEGRATION: CWS tl38 (1.34.10); FILE MERGED 2007/06/27 08:22:01 tl 1.34.10.2: RESYNC: (1.34-1.35); FILE MERGED 2007/06/15 10:24:37 tl 1.34.10.1: #i78017# change char attribute behaviour for font-height, -weight and -posture


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [ce9754804fafa2a663fd1ce56c041ef7d292b810]

INTEGRATION: CWS tl38 (1.31.8); FILE MERGED 2007/06/27 08:21:51 tl 1.31.8.2: RESYNC: (1.31-1.32); FILE MERGED 2007/06/15 10:24:37 tl 1.31.8.1: #i78017# change char attribute behaviour for font-height, -weight and -posture


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [189d8db260a76330847e98e299b9db76553d1141]

INTEGRATION: CWS tl38 (1.30.10); FILE MERGED 2007/06/27 08:10:30 tl 1.30.10.2: RESYNC: (1.30-1.31); FILE MERGED 2007/06/15 10:24:37 tl 1.30.10.1: #i78017# change char attribute behaviour for font-height, -weight and -posture


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [1ea3362f875cacdefc84a1e8fea2e959efc6119a]

INTEGRATION: CWS tl38 (1.69.62); FILE MERGED 2007/07/03 12:37:25 tl 1.69.62.1: #i78661# no auto-capitalization of first sentence in Calc


2007-07-18  Oliver Bolte  <obo@openoffice.org>  [b9b7e1941ebbb6b1b08f88f0d2879b60d59e12aa]

INTEGRATION: CWS fwk67 (1.40.62); FILE MERGED 2007/07/04 12:35:38 cd 1.40.62.1: #i78139# Range chooser dialog need special flag for chart inplace mode


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [1051aa549469af5ff39983c2609c3d14fb06123c]

INTEGRATION: CWS basemodelrefactoring (1.63.20); FILE MERGED 2007/05/29 21:41:42 mba 1.63.20.3: RESYNC: (1.64-1.66); FILE MERGED 2007/03/25 02:46:29 mba 1.63.20.2: RESYNC: (1.63-1.64); FILE MERGED 2007/03/23 13:46:38 mba 1.63.20.1: #i75677#: SetPrinter must be callable from API


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [0cc1f2d6fddd580f90e2daf8c65488e01144c812]

INTEGRATION: CWS basemodelrefactoring (1.31.22); FILE MERGED 2007/05/29 21:39:37 mba 1.31.22.4: RESYNC: (1.34-1.35); FILE MERGED 2007/05/09 00:31:55 mba 1.31.22.3: RESYNC: (1.33-1.34); FILE MERGED 2007/03/25 02:43:47 mba 1.31.22.2: RESYNC: (1.31-1.33); FILE MERGED 2007/03/23 13:46:38 mba 1.31.22.1: #i75677#: SetPrinter must be callable from API


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [f3807b9658ddcb528dfb04949502471c1c7d0be6]

INTEGRATION: CWS basemodelrefactoring (1.25.8); FILE MERGED 2007/06/13 12:22:23 mba 1.25.8.2: #i36993#: gcc4 warning fixed 2007/03/29 19:45:46 mba 1.25.8.1: #i75677#: settings extracted from DocInfo


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [f2e89d2de2f2e615a9d667816438c229a6b48774]

INTEGRATION: CWS basemodelrefactoring (1.26.20); FILE MERGED 2007/05/29 21:31:02 mba 1.26.20.3: RESYNC: (1.27-1.28); FILE MERGED 2007/03/25 02:21:20 mba 1.26.20.2: RESYNC: (1.26-1.27); FILE MERGED 2007/03/23 13:46:29 mba 1.26.20.1: #i75677#: SetPrinter must be callable from API


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [88086c178aecb7af8acd876224f7ec4e30dfd4f9]

INTEGRATION: CWS basemodelrefactoring (1.9.22); FILE MERGED 2007/03/25 02:20:57 mba 1.9.22.2: RESYNC: (1.9-1.10); FILE MERGED 2007/03/23 13:46:29 mba 1.9.22.1: #i75677#: SetPrinter must be callable from API


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [9a3336a33754cb135914cac8408a370f4e296f8e]

INTEGRATION: CWS basemodelrefactoring (1.29.30); FILE MERGED 2007/04/06 19:32:08 mba 1.29.30.1: #i75677#: classes SfxStamp and TimeStamp removed


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [5bd5e045ed25152624cb28e101ce51b6f6155d3e]

INTEGRATION: CWS basemodelrefactoring (1.33.30); FILE MERGED 2007/05/29 21:11:41 mba 1.33.30.2: RESYNC: (1.33-1.34); FILE MERGED 2007/04/06 19:31:21 mba 1.33.30.1: #i75677#: classes SfxStamp and TimeStamp removed


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [5cba024db21ed185d74c48c0f732bc0377e08fc3]

INTEGRATION: CWS basemodelrefactoring (1.7.30); FILE MERGED 2007/04/19 09:05:22 mba 1.7.30.2: wrong folder separator 2007/04/17 18:42:59 mba 1.7.30.1: missing include in NonPro


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [46b2048586b36f8259664dd2ec5384a8c1cb00b1]

INTEGRATION: CWS basemodelrefactoring (1.30.30); FILE MERGED 2007/03/25 17:18:38 mba 1.30.30.1: #i75677#: refactor DocInfo


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [c0aa9f9ddde51536bbe39d4f7d011e9234dc22b3]

INTEGRATION: CWS basemodelrefactoring (1.116.80); FILE MERGED 2007/05/29 21:04:39 mba 1.116.80.3: RESYNC: (1.116-1.118); FILE MERGED 2007/04/06 19:30:06 mba 1.116.80.2: #i75677#: superfluous includes in docfile.hxx removed 2007/03/24 19:19:18 mba 1.116.80.1: #i75677#: assignment of DocInfo already broadcasts hint


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [5430b91b6a0f91d62fb5be679ebe5d5faf6c82b2]

INTEGRATION: CWS basemodelrefactoring (1.22.28); FILE MERGED 2007/05/09 00:05:46 mba 1.22.28.2: RESYNC: (1.22-1.23); FILE MERGED 2007/04/06 19:29:40 mba 1.22.28.1: #i75677#: superfluous includes in docfile.hxx removed


2007-07-17  Oliver Bolte  <obo@openoffice.org>  [c70b68b9db274c81d2cf493e925b24622a345cbe]

INTEGRATION: CWS basemodelrefactoring (1.74.120); FILE MERGED 2007/05/29 20:59:46 mba 1.74.120.3: RESYNC: (1.75-1.77); FILE MERGED 2007/03/25 01:18:55 mba 1.74.120.2: RESYNC: (1.74-1.75); FILE MERGED 2007/03/23 16:16:00 mba 1.74.120.1: #i75677#: remove obsolete settings


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [bf02d022a1262a19b8591cb03544ab14a11c6975]

INTEGRATION: CWS dr55 (1.3.574); FILE MERGED 2007/06/19 18:32:25 nn 1.3.574.1: #i73123# extend insertbar, remove insertobjectbar


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [d2eb7b19b1dd0284c62bab5fb13811b0b6408666]

INTEGRATION: CWS dr55 (1.3.714); FILE MERGED 2007/06/29 13:55:14 er 1.3.714.1: #i56202# Ctrl+Prime (quoteleft) toggles formula view; merged from branch cws_src680_msba02; contributed by Muthu Subramanian <muthusuba@ooo>


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [9c2c2f6b25db5242669e44e33797dc27e93ab6d6]

INTEGRATION: CWS dr55 (1.35.40); FILE MERGED 2007/06/21 18:04:10 nn 1.35.40.1: #i76709# PasteFile: allow linked and non-linked graphics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [58620a8277447ae68e2ae73ede8e27a99d2aca0b]

INTEGRATION: CWS dr55 (1.20.52); FILE MERGED 2007/06/29 13:55:14 er 1.20.52.1: #i56202# Ctrl+Prime (quoteleft) toggles formula view; merged from branch cws_src680_msba02; contributed by Muthu Subramanian <muthusuba@ooo>


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [309b5a7650af36c5ba93321cd6d6363693b5b859]

INTEGRATION: CWS dr55 (1.66.28); FILE MERGED 2007/06/22 12:45:19 tbe 1.66.28.1: #i78488# Warn if printing output is empty


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [b15c36790c820457d6f5ed8233ac81de84c23abc]

INTEGRATION: CWS dr55 (1.33.32); FILE MERGED 2007/06/29 13:55:14 er 1.33.32.1: #i56202# Ctrl+Prime (quoteleft) toggles formula view; merged from branch cws_src680_msba02; contributed by Muthu Subramanian <muthusuba@ooo>


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [6b652b43f46317e0c2924ce143aee88cfdfe6139]

INTEGRATION: CWS dr55 (1.54.30); FILE MERGED 2007/06/20 19:30:42 er 1.54.30.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [647778654006cc3b467dd34c6f0e7057657b90b2]

INTEGRATION: CWS dr55 (1.31.32); FILE MERGED 2007/06/20 19:30:42 er 1.31.32.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [fea3d48eddda5bed5059848f449ea4045e988e5a]

INTEGRATION: CWS dr55 (1.50.40); FILE MERGED 2007/06/20 19:30:41 er 1.50.40.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [05180f21d11a431c8a4fcee06ae320589cf8e407]

INTEGRATION: CWS dr55 (1.35.40); FILE MERGED 2007/06/22 12:44:27 tbe 1.35.40.2: #i78488# Warn if printing output is empty 2007/06/18 12:27:50 tbe 1.35.40.1: #i25278# print default suggestions


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [853a520dbe73815e6910eb6fcf2c67e68e78c2e3]

INTEGRATION: CWS dr55 (1.19.42); FILE MERGED 2007/06/28 13:58:02 dr 1.19.42.2: #i66550# disabled 2007/06/15 15:41:21 dr 1.19.42.1: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [00919b46716c325d30a8cdee3fd52e1175f4eab8]

INTEGRATION: CWS dr55 (1.34.16); FILE MERGED 2007/06/20 19:30:41 er 1.34.16.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [46c64a17616d82b6208d4e5cc85394d41c976c95]

INTEGRATION: CWS dr55 (1.18.74); FILE MERGED 2007/06/28 13:58:02 dr 1.18.74.3: #i66550# disabled 2007/06/15 15:41:21 dr 1.18.74.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:56 dr 1.18.74.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [248f9b169863e4248806cca78dc6f0bb4b11202c]

INTEGRATION: CWS dr55 (1.17.74); FILE MERGED 2007/06/27 13:18:54 er 1.17.74.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [67ec1884b86e4f8b312dd6c44e6a91a5bd45f9a7]

INTEGRATION: CWS dr55 (1.103.28); FILE MERGED 2007/06/27 13:18:54 er 1.103.28.2: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion 2007/06/13 14:35:56 dr 1.103.28.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [d6061c836865864a02ae1661f1f3c0949d118001]

INTEGRATION: CWS dr55 (1.86.56); FILE MERGED 2007/06/22 12:51:46 tbe 1.86.56.2: #i78488# Warn if printing output is empty 2007/06/13 14:35:56 dr 1.86.56.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [c59c097345d7e2eec5cbedcd1c8dd2f409e666de]

INTEGRATION: CWS dr55 (1.66.56); FILE MERGED 2007/06/28 15:06:09 dr 1.66.56.2: RESYNC: (1.66-1.67); FILE MERGED 2007/06/27 11:48:55 er 1.66.56.1: #i47644# new error strings #DIV/0! #NUM! #NULL! and lots of ugly comments cleanup


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [718f6e0fdceab79e71af11b3b2d7717afef6e9cf]

INTEGRATION: CWS dr55 (1.45.56); FILE MERGED 2007/06/12 14:08:14 dr 1.45.56.1: #i65655# wrong tip help


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [9915e5350130e6a1f9cc1dd26fbc3ef1fea84ccb]

INTEGRATION: CWS dr55 (1.10.82); FILE MERGED 2007/06/22 12:43:25 tbe 1.10.82.1: #i78488# Warn if printing output is empty


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [cc7f0a781f300549d10014b8dabc8d2fe612fc10]

INTEGRATION: CWS dr55 (1.23.82); FILE MERGED 2007/06/20 19:30:41 er 1.23.82.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [ca7c696713a7fb9a6b2b553c307d2160a6255415]

INTEGRATION: CWS dr55 (1.7.84); FILE MERGED 2007/06/28 13:58:02 dr 1.7.84.3: #i66550# disabled 2007/06/15 15:41:21 dr 1.7.84.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:56 dr 1.7.84.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [3f4152ee886af276d0b221a37bad8470d8d845ef]

INTEGRATION: CWS dr55 (1.42.30); FILE MERGED 2007/06/22 12:42:49 tbe 1.42.30.1: #i78488# Warn if printing output is empty


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [8d5f3fd6489c4def76228906aa6809c138eb775d]

INTEGRATION: CWS dr55 (1.28.84); FILE MERGED 2007/06/21 13:58:55 dr 1.28.84.1: #i77429# return repeated rows/columns as Row-/ColumnHeaders


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [f8c4e4dc471f865d1241834b2bc0f031d5469f4d]

INTEGRATION: CWS dr55 (1.70.32); FILE MERGED 2007/06/28 13:58:01 dr 1.70.32.3: #i66550# disabled 2007/06/15 15:41:20 dr 1.70.32.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:55 dr 1.70.32.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [fd57d0b2b979058868bdf1d1cbf3d9be569f2c2c]

INTEGRATION: CWS dr55 (1.20.32); FILE MERGED 2007/06/28 13:58:01 dr 1.20.32.3: #i66550# disabled 2007/06/15 15:41:20 dr 1.20.32.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:55 dr 1.20.32.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [85dee62da931c5af3592df476510fe5ba9ae7bfb]

INTEGRATION: CWS dr55 (1.22.84); FILE MERGED 2007/06/28 13:58:01 dr 1.22.84.3: #i66550# disabled 2007/06/15 15:41:20 dr 1.22.84.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:55 dr 1.22.84.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [f7151e9e9b91bbddffb2f74d9ccf35e51a9a3ab4]

INTEGRATION: CWS dr55 (1.33.52); FILE MERGED 2007/06/28 13:58:01 dr 1.33.52.2: #i66550# disabled 2007/06/15 15:41:20 dr 1.33.52.1: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [52a44a039da19864a9ceaf5325f9b0e19a4786ba]

INTEGRATION: CWS dr55 (1.23.140); FILE MERGED 2007/06/28 13:58:01 dr 1.23.140.2: #i66550# disabled 2007/06/15 15:41:20 dr 1.23.140.1: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [942d4a65ecd41bc73a1a78bcb00d48921f14d3c4]

INTEGRATION: CWS dr55 (1.12.52); FILE MERGED 2007/06/28 19:37:15 nn 1.12.52.5: remove duplicate local variable 2007/06/28 13:58:01 dr 1.12.52.4: #i66550# disabled 2007/06/20 15:43:52 nn 1.12.52.3: #i74099# call DontDeleteColorTable if using standard table 2007/06/15 15:41:20 dr 1.12.52.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:55 dr 1.12.52.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [d1b583877be0a45500a95bbec2a61a8b836f2b8d]

INTEGRATION: CWS dr55 (1.27.82); FILE MERGED 2007/06/27 13:18:53 er 1.27.82.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [be08c5aa529da70cbbb3fa6d393c1a7cb32143d3]

INTEGRATION: CWS dr55 (1.54.30); FILE MERGED 2007/06/22 12:46:23 tbe 1.54.30.1: #i78488# Warn if printing output is empty


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [262872b2a11392b542f20b6c49e4d290a66720d7]

INTEGRATION: CWS dr55 (1.25.52); FILE MERGED 2007/06/15 19:15:51 nn 1.25.52.1: #i76514# don't access ScLinkedAreaDlg as AbstractScLinkedAreaDlg


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [09e8ee5e99f526039e451cea3b3ead3d0b8bf04e]

INTEGRATION: CWS dr55 (1.69.38); FILE MERGED 2007/06/20 19:30:41 er 1.69.38.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [8bce78d01648f1bbf0ba9da894e3016f925d7d4a]

INTEGRATION: CWS dr55 (1.32.84); FILE MERGED 2007/06/28 13:58:01 dr 1.32.84.1: #i66550# disabled


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [ab000ef18eafb4cd75e08c7f95232171ca2adf76]

INTEGRATION: CWS dr55 (1.48.84); FILE MERGED 2007/06/21 13:59:04 dr 1.48.84.1: #i77429# return repeated rows/columns as Row-/ColumnHeaders


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [8a9c7539b07c52bdd90dd594d6895c3c9a1ace45]

INTEGRATION: CWS dr55 (1.126.32); FILE MERGED 2007/06/15 15:41:20 dr 1.126.32.1: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [029effd690e6f674a9d16ea054fa5d59313f1835]

INTEGRATION: CWS dr55 (1.205.32); FILE MERGED 2007/06/15 15:41:20 dr 1.205.32.1: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [0030b4dbf3c2b39cbd2e83f0acc63ceea431cc8f]

INTEGRATION: CWS dr55 (1.26.32); FILE MERGED 2007/06/25 11:56:29 nn 1.26.32.1: #i78802# right parameters for GetStringFromAddress


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [f4b6c1d5e3ee4eb105ea5a1c59f3a9429cf153f4]

INTEGRATION: CWS dr55 (1.8.42); FILE MERGED 2007/06/20 19:30:41 er 1.8.42.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [52c473030db4c96dfe662ca121a85db9b176da97]

INTEGRATION: CWS dr55 (1.8.246); FILE MERGED 2007/06/20 19:30:40 er 1.8.246.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [167e379d0c578dae5b2bbdcc8ce07927237ec140]

INTEGRATION: CWS dr55 (1.5.84); FILE MERGED 2007/06/27 13:18:53 er 1.5.84.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [a6cfd888dca79ddd6cfc7f5204dc788f80073088]

INTEGRATION: CWS dr55 (1.15.40); FILE MERGED 2007/06/20 19:30:40 er 1.15.40.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [93a356e01dfe4f4682d933ff56757feccb2116ff]

INTEGRATION: CWS dr55 (1.12.82); FILE MERGED 2007/06/27 13:18:53 er 1.12.82.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [cd9a6958b31b2f474731cfcb5e08c8faff16aaec]

INTEGRATION: CWS dr55 (1.26.32); FILE MERGED 2007/06/15 15:41:20 dr 1.26.32.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:55 dr 1.26.32.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [7591df1506a205a05cddd2a89b61b203eeb446b4]

INTEGRATION: CWS dr55 (1.13.32); FILE MERGED 2007/06/15 15:41:19 dr 1.13.32.1: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [b498f24c124ae8fc1e7fce37c1b2cb7173a9dd8c]

INTEGRATION: CWS dr55 (1.3.456); FILE MERGED 2007/06/20 19:30:40 er 1.3.456.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [a8c92d96cee90ce058d680a86f501a2a8abc0e4b]

INTEGRATION: CWS dr55 (1.15.84); FILE MERGED 2007/06/20 19:30:40 er 1.15.84.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [1a0679894eec34ae2a1d0908886a276d3b1f5fd7]

INTEGRATION: CWS dr55 (1.29.32); FILE MERGED 2007/06/27 13:18:52 er 1.29.32.2: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion 2007/06/27 11:54:30 er 1.29.32.1: #i47644# new errDivisionByZero to distinguish from other floating-point operation errors


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [283596223a52d0d8689aef1481b39a7fc7653317]

INTEGRATION: CWS dr55 (1.20.28); FILE MERGED 2007/06/28 15:04:14 dr 1.20.28.2: RESYNC: (1.20-1.21); FILE MERGED 2007/06/27 13:18:52 er 1.20.28.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [d2b1f9476accf3b3c60ff9bfad6ad36cfa5c5ad3]

INTEGRATION: CWS dr55 (1.51.30); FILE MERGED 2007/06/28 13:58:01 dr 1.51.30.3: #i66550# disabled 2007/06/15 15:41:19 dr 1.51.30.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:55 dr 1.51.30.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [75bf7dc68f5fd75935818434df8dfc74152e162d]

INTEGRATION: CWS dr55 (1.25.28); FILE MERGED 2007/06/28 15:03:28 dr 1.25.28.2: RESYNC: (1.25-1.26); FILE MERGED 2007/06/15 15:41:19 dr 1.25.28.1: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [ffeb5a39412cfa2349f022f699294fd6d45e86da]

INTEGRATION: CWS dr55 (1.42.82); FILE MERGED 2007/06/28 15:02:09 dr 1.42.82.2: RESYNC: (1.42-1.43); FILE MERGED 2007/06/27 13:18:52 er 1.42.82.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [498bf59b3067d2730c463fb6e9e41039eeff8fd3]

INTEGRATION: CWS dr55 (1.46.30); FILE MERGED 2007/06/28 15:02:02 dr 1.46.30.3: RESYNC: (1.46-1.47); FILE MERGED 2007/06/27 13:18:52 er 1.46.30.2: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion 2007/06/27 11:54:30 er 1.46.30.1: #i47644# new errDivisionByZero to distinguish from other floating-point operation errors


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [bb022ca38e778dc137f936101347a192da8ede1c]

INTEGRATION: CWS dr55 (1.5.84); FILE MERGED 2007/06/15 14:22:13 tbe 1.5.84.1: #i25278# print default suggestions


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [b1107e978398d3d0f816b24ceffe46f595818de1]

INTEGRATION: CWS dr55 (1.23.46); FILE MERGED 2007/06/28 15:01:29 dr 1.23.46.3: RESYNC: (1.23-1.24); FILE MERGED 2007/06/27 15:03:26 er 1.23.46.2: #i47724# errDivisionByZero for certain functions 2007/06/27 13:18:51 er 1.23.46.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [642cd0a2cdb6fbe237c33cfd8c945588b80a8d05]

INTEGRATION: CWS dr55 (1.47.36); FILE MERGED 2007/06/28 15:01:13 dr 1.47.36.3: RESYNC: (1.47-1.48); FILE MERGED 2007/06/27 15:03:26 er 1.47.36.2: #i47724# errDivisionByZero for certain functions 2007/06/27 13:18:51 er 1.47.36.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [2c39c1a06f2154deee4aea25ee7ac557b3acda13]

INTEGRATION: CWS dr55 (1.18.82); FILE MERGED 2007/06/27 15:03:25 er 1.18.82.2: #i47724# errDivisionByZero for certain functions 2007/06/27 13:18:51 er 1.18.82.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [06daa071d49dcaef632000f3d8dae1f755f9d1ea]

INTEGRATION: CWS dr55 (1.31.46); FILE MERGED 2007/06/27 13:18:51 er 1.31.46.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [2e8dfccb2a96b0d9f6c32c36a33ca77538831a06]

INTEGRATION: CWS dr55 (1.45.36); FILE MERGED 2007/06/29 17:53:20 er 1.45.36.4: #i47724# unxlngi6.pro optimization problem produced a loop with sqrt(div(x,0)) 2007/06/28 15:01:04 dr 1.45.36.3: RESYNC: (1.45-1.46); FILE MERGED 2007/06/27 15:03:25 er 1.45.36.2: #i47724# errDivisionByZero for certain functions 2007/06/27 13:18:51 er 1.45.36.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [18094db50d7f70bef1c02bc66e2f0f0f69d3e97f]

INTEGRATION: CWS dr55 (1.68.82); FILE MERGED 2007/06/28 15:00:54 dr 1.68.82.2: RESYNC: (1.68-1.69); FILE MERGED 2007/06/27 13:18:50 er 1.68.82.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [a4177a984a8d2bcd27ccdde77d2fcc44aa8ef253]

INTEGRATION: CWS dr55 (1.20.84); FILE MERGED 2007/06/27 13:18:50 er 1.20.84.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [75920ba581b0956010e9ff45a9cbe2dcc5679542]

INTEGRATION: CWS dr55 (1.4.456); FILE MERGED 2007/06/27 13:18:50 er 1.4.456.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [5f526e99a9d4afba83c49b719e52f642b3e1e404]

INTEGRATION: CWS dr55 (1.27.140); FILE MERGED 2007/06/29 17:37:38 er 1.27.140.3: #i47724# div ought to be static, got lost in some edit cycle 2007/06/27 15:03:24 er 1.27.140.2: #i47724# errDivisionByZero for certain functions 2007/06/27 13:18:50 er 1.27.140.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [173d45c7e4c9d1df777f82c71f1f6e06144bc735]

INTEGRATION: CWS dr55 (1.9.84); FILE MERGED 2007/06/13 14:35:55 dr 1.9.84.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [eb0f98bd95613cc8764bcbd06013e3e918c02d69]

INTEGRATION: CWS dr55 (1.13.42); FILE MERGED 2007/06/29 13:55:14 er 1.13.42.1: #i70277# ScReplaceTabsStr: really remove '\' and not the escaped character


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [4ef757907a39c18b71f3050665721f386c08ed9a]

INTEGRATION: CWS dr55 (1.50.40); FILE MERGED 2007/06/28 15:00:03 dr 1.50.40.3: RESYNC: (1.50-1.51); FILE MERGED 2007/06/27 13:18:50 er 1.50.40.2: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion 2007/06/27 11:52:38 er 1.50.40.1: #i47644# new error strings #DIV/0! #NUM! #NULL!


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [76f66c2a56839f54f801984881c869621dafcaa0]

INTEGRATION: CWS dr55 (1.49.32); FILE MERGED 2007/06/13 14:35:54 dr 1.49.32.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [2a9e3cd376ecf42755ddf7249211998a62b9ec8e]

INTEGRATION: CWS dr55 (1.7.248); FILE MERGED 2007/06/27 13:18:50 er 1.7.248.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [ccf904db473b7efc0de50cdf8f16686f77bd25f7]

INTEGRATION: CWS dr55 (1.37.40); FILE MERGED 2007/06/28 14:59:40 dr 1.37.40.2: RESYNC: (1.37-1.38); FILE MERGED 2007/06/20 19:30:40 er 1.37.40.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [ec6c24dc88162feeb23433ecf4b8dd99a2cc4f16]

INTEGRATION: CWS dr55 (1.20.32); FILE MERGED 2007/06/29 13:55:14 er 1.20.32.1: #i56202# Ctrl+Prime (quoteleft) toggles formula view; merged from branch cws_src680_msba02; contributed by Muthu Subramanian <muthusuba@ooo>


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [73bf70d08b876aad204a3cb7af3bee3decbeaca3]

INTEGRATION: CWS dr55 (1.34.32); FILE MERGED 2007/06/29 13:55:13 er 1.34.32.4: #i56202# Ctrl+Prime (quoteleft) toggles formula view; merged from branch cws_src680_msba02; contributed by Muthu Subramanian <muthusuba@ooo> 2007/06/28 13:57:40 dr 1.34.32.3: #i66550# disabled 2007/06/15 15:41:19 dr 1.34.32.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:54 dr 1.34.32.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [0b6862bce2cc47f1d483ffac55d8bad69b50070d]

INTEGRATION: CWS dr55 (1.18.32); FILE MERGED 2007/06/28 13:57:40 dr 1.18.32.3: #i66550# disabled 2007/06/15 15:41:19 dr 1.18.32.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:54 dr 1.18.32.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [a9d498fd27b8bd74fea85a66cc379c3795abe62e]

INTEGRATION: CWS dr55 (1.6.158); FILE MERGED 2007/06/28 13:56:56 dr 1.6.158.3: #i66550# disabled 2007/06/15 15:41:18 dr 1.6.158.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:54 dr 1.6.158.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [4d998f78aebcec93ed04863b9f3adc31dd857932]

INTEGRATION: CWS dr55 (1.73.30); FILE MERGED 2007/06/14 16:49:47 nn 1.73.30.1: #i78485# correct spelling of AbsoluteName


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [e2c7ef90cc2c2dc5f0c6a8bd4175a41d40d6f490]

INTEGRATION: CWS dr55 (1.12.456); FILE MERGED 2007/06/28 19:30:14 nn 1.12.456.2: include memory without .h 2007/06/20 19:30:39 er 1.12.456.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [cfb501fedd2f9aee177d1c84bd5eb90e127b5b91]

INTEGRATION: CWS dr55 (1.9.340); FILE MERGED 2007/06/13 14:35:54 dr 1.9.340.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [72ac1810b7bdd755c0583436eb0a2999b8b8f60c]

INTEGRATION: CWS dr55 (1.53.32); FILE MERGED 2007/06/29 13:55:13 er 1.53.32.5: #i56202# Ctrl+Prime (quoteleft) toggles formula view; merged from branch cws_src680_msba02; contributed by Muthu Subramanian <muthusuba@ooo> 2007/06/28 13:56:56 dr 1.53.32.4: #i66550# disabled 2007/06/22 12:50:25 tbe 1.53.32.3: #i78488# Warn if printing output is empty 2007/06/15 15:41:18 dr 1.53.32.2: #i66550# add hyperlinks to shapes, patch by npower, reviewed by dr 2007/06/13 14:35:54 dr 1.53.32.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [4e8b6e4da9688bb6ef98424217c5c6a2938bce51]

INTEGRATION: CWS dr55 (1.15.184); FILE MERGED 2007/06/28 14:59:09 dr 1.15.184.2: RESYNC: (1.15-1.16); FILE MERGED 2007/06/27 13:18:49 er 1.15.184.1: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [f11abd44b027b18d21c1fbb61810feb9fea02d34]

INTEGRATION: CWS dr55 (1.15.184); FILE MERGED 2007/06/28 14:59:00 dr 1.15.184.2: RESYNC: (1.15-1.16); FILE MERGED 2007/06/27 11:54:30 er 1.15.184.1: #i47644# new errDivisionByZero to distinguish from other floating-point operation errors


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [8f5bedd3a729be708ac2faa5dc5062563714bb39]

INTEGRATION: CWS c09tosrc (1.35.90); FILE MERGED 2007/06/20 13:37:39 rt 1.35.90.2: Remove warnings. 2007/06/20 11:29:17 cd 1.35.90.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [a5e484bc13dcbd293377078f0237774804a299bd]

INTEGRATION: CWS dr55 (1.48.52); FILE MERGED 2007/06/20 19:30:39 er 1.48.52.1: #i78630# remove MacOS9 specifics


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [5f2d981f35b130cf1cdb8766a798ac9ccfe9eb31]

INTEGRATION: CWS dr55 (1.3.456); FILE MERGED 2007/06/28 14:58:52 dr 1.3.456.3: RESYNC: (1.3-1.4); FILE MERGED 2007/06/27 13:18:49 er 1.3.456.2: #i47644# rename ocNoValue to ocNotAvail, NOVALUE to NOTAVAILABLE, ocIsNV to ocIsNA, SetNV to SetNA to prevent further confusion 2007/06/27 11:54:30 er 1.3.456.1: #i47644# new errDivisionByZero to distinguish from other floating-point operation errors


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [d609ebb17e7217749acceaa668b221f8ec1edf73]

INTEGRATION: CWS c09tosrc (1.28.38); FILE MERGED 2007/06/20 11:29:17 cd 1.28.38.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [7999c45dbe4ae09ebca04d1da5c5710fcbc971c2]

INTEGRATION: CWS dr55 (1.19.158); FILE MERGED 2007/06/13 14:35:54 dr 1.19.158.1: #i59082# assign macros to drawing objects and pictures, patch by npower, reviewed by dr


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [24566e391ad118d073c1f57e5c61ecd9135c8561]

INTEGRATION: CWS c09tosrc (1.31.38); FILE MERGED 2007/06/20 11:29:17 cd 1.31.38.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [884707e2fee001b49b8bdf877457888b8b19e23e]

INTEGRATION: CWS dr55 (1.10.84); FILE MERGED 2007/06/15 19:15:00 nn 1.10.84.1: #i76514# don't access ScLinkedAreaDlg as AbstractScLinkedAreaDlg


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [c724e0b6d92293a19d2ed89ba140c2f8c0d144a3]

INTEGRATION: CWS c09tosrc (1.30.56); FILE MERGED 2007/06/20 11:29:17 cd 1.30.56.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [a8d1b0ba8ca706f80e7709c0b4a206d6aff80153]

INTEGRATION: CWS c09tosrc (1.15.58); FILE MERGED 2007/06/20 11:29:17 cd 1.15.58.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [7121bb2f819fca86b3c02c3e21c4004496ba46f4]

INTEGRATION: CWS c09tosrc (1.7.90); FILE MERGED 2007/06/20 11:29:17 cd 1.7.90.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [28b14bf80e0f4b7ff5d2a3405606b369daafb756]

INTEGRATION: CWS c09tosrc (1.13.192); FILE MERGED 2007/06/20 11:29:17 cd 1.13.192.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [e473e4d9f6fac5e2dd11091c7d4ca8719c852ab5]

INTEGRATION: CWS c09tosrc (1.10.146); FILE MERGED 2007/06/20 11:29:17 cd 1.10.146.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [98e007c7026b444f79e93e3ca7d796f44803d909]

INTEGRATION: CWS c09tosrc (1.33.58); FILE MERGED 2007/06/20 11:29:16 cd 1.33.58.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [969dcd7085535e8113abd2a0e621235dfee17a93]

INTEGRATION: CWS c09tosrc (1.31.38); FILE MERGED 2007/06/20 13:37:38 rt 1.31.38.2: Remove warnings. 2007/06/20 11:29:16 cd 1.31.38.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [15c6a2deab993a6ad10597c6c27edd76e74b8473]

INTEGRATION: CWS c09tosrc (1.36.90); FILE MERGED 2007/06/20 13:37:38 rt 1.36.90.2: Remove warnings. 2007/06/20 11:29:16 cd 1.36.90.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [d3268a39eaf56900bc4db11a5d6258520d4597ff]

INTEGRATION: CWS c09tosrc (1.10.48); FILE MERGED 2007/06/20 11:29:16 cd 1.10.48.1: #i78694# Calc must support XTransferableSupplier interface


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [728bcb6c21e8a23e8ca0e47028fe83aaed76bcc7]

INTEGRATION: CWS oj14 (1.205.54); FILE MERGED 2007/06/26 20:29:36 fs 1.205.54.1: #i78908# ~SdrObject inaccessible now, need to use SdrObject::Free instead


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [2b9c6a2cdec22a16a867917fb1edc45905627c0d]

INTEGRATION: CWS oj14 (1.51.52); FILE MERGED 2007/06/26 20:29:33 fs 1.51.52.1: #i78908# ~SdrObject inaccessible now, need to use SdrObject::Free instead


2007-07-06  Rüdiger Timm  <rt@openoffice.org>  [32a285bc1f1383b8c0345cedf097db0faf1eca5d]

INTEGRATION: CWS oj14 (1.11.26); FILE MERGED 2007/06/26 20:21:32 fs 1.11.26.1: #i78908# ~SdrObject inaccessible now, need to use SdrObject::Free instead


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [a57fe0c7f7dcca6d8bed3f07117f9ec3be6ba803]

INTEGRATION: CWS dr54 (1.24.222); FILE MERGED 2007/06/07 12:18:59 er 1.24.222.1: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [cafc253fd647665edd3bba1975fb9fade18e53f5]

INTEGRATION: CWS dr54 (1.2.566); FILE MERGED 2007/06/08 09:06:19 nn 1.2.566.2: #i38108# Ctrl-+, Ctrl-- 2007/05/15 14:28:59 nn 1.2.566.1: #i35738# changed Ctrl-1 to cell format dialog


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [243329d7ab6218348b443b52562ada9dc32dc8c2]

INTEGRATION: CWS dr54 (1.3.680); FILE MERGED 2007/06/08 09:06:19 nn 1.3.680.2: #i38108# Ctrl-+, Ctrl-- 2007/05/15 14:28:59 nn 1.3.680.1: #i35738# changed Ctrl-1 to cell format dialog


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [88b1c12d24bb923050f27b0018a4c434721b797d]

INTEGRATION: CWS dr54 (1.2.482); FILE MERGED 2007/06/08 09:06:19 nn 1.2.482.2: #i38108# Ctrl-+, Ctrl-- 2007/05/15 14:28:59 nn 1.2.482.1: #i35738# changed Ctrl-1 to cell format dialog


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [4f1742c3ee44e9cbb8427b0ab168317e197aa301]

INTEGRATION: CWS dr54 (1.2.566); FILE MERGED 2007/06/08 09:06:18 nn 1.2.566.2: #i38108# Ctrl-+, Ctrl-- 2007/05/15 14:28:58 nn 1.2.566.1: #i35738# changed Ctrl-1 to cell format dialog


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [268cc08d4f7d56068009597194bcaa75fd0054f2]

INTEGRATION: CWS dr54 (1.10.58); FILE MERGED 2007/05/23 09:00:41 nn 1.10.58.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [f6a3737e929f699716a7b74fa75d1bb216116498]

INTEGRATION: CWS dr54 (1.25.42); FILE MERGED 2007/05/23 09:01:25 nn 1.25.42.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [5f7175ede190b87465af5802530a98fda581d191]

INTEGRATION: CWS dr54 (1.90.10); FILE MERGED 2007/06/07 12:18:57 er 1.90.10.3: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion 2007/05/03 09:25:48 dr 1.90.10.2: #i72813# typo 2007/04/30 12:26:52 dr 1.90.10.1: #i47725# configuration data for CONVERT is located in calc.xcu


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [24670af29f45206074d8132ad1d96bd7e20f3fa9]

INTEGRATION: CWS dr54 (1.56.12); FILE MERGED 2007/05/21 14:08:08 dr 1.56.12.1: #i47732# changed 'Default' -> 'Default Formatting'


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [bd79620be2f7e7dcb4900c3fb09541e6db3a6de9]

INTEGRATION: CWS dr54 (1.64.12); FILE MERGED 2007/04/30 12:40:54 dr 1.64.12.1: #i50363# auto-repeat in spin fields


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [de0c00dc9ceebdfb322694d4d80bf727b56278e3]

INTEGRATION: CWS dr54 (1.72.12); FILE MERGED 2007/04/30 13:14:02 dr 1.72.12.1: #i50436# #i50439# 'Strings' -> 'Text'


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [7c5772e980d162696a8522ab6adfa739bfc4b77b]

INTEGRATION: CWS dr54 (1.30.12); FILE MERGED 2007/04/30 12:43:47 dr 1.30.12.1: #i50363# auto-repeat in spin fields


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [dfa180abcf3222b0164d9c4beaf8ed1caee9c335]

INTEGRATION: CWS dr54 (1.44.12); FILE MERGED 2007/05/25 16:49:45 er 1.44.12.1: #i56566# input validation with dynamic ranges as formua results


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [3f6277d3b06184c73bb5dcb53dc621bb20a171de]

INTEGRATION: CWS dr54 (1.24.56); FILE MERGED 2007/06/11 12:06:39 dr 1.24.56.2: RESYNC: (1.24-1.25); FILE MERGED 2007/04/30 12:14:13 dr 1.24.56.1: #i47175# always show correct mouse pointers


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [0301c877b85e5ff4216bc5d9628dff31abdeafe2]

INTEGRATION: CWS dr54 (1.68.54); FILE MERGED 2007/06/11 12:04:39 dr 1.68.54.2: RESYNC: (1.68-1.69); FILE MERGED 2007/06/08 13:11:20 nn 1.68.54.1: #i47125# with AutoInput, do final AutoCorrect at end of text


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [578730f6f8ebced2e32e50d571f1484e3c939301]

INTEGRATION: CWS dr54 (1.9.422); FILE MERGED 2007/06/01 14:30:06 nn 1.9.422.1: #i63500# pass simple-case text strings without intermediate OUStringBuffer


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [05cb1855e69e6f2069f9974492b6a99d2f8555c0]

INTEGRATION: CWS dr54 (1.11.58); FILE MERGED 2007/06/01 14:30:06 nn 1.11.58.1: #i63500# pass simple-case text strings without intermediate OUStringBuffer


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [93e37a3e1330298429795733721ccb188fb2d06e]

INTEGRATION: CWS dr54 (1.28.104); FILE MERGED 2007/06/11 11:54:31 dr 1.28.104.2: RESYNC: (1.28-1.29); FILE MERGED 2007/05/23 09:02:11 nn 1.28.104.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [2a37378a093be5be1cefe599ca67b2e49bde92b4]

INTEGRATION: CWS dr54 (1.5.422); FILE MERGED 2007/06/11 11:54:24 dr 1.5.422.2: RESYNC: (1.5-1.6); FILE MERGED 2007/05/23 09:02:10 nn 1.5.422.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [0e68092315a87fbef26254320933539e541b67f2]

INTEGRATION: CWS dr54 (1.10.56); FILE MERGED 2007/06/11 11:54:16 dr 1.10.56.2: RESYNC: (1.10-1.11); FILE MERGED 2007/05/22 13:28:47 dr 1.10.56.1: #i73911# remove leading spaces from validation list entries


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [b2d365113e17def5792e7b96949df113bc88b9a6]

INTEGRATION: CWS dr54 (1.19.310); FILE MERGED 2007/05/21 11:55:40 dr 1.19.310.1: remove compiler warnings


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [1386213f7c28cdac3f6a00fc1cf4a2fd7bd9f0f4]

INTEGRATION: CWS dr54 (1.30.56); FILE MERGED 2007/05/23 09:03:53 nn 1.30.56.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [021ff3156f5eade8e22c8460d74535db9ce55cd8]

INTEGRATION: CWS dr54 (1.7.214); FILE MERGED 2007/05/23 09:03:53 nn 1.7.214.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [6656b576b0db48e296d8c459c1a9cb36df1f0579]

INTEGRATION: CWS dr54 (1.19.54); FILE MERGED 2007/06/11 11:49:19 dr 1.19.54.3: RESYNC: (1.19-1.20); FILE MERGED 2007/06/07 12:18:56 er 1.19.54.2: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion 2007/05/22 13:28:38 dr 1.19.54.1: #i73911# remove leading spaces from validation list entries


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [bc4d21ba21ccc6e360af07f3f1c909559f432f9f]

INTEGRATION: CWS dr54 (1.32.54); FILE MERGED 2007/06/11 11:48:15 dr 1.32.54.2: RESYNC: (1.32-1.34); FILE MERGED 2007/05/23 09:03:53 nn 1.32.54.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [b234ceac3e04d02af526d8df9d83b4a6e4479bca]

INTEGRATION: CWS dr54 (1.14.54); FILE MERGED 2007/06/11 11:47:47 dr 1.14.54.2: RESYNC: (1.14-1.15); FILE MERGED 2007/05/23 09:03:53 nn 1.14.54.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [e2001efae2a1d52db921249401448456ca47447f]

INTEGRATION: CWS dr54 (1.49.54); FILE MERGED 2007/06/11 11:47:31 dr 1.49.54.3: RESYNC: (1.49-1.51); FILE MERGED 2007/05/23 09:03:53 nn 1.49.54.2: #i75610# avoid unnecessary creation of printer object 2007/05/21 11:56:46 dr 1.49.54.1: #i71267# process class id embedded in pictFmla


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [ed8e477ab4166f6b00a900d2bcef07fd2cb5b056]

INTEGRATION: CWS dr54 (1.23.54); FILE MERGED 2007/06/11 11:47:24 dr 1.23.54.2: RESYNC: (1.23-1.25); FILE MERGED 2007/05/22 13:28:38 dr 1.23.54.1: #i73911# remove leading spaces from validation list entries


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [7eb1782fff338ca17c8854a18097caf42dda2942]

INTEGRATION: CWS dr54 (1.15.56); FILE MERGED 2007/07/03 14:37:33 er 1.15.56.2: RESYNC: (1.15-1.17); FILE MERGED Resynced to m217 to resolve merge conflicts, cws jgarrays integrated. 2007/05/03 08:36:31 dr 1.15.56.1: #i76672# correct handling of tAttrGoto and tAttrSpace in IF and CHOOSE


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [7581420c6f356bdfb19933cdffcb357c191f8930]

INTEGRATION: CWS dr54 (1.87.104); FILE MERGED 2007/06/11 11:43:26 dr 1.87.104.3: RESYNC: (1.87-1.88); FILE MERGED 2007/05/21 13:45:02 dr 1.87.104.2: #i73753# row source in list boxes in dialogs 2007/05/21 11:57:47 dr 1.87.104.1: #i71267# dump progress bar control, remove compiler warnings


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [2c764b9f0a497b4291edf9e9dda81a1da0d5cf01]

INTEGRATION: CWS dr54 (1.45.54); FILE MERGED 2007/07/03 14:37:41 er 1.45.54.3: RESYNC: (1.47-1.49); FILE MERGED Resynced to m217 to resolve merge conflicts, cws getpivotdata integrated. 2007/06/11 11:42:45 dr 1.45.54.2: RESYNC: (1.45-1.47); FILE MERGED 2007/06/07 12:18:56 er 1.45.54.1: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [1f42a0584ab5a3dc96b77cde11b51717de776dbb]

INTEGRATION: CWS dr54 (1.44.40); FILE MERGED 2007/06/11 17:11:18 er 1.44.40.3: #i70213# ASC: convert U+2015 HORIZONTAL BAR to U+FF70 HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK 2007/06/11 11:42:37 dr 1.44.40.2: RESYNC: (1.44-1.45); FILE MERGED 2007/06/07 12:17:24 er 1.44.40.1: #i70213# JIS/ASC fullwidth/halfwidth conversion, kudos to Takashi Nakamoto <bluedwarf@ooo>


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [2ad1efc90cea56555f633399b0f5ee5001b92fd5]

INTEGRATION: CWS dr54 (1.20.58); FILE MERGED 2007/05/31 12:03:23 nn 1.20.58.1: #i77984# read category from right configuration entry


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [9e785fa77cd436ad677ac2f73ce101907b3daf49]

INTEGRATION: CWS dr54 (1.51.10); FILE MERGED 2007/06/07 12:18:56 er 1.51.10.1: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [2634e331eab5bf1b563e93bd8f136928caf0264c]

INTEGRATION: CWS dr54 (1.27.106); FILE MERGED 2007/06/07 12:18:56 er 1.27.106.1: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [57434ac1d6967a6f8c6987cf6c8cda1a346c9899]

INTEGRATION: CWS dr54 (1.4.422); FILE MERGED 2007/05/14 17:32:48 er 1.4.422.1: #b6534390# performance bottleneck if multiple changes are broadcasted to a bulk of listeners listening to identical ranges


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [7cfa7f3cc8321fc5657a34e50a37e6e48c9a9473]

INTEGRATION: CWS dr54 (1.20.40); FILE MERGED 2007/05/25 16:49:45 er 1.20.40.1: #i56566# input validation with dynamic ranges as formua results


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [b932ea25b01d837416ce1f7d28416a14d4811734]

INTEGRATION: CWS dr54 (1.75.52); FILE MERGED 2007/06/11 11:39:58 dr 1.75.52.2: RESYNC: (1.75-1.77); FILE MERGED 2007/05/14 17:32:48 er 1.75.52.1: #b6534390# performance bottleneck if multiple changes are broadcasted to a bulk of listeners listening to identical ranges


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [60338bc9566402f64c41577129f970a642df0419]

INTEGRATION: CWS dr54 (1.46.56); FILE MERGED 2007/06/11 11:39:40 dr 1.46.56.2: RESYNC: (1.46-1.47); FILE MERGED 2007/05/23 09:00:20 nn 1.46.56.1: #i75610# avoid unnecessary creation of printer object


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [e6b90cabb173790a5c7dd7b21c12c7520a9d16b8]

INTEGRATION: CWS dr54 (1.62.54); FILE MERGED 2007/06/11 11:39:10 dr 1.62.54.2: RESYNC: (1.62-1.64); FILE MERGED 2007/05/14 17:32:48 er 1.62.54.1: #b6534390# performance bottleneck if multiple changes are broadcasted to a bulk of listeners listening to identical ranges


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [ee10a50b0380f8403c5abb6fe1db71ff73f78e65]

INTEGRATION: CWS dr54 (1.7.214); FILE MERGED 2007/06/13 13:41:16 er 1.7.214.2: init nInBulkBroadcast 2007/05/14 17:32:48 er 1.7.214.1: #b6534390# performance bottleneck if multiple changes are broadcasted to a bulk of listeners listening to identical ranges


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [bf33c89abf2e07c179200a167c2be5910ef77963]

INTEGRATION: CWS dr54 (1.12.58); FILE MERGED 2007/05/25 16:49:45 er 1.12.58.1: #i56566# input validation with dynamic ranges as formua results


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [5a9d1a7f458ae00f8a1b5d5fd282295a73b0fcc9]

INTEGRATION: CWS dr54 (1.10.222); FILE MERGED 2007/06/07 12:18:55 er 1.10.222.1: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [ef80f138ff98e4b387399f8cc4159c2267d8f043]

INTEGRATION: CWS dr54 (1.15.150); FILE MERGED 2007/07/03 14:38:05 er 1.15.150.2: RESYNC: (1.15-1.17); FILE MERGED Resynced to m217 to resolve merge conflicts, cws jgarrays integrated. 2007/06/07 12:18:55 er 1.15.150.1: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [f2494e427348e3210baf7a3dbe4cef38d213cfff]

INTEGRATION: CWS dr54 (1.13.150); FILE MERGED 2007/07/03 14:37:57 er 1.13.150.2: RESYNC: (1.13-1.15); FILE MERGED Resynced to m217 to resolve merge conflicts, cws jgarrays integrated. 2007/06/07 12:18:55 er 1.13.150.1: #i70213# JIS and ASC spreadsheet functions, fullwidth/halfwidth katakana conversion


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [7ea3c216563682530cf35d4514a86c27ecfcbdb3]

INTEGRATION: CWS dr54 (1.23.58); FILE MERGED 2007/06/01 14:28:05 nn 1.23.58.1: #i63500# use intern() for string cell value


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [00991033ace94845b3fc021f53089e2f989a2517]

INTEGRATION: CWS dr54 (1.25.2); FILE MERGED 2007/05/03 08:49:15 dr 1.25.2.1: #i75798# typo


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [9b7ad0a5739a790eca5baef73874e83f66fc9118]

INTEGRATION: CWS dr54 (1.53.30); FILE MERGED 2007/06/11 11:09:54 dr 1.53.30.2: RESYNC: (1.53-1.54); FILE MERGED 2007/05/03 09:17:22 dr 1.53.30.1: #i74282# conversion to negative values


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [974a809119bd3cc98fbf5f7129b51e08124b105b]

INTEGRATION: CWS chart06 (1.38.8); FILE MERGED 2007/06/11 17:02:41 iha 1.38.8.1: replaced unneccessary deque by vector


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [fa6ee7312d20f2e1ab431dd101b111e49f138600]

INTEGRATION: CWS chart06 (1.5.8); FILE MERGED 2007/06/11 09:06:46 iha 1.5.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [f5ba6eca11d10f0e175193d9edf66fb37f8c9060]

INTEGRATION: CWS chart06 (1.13.8); FILE MERGED 2007/06/22 12:45:07 iha 1.13.8.5: RESYNC: (1.13-1.14); FILE MERGED 2007/06/15 12:45:40 iha 1.13.8.4: #i67754# for right-angled-axes restrict angles to meaningful values 2007/06/14 09:15:09 iha 1.13.8.3: #i67754#,#i76430# better default illumination also depending on right angled axes 2007/06/11 11:57:27 iha 1.13.8.2: #i67754# right-angled-axes, not supported for pie and donut 2007/06/11 09:07:40 iha 1.13.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [23e5a34f42284f621ba666e1b7a142454dc49ea5]

INTEGRATION: CWS chart06 (1.22.8); FILE MERGED 2007/06/11 09:33:17 iha 1.22.8.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [d8dc8186e878d5d51911256cdc363d7b8b4ea91d]

INTEGRATION: CWS chart06 (1.1.2); FILE ADDED 2007/06/22 12:56:07 iha 1.1.2.8: manual resync for #i77954# 2007/06/15 17:34:17 iha 1.1.2.7: better defaults: no borders for 3D pie simple look 2007/06/15 16:57:48 iha 1.1.2.6: #i76430# better illumination defaults 2007/06/15 12:44:47 iha 1.1.2.5: #i67754# for right-angled-axes restrict angles to meaningful values 2007/06/14 17:41:16 iha 1.1.2.4: #67754# ensure unique angle set - thus ignoring z for right angled axes leads to a unique result 2007/06/14 09:08:40 iha 1.1.2.3: #i67754#,#i76430# better default illumination also depending on right angled axes 2007/06/11 16:38:17 iha 1.1.2.2: #i76430# better default illumination 2007/06/11 09:32:44 iha 1.1.2.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [bbfe94708bd53daf5e6e68d8291f2d880708af3e]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/15 16:57:48 iha 1.2.8.3: #i76430# better illumination defaults 2007/06/14 09:10:17 iha 1.2.8.2: #i67754#,#i76430# better default illumination also depending on right angled axes 2007/06/11 16:37:24 iha 1.2.8.1: #i76430# better default illumination


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [1134f694518bada5865a9fb61dd721868fae0eba]

INTEGRATION: CWS chart06 (1.8.8); FILE MERGED 2007/06/22 12:43:32 iha 1.8.8.2: RESYNC: (1.8-1.9); FILE MERGED 2007/06/14 09:09:09 iha 1.8.8.1: #i67754#,#i76430# better default illumination also depending on right angled axes


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [1b3acbc704e884a6da1bd5fe7c5c9299751cde8f]

INTEGRATION: CWS chart06 (1.12.8); FILE MERGED 2007/06/15 17:34:17 iha 1.12.8.5: better defaults: no borders for 3D pie simple look 2007/06/15 16:57:48 iha 1.12.8.4: #i76430# better illumination defaults 2007/06/14 09:10:54 iha 1.12.8.3: #i67754#,#i76430# better default illumination also depending on right angled axes 2007/06/11 16:33:48 iha 1.12.8.2: #i76430# better default illumination 2007/06/11 11:57:26 iha 1.12.8.1: #i67754# right-angled-axes, not supported for pie and donut


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [223b3833951c560b6565e0b86549af43faaa0710]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/14 17:42:45 iha 1.2.8.1: method moved


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [7ec75e686b6a8dafb830652f1b2007519b731555]

INTEGRATION: CWS chart06 (1.9.8); FILE MERGED 2007/06/20 18:59:37 iha 1.9.8.2: #i67754#,#i76430# don't change floor or wall settings when swithcing from to pie chart 2007/06/14 09:12:03 iha 1.9.8.1: #i67754#,#i76430# better default illumination also depending on right angled axes


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [d09d27d090ea323f9eafdd3f8639c789fd2d1182]

INTEGRATION: CWS chart06 (1.7.8); FILE MERGED 2007/06/11 09:49:51 iha 1.7.8.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [106944dd81e05b15ea4ce0527cf328d03e5056f8]

INTEGRATION: CWS chart06 (1.11.8); FILE MERGED 2007/06/22 12:42:14 iha 1.11.8.3: RESYNC: (1.11-1.12); FILE MERGED 2007/06/20 18:47:18 iha 1.11.8.2: #i67754#,#i76430# suiteable defaults for new 3D look and illumination 2007/06/11 09:34:42 iha 1.11.8.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [91844cf0af517b3c89f38c091e99f888296e093d]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/20 18:49:49 iha 1.2.8.1: static_cast


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [47384011387c0c8b3798052855671267e04f06b9]

INTEGRATION: CWS chart06 (1.14.8); FILE MERGED 2007/06/14 09:12:29 iha 1.14.8.2: #i67754#,#i76430# better default illumination also depending on right angled axes 2007/06/11 09:04:39 iha 1.14.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [4add9e16beb67c67c1a8a8003e45069397f3166b]

INTEGRATION: CWS chart06 (1.12.8); FILE MERGED 2007/06/11 09:35:14 iha 1.12.8.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [d0434afb134eb2a3b1bcc558ebfb934409a89b08]

INTEGRATION: CWS chart06 (1.9.8); FILE MERGED 2007/06/20 18:48:53 iha 1.9.8.1: #i67754#,#i76430# suiteable defaults for new 3D look and illumination


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [32162b76928b8ae5c0a25e4b3201bef600f3b492]

INTEGRATION: CWS chart06 (1.1.2); FILE ADDED 2007/06/15 17:34:17 iha 1.1.2.5: better defaults: no borders for 3D pie simple look 2007/06/15 16:57:48 iha 1.1.2.4: #i76430# better illumination defaults 2007/06/15 12:44:01 iha 1.1.2.3: #i67754# for right-angled-axes restrict angles to meaningful values 2007/06/14 09:07:59 iha 1.1.2.2: #i67754#,#i76430# better default illumination also depending on right angled axes 2007/06/11 09:32:24 iha 1.1.2.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [c3a2b5256aa00b873b5849fc03fc06b52fcd3194]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/20 21:06:20 bm 1.2.8.1: #i78442# add formula and r square to status bar and extended tool tip help text for trend lines


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [1838710c610c53771c7f53ffb58a0039eec2c3eb]

INTEGRATION: CWS chart06 (1.4.8); FILE MERGED 2007/06/14 09:09:26 iha 1.4.8.1: #i67754#,#i76430# better default illumination also depending on right angled axes


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [d68e92d31049ebfbd3c3a095420801d9b98ac1dc]

INTEGRATION: CWS chart06 (1.8.8); FILE MERGED 2007/06/15 17:34:17 iha 1.8.8.4: better defaults: no borders for 3D pie simple look 2007/06/15 16:57:48 iha 1.8.8.3: #i76430# better illumination defaults 2007/06/11 16:33:24 iha 1.8.8.2: #i76430# better default illumination 2007/06/11 11:57:26 iha 1.8.8.1: #i67754# right-angled-axes, not supported for pie and donut


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [b5b7c82f9ea364fc05937b816ebe4384b61d76a0]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/14 17:43:22 iha 1.2.8.1: method moved


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [d9878c04f2a356ebb49b808ea1989f3776939d99]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/11 09:11:56 iha 1.2.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [443aa6790e5e44351f447215ada41ea5ecffb523]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/15 12:46:30 iha 1.2.8.5: #i67754# for right-angled-axes restrict angles to meaningful values 2007/06/14 17:39:21 iha 1.2.8.4: #67754# no z rotation for right angled axes 2007/06/14 09:14:37 iha 1.2.8.3: #i67754#,#i76430# better default illumination also depending on right angled axes 2007/06/11 11:57:26 iha 1.2.8.2: #i67754# right-angled-axes, not supported for pie and donut 2007/06/11 09:13:00 iha 1.2.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [e38af971eae6391181b5cb73a9905152222d8e52]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/14 09:13:58 iha 1.2.8.1: #i67754#,#i76430# better default illumination also depending on right angled axes


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [a04ed0768cb7331f0a66c0a514ae5c6e3319cf79]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/20 19:33:30 iha 1.2.8.2: #i67754#,#i76430# set default to simple look when coming from 2D 2007/06/11 09:44:36 iha 1.2.8.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [809776ec9f5446473aa521e186931d4860952703]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/14 17:35:20 iha 1.2.8.2: rotate angles in with step width 1 instead of 5 2007/06/11 09:09:50 iha 1.2.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [1a47e20681512b28b80d00f5320d7a6f88ea1d7d]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/15 12:47:31 iha 1.2.8.2: #i67754# for right-angled-axes restrict angles to meaningful values 2007/06/11 09:10:18 iha 1.2.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [f430219a8e31ddb556ff40fff09cd7c0e5d72630]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/11 09:08:50 iha 1.2.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [52cc4bfed40d3996de7005fdd2f36687ba7083f8]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/15 12:48:04 iha 1.2.8.5: #i67754# for right-angled-axes restrict angles to meaningful values 2007/06/14 17:44:38 iha 1.2.8.4: #67754# ensure unique angle set - thus ignoring z for right angled axes leads to a unique result 2007/06/14 09:13:23 iha 1.2.8.3: #i67754#,#i76430# better default illumination also depending on right angled axes 2007/06/11 11:57:25 iha 1.2.8.2: #i67754# right-angled-axes, not supported for pie and donut 2007/06/11 09:10:26 iha 1.2.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [4470c585a4755b62f7a0d30c6bd6e492d9ecb57a]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/11 09:45:15 iha 1.2.8.2: #i67754# right-angled-axes, create new 3D charts with this and simple look 2007/06/11 09:28:11 iha 1.2.8.1: #i78293# 3D View dialog: wrong mixed state after click in Appearance page


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [f502d54a558fe5fc0d50f35f820108bd39b8a275]

INTEGRATION: CWS chart06 (1.10.8); FILE MERGED 2007/06/11 09:45:44 iha 1.10.8.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [7cf6710651456bf557aa782be71cba444f8d6cf4]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/11 09:43:32 iha 1.2.8.1: removed superfluous include


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [b4896e8f56e03c3cf890191025e3c3d8961a1302]

INTEGRATION: CWS chart06 (1.6.8); FILE MERGED 2007/06/20 21:06:12 bm 1.6.8.1: #i78442# add formula and r square to status bar and extended tool tip help text for trend lines


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [1b72c3f0d2d5ac5d9d482412c15d6d662525c136]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/20 21:06:12 bm 1.2.8.1: #i78442# add formula and r square to status bar and extended tool tip help text for trend lines


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [21379c81a2d05057ddbf8f7a77b2a8f4677c2a1a]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/11 09:36:47 iha 1.2.8.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [391c90e5367ede2131189db2674f1e10511a361f]

INTEGRATION: CWS chart06 (1.2.8); FILE MERGED 2007/06/19 11:58:12 iha 1.2.8.3: #i65908# 'deep' only in case of 3D 2007/06/12 08:06:21 iha 1.2.8.2: #i65908# Name for 3D Area chart: deep instead of normal 2007/06/11 09:36:26 iha 1.2.8.1: #i67754# right-angled-axes, create new 3D charts with this and simple look


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [a770ecf7b6ac924e0ec84d091decf48906e2d0ad]

INTEGRATION: CWS chart06 (1.5.8); FILE MERGED 2007/06/11 16:48:19 iha 1.5.8.1: avoid valgrind warning for uninitialized values


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [a1afd09f71c63fc801cec826c18f54f4f2938873]

INTEGRATION: CWS chart06 (1.5.8); FILE MERGED 2007/06/22 12:39:28 iha 1.5.8.2: RESYNC: (1.5-1.6); FILE MERGED 2007/06/11 09:05:12 iha 1.5.8.1: #i67754# right-angled-axes option for 3D charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [5b7cad31447c9d97b4938a53232e631e19d5fd47]

INTEGRATION: CWS chart06 (1.8.26); FILE MERGED 2007/06/12 08:20:56 dr 1.8.26.1: #i67754# right-angled axes option in 3d charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [86573cef73a4fc924c68b9b2dfd5ffc2640e5b9a]

INTEGRATION: CWS chart06 (1.8.26); FILE MERGED 2007/06/12 08:20:55 dr 1.8.26.1: #i67754# right-angled axes option in 3d charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [3dff390208954d104419e1ba733c62fb1972cae8]

INTEGRATION: CWS chart06 (1.2.26); FILE MERGED 2007/06/12 08:20:55 dr 1.2.26.1: #i67754# right-angled axes option in 3d charts


2007-07-03  Rüdiger Timm  <rt@openoffice.org>  [37f3c04f84df18f07bad72cee27115ca5833d2ef]

INTEGRATION: CWS chart06 (1.12.24); FILE MERGED 2007/06/22 12:13:22 iha 1.12.24.2: RESYNC: (1.12-1.13); FILE MERGED 2007/06/12 08:20:55 dr 1.12.24.1: #i67754# right-angled axes option in 3d charts


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [e0195a4c06ddb5a5dd34366dec32062f1f393602]

INTEGRATION: CWS getpivotdata (1.24.182); FILE MERGED 2007/04/19 17:54:59 nn 1.24.182.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [4fdcd6d45d744f1cf7dab2f90cd2fd60f1dd01ad]

INTEGRATION: CWS getpivotdata (1.89.54); FILE MERGED 2007/05/08 16:56:32 nn 1.89.54.3: #i45843# some string changes 2007/04/23 10:45:03 nn 1.89.54.2: RESYNC: (1.89-1.90); FILE MERGED 2007/04/19 17:54:57 nn 1.89.54.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [600d77816818c8997839011f103a37e71d2526f2]

INTEGRATION: CWS getpivotdata (1.18.14); FILE MERGED 2007/06/13 11:02:46 nn 1.18.14.3: RESYNC: (1.19-1.20); FILE MERGED 2007/04/23 09:22:32 nn 1.18.14.2: RESYNC: (1.18-1.19); FILE MERGED 2007/04/19 17:54:57 nn 1.18.14.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [ebfd9e96ae4b99d3ccf2bb98ab28b29fdf51aad5]

INTEGRATION: CWS getpivotdata (1.66.48); FILE MERGED 2007/06/13 10:57:55 nn 1.66.48.2: RESYNC: (1.66-1.67); FILE MERGED 2007/04/25 15:15:45 nn 1.66.48.1: #i45843# convert pivot tables before formula calculation


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [59e0b67295a24829586b113460126629f9336900]

INTEGRATION: CWS getpivotdata (1.116.74); FILE MERGED 2007/06/13 10:56:45 nn 1.116.74.2: RESYNC: (1.116-1.118); FILE MERGED 2007/04/25 15:15:45 nn 1.116.74.1: #i45843# convert pivot tables before formula calculation


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [d09e05d647297dd129d142cd7f7895198ce3c5de]

INTEGRATION: CWS getpivotdata (1.18.48); FILE MERGED 2007/06/13 10:55:22 nn 1.18.48.2: RESYNC: (1.18-1.19); FILE MERGED 2007/04/24 18:02:59 nn 1.18.48.1: #i45843# exceptions


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [df54b0ef34720004558c3b4984e9142201b4278c]

INTEGRATION: CWS getpivotdata (1.44.54); FILE MERGED 2007/06/13 10:55:15 nn 1.44.54.3: RESYNC: (1.45-1.47); FILE MERGED 2007/04/23 09:09:56 nn 1.44.54.2: RESYNC: (1.44-1.45); FILE MERGED 2007/04/19 17:54:57 nn 1.44.54.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [baa650f00eede3d6ef1d8b6cd3e0bc1c3e568387]

INTEGRATION: CWS getpivotdata (1.29.54); FILE MERGED 2007/05/08 17:07:50 nn 1.29.54.4: RESYNC: (1.30-1.31); FILE MERGED 2007/04/27 16:32:10 nn 1.29.54.3: #i45843# GETPIVOTDATA: alternative syntax 2007/04/23 09:09:25 nn 1.29.54.2: RESYNC: (1.29-1.30); FILE MERGED 2007/04/19 17:54:56 nn 1.29.54.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [e6ff5added8cd64f2a388cdda9f6481cb7d5b8f9]

INTEGRATION: CWS getpivotdata (1.50.110); FILE MERGED 2007/04/23 09:04:14 nn 1.50.110.2: RESYNC: (1.50-1.51); FILE MERGED 2007/04/19 17:54:56 nn 1.50.110.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [6a9ef66d755488116d63ebd219aa1cf2254fae0b]

INTEGRATION: CWS getpivotdata (1.27.54); FILE MERGED 2007/04/19 17:54:55 nn 1.27.54.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [14eeea7592fe500181f36728ad93358cd6a49b05]

INTEGRATION: CWS getpivotdata (1.12.174); FILE MERGED 2007/06/13 10:52:38 nn 1.12.174.6: RESYNC: (1.13-1.14); FILE MERGED 2007/05/09 09:40:49 nn 1.12.174.5: #i45843# warning in product build 2007/05/04 16:25:26 nn 1.12.174.4: #i45843# GETPIVOTDATA: manual subtotals 2007/04/27 16:31:54 nn 1.12.174.3: #i45843# GETPIVOTDATA: alternative syntax 2007/04/23 08:57:48 nn 1.12.174.2: RESYNC: (1.12-1.13); FILE MERGED 2007/04/19 17:54:55 nn 1.12.174.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [77aaa81e514003daf6f6967a89928f7ee58b46d4]

INTEGRATION: CWS getpivotdata (1.19.174); FILE MERGED 2007/05/03 17:50:44 nn 1.19.174.4: #i45843# GETPIVOTDATA alternative syntax: parse function names 2007/04/27 16:31:54 nn 1.19.174.3: #i45843# GETPIVOTDATA: alternative syntax 2007/04/23 08:57:40 nn 1.19.174.2: RESYNC: (1.19-1.20); FILE MERGED 2007/04/19 17:54:55 nn 1.19.174.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [817a82821f17f5e6e3d07b31fdc7c7159249b3f9]

INTEGRATION: CWS getpivotdata (1.33.50); FILE MERGED 2007/06/13 10:51:47 nn 1.33.50.3: RESYNC: (1.34-1.35); FILE MERGED 2007/04/23 08:55:35 nn 1.33.50.2: RESYNC: (1.33-1.34); FILE MERGED 2007/04/19 17:54:55 nn 1.33.50.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [9e307e681d2ad6bed8d6022c2b540c554e57f9f1]

INTEGRATION: CWS getpivotdata (1.10.182); FILE MERGED 2007/04/19 17:54:54 nn 1.10.182.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [f535672069cb7379dbb17dbcef6935b939b34537]

INTEGRATION: CWS getpivotdata (1.15.110); FILE MERGED 2007/04/19 17:54:54 nn 1.15.110.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [5ff2cc8e07f52c27cc2a31d00bea36f78a360505]

INTEGRATION: CWS getpivotdata (1.7.382); FILE MERGED 2007/05/03 17:51:35 nn 1.7.382.3: #i45843# GETPIVOTDATA alternative syntax: parse function names 2007/04/27 16:31:40 nn 1.7.382.2: #i45843# GETPIVOTDATA: alternative syntax 2007/04/19 17:54:54 nn 1.7.382.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [55328cc921060a769836e751f35c20e9684c5408]

INTEGRATION: CWS getpivotdata (1.11.372); FILE MERGED 2007/04/27 16:31:40 nn 1.11.372.2: #i45843# GETPIVOTDATA: alternative syntax 2007/04/19 17:54:54 nn 1.11.372.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [3d11c068236f7f26aeb1f73345f5945cde00464f]

INTEGRATION: CWS getpivotdata (1.97.12); FILE MERGED 2007/06/13 10:47:55 nn 1.97.12.4: RESYNC: (1.99-1.100); FILE MERGED 2007/05/08 17:06:29 nn 1.97.12.3: RESYNC: (1.98-1.99); FILE MERGED 2007/04/23 08:48:27 nn 1.97.12.2: RESYNC: (1.97-1.98); FILE MERGED 2007/04/19 17:54:54 nn 1.97.12.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff048269fffc7db4e93f56a15a65d6eb9d392ea5]

INTEGRATION: CWS getpivotdata (1.13.110); FILE MERGED 2007/04/19 17:54:53 nn 1.13.110.1: #i45843# add function GETPIVOTDATA


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [47692f0ca08ae817b79404ac7263ecfa524de346]

INTEGRATION: CWS tl37 (1.34.168); FILE MERGED 2007/06/04 15:41:34 tl 1.34.168.2: RESYNC: (1.34-1.35); FILE MERGED 2007/02/06 19:22:55 nn 1.34.168.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [da8f7372adb4325ddb8ee4a5b1131c4c8efdc288]

INTEGRATION: CWS tl37 (1.99.102); FILE MERGED 2007/06/04 15:03:46 tl 1.99.102.3: RESYNC: (1.101-1.103); FILE MERGED 2007/04/11 13:39:25 tl 1.99.102.2: RESYNC: (1.99-1.101); FILE MERGED 2007/02/06 19:22:54 nn 1.99.102.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [82716cc4dd8d9d3c9f35fe6c8618c4d0091d9869]

INTEGRATION: CWS tl37 (1.14.70); FILE MERGED 2007/04/11 13:25:13 tl 1.14.70.2: RESYNC: (1.14-1.15); FILE MERGED 2007/02/06 19:22:53 nn 1.14.70.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [f38154c8ab278ab03bee3e926f9f3e449e2eba7d]

INTEGRATION: CWS tl37 (1.25.32); FILE MERGED 2007/04/11 13:01:35 tl 1.25.32.2: RESYNC: (1.25-1.27); FILE MERGED 2007/02/06 19:22:51 nn 1.25.32.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [c725b3ad830b96b7c470b74a29f9c8bf01a66974]

INTEGRATION: CWS tl37 (1.49.30); FILE MERGED 2007/06/04 14:36:16 tl 1.49.30.3: RESYNC: (1.51-1.54); FILE MERGED 2007/04/11 12:59:09 tl 1.49.30.2: RESYNC: (1.49-1.51); FILE MERGED 2007/02/06 19:22:50 nn 1.49.30.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [39f2ecb8b5787b23ced708e405688cfd982590c2]

INTEGRATION: CWS tl37 (1.63.104); FILE MERGED 2007/06/04 14:35:38 tl 1.63.104.4: RESYNC: (1.64-1.65); FILE MERGED 2007/04/18 09:04:11 nn 1.63.104.3: #i73992# bApi is needed now 2007/04/11 12:58:14 tl 1.63.104.2: RESYNC: (1.63-1.64); FILE MERGED 2007/02/06 19:22:50 nn 1.63.104.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [22cb5e098eba000267cd216ab543a88accd8ff40]

INTEGRATION: CWS tl37 (1.67.104); FILE MERGED 2007/06/04 14:30:36 tl 1.67.104.3: RESYNC: (1.68-1.69); FILE MERGED 2007/04/11 12:48:02 tl 1.67.104.2: RESYNC: (1.67-1.68); FILE MERGED 2007/02/09 16:08:50 tl 1.67.104.1: #i69869# ctrl-x with autocompletion in use fixed


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [27f6d7f44f1201f9c2474e39b352284b9009e1f0]

INTEGRATION: CWS tl37 (1.13.168); FILE MERGED 2007/04/11 12:36:47 tl 1.13.168.2: RESYNC: (1.13-1.14); FILE MERGED 2007/02/06 19:22:49 nn 1.13.168.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [d92029e70a04d327139b017297e6019fb52da88d]

INTEGRATION: CWS tl37 (1.20.166); FILE MERGED 2007/04/11 12:09:12 tl 1.20.166.2: RESYNC: (1.20-1.21); FILE MERGED 2007/02/06 19:22:48 nn 1.20.166.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [63c6ef332e021e1908909f383769e966162c0c7a]

INTEGRATION: CWS tl37 (1.15.70); FILE MERGED 2007/04/11 11:34:38 tl 1.15.70.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/06 19:22:06 nn 1.15.70.1: #i74099# UseInteractionHandler moved out of GuessFilter


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [829e190a0f4da96e8d3433ed67a2131251e325e8]

INTEGRATION: CWS ause081 (1.2.56); FILE MERGED 2007/06/14 15:24:35 hjs 1.2.56.1: #i78393# remove component_getDescriptionFunc from export lists


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [b9cfe77a44898866b1d771ec612e8f1c3f45e38f]

INTEGRATION: CWS ause081 (1.1.1.1.248); FILE MERGED 2007/06/21 10:53:53 hjs 1.1.1.1.248.1: #i78393# remove component_getDescriptionFunc from exports


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [8eb2e2587cb0ce7bb7f7f3137ec7328ed2bbc0c6]

INTEGRATION: CWS ause081 (1.1.1.1.248); FILE MERGED 2007/06/21 10:53:52 hjs 1.1.1.1.248.1: #i78393# remove component_getDescriptionFunc from exports


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [5b0de432d928438e705352c576e7c68ad80fa515]

INTEGRATION: CWS mav21 (1.88.20); FILE MERGED 2007/05/25 16:12:59 mav 1.88.20.3: RESYNC: (1.89-1.90); FILE MERGED 2007/03/12 20:52:52 mav 1.88.20.2: RESYNC: (1.88-1.89); FILE MERGED 2006/12/13 14:12:40 mav 1.88.20.1: #i55790# send notification only when the document is realy modified


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [224158015e15e5cf53f118edd4ddd91b23fab0de]

INTEGRATION: CWS impressalternativtext (1.19.10); FILE MERGED 2007/05/25 10:46:52 cl 1.19.10.1: #i68099# added description to ImageMapObj's


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [24a5e8b5e5c889302f82a6ed194bd1930cf0829d]

INTEGRATION: CWS aw046 (1.31.84); FILE MERGED 2007/05/30 17:39:28 aw 1.31.84.8: RESYNC: (1.32-1.33); FILE MERGED 2007/05/30 14:44:16 aw 1.31.84.7: #i74768# code cleanups 2007/04/24 14:35:00 aw 1.31.84.6: changes after resync 2007/04/23 17:06:03 aw 1.31.84.5: RESYNC: (1.31-1.32); FILE MERGED 2007/02/28 16:04:14 nn 1.31.84.4: #i74768# no separate paint of outliner view, no paint of controls layer 2007/02/27 16:08:50 aw 1.31.84.3: #i74769# adjustments 2007/02/26 17:23:48 aw 1.31.84.2: #i74769# use Begin/EndDrawLayer() support of direct use of SdrPaintWindow and PreRenderDevice 2007/02/22 17:56:08 nn 1.31.84.1: #i74768# use variable pContentDev to draw content in ScGridWindow::Draw


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [bc886414a6c560d19a1387b821f96ce8a7538f8e]

INTEGRATION: CWS aw046 (1.51.16); FILE MERGED 2007/05/30 17:41:23 aw 1.51.16.6: RESYNC: (1.52-1.54); FILE MERGED 2007/05/30 14:44:17 aw 1.51.16.5: #i74768# code cleanups 2007/04/23 17:11:42 aw 1.51.16.4: RESYNC: (1.51-1.52); FILE MERGED 2007/04/03 11:41:57 aw 1.51.16.3: #i74769# Added support for PaintBuffer 2007/03/06 16:02:49 aw 1.51.16.2: #i74769# in-between progess state 2007/02/28 15:23:25 nn 1.51.16.1: #i74768# PaintRangeFinder: always invalidate


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [5b1751bfc741ceacc4a8924dfdec656f82a05346]

INTEGRATION: CWS aw046 (1.16.84); FILE MERGED 2007/05/30 17:41:15 aw 1.16.84.4: RESYNC: (1.17-1.18); FILE MERGED 2007/04/23 17:11:33 aw 1.16.84.3: RESYNC: (1.16-1.17); FILE MERGED 2007/04/03 11:41:56 aw 1.16.84.2: #i74769# Added support for PaintBuffer 2007/03/06 16:02:48 aw 1.16.84.1: #i74769# in-between progess state


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [4baae1ff428fa7835ddd37c6a51fa235c2df1d5e]

INTEGRATION: CWS aw046 (1.49.50); FILE MERGED 2007/05/30 17:40:29 aw 1.49.50.3: RESYNC: (1.49-1.50); FILE MERGED 2007/05/30 14:44:16 aw 1.49.50.2: #i74768# code cleanups 2007/05/24 16:05:24 aw 1.49.50.1: #i74768# added offset to PostPrintDrawingLayer and removed own FormLayer printing


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [cadda100792129723317e0f66b8c8d74a1959ac4]

INTEGRATION: CWS aw046 (1.23.20); FILE MERGED 2007/05/24 16:05:24 aw 1.23.20.3: #i74768# added offset to PostPrintDrawingLayer and removed own FormLayer printing 2007/04/23 17:08:30 aw 1.23.20.2: RESYNC: (1.23-1.24); FILE MERGED 2007/02/26 17:23:49 aw 1.23.20.1: #i74769# use Begin/EndDrawLayer() support of direct use of SdrPaintWindow and PreRenderDevice


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [f061adedee023784f2909fc70b0c49cfd94bc313]

INTEGRATION: CWS aw046 (1.29.176); FILE MERGED 2007/04/23 17:08:10 aw 1.29.176.4: RESYNC: (1.29-1.30); FILE MERGED 2007/02/28 13:31:52 nn 1.29.176.3: #i74768# UpdateFormulas: Invalidate instead of direct output 2007/02/26 17:23:49 aw 1.29.176.2: #i74769# use Begin/EndDrawLayer() support of direct use of SdrPaintWindow and PreRenderDevice 2007/02/22 17:56:08 nn 1.29.176.1: #i74768# use variable pContentDev to draw content in ScGridWindow::Draw


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [3d3450e7ba3d3ea2c8231a4109f5cddfbd11928a]

INTEGRATION: CWS aw046 (1.15.84); FILE MERGED 2007/05/30 17:39:19 aw 1.15.84.3: RESYNC: (1.16-1.17); FILE MERGED 2007/04/23 17:05:54 aw 1.15.84.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/22 17:56:08 nn 1.15.84.1: #i74768# use variable pContentDev to draw content in ScGridWindow::Draw


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [d9fe00fe72c63d6958507ada814806ad5af803a1]

INTEGRATION: CWS aw046 (1.79.82); FILE MERGED 2007/05/30 17:39:00 aw 1.79.82.7: RESYNC: (1.80-1.81); FILE MERGED 2007/05/30 14:44:16 aw 1.79.82.6: #i74768# code cleanups 2007/04/24 14:35:00 aw 1.79.82.5: changes after resync 2007/04/23 17:05:32 aw 1.79.82.4: RESYNC: (1.79-1.80); FILE MERGED 2007/04/03 11:41:56 aw 1.79.82.3: #i74769# Added support for PaintBuffer 2007/03/06 16:02:48 aw 1.79.82.2: #i74769# in-between progess state 2007/02/28 13:31:52 nn 1.79.82.1: #i74768# UpdateFormulas: Invalidate instead of direct output


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [ae457cb325311bf7f5a31ef5c9d4c841df3095f3]

INTEGRATION: CWS aw046 (1.13.2); FILE MERGED 2007/04/23 17:04:10 aw 1.13.2.2: RESYNC: (1.13-1.14); FILE MERGED 2007/04/03 10:16:32 aw 1.13.2.1: #i74769# Added support for PaintBuffer


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [cbd8dea028777926346fa02c3a45d5fb6281c640]

INTEGRATION: CWS aw046 (1.18.22); FILE MERGED 2007/05/24 16:05:16 aw 1.18.22.4: #i74768# added offset to PostPrintDrawingLayer and removed own FormLayer printing 2007/02/28 13:31:52 nn 1.18.22.3: #i74768# UpdateFormulas: Invalidate instead of direct output 2007/02/26 17:23:48 aw 1.18.22.2: #i74769# use Begin/EndDrawLayer() support of direct use of SdrPaintWindow and PreRenderDevice 2007/02/22 17:56:07 nn 1.18.22.1: #i74768# use variable pContentDev to draw content in ScGridWindow::Draw


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [90e18550b310e9489cdc385240ae8ef2c761beb3]

INTEGRATION: CWS aw046 (1.22.82); FILE MERGED 2007/04/23 16:25:08 aw 1.22.82.2: RESYNC: (1.22-1.23); FILE MERGED 2007/02/22 17:56:07 nn 1.22.82.1: #i74768# use variable pContentDev to draw content in ScGridWindow::Draw


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [64e08fbd080efc0f159e16f60e9caa430ff00b99]

INTEGRATION: CWS aw046 (1.4.384); FILE MERGED 2007/02/22 17:56:07 nn 1.4.384.1: #i74768# use variable pContentDev to draw content in ScGridWindow::Draw


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [fad2d6f2afe627fdc7b47dba10afd87305612a7b]

INTEGRATION: CWS aw046 (1.6.176); FILE MERGED 2007/06/01 09:02:46 aw 1.6.176.3: changes after resync 2007/04/23 15:57:38 aw 1.6.176.2: RESYNC: (1.6-1.7); FILE MERGED 2007/02/22 17:56:07 nn 1.6.176.1: #i74768# use variable pContentDev to draw content in ScGridWindow::Draw


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [f2eb73fa0b3412a73e0ab80e661d4a4481f0395c]

INTEGRATION: CWS mav23 (1.2.18); FILE MERGED 2007/06/19 12:06:42 mav 1.2.18.1: #i78344# even plain streams must be encrypted in encrypted document


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [1f30ca7c671aa3dc202e0877e6a086358e0b904d]

INTEGRATION: CWS mav23 (1.2.18); FILE MERGED 2007/06/19 12:06:41 mav 1.2.18.1: #i78344# even plain streams must be encrypted in encrypted document


2007-06-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [e124643644286ee287624898b4a94185ddfd1f33]

INTEGRATION: CWS mav23 (1.65.96); FILE MERGED 2007/06/19 12:02:00 mav 1.65.96.1: #i78344# even plain streams must be encrypted in encrypted document


2007-06-20  Kurt Zenker  <kz@openoffice.org>  [35cd77e50d3e284523a6c94be68287c79bf3953e]

INTEGRATION: CWS calcautosum (1.32.46); FILE MERGED 2007/05/30 12:23:12 tbe 1.32.46.8: RESYNC: (1.32-1.33); FILE MERGED 2007/05/29 11:52:13 tbe 1.32.46.7: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/25 15:50:41 tbe 1.32.46.6: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/25 13:53:10 tbe 1.32.46.5: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/24 14:01:36 tbe 1.32.46.4: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/22 13:50:21 tbe 1.32.46.3: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/09 08:26:18 tbe 1.32.46.2: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/07 15:36:11 tbe 1.32.46.1: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value


2007-06-20  Kurt Zenker  <kz@openoffice.org>  [3bc35796e886511eb65db1824f6a357f122811c8]

INTEGRATION: CWS calcautosum (1.29.148); FILE MERGED 2007/05/30 11:46:07 tbe 1.29.148.5: RESYNC: (1.29-1.30); FILE MERGED 2007/05/25 15:49:55 tbe 1.29.148.4: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/25 13:52:08 tbe 1.29.148.3: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/22 13:49:42 tbe 1.29.148.2: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/07 15:34:46 tbe 1.29.148.1: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value


2007-06-20  Kurt Zenker  <kz@openoffice.org>  [a97244b09e962b71aceee80683fd09759d2a6d95]

INTEGRATION: CWS calcautosum (1.51.46); FILE MERGED 2007/05/30 11:33:40 tbe 1.51.46.5: RESYNC: (1.51-1.52); FILE MERGED 2007/05/24 14:00:43 tbe 1.51.46.4: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/22 13:49:11 tbe 1.51.46.3: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/09 08:25:38 tbe 1.51.46.2: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value 2007/05/07 15:34:17 tbe 1.51.46.1: #i51564# ux-ctest: Summation does not work from UI; changes exsisting value


2007-06-20  Kurt Zenker  <kz@openoffice.org>  [2d092f6345ac1bb4de7d09c62bdcaeb9e0168f5c]

INTEGRATION: CWS calcautosum (1.28.10); FILE MERGED 2007/06/01 09:05:00 tbe 1.28.10.1: #i51564# fixed warning wntmsci10.pro


2007-06-20  Kurt Zenker  <kz@openoffice.org>  [c93d055be6d9d4f3b1004d0a5281507e2656ddde]

INTEGRATION: CWS calcautosum (1.49.10); FILE MERGED 2007/05/31 08:15:09 tbe 1.49.10.1: #i51564# fixed warning wntmsci10


2007-06-14  Oliver Bolte  <obo@openoffice.org>  [8b08a5ae700b6600708b003c1792e68dcf3cb620]

#i10000# warning wntmsci10


2007-06-14  Oliver Bolte  <obo@openoffice.org>  [1ce378c0d972dfa4117e979f96beea8896f4f36f]

#i10000# wntmsci10 warning


2007-06-13  Oliver Bolte  <obo@openoffice.org>  [4b91e474e5a1dde95f18922af357407d44ab734c]

INTEGRATION: CWS jgarrays (1.66.8); FILE MERGED 2007/04/26 12:26:12 jodygoldberg 1.66.8.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [c5b75ff28f7c7666f05eb89a329dbcef7a983c21]

INTEGRATION: CWS jgarrays (1.16.212); FILE MERGED 2007/05/15 15:10:46 er 1.16.212.1: treat ScMatValType consistent


2007-06-13  Oliver Bolte  <obo@openoffice.org>  [259d251641778859820afe08691d6380e9ecc085]

INTEGRATION: CWS jgarrays (1.30.210); FILE MERGED 2007/04/26 12:26:07 jodygoldberg 1.30.210.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [62c8c91fe079715375e715a433bf9e83a720caaa]

INTEGRATION: CWS jgarrays (1.10.52); FILE MERGED 2007/06/04 19:18:33 er 1.10.52.2: RESYNC: (1.10-1.11); FILE MERGED 2007/04/26 12:26:06 jodygoldberg 1.10.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [6d19c989b717a3f13a96c7b77e5221056c205f5d]

INTEGRATION: CWS jgarrays (1.18.220); FILE MERGED 2007/05/22 15:32:03 jodygoldberg 1.18.220.1: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [bf4e7ece243c24d4135b852d73337d7aa7564240]

INTEGRATION: CWS jgarrays (1.11.38); FILE MERGED 2007/04/26 12:26:06 jodygoldberg 1.11.38.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [9bcf152071225dd3e435d966017569c7d17fc690]

INTEGRATION: CWS jgarrays (1.9.52); FILE MERGED 2007/04/26 12:26:06 jodygoldberg 1.9.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [7b9aca05e442ed1a2aaab9f52f3f7d14b17043d3]

INTEGRATION: CWS jgarrays (1.18.52); FILE MERGED 2007/04/26 12:26:06 jodygoldberg 1.18.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [5b40ecbc11a47cf759d8beaa68425e04132a08d0]

INTEGRATION: CWS jgarrays (1.19.50); FILE MERGED 2007/06/04 19:07:07 er 1.19.50.2: RESYNC: (1.19-1.20); FILE MERGED 2007/04/26 12:26:06 jodygoldberg 1.19.50.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [3bb8df50876bb93dec947f4af9315cf7d1302a93]

INTEGRATION: CWS jgarrays (1.13.52); FILE MERGED 2007/06/04 19:06:16 er 1.13.52.2: RESYNC: (1.13-1.14); FILE MERGED 2007/04/26 12:26:05 jodygoldberg 1.13.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [329ef1e7e9a51542768a73646dd73339cdfa523e]

INTEGRATION: CWS jgarrays (1.8.52); FILE MERGED 2007/04/26 12:26:05 jodygoldberg 1.8.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [6dfef814c85a101938598f903b10a7709affa5fc]

INTEGRATION: CWS jgarrays (1.26.52); FILE MERGED 2007/06/04 19:03:25 er 1.26.52.2: RESYNC: (1.26-1.27); FILE MERGED 2007/05/22 15:32:03 jodygoldberg 1.26.52.1: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [a8ba779ee1a563fbe64a2597b00f083e75a2b649]

INTEGRATION: CWS jgarrays (1.23.52); FILE MERGED 2007/06/04 19:02:44 er 1.23.52.2: RESYNC: (1.23-1.25); FILE MERGED 2007/04/26 12:26:05 jodygoldberg 1.23.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [21c2211ec89edde8ce29168652807f2df9013d44]

INTEGRATION: CWS jgarrays (1.11.52); FILE MERGED 2007/06/04 19:02:32 er 1.11.52.2: RESYNC: (1.11-1.12); FILE MERGED 2007/04/26 12:26:05 jodygoldberg 1.11.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [e50a29fc844826b327f93a00df9aa638fbd05f81]

INTEGRATION: CWS jgarrays (1.27.102); FILE MERGED 2007/06/04 18:59:11 er 1.27.102.5: RESYNC: (1.27-1.29); FILE MERGED 2007/05/23 14:05:41 er 1.27.102.4: ScMatrix refcount is mutable now, const_cast ugliness isn't needed anymore 2007/05/23 10:33:35 er 1.27.102.3: typo in non-pro assertion 2007/05/22 15:32:03 jodygoldberg 1.27.102.2: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.
2007/05/15 15:10:45 er 1.27.102.1: treat ScMatValType consistent

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [d9de07181992558645261bfcd00976d344d98ea3]

INTEGRATION: CWS jgarrays (1.15.52); FILE MERGED 2007/05/14 16:49:36 er 1.15.52.3: help MS and Sun compilers to make their way 2007/05/08 21:16:03 jodygoldberg 1.15.52.2: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er

- Inline boolean support in ScMatrix
- parsing for booleans in inline arrays
- update ScMatrix to string code to factor out AppendString and AppendDouble
2007/04/26 12:26:05 jodygoldberg 1.15.52.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [f83844de2b536d81bad72e2562449ee00bf07b81]

INTEGRATION: CWS jgarrays (1.11.212); FILE MERGED 2007/04/26 12:26:04 jodygoldberg 1.11.212.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [7f792a4d9847158caf5383cc71694b701363025d]

INTEGRATION: CWS jgarrays (1.38.52); FILE MERGED 2007/06/04 18:57:21 er 1.38.52.3: RESYNC: (1.38-1.39); FILE MERGED 2007/05/14 16:18:53 er 1.38.52.2: for unxsols4 and STL, exceptions need to be turned on (excform.cxx, excform8.cxx) 2007/05/14 13:16:55 er 1.38.52.1: for unxsols4 and STL, exceptions need to be turned on (excform.cxx, excform8.cxx)


2007-06-13  Oliver Bolte  <obo@openoffice.org>  [e35002790d7e287013c822ed7066d975c1c54c09]

INTEGRATION: CWS jgarrays (1.86.50); FILE MERGED 2007/06/04 18:57:05 er 1.86.50.2: RESYNC: (1.86-1.88); FILE MERGED 2007/04/26 12:26:04 jodygoldberg 1.86.50.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [485823e9df0217ef79bca516e30e1a2ef5f22748]

INTEGRATION: CWS jgarrays (1.42.52); FILE MERGED 2007/04/26 12:26:04 jodygoldberg 1.42.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [a464e5d65e7ddbe1ebe876af0d23776e08f6900f]

INTEGRATION: CWS jgarrays (1.45.52); FILE MERGED 2007/06/04 18:54:26 er 1.45.52.3: RESYNC: (1.45-1.46); FILE MERGED 2007/05/08 21:16:02 jodygoldberg 1.45.52.2: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er

- Inline boolean support in ScMatrix
- parsing for booleans in inline arrays
- update ScMatrix to string code to factor out AppendString and AppendDouble
2007/04/26 12:26:04 jodygoldberg 1.45.52.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [56c06451bb5655370bba599e1d471b171544ceb4]

INTEGRATION: CWS jgarrays (1.26.54); FILE MERGED 2007/05/22 15:32:03 jodygoldberg 1.26.54.4: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.
2007/05/08 21:17:26 jodygoldberg 1.26.54.3: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er

remove debug spew
2007/05/08 21:16:02 jodygoldberg 1.26.54.2: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er

- Inline boolean support in ScMatrix
- parsing for booleans in inline arrays
- update ScMatrix to string code to factor out AppendString and AppendDouble
2007/04/26 12:26:03 jodygoldberg 1.26.54.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [e4a6be0c5e5c011130f0fb914b63ae3d6cfa62da]

INTEGRATION: CWS jgarrays (1.14.52); FILE MERGED 2007/05/15 15:10:45 er 1.14.52.2: treat ScMatValType consistent 2007/05/08 21:16:02 jodygoldberg 1.14.52.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er

- Inline boolean support in ScMatrix
- parsing for booleans in inline arrays
- update ScMatrix to string code to factor out AppendString and AppendDouble

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [cb38235ee92c8a3d372e470ccff4607cf81a5d8e]

INTEGRATION: CWS jgarrays (1.23.18); FILE MERGED 2007/05/15 15:10:44 er 1.23.18.1: treat ScMatValType consistent


2007-06-13  Oliver Bolte  <obo@openoffice.org>  [dfb7a8beb55ed54449e6618bc908af6cdf4bc595]

INTEGRATION: CWS jgarrays (1.45.50); FILE MERGED 2007/06/04 18:51:49 er 1.45.50.3: RESYNC: (1.45-1.47); FILE MERGED 2007/05/15 15:10:44 er 1.45.50.2: treat ScMatValType consistent 2007/05/08 21:16:02 jodygoldberg 1.45.50.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er

- Inline boolean support in ScMatrix
- parsing for booleans in inline arrays
- update ScMatrix to string code to factor out AppendString and AppendDouble

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [a66e429d8da4ef3803677f793020bd676cbb6e37]

INTEGRATION: CWS jgarrays (1.44.36); FILE MERGED 2007/06/04 18:51:31 er 1.44.36.2: RESYNC: (1.44-1.45); FILE MERGED 2007/05/15 15:10:44 er 1.44.36.1: treat ScMatValType consistent


2007-06-13  Oliver Bolte  <obo@openoffice.org>  [cc1372be110dffccbd2a8bd0ad0ea807198b8a25]

INTEGRATION: CWS jgarrays (1.68.52); FILE MERGED 2007/05/22 15:32:03 jodygoldberg 1.68.52.5: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.
2007/05/14 12:53:13 er 1.68.52.4: IsBoolean needs to return a value
2007/05/08 21:17:26 jodygoldberg 1.68.52.3: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er

remove debug spew
2007/05/08 21:16:02 jodygoldberg 1.68.52.2: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er

- Inline boolean support in ScMatrix
- parsing for booleans in inline arrays
- update ScMatrix to string code to factor out AppendString and AppendDouble
2007/04/26 12:26:03 jodygoldberg 1.68.52.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [e28645eb58acda70ace8e37ea7ee2d8d6dc4cd47]

INTEGRATION: CWS jgarrays (1.51.6); FILE MERGED 2007/05/22 16:29:01 er 1.51.6.3: SC_OPCODE_ARRAY_COL_SEP must be ';' semicolon 2007/05/22 15:32:02 jodygoldberg 1.51.6.2: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.
2007/04/26 12:26:00 jodygoldberg 1.51.6.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [b610b393e6dbc9d8c52a93a73396a6843a382ad9]

INTEGRATION: CWS jgarrays (1.49.54); FILE MERGED 2007/06/04 18:47:35 er 1.49.54.2: RESYNC: (1.49-1.50); FILE MERGED 2007/04/26 12:25:59 jodygoldberg 1.49.54.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [e0fd3f7ca1294af2439fff25e15a4ed26da543ca]

INTEGRATION: CWS jgarrays (1.29.54); FILE MERGED 2007/05/23 13:53:45 er 1.29.54.1: #i32342# now that we have (even named) matrix constants, a formula cell can't assume anymore to be the sole owner of a result matrix (and crash if it wasn't)


2007-06-13  Oliver Bolte  <obo@openoffice.org>  [e9740293cbbfe0614b7c4ac1213eb3ba1f388fb2]

INTEGRATION: CWS jgarrays (1.36.54); FILE MERGED 2007/06/04 18:43:21 er 1.36.54.3: RESYNC: (1.36-1.37); FILE MERGED 2007/05/23 13:53:44 er 1.36.54.2: #i32342# now that we have (even named) matrix constants, a formula cell can't assume anymore to be the sole owner of a result matrix (and crash if it wasn't) 2007/05/15 15:10:44 er 1.36.54.1: treat ScMatValType consistent


2007-06-13  Oliver Bolte  <obo@openoffice.org>  [11db6d1a5d75d2879ed8ad2738386f829fc82583]

INTEGRATION: CWS jgarrays (1.7.102); FILE MERGED 2007/06/04 18:37:43 er 1.7.102.2: RESYNC: (1.7-1.8); FILE MERGED 2007/04/26 12:25:59 jodygoldberg 1.7.102.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [c6e557f677af741b3ba80dcadd7cf7a5286d883c]

INTEGRATION: CWS jgarrays (1.7.408); FILE MERGED 2007/05/23 13:53:44 er 1.7.408.5: #i32342# now that we have (even named) matrix constants, a formula cell can't assume anymore to be the sole owner of a result matrix (and crash if it wasn't) 2007/05/22 15:32:01 jodygoldberg 1.7.408.4: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.
2007/05/15 15:10:43 er 1.7.408.3: treat ScMatValType consistent
2007/05/14 13:25:00 er 1.7.408.2: IsValueOrEmpty: logic flaw
2007/05/08 21:16:02 jodygoldberg 1.7.408.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er

- Inline boolean support in ScMatrix
- parsing for booleans in inline arrays
- update ScMatrix to string code to factor out AppendString and AppendDouble

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [ec74cdbc83987a39d98756b228c8c291383cc39e]

INTEGRATION: CWS jgarrays (1.15.148); FILE MERGED 2007/05/22 15:32:01 jodygoldberg 1.15.148.2: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.
2007/04/26 12:25:59 jodygoldberg 1.15.148.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [12d422c6f2595063baf96722ee9f12b126e6551d]

INTEGRATION: CWS jgarrays (1.15.148); FILE MERGED 2007/04/26 12:25:58 jodygoldberg 1.15.148.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [8516d49ece4d696b9846b028e89893f9f5b30505]

INTEGRATION: CWS jgarrays (1.3.420); FILE MERGED 2007/04/26 12:25:58 jodygoldberg 1.3.420.1: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [2ac7ed415b7f047373f6a5250af2b4be1654d33e]

INTEGRATION: CWS jgarrays (1.29.54); FILE MERGED 2007/06/04 18:33:34 er 1.29.54.3: RESYNC: (1.29-1.30); FILE MERGED 2007/05/08 21:16:01 jodygoldberg 1.29.54.2: Issue number:  32342 Submitted by:  jodygoldberg Reviewed by:   er

- Inline boolean support in ScMatrix
- parsing for booleans in inline arrays
- update ScMatrix to string code to factor out AppendString and AppendDouble
2007/04/26 12:25:58 jodygoldberg 1.29.54.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [319a08624cb2a9331662efe7053862df19699ef6]

INTEGRATION: CWS jgarrays (1.13.148); FILE MERGED 2007/05/22 15:32:01 jodygoldberg 1.13.148.2: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.
2007/04/26 12:25:58 jodygoldberg 1.13.148.1: Issue number:  32342
Submitted by:  jodygoldberg
Reviewed by:   er,dr

Some small updates to the patch in issuezilla, resynced to m210.
It still needs the small re-factoring er suggested
    re: ScCompiler::AppendString

2007-06-13  Oliver Bolte  <obo@openoffice.org>  [43978d26305e14ee6e0ad71386ca9ed5c58c64d5]

INTEGRATION: CWS jgarrays (1.23.54); FILE MERGED 2007/05/23 13:53:44 er 1.23.54.1: #i32342# now that we have (even named) matrix constants, a formula cell can't assume anymore to be the sole owner of a result matrix (and crash if it wasn't)


2007-06-13  Oliver Bolte  <obo@openoffice.org>  [cd07abac716de0f2a80c4cb2b0c0443b4d670e10]

INTEGRATION: CWS jgarrays (1.12.54); FILE MERGED 2007/05/22 15:32:01 jodygoldberg 1.12.54.1: Issue number:  21149 Submitted by:  jodygoldberg@openoffice.org Reviewed by:   er

drops the O(N^2) algorithm for DDE matrix export in favour of just doing it
inline.

2007-06-11  Oliver Bolte  <obo@openoffice.org>  [df24f28a7eb1ebcf91ef44c92758b3044f633120]

INTEGRATION: CWS chart05 (1.2.2); FILE MERGED 2007/05/31 06:47:52 bm 1.2.2.1: #i77959# superfluous class-specifier in declaration


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [7c9c9d4be0e9c642fbe4f5fe7f59ae88b0918885]

INTEGRATION: CWS chart05 (1.24.2); FILE MERGED 2007/05/25 16:27:57 iha 1.24.2.1: #i71328# Automatic Symbols for lines in combi charts are not the same as in older versions


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [cfa576c24cf0aed311957feab7c31f393572027a]

INTEGRATION: CWS chart05 (1.22.2); FILE MERGED 2007/05/25 16:39:40 iha 1.22.2.1: #i77155# 3D stacked Col/Bar Charts are constricted at the connection edges like a wasp


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [a3d64fbd9860ed929cdf462c285100cafe5897e0]

INTEGRATION: CWS chart05 (1.2.2); FILE MERGED 2007/05/25 14:54:28 iha 1.2.2.1: #i75197# new Chart: title edit window is slightly to small on first edit


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [72ec0d143788dea175fa52d35823d3b51598bc82]

INTEGRATION: CWS chart05 (1.36.2); FILE MERGED 2007/05/25 16:35:14 iha 1.36.2.2: #i68045# 3d Bar Chart is growing beyond visuell chart area on double click 2007/05/25 16:27:57 iha 1.36.2.1: #i71328# Automatic Symbols for lines in combi charts are not the same as in older versions


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [35250cc181c371fc018833424149546212d003a6]

INTEGRATION: CWS chart05 (1.3.2); FILE MERGED 2007/05/29 16:40:50 iha 1.3.2.1: #i77904# to much distance between grids and floor or wall


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [8ddf890e57a2a6f2103358f0a44ef69c78897440]

INTEGRATION: CWS chart05 (1.15.2); FILE MERGED 2007/05/25 16:27:57 iha 1.15.2.1: #i71328# Automatic Symbols for lines in combi charts are not the same as in older versions


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [1c3f4fad87b29ce060eed4e54d9abfabd0abb15a]

INTEGRATION: CWS chart05 (1.13.2); FILE MERGED 2007/05/29 16:43:08 iha 1.13.2.1: #i77904# to much distance between grids and floor or wall


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [2975ef6627c301a56e5c3010c7350e6f77253cb5]

INTEGRATION: CWS chart05 (1.46.2); FILE MERGED 2007/05/30 07:23:49 iha 1.46.2.1: #i77915# 3D xy chart should be deep


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [64ea864d64131a066c207d43e681e4fbc773d98f]

INTEGRATION: CWS chart05 (1.10.2); FILE MERGED 2007/05/25 15:17:08 iha 1.10.2.1: #i76904# wrong offset for min and max values


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [4ec5a2ad08a283bdcbfa17b05e1b7d6372150e4f]

INTEGRATION: CWS chart05 (1.7.2); FILE MERGED 2007/05/25 15:30:11 iha 1.7.2.2: #i77030# autocorrect wrong files - use maximum subincrement count 2007/05/25 15:17:08 iha 1.7.2.1: #i76904# wrong offset for min and max values


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [4cc98ab18bf8978c75bcd77021f622a793b00d4d]

INTEGRATION: CWS chart05 (1.3.48); FILE MERGED 2007/05/29 08:56:25 bm 1.3.48.1: #124507# UserDefinedAttributes


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [3306c08e313c3d2692229fe64152a2c9b2b9b29d]

INTEGRATION: CWS chart05 (1.2.2); FILE MERGED 2007/05/25 15:59:11 iha 1.2.2.1: #i71557# Highlight used cell ranges automatically


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [9ba5a9e8b76b24300c0a2e7239c670470b3c5be2]

INTEGRATION: CWS chart05 (1.8.2); FILE MERGED 2007/05/31 09:00:33 bm 1.8.2.2: setVertical: loop iterates one index too much -> exception (seen as assertion) 2007/05/25 16:55:55 iha 1.8.2.1: #i75382# switching charttypes: adjust the rotation of x and y axis title


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [e7086cb2bf2e30602618e27667709cc381c968cf]

INTEGRATION: CWS chart05 (1.4.2); FILE MERGED 2007/05/30 15:23:08 iha 1.4.2.1: #i77954# when switching 3D scheme also borders of single points should change


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [1126774d24c73afe3517eb25cc56da39faacbb3b]

INTEGRATION: CWS chart05 (1.9.2); FILE MERGED 2007/05/25 15:59:11 iha 1.9.2.1: #i71557# Highlight used cell ranges automatically


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [843c5e97a2d8ef74829701b12712f849c9137e81]

INTEGRATION: CWS chart05 (1.6.2); FILE MERGED 2007/05/30 07:22:58 iha 1.6.2.1: #i77915# 3D xy chart should be deep


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [e3b342dfc6f19fe1455352ae6ae32a305c816d6d]

INTEGRATION: CWS chart05 (1.8.2); FILE MERGED 2007/05/30 07:22:58 iha 1.8.2.1: #i77915# 3D xy chart should be deep


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [04c793a35fa07e703ce6e3fa42d0a4101120ccc4]

INTEGRATION: CWS chart05 (1.6.2); FILE MERGED 2007/06/01 08:03:48 iha 1.6.2.1: #i76446# Object border for OLE partly gone - no border per default


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [64cd1b8122e94fef13b6506df76f4f1c02997f97]

INTEGRATION: CWS chart05 (1.7.2); FILE MERGED 2007/05/29 08:56:25 bm 1.7.2.1: #124507# UserDefinedAttributes


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [063e9d64b13605a71fdfa70a67d213a9a1c1e77e]

INTEGRATION: CWS chart05 (1.11.2); FILE MERGED 2007/05/31 14:59:21 bm 1.11.2.2: #i77997# release m_xFamilies in dispose() (todo: remove families, seem not to be used) 2007/05/29 08:56:25 bm 1.11.2.1: #124507# UserDefinedAttributes


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [dcef1b6b0571be0956ababe51e2fce5dc6ce5a93]

INTEGRATION: CWS chart05 (1.2.2); FILE MERGED 2007/05/30 14:22:55 bm 1.2.2.1: #i77881# StarChart 3.0 and 4.0 missing in handling for binary format


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [8aa058f3a514de2009a512eb9268a756fcf69346]

INTEGRATION: CWS chart05 (1.10.2); FILE MERGED 2007/05/31 14:58:10 bm 1.10.2.3: #i77997# release some more members in dispose() 2007/05/29 08:56:25 bm 1.10.2.2: #124507# UserDefinedAttributes 2007/05/25 15:59:11 iha 1.10.2.1: #i71557# Highlight used cell ranges automatically


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [80b121b4f3c9de9a4e425dee05854305b6ba1550]

INTEGRATION: CWS chart05 (1.2.2); FILE MERGED 2007/05/25 14:54:26 iha 1.2.2.1: #i75197# new Chart: title edit window is slightly to small on first edit


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [9e7b696074d738b2b3c5164b7c87dfcd7e7ac59a]

INTEGRATION: CWS chart05 (1.2.126); FILE MERGED 2007/05/29 08:56:24 bm 1.2.126.1: #124507# UserDefinedAttributes


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [f80d5b199d453cc3d0ff6b219bd766de4a097902]

INTEGRATION: CWS chart05 (1.4.2); FILE MERGED 2007/05/29 10:01:11 bm 1.4.2.1: #i77447# member order changed so that mutex is created before passed as parameter to other CTOR


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [d9254b6b940ebbcb160350f0c2b4d56137090329]

INTEGRATION: CWS chart05 (1.3.2); FILE MERGED 2007/05/30 15:22:42 iha 1.3.2.1: #i77954# when switching 3D scheme also borders of single points should change


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [84ce404c9ba80698e6c6544a951f675510c9b928]

INTEGRATION: CWS chart05 (1.6.2); FILE MERGED 2007/05/25 15:59:11 iha 1.6.2.1: #i71557# Highlight used cell ranges automatically


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [aa6f678b3ef0d5ad488b634c52f427e5591a51ca]

INTEGRATION: CWS chart05 (1.23.2); FILE MERGED 2007/05/31 12:39:17 bm 1.23.2.1: check m_pDrawViewWrapper before accessing


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [43849b63e43238a9e79d9cadd5bfb6c813fb7255]

INTEGRATION: CWS chart05 (1.21.2); FILE MERGED 2007/05/31 14:57:20 bm 1.21.2.2: #i77997# release view in dispose() 2007/05/25 15:59:10 iha 1.21.2.1: #i71557# Highlight used cell ranges automatically


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [2f84392a5e02e9125dd6f4361244163999476615]

INTEGRATION: CWS chart05 (1.6.2); FILE MERGED 2007/05/25 15:00:38 iha 1.6.2.1: #i77060# wrong state for Connection lines check box


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [8f4a1e84043988f979ee88ac1c1dc5eed2ab7b04]

INTEGRATION: CWS chart05 (1.2.2); FILE MERGED 2007/06/01 13:11:52 bm 1.2.2.2: #i75849# activate the cell after making cell visible in SeriesHeaderGotFocus (found by testtool) 2007/05/29 08:50:03 bm 1.2.2.1: #i75849# handle button enabling/disabling also for the header row


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [6b6638154019c331af587d51dbc0b2335f376fea]

INTEGRATION: CWS chart05 (1.2.2); FILE MERGED 2007/05/30 12:20:30 iha 1.2.2.1: #i77915# 3D xy chart should be deep - don't crash when chart class is missing in xml chart context


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [b9e098a530ee3d49d3c313494142aa79c2787d1c]

INTEGRATION: CWS chart05 (1.5.2); FILE MERGED 2007/05/30 12:22:10 iha 1.5.2.1: #i77915# 3D xy chart should be deep - if no template matches use the first charttype itself


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [ce3a90774bb971a0e5dc6c541f74c1e77f8d936a]

INTEGRATION: CWS chart05 (1.5.2); FILE MERGED 2007/05/31 14:55:25 bm 1.5.2.1: #i77997# free all ressources in dispose, call dispose in setDelegator instead of duplicating the code


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [8c26d9bb8b0b47e2631a0f2c27273fa28e6f980a]

INTEGRATION: CWS chart05 (1.2.2); FILE MERGED 2007/05/31 14:53:43 bm 1.2.2.1: #i77997# release also view in clear()


2007-06-11  Oliver Bolte  <obo@openoffice.org>  [867f6f491d929542dc74eab6a2ed6ef8d23cace3]

INTEGRATION: CWS chart05 (1.15.2); FILE MERGED 2007/05/30 10:21:46 bm 1.15.2.1: adapted URL, disabled UserDefAttr and y-axis title


2007-06-05  Ivo Hinkelmann  <ihi@openoffice.org>  [2ee81f73c2c9d7f152aaf531da830d5f146e3ec7]

INTEGRATION: CWS bgdlremove (1.25.66); FILE MERGED 2007/05/18 11:18:04 kso 1.25.66.1: #i77419# - cleanup of ucbhelper namespaces.


2007-06-05  Ivo Hinkelmann  <ihi@openoffice.org>  [889105a0ed93dbc84693e6192608fc951bedea37]

INTEGRATION: CWS bgdlremove (1.11.120); FILE MERGED 2007/05/18 11:18:04 kso 1.11.120.1: #i77419# - cleanup of ucbhelper namespaces.


2007-06-05  Ivo Hinkelmann  <ihi@openoffice.org>  [dda524d32763a499820ed47c749bf06272d6e9d3]

INTEGRATION: CWS bgdlremove (1.2.6); FILE MERGED 2007/05/28 17:36:50 kso 1.2.6.1: #i77419# - Adapt to ucbhelper namespace changes.


2007-05-29  Rüdiger Timm  <rt@openoffice.org>  [b8dfc24ee28091189c7fd8d2edf54f5449a89052]

INTEGRATION: CWS webhtml (1.26.156); FILE MERGED 2007/04/04 09:55:19 cd 1.26.156.1: #i74477# Make changes proposed by ux discussion


2007-05-29  Gerd Weiss  <gm@openoffice.org>  [0402a81851278804b4497a5c15ac3b4412229f5c]

INTEGRATION: CWS pj80 (1.2.4); FILE MERGED 2007/05/26 09:09:16 pjanik 1.2.4.1: #i77818#: remove extra qualification of setCellAny.


2007-05-25  Vladimir Glazounov  <vg@openoffice.org>  [cc3e6138cf745e5f3bc81e248ad93c7745c32a06]

INTEGRATION: CWS notepaint_SRC680 (1.31.40); FILE MERGED 2007/05/11 17:15:11 nn 1.31.40.1: #i74740# Paint: no own paint for outliner view


2007-05-25  Vladimir Glazounov  <vg@openoffice.org>  [8b6d89e15047c1c9b2d833ed145ad9dbfa7daf92]

INTEGRATION: CWS mingwport04 (1.5.26); FILE MERGED 2007/04/18 10:31:18 vg 1.5.26.1: #i75844# MinGW port efforts part II


2007-05-25  Vladimir Glazounov  <vg@openoffice.org>  [ae93712599a456f86f99d0db65780148bac2a830]

INTEGRATION: CWS mingwport04 (1.11.20); FILE MERGED 2007/04/18 10:31:17 vg 1.11.20.1: #i75844# MinGW port efforts part II


2007-05-24  Rüdiger Timm  <rt@openoffice.org>  [227df832249dea8e93a33e67d2d17d46c44a510c]

#i10000# source_view_axes needs an object file from source_tools


2007-05-23  Rüdiger Timm  <rt@openoffice.org>  [6bf69f88c52fba8193c0cc2388974b8d80fa6011]

#i10000# Get changes from CWS chart2mst3. This file has been added in two childworkspaces. You can not add one file differently in two CWSs; that one integrated first will win, changes done to the other one get lost.


2007-05-23  Rüdiger Timm  <rt@openoffice.org>  [e8fcc9302be7ae61c9af312484385c1833697b45]

#i10000# Get changes from CWS chart2mst3. This file has been added in two childworkspaces. You can not add one file differently in two CWSs; that one integrated first will win, changes done to the other one get lost.


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bec66a168a81a3d6a6e6b92d977763168d5a1890]

INTEGRATION: CWS chart2mst3 (1.36.30); FILE MERGED 2007/05/14 20:46:39 bm 1.36.30.4: RESYNC: (1.38-1.40); FILE MERGED 2007/04/25 04:19:07 bm 1.36.30.3: RESYNC: (1.37-1.38); FILE MERGED 2006/11/24 18:35:42 bm 1.36.30.2: RESYNC: (1.36-1.37); FILE MERGED 2006/11/23 17:52:26 nn 1.36.30.1: #i71250# remove SCHLIB


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2a94be40b6379440a6f4d999deac6160721fba72]

INTEGRATION: CWS chart2mst3 (1.6.118); FILE MERGED 2005/05/17 13:29:40 bm 1.6.118.2: RESYNC: (1.6-1.7); FILE MERGED 2005/04/06 12:41:08 iha 1.6.118.1: #i20344# changed menu command 'DrawChart'->'InsertObjectChart' for direct Chart Creation from toolbar


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bdc7f5cd678be8867e9527976d6364db29ca0546]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/19 00:59:21 bm 1.2.4.9: RESYNC: (1.25-1.26); FILE MERGED 2006/05/05 15:34:41 bm 1.2.4.8: RESYNC: (1.21-1.25); FILE MERGED 2006/01/25 15:04:43 bm 1.2.4.7: RESYNC: (1.20-1.21); FILE MERGED 2005/03/17 14:05:32 bm 1.2.4.6: RESYNC: (1.18-1.20); FILE MERGED 2004/11/02 17:10:03 bm 1.2.4.5: RESYNC: (1.13-1.18); FILE MERGED 2004/08/30 18:31:15 bm 1.2.4.4: RESYNC: (1.7-1.13); FILE MERGED 2004/08/04 23:30:52 bm 1.2.4.3: RESYNC: (1.4-1.7); FILE MERGED 2004/06/03 06:49:48 iha 1.2.4.2: RESYNC: (1.2-1.4); FILE MERGED 2004/04/07 20:30:48 iha 1.2.4.1: #i20344# changed menu command 'StarChartDialog'->'InsertObjectChart' for direct Chart Creation from menu


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b85ecc318744441dbb7d557283d1670c3f6f8208]

INTEGRATION: CWS chart2mst3 (1.10.84); FILE MERGED 2006/11/20 13:39:23 nn 1.10.84.2: #i71560# remove old chart dialog 2006/10/25 18:17:37 nn 1.10.84.1: allow range selection from inplace object without deactivating the object


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7b6a0b0399cd2d28123d5d9ff0050d12aaa665f8]

INTEGRATION: CWS chart2mst3 (1.26.10); FILE MERGED 2007/04/25 04:17:06 bm 1.26.10.8: RESYNC: (1.33-1.34); FILE MERGED 2006/11/24 18:34:58 bm 1.26.10.7: RESYNC: (1.31-1.33); FILE MERGED 2006/11/20 13:39:22 nn 1.26.10.6: #i71560# remove old chart dialog 2006/11/07 07:58:01 nn 1.26.10.5: #i71250# remove unused include 2006/10/25 18:17:37 nn 1.26.10.4: allow range selection from inplace object without deactivating the object 2006/10/19 00:56:26 bm 1.26.10.3: RESYNC: (1.28-1.31); FILE MERGED 2006/05/05 15:33:32 bm 1.26.10.2: RESYNC: (1.26-1.28); FILE MERGED 2005/12/02 13:32:09 bm 1.26.10.1: #i58786# on activation of charts instantiate an ScChartRangeSelectionListener for showing selected ranges


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [990ca14e34fea62f8db6c76d61d7dbdaba8a3164]

INTEGRATION: CWS chart2mst3 (1.35.8); FILE MERGED 2007/05/14 20:45:05 bm 1.35.8.18: RESYNC: (1.64-1.65); FILE MERGED 2007/04/25 04:16:20 bm 1.35.8.17: RESYNC: (1.63-1.64); FILE MERGED 2007/02/07 15:51:42 iha 1.35.8.16: RESYNC: (1.61-1.63); FILE MERGED 2006/11/24 18:34:51 bm 1.35.8.15: RESYNC: (1.60-1.61); FILE MERGED 2006/10/26 12:42:57 nn 1.35.8.14: allow multiple selection in range selection API 2006/10/25 18:17:37 nn 1.35.8.13: allow range selection from inplace object without deactivating the object 2006/10/19 00:55:36 bm 1.35.8.12: RESYNC: (1.58-1.60); FILE MERGED 2006/06/16 13:56:02 bm 1.35.8.11: RESYNC: (1.56-1.58); FILE MERGED 2006/05/05 15:33:23 bm 1.35.8.10: RESYNC: (1.52-1.56); FILE MERGED 2006/01/25 15:01:46 bm 1.35.8.9: RESYNC: (1.51-1.52); FILE MERGED 2005/10/08 11:57:43 bm 1.35.8.8: RESYNC: (1.50-1.51); FILE MERGED 2005/03/17 14:02:41 bm 1.35.8.7: RESYNC: (1.46-1.50); FILE MERGED 2004/11/02 17:06:57 bm 1.35.8.6: RESYNC: (1.42-1.46); FILE MERGED 2004/08/30 18:29:49 bm 1.35.8.5: RESYNC: (1.40-1.42); FILE MERGED 2004/08/04 23:27:31 bm 1.35.8.4: RESYNC: (1.39-1.40); FILE MERGED 2004/06/15 19:11:50 bm 1.35.8.3: RESYNC: (1.38-1.39); FILE MERGED 2004/06/03 06:48:22 iha 1.35.8.2: RESYNC: (1.35-1.38); FILE MERGED 2004/04/07 22:00:40 iha 1.35.8.1: #i20344# changed chart creation process - other default command in tool box


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [12ff18d200be6193055c79473d7e640774526eb3]

INTEGRATION: CWS chart2mst3 (1.29.84); FILE MERGED 2007/05/14 20:44:58 bm 1.29.84.3: RESYNC: (1.30-1.32); FILE MERGED 2007/04/25 04:16:13 bm 1.29.84.2: RESYNC: (1.29-1.30); FILE MERGED 2006/11/20 13:39:22 nn 1.29.84.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [261cfd4323770f938dc991cf9d7fa0cbe85f5045]

INTEGRATION: CWS chart2mst3 (1.22.82); FILE MERGED 2007/04/25 04:16:06 bm 1.22.82.3: RESYNC: (1.23-1.24); FILE MERGED 2006/11/24 18:34:45 bm 1.22.82.2: RESYNC: (1.22-1.23); FILE MERGED 2006/11/20 16:03:21 nn 1.22.82.1: #i71254# directly insert chart on SID_DRAW_CHART


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [082ab84b32863e32fcca7973c0c3f5cbe86fa6e0]

INTEGRATION: CWS chart2mst3 (1.11.84); FILE MERGED 2006/11/20 13:39:22 nn 1.11.84.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [58b8db447f33493b3d7702eecdd9a9c5fef23284]

INTEGRATION: CWS chart2mst3 (1.45.24); FILE MERGED 2007/05/14 20:44:43 bm 1.45.24.12: RESYNC: (1.52-1.53); FILE MERGED 2007/04/25 04:16:00 bm 1.45.24.11: RESYNC: (1.51-1.52); FILE MERGED 2007/03/19 15:04:40 nn 1.45.24.10: #i75383# handle split view with Chart 2007/02/07 15:51:22 iha 1.45.24.9: RESYNC: (1.49-1.51); FILE MERGED 2006/11/25 09:52:36 bm 1.45.24.8: RESYNC: (1.48-1.49); FILE MERGED 2006/11/24 18:34:20 bm 1.45.24.7: RESYNC: (1.46-1.48); FILE MERGED 2006/11/07 08:01:59 nn 1.45.24.6: #i71250# remove unused include 2006/10/25 18:17:37 nn 1.45.24.5: allow range selection from inplace object without deactivating the object 2006/10/19 00:54:40 bm 1.45.24.4: RESYNC: (1.45-1.46); FILE MERGED 2005/12/07 16:09:37 dr 1.45.24.3: better algorithm to get a cell from a range 2005/12/06 19:10:21 bm 1.45.24.2: #i58786# hilight data points correctly 2005/12/02 13:29:06 bm 1.45.24.1: #i58786# use new interface in DoChartSelection


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2bb75b40da969abd966a801426a5726f2d539efe]

INTEGRATION: CWS chart2mst3 (1.27.10); FILE MERGED 2007/04/25 04:15:44 bm 1.27.10.5: RESYNC: (1.29-1.30); FILE MERGED 2007/03/19 15:04:40 nn 1.27.10.4: #i75383# handle split view with Chart 2006/11/24 18:34:03 bm 1.27.10.3: RESYNC: (1.28-1.29); FILE MERGED 2006/10/19 00:54:23 bm 1.27.10.2: RESYNC: (1.27-1.28); FILE MERGED 2006/06/22 15:41:49 nn 1.27.10.1: #i13379# default position for chart and dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d2e75568cdd2437f1cd73c2a7c99374c4807cb45]

INTEGRATION: CWS chart2mst3 (1.7.84); FILE MERGED 2007/04/25 04:14:41 bm 1.7.84.4: RESYNC: (1.7-1.9); FILE MERGED 2007/03/19 15:01:10 nn 1.7.84.3: #i75298# don't use GetActiveViewShell 2006/11/20 13:39:22 nn 1.7.84.2: #i71560# remove old chart dialog 2006/10/26 12:42:57 nn 1.7.84.1: allow multiple selection in range selection API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [919b767cb0f054d899a0bf20587888ef0771a084]

INTEGRATION: CWS chart2mst3 (1.41.70); FILE MERGED 2007/05/14 20:42:26 bm 1.41.70.5: RESYNC: (1.45-1.46); FILE MERGED 2007/04/25 04:10:42 bm 1.41.70.4: RESYNC: (1.44-1.45); FILE MERGED 2007/02/07 15:50:14 iha 1.41.70.3: RESYNC: (1.43-1.44); FILE MERGED 2006/11/24 18:32:13 bm 1.41.70.2: RESYNC: (1.41-1.43); FILE MERGED 2006/10/25 18:17:37 nn 1.41.70.1: allow range selection from inplace object without deactivating the object


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9e63298dfc687edad2d36114ff0dd18c9973f411]

INTEGRATION: CWS chart2mst3 (1.26.4); FILE MERGED 2007/04/25 04:10:36 bm 1.26.4.2: RESYNC: (1.26-1.27); FILE MERGED 2006/11/20 18:30:45 nn 1.26.4.1: #i71250# removed unused include


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9bfef9b8942e7de5221ecc9935d17212fdc0f01b]

INTEGRATION: CWS chart2mst3 (1.8.80); FILE MERGED 2007/04/25 12:20:12 bm 1.8.80.2: warning removed: unused parameter pWindow in UpdateChart removed 2006/11/22 16:03:41 nn 1.8.80.1: #i71250# DoUpdateCharts: new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8e86ade8bfdf984e9b40a288f3020ba679d6d624]

INTEGRATION: CWS chart2mst3 (1.4.84); FILE MERGED 2006/11/22 16:03:40 nn 1.4.84.1: #i71250# DoUpdateCharts: new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d079757a0a73705a9c1eaa0c36ea38dfeb1d5e55]

INTEGRATION: CWS chart2mst3 (1.19.84); FILE MERGED 2007/05/14 20:42:19 bm 1.19.84.3: RESYNC: (1.20-1.21); FILE MERGED 2007/04/25 04:09:24 bm 1.19.84.2: RESYNC: (1.19-1.20); FILE MERGED 2006/11/20 13:39:22 nn 1.19.84.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [92adbe7135e5965b661c74b7923286097f825c00]

INTEGRATION: CWS chart2mst3 (1.39.82); FILE MERGED 2007/04/25 15:09:33 bm 1.39.82.5: RESYNC: warnings removed (warnings are now errors) 2007/04/25 04:08:48 bm 1.39.82.4: RESYNC: (1.41-1.42); FILE MERGED 2006/11/25 09:52:14 bm 1.39.82.3: RESYNC: (1.40-1.41); FILE MERGED 2006/11/24 18:31:40 bm 1.39.82.2: RESYNC: (1.39-1.40); FILE MERGED 2006/11/20 13:39:22 nn 1.39.82.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [23f23407da491e874a70b549abc2385510ab269b]

INTEGRATION: CWS chart2mst3 (1.25.72); FILE MERGED 2007/05/14 20:31:48 bm 1.25.72.5: RESYNC: (1.29-1.30); FILE MERGED 2007/04/25 04:08:41 bm 1.25.72.4: RESYNC: (1.27-1.29); FILE MERGED 2007/02/07 15:49:54 iha 1.25.72.3: RESYNC: (1.26-1.27); FILE MERGED 2006/11/24 18:31:27 bm 1.25.72.2: RESYNC: (1.25-1.26); FILE MERGED 2006/10/26 12:43:38 nn 1.25.72.1: allow multiple selection in range selection API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e6d9097f289781560d850d7e97658be45122c9ca]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/04 18:36:30 nn 1.1.2.1: #i65379# undo for reference update of UNO objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4905a2576e94de57ff4a13e408ff7f747c871959]

INTEGRATION: CWS chart2mst3 (1.13.26); FILE MERGED 2006/10/19 00:43:26 bm 1.13.26.2: RESYNC: (1.13-1.14); FILE MERGED 2006/08/04 14:34:02 bm 1.13.26.1: pass the document to the chart2 uno services instead of the docshell, as the shell itself is not really needed, and limits the creation of such objects unnecessarily to the ui


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a6f665648c630784e1625053529effd8e274047e]

INTEGRATION: CWS chart2mst3 (1.17.26); FILE MERGED 2006/12/04 18:36:30 nn 1.17.26.2: #i65379# undo for reference update of UNO objects 2005/12/02 13:29:36 bm 1.17.26.1: #i58786# +ChartRangeSelectionListener.obj


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [dc1c0eb524d7ff0720c3efd54e2444e36f8a6604]

INTEGRATION: CWS chart2mst3 (1.41.6); FILE MERGED 2007/04/26 08:36:59 bm 1.41.6.20: RESYNC: warnings removed (warnings are now errors) on Solaris 2007/04/25 04:04:58 bm 1.41.6.19: RESYNC: (1.58-1.61); FILE MERGED 2007/02/07 15:49:32 iha 1.41.6.18: RESYNC: (1.57-1.58); FILE MERGED 2006/12/01 17:25:59 bm 1.41.6.17: #i64497# the case that a data provider from a temporary document is requested should never happen -> assertion 2006/11/30 15:29:22 bm 1.41.6.16: #i64497# create data provider only when document was not created with mode internal (which is the case during clipboard actions) 2006/11/24 18:31:21 bm 1.41.6.15: RESYNC: (1.56-1.57); FILE MERGED 2006/11/17 16:34:47 bm 1.41.6.14: add implementation property InternalDocument for the chart to get informed whether the current document provides the correct data during clipboard copy/paste process 2006/11/02 18:04:58 nn 1.41.6.13: #i66865# chart listener loads chart, saving chart restores chart listener 2006/10/19 00:40:51 bm 1.41.6.12: RESYNC: (1.54-1.56); FILE MERGED 2006/05/05 15:30:35 bm 1.41.6.11: RESYNC: (1.52-1.54); FILE MERGED 2006/01/25 14:56:42 bm 1.41.6.10: RESYNC: (1.51-1.52); FILE MERGED 2005/10/08 11:35:32 bm 1.41.6.9: RESYNC: (1.50-1.51); FILE MERGED 2005/05/17 13:15:07 bm 1.41.6.8: RESYNC: (1.49-1.50); FILE MERGED 2005/05/12 19:59:26 sab 1.41.6.7: get access to ranges 2005/03/17 13:58:07 bm 1.41.6.6: RESYNC: (1.48-1.49); FILE MERGED 2004/11/02 16:59:24 bm 1.41.6.5: RESYNC: (1.44-1.48); FILE MERGED 2004/08/30 18:24:35 bm 1.41.6.4: RESYNC: (1.43-1.44); FILE MERGED 2004/06/15 19:02:52 bm 1.41.6.3: RESYNC: (1.42-1.43); FILE MERGED 2004/06/03 06:44:34 iha 1.41.6.2: RESYNC: (1.41-1.42); FILE MERGED 2004/05/05 14:47:54 sab 1.41.6.1: #i10733#; have access to cellranges in all sheets


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cf3d1cebca51d60841f94a8733c82e90469d7f3e]

INTEGRATION: CWS chart2mst3 (1.16.24); FILE MERGED 2007/04/27 13:11:34 bm 1.16.24.9: RESYNC: warnings removed 2007/04/25 04:03:34 bm 1.16.24.8: RESYNC: (1.18-1.19); FILE MERGED 2007/02/01 15:27:27 bm 1.16.24.7: #i68229# create range lists with new 2006/11/23 14:12:44 nn 1.16.24.6: #i71250# remove unused include 2006/11/20 18:18:37 nn 1.16.24.5: #i71250# UpdateChartArea without Window 2006/10/19 00:39:09 bm 1.16.24.4: RESYNC: (1.16-1.18); FILE MERGED 2006/08/14 17:51:01 bm 1.16.24.3: #i68229# set vis area size correctly 2006/08/09 14:19:23 bm 1.16.24.2: #i68229# changed FindChartData to FindOleObjectByName, changed some BOOLs to bool 2006/08/07 13:38:11 bm 1.16.24.1: #i68229# Adapted ::addNewByName to new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b5897d7f384dbf1d99bb6db52ecd6202cfb728b2]

INTEGRATION: CWS chart2mst3 (1.2.10); FILE MERGED 2007/05/15 06:00:44 bm 1.2.10.59: #i77132# warnings removed 2007/04/27 12:56:15 bm 1.2.10.58: RESYNC: warnings removed 2007/04/26 08:32:26 bm 1.2.10.57: RESYNC: warnings removed (warnings are now errors) on Solaris 2007/04/25 14:59:49 bm 1.2.10.56: RESYNC: warnings removed (warnings are now errors) 2007/03/02 13:38:26 bm 1.2.10.55: #i75058# throw IllegalArgumentException when the range passed to convertRangeToXML is invalid. Thus this can be used as a cheaper validity check that also works in Writer 2007/02/15 17:49:35 nn 1.2.10.54: #i68229# static detectArguments: initialize label flags 2007/01/30 10:58:18 bm 1.2.10.53: #i72973# return table-numbder-list so that it can be used for OOo XML format (not Oasis) 2006/12/04 18:36:29 nn 1.2.10.52: #i65379# undo for reference update of UNO objects 2006/10/19 00:39:03 bm 1.2.10.51: RESYNC: (1.4-1.5); FILE MERGED 2006/08/09 14:17:11 bm 1.2.10.50: #i68229# added a static detectArguments() method that is used by chartuno.cxx 2006/08/09 12:13:50 dr 1.2.10.49: suppress some useless assertions 2006/08/04 14:34:02 bm 1.2.10.48: pass the document to the chart2 uno services instead of the docshell, as the shell itself is not really needed, and limits the creation of such objects unnecessarily to the ui 2006/06/02 08:42:51 bm 1.2.10.47: #i64837# add upper left corner for rectangular regions on one sheet where first row/column are used as labels 2006/04/26 12:26:09 bm 1.2.10.46: oops 2006/04/26 12:10:47 bm 1.2.10.45: increase exception safety 2006/04/12 16:29:41 nn 1.2.10.44: #i63944# chart data change notification 2006/04/12 15:34:30 bm 1.2.10.43: createDataSource: set headers correctly at ScChartPositioner 2006/04/04 12:59:02 bm 1.2.10.42: XModifyBroadcaster for LabeledDataSequence 2006/03/17 13:19:40 bm 1.2.10.41: detectArguments: only return arguments that have been detected reliably 2005/11/02 18:46:30 iha 1.2.10.40: make more failsafe 2005/10/27 17:40:06 iha 1.2.10.39: support SequenceMapping 2005/10/25 16:36:20 iha 1.2.10.38: support SequenceMapping 2005/10/18 16:00:01 bm 1.2.10.37: provide the TableNumberList property in detectArguments for compatibility with old binary file export 2005/10/08 11:32:37 bm 1.2.10.36: RESYNC: (1.3-1.4); FILE MERGED 2005/09/08 15:03:41 sab 1.2.10.35: #i17416#; add generateLabel 2005/09/08 12:53:40 sab 1.2.10.34: #i17416#; add generateLabel 2005/09/07 17:16:51 iha 1.2.10.33: remove wrong fix for 'generated categories' (1.2.10.29 + numerical data) 2005/09/02 15:23:15 sab 1.2.10.32: #i17416#; add XNumericalData 2005/09/02 15:00:31 sab 1.2.10.31: #i17416#; use categorie range without labels if there are some 2005/09/02 12:20:51 sab 1.2.10.30: #i17416#; make generated categories and labels work; make detect arguments work 2005/08/05 14:03:03 bm 1.2.10.29: -XDataSequence::generateLabel 2005/08/03 12:34:03 bm 1.2.10.28: detectArguments: cleanup, get categories sequence 2005/08/03 11:55:02 bm 1.2.10.27: detectArguments: detect DataRowSource 2005/07/21 14:40:07 bm 1.2.10.26: support number formats 2005/07/19 14:29:22 iha 1.2.10.25: #i17416#; remove endless loop 2005/07/19 14:02:30 sab 1.2.10.24: #i17416#; remove header cell from data series ranges 2005/07/07 16:46:26 sab 1.2.10.23: #i17416#; add XRangeXMLConversion, fix some small problems 2005/05/12 19:59:26 sab 1.2.10.22: get access to ranges 2005/05/12 17:10:06 bm 1.2.10.21: let detectArguments merge the ranges 2005/05/12 13:57:10 bm 1.2.10.20: API change XDataProvider 2005/05/11 14:18:11 sab 1.2.10.19: make top left cell work in a chart range 2005/05/11 13:08:05 dr 1.2.10.18: compiler warnings 2005/05/09 09:52:22 bm 1.2.10.17: moved chart2 API to data namespace 2005/05/03 16:34:21 bm 1.2.10.16: removed identifiers from XSequences. XSequences are no longer stored in the XDataProvider 2004/09/20 12:22:26 iha 1.2.10.15: make failsave against missing DocShell 2004/06/29 11:05:07 bm 1.2.10.14: XDataProvider:   getRangeRepresentationByRangeIdentifiers -> mergeRangeRepresentations 2004/06/15 19:01:49 bm 1.2.10.13: RESYNC: (1.2-1.3); FILE MERGED 2004/06/09 12:29:48 bm 1.2.10.12: copy properties in createClone() method of data ScChart2DataSequence 2004/06/03 09:32:34 iha 1.2.10.11: added missing interface method 'generateLabel' 2004/05/12 15:53:53 sab 1.2.10.10: #i17416#; the cell top left is a label if needed 2004/05/12 15:48:25 sab 1.2.10.9: #i17416#; the cell top left is a label if needed 2004/05/12 15:44:10 sab 1.2.10.8: #i17416#; the cell top left is a label if needed 2004/05/05 14:48:34 sab 1.2.10.7: #i26493#; add XTextualSequence 2004/05/05 10:19:20 sab 1.2.10.6: #i26493#; add XTextualSequence 2004/05/04 14:59:13 sab 1.2.10.5: #i17416#; Categories are also handled by ChartPosMap 2004/04/29 13:29:58 sab 1.2.10.4: #i17416#; implement Chart2 API 2004/04/14 12:33:07 bm 1.2.10.3: XDataProvider API: getRangeSelection 2004/04/07 10:23:44 sab 1.2.10.2: #i17416#; compileable first step API implementation 2004/03/22 13:42:14 bm 1.2.10.1: chart2 API changed (XDataSource contains XLabeledDataSequences)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6812cdcc73f053042869052dbc46d400eacca8ad]

INTEGRATION: CWS chart2mst3 (1.83.8); FILE MERGED 2007/05/14 20:30:45 bm 1.83.8.19: RESYNC: (1.101-1.102); FILE MERGED 2007/04/25 15:33:49 bm 1.83.8.18: RESYNC: warnings removed (warnings are now errors) 2007/04/25 04:02:58 bm 1.83.8.17: RESYNC: (1.99-1.101); FILE MERGED 2006/12/04 18:36:29 nn 1.83.8.16: #i65379# undo for reference update of UNO objects 2006/11/24 18:31:14 bm 1.83.8.15: RESYNC: (1.98-1.99); FILE MERGED 2006/11/23 17:24:59 nn 1.83.8.14: #i71250# remove use of SchMemChart 2006/10/19 00:38:45 bm 1.83.8.13: RESYNC: (1.97-1.98); FILE MERGED 2006/06/16 13:51:35 bm 1.83.8.12: RESYNC: (1.96-1.97); FILE MERGED 2006/05/05 15:30:03 bm 1.83.8.11: RESYNC: (1.94-1.96); FILE MERGED 2006/04/12 16:29:41 nn 1.83.8.10: #i63944# chart data change notification 2006/01/25 14:55:54 bm 1.83.8.9: RESYNC: (1.93-1.94); FILE MERGED 2005/10/08 11:31:41 bm 1.83.8.8: RESYNC: (1.91-1.93); FILE MERGED 2005/07/25 18:43:50 bm 1.83.8.7: RESYNC: (1.90-1.91); FILE MERGED 2005/05/17 13:11:06 bm 1.83.8.6: RESYNC: (1.89-1.90); FILE MERGED 2005/03/17 13:57:49 bm 1.83.8.5: RESYNC: (1.87-1.89); FILE MERGED 2004/11/02 16:58:54 bm 1.83.8.4: RESYNC: (1.86-1.87); FILE MERGED 2004/08/30 18:23:54 bm 1.83.8.3: RESYNC: (1.84-1.86); FILE MERGED 2004/06/15 19:01:37 bm 1.83.8.2: RESYNC: (1.83-1.84); FILE MERGED 2004/05/05 14:48:07 sab 1.83.8.1: #i10734#; have access to the absolut name of every cellrange


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [357e6e363b2134b279981a3e05b8ee90409de77d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/25 14:33:22 bm 1.1.2.3: RESYNC: warning removed (as this is now an error) 2007/02/09 18:35:43 iha 1.1.2.2: resync m195 -> m202 - missing pch 2005/12/02 13:30:14 bm 1.1.2.1: #i58786# new interface for range highlighting


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e1b09963e9e1462bd38fa0dfda24d98ea4d60545]

INTEGRATION: CWS chart2mst3 (1.7.8); FILE MERGED 2007/04/25 04:01:21 bm 1.7.8.6: RESYNC: (1.8-1.9); FILE MERGED 2006/11/20 18:18:10 nn 1.7.8.5: #i71250# UpdateChartArea without Window 2006/11/14 15:12:58 nn 1.7.8.4: #i71251# new chart: changing source range with drag&drop 2006/10/19 00:36:58 bm 1.7.8.3: RESYNC: (1.7-1.8); FILE MERGED 2006/08/10 12:31:24 bm 1.7.8.2: adding FindChartData again trying to avoid a very strange bug on Windows 2006/08/09 14:19:23 bm 1.7.8.1: #i68229# changed FindChartData to FindOleObjectByName, changed some BOOLs to bool


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8b907c6bb9a77c21b64d933055103e7ac2bca917]

INTEGRATION: CWS chart2mst3 (1.4.84); FILE MERGED 2006/12/04 18:36:05 nn 1.4.84.1: #i65379# undo for reference update of UNO objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [008160002e916a0ac4f47a6a0891e6507102fb40]

INTEGRATION: CWS chart2mst3 (1.61.10); FILE MERGED 2007/04/25 03:59:40 bm 1.61.10.8: RESYNC: (1.74-1.75); FILE MERGED 2005/10/08 11:24:56 bm 1.61.10.7: RESYNC: (1.72-1.74); FILE MERGED 2005/03/17 13:56:54 bm 1.61.10.6: RESYNC: (1.71-1.72); FILE MERGED 2004/11/02 16:57:33 bm 1.61.10.5: RESYNC: (1.70-1.71); FILE MERGED 2004/08/30 18:22:25 bm 1.61.10.4: RESYNC: (1.66-1.70); FILE MERGED 2004/08/04 23:24:01 bm 1.61.10.3: RESYNC: (1.63-1.66); FILE MERGED 2004/06/03 06:42:35 iha 1.61.10.2: RESYNC: (1.61-1.63); FILE MERGED 2004/04/07 21:59:02 iha 1.61.10.1: #i20344# changed chart creation process


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [75fe49511ec29bd14e33ab60d5dcf4971340fa51]

INTEGRATION: CWS chart2mst3 (1.8.92); FILE MERGED 2006/11/20 13:39:21 nn 1.8.92.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [71abb87cfa84b955716767993e377a556244ef1b]

INTEGRATION: CWS chart2mst3 (1.8.84); FILE MERGED 2007/04/25 03:48:29 bm 1.8.84.2: RESYNC: (1.8-1.9); FILE MERGED 2006/10/26 12:42:30 nn 1.8.84.1: allow multiple selection in range selection API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [883b440e0849e4056c72d3f7ca6021a4f5b0c8ab]

INTEGRATION: CWS chart2mst3 (1.7.26); FILE MERGED 2006/11/20 13:39:21 nn 1.7.26.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3b8958af05ebc564b5028e83cdf3dc55ebeaab6f]

INTEGRATION: CWS chart2mst3 (1.17.84); FILE MERGED 2007/04/25 03:44:27 bm 1.17.84.2: RESYNC: (1.17-1.18); FILE MERGED 2007/03/19 15:01:34 nn 1.17.84.1: #i75298# don't use GetActiveViewShell


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d18b95a51f13d3881aa7846ff1f3c299f021ae60]

INTEGRATION: CWS chart2mst3 (1.25.54); FILE MERGED 2007/04/25 03:42:17 bm 1.25.54.3: RESYNC: (1.26-1.27); FILE MERGED 2007/02/07 15:47:58 iha 1.25.54.2: RESYNC: (1.25-1.26); FILE MERGED 2006/10/26 12:41:40 nn 1.25.54.1: allow multiple selection in range selection API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e7f76353d0981b74db24ffcf902f81c43f844de8]

INTEGRATION: CWS chart2mst3 (1.19.24); FILE MERGED 2007/05/14 20:27:55 bm 1.19.24.6: RESYNC: (1.22-1.23); FILE MERGED 2007/02/07 15:47:51 iha 1.19.24.5: RESYNC: (1.20-1.22); FILE MERGED 2006/11/24 18:27:44 bm 1.19.24.4: RESYNC: (1.19-1.20); FILE MERGED 2006/11/23 17:26:35 nn 1.19.24.3: #i71250# remove use of SchMemChart 2006/06/22 15:41:20 nn 1.19.24.2: #i13379# default position for chart and dialog 2005/12/02 13:28:18 bm 1.19.24.1: #i58786# use new interface in DoChartSelection


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [492f9ca7687ad1e32912bef5181e2b14db7fa781]

INTEGRATION: CWS chart2mst3 (1.4.54); FILE MERGED 2006/10/26 12:41:40 nn 1.4.54.1: allow multiple selection in range selection API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cf7e5ade0a00a4de5ccb14d1263bb3b56219cd29]

INTEGRATION: CWS chart2mst3 (1.3.26); FILE MERGED 2006/12/04 18:35:53 nn 1.3.26.1: #i65379# undo for reference update of UNO objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ba15ee348a219965a4f26ad9491fdc5713c69bfb]

INTEGRATION: CWS chart2mst3 (1.4.54); FILE MERGED 2006/11/20 13:39:20 nn 1.4.54.2: #i71560# remove old chart dialog 2006/10/26 12:41:40 nn 1.4.54.1: allow multiple selection in range selection API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [623433b5ecb4980cf19042415259c3956393dc3f]

INTEGRATION: CWS chart2mst3 (1.35.24); FILE MERGED 2007/05/14 20:27:49 bm 1.35.24.7: RESYNC: (1.40-1.41); FILE MERGED 2007/04/25 03:38:30 bm 1.35.24.6: RESYNC: (1.39-1.40); FILE MERGED 2007/02/07 15:47:03 iha 1.35.24.5: RESYNC: (1.38-1.39); FILE MERGED 2006/11/25 09:50:00 bm 1.35.24.4: RESYNC: (1.37-1.38); FILE MERGED 2006/06/16 13:48:21 bm 1.35.24.3: RESYNC: (1.36-1.37); FILE MERGED 2006/01/25 14:38:06 bm 1.35.24.2: RESYNC: (1.35-1.36); FILE MERGED 2005/12/02 13:26:32 bm 1.35.24.1: #i58786# remove old ChartSelectionHdl LINK


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [aca9027c3425d068464141a57029c2ac9d3ad36c]

INTEGRATION: CWS chart2mst3 (1.6.92); FILE MERGED 2006/11/22 16:02:49 nn 1.6.92.1: #i71250# DoUpdateCharts: new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bdfa1a61d289d095912bd3d84e2841353477dbf5]

INTEGRATION: CWS chart2mst3 (1.2.10); FILE MERGED 2005/10/08 10:01:49 bm 1.2.10.2: RESYNC: (1.2-1.3); FILE MERGED 2005/06/01 14:39:09 bm 1.2.10.1: always use new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5080d1e86397c93a6a50bb810dc5638f9e8eada3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/12/02 13:30:34 bm 1.1.2.1: #i58786# new interface for range highlighting


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [dd9b49dcc42566ac7d72d53acd451f74d93617a8]

INTEGRATION: CWS chart2mst3 (1.67.4); FILE MERGED 2007/04/25 03:32:09 bm 1.67.4.3: RESYNC: (1.68-1.69); FILE MERGED 2007/02/07 15:46:55 iha 1.67.4.2: RESYNC: (1.67-1.68); FILE MERGED 2006/11/20 13:39:20 nn 1.67.4.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b6caf32224e1e2a62b3f181559229dff0ca6331c]

INTEGRATION: CWS chart2mst3 (1.16.10); FILE MERGED 2007/05/14 20:26:58 bm 1.16.10.4: RESYNC: (1.18-1.19); FILE MERGED 2007/04/25 03:31:22 bm 1.16.10.3: RESYNC: (1.17-1.18); FILE MERGED 2007/02/07 15:46:48 iha 1.16.10.2: RESYNC: (1.16-1.17); FILE MERGED 2007/01/16 16:19:04 iha 1.16.10.1: don't deactivate old opjects wiht right mouse click when in range chooser mode


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [432bc306523b872b02c7e4a543b0c8a8619c691e]

INTEGRATION: CWS chart2mst3 (1.6.84); FILE MERGED 2007/04/25 03:31:05 bm 1.6.84.2: RESYNC: (1.6-1.7); FILE MERGED 2006/11/20 13:39:20 nn 1.6.84.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [38f133857e95c3e2523dbcc43f9452988b251ac1]

INTEGRATION: CWS chart2mst3 (1.12.10); FILE MERGED 2007/04/25 03:30:58 bm 1.12.10.33: RESYNC: (1.24-1.25); FILE MERGED 2007/04/20 10:41:20 nn 1.12.10.32: #i75307# FuInsertChart: MarkToMulti 2006/12/05 16:28:12 nn 1.12.10.31: #i71257# don't add undo action before the dialog is finished 2006/11/27 00:37:17 bm 1.12.10.30: aw024 adaptions 2006/11/24 18:24:58 bm 1.12.10.29: RESYNC: (1.23-1.24); FILE MERGED 2006/11/23 12:52:52 nn 1.12.10.28: #i71250# removed old chart code 2006/11/10 21:06:35 iha 1.12.10.27: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/10/25 18:17:54 nn 1.12.10.26: allow range selection from inplace object without deactivating the object 2006/10/19 00:18:35 bm 1.12.10.25: RESYNC: (1.21-1.23); FILE MERGED 2006/10/11 15:10:11 nn 1.12.10.24: #i66867# auto-detect column/row headers 2006/08/04 14:34:01 bm 1.12.10.23: pass the document to the chart2 uno services instead of the docshell, as the shell itself is not really needed, and limits the creation of such objects unnecessarily to the ui 2006/06/24 13:04:39 iha 1.12.10.22: #i54915# chart wizard shouldn't overlap chart if possible 2006/06/22 15:42:13 nn 1.12.10.21: #i13379# default position for chart and dialog 2006/05/05 15:24:08 bm 1.12.10.20: RESYNC: (1.20-1.21); FILE MERGED 2006/05/05 14:32:41 bm 1.12.10.19: #i31098# leave draw shell after Cancel of inserting a chart 2006/05/03 15:46:49 bm 1.12.10.18: #i31098# Enable Cancel for Chart Wizard 2005/11/15 15:33:22 bm 1.12.10.17: dispose chart wizard dialog 2005/10/08 09:54:11 bm 1.12.10.16: RESYNC: (1.19-1.20); FILE MERGED 2005/09/08 11:44:48 iha 1.12.10.15: set number formatter independent from dataprovider thus also a chart with own data has the numberformatter from calc 2005/08/15 13:09:29 bm 1.12.10.14: XDataReceiver changed 2005/08/05 12:43:19 bm 1.12.10.13: open chart creation wizard only when not called via API 2005/06/01 14:37:39 bm 1.12.10.12: Insert New Chart embedded 2005/05/17 13:01:42 bm 1.12.10.11: RESYNC: (1.18-1.19); FILE MERGED 2005/05/09 09:54:27 bm 1.12.10.10: moved chart2 API to data namespace 2005/03/17 13:45:10 bm 1.12.10.9: RESYNC: (1.16-1.18); FILE MERGED 2004/11/02 16:50:32 bm 1.12.10.8: RESYNC: (1.15-1.16); FILE MERGED 2004/08/30 18:08:08 bm 1.12.10.7: RESYNC: (1.13-1.15); FILE MERGED 2004/06/15 18:41:55 bm 1.12.10.6: RESYNC: (1.12-1.13); FILE MERGED 2004/05/05 16:34:56 iha 1.12.10.5: unmark automatic mark range; moved update call to chart 2004/04/08 12:21:47 iha 1.12.10.4: #i20344# init wizard correctly + update view 2004/04/08 09:03:14 iha 1.12.10.3: remove test code 2004/04/08 08:55:15 iha 1.12.10.2: get correct RangeString for chart 2004/04/07 22:03:58 iha 1.12.10.1: #i20344# changed chart creation process - added new chart wizard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d40e380b96fda8e7a847f9a2f09cac6603e56b29]

INTEGRATION: CWS chart2mst3 (1.44.20); FILE MERGED 2007/05/14 20:25:46 bm 1.44.20.11: RESYNC: (1.51-1.53); FILE MERGED 2007/04/25 03:26:05 bm 1.44.20.10: RESYNC: (1.50-1.51); FILE MERGED 2007/02/07 15:45:24 iha 1.44.20.9: RESYNC: (1.49-1.50); FILE MERGED 2006/11/25 09:49:03 bm 1.44.20.8: RESYNC: (1.48-1.49); FILE MERGED 2006/11/24 18:22:56 bm 1.44.20.7: RESYNC: (1.47-1.48); FILE MERGED 2006/11/20 18:17:49 nn 1.44.20.6: #i71250# UpdateChartArea without Window 2006/11/07 07:56:20 nn 1.44.20.5: #i71250# remove unused include 2006/10/19 00:12:40 bm 1.44.20.4: RESYNC: (1.46-1.47); FILE MERGED 2006/05/05 15:22:45 bm 1.44.20.3: RESYNC: (1.45-1.46); FILE MERGED 2006/01/25 14:32:58 bm 1.44.20.2: RESYNC: (1.44-1.45); FILE MERGED 2005/12/02 13:26:50 bm 1.44.20.1: #i58786# remove old ChartSelectionHdl LINK


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c11ab886383eb011e5c197f9564afeaf0a155420]

INTEGRATION: CWS chart2mst3 (1.28.84); FILE MERGED 2007/05/14 20:23:47 bm 1.28.84.3: RESYNC: (1.29-1.30); FILE MERGED 2007/04/25 03:16:44 bm 1.28.84.2: RESYNC: (1.28-1.29); FILE MERGED 2006/11/17 16:35:28 bm 1.28.84.1: set create mode internal for document that is used to copy OLE objects in clipboard. Needed by chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ccef381f35d2e95a339a46cb3d4f71a282049d37]

INTEGRATION: CWS chart2mst3 (1.51.58); FILE MERGED 2007/05/14 20:23:41 bm 1.51.58.4: RESYNC: (1.52-1.53); FILE MERGED 2007/05/03 06:48:51 bm 1.51.58.3: #i76692# mav: correct fix for #i62857# 2007/04/25 03:16:27 bm 1.51.58.2: RESYNC: (1.51-1.52); FILE MERGED 2006/11/22 16:03:54 nn 1.51.58.1: #i71250# DoUpdateCharts: new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [93dd5c054be8fb2bdb48b837ee15d4a14578005f]

INTEGRATION: CWS chart2mst3 (1.33.4); FILE MERGED 2007/05/14 20:23:35 bm 1.33.4.6: RESYNC: (1.37-1.39); FILE MERGED 2007/04/25 03:16:21 bm 1.33.4.5: RESYNC: (1.36-1.37); FILE MERGED 2006/11/24 18:21:57 bm 1.33.4.4: RESYNC: (1.35-1.36); FILE MERGED 2006/11/20 13:39:19 nn 1.33.4.3: #i71560# remove old chart dialog 2006/10/19 00:01:49 bm 1.33.4.2: RESYNC: (1.33-1.35); FILE MERGED 2006/10/13 17:39:56 mba 1.33.4.1: #i3997#: allow to open child windows in an OLE container while an OLE object is UIactive


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a8f94c2ec9bfbe28d8124ebf9c383639d785bb0d]

INTEGRATION: CWS chart2mst3 (1.33.30); FILE MERGED 2006/11/24 18:20:55 bm 1.33.30.5: RESYNC: (1.37-1.38); FILE MERGED 2006/10/18 23:57:07 bm 1.33.30.4: RESYNC: (1.36-1.37); FILE MERGED 2005/10/08 09:12:22 bm 1.33.30.3: RESYNC: (1.34-1.36); FILE MERGED 2005/05/17 12:56:50 bm 1.33.30.2: RESYNC: (1.33-1.34); FILE MERGED 2005/05/12 19:56:38 sab 1.33.30.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ec76b8aafed0a1f06eb0bc0d9672a3205d569f66]

INTEGRATION: CWS chart2mst3 (1.56.80); FILE MERGED 2007/04/25 03:11:24 bm 1.56.80.7: RESYNC: (1.62-1.65); FILE MERGED 2006/10/18 23:56:32 bm 1.56.80.6: RESYNC: (1.60-1.62); FILE MERGED 2006/05/05 15:18:48 bm 1.56.80.5: RESYNC: (1.58-1.60); FILE MERGED 2005/10/08 09:10:35 bm 1.56.80.4: RESYNC: (1.57-1.58); FILE MERGED 2005/05/20 14:12:32 bm 1.56.80.3: move range to string and string to range converter methods to rangeutil 2005/05/17 12:54:47 bm 1.56.80.2: RESYNC: (1.56-1.57); FILE MERGED 2005/05/12 19:56:37 sab 1.56.80.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [76ccd76784e0f6f24e233dfe6be62c7b651e1cd5]

INTEGRATION: CWS chart2mst3 (1.12.394); FILE MERGED 2007/04/25 03:11:17 bm 1.12.394.5: RESYNC: (1.15-1.16); FILE MERGED 2006/10/18 23:56:26 bm 1.12.394.4: RESYNC: (1.14-1.15); FILE MERGED 2005/10/08 09:10:14 bm 1.12.394.3: RESYNC: (1.13-1.14); FILE MERGED 2005/05/17 12:54:02 bm 1.12.394.2: RESYNC: (1.12-1.13); FILE MERGED 2005/05/12 19:56:37 sab 1.12.394.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fd8900c34a1ab01ca1356bffa59eb7ad29a2e27e]

INTEGRATION: CWS chart2mst3 (1.9.22); FILE MERGED 2007/04/25 03:11:08 bm 1.9.22.5: RESYNC: (1.12-1.13); FILE MERGED 2006/10/18 23:56:19 bm 1.9.22.4: RESYNC: (1.11-1.12); FILE MERGED 2005/10/08 09:09:53 bm 1.9.22.3: RESYNC: (1.10-1.11); FILE MERGED 2005/05/17 12:53:45 bm 1.9.22.2: RESYNC: (1.9-1.10); FILE MERGED 2005/05/12 19:56:37 sab 1.9.22.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [13f748ce3c55d5909ef6172c8def91ad5133af24]

INTEGRATION: CWS chart2mst3 (1.112.28); FILE MERGED 2007/04/25 03:10:24 bm 1.112.28.7: RESYNC: (1.124-1.125); FILE MERGED 2006/10/18 23:55:42 bm 1.112.28.6: RESYNC: (1.123-1.124); FILE MERGED 2006/05/05 15:18:28 bm 1.112.28.5: RESYNC: (1.118-1.123); FILE MERGED 2006/01/25 14:25:02 bm 1.112.28.4: RESYNC: (1.117-1.118); FILE MERGED 2005/10/08 09:07:12 bm 1.112.28.3: RESYNC: (1.114-1.117); FILE MERGED 2005/05/17 12:51:48 bm 1.112.28.2: RESYNC: (1.112-1.114); FILE MERGED 2005/05/12 19:56:36 sab 1.112.28.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3bdb4666087a7334c8b9c48752c3f445854b2cdd]

INTEGRATION: CWS chart2mst3 (1.11.22); FILE MERGED 2007/04/25 03:10:06 bm 1.11.22.5: RESYNC: (1.14-1.15); FILE MERGED 2006/10/18 23:55:26 bm 1.11.22.4: RESYNC: (1.13-1.14); FILE MERGED 2005/10/08 09:06:30 bm 1.11.22.3: RESYNC: (1.12-1.13); FILE MERGED 2005/05/17 12:51:18 bm 1.11.22.2: RESYNC: (1.11-1.12); FILE MERGED 2005/05/12 19:56:36 sab 1.11.22.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f9e10bd43db15f3b75db99f618f41fb3515293a4]

INTEGRATION: CWS chart2mst3 (1.190.10); FILE MERGED 2007/05/14 20:21:57 bm 1.190.10.14: RESYNC: (1.203-1.204); FILE MERGED 2007/04/27 12:35:52 bm 1.190.10.13: RESYNC: warnings removed 2007/04/25 03:09:59 bm 1.190.10.12: RESYNC: (1.201-1.203); FILE MERGED 2006/11/20 18:33:17 nn 1.190.10.11: #i71250# removed unused include 2006/10/31 15:01:30 bm 1.190.10.10: save correct used source ranges for charts 2006/10/18 23:55:19 bm 1.190.10.9: RESYNC: (1.199-1.201); FILE MERGED 2006/05/05 15:18:09 bm 1.190.10.8: RESYNC: (1.198-1.199); FILE MERGED 2006/01/25 14:24:33 bm 1.190.10.7: RESYNC: (1.197-1.198); FILE MERGED 2005/10/11 08:28:43 bm 1.190.10.6: header vanished on merge 2005/10/10 08:14:23 bm 1.190.10.5: RESYNC: (1.194-1.197); FILE MERGED 2005/07/25 18:39:29 bm 1.190.10.4: RESYNC: (1.193-1.194); FILE MERGED 2005/05/20 14:12:31 bm 1.190.10.3: move range to string and string to range converter methods to rangeutil 2005/05/17 12:50:55 bm 1.190.10.2: RESYNC: (1.190-1.193); FILE MERGED 2005/05/12 19:56:35 sab 1.190.10.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6ef55e5e3c4092bd6f42d31d41bbade36f62d764]

INTEGRATION: CWS chart2mst3 (1.24.146); FILE MERGED 2007/04/25 03:09:52 bm 1.24.146.5: RESYNC: (1.28-1.29); FILE MERGED 2006/10/18 23:55:11 bm 1.24.146.4: RESYNC: (1.27-1.28); FILE MERGED 2005/10/08 09:05:48 bm 1.24.146.3: RESYNC: (1.26-1.27); FILE MERGED 2005/05/17 12:50:33 bm 1.24.146.2: RESYNC: (1.24-1.26); FILE MERGED 2005/05/12 19:56:35 sab 1.24.146.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3fa6d4e35a2fde17927f406d8309afca8c7fcc35]

INTEGRATION: CWS chart2mst3 (1.18.122); FILE MERGED 2007/04/25 03:09:21 bm 1.18.122.7: RESYNC: (1.24-1.25); FILE MERGED 2007/02/07 15:41:38 iha 1.18.122.6: RESYNC: (1.23-1.24); FILE MERGED 2006/10/18 23:55:05 bm 1.18.122.5: RESYNC: (1.22-1.23); FILE MERGED 2006/01/25 14:23:35 bm 1.18.122.4: RESYNC: (1.21-1.22); FILE MERGED 2005/10/08 09:05:15 bm 1.18.122.3: RESYNC: (1.20-1.21); FILE MERGED 2005/05/17 12:50:08 bm 1.18.122.2: RESYNC: (1.18-1.20); FILE MERGED 2005/05/12 19:56:35 sab 1.18.122.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [dd59cc2aa4d57498a1db54b27194e20fc7fc556a]

INTEGRATION: CWS chart2mst3 (1.23.22); FILE MERGED 2007/04/27 12:24:56 bm 1.23.22.7: RESYNC: warnings removed 2007/04/25 03:06:38 bm 1.23.22.6: RESYNC: (1.26-1.27); FILE MERGED 2006/10/18 23:53:25 bm 1.23.22.5: RESYNC: (1.25-1.26); FILE MERGED 2005/10/08 09:00:14 bm 1.23.22.4: RESYNC: (1.24-1.25); FILE MERGED 2005/09/08 16:58:20 iha 1.23.22.3: set charts to dirty after loading flat xml (calc is not complete during loading the chart -> wrong first visual representation of charts need to be updated) 2005/05/17 12:47:11 bm 1.23.22.2: RESYNC: (1.23-1.24); FILE MERGED 2005/05/12 19:56:35 sab 1.23.22.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [58e95b9f8ccde2916d17af0559548857ea9043f3]

INTEGRATION: CWS chart2mst3 (1.22.82); FILE MERGED 2007/04/25 03:07:04 bm 1.22.82.5: RESYNC: (1.25-1.26); FILE MERGED 2006/10/18 23:53:19 bm 1.22.82.4: RESYNC: (1.24-1.25); FILE MERGED 2005/10/08 08:59:49 bm 1.22.82.3: RESYNC: (1.23-1.24); FILE MERGED 2005/05/17 12:47:03 bm 1.22.82.2: RESYNC: (1.22-1.23); FILE MERGED 2005/05/12 19:56:34 sab 1.22.82.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7fff8213a5075f9b2d179e15ab05c6e301b6a9d4]

INTEGRATION: CWS chart2mst3 (1.41.10); FILE MERGED 2007/04/25 03:06:09 bm 1.41.10.6: RESYNC: (1.46-1.47); FILE MERGED 2006/10/18 23:52:43 bm 1.41.10.5: RESYNC: (1.45-1.46); FILE MERGED 2006/05/05 15:17:49 bm 1.41.10.4: RESYNC: (1.44-1.45); FILE MERGED 2005/10/08 08:57:50 bm 1.41.10.3: RESYNC: (1.43-1.44); FILE MERGED 2005/05/17 12:45:54 bm 1.41.10.2: RESYNC: (1.41-1.43); FILE MERGED 2005/05/12 19:56:34 sab 1.41.10.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [923f4900a9a85aeb991919fa860b04de1137e364]

INTEGRATION: CWS chart2mst3 (1.17.34); FILE MERGED 2007/04/25 03:05:28 bm 1.17.34.5: RESYNC: (1.20-1.21); FILE MERGED 2006/10/18 23:52:17 bm 1.17.34.4: RESYNC: (1.19-1.20); FILE MERGED 2005/10/08 08:56:39 bm 1.17.34.3: RESYNC: (1.18-1.19); FILE MERGED 2005/05/17 12:44:56 bm 1.17.34.2: RESYNC: (1.17-1.18); FILE MERGED 2005/05/12 19:56:34 sab 1.17.34.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f313dc3a47b865a1783848e5fbd32c4fea233da5]

INTEGRATION: CWS chart2mst3 (1.18.66); FILE MERGED 2007/04/25 03:05:22 bm 1.18.66.7: RESYNC: (1.24-1.25); FILE MERGED 2007/02/07 15:41:46 iha 1.18.66.6: RESYNC: (1.23-1.24); FILE MERGED 2006/10/18 23:52:10 bm 1.18.66.5: RESYNC: (1.22-1.23); FILE MERGED 2005/10/08 08:56:13 bm 1.18.66.4: RESYNC: (1.21-1.22); FILE MERGED 2005/07/25 18:39:20 bm 1.18.66.3: RESYNC: (1.20-1.21); FILE MERGED 2005/05/17 12:44:32 bm 1.18.66.2: RESYNC: (1.18-1.20); FILE MERGED 2005/05/12 19:56:34 sab 1.18.66.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2aeb1ad0258c4e7b618d2f4d2522d376f40e2272]

INTEGRATION: CWS chart2mst3 (1.10.374); FILE MERGED 2007/04/25 03:05:05 bm 1.10.374.5: RESYNC: (1.13-1.14); FILE MERGED 2006/10/18 23:51:47 bm 1.10.374.4: RESYNC: (1.12-1.13); FILE MERGED 2005/10/08 08:54:58 bm 1.10.374.3: RESYNC: (1.11-1.12); FILE MERGED 2005/05/17 12:43:26 bm 1.10.374.2: RESYNC: (1.10-1.11); FILE MERGED 2005/05/12 19:56:33 sab 1.10.374.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4068c9366dfae1f0bbd62541a87db1330e255602]

INTEGRATION: CWS chart2mst3 (1.12.400); FILE MERGED 2005/10/08 08:54:25 bm 1.12.400.2: RESYNC: (1.12-1.13); FILE MERGED 2005/05/12 19:56:33 sab 1.12.400.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [32902436bd8f2ac1195df8696910067f6f0a8ac3]

INTEGRATION: CWS chart2mst3 (1.21.22); FILE MERGED 2007/04/25 03:04:37 bm 1.21.22.5: RESYNC: (1.25-1.26); FILE MERGED 2006/10/18 23:51:30 bm 1.21.22.4: RESYNC: (1.23-1.24); FILE MERGED 2005/10/08 08:54:16 bm 1.21.22.3: RESYNC: (1.22-1.23); FILE MERGED 2005/05/17 12:42:53 bm 1.21.22.2: RESYNC: (1.21-1.22); FILE MERGED 2005/05/12 19:56:33 sab 1.21.22.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [803f00388e2869f85889481f1043ea19eac89bcb]

INTEGRATION: CWS chart2mst3 (1.5.386); FILE MERGED 2007/04/25 03:04:30 bm 1.5.386.5: RESYNC: (1.8-1.9); FILE MERGED 2006/10/18 23:51:23 bm 1.5.386.4: RESYNC: (1.7-1.8); FILE MERGED 2005/10/08 08:53:53 bm 1.5.386.3: RESYNC: (1.6-1.7); FILE MERGED 2005/05/17 12:42:29 bm 1.5.386.2: RESYNC: (1.5-1.6); FILE MERGED 2005/05/12 19:56:33 sab 1.5.386.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [558b64f72be60b01011029d7944ec396b681afdf]

INTEGRATION: CWS chart2mst3 (1.20.62); FILE MERGED 2007/04/25 03:04:13 bm 1.20.62.6: RESYNC: (1.24-1.25); FILE MERGED 2006/11/24 18:21:03 bm 1.20.62.5: RESYNC: (1.23-1.24); FILE MERGED 2006/10/18 23:50:57 bm 1.20.62.4: RESYNC: (1.22-1.23); FILE MERGED 2005/10/08 08:53:05 bm 1.20.62.3: RESYNC: (1.21-1.22); FILE MERGED 2005/05/17 12:41:47 bm 1.20.62.2: RESYNC: (1.20-1.21); FILE MERGED 2005/05/12 19:56:33 sab 1.20.62.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7e88707d83fc97633913d016d64bd29e3ed74744]

INTEGRATION: CWS chart2mst3 (1.24.10); FILE MERGED 2007/04/25 03:04:06 bm 1.24.10.5: RESYNC: (1.27-1.28); FILE MERGED 2006/10/18 23:50:44 bm 1.24.10.4: RESYNC: (1.26-1.27); FILE MERGED 2005/10/08 08:52:43 bm 1.24.10.3: RESYNC: (1.25-1.26); FILE MERGED 2005/05/17 12:41:26 bm 1.24.10.2: RESYNC: (1.24-1.25); FILE MERGED 2005/05/12 19:56:32 sab 1.24.10.1: move range to string and string to range converter methods to rangeutil


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2c537e1f6c927a34d6f3f0d247e47fcc17156b91]

INTEGRATION: CWS chart2mst3 (1.21.24); FILE MERGED 2007/04/25 03:03:21 bm 1.21.24.6: RESYNC: (1.23-1.24); FILE MERGED 2007/02/07 15:41:21 iha 1.21.24.5: RESYNC: (1.22-1.23); FILE MERGED 2006/10/16 11:32:01 dr 1.21.24.4: RESYNC: (1.21-1.22); FILE MERGED 2006/10/12 14:23:49 dr 1.21.24.3: remove old chart filter code 2006/06/30 11:42:24 dr 1.21.24.2: started new chart export filter 2005/11/30 12:26:58 dr 1.21.24.1: axis formatting


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8289e9c8d8c4ca437b723a1854dbd0bfdaa4fc63]

INTEGRATION: CWS chart2mst3 (1.11.4); FILE MERGED 2006/11/24 18:20:48 bm 1.11.4.2: RESYNC: (1.11-1.12); FILE MERGED 2006/11/20 18:37:34 nn 1.11.4.1: #i71250# removed unused include


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0d359f479919fe07ca71079293454b224268ffe5]

INTEGRATION: CWS chart2mst3 (1.25.26); FILE MERGED 2006/08/31 10:00:34 dr 1.25.26.2: chart2 export: text formatting, series formatting 2006/07/11 14:13:50 dr 1.25.26.1: #export of chart line and area formats


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4af47515217594f403d45250588845140c8fc0ae]

INTEGRATION: CWS chart2mst3 (1.17.26); FILE MERGED 2007/02/07 15:40:49 iha 1.17.26.9: RESYNC: (1.20-1.21); FILE MERGED 2006/10/16 11:15:38 dr 1.17.26.8: RESYNC: (1.19-1.20); FILE MERGED 2006/09/18 16:52:11 dr 1.17.26.7: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 10:00:33 dr 1.17.26.6: chart2 export: text formatting, series formatting 2006/08/22 16:10:44 dr 1.17.26.5: chart2 export: string/text/title handling, first steps 2006/07/17 17:42:38 dr 1.17.26.4: import stock charts, extend new chart export 2006/03/28 15:11:41 dr 1.17.26.3: dumper merged from CWS dr47 2005/12/16 10:51:31 dr 1.17.26.2: font handling and code cleanup 2005/12/15 13:37:16 dr 1.17.26.1: API font handling reworked


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6c8d7c59bcf523436f552557d00e3a65932beeef]

INTEGRATION: CWS chart2mst3 (1.3.26); FILE MERGED 2006/08/22 16:10:43 dr 1.3.26.2: chart2 export: string/text/title handling, first steps 2005/11/24 10:52:56 dr 1.3.26.1: #i24066# rich-text title


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [05ebf85ba4b87afd21b99eac5061fcb2843f141c]

INTEGRATION: CWS chart2mst3 (1.23.10); FILE MERGED 2007/02/07 15:40:42 iha 1.23.10.8: RESYNC: (1.27-1.28); FILE MERGED 2006/11/25 09:47:40 bm 1.23.10.7: RESYNC: (1.26-1.27); FILE MERGED 2006/07/17 17:42:38 dr 1.23.10.6: import stock charts, extend new chart export 2006/05/05 15:15:42 bm 1.23.10.5: RESYNC: (1.23-1.25); FILE MERGED 2006/02/22 14:19:47 dr 1.23.10.4: joined new dumper from dr46 2005/12/15 13:36:49 dr 1.23.10.3: API font handling reworked 2005/11/11 15:38:25 dr 1.23.10.2: #i3997# new chart2 API for source ranges, step 1 2005/11/07 14:40:51 dr 1.23.10.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b7038d035e30794e88647e9b9da2c0b6a93ead0e]

INTEGRATION: CWS chart2mst3 (1.5.26); FILE MERGED 2006/07/11 14:13:49 dr 1.5.26.1: #export of chart line and area formats


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3ea806ee11fdc50580218ae6b5e761718a2469a1]

INTEGRATION: CWS chart2mst3 (1.6.8); FILE MERGED 2007/04/25 02:59:07 bm 1.6.8.5: RESYNC: (1.9-1.10); FILE MERGED 2006/07/17 17:42:38 dr 1.6.8.4: import stock charts, extend new chart export 2006/03/09 15:03:18 dr 1.6.8.3: more dumper stuff 2006/01/25 14:20:00 bm 1.6.8.2: RESYNC: (1.6-1.7); FILE MERGED 2005/11/07 14:40:51 dr 1.6.8.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [29b22374789f8fb2c13e5ae2e84511f64da6e2cb]

INTEGRATION: CWS chart2mst3 (1.26.10); FILE MERGED 2007/02/13 14:02:36 dr 1.26.10.3: #i71697# wrong assertion 2006/08/31 10:00:33 dr 1.26.10.2: chart2 export: text formatting, series formatting 2006/03/28 15:11:41 dr 1.26.10.1: dumper merged from CWS dr47


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e79543ad26e36366c4b0ae42f8f39588cd258459]

INTEGRATION: CWS chart2mst3 (1.4.10); FILE MERGED 2007/04/20 08:15:54 iha 1.4.10.52: #i75393# Connect Bars per diagram not per series 2006/10/30 10:08:30 dr 1.4.10.51: always set a default value for VARYCOLORSBY property 2006/10/12 14:23:40 dr 1.4.10.50: remove old chart filter code 2006/10/12 13:16:24 dr 1.4.10.49: rename 'chart group' to 'type group' to prevent confusion 2006/10/12 10:56:02 dr 1.4.10.48: improved stacking support 2006/10/10 16:30:42 dr 1.4.10.47: reverse series order for area/donut charts, set 3d light source 2006/10/05 12:02:39 dr 1.4.10.46: export of stock charts 2006/09/28 14:28:28 dr 1.4.10.45: extended type info, handling of missing data source range 2006/09/27 09:56:40 dr 1.4.10.44: disable support for reversed axes 2006/09/26 12:30:19 dr 1.4.10.43: export of error bars 2006/09/21 11:15:45 dr 1.4.10.42: default frame formatting 2006/09/18 16:52:10 dr 1.4.10.41: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 10:00:33 dr 1.4.10.40: chart2 export: text formatting, series formatting 2006/08/22 16:10:43 dr 1.4.10.39: chart2 export: string/text/title handling, first steps 2006/08/16 11:46:05 dr 1.4.10.38: chart2 import/export 2006/07/27 15:07:18 dr 1.4.10.37: RESYNC: (1.5-1.6); FILE MERGED 2006/07/18 15:19:28 dr 1.4.10.36: auto formatting 2006/07/17 17:42:37 dr 1.4.10.35: import stock charts, extend new chart export 2006/07/11 14:13:49 dr 1.4.10.34: #export of chart line and area formats 2006/06/29 14:09:01 dr 1.4.10.33: spline for line charts 2006/06/28 09:02:30 dr 1.4.10.32: #i47264# import trend lines 2006/06/27 14:33:26 dr 1.4.10.31: import wall/floor in 3d charts, #i47264# import error bars 2006/06/23 15:24:12 dr 1.4.10.30: pie/donut charts, varied point colors 2006/06/22 10:52:26 dr 1.4.10.29: combination chart support 2006/05/18 13:00:44 dr 1.4.10.28: #i60067# use named gradients, bitmaps and dashes in old and new API 2006/04/13 13:33:51 dr 1.4.10.27: type info provider added 2006/04/12 15:15:33 dr 1.4.10.26: create coordinate system and chart types with factory 2006/04/10 18:45:14 dr 1.4.10.25: chart API rework 2006/04/04 16:07:59 dr 1.4.10.24: bar charts: gap, overlap, connector lines 2006/03/31 14:51:24 dr 1.4.10.23: axis formatting completed 2006/03/29 16:10:58 dr 1.4.10.22: remove reference size properties to avoid automatic text scaling 2006/03/09 15:03:18 dr 1.4.10.21: more dumper stuff 2005/12/23 15:58:39 dr 1.4.10.20: main increment 2005/12/23 10:00:35 dr 1.4.10.19: main grid 2005/12/22 15:07:11 dr 1.4.10.18: data labels, pie format, 3d bar format 2005/12/21 14:54:16 dr 1.4.10.17: remove identifiers from objects 2005/12/21 11:46:57 dr 1.4.10.16: stacked charts, symbols, data point formats 2005/12/16 10:51:30 dr 1.4.10.15: font handling and code cleanup 2005/12/15 14:51:52 dr 1.4.10.14: API font handling 2005/12/15 13:36:40 dr 1.4.10.13: API font handling reworked 2005/12/09 14:51:57 dr 1.4.10.12: import legend 2005/12/08 17:47:39 dr 1.4.10.11: improved line/area formatting handling 2005/12/06 15:26:54 dr 1.4.10.10: complex fill properties (gradient/bitmap) 2005/12/02 12:43:55 dr 1.4.10.9: minimum/maximum and category source range 2005/11/30 17:16:25 dr 1.4.10.8: chart axes 2005/11/30 12:26:47 dr 1.4.10.7: axis formatting 2005/11/25 11:54:00 dr 1.4.10.6: #i24066# border and area of text objects 2005/11/24 10:52:55 dr 1.4.10.5: #i24066# rich-text title 2005/11/16 16:48:11 dr 1.4.10.4: #i3997# new chart2 API for source ranges, step 2 2005/11/11 15:38:24 dr 1.4.10.3: #i3997# new chart2 API for source ranges, step 1 2005/11/07 14:40:50 dr 1.4.10.2: #i3997# preparations for new chart2 API 2005/10/12 12:22:31 dr 1.4.10.1: #i47264 add trendlines and error bars


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [35326df285c39a8d88a2c30edd67be10dd8fab4e]

INTEGRATION: CWS chart2mst3 (1.18.26); FILE MERGED 2006/10/16 11:15:30 dr 1.18.26.7: RESYNC: (1.20-1.21); FILE MERGED 2006/09/18 16:52:10 dr 1.18.26.6: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 10:00:33 dr 1.18.26.5: chart2 export: text formatting, series formatting 2006/07/27 15:07:09 dr 1.18.26.4: RESYNC: (1.19-1.20); FILE MERGED 2006/01/25 14:18:55 bm 1.18.26.3: RESYNC: (1.18-1.19); FILE MERGED 2005/12/16 10:51:30 dr 1.18.26.2: font handling and code cleanup 2005/12/15 13:36:34 dr 1.18.26.1: API font handling reworked


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [40f57cca9726881ef41cf2afe9d42ead6f77c3db]

INTEGRATION: CWS chart2mst3 (1.19.10); FILE MERGED 2007/02/07 15:40:11 iha 1.19.10.12: RESYNC: (1.24-1.25); FILE MERGED 2006/10/18 23:44:59 bm 1.19.10.11: RESYNC: (1.23-1.24); FILE MERGED 2006/10/16 11:15:23 dr 1.19.10.10: RESYNC: (1.22-1.23); FILE MERGED 2006/08/16 11:46:05 dr 1.19.10.9: chart2 import/export 2006/07/27 15:06:32 dr 1.19.10.8: RESYNC: (1.21-1.22); FILE MERGED 2006/07/11 14:13:49 dr 1.19.10.7: #export of chart line and area formats 2006/06/22 10:46:09 dr 1.19.10.6: set BIFF5 chart anchor, support BIFF5 chart sheets 2006/06/16 08:14:36 dr 1.19.10.5: load BIFF5 charts 2006/05/05 15:15:16 bm 1.19.10.4: RESYNC: (1.20-1.21); FILE MERGED 2006/01/25 14:18:41 bm 1.19.10.3: RESYNC: (1.19-1.20); FILE MERGED 2006/01/11 13:18:46 dr 1.19.10.2: escher stream handling improved 2005/11/24 13:14:53 dr 1.19.10.1: #i24066# move string import into own file, reduce header dep's


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c8adb9206c0a2c42b1eb26934beb559a1e3bc820]

INTEGRATION: CWS chart2mst3 (1.11.26); FILE MERGED 2006/07/27 15:06:24 dr 1.11.26.2: RESYNC: (1.11-1.12); FILE MERGED 2005/11/24 13:14:52 dr 1.11.26.1: #i24066# move string import into own file, reduce header dep's


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5c060966fdfb5b0c45200d93463126d629589ea2]

INTEGRATION: CWS chart2mst3 (1.4.10); FILE MERGED 2007/04/25 02:58:52 bm 1.4.10.54: RESYNC: (1.6-1.7); FILE MERGED 2007/04/20 08:16:32 iha 1.4.10.53: #i75393# Connect Bars per diagram not per series 2006/11/14 16:07:36 dr 1.4.10.52: correct import of automatic chart title 2006/10/12 14:23:40 dr 1.4.10.51: remove old chart filter code 2006/10/12 13:16:24 dr 1.4.10.50: rename 'chart group' to 'type group' to prevent confusion 2006/10/12 10:56:02 dr 1.4.10.49: improved stacking support 2006/10/10 16:30:41 dr 1.4.10.48: reverse series order for area/donut charts, set 3d light source 2006/10/05 12:02:39 dr 1.4.10.47: export of stock charts 2006/09/28 14:28:28 dr 1.4.10.46: extended type info, handling of missing data source range 2006/09/26 15:34:03 dr 1.4.10.45: export of trend lines 2006/09/26 12:30:18 dr 1.4.10.44: export of error bars 2006/09/21 11:15:45 dr 1.4.10.43: default frame formatting 2006/09/18 16:52:10 dr 1.4.10.42: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 10:00:33 dr 1.4.10.41: chart2 export: text formatting, series formatting 2006/08/22 16:10:43 dr 1.4.10.40: chart2 export: string/text/title handling, first steps 2006/08/16 11:46:05 dr 1.4.10.39: chart2 import/export 2006/07/27 15:06:16 dr 1.4.10.38: RESYNC: (1.4-1.5); FILE MERGED 2006/07/18 15:19:28 dr 1.4.10.37: auto formatting 2006/07/17 17:42:37 dr 1.4.10.36: import stock charts, extend new chart export 2006/07/11 14:13:48 dr 1.4.10.35: #export of chart line and area formats 2006/06/30 11:41:42 dr 1.4.10.34: started new chart export filter 2006/06/29 14:09:01 dr 1.4.10.33: spline for line charts 2006/06/29 09:08:08 dr 1.4.10.32: #i4140# ignore empty groups and axessets 2006/06/28 09:02:30 dr 1.4.10.31: #i47264# import trend lines 2006/06/27 14:33:26 dr 1.4.10.30: import wall/floor in 3d charts, #i47264# import error bars 2006/06/23 15:24:12 dr 1.4.10.29: pie/donut charts, varied point colors 2006/06/22 10:52:26 dr 1.4.10.28: combination chart support 2006/05/18 13:00:43 dr 1.4.10.27: #i60067# use named gradients, bitmaps and dashes in old and new API 2006/04/13 13:33:51 dr 1.4.10.26: type info provider added 2006/04/12 15:15:32 dr 1.4.10.25: create coordinate system and chart types with factory 2006/04/10 18:45:14 dr 1.4.10.24: chart API rework 2006/04/06 10:30:43 dr 1.4.10.23: variable area formatting inside series 2006/04/04 16:07:58 dr 1.4.10.22: bar charts: gap, overlap, connector lines 2006/03/31 14:51:23 dr 1.4.10.21: axis formatting completed 2005/12/23 15:58:38 dr 1.4.10.20: main increment 2005/12/23 10:00:35 dr 1.4.10.19: main grid 2005/12/22 15:07:11 dr 1.4.10.18: data labels, pie format, 3d bar format 2005/12/21 11:46:56 dr 1.4.10.17: stacked charts, symbols, data point formats 2005/12/16 10:51:29 dr 1.4.10.16: font handling and code cleanup 2005/12/15 14:51:52 dr 1.4.10.15: API font handling 2005/12/09 14:51:56 dr 1.4.10.14: import legend 2005/12/08 17:47:38 dr 1.4.10.13: improved line/area formatting handling 2005/12/06 15:26:53 dr 1.4.10.12: complex fill properties (gradient/bitmap) 2005/12/02 12:43:54 dr 1.4.10.11: minimum/maximum and category source range 2005/11/30 17:16:25 dr 1.4.10.10: chart axes 2005/11/30 12:26:46 dr 1.4.10.9: axis formatting 2005/11/25 11:53:59 dr 1.4.10.8: #i24066# border and area of text objects 2005/11/24 13:14:51 dr 1.4.10.7: #i24066# move string import into own file, reduce header dep's 2005/11/24 10:52:55 dr 1.4.10.6: #i24066# rich-text title 2005/11/17 09:38:11 dr 1.4.10.5: #i3997# helper function for creation of labeled data sequence 2005/11/16 16:48:11 dr 1.4.10.4: #i3997# new chart2 API for source ranges, step 2 2005/11/11 15:38:24 dr 1.4.10.3: #i3997# new chart2 API for source ranges, step 1 2005/11/07 14:40:48 dr 1.4.10.2: #i3997# preparations for new chart2 API 2005/10/12 12:22:31 dr 1.4.10.1: #i47264 add trendlines and error bars


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [837662da4280360c35d75746e2e8fb9bdaeb5aa9]

INTEGRATION: CWS chart2mst3 (1.7.26); FILE MERGED 2006/07/27 15:06:09 dr 1.7.26.3: RESYNC: (1.7-1.8); FILE MERGED 2006/07/04 12:53:09 dr 1.7.26.2: name conflict: Size() member function vs. class Size parameter type 2005/11/07 14:40:47 dr 1.7.26.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6f58bdbb451735edc6cbc5a6d22e333cdaf10e37]

INTEGRATION: CWS chart2mst3 (1.15.26); FILE MERGED 2007/04/25 02:58:21 bm 1.15.26.6: RESYNC: (1.16-1.17); FILE MERGED 2006/09/18 16:52:10 dr 1.15.26.5: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 10:00:33 dr 1.15.26.4: chart2 export: text formatting, series formatting 2006/07/17 17:42:37 dr 1.15.26.3: import stock charts, extend new chart export 2006/07/11 14:13:48 dr 1.15.26.2: #export of chart line and area formats 2006/03/28 15:11:41 dr 1.15.26.1: dumper merged from CWS dr47


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f3990a7fcffdba1d1782cafe1ea322d7b1b223ea]

INTEGRATION: CWS chart2mst3 (1.8.18); FILE MERGED 2007/02/07 15:40:00 iha 1.8.18.3: RESYNC: (1.8-1.9); FILE MERGED 2006/08/31 10:00:32 dr 1.8.18.2: chart2 export: text formatting, series formatting 2006/08/22 16:10:43 dr 1.8.18.1: chart2 export: string/text/title handling, first steps


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [565e0a92fdac5347767563043e6c903e5ae1e782]

INTEGRATION: CWS chart2mst3 (1.10.26); FILE MERGED 2007/04/25 02:58:15 bm 1.10.26.4: RESYNC: (1.11-1.12); FILE MERGED 2006/07/27 15:05:34 dr 1.10.26.3: RESYNC: (1.10-1.11); FILE MERGED 2006/07/04 12:53:09 dr 1.10.26.2: name conflict: Size() member function vs. class Size parameter type 2006/06/30 11:41:41 dr 1.10.26.1: started new chart export filter


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c828fd50b4553fbbf6cbde1fdf55056d98e10d7c]

INTEGRATION: CWS chart2mst3 (1.4.26); FILE MERGED 2006/07/11 14:13:48 dr 1.4.26.1: #export of chart line and area formats


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5dcd83ac77f89acacca5f97c865389018afcc708]

INTEGRATION: CWS chart2mst3 (1.5.8); FILE MERGED 2006/07/17 17:42:37 dr 1.5.8.3: import stock charts, extend new chart export 2006/01/25 14:18:24 bm 1.5.8.2: RESYNC: (1.5-1.6); FILE MERGED 2005/11/07 14:40:46 dr 1.5.8.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9c06c9a38f93be45c2f0d47048bc8ee25b966147]

INTEGRATION: CWS chart2mst3 (1.6.26); FILE MERGED 2007/02/07 15:39:45 iha 1.6.26.4: RESYNC: (1.7-1.8); FILE MERGED 2006/07/11 14:13:48 dr 1.6.26.3: #export of chart line and area formats 2006/06/30 11:41:41 dr 1.6.26.2: started new chart export filter 2005/11/07 14:40:45 dr 1.6.26.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c9dafa0fa5aaaeea83d574f3429c4ea06b239e6e]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/20 08:17:01 iha 1.1.2.17: #i75393# Connect Bars per diagram not per series 2006/10/12 14:23:40 dr 1.1.2.16: remove old chart filter code 2006/10/12 13:16:24 dr 1.1.2.15: rename 'chart group' to 'type group' to prevent confusion 2006/10/12 10:56:02 dr 1.1.2.14: improved stacking support 2006/10/05 12:02:39 dr 1.1.2.13: export of stock charts 2006/09/28 14:28:28 dr 1.1.2.12: extended type info, handling of missing data source range 2006/09/26 15:34:03 dr 1.1.2.11: export of trend lines 2006/09/26 12:30:18 dr 1.1.2.10: export of error bars 2006/09/21 11:15:45 dr 1.1.2.9: default frame formatting 2006/09/18 16:52:10 dr 1.1.2.8: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 10:00:32 dr 1.1.2.7: chart2 export: text formatting, series formatting 2006/08/22 16:10:42 dr 1.1.2.6: chart2 export: string/text/title handling, first steps 2006/08/16 11:46:05 dr 1.1.2.5: chart2 import/export 2006/07/27 07:57:27 dr 1.1.2.4: source ranges, part 1 2006/07/17 17:42:36 dr 1.1.2.3: import stock charts, extend new chart export 2006/07/11 14:13:47 dr 1.1.2.2: #export of chart line and area formats 2006/06/30 11:41:41 dr 1.1.2.1: started new chart export filter


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [552e91277f79d9efd63db0ba3834adc8513748ed]

INTEGRATION: CWS chart2mst3 (1.34.26); FILE MERGED 2007/04/25 02:57:05 bm 1.34.26.8: RESYNC: (1.39-1.40); FILE MERGED 2006/10/16 11:15:13 dr 1.34.26.7: RESYNC: (1.37-1.39); FILE MERGED 2006/07/11 14:13:47 dr 1.34.26.6: #export of chart line and area formats 2006/06/16 13:41:30 bm 1.34.26.5: RESYNC: (1.36-1.37); FILE MERGED 2006/05/05 15:14:06 bm 1.34.26.4: RESYNC: (1.35-1.36); FILE MERGED 2006/02/22 14:19:46 dr 1.34.26.3: joined new dumper from dr46 2006/01/25 14:15:28 bm 1.34.26.2: RESYNC: (1.34-1.35); FILE MERGED 2005/11/16 17:00:54 dr 1.34.26.1: #i3997# remove non-working BIFF5 chart import


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [438579121ca386adcbed08da0b1874909a485d34]

INTEGRATION: CWS chart2mst3 (1.18.26); FILE MERGED 2007/04/25 02:56:43 bm 1.18.26.6: RESYNC: (1.20-1.21); FILE MERGED 2007/02/07 15:38:56 iha 1.18.26.5: RESYNC: (1.19-1.20); FILE MERGED 2006/09/18 16:52:09 dr 1.18.26.4: export of data labels, bar connectors, axis number format, automatic colors 2006/07/11 14:13:47 dr 1.18.26.3: #export of chart line and area formats 2006/02/24 17:50:29 dr 1.18.26.2: more chart recs, prepare formula dump 2005/11/25 11:53:59 dr 1.18.26.1: #i24066# border and area of text objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3a6c504fb00dbe54870448b84e04a297dce58cab]

INTEGRATION: CWS chart2mst3 (1.7.26); FILE MERGED 2007/02/07 15:38:49 iha 1.7.26.12: RESYNC: (1.8-1.9); FILE MERGED 2006/11/14 15:13:41 dr 1.7.26.11: correct conversion of logarithmic scaling settings 2006/09/26 15:34:02 dr 1.7.26.10: export of trend lines 2006/07/11 14:13:47 dr 1.7.26.9: #export of chart line and area formats 2006/06/30 11:41:41 dr 1.7.26.8: started new chart export filter 2005/12/09 14:51:55 dr 1.7.26.7: import legend 2005/12/08 17:47:38 dr 1.7.26.6: improved line/area formatting handling 2005/11/25 11:53:59 dr 1.7.26.5: #i24066# border and area of text objects 2005/11/24 10:52:55 dr 1.7.26.4: #i24066# rich-text title 2005/11/11 16:40:43 dr 1.7.26.3: #i3997# removed old propertyset helper functions 2005/11/11 15:38:23 dr 1.7.26.2: #i3997# new chart2 API for source ranges, step 1 2005/11/07 14:40:44 dr 1.7.26.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e02f83f1c6a4a20bad49c2145f3274870da5dd40]

INTEGRATION: CWS chart2mst3 (1.14.48); FILE MERGED 2007/02/07 15:38:31 iha 1.14.48.3: RESYNC: (1.15-1.17); FILE MERGED 2006/10/18 23:44:32 bm 1.14.48.2: RESYNC: (1.14-1.15); FILE MERGED 2006/07/11 14:10:43 dr 1.14.48.1: #export of chart line and area formats


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [67391273611222ea30c4a2ff42468d8ff22bc429]

INTEGRATION: CWS chart2mst3 (1.5.26); FILE MERGED 2007/04/25 02:54:20 bm 1.5.26.15: RESYNC: (1.7-1.8); FILE MERGED 2006/11/14 15:13:49 dr 1.5.26.14: correct conversion of logarithmic scaling settings 2006/10/18 23:44:16 bm 1.5.26.13: RESYNC: (1.6-1.7); FILE MERGED 2006/09/26 15:33:21 dr 1.5.26.12: export of trend lines 2006/08/31 10:00:16 dr 1.5.26.11: correctly extract boolean values with ReadValue() 2006/07/27 16:13:29 dr 1.5.26.10: #i10000# merge conflict 2006/07/27 15:38:09 dr 1.5.26.9: RESYNC: (1.5-1.6); FILE MERGED 2006/07/11 14:10:43 dr 1.5.26.8: #export of chart line and area formats 2006/06/22 10:51:47 dr 1.5.26.7: combination chart support 2005/12/09 14:51:36 dr 1.5.26.6: import legend 2005/12/08 17:46:34 dr 1.5.26.5: improved line/area formatting handling 2005/12/08 17:39:39 dr 1.5.26.4: improved line/area formatting handling 2005/11/25 11:53:37 dr 1.5.26.3: #i24066# border and area of text objects 2005/11/11 15:38:54 dr 1.5.26.2: #i3997# new chart2 API for source ranges, step 1 2005/11/07 14:17:41 dr 1.5.26.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e02bea7e937133afa7b21bf7a386f3f8fb9e7c5b]

INTEGRATION: CWS chart2mst3 (1.24.10); FILE MERGED 2007/02/13 14:02:54 dr 1.24.10.6: #i71697# wrong assertion 2006/10/13 13:40:07 dr 1.24.10.5: RESYNC: (1.26-1.28); FILE MERGED 2006/08/31 09:59:29 dr 1.24.10.4: chart2 export: text formatting, series formatting 2006/07/11 14:08:32 dr 1.24.10.3: #export of chart line and area formats 2006/05/05 15:12:43 bm 1.24.10.2: RESYNC: (1.24-1.26); FILE MERGED 2005/11/30 12:26:21 dr 1.24.10.1: axis formatting


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1a7fce0a1e936c3464ca6a7aafce246e927e5606]

INTEGRATION: CWS chart2mst3 (1.17.24); FILE MERGED 2007/04/25 02:54:13 bm 1.17.24.11: RESYNC: (1.24-1.25); FILE MERGED 2007/02/13 14:02:54 dr 1.17.24.10: #i71697# wrong assertion 2007/02/08 11:00:00 iha 1.17.24.9: resync m195 -> m202 2007/02/07 15:38:24 iha 1.17.24.8: RESYNC: (1.23-1.24); FILE MERGED 2006/10/13 13:39:59 dr 1.17.24.7: RESYNC: (1.21-1.23); FILE MERGED 2006/08/31 09:59:29 dr 1.17.24.6: chart2 export: text formatting, series formatting 2006/08/22 16:08:57 dr 1.17.24.5: chart2 export: string/text/title handling, first steps 2006/05/05 15:12:35 bm 1.17.24.4: RESYNC: (1.18-1.20); FILE MERGED 2006/01/25 14:13:47 bm 1.17.24.3: RESYNC: (1.17-1.18); FILE MERGED 2005/12/16 10:50:56 dr 1.17.24.2: font handling and code cleanup 2005/12/15 13:35:59 dr 1.17.24.1: API font handling reworked


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f94ec4fc3e657e5af52d203c2fe1962e187b604e]

INTEGRATION: CWS chart2mst3 (1.10.8); FILE MERGED 2007/04/25 02:53:30 bm 1.10.8.10: RESYNC: (1.18-1.19); FILE MERGED 2007/02/07 15:37:49 iha 1.10.8.9: RESYNC: (1.16-1.18); FILE MERGED 2006/11/24 18:20:11 bm 1.10.8.8: RESYNC: (1.14-1.16); FILE MERGED 2006/10/19 11:19:10 dr 1.10.8.7: #10000# re-enable INFO function 2006/10/13 13:39:02 dr 1.10.8.6: RESYNC: (1.13-1.14); FILE MERGED 2006/07/27 16:13:12 dr 1.10.8.5: #i10000# merge conflict 2006/07/27 13:42:19 dr 1.10.8.4: RESYNC: (1.11-1.13); FILE MERGED 2006/07/17 17:40:48 dr 1.10.8.3: import stock charts, extend new chart export 2006/01/25 14:12:24 bm 1.10.8.2: RESYNC: (1.10-1.11); FILE MERGED 2005/11/07 14:12:25 dr 1.10.8.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ed1478fcc9aaf797bf4d0393610b4c09d14756e4]

INTEGRATION: CWS chart2mst3 (1.10.10); FILE MERGED 2007/02/07 15:37:42 iha 1.10.10.3: RESYNC: (1.11-1.12); FILE MERGED 2006/10/13 13:38:54 dr 1.10.10.2: RESYNC: (1.10-1.11); FILE MERGED 2006/07/03 13:56:59 dr 1.10.10.1: type correctness


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [575a8e5cdee6e3f7561d01d85ce6994c500f000d]

INTEGRATION: CWS chart2mst3 (1.4.10); FILE MERGED 2007/04/25 13:40:26 bm 1.4.10.45: RESYNC: unused variable now used 2007/04/25 02:53:23 bm 1.4.10.44: RESYNC: (1.6-1.7); FILE MERGED 2007/04/19 15:19:04 dr 1.4.10.43: #i71697# add zero check before division... 2007/04/19 14:58:27 dr 1.4.10.42: #i71697# LegendExpansion according to real size 2007/02/13 14:02:53 dr 1.4.10.41: #i71697# wrong assertion 2006/10/16 11:56:53 dr 1.4.10.40: handle missing CHTICK record 2006/10/13 13:38:46 dr 1.4.10.39: RESYNC: (1.5-1.6); FILE MERGED 2006/10/12 14:23:27 dr 1.4.10.38: remove old chart filter code 2006/10/12 13:16:12 dr 1.4.10.37: rename 'chart group' to 'type group' to prevent confusion 2006/10/12 10:55:45 dr 1.4.10.36: improved stacking support 2006/10/10 16:29:25 dr 1.4.10.35: reverse series order for area/donut charts, set 3d light source 2006/10/05 11:34:35 dr 1.4.10.34: export of stock charts 2006/09/28 14:28:19 dr 1.4.10.33: extended type info, handling of missing data source range 2006/09/26 15:23:33 dr 1.4.10.32: export of trend lines 2006/09/26 12:29:52 dr 1.4.10.31: export of error bars 2006/09/21 11:15:19 dr 1.4.10.30: default frame formatting 2006/09/18 16:51:56 dr 1.4.10.29: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 09:59:29 dr 1.4.10.28: chart2 export: text formatting, series formatting 2006/08/22 16:08:56 dr 1.4.10.27: chart2 export: string/text/title handling, first steps 2006/08/16 11:45:50 dr 1.4.10.26: chart2 import/export 2006/07/27 13:42:11 dr 1.4.10.25: RESYNC: (1.4-1.5); FILE MERGED 2006/07/27 07:56:49 dr 1.4.10.24: source ranges, part 1 2006/07/18 15:19:27 dr 1.4.10.23: auto formatting 2006/07/17 17:40:48 dr 1.4.10.22: import stock charts, extend new chart export 2006/07/11 14:08:31 dr 1.4.10.21: #export of chart line and area formats 2006/06/27 14:33:15 dr 1.4.10.20: import wall/floor in 3d charts, #i47264# import error bars 2006/06/23 15:10:59 dr 1.4.10.19: pie/donut charts, varied point colors 2006/05/18 12:59:53 dr 1.4.10.18: #i60067# use named gradients, bitmaps and dashes in old and new API 2006/04/13 13:32:21 dr 1.4.10.17: type info provider added 2006/04/12 15:13:47 dr 1.4.10.16: create coordinate system and chart types with factory 2006/04/10 18:43:43 dr 1.4.10.15: chart API rework 2005/12/21 14:11:34 dr 1.4.10.14: border color for symbols 2005/12/21 11:46:44 dr 1.4.10.13: stacked charts, symbols, data point formats 2005/12/16 10:50:56 dr 1.4.10.12: font handling and code cleanup 2005/12/15 14:51:42 dr 1.4.10.11: API font handling 2005/12/15 13:35:58 dr 1.4.10.10: API font handling reworked 2005/12/09 14:50:37 dr 1.4.10.9: import legend 2005/12/08 18:06:40 dr 1.4.10.8: typo 2005/12/08 17:46:22 dr 1.4.10.7: improved line/area formatting handling 2005/12/08 17:37:55 dr 1.4.10.6: improved line/area formatting handling 2005/12/06 15:24:46 dr 1.4.10.5: complex fill properties (gradient/bitmap) 2005/11/25 11:53:03 dr 1.4.10.4: #i24066# border and area of text objects 2005/11/24 10:52:24 dr 1.4.10.3: #i24066# rich-text title 2005/11/11 15:37:22 dr 1.4.10.2: #i3997# new chart2 API for source ranges, step 1 2005/10/12 12:20:51 dr 1.4.10.1: #i47264 add trendlines and error bars


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [485a7cb4daf0261d1a9be68918b28eb987d63a89]

INTEGRATION: CWS chart2mst3 (1.5.48); FILE MERGED 2006/10/13 13:38:16 dr 1.5.48.3: RESYNC: (1.5-1.6); FILE MERGED 2006/07/11 14:08:31 dr 1.5.48.2: #export of chart line and area formats 2006/06/22 10:45:37 dr 1.5.48.1: set BIFF5 chart anchor, support BIFF5 chart sheets


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [314f57af1859d9faf8bfc612141526228aa1fc08]

INTEGRATION: CWS chart2mst3 (1.23.24); FILE MERGED 2007/05/14 20:19:48 bm 1.23.24.11: RESYNC: (1.32-1.33); FILE MERGED 2007/04/25 02:53:17 bm 1.23.24.10: RESYNC: (1.31-1.32); FILE MERGED 2007/02/07 15:37:35 iha 1.23.24.9: RESYNC: (1.30-1.31); FILE MERGED 2006/10/13 13:38:08 dr 1.23.24.8: RESYNC: (1.27-1.30); FILE MERGED 2006/09/18 16:51:56 dr 1.23.24.7: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 09:59:28 dr 1.23.24.6: chart2 export: text formatting, series formatting 2006/07/27 13:42:03 dr 1.23.24.5: RESYNC: (1.26-1.27); FILE MERGED 2006/07/11 14:08:31 dr 1.23.24.4: #export of chart line and area formats 2006/01/25 14:11:57 bm 1.23.24.3: RESYNC: (1.23-1.26); FILE MERGED 2005/12/16 10:50:55 dr 1.23.24.2: font handling and code cleanup 2005/12/15 13:35:57 dr 1.23.24.1: API font handling reworked


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [613977d6cc250b401a3a262aa820852748123ede]

INTEGRATION: CWS chart2mst3 (1.17.10); FILE MERGED 2007/04/25 02:53:04 bm 1.17.10.7: RESYNC: (1.21-1.22); FILE MERGED 2007/02/07 15:37:21 iha 1.17.10.6: RESYNC: (1.20-1.21); FILE MERGED 2006/10/13 13:37:51 dr 1.17.10.5: RESYNC: (1.19-1.20); FILE MERGED 2006/02/22 14:19:06 dr 1.17.10.4: joined new dumper from dr46 2006/01/11 13:18:22 dr 1.17.10.3: escher stream hamdling improved 2005/11/24 13:13:34 dr 1.17.10.2: #i24066# move string import into own file, reduce header dep's 2005/11/07 14:12:25 dr 1.17.10.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2a852eb81ff95e29f171b358a2292100d5b2143d]

INTEGRATION: CWS chart2mst3 (1.38.10); FILE MERGED 2007/05/14 20:19:27 bm 1.38.10.25: RESYNC: (1.49-1.50); FILE MERGED 2007/04/25 02:52:13 bm 1.38.10.24: RESYNC: (1.48-1.49); FILE MERGED 2007/02/07 15:37:14 iha 1.38.10.23: RESYNC: (1.47-1.48); FILE MERGED 2006/10/18 23:44:00 bm 1.38.10.22: RESYNC: (1.46-1.47); FILE MERGED 2006/10/13 13:36:51 dr 1.38.10.21: RESYNC: (1.45-1.46); FILE MERGED 2006/10/12 14:23:27 dr 1.38.10.20: remove old chart filter code 2006/08/16 11:45:50 dr 1.38.10.19: chart2 import/export 2006/07/27 16:13:12 dr 1.38.10.18: #i10000# merge conflict 2006/07/27 13:40:57 dr 1.38.10.17: RESYNC: (1.43-1.45); FILE MERGED 2006/07/17 17:40:47 dr 1.38.10.16: import stock charts, extend new chart export 2006/07/11 14:08:30 dr 1.38.10.15: #export of chart line and area formats 2006/06/30 11:37:42 dr 1.38.10.14: started new chart export filter 2006/06/22 10:45:37 dr 1.38.10.13: set BIFF5 chart anchor, support BIFF5 chart sheets 2006/06/16 13:39:16 bm 1.38.10.12: RESYNC: (1.42-1.43); FILE MERGED 2006/06/16 08:14:03 dr 1.38.10.11: load BIFF5 charts 2006/05/05 15:11:57 bm 1.38.10.10: RESYNC: (1.39-1.42); FILE MERGED 2006/01/25 14:11:13 bm 1.38.10.9: RESYNC: (1.38-1.39); FILE MERGED 2006/01/11 13:18:21 dr 1.38.10.8: escher stream hamdling improved 2005/12/16 10:50:54 dr 1.38.10.7: font handling and code cleanup 2005/11/30 12:26:20 dr 1.38.10.6: axis formatting 2005/11/24 13:13:29 dr 1.38.10.5: #i24066# move string import into own file, reduce header dep's 2005/11/24 10:52:23 dr 1.38.10.4: #i24066# rich-text title 2005/11/16 17:00:31 dr 1.38.10.3: #i3997# remove non-working BIFF5 chart import 2005/11/11 15:37:21 dr 1.38.10.2: #i3997# new chart2 API for source ranges, step 1 2005/11/07 14:12:24 dr 1.38.10.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [05b246b42217f1fd9ce2647268d183c212c5bb9a]

INTEGRATION: CWS chart2mst3 (1.19.8); FILE MERGED 2007/05/14 20:19:20 bm 1.19.8.8: RESYNC: (1.23-1.24); FILE MERGED 2007/04/25 02:52:06 bm 1.19.8.7: RESYNC: (1.22-1.23); FILE MERGED 2006/10/13 13:36:44 dr 1.19.8.6: RESYNC: (1.21-1.22); FILE MERGED 2006/07/27 13:40:48 dr 1.19.8.5: RESYNC: (1.20-1.21); FILE MERGED 2006/01/25 14:10:17 bm 1.19.8.4: RESYNC: (1.19-1.20); FILE MERGED 2005/12/16 10:50:53 dr 1.19.8.3: font handling and code cleanup 2005/11/24 13:13:28 dr 1.19.8.2: #i24066# move string import into own file, reduce header dep's 2005/11/07 14:12:24 dr 1.19.8.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [caba9fa134c2dfe5227d243db3cf25ef48c79d85]

INTEGRATION: CWS chart2mst3 (1.5.10); FILE MERGED 2007/04/27 12:23:36 bm 1.5.10.67: RESYNC: warnings removed 2007/04/20 08:18:58 iha 1.5.10.66: #i75393# Connect Bars per diagram not per series 2006/11/14 16:07:23 dr 1.5.10.65: correct import of automatic chart title 2006/11/14 15:13:29 dr 1.5.10.64: correct conversion of logarithmic scaling settings 2006/10/30 10:08:10 dr 1.5.10.63: always set a default value for VARYCOLORSBY property 2006/10/16 11:56:53 dr 1.5.10.62: handle missing CHTICK record 2006/10/13 13:36:35 dr 1.5.10.61: RESYNC: (1.8-1.9); FILE MERGED 2006/10/12 14:23:26 dr 1.5.10.60: remove old chart filter code 2006/10/12 13:16:11 dr 1.5.10.59: rename 'chart group' to 'type group' to prevent confusion 2006/10/12 10:55:44 dr 1.5.10.58: improved stacking support 2006/10/11 13:07:39 dr 1.5.10.57: pie/donut charts need reversed X axis 2006/10/10 16:29:24 dr 1.5.10.56: reverse series order for area/donut charts, set 3d light source 2006/09/28 14:28:19 dr 1.5.10.55: extended type info, handling of missing data source range 2006/09/27 09:56:17 dr 1.5.10.54: disable support for reversed axes 2006/09/26 15:23:32 dr 1.5.10.53: export of trend lines 2006/09/26 12:29:52 dr 1.5.10.52: export of error bars 2006/09/25 15:32:03 dr 1.5.10.51: axis origin 2006/09/21 11:15:18 dr 1.5.10.50: default frame formatting 2006/09/18 16:51:55 dr 1.5.10.49: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 09:59:28 dr 1.5.10.48: chart2 export: text formatting, series formatting 2006/08/22 16:08:56 dr 1.5.10.47: chart2 export: string/text/title handling, first steps 2006/08/16 11:45:49 dr 1.5.10.46: chart2 import/export 2006/07/27 13:40:40 dr 1.5.10.45: RESYNC: (1.6-1.8); FILE MERGED 2006/07/18 15:19:27 dr 1.5.10.44: auto formatting 2006/07/17 17:40:47 dr 1.5.10.43: import stock charts, extend new chart export 2006/07/11 14:08:30 dr 1.5.10.42: #export of chart line and area formats 2006/06/29 14:08:02 dr 1.5.10.41: spline for line charts 2006/06/29 09:07:43 dr 1.5.10.40: #i4140# ignore empty groups and axessets 2006/06/28 09:01:57 dr 1.5.10.39: #i47264# import trend lines 2006/06/27 14:33:15 dr 1.5.10.38: import wall/floor in 3d charts, #i47264# import error bars 2006/06/23 15:22:19 dr 1.5.10.37: pie/donut charts, varied point colors 2006/06/23 15:10:59 dr 1.5.10.36: pie/donut charts, varied point colors 2006/06/22 10:51:32 dr 1.5.10.35: combination chart support 2006/05/18 12:59:52 dr 1.5.10.34: #i60067# use named gradients, bitmaps and dashes in old and new API 2006/05/05 15:11:48 bm 1.5.10.33: RESYNC: (1.5-1.6); FILE MERGED 2006/04/13 13:32:21 dr 1.5.10.32: type info provider added 2006/04/12 15:13:46 dr 1.5.10.31: create coordinate system and chart types with factory 2006/04/10 18:43:43 dr 1.5.10.30: chart API rework 2006/04/06 10:30:57 dr 1.5.10.29: variable area formatting inside series 2006/04/04 16:07:00 dr 1.5.10.28: bar charts: gap, overlap, connector lines 2006/03/31 14:47:31 dr 1.5.10.27: axis format completed 2006/03/29 16:10:21 dr 1.5.10.26: remove reference size properties to avoid automatic text scaling 2006/03/09 15:02:22 dr 1.5.10.25: more dumper stuff 2006/01/11 13:18:20 dr 1.5.10.24: escher stream hamdling improved 2005/12/23 15:58:13 dr 1.5.10.23: main increment 2005/12/23 10:00:20 dr 1.5.10.22: main grid 2005/12/22 15:06:37 dr 1.5.10.21: data labels, pie format, 3d bar format 2005/12/21 14:53:53 dr 1.5.10.20: remove identifiers from objects 2005/12/21 11:46:43 dr 1.5.10.19: stacked charts, symbols, data point formats 2005/12/16 10:50:52 dr 1.5.10.18: font handling and code cleanup 2005/12/15 14:51:42 dr 1.5.10.17: API font handling 2005/12/15 13:35:54 dr 1.5.10.16: API font handling reworked 2005/12/09 14:50:36 dr 1.5.10.15: import legend 2005/12/08 17:37:54 dr 1.5.10.14: improved line/area formatting handling 2005/12/06 15:24:46 dr 1.5.10.13: complex fill properties (gradient/bitmap) 2005/12/02 15:49:40 dr 1.5.10.12: chart background and diagram wall 2005/12/02 12:43:41 dr 1.5.10.11: minimum/maximum and category source range 2005/11/30 17:15:38 dr 1.5.10.10: chart axes 2005/11/30 12:26:19 dr 1.5.10.9: axis formatting 2005/11/25 11:53:02 dr 1.5.10.8: #i24066# border and area of text objects 2005/11/24 13:13:27 dr 1.5.10.7: #i24066# move string import into own file, reduce header dep's 2005/11/24 10:52:23 dr 1.5.10.6: #i24066# rich-text title 2005/11/17 09:37:59 dr 1.5.10.5: #i3997# helper function for creation of labeled data sequence 2005/11/16 16:47:58 dr 1.5.10.4: #i3997# new chart2 API for source ranges, step 2 2005/11/11 15:37:21 dr 1.5.10.3: #i3997# new chart2 API for source ranges, step 1 2005/11/07 14:12:23 dr 1.5.10.2: #i3997# preparations for new chart2 API 2005/10/12 12:20:51 dr 1.5.10.1: #i47264 add trendlines and error bars


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fa64ef34e8a7c482832b93dd6f22a0f0332e4bdd]

INTEGRATION: CWS chart2mst3 (1.10.10); FILE MERGED 2007/04/25 02:51:46 bm 1.10.10.6: RESYNC: (1.14-1.15); FILE MERGED 2006/10/13 13:36:12 dr 1.10.10.5: RESYNC: (1.12-1.14); FILE MERGED 2006/07/27 13:40:27 dr 1.10.10.4: RESYNC: (1.11-1.12); FILE MERGED 2006/07/04 12:47:25 dr 1.10.10.3: name conflict: Size() member function vs. class Size parameter type 2006/03/28 15:10:40 dr 1.10.10.2: dumper merged from CWS dr47 2005/11/07 14:12:23 dr 1.10.10.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1f9839865808aa23ed7b4eca35284627db03d4af]

INTEGRATION: CWS chart2mst3 (1.22.32); FILE MERGED 2007/04/25 02:51:39 bm 1.22.32.9: RESYNC: (1.26-1.27); FILE MERGED 2007/02/07 15:37:03 iha 1.22.32.8: RESYNC: (1.25-1.26); FILE MERGED 2006/10/13 13:36:04 dr 1.22.32.7: RESYNC: (1.24-1.25); FILE MERGED 2006/09/18 16:51:55 dr 1.22.32.6: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 09:59:27 dr 1.22.32.5: chart2 export: text formatting, series formatting 2006/07/27 13:40:17 dr 1.22.32.4: RESYNC: (1.23-1.24); FILE MERGED 2006/07/17 17:40:47 dr 1.22.32.3: import stock charts, extend new chart export 2006/07/04 12:47:25 dr 1.22.32.2: name conflict: Size() member function vs. class Size parameter type 2006/03/28 15:10:40 dr 1.22.32.1: dumper merged from CWS dr47


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d81a48b5b7839b8086b377c4746e3fc8ade5830f]

INTEGRATION: CWS chart2mst3 (1.8.26); FILE MERGED 2007/02/07 15:36:56 iha 1.8.26.6: RESYNC: (1.10-1.11); FILE MERGED 2006/10/13 13:35:55 dr 1.8.26.5: RESYNC: (1.9-1.10); FILE MERGED 2006/08/31 09:59:27 dr 1.8.26.4: chart2 export: text formatting, series formatting 2006/08/22 16:08:56 dr 1.8.26.3: chart2 export: string/text/title handling, first steps 2006/07/27 13:40:08 dr 1.8.26.2: RESYNC: (1.8-1.9); FILE MERGED 2005/11/24 10:52:22 dr 1.8.26.1: #i24066# rich-text title


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5f08a2f72ea718b12cdf0d840b3f79c857aa2687]

INTEGRATION: CWS chart2mst3 (1.5.26); FILE MERGED 2007/04/25 02:51:11 bm 1.5.26.4: RESYNC: (1.7-1.8); FILE MERGED 2006/10/13 13:35:25 dr 1.5.26.3: RESYNC: (1.6-1.7); FILE MERGED 2006/07/27 13:39:50 dr 1.5.26.2: RESYNC: (1.5-1.6); FILE MERGED 2006/06/30 11:37:42 dr 1.5.26.1: started new chart export filter


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b68fbd24705abb285093d9cc40fe4e77ec60c754]

INTEGRATION: CWS chart2mst3 (1.11.26); FILE MERGED 2007/04/25 02:51:04 bm 1.11.26.6: RESYNC: (1.16-1.17); FILE MERGED 2007/02/07 15:36:42 iha 1.11.26.5: RESYNC: (1.15-1.16); FILE MERGED 2006/11/25 09:46:32 bm 1.11.26.4: RESYNC: (1.14-1.15); FILE MERGED 2006/10/13 13:35:16 dr 1.11.26.3: RESYNC: (1.12-1.14); FILE MERGED 2006/07/27 13:39:43 dr 1.11.26.2: RESYNC: (1.11-1.12); FILE MERGED 2006/07/04 12:47:25 dr 1.11.26.1: name conflict: Size() member function vs. class Size parameter type


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1cb0293e3aeede4fdebd9eaf0f8fc62acd2fc536]

INTEGRATION: CWS chart2mst3 (1.10.26); FILE MERGED 2007/02/07 15:36:35 iha 1.10.26.4: RESYNC: (1.12-1.13); FILE MERGED 2006/10/13 13:35:07 dr 1.10.26.3: RESYNC: (1.11-1.12); FILE MERGED 2006/07/27 13:39:35 dr 1.10.26.2: RESYNC: (1.10-1.11); FILE MERGED 2006/07/11 14:08:30 dr 1.10.26.1: #export of chart line and area formats


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [57addd3141b4218334c06cb9c7aee77778898be0]

INTEGRATION: CWS chart2mst3 (1.5.8); FILE MERGED 2006/10/13 13:34:59 dr 1.5.8.4: RESYNC: (1.7-1.8); FILE MERGED 2006/07/04 12:47:25 dr 1.5.8.3: name conflict: Size() member function vs. class Size parameter type 2006/01/25 14:08:34 bm 1.5.8.2: RESYNC: (1.5-1.6); FILE MERGED 2005/11/07 14:12:23 dr 1.5.8.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9c5938116a9a925a26285cc7420d70d4a499cf93]

INTEGRATION: CWS chart2mst3 (1.16.26); FILE MERGED 2007/04/25 02:50:58 bm 1.16.26.4: RESYNC: (1.18-1.19); FILE MERGED 2007/02/07 15:36:27 iha 1.16.26.3: RESYNC: (1.17-1.18); FILE MERGED 2006/10/13 13:34:52 dr 1.16.26.2: RESYNC: (1.16-1.17); FILE MERGED 2006/07/04 12:47:25 dr 1.16.26.1: name conflict: Size() member function vs. class Size parameter type


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0608e1a29dd4dd85916181dc9390b749ab2ac5f8]

INTEGRATION: CWS chart2mst3 (1.25.2); FILE MERGED 2007/05/14 20:19:14 bm 1.25.2.4: RESYNC: (1.27-1.28); FILE MERGED 2007/02/07 15:36:20 iha 1.25.2.3: RESYNC: (1.26-1.27); FILE MERGED 2006/10/13 13:34:44 dr 1.25.2.2: RESYNC: (1.25-1.26); FILE MERGED 2006/08/31 09:59:27 dr 1.25.2.1: chart2 export: text formatting, series formatting


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6bec7bf0323ca2a35507d0aa7d92fac34ff98aaa]

INTEGRATION: CWS chart2mst3 (1.13.8); FILE MERGED 2007/04/25 02:50:45 bm 1.13.8.11: RESYNC: (1.18-1.20); FILE MERGED 2007/02/07 15:36:07 iha 1.13.8.10: RESYNC: (1.16-1.18); FILE MERGED 2006/10/13 13:34:19 dr 1.13.8.9: RESYNC: (1.15-1.16); FILE MERGED 2006/10/12 14:23:26 dr 1.13.8.8: remove old chart filter code 2006/08/31 09:59:27 dr 1.13.8.7: chart2 export: text formatting, series formatting 2006/07/17 17:40:47 dr 1.13.8.6: import stock charts, extend new chart export 2006/07/11 14:08:30 dr 1.13.8.5: #export of chart line and area formats 2006/06/30 11:37:42 dr 1.13.8.4: started new chart export filter 2006/01/25 14:07:35 bm 1.13.8.3: RESYNC: (1.13-1.14); FILE MERGED 2005/11/11 16:40:19 dr 1.13.8.2: #i3997# removed old propertyset helper functions 2005/11/07 14:12:23 dr 1.13.8.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [19360260250f2d9b3dbffacca1543094ae6b2415]

INTEGRATION: CWS chart2mst3 (1.15.26); FILE MERGED 2007/05/14 20:19:06 bm 1.15.26.9: RESYNC: (1.19-1.20); FILE MERGED 2007/04/25 02:50:38 bm 1.15.26.8: RESYNC: (1.18-1.19); FILE MERGED 2007/02/07 15:36:00 iha 1.15.26.7: RESYNC: (1.17-1.18); FILE MERGED 2006/10/13 13:34:11 dr 1.15.26.6: RESYNC: (1.16-1.17); FILE MERGED 2006/08/31 09:59:27 dr 1.15.26.5: chart2 export: text formatting, series formatting 2006/07/27 13:38:53 dr 1.15.26.4: RESYNC: (1.15-1.16); FILE MERGED 2006/07/04 12:47:24 dr 1.15.26.3: name conflict: Size() member function vs. class Size parameter type 2005/11/11 16:40:18 dr 1.15.26.2: #i3997# removed old propertyset helper functions 2005/11/07 14:12:22 dr 1.15.26.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6434475e95dfd2d3598f1523fba60c009288e3e5]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/15 06:00:44 bm 1.1.2.26: #i77132# warnings removed 2007/04/27 12:23:36 bm 1.1.2.25: RESYNC: warnings removed 2007/04/25 13:43:20 bm 1.1.2.24: RESYNC: warning removed (as this is now an error) 2007/04/20 08:18:13 iha 1.1.2.23: #i75393# Connect Bars per diagram not per series 2007/02/09 17:14:23 iha 1.1.2.22: resync m195 -> m202 - missing pch 2006/11/14 15:13:29 dr 1.1.2.21: correct conversion of logarithmic scaling settings 2006/11/08 14:57:11 dr 1.1.2.20: #i71344# ignore formats of deleted data points 2006/10/12 14:23:26 dr 1.1.2.19: remove old chart filter code 2006/10/12 13:16:11 dr 1.1.2.18: rename 'chart group' to 'type group' to prevent confusion 2006/10/12 10:55:44 dr 1.1.2.17: improved stacking support 2006/10/10 16:29:24 dr 1.1.2.16: reverse series order for area/donut charts, set 3d light source 2006/10/05 11:34:34 dr 1.1.2.15: export of stock charts 2006/09/28 14:28:18 dr 1.1.2.14: extended type info, handling of missing data source range 2006/09/27 09:56:17 dr 1.1.2.13: disable support for reversed axes 2006/09/26 15:23:32 dr 1.1.2.12: export of trend lines 2006/09/26 12:29:51 dr 1.1.2.11: export of error bars 2006/09/25 15:32:03 dr 1.1.2.10: axis origin 2006/09/21 11:15:18 dr 1.1.2.9: default frame formatting 2006/09/18 16:51:55 dr 1.1.2.8: export of data labels, bar connectors, axis number format, automatic colors 2006/08/31 09:59:26 dr 1.1.2.7: chart2 export: text formatting, series formatting 2006/08/22 16:08:56 dr 1.1.2.6: chart2 export: string/text/title handling, first steps 2006/08/16 11:45:49 dr 1.1.2.5: chart2 import/export 2006/07/27 07:56:49 dr 1.1.2.4: source ranges, part 1 2006/07/17 17:40:47 dr 1.1.2.3: import stock charts, extend new chart export 2006/07/11 14:08:29 dr 1.1.2.2: #export of chart line and area formats 2006/06/30 11:37:41 dr 1.1.2.1: started new chart export filter


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9a1643f8ffe26617eff7d006e6a1cc2002efcd09]

INTEGRATION: CWS chart2mst3 (1.55.10); FILE MERGED 2007/04/25 02:48:43 bm 1.55.10.16: RESYNC: (1.65-1.66); FILE MERGED 2007/02/07 15:35:53 iha 1.55.10.15: RESYNC: (1.63-1.65); FILE MERGED 2006/11/25 09:46:25 bm 1.55.10.14: RESYNC: (1.62-1.63); FILE MERGED 2006/10/13 13:33:47 dr 1.55.10.13: RESYNC: (1.59-1.62); FILE MERGED 2006/06/22 10:45:37 dr 1.55.10.12: set BIFF5 chart anchor, support BIFF5 chart sheets 2006/06/20 10:23:14 dr 1.55.10.11: skip chart object substreams in BIFF3/4 2006/06/16 13:29:46 bm 1.55.10.10: RESYNC: (1.57-1.58); FILE MERGED 2006/05/08 05:43:44 bm 1.55.10.9: Z_Biff5C no longer used 2006/05/05 15:10:44 bm 1.55.10.8: RESYNC: (1.56-1.57); FILE MERGED 2006/03/28 15:10:39 dr 1.55.10.7: dumper merged from CWS dr47 2006/02/23 10:20:54 dr 1.55.10.6: enable dumper/import, extract storage streams 2006/01/26 17:42:41 bm 1.55.10.5: deprecated enums 2006/01/25 14:02:15 bm 1.55.10.4: RESYNC: (1.55-1.56); FILE MERGED 2006/01/11 13:18:20 dr 1.55.10.3: escher stream hamdling improved 2005/11/24 13:13:27 dr 1.55.10.2: #i24066# move string import into own file, reduce header dep's 2005/11/16 17:00:30 dr 1.55.10.1: #i3997# remove non-working BIFF5 chart import


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [885451e14b85ad1625ef4dac6a593b0443a1f72c]

INTEGRATION: CWS chart2mst3 (1.34.26); FILE MERGED 2007/04/25 02:50:24 bm 1.34.26.8: RESYNC: (1.37-1.38); FILE MERGED 2007/02/07 15:35:46 iha 1.34.26.7: RESYNC: (1.36-1.37); FILE MERGED 2006/10/12 14:23:26 dr 1.34.26.6: remove old chart filter code 2006/06/30 11:37:42 dr 1.34.26.5: started new chart export filter 2006/02/22 14:19:05 dr 1.34.26.4: joined new dumper from dr46 2005/12/08 17:37:53 dr 1.34.26.3: improved line/area formatting handling 2005/11/24 13:13:23 dr 1.34.26.2: #i24066# move string import into own file, reduce header dep's 2005/11/07 14:12:22 dr 1.34.26.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b38312feb0a311de0210c857e73f927da79589fd]

INTEGRATION: CWS chart2mst3 (1.76.10); FILE MERGED 2007/05/14 20:18:52 bm 1.76.10.14: RESYNC: (1.86-1.87); FILE MERGED 2007/04/25 02:50:17 bm 1.76.10.13: RESYNC: (1.85-1.86); FILE MERGED 2007/02/07 15:35:39 iha 1.76.10.12: RESYNC: (1.84-1.85); FILE MERGED 2006/11/25 09:46:17 bm 1.76.10.11: RESYNC: (1.83-1.84); FILE MERGED 2006/10/13 13:33:27 dr 1.76.10.10: RESYNC: (1.80-1.83); FILE MERGED 2006/07/27 13:38:28 dr 1.76.10.9: RESYNC: (1.79-1.80); FILE MERGED 2006/06/22 10:45:36 dr 1.76.10.8: set BIFF5 chart anchor, support BIFF5 chart sheets 2006/06/16 13:31:35 bm 1.76.10.7: RESYNC: (1.78-1.79); FILE MERGED 2006/06/16 08:14:03 dr 1.76.10.6: load BIFF5 charts 2006/02/22 14:19:05 dr 1.76.10.5: joined new dumper from dr46 2006/01/25 14:06:40 bm 1.76.10.4: RESYNC: (1.76-1.77); FILE MERGED 2006/01/11 13:18:19 dr 1.76.10.3: escher stream hamdling improved 2005/11/16 17:00:29 dr 1.76.10.2: #i3997# remove non-working BIFF5 chart import 2005/11/07 14:12:22 dr 1.76.10.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0e119bcad207595c40b7d31b1d5573455297ae8e]

INTEGRATION: CWS chart2mst3 (1.81.26); FILE MERGED 2007/05/14 20:18:29 bm 1.81.26.6: RESYNC: (1.85-1.86); FILE MERGED 2007/04/25 02:49:35 bm 1.81.26.5: RESYNC: (1.84-1.85); FILE MERGED 2007/02/07 15:35:24 iha 1.81.26.4: RESYNC: (1.83-1.84); FILE MERGED 2006/10/13 13:32:38 dr 1.81.26.3: RESYNC: (1.82-1.83); FILE MERGED 2006/07/27 13:38:04 dr 1.81.26.2: RESYNC: (1.81-1.82); FILE MERGED 2006/07/04 12:47:24 dr 1.81.26.1: name conflict: Size() member function vs. class Size parameter type


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d1d8cf9fe0f86c3066018d9af2689c7f47b35418]

INTEGRATION: CWS chart2mst3 (1.38.24); FILE MERGED 2007/05/14 20:18:22 bm 1.38.24.9: RESYNC: (1.43-1.44); FILE MERGED 2006/11/27 14:41:11 dr 1.38.24.8: #i10000# merge error 2006/11/24 18:19:50 bm 1.38.24.7: RESYNC: (1.41-1.42); FILE MERGED 2006/10/13 13:32:30 dr 1.38.24.6: RESYNC: (1.40-1.41); FILE MERGED 2006/07/27 13:37:56 dr 1.38.24.5: RESYNC: (1.39-1.40); FILE MERGED 2006/07/11 14:08:29 dr 1.38.24.4: #export of chart line and area formats 2006/06/22 10:45:36 dr 1.38.24.3: set BIFF5 chart anchor, support BIFF5 chart sheets 2006/06/16 08:14:03 dr 1.38.24.2: load BIFF5 charts 2005/11/16 17:00:29 dr 1.38.24.1: #i3997# remove non-working BIFF5 chart import


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [99512e115c6e81bad6cfba81bdd6629734c361ec]

INTEGRATION: CWS chart2mst3 (1.108.10); FILE MERGED 2007/05/14 20:18:16 bm 1.108.10.12: RESYNC: (1.116-1.117); FILE MERGED 2006/11/25 09:46:08 bm 1.108.10.11: RESYNC: (1.115-1.116); FILE MERGED 2006/10/13 13:32:22 dr 1.108.10.10: RESYNC: (1.112-1.115); FILE MERGED 2006/07/27 13:37:48 dr 1.108.10.9: RESYNC: (1.111-1.112); FILE MERGED 2006/06/16 13:30:37 bm 1.108.10.8: RESYNC: (1.110-1.111); FILE MERGED 2006/06/16 08:14:02 dr 1.108.10.7: load BIFF5 charts 2006/02/22 14:19:05 dr 1.108.10.6: joined new dumper from dr46 2006/01/25 14:04:53 bm 1.108.10.5: RESYNC: (1.108-1.109); FILE MERGED 2006/01/11 13:18:18 dr 1.108.10.4: escher stream hamdling improved 2005/11/24 13:13:19 dr 1.108.10.3: #i24066# move string import into own file, reduce header dep's 2005/11/16 17:00:28 dr 1.108.10.2: #i3997# remove non-working BIFF5 chart import 2005/11/07 14:12:21 dr 1.108.10.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9fa1bdff9090b4a373edb3cb9fcf9b0c6fb42094]

INTEGRATION: CWS chart2mst3 (1.36.8); FILE MERGED 2007/04/25 13:25:33 bm 1.36.8.11: RESYNC: unused parameters are now used 2007/04/25 02:49:18 bm 1.36.8.10: RESYNC: (1.44-1.45); FILE MERGED 2007/02/07 15:35:10 iha 1.36.8.9: RESYNC: (1.43-1.44); FILE MERGED 2006/11/24 18:19:44 bm 1.36.8.8: RESYNC: (1.42-1.43); FILE MERGED 2006/10/13 13:32:14 dr 1.36.8.7: RESYNC: (1.39-1.42); FILE MERGED 2006/07/27 13:37:39 dr 1.36.8.6: RESYNC: (1.38-1.39); FILE MERGED 2006/06/16 08:14:02 dr 1.36.8.5: load BIFF5 charts 2006/05/10 16:30:42 dr 1.36.8.4: changed includes 2006/01/26 17:39:58 bm 1.36.8.3: missing include 2006/01/25 14:03:00 bm 1.36.8.2: RESYNC: (1.36-1.38); FILE MERGED 2005/11/07 14:12:21 dr 1.36.8.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e966615c65c038f8a2e8ec28905dba6af11687c8]

INTEGRATION: CWS chart2mst3 (1.61.10); FILE MERGED 2007/02/07 15:35:03 iha 1.61.10.5: RESYNC: (1.65-1.66); FILE MERGED 2006/10/13 13:31:38 dr 1.61.10.4: RESYNC: (1.64-1.65); FILE MERGED 2006/07/27 13:37:15 dr 1.61.10.3: RESYNC: (1.62-1.64); FILE MERGED 2006/07/04 12:47:24 dr 1.61.10.2: name conflict: Size() member function vs. class Size parameter type 2006/03/28 15:10:39 dr 1.61.10.1: dumper merged from CWS dr47


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6c59d0aff02b90b7bb15b09877dd54fe3b389066]

INTEGRATION: CWS chart2mst3 (1.19.38); FILE MERGED 2006/01/25 14:02:52 bm 1.19.38.2: RESYNC: (1.19-1.20); FILE MERGED 2005/11/11 15:37:20 dr 1.19.38.1: #i3997# new chart2 API for source ranges, step 1


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9a52fd75aa717107539930ae953b8e4f99646f19]

INTEGRATION: CWS chart2mst3 (1.80.8); FILE MERGED 2007/02/07 15:34:57 iha 1.80.8.6: RESYNC: (1.86-1.87); FILE MERGED 2006/10/13 13:31:18 dr 1.80.8.5: RESYNC: (1.85-1.86); FILE MERGED 2006/05/05 15:10:35 bm 1.80.8.4: RESYNC: (1.82-1.85); FILE MERGED 2006/01/25 14:02:34 bm 1.80.8.3: RESYNC: (1.80-1.82); FILE MERGED 2005/11/10 15:04:53 dr 1.80.8.2: stupid loop 2005/11/07 14:12:20 dr 1.80.8.1: #i3997# preparations for new chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [77eb755aa8fa7e727dea56de0b181cf799f1112f]

INTEGRATION: CWS chart2mst3 (1.4.22); FILE MERGED 2007/04/25 02:46:39 bm 1.4.22.10: RESYNC: (1.8-1.9); FILE MERGED 2006/11/24 18:19:19 bm 1.4.22.9: RESYNC: (1.7-1.8); FILE MERGED 2006/10/18 23:41:01 bm 1.4.22.8: RESYNC: (1.5-1.7); FILE MERGED 2005/10/08 07:41:59 bm 1.4.22.7: RESYNC: (1.4-1.5); FILE MERGED 2005/07/19 12:24:23 sab 1.4.22.6: #i17416#; handle range adresses wich contains the talbe name only once 2005/07/19 11:17:22 sab 1.4.22.5: #i17416#; handle range adresses wich contains the talbe name only once 2005/07/08 09:51:55 bm 1.4.22.4: GetRangeFromString: single addresses must be parsed separately 2005/07/08 09:35:40 bm 1.4.22.3: GetRangeFromString: parse complete range instead of separate addresses 2005/07/07 16:43:56 sab 1.4.22.2: #i17416#; fix parameter order 2005/05/12 19:55:57 sab 1.4.22.1: move range to string and string to range converter methods


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [84dff7c4b3d94aaca49c16b04a3565f16f76d414]

INTEGRATION: CWS chart2mst3 (1.11.36); FILE MERGED 2007/04/25 02:45:33 bm 1.11.36.7: RESYNC: (1.17-1.18); FILE MERGED 2006/10/18 23:39:23 bm 1.11.36.6: RESYNC: (1.15-1.17); FILE MERGED 2005/10/08 07:36:24 bm 1.11.36.5: RESYNC: (1.14-1.15); FILE MERGED 2005/03/17 13:05:30 bm 1.11.36.4: RESYNC: (1.13-1.14); FILE MERGED 2004/08/30 17:44:00 bm 1.11.36.3: RESYNC: (1.12-1.13); FILE MERGED 2004/06/15 18:02:17 bm 1.11.36.2: RESYNC: (1.11-1.12); FILE MERGED 2004/04/29 13:29:08 sab 1.11.36.1: #i17416#; seperate ChartPositionMap and ChartArray


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5ea117a9c3fe90ff447e6f16bce26fe293111275]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/27 11:53:17 bm 1.1.2.7: RESYNC: warnings removed (Windows) 2007/04/25 12:50:15 bm 1.1.2.6: warnings removed 2006/11/20 18:45:18 nn 1.1.2.5: #i71250# removed unused include 2006/03/13 12:13:04 bm 1.1.2.4: some leftover fixes on the server 2005/10/11 09:55:16 bm 1.1.2.3: license header change 2004/06/16 15:10:35 sab 1.1.2.2: #i17416#; merge into m42 2004/04/29 13:25:34 sab 1.1.2.1: #i17416#; seperate ChartPositionMap and ChartArray


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2243fdb6fca6ef327c6f71431f0e8104e044b1e3]

INTEGRATION: CWS chart2mst3 (1.8.84); FILE MERGED 2007/04/25 12:20:12 bm 1.8.84.4: warning removed: unused parameter pWindow in UpdateChart removed 2007/04/25 02:41:54 bm 1.8.84.3: RESYNC: (1.8-1.9); FILE MERGED 2007/03/19 14:52:54 nn 1.8.84.2: #i75258# update charts before renaming, so they can get their live data objects 2006/11/02 10:31:43 nn 1.8.84.1: #i66865# update chart listeners quickly


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4901923324c776c6f7c3f9977ca48f97b1313195]

INTEGRATION: CWS chart2mst3 (1.11.266); FILE MERGED 2007/04/27 09:16:29 bm 1.11.266.14: RESYNC: warning removed 2007/04/25 12:35:07 bm 1.11.266.13: merge problem removed, unused variable removed 2007/04/25 02:41:47 bm 1.11.266.12: RESYNC: (1.20-1.21); FILE MERGED 2006/11/23 17:24:28 nn 1.11.266.11: #i71250# remove use of SchMemChart 2006/10/18 23:35:42 bm 1.11.266.10: RESYNC: (1.19-1.20); FILE MERGED 2006/05/05 15:09:32 bm 1.11.266.9: RESYNC: (1.18-1.19); FILE MERGED 2006/01/25 13:58:12 bm 1.11.266.8: RESYNC: (1.16-1.18); FILE MERGED 2005/10/08 07:29:41 bm 1.11.266.7: RESYNC: (1.15-1.16); FILE MERGED 2005/07/25 18:38:41 bm 1.11.266.6: RESYNC: (1.14-1.15); FILE MERGED 2005/05/17 12:25:46 bm 1.11.266.5: RESYNC: (1.13-1.14); FILE MERGED 2004/08/30 17:43:20 bm 1.11.266.4: RESYNC: (1.12-1.13); FILE MERGED 2004/06/16 15:10:35 sab 1.11.266.3: #i17416#; merge into m42 2004/06/15 17:59:16 bm 1.11.266.2: RESYNC: (1.11-1.12); FILE MERGED 2004/04/29 13:25:48 sab 1.11.266.1: #i17416#; seperate ChartPositionMap and ChartArray


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8991aca58ff6ac68b7c02940fba852f574efc8cd]

INTEGRATION: CWS chart2mst3 (1.45.4); FILE MERGED 2007/05/14 20:15:59 bm 1.45.4.4: RESYNC: (1.47-1.48); FILE MERGED 2007/04/25 02:35:15 bm 1.45.4.3: RESYNC: (1.46-1.47); FILE MERGED 2006/11/24 18:16:35 bm 1.45.4.2: RESYNC: (1.45-1.46); FILE MERGED 2006/11/23 14:06:54 nn 1.45.4.1: #i71250# CopyFromClip: new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6c18b989f45b509fa80ab01e71521e731f468f9b]

INTEGRATION: CWS chart2mst3 (1.74.14); FILE MERGED 2007/05/14 20:15:43 bm 1.74.14.3: RESYNC: (1.75-1.76); FILE MERGED 2007/04/25 02:33:24 bm 1.74.14.2: RESYNC: (1.74-1.75); FILE MERGED 2007/03/19 14:52:37 nn 1.74.14.1: #i75258# update charts before renaming, so they can get their live data objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [57a122abe0833a7367823aaf33d5282a5e4fe742]

INTEGRATION: CWS chart2mst3 (1.34.82); FILE MERGED 2007/05/14 20:15:36 bm 1.34.82.5: RESYNC: (1.37-1.38); FILE MERGED 2007/04/25 02:33:17 bm 1.34.82.4: RESYNC: (1.36-1.37); FILE MERGED 2007/02/07 15:31:17 iha 1.34.82.3: RESYNC: (1.35-1.36); FILE MERGED 2006/11/24 18:16:19 bm 1.34.82.2: RESYNC: (1.34-1.35); FILE MERGED 2006/11/23 13:35:34 nn 1.34.82.1: #i71250# TransferDrawPage: new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [05b6d8b07f681eec18318d06ae2ef4a60373be97]

INTEGRATION: CWS chart2mst3 (1.22.38); FILE MERGED 2007/04/27 09:03:07 bm 1.22.38.17: RESYNC: warning removed 2007/04/25 12:20:11 bm 1.22.38.16: warning removed: unused parameter pWindow in UpdateChart removed 2007/04/25 12:14:55 bm 1.22.38.15: warning removed: UpdateAllCharts: parameter is no longer used -> removed. 2007/04/25 02:32:32 bm 1.22.38.14: RESYNC: (1.25-1.26); FILE MERGED 2007/03/19 14:52:37 nn 1.22.38.13: #i75258# update charts before renaming, so they can get their live data objects 2006/11/20 18:17:23 nn 1.22.38.12: #i71250# UpdateChartArea without Window, remove FindChartData 2006/11/17 14:35:51 nn 1.22.38.11: #i71250# new chart: SetChartRangeList 2006/11/14 15:12:44 nn 1.22.38.10: #i71251# new chart: changing source range with drag&drop 2006/11/07 15:01:49 nn 1.22.38.9: #i71250# UpdateAllCharts for new chart 2006/11/02 18:04:03 nn 1.22.38.8: #i66865# chart listener loads chart, saving chart restores chart listener 2006/10/20 11:20:10 bm 1.22.38.7: error on merge conflict resolution fixed 2006/10/18 23:25:32 bm 1.22.38.6: RESYNC: (1.24-1.25); FILE MERGED 2006/08/10 12:30:27 bm 1.22.38.5: adding FindChartData again trying to avoid a very strange bug on Windows 2006/08/09 14:19:22 bm 1.22.38.4: #i68229# changed FindChartData to FindOleObjectByName, changed some BOOLs to bool 2006/06/16 13:25:15 bm 1.22.38.3: RESYNC: (1.23-1.24); FILE MERGED 2005/10/08 07:08:09 bm 1.22.38.2: RESYNC: (1.22-1.23); FILE MERGED 2005/09/08 17:21:00 iha 1.22.38.1: change method UpdateChart to work with new chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [97626efd8535a8814b9d7a00eeb274291950e965]

INTEGRATION: CWS chart2mst3 (1.32.46); FILE MERGED 2007/04/25 02:32:16 bm 1.32.46.3: RESYNC: (1.33-1.34); FILE MERGED 2007/02/07 15:30:58 iha 1.32.46.2: RESYNC: (1.32-1.33); FILE MERGED 2006/12/04 18:35:32 nn 1.32.46.1: #i65379# undo for reference update of UNO objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6b6014bfcb53697a79eb383b8a10fd0bb692b6b8]

INTEGRATION: CWS chart2mst3 (1.60.10); FILE MERGED 2007/05/14 20:15:20 bm 1.60.10.4: RESYNC: (1.62-1.63); FILE MERGED 2007/04/25 02:32:09 bm 1.60.10.3: RESYNC: (1.61-1.62); FILE MERGED 2007/02/07 15:30:50 iha 1.60.10.2: RESYNC: (1.60-1.61); FILE MERGED 2006/12/04 18:35:32 nn 1.60.10.1: #i65379# undo for reference update of UNO objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b0249c1695dc42f7f2fac2929229ab6c98a13801]

INTEGRATION: CWS chart2mst3 (1.19.4); FILE MERGED 2006/11/20 13:39:19 nn 1.19.4.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [287e90cd65e450a10bcf03c334df6747b950d37b]

INTEGRATION: CWS chart2mst3 (1.31.26); FILE MERGED 2007/02/07 15:30:20 iha 1.31.26.3: RESYNC: (1.32-1.33); FILE MERGED 2006/11/24 18:14:39 bm 1.31.26.2: RESYNC: (1.31-1.32); FILE MERGED 2006/11/20 13:39:19 nn 1.31.26.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [241c3cf85eeae0fbb08c957ffb7b5c537f57a11d]

INTEGRATION: CWS chart2mst3 (1.14.4); FILE MERGED 2006/11/20 13:39:19 nn 1.14.4.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ca96d98365c7cb6e9b2e809125b9d2e1ebed7440]

INTEGRATION: CWS chart2mst3 (1.16.4); FILE MERGED 2007/02/07 15:30:11 iha 1.16.4.2: RESYNC: (1.16-1.17); FILE MERGED 2006/11/20 13:39:18 nn 1.16.4.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [93b8e347e9501e7e77371ca55f4f6baeb3920eed]

INTEGRATION: CWS chart2mst3 (1.19.4); FILE MERGED 2006/11/24 18:14:32 bm 1.19.4.2: RESYNC: (1.19-1.20); FILE MERGED 2006/11/20 13:39:18 nn 1.19.4.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f5a087152385cafa9cd07a742e78a28f4d629b67]

INTEGRATION: CWS chart2mst3 (1.13.28); FILE MERGED 2007/05/14 20:14:37 bm 1.13.28.3: RESYNC: (1.14-1.15); FILE MERGED 2007/04/25 02:30:04 bm 1.13.28.2: RESYNC: (1.13-1.14); FILE MERGED 2006/12/05 16:49:09 iha 1.13.28.1: remove old chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a9b3c86be566741907f8ad6d75c3a3b573175045]

INTEGRATION: CWS chart2mst3 (1.6.10); FILE MERGED 2005/10/08 06:50:28 bm 1.6.10.2: RESYNC: (1.6-1.7); FILE MERGED 2004/05/05 14:47:36 sab 1.6.10.1: #i10734#; have access to the absolut name of every cellrange


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c20e65459679ec412d3eb539b7cb509edabf7014]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/04 18:34:56 nn 1.1.2.1: #i65379# undo for reference update of UNO objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a3bd4ac524059c13bd36baba63926888be9aaa7e]

INTEGRATION: CWS chart2mst3 (1.58.6); FILE MERGED 2007/04/25 02:29:11 bm 1.58.6.16: RESYNC: (1.71-1.72); FILE MERGED 2006/10/26 12:40:37 nn 1.58.6.15: allow multiple selection in range selection API 2006/06/16 13:23:51 bm 1.58.6.14: RESYNC: (1.70-1.71); FILE MERGED 2006/05/05 14:59:58 bm 1.58.6.13: RESYNC: (1.69-1.70); FILE MERGED 2005/12/02 13:28:51 bm 1.58.6.12: #i58786# +SC_SERVICENAME_CHRANGEHILIGHT 2005/10/08 06:50:19 bm 1.58.6.11: RESYNC: (1.68-1.69); FILE MERGED 2005/05/17 12:20:11 bm 1.58.6.10: RESYNC: (1.67-1.68); FILE MERGED 2005/05/09 09:53:48 bm 1.58.6.9: moved chart2 API to data namespace 2005/03/17 11:57:29 bm 1.58.6.8: RESYNC: (1.66-1.67); FILE MERGED 2004/11/02 16:05:00 bm 1.58.6.7: RESYNC: (1.65-1.66); FILE MERGED 2004/08/30 17:32:59 bm 1.58.6.6: RESYNC: (1.63-1.65); FILE MERGED 2004/08/04 22:55:54 bm 1.58.6.5: RESYNC: (1.62-1.63); FILE MERGED 2004/06/15 17:46:39 bm 1.58.6.4: RESYNC: (1.61-1.62); FILE MERGED 2004/06/03 03:49:26 iha 1.58.6.3: RESYNC: (1.58-1.61); FILE MERGED 2004/05/05 14:47:36 sab 1.58.6.2: #i10734#; have access to the absolut name of every cellrange 2004/04/29 13:28:29 sab 1.58.6.1: #i17416#; implement Chart2 API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3ef18787574060933611f9f8d0c7bbbc280e1fc7]

INTEGRATION: CWS chart2mst3 (1.6.26); FILE MERGED 2007/02/07 15:28:10 iha 1.6.26.2: RESYNC: (1.6-1.7); FILE MERGED 2005/11/09 16:56:27 dr 1.6.26.1: #i3997# unused function


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [deba58aa48587c3066fa7fd49461b84bd882a8fb]

INTEGRATION: CWS chart2mst3 (1.50.4); FILE MERGED 2007/02/07 15:27:39 iha 1.50.4.3: RESYNC: (1.51-1.52); FILE MERGED 2006/11/24 18:13:58 bm 1.50.4.2: RESYNC: (1.50-1.51); FILE MERGED 2006/11/20 13:39:18 nn 1.50.4.1: #i71560# remove old chart dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c9e2bfe30a25007e78162256d93951f56387a82f]

INTEGRATION: CWS chart2mst3 (1.5.8); FILE MERGED 2007/04/25 02:28:31 bm 1.5.8.4: RESYNC: (1.7-1.8); FILE MERGED 2006/11/24 18:13:43 bm 1.5.8.3: RESYNC: (1.6-1.7); FILE MERGED 2005/10/08 06:39:23 bm 1.5.8.2: RESYNC: (1.5-1.6); FILE MERGED 2005/05/12 19:55:35 sab 1.5.8.1: move range to string and string to range converter methods


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3b8bbc8cf5d13d5f3cd1dda5fe2e4fd57b7d2077]

INTEGRATION: CWS chart2mst3 (1.16.10); FILE MERGED 2007/05/14 20:13:07 bm 1.16.10.8: RESYNC: (1.22-1.23); FILE MERGED 2006/01/25 13:36:45 bm 1.16.10.7: RESYNC: (1.21-1.22); FILE MERGED 2005/10/08 06:20:27 bm 1.16.10.6: RESYNC: (1.20-1.21); FILE MERGED 2005/05/17 12:19:14 bm 1.16.10.5: RESYNC: (1.19-1.20); FILE MERGED 2005/05/12 19:54:43 sab 1.16.10.4: get access to ranges 2004/11/02 16:02:28 bm 1.16.10.3: RESYNC: (1.17-1.19); FILE MERGED 2004/06/15 17:38:37 bm 1.16.10.2: RESYNC: (1.16-1.17); FILE MERGED 2004/05/05 14:47:14 sab 1.16.10.1: #i10733#; have access to cellranges in all sheets


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e62d33d44be303e2eeab0e762516955b70f3a9f4]

INTEGRATION: CWS chart2mst3 (1.92.50); FILE MERGED 2007/05/14 20:13:01 bm 1.92.50.14: RESYNC: (1.98-1.99); FILE MERGED 2007/04/25 12:20:11 bm 1.92.50.13: warning removed: unused parameter pWindow in UpdateChart removed 2007/04/25 12:14:40 bm 1.92.50.12: warning removed: UpdateAllCharts: parameter is no longer used -> removed. 2007/04/25 02:26:30 bm 1.92.50.11: RESYNC: (1.97-1.98); FILE MERGED 2007/02/07 15:26:41 iha 1.92.50.10: RESYNC: (1.95-1.97); FILE MERGED 2006/12/04 18:34:55 nn 1.92.50.9: #i65379# undo for reference update of UNO objects 2006/11/24 18:12:51 bm 1.92.50.8: RESYNC: (1.93-1.95); FILE MERGED 2006/11/23 17:24:12 nn 1.92.50.7: #i71250# remove use of SchMemChart 2006/11/20 18:16:58 nn 1.92.50.6: #i71250# UpdateChartArea without Window, remove FindChartData 2006/11/14 15:12:22 nn 1.92.50.5: #i71251# new chart: changing source range with drag&drop 2006/11/02 18:04:28 nn 1.92.50.4: #i66865# chart listener loads chart, saving chart restores chart listener 2006/10/18 23:19:38 bm 1.92.50.3: RESYNC: (1.92-1.93); FILE MERGED 2006/08/10 12:29:16 bm 1.92.50.2: adding FindChartData agin trying to avoid a very strange bug on Windows 2006/08/09 14:04:48 bm 1.92.50.1: #i68229# replaced FindChartData() method with FindOleObjectByName (no SchMemChart any more)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2e876a9cf56616c564b872f6ebe56d2e0fff896d]

INTEGRATION: CWS chart2mst3 (1.4.26); FILE MERGED 2006/08/09 14:19:22 bm 1.4.26.1: #i68229# changed FindChartData to FindOleObjectByName, changed some BOOLs to bool


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b9693936891d8bc141dd885c9b2d81d12cf1a96d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/25 12:50:15 bm 1.1.2.5: warnings removed 2006/11/23 17:24:12 nn 1.1.2.4: #i71250# remove use of SchMemChart 2005/10/11 09:54:16 bm 1.1.2.3: license header change 2004/06/16 15:10:20 sab 1.1.2.2: #i17416#; merge into m42 2004/04/29 13:23:57 sab 1.1.2.1: #i17416#; seperate ChartPositionMap and ChartArray


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [997b1ea9bdc892974d5b997c41a46c29577b6b0f]

INTEGRATION: CWS chart2mst3 (1.5.26); FILE MERGED 2007/04/25 02:24:20 bm 1.5.26.2: RESYNC: (1.5-1.6); FILE MERGED 2007/03/19 14:52:01 nn 1.5.26.1: #i75258# update charts before renaming, so they can get their live data objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1e8f7cbfeabaae671de2b432c9362f29eb5070ae]

INTEGRATION: CWS chart2mst3 (1.3.396); FILE MERGED 2007/04/25 21:01:35 bm 1.3.396.6: RESYNC: warnings removed (warnings are now errors) on Solaris 2007/04/25 12:50:15 bm 1.3.396.5: warnings removed 2006/11/23 17:24:12 nn 1.3.396.4: #i71250# remove use of SchMemChart 2005/10/08 06:13:38 bm 1.3.396.3: RESYNC: (1.4-1.5); FILE MERGED 2004/06/15 17:35:16 bm 1.3.396.2: RESYNC: (1.3-1.4); FILE MERGED 2004/04/29 13:24:38 sab 1.3.396.1: #i17416#; seperate ChartPositionMap and ChartArray


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ba6dbd93269c3f1adb79bc0f53677b7760b69a9f]

INTEGRATION: CWS chart2mst3 (1.2.10); FILE MERGED 2006/12/04 18:34:55 nn 1.2.10.23: #i65379# undo for reference update of UNO objects 2006/08/09 14:03:13 bm 1.2.10.22: #i68229# added a static detectArguments() method that is used by chartuno.cxx (and the interface method as well) 2006/08/04 14:34:01 bm 1.2.10.21: pass the document to the chart2 uno services instead of the docshell, as the shell itself is not really needed, and limits the creation of such objects unnecessarily to the ui 2006/04/12 16:28:57 nn 1.2.10.20: #i63944# chart data change notification 2006/04/04 13:00:21 bm 1.2.10.19: #i63944# XModifyBroadcaster for LabeledDataSequence 2005/10/08 06:13:07 bm 1.2.10.18: RESYNC: (1.2-1.3); FILE MERGED 2005/09/08 12:53:21 sab 1.2.10.17: #i17416#; add generateLabel 2005/09/07 17:13:56 iha 1.2.10.16: remove wrong fix for 'generated categories' (1.2.10.13 + numerical data) 2005/09/02 15:23:28 sab 1.2.10.15: #i17416#; add XNumericalData 2005/09/02 12:20:07 sab 1.2.10.14: #i17416#; make generated categories and labels work 2005/08/05 14:02:42 bm 1.2.10.13: -XDataSequence::generateLabel 2005/07/21 14:39:49 bm 1.2.10.12: support number formats 2005/07/07 16:42:47 sab 1.2.10.11: #i17416#; add XRangeXMLConversion 2005/05/12 13:56:51 bm 1.2.10.10: API change XDataProvider 2005/05/09 09:52:10 bm 1.2.10.9: moved chart2 API to data namespace 2005/05/03 16:09:24 bm 1.2.10.8: removed identifiers from XSequences. XSequences are no longer stored in the XDataProvider 2004/06/29 11:06:52 bm 1.2.10.7: XDataProvider:  getRangeRepresentationByRangeIdentifiers -> mergeRangeRepresentations 2004/06/03 09:33:51 iha 1.2.10.6: added missing interface method 'generateLabel' 2004/05/05 10:19:01 sab 1.2.10.5: #i26493#; add XTextualSequence 2004/04/29 13:28:28 sab 1.2.10.4: #i17416#; implement Chart2 API 2004/04/14 12:32:34 bm 1.2.10.3: XDataProvider API: getRangeSelection 2004/04/07 10:23:35 sab 1.2.10.2: #i17416#; compileable first step API implementation 2004/03/22 13:33:18 bm 1.2.10.1: chart2 API changed (XDataSource contains XLabeledDataSequences)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [04755ad7270b5a9036591c7897901216d46af293]

INTEGRATION: CWS chart2mst3 (1.23.10); FILE MERGED 2007/05/14 20:12:34 bm 1.23.10.8: RESYNC: (1.27-1.28); FILE MERGED 2007/04/25 02:24:13 bm 1.23.10.7: RESYNC: (1.26-1.27); FILE MERGED 2006/12/04 18:34:55 nn 1.23.10.6: #i65379# undo for reference update of UNO objects 2006/11/24 18:12:16 bm 1.23.10.5: RESYNC: (1.25-1.26); FILE MERGED 2006/11/23 17:24:12 nn 1.23.10.4: #i71250# remove use of SchMemChart 2006/06/16 13:22:56 bm 1.23.10.3: RESYNC: (1.24-1.25); FILE MERGED 2006/05/05 14:57:43 bm 1.23.10.2: RESYNC: (1.23-1.24); FILE MERGED 2006/04/12 16:28:57 nn 1.23.10.1: #i63944# chart data change notification


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5b8eb98f89c6b1d8bb9a9bde063948193dd36adf]

INTEGRATION: CWS chart2mst3 (1.4.12); FILE MERGED 2006/03/10 10:55:49 iha 1.4.12.1: don't use leading underscore


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2856331d4d922c8b014a490f0b162a40fab6de18]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2004/03/03 11:06:27 bm 1.1.4.3: order of volume series changed 2004/03/01 10:15:57 bm 1.1.4.2: spaces in categories removed (caused problems on parse) 2004/02/13 16:52:05 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2b29aa68698ff0484de1b10c6373d878649a89a1]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2004/03/08 13:25:10 bm 1.1.2.1: data for a simple pie


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0cbd2874d72f7e3e5dfd3224a31d29ce47d82b15]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2004/02/13 16:52:04 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [dc0e42e488b419f7011d024c3f700cf746d8b729]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 01:39:04 iha 1.1.2.1: old AddIn example


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [343df6d199d4d61c92bdc2e94ea887cb1b9de038]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 01:38:44 iha 1.1.2.1: old AddIn example


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0fbec8277a7761920d35e7110af8ecc445b77ce3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 01:38:18 iha 1.1.2.1: old AddIn example


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [dd66d63b29c44eecfc9ee8d02f7ed7e6d1261297]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 01:37:57 iha 1.1.2.1: old AddIn example


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2338b911b4d7d278f1353dc2b59c8d4fc3d3fe4b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 01:37:38 iha 1.1.2.1: old AddIn example


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c3b391615963f8e1afd60116a339a89ffe10abae]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/10/18 17:25:24 bm 1.1.1.1.4.4: RESYNC: (1.3-1.4); FILE MERGED 2006/05/05 14:04:53 bm 1.1.1.1.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/10/07 12:28:11 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/02/17 19:15:45 iha 1.1.1.1.4.1: use charttools and chartview lib as shared libs - not static


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [681795ffabfb075d8a82e50f7751273d694b6981]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/02/07 13:08:20 iha 1.1.1.1.4.5: RESYNC: (1.4-1.5); FILE MERGED 2006/10/18 17:25:17 bm 1.1.1.1.4.4: RESYNC: (1.3-1.4); FILE MERGED 2006/01/25 10:01:14 bm 1.1.1.1.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/10/07 12:28:01 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/05/09 09:51:39 bm 1.1.1.1.4.1: moved parts of API to data namespace


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f389e9752b50a551051650ae4dd5b6f43d366a20]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/10/16 13:43:53 bm 1.1.2.4: #i70287# adapt toolbar to latest changes in the spec 2006/10/11 09:20:21 bm 1.1.2.3: #i20287# remove some toolbar icons 2006/03/23 12:41:09 bm 1.1.2.2: wizard removed 2005/04/04 11:18:46 bm 1.1.2.1: same toolbars as in old chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4e524f110a08ea5122c541c195bbf35cbb9a1a57]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/10/16 15:39:39 bm 1.1.2.2: #i70287# disable EditDoc per default, remove SendFax 2005/04/04 11:18:32 bm 1.1.2.1: same toolbars as in old chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2750ff5c6e217186ccef7286c86177e7a9697931]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/23 14:49:36 bm 1.1.2.2: #i68861# some unused entries removed 2005/04/04 11:17:49 bm 1.1.2.1: note: statusbar not working yet with non-sfx based apps


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9d4ff8f3d5a23eb26fbe6836286d42c88410c119]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/01/02 17:15:53 iha 1.1.2.12: changed help menu according to chart menu spec 2006/01/06 15:11:21 iha 1.1.2.11: Changes according to menu spec 2005/12/09 11:12:32 iha 1.1.2.10: Menu changes according to Chart Menu Spec 2005/11/30 17:51:32 iha 1.1.2.9: menu changes 2005/11/28 14:19:10 iha 1.1.2.8: menu changes 2005/06/03 08:20:49 bm 1.1.2.7: use predefined toolbar popup 2005/04/04 11:22:01 bm 1.1.2.6: new slot DataRanges (note: help id is not yet correct) 2004/06/11 15:57:24 iha 1.1.2.5: change entry order; remove arrangement 2004/06/01 19:17:49 iha 1.1.2.4: new 3D view/effects dialog 2004/04/08 16:36:18 iha 1.1.2.3: changed position for SelectSourceRanges 2004/04/08 15:19:46 iha 1.1.2.2: added entry SelectSourceRanges 2004/03/05 14:53:42 iha 1.1.2.1: new due to menu framework changes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a4fcb36905178f2dd8b94122a2f9a112ce87edc6]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/23 17:42:10 bm 1.1.2.4: keyboard accessibility: execute TransformDialog command on F4 2005/04/04 11:59:41 bm 1.1.2.3: order 2005/04/04 11:56:28 bm 1.1.2.2: redo with ctrl-y 2005/04/04 11:17:11 bm 1.1.2.1: same accelerators as in old chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [59df9c70ed5e1441d26bde371d204c834f2ff14e]

INTEGRATION: CWS chart2mst3 (1.7.4); FILE MERGED 2006/11/23 18:36:06 iha 1.7.4.11: replace DoubleRectangle with B2DRectangle and DoublePoint with B2DTuple 2006/03/29 22:24:50 iha 1.7.4.10: restructure legend entry creation + legend entries in data labels 2006/03/23 15:33:00 iha 1.7.4.9: cleanup category handling 2006/03/23 09:23:45 iha 1.7.4.8: categories for data labels 2006/02/20 14:35:46 iha 1.7.4.7: move SchItemPool from controller to view lib -> ChartItemPool 2005/12/21 21:29:45 iha 1.7.4.6: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/07 12:27:51 bm 1.7.4.5: RESYNC: (1.7-1.8); FILE MERGED 2005/05/31 19:14:19 iha 1.7.4.4: create view without controller 2004/05/08 17:52:14 iha 1.7.4.3: added VPolarTransformation 2004/04/28 20:16:54 iha 1.7.4.2: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/02/13 16:52:03 bm 1.7.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fa6ec8901b6c046d423534f0facf310b87a11244]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/02/08 21:25:49 iha 1.1.4.6: resync m195 -> m202 2006/03/29 22:24:50 iha 1.1.4.5: restructure legend entry creation + legend entries in data labels 2005/10/11 09:21:05 bm 1.1.4.4: license header change 2005/07/08 12:53:06 iha 1.1.4.3: provide and keep view as service only 2005/05/31 19:12:07 iha 1.1.4.2: create view without controller 2004/02/13 16:52:02 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b0bd59e1eabad754d9c4aa50cc75c1e085526c92]

INTEGRATION: CWS chart2mst3 (1.7.12); FILE MERGED 2005/12/21 21:29:45 iha 1.7.12.2: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/01 16:42:01 iha 1.7.12.1: #124571# load & save position of rotated titles correctly


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b31b283e162df1c76d3cd2991266f16b8bc4df18]

INTEGRATION: CWS chart2mst3 (1.9.8); FILE MERGED 2007/02/23 20:20:28 iha 1.9.8.11: #i74658# corrected character size for stacked titles 2006/12/07 12:02:11 iha 1.9.8.10: don't loose text when titles are formatted partly different 2006/11/22 17:27:20 iha 1.9.8.9: RESYNC: (1.11-1.12); FILE MERGED 2006/10/18 17:25:09 bm 1.9.8.8: RESYNC: (1.10-1.11); FILE MERGED 2006/08/29 12:26:23 iha 1.9.8.7: correct overlap detection for rotated axis labels 2006/01/20 16:51:24 bm 1.9.8.6: moved ReferencePageSize from XFormattedString to XTitle 2006/01/12 18:00:45 iha 1.9.8.5: cleanup property mappings 2005/12/21 21:29:44 iha 1.9.8.4: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/01 16:42:24 iha 1.9.8.3: #124571# load & save position of rotated titles correctly 2005/10/07 12:27:28 bm 1.9.8.2: RESYNC: (1.9-1.10); FILE MERGED 2004/04/27 13:32:48 iha 1.9.8.1: warnings removed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1db92fd4fc1ff8fff6760919281c56437e1f57f7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:49 iha 1.1.2.5: resync m195 -> m202 2006/11/28 18:38:18 iha 1.1.2.4: use ::basegfx::B3DPoint instead of B3DVector to get correct translation 2006/11/22 17:31:20 iha 1.1.2.3: resync 2005/10/11 09:21:05 bm 1.1.2.2: license header change 2004/05/08 17:51:32 iha 1.1.2.1: polartransformation fixes and pie offset implementation


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [363cbe61eb34e535168ec9758cc7b8cdc91846cf]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/10/18 17:25:01 bm 1.1.4.6: RESYNC: (1.2-1.3); FILE MERGED 2006/04/10 12:25:20 iha 1.1.4.5: api restructure axis, grids, scales and increments 2006/01/16 15:04:28 iha 1.1.4.4: don't create invisible gridlines 2006/01/16 14:45:32 iha 1.1.4.3: don't create invisible gridlines 2005/10/07 12:27:12 bm 1.1.4.2: RESYNC: (1.1-1.2); FILE MERGED 2005/07/12 12:57:16 bm 1.1.4.1: use named properties for gradients etc. in chart model


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5958a83bbc8ab602bf31d0d71c7b76a8f46c80d5]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/10/23 19:12:29 iha 1.5.4.6: #i65580# Legend shows no symbols for series with automatic symbols 2006/10/18 17:24:46 bm 1.5.4.5: RESYNC: (1.6-1.7); FILE MERGED 2006/04/11 20:00:32 iha 1.5.4.4: automatic symbols are missing 2006/04/03 12:28:37 iha 1.5.4.3: correct selection handles for data point labels and legend entries 2006/03/29 22:22:42 iha 1.5.4.2: restructure legend entry creation + legend entries in data labels 2004/02/13 16:52:02 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5c0a5ca71b8f6a5eebd2e0942eadcf6696d6d7d4]

INTEGRATION: CWS chart2mst3 (1.13.4); FILE MERGED 2006/03/29 22:24:49 iha 1.13.4.5: restructure legend entry creation + legend entries in data labels 2005/10/07 12:27:02 bm 1.13.4.4: RESYNC: (1.13-1.14); FILE MERGED 2005/05/09 09:51:39 bm 1.13.4.3: moved parts of API to data namespace 2004/09/15 09:57:16 iha 1.13.4.2: implement api redesign 2004/02/13 16:52:01 bm 1.13.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bb79a7e3f61e566d4a955d770ae98da6a63027d6]

INTEGRATION: CWS chart2mst3 (1.34.4); FILE MERGED 2007/04/19 09:37:43 bm 1.34.4.26: #i66009# shift legend from right or bottom edge inside if it laps out 2006/10/18 17:24:38 bm 1.34.4.25: RESYNC: (1.35-1.36); FILE MERGED 2006/07/19 09:47:27 bm 1.34.4.24: work-around for #i67540# (empty text in a text shape results always in size 100x955) 2006/03/29 22:24:49 iha 1.34.4.23: restructure legend entry creation + legend entries in data labels 2006/01/20 16:50:38 bm 1.34.4.22: determine Legend text font size correctly (ReferencePageSize is not necessary) 2006/01/15 17:22:59 iha 1.34.4.21: correct automatic top position ot legend while having titles 2006/01/15 16:42:32 iha 1.34.4.20: correct distance between diagram and legend 2006/01/15 16:41:58 iha 1.34.4.19: correct distance between diagram and legend 2006/01/12 18:00:30 iha 1.34.4.18: cleanup property mappings 2005/12/21 21:29:44 iha 1.34.4.17: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/13 17:39:15 iha 1.34.4.16: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:26:51 bm 1.34.4.15: RESYNC: (1.34-1.35); FILE MERGED 2005/09/08 15:39:27 bm 1.34.4.14: #124570# division by zero ( (int)(0.0/0.0) is 2 billion on Solaris, was used for the size of a vector ...) 2005/07/28 09:34:57 bm 1.34.4.13: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/22 12:18:49 bm 1.34.4.12: enable reverse order for legend entries if expansion is wide and stackmodde is true 2005/07/20 09:01:06 bm 1.34.4.11: legend padding relative to font height 2005/07/20 08:38:51 bm 1.34.4.10: change padding and distances for legend to fit old behaviour better. Todo: make padding relative to font-size 2004/09/17 17:25:47 iha 1.34.4.9: LayoutHelper -> RelativePositionHelper 2004/09/15 09:57:16 iha 1.34.4.8: implement api redesign 2004/09/07 10:09:04 bm 1.34.4.7: changed calculation of position to new model of chart2::RelativePosition objects 2004/08/25 16:39:35 iha 1.34.4.6: View independent loading - relative position with dynamic anchor point ... still todo 2004/03/19 14:33:06 bm 1.34.4.5: XDataSource now contains XLabeledDataSources 2004/03/02 13:13:59 bm 1.34.4.4: show series entries first 2004/03/02 12:58:08 bm 1.34.4.3: use getPropertyNameMapForFillAndLineProperties 2004/02/17 14:40:08 bm 1.34.4.2: assume that symbols contain a CID without parent id, and add the parent id 2004/02/13 16:52:00 bm 1.34.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2fefce5cfb20ac42b5e6f7c1964c3d2dc95cff77]

INTEGRATION: CWS chart2mst3 (1.21.4); FILE MERGED 2007/04/20 08:12:35 iha 1.21.4.37: #i75393# Connect Bars per diagram not per series 2007/04/19 16:12:40 iha 1.21.4.36: #i76130# write attribute sort-by-x-values per plot-area not per series 2007/02/14 21:05:52 iha 1.21.4.35: #i72534# Area in combination chart looks wrong 2006/11/19 21:40:02 iha 1.21.4.34: better performance for line charts without symbols 2006/10/23 19:13:26 iha 1.21.4.33: #i65580# Legend shows no symbols for series with automatic symbols 2006/10/18 17:24:30 bm 1.21.4.32: RESYNC: (1.22-1.23); FILE MERGED 2006/10/12 10:53:26 iha 1.21.4.31: wrong selection of series - due to weakreferences of draw shapes dying to early -> switch back to normal references 2006/10/09 15:34:21 dr 1.21.4.30: #i70133# handling of missing data points 2006/10/06 18:59:36 iha 1.21.4.29: hold shapes only per weak reference thus they can be removed for special pie resize 2006/09/01 16:35:51 iha 1.21.4.28: enable selection of invisible points in point charts 2006/08/21 17:04:32 iha 1.21.4.27: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/08/01 09:48:32 bm 1.21.4.26: #i29600# resize the label sizes of data series with the diagram size if a reference size is set 2006/04/23 08:58:24 iha 1.21.4.25: correct wrong caching of datapoint properties -> correct data labels with correct text properties 2006/04/03 12:34:14 iha 1.21.4.24: only create legend symbols for data point labels if anything else is shown 2006/03/29 22:24:49 iha 1.21.4.23: restructure legend entry creation + legend entries in data labels 2006/03/23 09:27:09 iha 1.21.4.22: categories for data labels 2006/02/23 13:28:44 iha 1.21.4.21: enable gaps for NAN values in line charts 2005/12/21 21:29:43 iha 1.21.4.20: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/21 14:10:58 dr 1.21.4.19: border color for symbols 2005/12/20 14:14:17 dr 1.21.4.18: API struct member names without prefixes 2005/12/05 18:06:21 iha 1.21.4.17: Connection Lines for Stacked Bar Charts 2005/12/03 18:59:12 iha 1.21.4.16: method createClassifiedIdentifier changed for enable pie segment dragging 2005/10/29 18:49:44 iha 1.21.4.15: make more failsave 2005/10/24 11:07:16 iha 1.21.4.14: coordinate system restructure 2005/10/07 12:26:40 bm 1.21.4.13: RESYNC: (1.21-1.22); FILE MERGED 2005/08/03 16:36:30 bm 1.21.4.12: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/21 14:47:16 bm 1.21.4.11: support for number formats from data provider 2005/05/11 11:40:27 dr 1.21.4.10: typo 2005/05/09 09:51:38 bm 1.21.4.9: moved parts of API to data namespace 2004/09/15 09:57:16 iha 1.21.4.8: implement api redesign 2004/06/29 19:41:00 iha 1.21.4.7: added method hasPointOwnColor (for PieColorPerPoint) 2004/05/17 17:29:02 iha 1.21.4.6: added parameter bAverageLine to method createDataCurveCID 2004/04/14 09:47:29 iha 1.21.4.5: fixed scatter chart: domain-x -> values-x 2004/03/19 14:33:05 bm 1.21.4.4: XDataSource now contains XLabeledDataSources 2004/02/28 08:57:21 iha 1.21.4.3: integrate access to additional values for candle stick chart 2004/02/23 19:06:20 iha 1.21.4.2: do not convert something wrong to number 2004/02/13 16:52:00 bm 1.21.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [13ba2375c6c044ea129e89f361f401b16a7188ce]

INTEGRATION: CWS chart2mst3 (1.2.10); FILE MERGED 2006/11/22 17:27:00 iha 1.2.10.3: RESYNC: (1.3-1.4); FILE MERGED 2006/10/18 17:24:22 bm 1.2.10.2: RESYNC: (1.2-1.3); FILE MERGED 2006/09/23 07:47:19 iha 1.2.10.1: apply texture correctly to floor, bottom and 3D lines


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7822d3ee0a7f59e5eb6c54cbfc28cfed297e805e]

INTEGRATION: CWS chart2mst3 (1.18.4); FILE MERGED 2007/03/02 14:35:57 iha 1.18.4.43: stacked titls have one line too much 2006/12/15 09:48:09 iha 1.18.4.42: #i72541# 3D deep area charts are broken 2006/12/01 13:47:02 iha 1.18.4.41: ensure correct state of closed flag in Polygon (error did break selecting of pie segments in chart2 ) 2006/11/28 18:37:54 iha 1.18.4.40: use ::basegfx::B2DPoint instead of B2DVector to get correct translation 2006/11/25 14:41:42 iha 1.18.4.39: neutral matrix scale with 1 not zero 2006/11/22 17:26:52 iha 1.18.4.38: RESYNC: (1.20-1.21); FILE MERGED 2006/11/13 16:05:56 dr 1.18.4.37: #i63212# use absolute height to calculate negative cone segment size 2006/11/13 14:17:46 dr 1.18.4.36: #i63212# use absolute height to calculate negative cone segment size 2006/10/18 17:24:15 bm 1.18.4.35: RESYNC: (1.19-1.20); FILE MERGED 2006/10/11 11:49:24 dr 1.18.4.34: #i67757# connect first/last point in radarcharts correctly 2006/10/11 09:42:59 dr 1.18.4.33: #i67757# correctly draw polypolygons with leading single point 2006/10/06 19:02:58 iha 1.18.4.32: added helping method to remove all sub shapes in a group shape 2006/09/29 14:57:11 iha 1.18.4.31: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/09/23 07:48:27 iha 1.18.4.30: apply texture correctly to diagram walls 2006/08/29 12:26:23 iha 1.18.4.29: correct overlap detection for rotated axis labels 2006/08/10 16:00:11 iha 1.18.4.28: Axis Label Layout - Font&Diagram Size 2006/06/30 23:32:37 iha 1.18.4.27: helping method to respect aspect ratio 2006/06/30 23:18:30 iha 1.18.4.26: correct scene dimensions also for pies with dummy objects 2006/06/18 19:44:48 iha 1.18.4.25: correct polygon orientation for illumination of 3D bars and columns 2006/04/03 12:15:30 iha 1.18.4.24: correct selection handles for data point labels and legend entries 2006/03/12 00:25:37 iha 1.18.4.23: added methods getOrCreateChartRootShape & getShapeName 2006/01/27 09:51:25 bm 1.18.4.22: InlineContainer.hxx moved to comphelper 2006/01/14 13:57:20 iha 1.18.4.21: respect PercentDiagonal Property as boolean for bars - no rounded edges if lines are visible 2005/12/21 14:10:58 dr 1.18.4.20: border color for symbols 2005/12/05 18:04:44 iha 1.18.4.19: methods moved from AreaChart to here 2005/11/24 15:08:30 bm 1.18.4.18: symbol graphics support 2005/10/07 12:26:28 bm 1.18.4.17: RESYNC: (1.18-1.19); FILE MERGED 2005/09/14 14:36:25 iha 1.18.4.16: try code for enhanced pie segment selection 2005/07/12 12:57:16 bm 1.18.4.15: use named properties for gradients etc. in chart model 2005/07/04 17:13:12 iha 1.18.4.14: added method createMarkHandlesRectangle 2004/09/03 08:47:18 iha 1.18.4.13: avoid extra lines for 3D objects 2004/06/30 14:50:06 iha 1.18.4.12: sometimes wrong pie segments 2004/05/08 18:41:17 iha 1.18.4.11: fixed problems with 3D bar shapes 2004/05/08 17:54:58 iha 1.18.4.10: polartransformation fixes and pie offset implementation 2004/04/29 09:28:06 iha 1.18.4.9: correct 3d bar object position and size 2004/04/28 20:16:53 iha 1.18.4.8: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/04/14 13:59:07 iha 1.18.4.7: do not rotate 3D column shapes 2004/04/01 12:10:51 iha 1.18.4.6: make shape creation more fail save 2004/03/24 10:39:16 iha 1.18.4.5: change signature of ShapeFactory::createLine2D 2004/03/23 20:22:48 iha 1.18.4.4: removed now superfluous method createErrorBar2D 2004/03/10 10:01:45 iha 1.18.4.3: stretch 3D bar shapes to given depth 2004/03/09 08:58:09 iha 1.18.4.2: add vert segments for pyramids and cones as workaround 2004/03/08 16:44:29 iha 1.18.4.1: don't create empty text shapes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e00095e490d3bada39c7a99be3db9fc24f2689a4]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2006/10/20 20:34:34 iha 1.4.4.17: implement gradient step count 2006/10/18 17:24:07 bm 1.4.4.16: RESYNC: (1.5-1.6); FILE MERGED 2006/10/13 08:22:58 iha 1.4.4.15: implement automatic break feature for horizontal text axes 2006/05/17 14:18:41 bm 1.4.4.14: support bitmap properties like tile, stretch, offsets etc. 2006/04/27 09:33:03 bm 1.4.4.13: #64832# show correct color for pie segments which get attributed but still have the default color 2006/01/12 17:59:26 iha 1.4.4.12: cleanup property mappings 2006/01/05 16:35:38 iha 1.4.4.11: added single property setting fallback to method setMultiProperties() and use setMultiProperties() in setMappedProperties() 2005/11/24 18:32:44 bm 1.4.4.10: transparency gradients enabled 2005/10/21 13:35:13 bm 1.4.4.9: enable FillBitmaps 2005/10/07 12:26:17 bm 1.4.4.8: RESYNC: (1.4-1.5); FILE MERGED 2005/07/22 12:53:54 bm 1.4.4.7: #124485# property FillBackground added 2005/07/12 12:57:15 bm 1.4.4.6: use named properties for gradients etc. in chart model 2005/06/16 07:58:18 iha 1.4.4.5: added missing Property FillBackground 2005/06/15 18:19:55 iha 1.4.4.4: correct name for Property FillTransparenceGradient 2004/06/29 19:39:06 iha 1.4.4.3: added parameter pOverwriteMap to method setMappedProperties 2004/03/02 12:45:19 bm 1.4.4.2: class-name missing before getPropertyNameMapForFillAndLineProperties 2004/03/02 12:24:47 bm 1.4.4.1: +getPropertyNameMapForFillAndLineProperties()


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [338bea423a781b82aa4f4b180b92b03cb3976f41]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/11/23 17:35:40 iha 1.2.4.7: replace Vector2D with B2DVector 2006/10/18 17:23:59 bm 1.2.4.6: RESYNC: (1.3-1.4); FILE MERGED 2006/08/10 15:59:53 iha 1.2.4.5: Axis Label Layout - Font&Diagram Size 2005/10/07 12:26:06 bm 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2004/05/08 17:54:58 iha 1.2.4.3: polartransformation fixes and pie offset implementation 2004/04/14 08:27:39 iha 1.2.4.2: corrected z position of centered labels 2004/03/23 14:40:30 iha 1.2.4.1: renamed method transform/Scaled/LogicToScreenPosition


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fa7bc92551e5793fe5a285ca2f3c6e797e0d25a1]

INTEGRATION: CWS chart2mst3 (1.9.4); FILE MERGED 2006/11/28 17:51:34 iha 1.9.4.24: use ::basegfx::B3DPoint instead of B3DVector to get correct translation 2006/11/23 18:36:06 iha 1.9.4.23: replace DoubleRectangle with B2DRectangle and DoublePoint with B2DTuple 2006/11/22 17:26:45 iha 1.9.4.22: RESYNC: (1.11-1.12); FILE MERGED 2006/11/09 15:28:25 iha 1.9.4.21: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/18 17:23:52 bm 1.9.4.20: RESYNC: (1.10-1.11); FILE MERGED 2006/10/11 12:16:55 iha 1.9.4.19: correct donut radius position for reverse orientation 2006/10/06 19:05:07 iha 1.9.4.18: corrected transformation for ring radius 2006/09/24 09:12:58 iha 1.9.4.17: #i61970# correct implementation of axis at 2006/06/09 16:13:19 iha 1.9.4.16: correct fllor position in pie chart 2005/12/03 18:58:40 iha 1.9.4.15: added transformSceneToScreenPosition to enable pie segment dragging 2005/10/24 11:07:15 iha 1.9.4.14: coordinate system restructure 2005/10/07 12:25:55 bm 1.9.4.13: RESYNC: (1.9-1.10); FILE MERGED 2005/09/16 16:50:23 iha 1.9.4.12: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/19 16:12:57 iha 1.9.4.11: implement percent stacking 2004/05/08 17:54:57 iha 1.9.4.10: polartransformation fixes and pie offset implementation 2004/04/14 09:29:49 iha 1.9.4.9: removed unused variable 2004/04/14 08:28:50 iha 1.9.4.8: corrected polar position helper (swapxy-probelms) 2004/03/24 17:23:28 iha 1.9.4.7: added method getLabelAlignmentForDimension 2004/03/23 18:36:08 iha 1.9.4.6: fixed logarithmic polar scale 2004/03/23 14:32:36 iha 1.9.4.5: added mehtod clipScaledLogicValues + renamed getTransformation/Scaled/LogicToScene 2004/03/22 19:31:01 iha 1.9.4.4: transport information bSwapXAndYAxis over method setScales not constructor; m_bRadiusAxisMapsToFirstDimension-->bSwapXAndY 2004/03/22 17:30:35 iha 1.9.4.3: added and used parameter SwapXAndYAxis for horizontal bar chart 2004/03/22 15:37:02 iha 1.9.4.2: added parameter and member SwapXAndYAxis for horizontal bar chart 2004/03/11 11:57:39 iha 1.9.4.1: added method getScaledLogicWidth()


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1f8dc07f6ef17c278399c7710e7773ce30324857]

INTEGRATION: CWS chart2mst3 (1.12.4); FILE MERGED 2006/10/18 17:23:44 bm 1.12.4.5: RESYNC: (1.13-1.14); FILE MERGED 2005/12/21 21:29:43 iha 1.12.4.4: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/07 12:25:45 bm 1.12.4.3: RESYNC: (1.12-1.13); FILE MERGED 2004/03/22 19:32:02 iha 1.12.4.2: transport information bSwapXAndYAxis over method setScales not constructor 2004/03/01 18:14:33 iha 1.12.4.1: added method isValidPosition()


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d354eb550b22f638f5d97c96bc22651cfff313b9]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:23:36 bm 1.2.4.8: RESYNC: (1.4-1.5); FILE MERGED 2006/05/05 14:04:40 bm 1.2.4.7: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 12:25:20 bm 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/07/21 14:47:16 bm 1.2.4.5: support for number formats from data provider 2005/06/08 11:34:31 iha 1.2.4.4: use number format key at API instead of string 2005/06/07 15:45:48 iha 1.2.4.3: use numberformatter from model 2005/05/31 19:14:44 iha 1.2.4.2: create view without controller 2005/04/11 09:28:33 iha 1.2.4.1: avoid crash when numberformatter is missing


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [76c1ff5a3fccc67d2c720532c359800fe0c8205e]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/11/22 17:26:37 iha 1.1.1.1.4.4: RESYNC: (1.3-1.4); FILE MERGED 2006/10/18 17:23:28 bm 1.1.1.1.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/10/07 12:25:06 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/03/22 17:29:33 iha 1.1.1.1.4.1: added and used parameter SwapXAndYAxis for horizontal bar chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7738df17e8774c6e8450f13618de1e5030b0c13a]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/11/23 17:37:23 iha 1.2.4.9: removed unsued include 2006/10/18 17:23:20 bm 1.2.4.8: RESYNC: (1.3-1.4); FILE MERGED 2006/08/10 15:59:26 iha 1.2.4.7: Axis Label Layout - Font&Diagram Size 2005/12/03 18:58:14 iha 1.2.4.6: added transformSceneToScreenPosition to enable pie segment dragging 2005/10/07 12:24:55 bm 1.2.4.5: RESYNC: (1.2-1.3); FILE MERGED 2004/05/08 17:54:57 iha 1.2.4.4: polartransformation fixes and pie offset implementation 2004/04/29 09:28:06 iha 1.2.4.3: correct 3d bar object position and size 2004/04/28 20:16:53 iha 1.2.4.2: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/03/23 14:39:48 iha 1.2.4.1: renamed method transform/Scaled/LogicToScreenPosition + getTransformation/Scaled/LogicToScene


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bdd15dc5be606452532b9361af36dd8a742cfcda]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:49 iha 1.1.2.20: resync m195 -> m202 2006/10/20 21:27:25 iha 1.1.2.19: implement selection of additional shapes 2006/10/13 08:23:29 iha 1.1.2.18: implement automatic break feature for horizontal text axes 2006/03/19 10:42:23 iha 1.1.2.17: reselect pie and donut segments after dragging 2006/03/15 13:24:06 iha 1.1.2.16: /ensure that additional shapes are in front of the chart objects 2006/03/12 01:15:18 iha 1.1.2.15: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/22 16:42:54 bm 1.1.2.14: getNamedSdrObject: select nothing if name is an empty string 2006/02/22 16:25:37 bm 1.1.2.13: getNamedSdrObject: select nothing if name is an empty string 2006/02/22 16:23:41 bm 1.1.2.12: getNamedSdrObject: select nothing if name is an empty string 2006/02/20 14:35:18 iha 1.1.2.11: move SchItemPool from controller to view lib -> ChartItemPool 2005/11/24 18:32:44 bm 1.1.2.10: transparency gradients enabled 2005/10/11 09:21:05 bm 1.1.2.9: license header change 2005/08/30 14:42:17 bm 1.1.2.8: +attachParentReferenceDevice, +getReferenceDevice 2005/08/29 14:47:26 iha 1.1.2.7: don't delete page as the drawing layer is not able to work with null pages 2005/07/13 15:23:14 iha 1.1.2.6: update draw model tables before use in view and dialogs 2005/07/08 12:52:36 iha 1.1.2.5: provide and keep view as service only 2005/07/05 15:33:52 iha 1.1.2.4: redefine diagram size 2005/06/03 09:07:39 bm 1.1.2.3: static had no type. int -> bool 2005/06/01 16:50:58 iha 1.1.2.2: export metafile 2005/05/31 19:11:42 iha 1.1.2.1: create view without controller


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5bd17d8a1d905ab0e1cbcde49a5516282a5f1e7c]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/11/26 13:00:21 iha 1.3.4.7: performance: avoid unnecessary clipping 2006/11/25 14:51:04 iha 1.3.4.6: #i71189# some lines vanish when clipped 2006/11/23 18:36:06 iha 1.3.4.5: replace DoubleRectangle with B2DRectangle and DoublePoint with B2DTuple 2006/11/22 17:26:29 iha 1.3.4.4: RESYNC: (1.4-1.5); FILE MERGED 2006/10/18 17:22:50 bm 1.3.4.3: RESYNC: (1.3-1.4); FILE MERGED 2006/03/09 17:41:43 iha 1.3.4.2: added header 2006/02/23 13:28:07 iha 1.3.4.1: enable gaps for none values in line charts


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [53356d957516c58eda9651a651171519a4bb5430]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/19 15:23:43 bm 1.1.2.9: #i75418# support XTransferable in model and offer a high-contrast replacement image 2006/11/09 15:23:46 iha 1.1.2.8: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/09/24 09:12:58 iha 1.1.2.7: #i61970# correct implementation of axis at 2006/04/10 12:25:20 iha 1.1.2.6: api restructure axis, grids, scales and increments 2006/03/12 01:11:15 iha 1.1.2.5: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/20 15:19:57 bm 1.1.2.4: make getShapeForCID an interface method of ExplicitValueProvider again 2005/10/11 09:21:04 bm 1.1.2.3: license header change 2005/07/23 00:01:21 iha 1.1.2.2: include axis title sizes in diagram position to support old api and fileformat 2005/07/08 12:44:08 iha 1.1.2.1: provide and keep view as service only


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ac5a4c4b5bbd6f3d495e266653515f95e4054b9b]

INTEGRATION: CWS chart2mst3 (1.32.4); FILE MERGED 2007/04/20 08:13:21 iha 1.32.4.93: #i75393# Connect Bars per diagram not per series 2007/04/19 16:13:26 iha 1.32.4.92: #i76130# write attribute sort-by-x-values per plot-area not per series 2007/03/19 15:23:43 bm 1.32.4.91: #i75418# support XTransferable in model and offer a high-contrast replacement image 2007/02/26 14:35:17 iha 1.32.4.90: special resize only for pie and donut 2007/02/06 16:30:30 iha 1.32.4.89: missing SolarMutex 2006/12/15 13:37:58 iha 1.32.4.88: #i72360# use axis number format for data labels when one is provided 2006/12/01 18:36:52 iha 1.32.4.87: #68896# always save the explicit number format 2006/11/26 12:48:23 bm 1.32.4.86: includes for solar mutex missing 2006/11/22 17:26:21 iha 1.32.4.85: RESYNC: (1.34-1.35); FILE MERGED 2006/11/16 13:43:16 iha 1.32.4.84: #i71215# corrected position for diagrams with axis title - don't create empty titles 2006/11/10 21:04:49 iha 1.32.4.83: set modified only when resolution gets higher 2006/11/09 15:24:22 iha 1.32.4.82: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/18 17:22:42 bm 1.32.4.81: RESYNC: (1.33-1.34); FILE MERGED 2006/10/12 10:55:12 iha 1.32.4.80: wrong selection of series - due to weakreferences of draw shapes dying to early -> switch back to normal references 2006/10/06 19:16:44 iha 1.32.4.79: recreate pies and donuts with corrected size to get correct labels even with legend entries 2006/10/05 15:28:26 iha 1.32.4.78: saved diagram size is corrupted 2006/09/27 17:24:39 iha 1.32.4.77: some cleanup around pie size 2006/09/27 17:22:58 iha 1.32.4.76: corrected reference size for data labels 2006/09/24 09:12:58 iha 1.32.4.75: #i61970# correct implementation of axis at 2006/08/25 17:16:26 iha 1.32.4.74: text- and diagram-size dependent auto main step width 2006/08/23 17:07:28 iha 1.32.4.73: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/10 15:58:24 iha 1.32.4.72: Axis Label Layout - Font&Diagram Size 2006/08/08 15:02:30 iha 1.32.4.71: don't refresh addin when loading is not finished 2006/08/08 12:24:48 iha 1.32.4.70: always remove automatically created shapes before creating new 2006/08/08 12:22:51 iha 1.32.4.69: correct dirty state for view 2006/08/08 12:11:40 iha 1.32.4.68: guard access to native drawinglayer with SolarMutex 2006/08/01 09:48:32 bm 1.32.4.67: #i29600# resize the label sizes of data series with the diagram size if a reference size is set 2006/07/04 12:28:16 iha 1.32.4.66: aspect ratio 2006/07/01 21:05:53 iha 1.32.4.65: define and respect aspect ratio of diagram 2006/04/10 15:03:38 iha 1.32.4.64: api restructure axis, grids, scales and increments 2006/04/10 12:25:19 iha 1.32.4.63: api restructure axis, grids, scales and increments 2006/04/03 12:28:00 iha 1.32.4.62: correct selection handles for data point labels and legend entries 2006/03/29 22:24:49 iha 1.32.4.61: restructure legend entry creation + legend entries in data labels 2006/03/23 15:32:45 iha 1.32.4.60: cleanup category handling 2006/03/23 09:28:24 iha 1.32.4.59: categories for data labels 2006/03/12 01:14:31 iha 1.32.4.58: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/20 14:34:46 iha 1.32.4.57: move SchItemPool from controller to view lib -> ChartItemPool 2006/02/16 17:35:58 iha 1.32.4.56: return size of axis lines only instead of axis including labels for old api 2006/01/15 16:41:58 iha 1.32.4.55: correct distance between diagram and legend 2006/01/09 14:30:47 iha 1.32.4.54: diagram is not resizeable via mouse anymore 2005/12/21 21:29:42 iha 1.32.4.53: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/01 18:53:40 iha 1.32.4.52: create axis title with correct rotation default + don't mix x and y in barcharts 2005/12/01 16:41:28 iha 1.32.4.51: #124571# load & save position of rotated titles correctly 2005/11/25 16:33:56 iha 1.32.4.50: correct labels at z axis for deep stacking 2005/11/02 16:37:55 bm 1.32.4.49: safeness when XScale is 0 2005/10/25 11:57:18 bm 1.32.4.48: Solaris compiler did not like map access 2005/10/25 10:41:54 bm 1.32.4.47: & too much in variable declaration 2005/10/24 11:07:14 iha 1.32.4.46: coordinate system restructure 2005/10/13 17:39:14 iha 1.32.4.45: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:24:13 bm 1.32.4.44: RESYNC: (1.32-1.33); FILE MERGED 2005/09/16 16:50:23 iha 1.32.4.43: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/24 11:50:37 iha 1.32.4.42: direct initialization for less warnings 2005/08/18 11:42:05 iha 1.32.4.41: moved colorscheme transport 2005/07/28 09:34:57 bm 1.32.4.40: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/23 00:01:21 iha 1.32.4.39: include axis title sizes in diagram position to support old api and fileformat 2005/07/21 14:47:16 bm 1.32.4.38: support for number formats from data provider 2005/07/18 19:03:27 iha 1.32.4.37: don't display axes in pie chart 2005/07/15 07:24:46 iha 1.32.4.36: remove extra space hack for axis label 2005/07/13 15:22:45 iha 1.32.4.35: update draw model tables before use in view and dialogs 2005/07/12 08:41:15 iha 1.32.4.34: correct assertion text 2005/07/08 15:20:27 iha 1.32.4.33: index violation 2005/07/08 12:49:31 iha 1.32.4.32: provide and keep view as service only 2005/07/05 16:02:44 iha 1.32.4.31: redefine diagram size 2005/06/23 16:39:17 iha 1.32.4.30: quick hack for more complete visibility of the diagram as long as the correct layout is missing 2005/06/09 15:43:52 iha 1.32.4.29: support positions and sizes via view for old api wrapper 2005/06/07 15:42:31 iha 1.32.4.28: use numberformatter from model 2005/06/03 14:43:09 iha 1.32.4.27: construct chartview with drawmodelwrapper 2005/06/01 17:03:15 iha 1.32.4.26: export metafile 2005/05/31 19:20:26 iha 1.32.4.25: create view without controller 2005/05/09 09:51:38 bm 1.32.4.24: moved parts of API to data namespace 2004/09/27 14:41:23 iha 1.32.4.23: reduce direct access to draw model 2004/09/17 17:24:34 iha 1.32.4.22: correct positions for titles also after move 2004/09/17 11:26:20 iha 1.32.4.21: implement api redesign - dimension property 2004/09/17 10:24:29 iha 1.32.4.20: correct x stacking 2004/09/16 14:45:33 iha 1.32.4.19: implement api redesign 2004/09/15 09:57:15 iha 1.32.4.18: implement api redesign 2004/08/26 13:14:01 iha 1.32.4.17: saver page creation 2004/08/25 16:38:56 iha 1.32.4.16: View independent loading - relative position with dynamic anchor point 2004/04/27 15:00:43 iha 1.32.4.15: warnings removed 2004/04/26 11:45:06 iha 1.32.4.14: getExplicitValuesForMeter returns bool + CID for page 2004/04/22 09:32:34 iha 1.32.4.13: more explicit default for 'no stacking' 2004/04/13 16:34:24 iha 1.32.4.12: corrected stacking 2004/03/24 10:26:12 bm 1.32.4.11: safety check for empty tree in initializeDiagramAndGetCooSys 2004/03/22 19:34:51 iha 1.32.4.10: transport information bSwapXAndYAxis over method setScales 2004/03/19 10:59:08 iha 1.32.4.9: modified creation of plotter for attaching series to secondary axis 2004/03/18 16:36:46 iha 1.32.4.8: create axis even if no plotter is attached to the coordinate system 2004/03/12 15:34:39 iha 1.32.4.7: removed shadow warning 2004/03/11 12:26:30 iha 1.32.4.6: calculate PreferredAspectRatio for charttype dependent 3D scene aspect ratio and set to diagram + some cleanup 2004/03/02 13:03:13 iha 1.32.4.5: use PropertyMapper::getPropertyNameMapForFillAndLineProperties 2004/02/26 14:03:44 iha 1.32.4.4: remove warnings 2004/02/26 13:53:12 iha 1.32.4.3: share coordinate systems and scales for combi charts 2004/02/26 12:18:10 iha 1.32.4.2: share coordinate systems and scales for combi charts 2004/02/13 16:52:00 bm 1.32.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [762ebe5982ade77c1cb042318ca850fe5a3a5c6b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/20 14:33:48 iha 1.1.2.1: move SchItemPool from controller to view lib -> ChartItemPool


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [691256fb038421e5dae0cebd192be3364f9ddebf]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/15 12:38:25 bm 1.1.2.4: #i73604# RESYNC: additional changes for ItemId cleanup 2007/05/15 11:49:00 bm 1.1.2.3: #i73604# RESYNC: additional changes for ItemId cleanup 2007/02/08 21:25:48 iha 1.1.2.2: resync m195 -> m202 2006/02/20 14:34:02 iha 1.1.2.1: move SchItemPool from controller to view lib -> ChartItemPool


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6ffbd9087fbdffd1866737e84db1551170e23489]

INTEGRATION: CWS chart2mst3 (1.2.12); FILE MERGED 2006/07/01 21:27:49 iha 1.2.12.1: ore distance between gridlines and wall


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [33495356c2319b42edffdf790a0ff9997f709105]

INTEGRATION: CWS chart2mst3 (1.16.4); FILE MERGED 2006/12/15 13:36:58 iha 1.16.4.30: #i72360# use axis number format for data labels when one is provided 2006/11/09 15:30:13 iha 1.16.4.29: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/23 19:09:23 iha 1.16.4.28: #i65580# Legend shows no symbols for series with automatic symbols 2006/10/12 10:54:44 iha 1.16.4.27: wrong selection of series - due to weakreferences of draw shapes dying to early -> switch back to normal references 2006/09/29 14:58:35 iha 1.16.4.26: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/08/01 09:48:32 bm 1.16.4.25: #i29600# resize the label sizes of data series with the diagram size if a reference size is set 2006/07/01 20:58:10 iha 1.16.4.24: define and respect aspect ratio of diagram 2006/03/29 22:24:48 iha 1.16.4.23: restructure legend entry creation + legend entries in data labels 2006/03/23 09:25:02 iha 1.16.4.22: categories for data labels 2006/01/12 18:02:50 iha 1.16.4.21: cleanup property mappings 2005/12/21 21:29:40 iha 1.16.4.20: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/25 16:24:59 iha 1.16.4.19: correct labels at z axis for deep stacking 2005/10/24 11:07:14 iha 1.16.4.18: coordinate system restructure 2005/10/13 17:39:13 iha 1.16.4.17: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:22:54 bm 1.16.4.16: RESYNC: (1.16-1.17); FILE MERGED 2005/08/18 11:42:05 iha 1.16.4.15: moved colorscheme transport 2005/07/28 09:34:56 bm 1.16.4.14: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/21 14:47:15 bm 1.16.4.13: support for number formats from data provider 2005/05/11 13:03:48 dr 1.16.4.12: #i30426# enhanced scaling for stacked charts 2005/05/09 08:57:54 dr 1.16.4.11: #i30462# scaling for stacked charts 2005/04/29 12:23:23 dr 1.16.4.10: #i30426# enhanced linear scaling 2005/04/28 15:50:08 dr 1.16.4.9: #i30426# enhanced linear scaling 2004/09/17 11:25:43 iha 1.16.4.8: implement api redesign - dimension property 2004/06/29 19:41:44 iha 1.16.4.7: added parameter pOverwriteMap to method setMappedProperties 2004/04/13 16:34:23 iha 1.16.4.6: corrected stacking 2004/03/24 17:24:52 iha 1.16.4.5: added parameter offset to method createDataLabel 2004/03/11 12:01:17 iha 1.16.4.4: added meethod getPreferredDiagramAspectRatio() for charttype dependent 3D scene aspect ratio 2004/02/28 09:01:23 iha 1.16.4.3: changed Y range calculation because of integration of candlestickchart + caching of summarized y values 2004/02/26 12:18:09 iha 1.16.4.2: share coordinate systems and scales for combi charts 2004/02/23 18:50:53 iha 1.16.4.1: auto scaling: make automatic border charttype dependent


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bb26666730989c3709fab8a39cd9792ab4a5745b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/22 17:31:20 iha 1.1.2.3: resync 2005/10/11 09:21:01 bm 1.1.2.2: license header change 2004/05/08 17:51:08 iha 1.1.2.1: polartransformation fixes and pie offset implementation


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [00ed09dd498e25b75136598aef2c06dce52dd112]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/04/10 12:25:19 iha 1.1.4.5: api restructure axis, grids, scales and increments 2006/01/16 15:04:09 iha 1.1.4.4: don't create invisible gridlines 2006/01/16 14:45:48 iha 1.1.4.3: don't create invisible gridlines 2005/10/07 12:22:43 bm 1.1.4.2: RESYNC: (1.1-1.2); FILE MERGED 2005/07/12 12:57:14 bm 1.1.4.1: use named properties for gradients etc. in chart model


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5b120fedb968fb59357d5b30674101ef1966d085]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/10/23 19:11:00 iha 1.1.2.2: #i65580# Legend shows no symbols for series with automatic symbols 2006/03/29 22:22:18 iha 1.1.2.1: restructure legend entry creation + legend entries in data labels


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [728159876318973bae8c9cc9eabb4854eedce0a4]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/08/10 15:56:31 iha 1.3.4.4: Axis Label Layout - Font&Diagram Size 2006/07/01 21:03:41 iha 1.3.4.3: define and respect aspect ratio of diagram 2005/10/07 12:22:32 bm 1.3.4.2: RESYNC: (1.3-1.4); FILE MERGED 2004/03/11 12:04:31 iha 1.3.4.1: added parameter PreferredAspectRatio for charttype dependent 3D scene aspect ratio


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2345882903dbbf35d3457e3680530d3f9654b790]

INTEGRATION: CWS chart2mst3 (1.13.4); FILE MERGED 2007/04/20 08:12:09 iha 1.13.4.22: #i75393# Connect Bars per diagram not per series 2007/04/19 16:12:00 iha 1.13.4.21: #i76130# write attribute sort-by-x-values per plot-area not per series 2006/11/19 21:39:34 iha 1.13.4.20: better performance for line charts without symbols 2006/10/12 10:52:14 iha 1.13.4.19: wrong selection of series - due to weakreferences of draw shapes dying to early -> switch back to normal references 2006/10/06 18:58:58 iha 1.13.4.18: hold shapes only per weak reference thus they can be removed for special pie resize 2006/09/01 16:35:31 iha 1.13.4.17: enable selection of invisible points in point charts 2006/08/01 09:48:31 bm 1.13.4.16: #i29600# resize the label sizes of data series with the diagram size if a reference size is set 2006/04/23 08:57:51 iha 1.13.4.15: correct wrong caching of datapoint properties -> correct data labels with correct text properties 2006/03/29 22:24:48 iha 1.13.4.14: restructure legend entry creation + legend entries in data labels 2006/03/23 09:27:37 iha 1.13.4.13: categories for data labels 2006/02/23 13:28:59 iha 1.13.4.12: enable gaps for NAN values in line charts 2005/12/21 21:29:39 iha 1.13.4.11: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/05 18:06:02 iha 1.13.4.10: Connection Lines for Stacked Bar Charts 2005/10/24 11:07:13 iha 1.13.4.9: coordinate system restructure 2005/10/07 12:22:15 bm 1.13.4.8: RESYNC: (1.13-1.14); FILE MERGED 2005/08/03 16:36:29 bm 1.13.4.7: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/21 14:47:15 bm 1.13.4.6: support for number formats from data provider 2005/05/09 09:51:36 bm 1.13.4.5: moved parts of API to data namespace 2004/09/15 09:57:15 iha 1.13.4.4: implement api redesign 2004/06/29 19:40:40 iha 1.13.4.3: added method hasPointOwnColor (for PieColorPerPoint) 2004/03/19 14:33:04 bm 1.13.4.2: XDataSource now contains XLabeledDataSources 2004/02/28 08:54:55 iha 1.13.4.1: integrate access to additional values for candle stick chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d27a2c95425173ca73761d82c474699e28951e00]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/11/09 15:29:02 iha 1.3.4.17: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/09/24 09:12:57 iha 1.3.4.16: #i61970# correct implementation of axis at 2006/08/25 17:15:10 iha 1.3.4.15: text- and diagram-size dependent auto main step width 2006/08/23 17:07:27 iha 1.3.4.14: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/22 19:06:55 iha 1.3.4.13: correct y axis for net charts: show labels + take space for labels into account for diagram size 2006/08/10 15:55:51 iha 1.3.4.12: Axis Label Layout - Font&Diagram Size 2006/04/10 12:25:19 iha 1.3.4.11: api restructure axis, grids, scales and increments 2006/03/27 11:49:50 bm 1.3.4.10: implementationreference.hxx is written in lowercase 2006/03/23 15:32:15 iha 1.3.4.9: cleanup category handling 2005/12/21 21:29:39 iha 1.3.4.8: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/25 16:24:32 iha 1.3.4.7: correct labels at z axis for deep stacking 2005/10/24 11:07:12 iha 1.3.4.6: coordinate system restructure 2005/10/13 17:39:13 iha 1.3.4.5: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:22:00 bm 1.3.4.4: RESYNC: (1.3-1.4); FILE MERGED 2005/06/07 16:02:05 iha 1.3.4.3: use numberformatter from model 2004/03/22 19:32:46 iha 1.3.4.2: added method getPropertySwapXAndYAxis() 2004/02/26 12:18:09 iha 1.3.4.1: share coordinate systems and scales for combi charts


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b1200dc22e14f2a82fa9a8217009aa3b53aafae2]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2006/09/23 07:47:31 iha 1.3.12.1: apply texture correctly to floor, bottom and 3D lines


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3cc9e42e4932a864188f8d334e4365f521a497ae]

INTEGRATION: CWS chart2mst3 (1.10.4); FILE MERGED 2006/10/11 11:49:23 dr 1.10.4.19: #i67757# connect first/last point in radarcharts correctly 2006/10/06 19:02:19 iha 1.10.4.18: added helping method to remove all sub shapes in a group shape 2006/08/29 12:26:22 iha 1.10.4.17: correct overlap detection for rotated axis labels 2006/08/10 15:57:34 iha 1.10.4.16: Axis Label Layout - Font&Diagram Size 2006/06/30 23:31:58 iha 1.10.4.15: helping method to respect aspect ratio 2006/06/30 23:17:54 iha 1.10.4.14: correct scene dimensions also for pies with dummy objects 2006/04/03 12:11:05 iha 1.10.4.13: correct selection handles for data point labels and legend entries 2006/03/12 00:23:48 iha 1.10.4.12: added methods getOrCreateChartRootShape & getShapeName 2006/01/14 13:55:55 iha 1.10.4.11: respect PercentDiagonal Property as boolean for bars 2005/12/21 14:10:57 dr 1.10.4.10: border color for symbols 2005/12/05 18:04:23 iha 1.10.4.9: methods moved from AreaChart to here 2005/11/24 15:08:28 bm 1.10.4.8: symbol graphics support 2005/10/07 12:21:36 bm 1.10.4.7: RESYNC: (1.10-1.11); FILE MERGED 2005/07/04 17:12:33 iha 1.10.4.6: added method createMarkHandlesRectangle 2004/05/08 17:54:57 iha 1.10.4.5: polartransformation fixes and pie offset implementation 2004/04/29 09:28:06 iha 1.10.4.4: correct 3d bar object position and size 2004/04/28 20:16:53 iha 1.10.4.3: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/03/24 10:39:13 iha 1.10.4.2: change signature of ShapeFactory::createLine2D 2004/03/23 20:22:28 iha 1.10.4.1: removed now superfluous method createErrorBar2D


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6d573f3e187181b7a585969a91f3e2aed82d95ac]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/25 17:14:35 iha 1.1.2.9: text- and diagram-size dependent auto main step width 2006/08/23 17:07:27 iha 1.1.2.8: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/04/10 12:25:19 iha 1.1.2.7: api restructure axis, grids, scales and increments 2005/10/11 09:21:00 bm 1.1.2.6: license header change 2005/08/19 16:10:50 iha 1.1.2.5: implement percent stacking 2005/04/29 12:23:23 dr 1.1.2.4: #i30426# enhanced linear scaling 2005/04/28 15:50:08 dr 1.1.2.3: #i30426# enhanced linear scaling 2004/02/26 13:52:10 iha 1.1.2.2: remove unused code 2004/02/26 12:17:52 iha 1.1.2.1: share coordinate systems and scales for combi charts Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [da1467b9238cf76891f632226a7d81057a4a7b71]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2006/01/27 09:51:24 bm 1.4.4.4: InlineContainer.hxx moved to comphelper 2005/10/07 12:21:23 bm 1.4.4.3: RESYNC: (1.4-1.5); FILE MERGED 2004/06/29 19:38:45 iha 1.4.4.2: added parameter pOverwriteMap to method setMappedProperties 2004/03/02 12:24:32 bm 1.4.4.1: +getPropertyNameMapForFillAndLineProperties()


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fc02c8e19906834c92cc4ad29ab6e03e336483a0]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/08/10 15:57:01 iha 1.1.4.3: Axis Label Layout - Font&Diagram Size 2005/10/07 12:21:11 bm 1.1.4.2: RESYNC: (1.1-1.2); FILE MERGED 2004/05/08 17:54:56 iha 1.1.4.1: polartransformation fixes and pie offset implementation


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b46bf12b7e1494eca38f80c4f6097434dd293104]

INTEGRATION: CWS chart2mst3 (1.7.4); FILE MERGED 2006/11/23 18:36:06 iha 1.7.4.18: replace DoubleRectangle with B2DRectangle and DoublePoint with B2DTuple 2006/11/22 17:26:15 iha 1.7.4.17: RESYNC: (1.8-1.9); FILE MERGED 2006/11/09 15:27:51 iha 1.7.4.16: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/09/24 09:12:57 iha 1.7.4.15: #i61970# correct implementation of axis at 2005/12/03 18:57:38 iha 1.7.4.14: added transformSceneToScreenPosition to enable pie segment dragging 2005/10/24 11:07:12 iha 1.7.4.13: coordinate system restructure 2005/10/07 12:21:00 bm 1.7.4.12: RESYNC: (1.7-1.8); FILE MERGED 2005/08/19 16:12:31 iha 1.7.4.11: implement percent stacking 2004/05/08 17:54:56 iha 1.7.4.10: polartransformation fixes and pie offset implementation 2004/04/29 11:25:53 iha 1.7.4.9: corrected position of z axis in case of swapped axis 2004/03/24 17:23:09 iha 1.7.4.8: added method getLabelAlignmentForDimension 2004/03/23 18:35:35 iha 1.7.4.7: fixed logarithmic polar scale 2004/03/23 14:31:52 iha 1.7.4.6: added mehtod clipScaledLogicValues + renamed getTransformation/Scaled/LogicToScene 2004/03/22 19:30:41 iha 1.7.4.5: transport information bSwapXAndYAxis over method setScales not constructor; m_bRadiusAxisMapsToFirstDimension-->bSwapXAndY 2004/03/22 15:34:28 iha 1.7.4.4: added parameter and member SwapXAndYAxis for horizontal bar chart 2004/03/11 11:57:11 iha 1.7.4.3: added method getScaledLogicWidth() 2004/03/01 18:12:47 iha 1.7.4.2: added method doLogicScaling( Position3D& ) 2004/02/28 08:38:52 iha 1.7.4.1: added method clipYRange


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [03f0f7e6fa96f2c0fdb5eabaf8ac8ebd07540ec2]

INTEGRATION: CWS chart2mst3 (1.10.4); FILE MERGED 2006/11/22 17:26:06 iha 1.10.4.6: RESYNC: (1.11-1.12); FILE MERGED 2006/08/22 19:07:31 iha 1.10.4.5: correct y axis for net charts: show labels + take space for labels into account for diagram size 2005/12/21 21:29:38 iha 1.10.4.4: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/07 12:20:48 bm 1.10.4.3: RESYNC: (1.10-1.11); FILE MERGED 2004/03/22 19:31:41 iha 1.10.4.2: transport information bSwapXAndYAxis over method setScales not constructor 2004/03/01 18:13:51 iha 1.10.4.1: added method isValidPosition()


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [71196a8dc478e832f1013bd82daf2039cd66ea23]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/24 11:07:11 iha 1.1.2.6: coordinate system restructure 2005/10/11 09:21:00 bm 1.1.2.5: license header change 2005/05/09 08:57:54 dr 1.1.2.4: #i30462# scaling for stacked charts 2005/04/29 12:23:22 dr 1.1.2.3: #i30426# enhanced linear scaling 2005/04/28 15:50:08 dr 1.1.2.2: #i30426# enhanced linear scaling 2004/02/26 12:10:38 iha 1.1.2.1: share coordinate systems and scales for combi charts


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f5f3cf702a24dfb617db01a94928b3b7fe9edd9f]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 12:20:36 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/03/22 17:29:02 iha 1.2.4.1: added parameter SwapXAndYAxis for horizontal bar chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [22359644069926ba71202af3473caf603482d06c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/29 22:21:40 iha 1.1.2.1: restructure legend entry creation + legend entries in data labels


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1d3eec806ad1c62e7ae7b04b02c255799a8be9c0]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2005/10/07 12:20:26 bm 1.1.4.2: RESYNC: (1.1-1.2); FILE MERGED 2004/03/23 14:38:23 iha 1.1.4.1: renamed method getTransformation/Scaled/LogicToScene


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ba4cb00ccdb625ac033e596fbd66b6c72adf4a5b]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/11/23 18:36:06 iha 1.3.4.2: replace DoubleRectangle with B2DRectangle and DoublePoint with B2DTuple 2006/03/09 17:40:29 iha 1.3.4.1: added header


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [93e9d46df54d3fa69f2176a8185f8cd367b09da8]

INTEGRATION: CWS chart2mst3 (1.9.4); FILE MERGED 2006/11/22 17:25:59 iha 1.9.4.31: RESYNC: (1.11-1.12); FILE MERGED 2006/10/18 17:22:33 bm 1.9.4.30: RESYNC: (1.10-1.11); FILE MERGED 2006/10/06 19:12:59 iha 1.9.4.29: corrected resize of diagram 2006/09/23 07:49:21 iha 1.9.4.28: apply texture correctly to diagram walls and floor 2006/08/10 16:00:49 iha 1.9.4.27: Axis Label Layout - Font&Diagram Size 2006/07/01 21:04:37 iha 1.9.4.26: define and respect aspect ratio of diagram 2006/06/30 23:33:27 iha 1.9.4.25: helping method to respect aspect ratio 2006/06/30 23:17:24 iha 1.9.4.24: correct scene dimensions also for pies with dummy objects 2006/06/26 18:30:26 iha 1.9.4.23: don't show wall nor floor for pies and donuts until older files can be detected ---> need invisible floor for 3D pies with labels... 2006/06/24 18:32:01 iha 1.9.4.22: don't show wall nor floor for pies and donuts until older files can be detected 2006/06/23 15:03:41 iha 1.9.4.21: don't use goodies matrix anymore 2006/06/18 19:36:08 iha 1.9.4.20: implement camera distance 2006/06/09 16:12:29 iha 1.9.4.19: don't set the camera at the diagram view, but take it's rotation into account in the transformation matrix 2006/01/12 18:02:23 iha 1.9.4.18: cleanup property mappings 2005/12/21 21:29:37 iha 1.9.4.17: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/02 13:49:23 bm 1.9.4.16: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/21 13:35:12 bm 1.9.4.15: enable FillBitmaps 2005/10/07 12:23:29 bm 1.9.4.14: RESYNC: (1.9-1.10); FILE MERGED 2005/08/31 11:42:57 bm 1.9.4.13: FillBackground property was duplicate in Wall Property Map. Note that this property does not work for 3d objects 2005/07/22 12:53:13 bm 1.9.4.12: property FillBackground added 2005/07/12 12:57:14 bm 1.9.4.11: use named properties for gradients etc. in chart model 2005/07/06 11:03:55 iha 1.9.4.10: redefine diagram size 2005/06/16 09:19:44 iha 1.9.4.9: added missing Property FillBackground and FillTransparenceGradient 2004/06/09 21:52:38 iha 1.9.4.8: rotate lights with scene 2004/06/08 14:28:58 iha 1.9.4.7: set only enabled light sources 2004/06/04 12:04:30 iha 1.9.4.6: set ProjectionMode to scene 2004/04/29 09:28:05 iha 1.9.4.5: correct 3d bar object position and size 2004/04/28 20:16:52 iha 1.9.4.4: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/04/27 13:32:47 iha 1.9.4.3: warnings removed 2004/04/26 11:46:58 iha 1.9.4.2: create CIDs via ObjectIdentifier 2004/03/11 12:06:18 iha 1.9.4.1: added parameter PreferredAspectRatio for charttype dependent 3D scene aspect ratio


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [29fd4a8c256552b27f6e2dc0fabb38705a4866f5]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2005/10/07 12:23:18 bm 1.4.4.3: RESYNC: (1.4-1.5); FILE MERGED 2004/04/28 20:16:52 iha 1.4.4.2: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/02/28 09:05:07 iha 1.4.4.1: added CandleStickChart + BarPositionHelper


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [eaf5f42407e590141e529530918eb82b63638bf2]

INTEGRATION: CWS chart2mst3 (1.33.4); FILE MERGED 2007/02/28 19:28:18 iha 1.33.4.63: #i74967# set parent to cloned data point 2007/02/06 16:10:27 iha 1.33.4.62: corrected label value in case of percent stacking 2007/01/19 19:10:04 iha 1.33.4.61: #i72978# percentage data labels are wrong with factor 100 2006/12/15 13:39:10 iha 1.33.4.60: #i72360# use axis number format for data labels when one is provided 2006/11/22 17:31:20 iha 1.33.4.59: resync 2006/11/19 21:40:43 iha 1.33.4.58: better performance for line charts without symbols 2006/11/09 15:31:01 iha 1.33.4.57: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/11/01 15:36:12 iha 1.33.4.56: cleanup resources + changed variable names according to style guide 2006/10/29 12:16:19 iha 1.33.4.55: use more readable varailbles STATTYP->REGRESSIONTYPE and ROWNAME->SERIESNAME for STR_STATISTICS_IN_LEGEND 2006/10/23 19:10:17 iha 1.33.4.54: #i65580# Legend shows no symbols for series with automatic symbols 2006/10/18 17:22:26 bm 1.33.4.53: RESYNC: (1.33-1.34); FILE MERGED 2006/10/12 10:54:17 iha 1.33.4.52: wrong selection of series - due to weakreferences of draw shapes dying to early -> switch back to normal references 2006/10/06 19:00:30 iha 1.33.4.51: hold shapes only per weak reference thus they can be removed for special pie resize 2006/10/06 18:52:08 iha 1.33.4.50: no ring distance for pies 2006/09/29 14:59:20 iha 1.33.4.49: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/08/01 09:48:31 bm 1.33.4.48: #i29600# resize the label sizes of data series with the diagram size if a reference size is set 2006/07/31 11:07:28 bm 1.33.4.47: #i66820# aLabelText was shadowed by a local variable on error. 2006/07/01 20:59:46 iha 1.33.4.46: define and respect aspect ratio of diagram 2006/04/27 09:33:02 bm 1.33.4.45: #64832# show correct color for pie segments which get attributed but still have the default color 2006/04/11 16:23:08 iha 1.33.4.44: always use 2d target for text shapes 2006/04/09 07:41:45 iha 1.33.4.43: correct position of legend symbols in data poiunt labels 2006/04/03 12:23:55 iha 1.33.4.42: correct selection handles and legend symbol position in data point labels 2006/03/29 22:24:47 iha 1.33.4.41: restructure legend entry creation + legend entries in data labels 2006/03/23 09:25:59 iha 1.33.4.40: categories for data labels 2006/03/09 17:41:17 iha 1.33.4.39: added header 2006/02/28 16:34:32 bm 1.33.4.38: initialize bAverageLine correctly 2006/01/12 18:03:24 iha 1.33.4.37: cleanup property mappings 2005/12/21 21:29:36 iha 1.33.4.36: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/25 16:29:47 iha 1.33.4.35: correct labels at z axis for deep stacking 2005/10/24 14:12:30 iha 1.33.4.34: coordinate system restructure 2005/10/24 11:07:09 iha 1.33.4.33: coordinate system restructure 2005/10/21 13:35:09 bm 1.33.4.32: enable FillBitmaps 2005/08/18 11:42:04 iha 1.33.4.31: moved colorscheme transport 2005/07/28 09:34:55 bm 1.33.4.30: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/22 12:53:39 bm 1.33.4.29: #124485# property FillBackground added 2005/07/21 14:47:14 bm 1.33.4.28: support for number formats from data provider 2005/07/12 12:57:13 bm 1.33.4.27: use named properties for gradients etc. in chart model 2005/06/23 14:39:41 iha 1.33.4.26: correct support for statistic properties 2005/05/11 13:03:08 dr 1.33.4.25: #i30426# enhanced scaling for stacked charts 2005/05/09 08:57:39 dr 1.33.4.24: #i30462# scaling for stacked charts 2005/05/02 10:32:00 iha 1.33.4.23: changed default values for paramters for autoscaling 2005/04/29 12:23:00 dr 1.33.4.22: #i30426# enhanced linear scaling 2005/04/28 15:49:13 dr 1.33.4.21: #i30426# enhanced linear scaling 2005/04/11 09:29:25 iha 1.33.4.20: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/17 12:20:49 iha 1.33.4.19: implement api redesign - dimension property 2004/09/17 11:24:22 iha 1.33.4.18: implement api redesign - dimension property 2004/06/29 19:42:06 iha 1.33.4.17: added parameter pOverwriteMap to method setMappedProperties 2004/04/14 09:24:14 iha 1.33.4.16: removed unused code 2004/04/14 08:30:17 iha 1.33.4.15: OSL_ENSURE instead of DBG_ASSERT 2004/04/13 16:34:23 iha 1.33.4.14: corrected stacking 2004/03/27 10:37:45 iha 1.33.4.13: error bars: uninitialized points if only one direction was assigned to the error bars 2004/03/24 17:25:24 iha 1.33.4.12: added parameter offset to method createDataLabel 2004/03/24 10:39:12 iha 1.33.4.11: change signature of ShapeFactory::createLine2D 2004/03/23 20:21:39 iha 1.33.4.10: make error bars more flexible for horizontal bar chart 2004/03/23 14:37:04 iha 1.33.4.9: renamed method getTransformation/Scaled/LogicToScene 2004/03/22 19:34:11 iha 1.33.4.8: transport information bSwapXAndYAxis over method setScales not constructor 2004/03/11 12:02:30 iha 1.33.4.7: added meethod getPreferredDiagramAspectRatio() for charttype dependent 3D scene aspect ratio 2004/03/01 17:24:08 iha 1.33.4.6: different x autoscaling for net chart 2004/02/28 09:07:29 iha 1.33.4.5: added CandleStick Chart + changed Y range calculation because of integration of candlestickchart + caching of summarized y values 2004/02/23 18:52:05 iha 1.33.4.4: auto scaling: make automatic border charttype dependent 2004/02/18 20:35:16 iha 1.33.4.3: add parameter 'ConnectLastToFirstPoint' for net chart 2004/02/17 20:19:08 iha 1.33.4.2: regression line was twice transformed to scene coordinates 2004/02/13 16:51:56 bm 1.33.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c1c5a4f88b64c007e11a06d679db8d27f6df6428]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/03/09 17:41:17 iha 1.2.4.1: added header


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e1a0bff2f77076a17de15aa24850719297e5274c]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/11/22 17:25:52 iha 1.5.4.7: RESYNC: (1.7-1.8); FILE MERGED 2006/10/18 17:22:18 bm 1.5.4.6: RESYNC: (1.6-1.7); FILE MERGED 2006/03/10 10:20:42 iha 1.5.4.5: don't use leading underscore 2006/03/09 17:41:17 iha 1.5.4.4: added header 2005/06/20 12:02:00 iha 1.5.4.3: corrected b slpine calculation 2004/03/24 12:31:11 bm 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2004/02/19 15:14:32 iha 1.5.4.1: don't change x values to integer anymore as we are working in logical values now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e11f4328da309002778462f29313503dfee9805f]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2006/10/06 18:48:41 iha 1.6.4.17: no ring distance for pies 2006/07/01 21:01:56 iha 1.6.4.16: define and respect aspect ratio of diagram 2006/03/09 17:41:17 iha 1.6.4.15: added header 2005/10/24 11:07:08 iha 1.6.4.14: coordinate system restructure 2005/08/18 11:42:04 iha 1.6.4.13: moved colorscheme transport 2005/07/28 09:34:54 bm 1.6.4.12: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/14 14:56:11 bm 1.6.4.11: removed radius offset parameter as this is now controlled by the UseRings property 2005/05/09 08:57:39 dr 1.6.4.10: #i30462# scaling for stacked charts 2005/04/29 12:23:00 dr 1.6.4.9: #i30426# enhanced linear scaling 2004/09/17 11:24:21 iha 1.6.4.8: implement api redesign - dimension property 2004/06/29 19:42:58 iha 1.6.4.7: Color Per Point 2004/05/08 17:54:55 iha 1.6.4.6: polartransformation fixes and pie offset implementation 2004/04/19 11:50:36 iha 1.6.4.5: enable switching between ring and pie 2004/04/14 08:31:51 iha 1.6.4.4: add methods getMin/MaximumX + setScales to set bSwapXAndYAxis correct 2004/04/13 16:34:23 iha 1.6.4.3: corrected stacking 2004/03/11 12:28:03 iha 1.6.4.2: added meethod getPreferredDiagramAspectRatio() for charttype dependent 3D scene aspect ratio 2004/02/23 18:53:00 iha 1.6.4.1: auto scaling: make automatic border charttype dependent


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [190c991a86ab4143c2002b2c67070c70597db681]

INTEGRATION: CWS chart2mst3 (1.13.4); FILE MERGED 2006/12/01 13:50:06 iha 1.13.4.37: correct dragging of pie segments after resync to aw024 (use no group shapes around the segments -> also better performance) 2006/11/22 17:31:20 iha 1.13.4.36: resync 2006/10/18 17:22:10 bm 1.13.4.35: RESYNC: (1.13-1.14); FILE MERGED 2006/10/06 19:05:36 iha 1.13.4.34: corrected transformation for ring radius 2006/10/06 18:56:11 iha 1.13.4.33: correct position of labels for 2D rings 2006/10/06 18:50:59 iha 1.13.4.32: no ring distance for pies 2006/09/29 14:59:20 iha 1.13.4.31: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/08/10 16:01:18 iha 1.13.4.30: Axis Label Layout - Font&Diagram Size 2006/07/01 21:02:22 iha 1.13.4.29: define and respect aspect ratio of diagram 2006/06/19 15:30:26 iha 1.13.4.28: different angle offset for 2D and 3D pies due to compatibility with older versions 2006/06/09 16:14:28 iha 1.13.4.27: adapted pie starting angle to old charts behaviour and made Pie more flat 2006/04/27 09:33:02 bm 1.13.4.26: #64832# show correct color for pie segments which get attributed but still have the default color 2006/01/12 18:01:36 iha 1.13.4.25: cleanup property mappings 2005/12/21 21:29:36 iha 1.13.4.24: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/03 18:54:48 iha 1.13.4.23: enable pie segment dragging 2005/10/24 11:07:08 iha 1.13.4.22: coordinate system restructure 2005/10/11 09:20:59 bm 1.13.4.21: license header change 2005/08/18 11:42:04 iha 1.13.4.20: moved colorscheme transport 2005/08/03 16:36:29 bm 1.13.4.19: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/28 09:34:54 bm 1.13.4.18: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/26 12:14:30 bm 1.13.4.17: use configuration colors in ColorProvider 2005/07/14 14:56:28 bm 1.13.4.16: removed radius offset parameter as this is now controlled by the UseRings property 2005/05/09 08:57:39 dr 1.13.4.15: #i30462# scaling for stacked charts 2005/04/29 12:23:00 dr 1.13.4.14: #i30426# enhanced linear scaling 2004/09/17 11:24:21 iha 1.13.4.13: implement api redesign - dimension property 2004/07/01 13:41:55 iha 1.13.4.12: use ColorProvider for default segment colors 2004/06/29 19:44:30 iha 1.13.4.11: Color Per Point 2004/05/10 12:32:22 bm 1.13.4.10: <:: error 2004/05/08 17:54:55 iha 1.13.4.9: polartransformation fixes and pie offset implementation 2004/04/19 11:46:28 iha 1.13.4.8: enable switching between ring and pie 2004/04/14 09:11:57 iha 1.13.4.7: removed unsued code 2004/04/14 08:32:58 iha 1.13.4.6: changed shape creation to one series per ring instead of one category per ring + add methods getMin/MaximumX + setScales to set bSwapXAndYAxis correct 2004/04/13 16:34:22 iha 1.13.4.5: corrected stacking 2004/03/23 14:36:40 iha 1.13.4.4: renamed method getTransformation/Scaled/LogicToScene 2004/03/22 19:33:48 iha 1.13.4.3: transport information bSwapXAndYAxis over method setScales not constructor 2004/03/11 12:27:55 iha 1.13.4.2: added meethod getPreferredDiagramAspectRatio() for charttype dependent 3D scene aspect ratio 2004/02/23 18:53:44 iha 1.13.4.1: auto scaling: make automatic border charttype dependent


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e7265dd18b7c02210da27cb94553f8ad7de4b077]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/03/09 17:41:17 iha 1.1.1.1.4.3: added header 2005/11/22 14:09:27 iha 1.1.1.1.4.2: support BarOverlap and GapWidth 2005/10/24 11:07:07 iha 1.1.1.1.4.1: coordinate system restructure


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0b9c79df732e69bea1e8f1c3c7e2fe32b86356d4]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:22:02 bm 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2006/03/09 17:41:17 iha 1.2.4.3: added header 2005/11/22 14:09:45 iha 1.2.4.2: support BarOverlap and GapWidth 2005/10/24 11:07:06 iha 1.2.4.1: coordinate system restructure


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5cac807886f6533437a40cfcab27487d7687be91]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/26 15:35:03 bm 1.1.2.12: #i75681# do not add legend symbols with non-localized and non-persistent strings 2007/03/20 13:38:48 iha 1.1.2.11: #i75562# correct scaling for stock charts 2006/10/10 09:12:14 iha 1.1.2.10: correct aspect ratio for stock charts 2006/03/29 22:24:47 iha 1.1.2.9: restructure legend entry creation + legend entries in data labels 2006/03/09 17:41:17 iha 1.1.2.8: added header 2005/10/24 11:07:06 iha 1.1.2.7: coordinate system restructure 2005/08/18 11:42:04 iha 1.1.2.6: moved colorscheme transport 2005/07/28 09:34:54 bm 1.1.2.5: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2004/09/17 11:24:21 iha 1.1.2.4: implement api redesign - dimension property 2004/04/13 16:34:22 iha 1.1.2.3: corrected stacking 2004/02/29 10:22:39 iha 1.1.2.2: create candlestick 2004/02/28 09:03:02 iha 1.1.2.1: new CandleStick Chart Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a5ce72cc11bd63f675a7d5ee2e169e7e2e68e991]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/26 15:35:03 bm 1.1.2.25: #i75681# do not add legend symbols with non-localized and non-persistent strings 2007/03/20 13:39:04 iha 1.1.2.24: #i75562# correct scaling for stock charts 2007/02/08 21:25:48 iha 1.1.2.23: resync m195 -> m202 2006/11/17 21:51:55 iha 1.1.2.22: don't loose ranges when sequence count is not suiteable for stock charts, show at least close values  when having not enough sequences 2006/10/10 09:12:22 iha 1.1.2.21: correct aspect ratio for stock charts 2006/03/29 22:24:47 iha 1.1.2.20: restructure legend entry creation + legend entries in data labels 2006/03/09 17:41:16 iha 1.1.2.19: added header 2005/12/21 21:29:36 iha 1.1.2.18: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/24 11:07:05 iha 1.1.2.17: coordinate system restructure 2005/08/18 11:42:03 iha 1.1.2.16: moved colorscheme transport 2005/07/28 09:34:54 bm 1.1.2.15: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/19 08:50:04 bm 1.1.2.14: show candlesticks with height 0 as negative (like in old chart) 2005/07/13 10:45:29 bm 1.1.2.13: workaround for empty rectangles 2004/09/17 11:24:21 iha 1.1.2.12: implement api redesign - dimension property 2004/04/27 13:32:46 iha 1.1.2.11: warnings removed 2004/04/13 16:34:22 iha 1.1.2.10: corrected stacking 2004/03/24 17:22:30 iha 1.1.2.9: removed unused include 2004/03/04 10:51:02 iha 1.1.2.8: use slot width for width of candle sticks 2004/03/02 17:40:39 iha 1.1.2.7: correct not japanese fist last 2004/03/02 15:22:05 iha 1.1.2.6: added labels 2004/03/02 13:14:56 iha 1.1.2.5: use named point group for range line 2004/03/01 20:18:22 iha 1.1.2.4: use named groups for selection handling 2004/03/01 19:28:34 iha 1.1.2.3: use correct properties for shapes 2004/02/29 10:22:39 iha 1.1.2.2: create candlestick 2004/02/28 09:03:35 iha 1.1.2.1: new CandleStick Chart Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [43a098b87ef7191fd44a118315d83274e184891c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/24 11:07:04 iha 1.1.2.7: coordinate system restructure 2005/10/11 09:20:59 bm 1.1.2.6: license header change 2004/04/29 11:25:52 iha 1.1.2.5: corrected position of z axis in case of swapped axis 2004/04/29 09:28:04 iha 1.1.2.4: correct 3d bar object position and size 2004/03/23 14:35:40 iha 1.1.2.3: renamed methid getTransformation/Scaled/LogicToScene 2004/03/22 15:48:34 iha 1.1.2.2: added parameter SwapXAndYAxis for horizontal bar chart 2004/02/28 08:42:08 iha 1.1.2.1: moved from BarChart to share with CandleStickChart Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ef3d2d04b6e924de28acc5ab262c7d648e5bfd19]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:48 iha 1.1.2.9: resync m195 -> m202 2006/11/22 17:31:19 iha 1.1.2.8: resync 2005/10/24 11:07:03 iha 1.1.2.7: coordinate system restructure 2005/10/11 09:20:58 bm 1.1.2.6: license header change 2004/03/23 14:36:00 iha 1.1.2.5: renamed methid getTransformation/Scaled/LogicToScene 2004/03/22 17:31:50 iha 1.1.2.4: added parameter SwapXAndYAxis to Linear3DTransformation for horizontal bar chart 2004/03/22 15:48:10 iha 1.1.2.3: added parameter and member SwapXAndYAxis for horizontal bar chart 2004/03/10 09:54:04 iha 1.1.2.2: cleanup 2004/02/28 08:43:07 iha 1.1.2.1: moved from BarChart to share with CandleStickChart Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [aa527a31474ce90c57f36c54371cd1eabe3bae7d]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/07/01 21:00:52 iha 1.5.4.17: define and respect aspect ratio of diagram 2006/03/09 17:41:16 iha 1.5.4.16: added header 2005/11/22 14:10:54 iha 1.5.4.15: support BarOverlap and GapWidth 2005/10/24 11:07:03 iha 1.5.4.14: coordinate system restructure 2005/08/18 11:42:03 iha 1.5.4.13: moved colorscheme transport 2005/07/28 09:34:54 bm 1.5.4.12: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/04/28 15:49:13 dr 1.5.4.11: #i30426# enhanced linear scaling 2004/09/17 11:24:20 iha 1.5.4.10: implement api redesign - dimension property 2004/04/29 09:28:04 iha 1.5.4.9: correct 3d bar object position and size 2004/04/28 20:16:51 iha 1.5.4.8: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/03/24 17:26:36 iha 1.5.4.7: changed method getLabelScreenPositionAndAlignment 2004/03/23 14:55:03 iha 1.5.4.6: removed method createDataPoint2D_Bar 2004/03/11 12:27:28 iha 1.5.4.5: added meethod getPreferredDiagramAspectRatio() for charttype dependent 3D scene aspect ratio 2004/03/09 09:03:11 iha 1.5.4.4: crash with negative pyramid; do not change base width of cuboids and cylinders with height 2004/03/08 19:00:51 iha 1.5.4.3: read DataPointGeometry from model 2004/02/28 08:47:14 iha 1.5.4.2: special autoscaling for Y (because of grounding line) 2004/02/23 18:55:02 iha 1.5.4.1: auto scaling: make automatic border charttype dependent


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8b20047070b1fdec6849b981b6dc652d16236009]

INTEGRATION: CWS chart2mst3 (1.15.4); FILE MERGED 2007/04/20 08:11:19 iha 1.15.4.41: #i75393# Connect Bars per diagram not per series 2007/02/01 16:20:26 iha 1.15.4.40: keep preparation for bars side by side 2006/11/09 15:33:48 iha 1.15.4.39: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/18 17:21:44 bm 1.15.4.38: RESYNC: (1.15-1.16); FILE MERGED 2006/10/13 10:50:03 dr 1.15.4.37: #i70395# render percent bar charts correctly 2006/10/11 11:49:23 dr 1.15.4.36: #i67757# connect first/last point in radarcharts correctly 2006/09/24 09:12:57 iha 1.15.4.35: #i61970# correct implementation of axis at 2006/07/01 21:01:33 iha 1.15.4.34: define and respect aspect ratio of diagram 2006/03/09 17:41:16 iha 1.15.4.33: added header 2006/01/15 13:22:15 iha 1.15.4.32: correct geometry for 3D percent stacked pyramids and cones 2006/01/15 12:26:03 iha 1.15.4.31: corrected direction of negative stacked bars 2006/01/15 12:06:51 iha 1.15.4.30: corrected size of bars, cones etc. 2006/01/14 13:55:12 iha 1.15.4.29: respect PercentDiagonal Property as boolean for bars 2005/12/21 21:29:35 iha 1.15.4.28: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/05 18:06:47 iha 1.15.4.27: Connection Lines for Stacked Bar Charts 2005/11/25 16:30:46 iha 1.15.4.26: correct labels at z axis for deep stacking 2005/11/24 18:32:43 bm 1.15.4.25: transparency gradients enabled 2005/11/22 14:10:35 iha 1.15.4.24: support BarOverlap and GapWidth 2005/10/24 11:07:02 iha 1.15.4.23: coordinate system restructure 2005/08/19 16:14:07 iha 1.15.4.22: implement percent stacking 2005/08/18 11:42:03 iha 1.15.4.21: moved colorscheme transport 2005/07/28 09:34:53 bm 1.15.4.20: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/12 12:57:13 bm 1.15.4.19: use named properties for gradients etc. in chart model 2005/05/11 13:03:06 dr 1.15.4.18: #i30426# enhanced scaling for stacked charts 2005/04/28 15:49:13 dr 1.15.4.17: #i30426# enhanced linear scaling 2004/09/17 11:24:20 iha 1.15.4.16: implement api redesign - dimension property 2004/05/05 15:59:25 iha 1.15.4.15: warning removed 2004/04/29 09:28:04 iha 1.15.4.14: correct 3d bar object position and size 2004/04/28 20:16:51 iha 1.15.4.13: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/04/27 15:00:41 iha 1.15.4.12: warnings removed 2004/04/13 16:34:22 iha 1.15.4.11: corrected stacking 2004/03/24 17:30:26 iha 1.15.4.10: correct label positions for horizontal bars incl. changed method getLabelScreenPositionAndAlignment 2004/03/23 14:55:55 iha 1.15.4.9: enable 2D horizontal bars + removed method createDataPoint2D_Bar 2004/03/23 14:42:30 iha 1.15.4.8: renamed method getTransformation/Scaled/LogicToScene 2004/03/11 12:27:20 iha 1.15.4.7: added meethod getPreferredDiagramAspectRatio() for charttype dependent 3D scene aspect ratio 2004/03/10 09:56:11 iha 1.15.4.6: make logic depth and width equal for 3D bar shapes 2004/03/09 09:03:00 iha 1.15.4.5: crash with negative pyramid; do not change base width of cuboids and cylinders with height 2004/03/08 19:01:23 iha 1.15.4.4: read DataPointGeometry from model 2004/02/28 08:46:50 iha 1.15.4.3: special autoscaling for Y (because of grounding line)+ moving of BarPositionHelper + some cleanup 2004/02/23 18:55:23 iha 1.15.4.2: auto scaling: make automatic border charttype dependent 2004/02/17 21:42:10 iha 1.15.4.1: show regression curve also if first points are null


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d6fc21f239297c77ef6915724bcd1909a57373d1]

INTEGRATION: CWS chart2mst3 (1.12.4); FILE MERGED 2006/10/23 19:14:45 iha 1.12.4.17: #i65580# Legend shows no symbols for series with automatic symbols 2006/09/29 14:59:20 iha 1.12.4.16: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/09/24 09:12:57 iha 1.12.4.15: #i61970# correct implementation of axis at 2006/07/01 20:59:29 iha 1.12.4.14: define and respect aspect ratio of diagram 2006/03/29 22:24:46 iha 1.12.4.13: restructure legend entry creation + legend entries in data labels 2006/03/09 17:41:16 iha 1.12.4.12: added header 2006/02/23 13:29:46 iha 1.12.4.11: enable gaps for NAN values in line charts 2005/10/24 11:07:01 iha 1.12.4.10: coordinate system restructure 2005/08/18 11:42:03 iha 1.12.4.9: moved colorscheme transport 2005/07/28 09:34:53 bm 1.12.4.8: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/05/09 08:57:39 dr 1.12.4.7: #i30462# scaling for stacked charts 2005/04/28 15:49:13 dr 1.12.4.6: #i30426# enhanced linear scaling 2004/09/17 11:24:20 iha 1.12.4.5: implement api redesign - dimension property 2004/04/13 16:34:22 iha 1.12.4.4: corrected stacking 2004/03/01 17:22:58 iha 1.12.4.3: different x autoscaling for net chart 2004/02/28 08:36:19 iha 1.12.4.2: special autoscaling for Y (because of area grounding line) 2004/02/18 20:34:27 iha 1.12.4.1: add parameter 'ConnectLastToFirstPoint' for net chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4d9494777bbcb802bccd026944f562f8531feca6]

INTEGRATION: CWS chart2mst3 (1.43.4); FILE MERGED 2007/04/19 09:42:53 bm 1.43.4.45: #i68044# show correct legend symbol for 3d line charts 2007/02/15 17:42:26 iha 1.43.4.44: #i74577# wrong values displayed in labels on area charts 2006/11/23 18:36:05 iha 1.43.4.43: replace DoubleRectangle with B2DRectangle and DoublePoint with B2DTuple 2006/11/22 17:25:39 iha 1.43.4.42: RESYNC: (1.44-1.45); FILE MERGED 2006/11/19 21:41:16 iha 1.43.4.41: better performance for line charts without symbols 2006/11/09 15:34:10 iha 1.43.4.40: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/23 19:15:33 iha 1.43.4.39: #i65580# Legend shows no symbols for series with automatic symbols 2006/10/18 17:21:37 bm 1.43.4.38: RESYNC: (1.43-1.44); FILE MERGED 2006/10/11 11:49:23 dr 1.43.4.37: #i67757# connect first/last point in radarcharts correctly 2006/10/10 16:51:34 iha 1.43.4.36: do stack absolute values for 3D areas 2006/10/10 16:50:20 iha 1.43.4.35: ignore origin for 3D Area and Lines 2006/10/09 15:34:02 dr 1.43.4.34: #i70133# handling of missing data points 2006/09/29 14:59:19 iha 1.43.4.33: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/09/24 09:12:57 iha 1.43.4.32: #i61970# correct implementation of axis at 2006/09/23 07:50:33 iha 1.43.4.31: apply texture correctly to 3D lines + crash with 3D lines #67868# 2006/07/01 20:59:20 iha 1.43.4.30: define and respect aspect ratio of diagram 2006/03/29 22:24:46 iha 1.43.4.29: restructure legend entry creation + legend entries in data labels 2006/03/09 17:41:16 iha 1.43.4.28: added header 2006/02/23 13:29:32 iha 1.43.4.27: enable gaps for NAN values in line charts 2006/01/12 18:01:08 iha 1.43.4.26: cleanup property mappings 2005/12/21 21:29:35 iha 1.43.4.25: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/21 14:10:57 dr 1.43.4.24: border color for symbols 2005/12/20 14:13:48 dr 1.43.4.23: API struct member names without prefixes 2005/12/05 18:05:10 iha 1.43.4.22: methods moved from AreaChart to here 2005/11/25 16:30:18 iha 1.43.4.21: correct labels at z axis for deep stacking 2005/11/24 15:08:28 bm 1.43.4.20: symbol graphics support 2005/11/08 21:55:53 iha 1.43.4.19: adapt series order to old style for area and scatter charts 2005/10/24 11:07:01 iha 1.43.4.18: coordinate system restructure 2005/08/19 16:13:42 iha 1.43.4.17: implement percent stacking 2005/08/18 11:42:03 iha 1.43.4.16: moved colorscheme transport 2005/07/28 09:34:53 bm 1.43.4.15: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/19 18:57:51 iha 1.43.4.14: create auto symbols 2005/05/09 08:57:38 dr 1.43.4.13: #i30462# scaling for stacked charts 2005/04/28 15:49:12 dr 1.43.4.12: #i30426# enhanced linear scaling 2004/09/17 12:20:48 iha 1.43.4.11: implement api redesign - dimension property 2004/09/17 11:24:20 iha 1.43.4.10: implement api redesign - dimension property 2004/04/27 13:32:46 iha 1.43.4.9: warnings removed 2004/04/13 16:34:21 iha 1.43.4.8: corrected stacking 2004/03/24 17:22:10 iha 1.43.4.7: removed unused include 2004/03/24 10:39:12 iha 1.43.4.6: change signature of ShapeFactory::createLine2D 2004/03/10 09:53:10 iha 1.43.4.5: correct last point for net chart for correct clipping 2004/03/01 18:16:54 iha 1.43.4.4: don't do scaling twice 2004/03/01 17:23:38 iha 1.43.4.3: different x autoscaling for net chart 2004/02/28 08:36:06 iha 1.43.4.2: special autoscaling for Y (because of area grounding line) 2004/02/18 20:34:53 iha 1.43.4.1: add parameter 'ConnectLastToFirstPoint' for net chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5a765860dfd549f84f4bde3ce257fafb0ca09473]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/08/22 15:15:55 iha 1.2.4.6: separate implementation of polar angle axis and polar radius axis 2006/08/10 16:01:45 iha 1.2.4.5: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:38 iha 1.2.4.4: api restructure axis, grids, scales and increments 2006/03/23 15:31:53 iha 1.2.4.3: cleanup category handling 2005/10/07 12:15:03 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/02/26 12:18:09 iha 1.2.4.1: share coordinate systems and scales for combi charts


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f3ef888dfeb2e9e22e82f792d795c27c64c43503]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/23 17:07:27 iha 1.1.2.4: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/22 19:46:37 iha 1.1.2.3: some axes cleanup 2006/08/22 19:10:27 iha 1.1.2.2: correct y axis for net charts: show labels + take space for labels into account for diagram size 2006/08/22 15:11:36 iha 1.1.2.1: separate implementation of polar angle axis and polar radius axis


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a84a707a4986480f2f59519523bbc1a03df1040a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:48 iha 1.1.2.7: resync m195 -> m202 2006/11/22 17:31:19 iha 1.1.2.6: resync 2006/08/23 17:07:27 iha 1.1.2.5: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/22 19:50:16 iha 1.1.2.4: correct selection handles for polar radius axis 2006/08/22 19:46:37 iha 1.1.2.3: some axes cleanup 2006/08/22 19:10:20 iha 1.1.2.2: correct y axis for net charts: show labels + take space for labels into account for diagram size 2006/08/22 15:12:13 iha 1.1.2.1: separate implementation of polar angle axis and polar radius axis


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4b55c4db443a145639dbd42bd9d02ef697f98dae]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2006/04/10 15:03:38 iha 1.3.12.4: api restructure axis, grids, scales and increments 2006/04/10 12:25:18 iha 1.3.12.3: api restructure axis, grids, scales and increments 2005/12/21 21:29:34 iha 1.3.12.2: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/18 20:50:41 iha 1.3.12.1: enable selection of subgrids


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9cbe4e542e372fd78c42fdf972a7e2c624f6997b]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/10/18 17:21:28 bm 1.5.4.12: RESYNC: (1.6-1.7); FILE MERGED 2006/04/10 15:03:38 iha 1.5.4.11: api restructure axis, grids, scales and increments 2006/04/10 12:25:18 iha 1.5.4.10: api restructure axis, grids, scales and increments 2006/01/16 15:04:53 iha 1.5.4.9: don't create invisible gridlines 2005/12/21 21:29:34 iha 1.5.4.8: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/03 18:56:47 iha 1.5.4.7: method createClassifiedIdentifier changed for enable pie segment dragging 2005/11/18 20:50:41 iha 1.5.4.6: enable selection of subgrids 2005/10/07 12:19:36 bm 1.5.4.5: RESYNC: (1.5-1.6); FILE MERGED 2004/04/27 13:32:45 iha 1.5.4.4: warnings removed 2004/03/24 10:39:10 iha 1.5.4.3: change signature of ShapeFactory::createLine2D 2004/03/23 18:36:50 iha 1.5.4.2: fixed logarithmic polar scale 2004/03/22 19:40:34 iha 1.5.4.1: transport information bSwapXAndYAxis over method setScales not constructor


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1e4979cafef86bca097d6abec564da305cc3897b]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/11/09 15:32:56 iha 1.2.4.7: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/08/25 17:16:48 iha 1.2.4.6: text- and diagram-size dependent auto main step width 2006/08/23 17:07:27 iha 1.2.4.5: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/10 16:02:24 iha 1.2.4.4: Axis Label Layout - Font&Diagram Size 2005/10/13 17:39:12 iha 1.2.4.3: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:19:24 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2005/06/07 16:03:28 iha 1.2.4.1: use numberformatter from model


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fb3155d6881d3bdb226080c700524ce53e338078]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2006/11/09 15:33:04 iha 1.4.4.18: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/18 17:21:21 bm 1.4.4.17: RESYNC: (1.6-1.7); FILE MERGED 2006/09/24 09:12:56 iha 1.4.4.16: #i61970# correct implementation of axis at 2006/08/25 17:16:48 iha 1.4.4.15: text- and diagram-size dependent auto main step width 2006/08/23 17:07:26 iha 1.4.4.14: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/22 15:42:08 iha 1.4.4.13: separate implementation of polar angle axis and polar radius axis 2006/08/10 16:02:51 iha 1.4.4.12: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:38 iha 1.4.4.11: api restructure axis, grids, scales and increments 2006/04/10 12:25:18 iha 1.4.4.10: api restructure axis, grids, scales and increments 2006/03/23 15:31:53 iha 1.4.4.9: cleanup category handling 2005/12/21 21:29:33 iha 1.4.4.8: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/24 11:07:00 iha 1.4.4.7: coordinate system restructure 2005/10/13 17:39:12 iha 1.4.4.6: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:19:13 bm 1.4.4.5: RESYNC: (1.5-1.6); FILE MERGED 2005/06/07 16:03:27 iha 1.4.4.4: use numberformatter from model 2004/04/01 12:22:35 iha 1.4.4.3: make shape creation more fail save 2004/03/24 12:31:40 bm 1.4.4.2: RESYNC: (1.4-1.5); FILE MERGED 2004/03/22 19:40:00 iha 1.4.4.1: transport information bSwapXAndYAxis over method setScales


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d1d91beaf7e978ee927ce52db817cfaf892653f9]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/08/22 19:46:37 iha 1.3.4.7: some axes cleanup 2006/08/22 15:15:11 iha 1.3.4.6: separate implementation of polar angle axis and polar radius axis 2006/08/10 16:03:46 iha 1.3.4.5: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:38 iha 1.3.4.4: api restructure axis, grids, scales and increments 2006/04/10 12:25:18 iha 1.3.4.3: api restructure axis, grids, scales and increments 2005/10/07 12:18:59 bm 1.3.4.2: RESYNC: (1.3-1.4); FILE MERGED 2005/06/07 16:03:27 iha 1.3.4.1: use numberformatter from model


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3e662a9a91922025332214928baaaebd38500f97]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/10/18 17:21:12 bm 1.5.4.20: RESYNC: (1.6-1.7); FILE MERGED 2006/08/22 19:46:37 iha 1.5.4.19: some axes cleanup 2006/08/22 15:15:37 iha 1.5.4.18: separate implementation of polar angle axis and polar radius axis 2006/08/16 16:29:11 iha 1.5.4.17: correct distance between diagram and category labels for net chart 2006/08/10 16:05:47 iha 1.5.4.16: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:37 iha 1.5.4.15: api restructure axis, grids, scales and increments 2006/04/10 12:25:18 iha 1.5.4.14: api restructure axis, grids, scales and increments 2006/03/23 15:31:52 iha 1.5.4.13: cleanup category handling 2006/02/21 19:41:58 iha 1.5.4.12: added property show to axis to make axis title possible with invisible axis and enlarge lifetime for old api 2005/12/21 21:29:33 iha 1.5.4.11: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/07 12:18:42 bm 1.5.4.10: RESYNC: (1.5-1.6); FILE MERGED 2005/09/16 16:50:19 iha 1.5.4.9: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/22 17:15:44 iha 1.5.4.8: use percent numberformat in case of percent stacking and use of source format 2005/06/08 11:33:59 iha 1.5.4.7: use number format key at API instead of string 2005/06/07 16:03:26 iha 1.5.4.6: use numberformatter from model 2004/05/08 17:54:55 iha 1.5.4.5: polartransformation fixes and pie offset implementation 2004/03/24 10:39:07 iha 1.5.4.4: change signature of ShapeFactory::createLine2D 2004/03/22 19:41:03 iha 1.5.4.3: transport information bSwapXAndYAxis over method setScales not constructor 2004/03/08 16:40:13 iha 1.5.4.2: no 3D 2004/02/20 17:56:41 iha 1.5.4.1: integrate categories at axis in view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bb1db236cf049e9644a1da9ef5d47139e28f91f9]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/22 15:10:40 iha 1.1.2.1: separate implementation of polar angle axis and polar radius axis


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6265fb0b5ac62e3f77817c44fc5eec57168c1d1d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/23 17:41:06 iha 1.1.2.2: replace Vector2D with B2DVector 2006/08/22 15:10:54 iha 1.1.2.1: separate implementation of polar angle axis and polar radius axis


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c937dfca172ff77a8ee8a5210059c94538bb8a06]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/12/01 18:37:56 iha 1.5.4.27: #68896# always save the explicit number format 2006/11/13 16:29:21 iha 1.5.4.26: #i71259# source format for 2nd axis does not work correctly 2006/11/09 15:29:40 iha 1.5.4.25: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/25 15:14:31 iha 1.5.4.24: 'Axis at' also for not-category x-axis 2006/10/18 17:21:04 bm 1.5.4.23: RESYNC: (1.6-1.7); FILE MERGED 2006/10/13 09:30:56 iha 1.5.4.22: #i66856# correct sourceformat for x axis 2006/09/24 09:12:56 iha 1.5.4.21: #i61970# correct implementation of axis at 2006/08/25 17:16:47 iha 1.5.4.20: text- and diagram-size dependent auto main step width 2006/08/23 17:07:26 iha 1.5.4.19: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/10 15:55:05 iha 1.5.4.18: Axis Label Layout - Font&Diagram Size 2006/07/31 17:17:37 bm 1.5.4.17: warning removed: needSeriesNamesForAxis() could return nothing 2006/04/10 15:03:37 iha 1.5.4.16: api restructure axis, grids, scales and increments 2006/04/10 12:25:17 iha 1.5.4.15: api restructure axis, grids, scales and increments 2006/03/23 15:31:52 iha 1.5.4.14: cleanup category handling 2005/12/21 21:29:32 iha 1.5.4.13: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/28 15:00:26 iha 1.5.4.12: make more failsafe 2005/11/25 16:31:20 iha 1.5.4.11: correct labels at z axis for deep stacking 2005/10/25 11:54:02 bm 1.5.4.10: Solaris compiler did not like map access 2005/10/24 11:06:59 iha 1.5.4.9: coordinate system restructure 2005/10/13 17:39:11 iha 1.5.4.8: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:18:03 bm 1.5.4.7: RESYNC: (1.5-1.6); FILE MERGED 2005/06/07 16:03:26 iha 1.5.4.6: use numberformatter from model 2005/04/29 12:21:56 dr 1.5.4.5: #i30426# enhanced linear scaling 2005/04/28 15:47:29 dr 1.5.4.4: #i30426# enhanced linear scaling 2004/03/22 19:33:11 iha 1.5.4.3: added method getPropertySwapXAndYAxis() 2004/02/26 12:18:09 iha 1.5.4.2: share coordinate systems and scales for combi charts 2004/02/23 18:59:41 iha 1.5.4.1: auto scaling: make automatic border charttype dependent


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8affeff4ff367ef8dd8719d75c8ea85705af0fed]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/04/10 15:03:37 iha 1.2.4.5: api restructure axis, grids, scales and increments 2006/04/10 12:25:17 iha 1.2.4.4: api restructure axis, grids, scales and increments 2005/10/07 12:17:52 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/03/22 19:39:19 iha 1.2.4.2: transport information bSwapXAndYAxis over method setScales not constructor 2004/03/22 17:33:44 iha 1.2.4.1: added parameter SwapXAndYAxis for horizontal bar chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ddd6609696deffed485bc4b70fa699e4301e6c82]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/11/25 14:44:32 iha 1.3.4.17: wrong polygon index 2006/10/18 17:20:56 bm 1.3.4.16: RESYNC: (1.4-1.5); FILE MERGED 2006/04/10 18:32:12 iha 1.3.4.15: api restructure axis, grids, scales and increments 2006/04/10 15:03:37 iha 1.3.4.14: api restructure axis, grids, scales and increments 2006/04/10 12:25:17 iha 1.3.4.13: api restructure axis, grids, scales and increments 2006/01/16 14:47:09 iha 1.3.4.12: don't create invisible gridlines 2005/12/21 21:29:32 iha 1.3.4.11: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/03 18:56:19 iha 1.3.4.10: method createClassifiedIdentifier changed for enable pie segment dragging 2005/11/18 20:50:40 iha 1.3.4.9: enable selection of subgrids 2005/11/18 18:19:56 iha 1.3.4.8: restructuring for proper subgrid support 2005/10/07 12:17:30 bm 1.3.4.7: RESYNC: (1.3-1.4); FILE MERGED 2005/07/19 19:11:55 iha 1.3.4.6: don'T create subgrids 2004/04/01 12:13:07 iha 1.3.4.5: make shape creation more fail save 2004/03/24 10:39:06 iha 1.3.4.4: change signature of ShapeFactory::createLine2D 2004/03/23 14:34:09 iha 1.3.4.3: renamed methid getTransformation/Scaled/LogicToScene 2004/03/22 19:37:09 iha 1.3.4.2: transport information bSwapXAndYAxis over method setScales not constructor 2004/03/22 17:34:07 iha 1.3.4.1: added parameter SwapXAndYAxis for horizontal bar chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b59f2bcd86b20dbba726bd2b5e72a3da9a509800]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/08/25 17:16:47 iha 1.2.4.6: text- and diagram-size dependent auto main step width 2006/08/23 17:07:26 iha 1.2.4.5: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/10 15:53:28 iha 1.2.4.4: Axis Label Layout - Font&Diagram Size 2005/10/13 17:39:11 iha 1.2.4.3: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:17:17 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2005/06/07 16:03:26 iha 1.2.4.1: use numberformatter from model


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8be233c5dcf0ea32a60a927708fea44e2e01ef24]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:20:48 bm 1.3.4.20: RESYNC: (1.5-1.6); FILE MERGED 2006/09/24 09:12:56 iha 1.3.4.19: #i61970# correct implementation of axis at 2006/08/25 17:16:47 iha 1.3.4.18: text- and diagram-size dependent auto main step width 2006/08/23 17:07:26 iha 1.3.4.17: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/10 15:53:58 iha 1.3.4.16: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:37 iha 1.3.4.15: api restructure axis, grids, scales and increments 2006/04/10 12:25:17 iha 1.3.4.14: api restructure axis, grids, scales and increments 2006/03/23 15:31:52 iha 1.3.4.13: cleanup category handling 2005/12/21 21:29:31 iha 1.3.4.12: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/25 16:32:06 iha 1.3.4.11: correct labels at z axis for deep stacking 2005/10/24 11:06:58 iha 1.3.4.10: coordinate system restructure 2005/10/13 17:39:10 iha 1.3.4.9: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:17:03 bm 1.3.4.8: RESYNC: (1.4-1.5); FILE MERGED 2005/06/07 16:03:25 iha 1.3.4.7: use numberformatter from model 2004/04/01 12:22:15 iha 1.3.4.6: make shape creation more fail save 2004/03/24 12:31:32 bm 1.3.4.5: RESYNC: (1.3-1.4); FILE MERGED 2004/03/22 19:35:58 iha 1.3.4.4: transport information bSwapXAndYAxis over method setScales not constructor; used new method getPropertySwapXAndYAxis 2004/03/22 17:35:12 iha 1.3.4.3: added parameter SwapXAndYAxis also to grid 2004/03/22 15:45:53 iha 1.3.4.2: read property SwapXAndYAxis from CoordinateSystem model and feed AxisProperties 2004/03/12 15:36:43 iha 1.3.4.1: get axis position from model


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [30ed5b0c9ffe780fb67a21842c455b4b443c9e2a]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/11/23 17:41:06 iha 1.3.4.11: replace Vector2D with B2DVector 2006/10/13 08:21:59 iha 1.3.4.10: implement automatic break feature for horizontal text axes 2006/08/29 09:19:44 iha 1.3.4.9: implement automatic staggering of axis labels 2006/08/25 17:16:47 iha 1.3.4.8: text- and diagram-size dependent auto main step width 2006/08/22 19:46:37 iha 1.3.4.7: some axes cleanup 2006/08/10 16:06:23 iha 1.3.4.6: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:36 iha 1.3.4.5: api restructure axis, grids, scales and increments 2006/04/10 12:25:17 iha 1.3.4.4: api restructure axis, grids, scales and increments 2005/10/07 12:16:49 bm 1.3.4.3: RESYNC: (1.3-1.4); FILE MERGED 2005/06/07 16:03:04 iha 1.3.4.2: use numberformatter from model 2004/02/20 17:56:41 iha 1.3.4.1: integrate categories at axis in view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f0e7bc79396d0d8ffd1813b0201bf47ba6a8c228]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2006/11/23 18:36:05 iha 1.4.4.36: replace DoubleRectangle with B2DRectangle and DoublePoint with B2DTuple 2006/11/23 17:41:06 iha 1.4.4.35: replace Vector2D with B2DVector 2006/11/02 11:53:13 iha 1.4.4.34: no automatic break for more than 100 labels 2006/10/18 17:20:40 bm 1.4.4.33: RESYNC: (1.5-1.6); FILE MERGED 2006/10/13 08:22:22 iha 1.4.4.32: implement automatic break feature for horizontal text axes 2006/10/12 13:43:29 iha 1.4.4.31: staggering odd and even was mixed 2006/08/29 16:11:47 iha 1.4.4.30: corrected check lcl_doesShapeOverlapWithTickmark 2006/08/29 12:26:22 iha 1.4.4.29: correct overlap detection for rotated axis labels 2006/08/29 09:14:53 iha 1.4.4.28: implement automatic staggering of axis labels 2006/08/25 17:16:47 iha 1.4.4.27: text- and diagram-size dependent auto main step width 2006/08/22 19:46:36 iha 1.4.4.26: some axes cleanup 2006/08/10 15:52:20 iha 1.4.4.25: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:36 iha 1.4.4.24: api restructure axis, grids, scales and increments 2006/04/10 12:25:16 iha 1.4.4.23: api restructure axis, grids, scales and increments 2006/03/23 15:31:52 iha 1.4.4.22: cleanup category handling 2006/03/19 20:01:51 iha 1.4.4.21: don't create two different objects with the same name 2006/02/21 19:41:35 iha 1.4.4.20: added property show to axis to make axis title possible with invisible axis and enlarge lifetime for old api 2005/12/21 21:29:31 iha 1.4.4.19: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/25 16:32:34 iha 1.4.4.18: correct labels at z axis for deep stacking 2005/11/08 18:46:19 iha 1.4.4.17: correct axis position for swapped coordinate system with reverse scaling 2005/10/07 12:16:39 bm 1.4.4.16: RESYNC: (1.4-1.5); FILE MERGED 2005/09/16 16:50:18 iha 1.4.4.15: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/22 17:15:12 iha 1.4.4.14: use percent numberformat in case of percent stacking and use of source format 2005/06/08 11:33:32 iha 1.4.4.13: use number format key at API instead of string 2005/06/07 16:02:43 iha 1.4.4.12: use numberformatter from model 2004/04/29 11:25:52 iha 1.4.4.11: corrected position of z axis in case of swapped axis 2004/04/29 09:28:03 iha 1.4.4.10: correct 3d bar object position and size 2004/04/28 20:16:50 iha 1.4.4.9: removed /cvs/graphics/chart2/source/inc/RegressionCurveHelper.hxx,v: needs patch 2004/04/27 13:32:44 iha 1.4.4.8: warnings removed 2004/03/24 10:39:05 iha 1.4.4.7: change signature of ShapeFactory::createLine2D 2004/03/22 19:36:31 iha 1.4.4.6: transport information bSwapXAndYAxis over method setScales not constructor 2004/03/22 15:44:14 iha 1.4.4.5: use member SwapXAndYAxis from AxisProperties for different plottingpositionhelper for horizontal bar chart 2004/03/08 16:49:33 iha 1.4.4.4: handle empty text shapes 2004/03/04 10:54:36 iha 1.4.4.3: enable 3D 2004/02/20 17:56:40 iha 1.4.4.2: integrate categories at axis in view 2004/02/13 16:51:55 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7c59266e8bd71392dc03bb09a8277a55a6f69103]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2006/08/10 15:51:02 iha 1.4.4.9: Axis Label Layout - Font&Diagram Size 2006/04/10 12:25:16 iha 1.4.4.8: api restructure axis, grids, scales and increments 2006/03/23 15:31:52 iha 1.4.4.7: cleanup category handling 2005/10/07 12:16:28 bm 1.4.4.6: RESYNC: (1.4-1.5); FILE MERGED 2005/09/16 16:50:18 iha 1.4.4.5: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/22 17:14:28 iha 1.4.4.4: use percent numberformat in case of percent stacking and use of source format 2005/06/08 11:33:05 iha 1.4.4.3: use number format key at API instead of string 2004/03/22 15:30:29 iha 1.4.4.2: added member SwapXAndYAxis for horizontal bar chart 2004/02/20 17:56:40 iha 1.4.4.1: integrate categories at axis in view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [70f8e0e9c23d31ee51e4ba15df6e26da732e7d74]

INTEGRATION: CWS chart2mst3 (1.8.4); FILE MERGED 2006/10/18 17:20:32 bm 1.8.4.18: RESYNC: (1.9-1.10); FILE MERGED 2006/08/10 15:51:30 iha 1.8.4.17: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:36 iha 1.8.4.16: api restructure axis, grids, scales and increments 2006/04/10 12:25:16 iha 1.8.4.15: api restructure axis, grids, scales and increments 2006/03/23 15:31:51 iha 1.8.4.14: cleanup category handling 2005/11/25 16:33:07 iha 1.8.4.13: correct labels at z axis for deep stacking 2005/10/24 11:06:58 iha 1.8.4.12: coordinate system restructure 2005/10/13 17:39:10 iha 1.8.4.11: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:16:18 bm 1.8.4.10: RESYNC: (1.8-1.9); FILE MERGED 2005/09/16 16:50:18 iha 1.8.4.9: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/22 17:14:51 iha 1.8.4.8: use percent numberformat in case of percent stacking and use of source format 2005/07/21 14:47:12 bm 1.8.4.7: support for number formats from data provider 2005/06/08 11:32:47 iha 1.8.4.6: use number format key at API instead of string 2005/05/09 09:51:35 bm 1.8.4.5: moved parts of API to data namespace 2004/03/22 15:31:21 iha 1.8.4.4: added and used member SwapXAndYAxis for horizontal bar chart 2004/03/19 14:33:03 bm 1.8.4.3: XDataSource now contains XLabeledDataSources 2004/03/12 15:36:12 iha 1.8.4.2: get axis position from model 2004/02/20 17:56:39 iha 1.8.4.1: integrate categories at axis in view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [41870822a5fc333f032d66d5401f403dc9eaa60a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/22 17:31:19 iha 1.1.2.4: resync 2006/08/22 19:08:42 iha 1.1.2.3: correct y axis for net charts: show labels + take space for labels into account for diagram size 2006/08/10 15:50:16 iha 1.1.2.2: Axis Label Layout - Font&Diagram Size 2006/04/10 15:03:05 iha 1.1.2.1: api restructure axis, grids, scales and increments


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e9efb153a8129015e104bedde8122c4eb986889f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:48 iha 1.1.2.4: resync m195 -> m202 2006/11/22 17:31:19 iha 1.1.2.3: resync 2006/08/22 19:09:04 iha 1.1.2.2: correct y axis for net charts: show labels + take space for labels into account for diagram size 2006/04/10 15:02:33 iha 1.1.2.1: api restructure axis, grids, scales and increments


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [96be31370180e7bb29f54d7cfc553a221e8b6658]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/09/24 09:12:56 iha 1.1.2.6: #i61970# correct implementation of axis at 2006/08/29 12:26:22 iha 1.1.2.5: correct overlap detection for rotated axis labels 2006/08/25 17:16:47 iha 1.1.2.4: text- and diagram-size dependent auto main step width 2006/08/23 17:07:26 iha 1.1.2.3: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/22 19:46:36 iha 1.1.2.2: some axes cleanup 2006/08/10 15:46:25 iha 1.1.2.1: Axis Label Layout - Font&Diagram Size


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2f3250e072788fa670aa98b60c192c011aba7b80]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:47 iha 1.1.2.7: resync m195 -> m202 2006/09/24 09:12:56 iha 1.1.2.6: #i61970# correct implementation of axis at 2006/08/29 12:26:22 iha 1.1.2.5: correct overlap detection for rotated axis labels 2006/08/25 17:16:46 iha 1.1.2.4: text- and diagram-size dependent auto main step width 2006/08/23 17:07:26 iha 1.1.2.3: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/08/22 19:46:36 iha 1.1.2.2: some axes cleanup 2006/08/10 15:46:45 iha 1.1.2.1: Axis Label Layout - Font&Diagram Size


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a6ca9e8ec29cb705e04604ca14c58b514d0b5114]

INTEGRATION: CWS chart2mst3 (1.4.12); FILE MERGED 2006/11/23 17:41:06 iha 1.4.12.5: replace Vector2D with B2DVector 2006/08/29 16:11:47 iha 1.4.12.4: corrected check lcl_doesShapeOverlapWithTickmark 2006/08/29 09:19:44 iha 1.4.12.3: implement automatic staggering of axis labels 2006/08/10 15:48:05 iha 1.4.12.2: Axis Label Layout - Font&Diagram Size 2006/03/10 10:20:42 iha 1.4.12.1: don't use leading underscore


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a3bd82690a602bbd76904f7c55a757a651c77a95]

INTEGRATION: CWS chart2mst3 (1.7.8); FILE MERGED 2006/11/23 17:41:05 iha 1.7.8.10: replace Vector2D with B2DVector 2006/10/18 17:20:24 bm 1.7.8.9: RESYNC: (1.8-1.9); FILE MERGED 2006/08/29 16:11:47 iha 1.7.8.8: corrected check lcl_doesShapeOverlapWithTickmark 2006/08/10 15:49:48 iha 1.7.8.7: Axis Label Layout - Font&Diagram Size 2006/03/10 10:20:42 iha 1.7.8.6: don't use leading underscore 2006/01/27 13:40:36 bm 1.7.8.5: warning removed 2006/01/27 13:30:01 bm 1.7.8.4: check vector index before access 2005/11/08 21:25:55 iha 1.7.8.3: fixed axis label positions for reverse axis 2005/10/07 12:15:39 bm 1.7.8.2: RESYNC: (1.7-1.8); FILE MERGED 2004/04/27 13:32:43 iha 1.7.8.1: warnings removed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [17017efd6802fcedff9cce89ae336f75ef576999]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/03/20 12:26:40 iha 1.3.4.26: #i74576# enable and display minor grids for category axes 2007/03/01 23:26:09 iha 1.3.4.25: #i27694# set tickmarks on correct values for logarithmic scale 2006/11/16 18:39:19 dr 1.3.4.24: #i30426# equal values in logarithmic scaling 2006/11/16 18:18:04 dr 1.3.4.23: #i30426# equal values in logarithmic scaling 2006/11/16 10:15:10 dr 1.3.4.22: updated comments 2006/11/16 09:45:31 dr 1.3.4.21: typo in comment 2006/11/14 14:43:42 dr 1.3.4.20: #i71415# set automatic base value for logarithmic axes to 0.0 too 2006/11/14 11:05:29 dr 1.3.4.19: #i71415# automatic origin for logarithmic is 1.0 2006/10/18 17:20:15 bm 1.3.4.18: RESYNC: (1.5-1.6); FILE MERGED 2006/09/24 09:12:56 iha 1.3.4.17: #i61970# correct implementation of axis at 2006/08/25 17:16:46 iha 1.3.4.16: text- and diagram-size dependent auto main step width 2006/08/23 17:07:26 iha 1.3.4.15: enable axis to estimate the maximum automatic MainIncrementCount, reduce count to 2 for net charts 2006/04/10 12:25:16 iha 1.3.4.14: api restructure axis, grids, scales and increments 2005/11/25 16:33:26 iha 1.3.4.13: correct labels at z axis for deep stacking 2005/10/07 12:15:23 bm 1.3.4.12: RESYNC: (1.4-1.5); FILE MERGED 2005/09/16 16:50:17 iha 1.3.4.11: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/30 17:43:12 iha 1.3.4.10: don't change min and max for performance issue only 2005/08/30 17:35:15 iha 1.3.4.9: prevent performace killover if input values are unusual 2005/08/19 16:11:35 iha 1.3.4.8: implement percent stacking 2005/05/03 17:00:50 dr 1.3.4.7: #i30426# enhanced logarithmic scaling 2005/04/29 12:21:55 dr 1.3.4.6: #i30426# enhanced linear scaling 2005/04/28 15:47:28 dr 1.3.4.5: #i30426# enhanced linear scaling 2004/06/03 03:40:07 iha 1.3.4.4: RESYNC: (1.3-1.4); FILE MERGED 2004/02/28 08:51:37 iha 1.3.4.3: default of ChangeAutoScaleBorderToIncrementRythm to true + workaround rounding errors 2004/02/26 13:52:29 iha 1.3.4.2: remove unused code 2004/02/23 18:59:06 iha 1.3.4.1: auto scaling: make automatic border charttype dependent + autoscaling for category axis


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [707897fe393c9eb80c2251b0a0e16f11fd409ce9]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:47 iha 1.1.2.7: resync m195 -> m202 2005/10/24 11:06:57 iha 1.1.2.6: coordinate system restructure 2005/10/11 09:20:58 bm 1.1.2.5: license header change 2005/05/09 08:57:16 dr 1.1.2.4: #i30462# scaling for stacked charts 2005/04/29 12:21:55 dr 1.1.2.3: #i30426# enhanced linear scaling 2005/04/28 15:47:28 dr 1.1.2.2: #i30426# enhanced linear scaling 2004/02/26 12:12:42 iha 1.1.2.1: share coordinate systems and scales for combi charts Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [17f5e646aeca238735cf13aee741f9ed9c6c00d3]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/26 09:53:59 bm 1.1.1.1.4.13: RESYNC: resolving merge problems 2007/04/25 01:06:22 bm 1.1.1.1.4.12: RESYNC: (1.5-1.7); FILE MERGED 2007/02/07 13:08:13 iha 1.1.1.1.4.11: RESYNC: (1.4-1.5); FILE MERGED 2006/11/22 17:25:32 iha 1.1.1.1.4.10: RESYNC: (1.3-1.4); FILE MERGED 2006/06/23 15:06:19 iha 1.1.1.1.4.9: use matrix from basegfx 2006/05/05 14:04:32 bm 1.1.1.1.4.8: RESYNC: (1.2-1.3); FILE MERGED 2006/03/29 22:24:46 iha 1.1.1.1.4.7: restructure legend entry creation + legend entries in data labels 2005/10/07 12:14:49 bm 1.1.1.1.4.6: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/05/31 19:13:59 iha 1.1.1.1.4.5: create view without controller 2004/02/18 17:05:22 iha 1.1.1.1.4.4: add dependency on charttools.lib 2004/02/17 19:20:33 iha 1.1.1.1.4.3: use charttools and chartview lib as shared libs - not static - export all symbols 2004/02/16 16:07:12 bm 1.1.1.1.4.2: -$SVLIB == $VCLLIB 2004/02/13 16:51:55 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f29183bc37a08494656c891be818e340cadb9643]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2004/02/17 19:21:52 iha 1.1.1.1.4.1: use charttools and chartview lib as shared libs - not static


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [08dfd190af29f5986a57e7e215128f5cf913e9df]

INTEGRATION: CWS chart2mst3 (1.17.4); FILE MERGED 2007/04/26 09:53:59 bm 1.17.4.47: RESYNC: resolving merge problems 2007/04/25 01:06:15 bm 1.17.4.46: RESYNC: (1.20-1.21); FILE MERGED 2007/02/07 13:08:06 iha 1.17.4.45: RESYNC: (1.19-1.20); FILE MERGED 2006/11/01 15:34:23 iha 1.17.4.44: cleanup resources + changed variable names according to style guide 2006/10/25 17:51:18 iha 1.17.4.43: cope with context dependent defaults from old chart 2006/08/25 17:14:02 iha 1.17.4.42: text- and diagram-size dependent auto main step width 2006/08/02 11:14:39 bm 1.17.4.41: moved here from view/axes: ExplicitCategoriesProvider.cxx 2006/06/13 19:13:25 iha 1.17.4.40: helping class for listening at XModifyBroadcaster 2006/04/10 15:03:36 iha 1.17.4.39: api restructure axis, grids, scales and increments 2006/03/29 22:24:46 iha 1.17.4.38: restructure legend entry creation + legend entries in data labels 2006/03/15 15:53:34 bm 1.17.4.37: moved ObjectHierarchy to controller 2006/03/12 01:30:05 iha 1.17.4.36: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/20 09:20:38 bm 1.17.4.35: +ObjectHierarchy 2006/01/24 10:23:20 bm 1.17.4.34: -AutoResizeHelper, +ReferenceSizeProvider 2006/01/20 16:47:03 bm 1.17.4.33: AutoResizeHelper added 2005/12/21 21:29:30 iha 1.17.4.32: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/02 15:25:58 bm 1.17.4.31: +RangeHighlighter.obj 2005/11/29 18:02:17 bm 1.17.4.30: ressource manager stuff moved here from controller 2005/11/15 18:08:44 iha 1.17.4.29: added UndoGuard 2005/11/14 18:05:10 bm 1.17.4.28: +WeakListenerAdapter 2005/11/04 14:50:12 bm 1.17.4.27: enable undo limitation according to config setting 2005/11/02 12:12:23 bm 1.17.4.26: +BaseGFXHelper.obj, basegfx library added for linking 2005/10/18 12:39:57 bm 1.17.4.25: +ControllerLockGuard.obj 2005/10/14 16:58:45 bm 1.17.4.24: model listener mechanism 2005/10/10 12:16:43 bm 1.17.4.23: +UndoManager: helper class for adding a model to the undo/redo stacks 2005/10/07 12:14:37 bm 1.17.4.22: RESYNC: (1.17-1.18); FILE MERGED 2005/08/11 16:03:20 bm 1.17.4.21: classes for internal data added 2005/07/28 09:34:52 bm 1.17.4.20: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/14 15:32:57 iha 1.17.4.19: cleanup WrappedIgnoreProperty 2005/07/12 12:57:12 bm 1.17.4.18: use named properties for gradients etc. in chart model 2005/07/05 16:46:18 bm 1.17.4.17: +WrappedDefaultProperty 2005/05/31 18:30:22 iha 1.17.4.16: added NameContainer 2005/05/27 12:20:09 bm 1.17.4.15: offer LabeledDataSequence as service 2005/04/19 17:36:32 iha 1.17.4.14: improved old api support (introduced wrappedpropertyset ...) 2004/09/17 17:28:49 iha 1.17.4.13: removed unused code 2004/09/17 17:23:40 iha 1.17.4.12: correct positions for titles also after move 2004/09/17 14:29:39 bm 1.17.4.11: +ChartDebugTrace 2004/09/16 12:38:20 bm 1.17.4.10: API simplification 2004/07/01 13:39:31 iha 1.17.4.9: added ColorProvider and ColorPerPointHelper 2004/06/04 08:07:04 bm 1.17.4.8: named fill and line properties 2004/05/07 16:27:16 iha 1.17.4.7: #i20344# added DataSourceHelper 2004/05/07 13:43:37 bm 1.17.4.6: +SceneProperties 2004/03/19 14:33:02 bm 1.17.4.5: XDataSource now contains XLabeledDataSources 2004/03/02 13:02:16 iha 1.17.4.4: added COMPHELPERLIB 2004/03/02 09:28:49 bm 1.17.4.3: CachedDataSequence moved here from model/main 2004/02/17 19:20:44 iha 1.17.4.2: use charttools and chartview lib as shared libs - not static - export all symbols 2004/02/13 16:51:54 bm 1.17.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [747125ef42eacd8a6f8097427216a8be614ba9a0]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2004/02/17 19:21:24 iha 1.1.1.1.4.1: use charttools and chartview lib as shared libs - not static


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ef65c6008829bd3b82207a879d00b1c86aca5db7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:47 iha 1.1.2.7: resync m195 -> m202 2006/06/26 12:31:41 bm 1.1.2.6: #i66692# offer regression curves and error bars via service manager 2006/04/05 11:18:08 bm 1.1.2.5: make Scalings available via factory 2005/10/11 09:20:57 bm 1.1.2.4: license header change 2005/07/28 09:34:52 bm 1.1.2.3: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/06/20 14:35:28 bm 1.1.2.2: register DataSource 2005/05/27 12:19:14 bm 1.1.2.1: offer LabeledDataSequence as service


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [31e1d1d9a6478a449cea456f09ac135b1cda7721]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:47 iha 1.1.2.4: resync m195 -> m202 2005/10/11 09:20:56 bm 1.1.2.3: license header change 2005/08/15 09:28:05 bm 1.1.2.2: allow ranges to include only a single cell 2005/08/11 16:02:58 bm 1.1.2.1: classes for internal data


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c4bf300cf784f6edd26e95892f9ad8a06828b50b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:47 iha 1.1.2.11: resync m195 -> m202 2006/10/04 15:24:08 iha 1.1.2.10: #i63570# loading donut example crashes on solaris 2006/08/08 12:31:01 iha 1.1.2.9: corrected exception handling for XPropertySet 2006/02/17 20:57:55 iha 1.1.2.8: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/06 13:40:48 iha 1.1.2.7: make WrappedPropertySet a MutexContainer 2006/02/02 14:36:19 iha 1.1.2.6: enable late init with inner propertyset 2005/11/08 13:59:04 bm 1.1.2.5: no query from XPropertySet to XPropertySet necessary 2005/10/11 09:20:56 bm 1.1.2.4: license header change 2005/07/15 13:32:28 iha 1.1.2.3: removed support if FastPropertySet at WrappedPropertySet as this is to errorprone due to mismatch of FastPropertyIds 2005/04/21 16:44:23 iha 1.1.2.2: assert missing property 2005/04/19 17:27:10 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [97cb316227784a8a1f33f492308d3422d9e428e4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:46 iha 1.1.2.8: resync m195 -> m202 2006/03/16 17:34:52 iha 1.1.2.7: #i63257# many properties lost during saving 2006/03/12 01:01:36 iha 1.1.2.6: enlarge validity of area or line properties of data series to lifetime of new chartmodel 2006/01/17 18:21:53 iha 1.1.2.5: load and save scales correctly 2005/10/11 09:20:56 bm 1.1.2.4: license header change 2005/07/14 15:32:57 iha 1.1.2.3: cleanup WrappedIgnoreProperty 2005/07/05 09:10:24 iha 1.1.2.2: corrected getPropertyState 2005/04/19 17:27:25 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c9aca895967a0515713dfd59b7aafff0f04cd713]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:46 iha 1.1.2.5: resync m195 -> m202 2005/10/25 07:28:54 bm 1.1.2.4: don't ignore FillBitmapName 2005/10/11 09:20:55 bm 1.1.2.3: license header change 2005/07/15 13:30:12 iha 1.1.2.2: don't add WrappedIgnoreProperties that are not added by FillProperties or LineProperties 2005/07/14 15:28:15 iha 1.1.2.1: cleanup WrappedIgnoreProperty Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f29c5c0aae9c7867749afd1c65e37a4b297e707d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:46 iha 1.1.2.2: resync m195 -> m202 2006/10/25 17:50:37 iha 1.1.2.1: cope with context dependent defaults from old chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a63f6f6353413f66a8153d8042751cdcb81b0485]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:46 iha 1.1.2.3: resync m195 -> m202 2005/10/11 09:20:55 bm 1.1.2.2: license header change 2005/07/05 16:44:45 bm 1.1.2.1: wrapped property which can have a different default value than the inner propertyset


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a1fc78dd69d089cd971b039130f29f4a6dbbc503]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:46 iha 1.1.2.3: resync m195 -> m202 2005/12/02 15:21:56 bm 1.1.2.2: +XSelectionChangeListener specialization 2005/11/14 17:24:24 bm 1.1.2.1: helper for adding listener objects as weak references to broadcasters


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [88c75727db5a9d727218bd109f9e678ffb10a725]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:45 iha 1.1.2.10: resync m195 -> m202 2006/11/10 15:06:13 bm 1.1.2.9: #i67875# add undo for own data 2006/03/12 01:30:40 iha 1.1.2.8: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2005/11/22 14:19:29 bm 1.1.2.7: dispose of all models that are ever removed into an undo stack, at least on destruction of the stack 2005/11/21 15:05:10 bm 1.1.2.6: implement modify listener to notify the undo dispatch about changes in the undo-/redo stack 2005/11/15 18:38:25 bm 1.1.2.5: use DisposeAndClear helper 2005/11/11 15:03:02 bm 1.1.2.4: notify changes 2005/11/04 14:50:12 bm 1.1.2.3: enable undo limitation according to config setting 2005/11/02 13:49:22 bm 1.1.2.2: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/10 12:14:47 bm 1.1.2.1: helper class for adding a model to the undo/redo stacks


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [42405f173896994aae14869533e68eac5fc0575a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:45 iha 1.1.2.4: resync m195 -> m202 2006/11/10 15:06:12 bm 1.1.2.3: #i67875# add undo for own data 2005/11/16 10:53:07 iha 1.1.2.2: don't call cancelAction twice 2005/11/15 18:07:34 iha 1.1.2.1: UndoGuard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [08a719868c61f2c994f968a02aa861cadf01493a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:45 iha 1.1.2.11: resync m195 -> m202 2006/11/10 15:06:12 bm 1.1.2.10: #i67875# add undo for own data 2006/07/25 12:38:59 bm 1.1.2.9: #i64824# notify change in sequence length from internal data provider to uncached data sequence 2006/07/19 15:55:26 bm 1.1.2.8: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/04/04 15:59:06 bm 1.1.2.7: implement XModifyBroadcaster 2006/04/04 13:46:43 bm 1.1.2.6: add XModifyBroadcaster to DataSequence 2005/10/11 09:20:54 bm 1.1.2.5: license header change 2005/09/08 12:44:52 bm 1.1.2.4: +generateLabel 2005/08/18 14:06:47 bm 1.1.2.3: provide a CTOR with the Role 2005/08/15 09:30:32 bm 1.1.2.2: add an XDataProvider reference to ensure a long-enough life-time for the data sequences to work properly 2005/08/11 16:02:49 bm 1.1.2.1: classes for internal data


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1cca8145381916f8ef68467f980319cc494bf7fb]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:45 iha 1.1.2.2: resync m195 -> m202 2006/08/25 17:12:43 iha 1.1.2.1: text- and diagram-size dependent auto main step width


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [16efaf2ae793db7678da8e87aa8477990e3cfc0c]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2006/10/18 17:19:56 bm 1.4.4.15: RESYNC: (1.5-1.6); FILE MERGED 2006/04/10 15:03:36 iha 1.4.4.14: api restructure axis, grids, scales and increments 2006/01/24 10:54:04 bm 1.4.4.13: use ReferenceSizeProvider to adapt auto-scale settings for newly created objects 2005/12/21 21:29:30 iha 1.4.4.12: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/07 14:01:21 iha 1.4.4.11: remove dependendy from special title identifiers 2005/12/01 18:52:01 iha 1.4.4.10: create axis title with correct rotation default + don't mix x and y in barcharts 2005/11/18 15:18:30 bm 1.4.4.9: unnecessary include removed 2005/11/18 13:18:29 bm 1.4.4.8: use XInitialization for passing the identifier when creating titles (do not use context) 2005/10/07 12:14:05 bm 1.4.4.7: RESYNC: (1.4-1.5); FILE MERGED 2005/08/18 15:20:45 bm 1.4.4.6: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/07/13 11:43:28 iha 1.4.4.5: added method getTitleType() 2005/04/11 09:31:08 iha 1.4.4.4: avoid crash when context is missing 2004/05/26 16:26:58 bm 1.4.4.3: default font sizes adapted 2004/05/07 13:42:59 bm 1.4.4.2: lcl_createTitle: create title even if string is empty 2004/04/27 13:32:58 bm 1.4.4.1: +createTitle method for creating a title, if you only have an XDiagram (creation of main-title not possible there)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a11addffc7cb71d317b451576bce5db374ed40e4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:45 iha 1.1.2.7: resync m195 -> m202 2006/06/24 15:02:44 iha 1.1.2.6: changed default for Cameradistance according to spec 2006/06/23 18:06:49 iha 1.1.2.5: changed default light direction 2006/06/18 19:30:38 iha 1.1.2.4: implement camera distance 2005/11/02 13:49:22 bm 1.1.2.3: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:54 bm 1.1.2.2: license header change 2004/05/07 13:42:30 bm 1.1.2.1: properties for a 3d scene


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c0037499d6cc6f6ecf7e33c122d49218ac0e3ad1]

INTEGRATION: CWS chart2mst3 (1.5.12); FILE MERGED 2006/10/18 17:19:35 bm 1.5.12.2: RESYNC: (1.5-1.6); FILE MERGED 2006/04/05 11:14:55 bm 1.5.12.1: make Scalings available via factory


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [deb57523e6031b5a959d78d77d3cedc97337ffba]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 15:53:27 bm 1.1.2.4: #i74635# some adaptions for ResMgr cleanup 2007/02/08 21:25:45 iha 1.1.2.3: resync m195 -> m202 2005/11/29 18:01:51 bm 1.1.2.2: CREATEVERSIONRESMGR macro gets resource name without quotes 2005/11/29 17:26:07 bm 1.1.2.1: provide ResMgr singleton (was in controller/main/ViewSingletons.cxx before)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [56631691bec62a691a6c1ce07d3363578c935262]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:45 iha 1.1.2.3: resync m195 -> m202 2005/11/29 18:36:39 bm 1.1.2.2: SchResId may return an OUString, ResIdHelper offers replacement method for OUString 2005/11/29 17:22:31 bm 1.1.2.1: moved here from controller/main


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e1011394b3ccc9e9bc76ce1fb00d6a0c1108358c]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2006/10/18 17:19:20 bm 1.3.12.2: RESYNC: (1.3-1.4); FILE MERGED 2006/01/20 16:49:45 bm 1.3.12.1: adaptFontSizes: pass target properties as const Reference to allow temporaries, catch exceptions


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d8360fbcadbe6fd027df209957f6dea97cb17d7c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:45 iha 1.1.2.7: resync m195 -> m202 2006/05/02 11:13:13 bm 1.1.2.6: #i62831# +moveObject with check for out-of-bounds 2006/05/02 08:52:50 bm 1.1.2.5: +getReanchoredPosition, centerGrow: do not grow too large or shrink too small 2006/02/23 17:35:10 bm 1.1.2.4: +centerGrow, round double values and cast to int to avoid warning 2005/12/01 16:40:41 iha 1.1.2.3: #124571# load & save position of rotated titles correctly 2005/10/11 09:20:54 bm 1.1.2.2: license header change 2004/09/17 17:22:09 iha 1.1.2.1: correct positions for titles also after move


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [08760332e2b2ab7f634f1561dc1a6c9a0a3afd49]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/06/26 12:31:41 bm 1.2.4.7: #i66692# offer regression curves and error bars via service manager 2005/12/21 21:29:30 iha 1.2.4.6: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/07 17:12:46 bm 1.2.4.5: some missing notifications added 2005/10/11 12:54:34 bm 1.2.4.4: #i27351# implement XCloneable for Undo 2005/10/07 12:12:50 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/04/28 11:52:17 bm 1.2.4.2: superfluous commain last enum entry 2004/02/13 16:51:54 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d3c118c0fabe9cf673c0b2e97a80252cd428a5cf]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:19:12 bm 1.2.4.10: RESYNC: (1.3-1.4); FILE MERGED 2006/06/26 12:31:41 bm 1.2.4.9: #i66692# offer regression curves and error bars via service manager 2005/12/21 21:29:29 iha 1.2.4.8: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/07 17:12:46 bm 1.2.4.7: some missing notifications added 2005/10/11 14:58:21 bm 1.2.4.6: copy CTOR: did not copy properties 2005/10/11 12:54:15 bm 1.2.4.5: #i27351# implement XCloneable for Undo 2005/10/07 12:12:40 bm 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2005/08/03 16:36:28 bm 1.2.4.3: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:33:02 iha 1.2.4.2: remove unused parameter 'bIncludeStyleProperties' 2004/02/13 16:51:54 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9182426955171a85ed4ca7aad2b383f63eed679b]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2006/10/18 17:19:03 bm 1.6.4.15: RESYNC: (1.8-1.9); FILE MERGED 2006/06/26 12:31:41 bm 1.6.4.14: #i66692# offer regression curves and error bars via service manager 2006/06/07 14:51:50 bm 1.6.4.13: #124497# +getMeanValueLine 2006/03/29 22:24:46 iha 1.6.4.12: restructure legend entry creation + legend entries in data labels 2006/02/28 12:36:46 bm 1.6.4.11: use isMeanValueLine() internally 2005/12/21 21:29:29 iha 1.6.4.10: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/07 12:12:26 bm 1.6.4.9: RESYNC: (1.7-1.8); FILE MERGED 2005/09/16 16:50:16 iha 1.6.4.8: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/05/09 09:51:34 bm 1.6.4.7: moved parts of API to data namespace 2005/04/11 10:09:11 iha 1.6.4.6: add methods addRegressionCurve() removeAllExceptMeanValueLine() and getFirstCurveNotMeanValueLine() 2004/04/14 09:41:17 iha 1.6.4.5: fixed scatter chart: domain-x -> values-x 2004/03/24 12:32:27 bm 1.6.4.4: RESYNC: (1.6-1.7); FILE MERGED 2004/03/19 14:33:02 bm 1.6.4.3: XDataSource now contains XLabeledDataSources 2004/02/23 19:06:59 iha 1.6.4.2: do not convert something wrong to number 2004/02/13 16:51:53 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [02b88f8dbfec7b3eca06da27363d94f9b8d503e4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:44 iha 1.1.2.5: resync m195 -> m202 2006/09/27 17:18:03 iha 1.1.2.4: corrected reference size for data labels on single datapoints 2006/04/10 15:03:35 iha 1.1.2.3: api restructure axis, grids, scales and increments 2006/04/10 12:25:15 iha 1.1.2.2: api restructure axis, grids, scales and increments 2006/01/24 10:21:35 bm 1.1.2.1: Helper for Reference(Diagram|Page)Size setting and retrieving. Includes former functionality of AutoResizeHelper


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [064e6a20a99452f88b0ad9f6872c0d50ca0f29cf]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:44 iha 1.1.2.7: resync m195 -> m202 2006/04/10 12:25:15 iha 1.1.2.6: api restructure axis, grids, scales and increments 2006/02/28 12:08:23 bm 1.1.2.5: ObjectIdentifier::getIndexFromParticle => ObjectIdentifier::getIndexFromParticleOrCID 2006/01/20 16:54:20 bm 1.1.2.4: catch exceptions in determineRanges 2005/12/21 21:29:28 iha 1.1.2.3: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/08 17:07:50 bm 1.1.2.2: change in parent CID calculation corrected 2005/12/02 15:21:00 bm 1.1.2.1: component implementing range highlighting


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [182de5b898d992ab7e9259ff1f1e582220119e55]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/10/18 17:18:55 bm 1.1.4.11: RESYNC: (1.2-1.3); FILE MERGED 2006/01/23 16:44:29 bm 1.1.4.10: oops 2006/01/23 16:39:29 bm 1.1.4.9: shadowed declaration resolved 2005/10/07 12:12:01 bm 1.1.4.8: RESYNC: (1.1-1.2); FILE MERGED 2005/08/03 16:36:28 bm 1.1.4.7: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/19 11:00:35 bm 1.1.4.6: namespace missing 2005/07/12 14:39:23 bm 1.1.4.5: lcl_addNamedPropertyUniqueNameToTable: on error return preferred value 2005/07/12 14:21:49 bm 1.1.4.4: unique name calculation: convert only postfix to number 2005/07/12 12:57:11 bm 1.1.4.3: use named properties for gradients etc. in chart model 2005/07/11 12:55:22 bm 1.1.4.2: functions to add named properties into the corresponding tables with unique names 2004/02/13 16:51:53 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [38717f00fce208a7497bd534ad61ae2f69ab27fb]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:44 iha 1.1.2.13: resync m195 -> m202 2006/09/19 16:46:14 bm 1.1.2.12: #i67808# offer a way to get the title type of a CID (publicly) 2006/04/10 15:03:35 iha 1.1.2.11: api restructure axis, grids, scales and increments 2006/04/10 12:25:15 iha 1.1.2.10: api restructure axis, grids, scales and increments 2006/04/03 12:18:40 iha 1.1.2.9: correct selection handles for data point labels and legend entries - sibling detection for legendentries 2006/03/19 10:41:42 iha 1.1.2.8: reselect pie and donut segments after dragging 2006/02/28 12:08:59 bm 1.1.2.7: ObjectIdentifier::getIndexFromParticle => ObjectIdentifier::getIndexFromParticleOrCID 2006/02/28 12:08:39 bm 1.1.2.6: ObjectIdentifier::getIndexFromParticle => ObjectIdentifier::getIndexFromParticleOrCID 2006/02/20 09:18:13 bm 1.1.2.5: getObjectPropertySet also with XChartDocument as parameter 2006/01/27 09:51:22 bm 1.1.2.4: InlineContainer.hxx moved to comphelper 2006/01/20 14:58:54 iha 1.1.2.3: make more failsafe 2006/01/11 15:10:07 iha 1.1.2.2: diagram sizes and positions are not saved 2005/12/21 21:28:21 iha 1.1.2.1: remove identifiers from model objects and create an index based CID protocol instead for selection purposes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7dfafaacf0d4c72c39d8d355a0866dcd0d5cbabc]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2006/10/18 17:18:36 bm 1.3.12.2: RESYNC: (1.3-1.4); FILE MERGED 2006/03/07 12:35:35 bm 1.3.12.1: avoid variables starting with underscores. rMutex is a base-class member so use par_rMutex instead


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9269f4f22523e9783b3f2b2079e5e6b70949cab4]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/02/09 14:13:05 iha 1.2.4.13: accept longs also for short values 2006/10/18 17:18:28 bm 1.2.4.12: RESYNC: (1.3-1.4); FILE MERGED 2006/03/07 12:35:47 bm 1.2.4.11: avoid variables starting with underscores. rMutex is a base-class member so use par_rMutex instead 2005/11/24 18:32:22 bm 1.2.4.10: setting a property to default must fire a change event 2005/11/15 15:30:36 bm 1.2.4.9: garbage collection, disposing, reference release issues 2005/11/03 13:38:56 bm 1.2.4.8: do not notify change to parent object in _NoBroadcast method 2005/11/03 11:57:25 bm 1.2.4.7: +firePropertyChangeEvent for notifying property changes 2005/10/07 12:11:23 bm 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/09/23 15:24:39 iha 1.2.4.5: #i55000# crash caused by dead reference to mutex 2005/09/02 11:12:50 bm 1.2.4.4: type check in setFastPropertyValue_NoBroadcast in debug mode 2005/08/03 16:36:28 bm 1.2.4.3: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/03/30 16:31:14 bm 1.2.4.2: make model cloneable (+first undo implementation) 2004/02/13 16:51:53 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [23f07b29ffa907b1d7bb918a774ef3b719dcde18]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:44 iha 1.1.2.3: resync m195 -> m202 2005/10/11 09:20:54 bm 1.1.2.2: license header change 2005/04/19 17:27:42 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5d3d248a278d3e3b18cdd8fcce936fe8a95b878a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:44 iha 1.1.2.6: resync m195 -> m202 2005/10/11 09:20:53 bm 1.1.2.5: license header change 2005/07/14 12:33:02 iha 1.1.2.4: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:57:11 bm 1.1.2.3: use named properties for gradients etc. in chart model 2005/04/19 17:36:32 iha 1.1.2.2: improved old api support (introduced wrappedpropertyset ...) 2004/06/04 07:53:12 bm 1.1.2.1: handling named properties like FillGradientName (coming from XML)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7ada84966c6bd74bc3f7478b76080aae33c52e3d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:44 iha 1.1.2.6: resync m195 -> m202 2005/10/11 09:20:53 bm 1.1.2.5: license header change 2005/07/12 12:57:11 bm 1.1.2.4: use named properties for gradients etc. in chart model 2005/04/19 17:36:32 iha 1.1.2.3: improved old api support (introduced wrappedpropertyset ...) 2004/09/27 17:09:59 iha 1.1.2.2: added NamedFillProperties::GetPropertyNameForHandle 2004/06/04 07:52:59 bm 1.1.2.1: handling named properties like FillGradientName (coming from XML)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [539d5607d0bcfa6180b3e64ec85ff2eb8f26e4e7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:44 iha 1.1.2.5: resync m195 -> m202 2006/06/26 12:29:36 bm 1.1.2.4: implement removeByName, some optimizations 2005/10/11 09:20:53 bm 1.1.2.3: license header change 2005/07/08 16:44:17 bm 1.1.2.2: support XCloneable 2005/05/31 18:28:14 iha 1.1.2.1: name container for gradient lists etc.


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [336a6a0fbd224934ae47503ce62642099ce70739]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/10/18 17:18:09 bm 1.1.1.1.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/10/07 12:10:45 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/02/13 16:51:52 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [808051ce315e4b5b4c35ca15bdcb36e85b3f5c12]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:43 iha 1.1.2.8: resync m195 -> m202 2005/11/14 17:24:48 bm 1.1.2.7: use weak references for listening 2005/11/11 15:02:28 bm 1.1.2.6: implement XComponent 2005/11/08 16:08:11 bm 1.1.2.5: update mechanism for old API wrapper. Todo: implement for all objects and especially for chartdocument 2005/11/07 17:47:45 bm 1.1.2.4: do not acquire/release mutex in ModifyEventForwarder CTOR 2005/10/25 09:58:48 bm 1.1.2.3: wrong throw in RemoveListener 2005/10/14 16:58:45 bm 1.1.2.2: model listener mechanism 2005/10/14 14:42:44 bm 1.1.2.1: helper for notifying model changes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8855410d9a504d5718cc24c578f20b61887967b7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:43 iha 1.1.2.2: resync m195 -> m202 2006/06/13 19:07:41 iha 1.1.2.1: helping class for listening at XModifyBroadcaster


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8003aae9b775300e0323d40a15d88b267a459fcc]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/10/18 17:18:01 bm 1.1.1.1.4.8: RESYNC: (1.2-1.3); FILE MERGED 2005/11/29 18:08:16 iha 1.1.1.1.4.7: #i58464# work around wrong writer ranges in file 2005/10/07 12:10:17 bm 1.1.1.1.4.6: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/06/08 11:30:46 bm 1.1.1.1.4.5: WinExtent in MediaDescriptor is deprecated 2004/09/08 16:40:49 bm 1.1.1.1.4.4: ISSET_WinExtent was uninitialized 2004/09/03 17:09:49 iha 1.1.1.1.4.3: enable save - add OutputStream 2004/03/19 14:33:02 bm 1.1.1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/26 14:51:33 bm 1.1.1.1.4.1: getAll(): realloc correct sequence


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5330f44e396133bfc5b5d8c59308c3a5a5060075]

INTEGRATION: CWS chart2mst3 (1.4.12); FILE MERGED 2006/10/18 17:17:32 bm 1.4.12.2: RESYNC: (1.4-1.5); FILE MERGED 2005/11/30 09:50:47 bm 1.4.12.1: wrong commentline


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [03176caf38087bb65ebb71f718e22de274bc886b]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:17:23 bm 1.2.4.10: RESYNC: (1.3-1.4); FILE MERGED 2006/04/10 12:25:15 iha 1.2.4.9: api restructure axis, grids, scales and increments 2006/03/12 01:03:02 iha 1.2.4.8: offer LineDash property 2005/10/07 12:09:23 bm 1.2.4.7: RESYNC: (1.2-1.3); FILE MERGED 2005/07/14 12:33:02 iha 1.2.4.6: remove unused parameter 'bIncludeStyleProperties' 2005/07/14 11:33:54 iha 1.2.4.5: use identical fast-property-IDs for lineproperties everywhere 2005/07/12 12:57:09 bm 1.2.4.4: use named properties for gradients etc. in chart model 2005/06/15 18:20:27 iha 1.2.4.3: cleanup 2005/04/13 11:29:15 iha 1.2.4.2: removed unused include 2004/02/13 16:51:52 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [04c6eeeab5320f0fc62ee64e4983ee9c597421aa]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/10/18 17:17:04 bm 1.1.1.1.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/10/07 12:09:13 bm 1.1.1.1.4.5: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/08/25 16:24:12 bm 1.1.1.1.4.4: #124570# CloseVetoException was passed as Exception to function before throw, which discarded the type. This violated the throw specification later that only allows the CloseVetoException 2005/07/08 12:18:51 iha 1.1.1.1.4.3: more failsafe 2004/04/27 15:00:40 iha 1.1.1.1.4.2: warnings removed 2004/02/18 17:06:20 iha 1.1.1.1.4.1: handle lifetime of the ChartCindow correct


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bfaefb4e72fe4f38cc6fbb06324cc5d786b3077e]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/10/18 17:16:57 bm 1.5.4.7: RESYNC: (1.6-1.7); FILE MERGED 2006/10/16 15:38:16 bm 1.5.4.6: #i70287# +hasLegend (used by toolbar toggle legend command) 2005/12/21 21:29:27 iha 1.5.4.5: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/07 12:09:02 bm 1.5.4.4: RESYNC: (1.5-1.6); FILE MERGED 2005/08/18 15:20:44 bm 1.5.4.3: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/06/16 12:53:14 iha 1.5.4.2: create legend on demand 2004/09/16 14:43:28 iha 1.5.4.1: implement api redesign


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cd18832807d79b28097c208db6720d82d2a03658]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:43 iha 1.1.2.8: resync m195 -> m202 2006/07/19 15:55:26 bm 1.1.2.7: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/04/04 15:59:06 bm 1.1.2.6: implement XModifyBroadcaster 2005/10/11 09:20:53 bm 1.1.2.5: license header change 2005/05/27 12:20:10 bm 1.1.2.4: offer LabeledDataSequence as service 2005/05/09 09:51:34 bm 1.1.2.3: moved parts of API to data namespace 2004/04/15 17:26:55 bm 1.1.2.2: cloning for data sequences 2004/03/12 10:41:04 bm 1.1.2.1: core object for XLabeledDataSequence


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bb6909af72ae60b0e0da4b173375002463e59f15]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/19 15:13:39 bm 1.1.2.36: #i75403# Use strings from resource for row and column labels 2007/02/21 11:19:44 bm 1.1.2.35: #i72340# Do swapping of categories outside of for loop, otherwise it is done too often (and has no effect for an even number of passes) 2007/02/14 16:30:15 bm 1.1.2.34: #i72340# allow swapping rows 2007/02/09 19:06:06 iha 1.1.2.33: compile error on solaris 2007/02/09 17:29:21 bm 1.1.2.32: XChartDocument::createInternalDataProvider() works like expected now 2007/02/08 21:25:43 iha 1.1.2.31: resync m195 -> m202 2007/02/08 16:40:50 iha 1.1.2.30: resync m195 -> m202 2006/12/12 16:13:44 iha 1.1.2.29: #i67784# data disappear while selecting 'XY (Scatter)' having only one sequence 2006/11/10 15:06:12 bm 1.1.2.28: #i67875# add undo for own data 2006/08/03 13:39:21 bm 1.1.2.27: cast to valarray at wrong place 2006/08/03 09:20:03 bm 1.1.2.26: setRow/ColumnLabels: enlarge data instead of just setting the column/row count, enlargeData: set also the column/rowCount 2006/07/30 21:30:21 bm 1.1.2.25: compilation problems fixed 2006/07/30 21:05:36 bm 1.1.2.24: slice can not be assigend to. Have to cast to valarray 2006/07/26 14:46:18 bm 1.1.2.23: allow insertion of data series into empty chart 2006/07/25 12:38:59 bm 1.1.2.22: #i64824# notify change in sequence length from internal data provider to uncached data sequence 2006/07/24 15:06:04 bm 1.1.2.21: #i64824#  InternalData::deleteColumn: copied too much old data (invalid index access for deletion of last sequence) 2006/07/24 14:43:41 bm 1.1.2.20: #i64824# deleteSequence: adaption of map references fixed 2006/07/20 07:20:27 bm 1.1.2.19: detectArguments: only offset for categories if there is a sequence with categories-range 2006/07/19 15:55:26 bm 1.1.2.18: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/05/24 14:25:52 iha 1.1.2.17: #i63012# applied workaround patch for compiling issue 2006/04/22 11:09:04 iha 1.1.2.16: adjust column- and rowlabel sizes correctly 2006/02/16 17:44:10 iha 1.1.2.15: count Inf as NotANumber also 2006/02/01 19:09:41 iha 1.1.2.14: adjust column- and rowlabel sizes correctly 2005/11/03 18:28:58 iha 1.1.2.13: fix sequence mapping for internal data 2005/11/02 22:46:13 iha 1.1.2.12: correct sequence mapping 2005/11/01 13:09:53 iha 1.1.2.11: support sequence mapping 2005/10/29 15:41:10 iha 1.1.2.10: support SequenceMapping also for chart local data 2005/10/25 16:27:12 iha 1.1.2.9: support SequenceMapping 2005/10/11 09:20:52 bm 1.1.2.8: license header change 2005/09/08 11:46:03 iha 1.1.2.7: set data provider and number formatter in the filter and not in the model load methods thus binary loading also gets the correct dataprovider and numberformatter 2005/09/07 11:45:41 bm 1.1.2.6: #125498# comment added 2005/08/31 09:13:43 bm 1.1.2.5: lcl_LabelsOfLabeledSequence: get label sequence of LabeledSequence instead of values 2005/08/18 14:08:28 bm 1.1.2.4: provide a CTOR with another XChartDataArray to copy / some fixes 2005/08/17 16:53:19 bm 1.1.2.3: keep data row source away from InternalData class 2005/08/15 13:06:17 bm 1.1.2.2: UncachedDataSequence CTOR changed, fixes 2005/08/11 16:02:39 bm 1.1.2.1: classes for internal data


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f5b6c63fdff93732d57e669efca354abb47e5fb1]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/13 09:16:52 bm 1.1.2.6: #i67875# reconnection of data sequences is also necessary if data was not cloned (in base class UndoElement) 2006/11/10 15:06:12 bm 1.1.2.5: #i67875# add undo for own data 2005/11/22 14:19:29 bm 1.1.2.4: dispose of all models that are ever removed into an undo stack, at least on destruction of the stack 2005/11/21 15:05:50 bm 1.1.2.3: +getUndoStrings, -non-const getter-methods 2005/11/11 15:03:02 bm 1.1.2.2: notify changes 2005/11/04 14:41:14 bm 1.1.2.1: implementation of undo stack with limitation


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6836dde3a2dc1541e97888a30a662bf9ed9c517d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:43 iha 1.1.2.8: resync m195 -> m202 2006/11/13 09:16:52 bm 1.1.2.7: #i67875# reconnection of data sequences is also necessary if data was not cloned (in base class UndoElement) 2006/11/10 15:44:07 bm 1.1.2.6: #i67875# pass pointer to function to boost::mem_fn 2006/11/10 15:06:12 bm 1.1.2.5: #i67875# add undo for own data 2005/11/22 14:19:28 bm 1.1.2.4: dispose of all models that are ever removed into an undo stack, at least on destruction of the stack 2005/11/21 15:06:13 bm 1.1.2.3: +getUndoStrings, -non-const getter-methods 2005/11/11 15:03:01 bm 1.1.2.2: notify changes 2005/11/04 14:40:55 bm 1.1.2.1: implementation of undo stack with limitation


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [dcf152fbf6f849ab3eaf3be8c9d3b5dbf08c5ab4]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/11/04 15:48:28 bm 1.1.1.1.4.3: clone properties that have interface type 2005/10/07 12:08:52 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/03/30 16:31:14 bm 1.1.1.1.4.1: make model cloneable (+first undo implementation)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2b74d7b09e9243929216ce68db78c6a915c219b9]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/10/18 17:16:49 bm 1.1.1.1.4.7: RESYNC: (1.2-1.3); FILE MERGED 2005/11/04 16:02:15 bm 1.1.1.1.4.6: invalid typename keyword 2005/11/04 15:48:28 bm 1.1.1.1.4.5: clone properties that have interface type 2005/10/07 12:08:41 bm 1.1.1.1.4.4: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/08/03 16:36:28 bm 1.1.1.1.4.3: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/03/30 16:31:14 bm 1.1.1.1.4.2: make model cloneable (+first undo implementation) 2004/02/13 16:51:51 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5a0fb340ff70049f737a1fe03b4c5f557fe45dca]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:43 iha 1.1.2.2: resync m195 -> m202 2006/03/29 22:21:01 iha 1.1.2.1: restructure legend entry creation + legend entries in data labels


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c725021916ddc437b2d66b66d0cbd5d9ecaccfef]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/20 20:31:09 iha 1.2.4.13: implement gradient step count 2006/10/18 17:16:41 bm 1.2.4.12: RESYNC: (1.3-1.4); FILE MERGED 2006/05/17 13:26:42 bm 1.2.4.11: bitmap properties (tile, stretch, etc.) with correct defaults 2005/11/24 18:32:43 bm 1.2.4.10: transparency gradients enabled 2005/10/07 12:08:32 bm 1.2.4.9: RESYNC: (1.2-1.3); FILE MERGED 2005/07/14 14:42:45 iha 1.2.4.8: cleanup Fillproperties 2005/07/14 12:33:01 iha 1.2.4.7: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:57:09 bm 1.2.4.6: use named properties for gradients etc. in chart model 2005/06/16 07:57:09 iha 1.2.4.5: added missing Property FillBackground 2005/06/15 18:18:16 iha 1.2.4.4: correct name for Property FillTransparenceGradient + added comments 2005/04/13 11:28:40 iha 1.2.4.3: removed unused include 2004/06/17 09:43:40 bm 1.2.4.2: change default background to gray85 (like old chart) (Note: this color is not in the standard palette!) 2004/02/13 16:51:51 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [98c158e9581e5cc783c7877717567b890c572923]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:43 iha 1.1.2.3: resync m195 -> m202 2006/08/02 11:16:27 bm 1.1.2.2: #i27352# implement quick help 2006/08/02 10:19:07 bm 1.1.2.1: moved here from view/axes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e231faa3ea10367086f7cce51253f266de5f506e]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:16:20 bm 1.3.4.8: RESYNC: (1.4-1.5); FILE MERGED 2005/11/07 17:12:45 bm 1.3.4.7: some missing notifications added 2005/10/11 12:52:50 bm 1.3.4.6: #i27351# implement XCloneable for Undo 2005/10/07 12:08:03 bm 1.3.4.5: RESYNC: (1.3-1.4); FILE MERGED 2005/08/03 16:36:27 bm 1.3.4.4: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:32:59 iha 1.3.4.3: remove unused parameter 'bIncludeStyleProperties' 2005/06/23 14:39:10 iha 1.3.4.2: correct support for statistic properties 2004/02/13 16:51:51 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f686b31574955cf13bd4eca2012526d1f0427369]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2007/05/03 07:58:18 iha 1.5.4.70: #i76845# heavily wrong rotation in loaded 3D charts when loading files created with younger masters src680m195 ++ 2007/04/20 08:08:25 iha 1.5.4.69: #i75393# Connect Bars per diagram not per series 2007/04/19 16:11:22 iha 1.5.4.68: #i76130# write attribute sort-by-x-values per plot-area not per series 2007/03/01 13:54:31 iha 1.5.4.67: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2007/02/26 14:34:31 iha 1.5.4.66: #i74688# disable wall for net charts 2007/02/09 17:29:20 bm 1.5.4.65: XChartDocument::createInternalDataProvider() works like expected now 2006/12/07 23:47:40 iha 1.5.4.64: rotate lights with diagram only when shade mode is on - according to spec 2006/12/07 23:18:40 iha 1.5.4.63: #i67833# simple 3D look - bring light to front 2006/12/05 11:00:21 bm 1.5.4.62: use empty() instead of size()!=0 for STL types 2006/10/18 17:16:12 bm 1.5.4.61: RESYNC: (1.6-1.7); FILE MERGED 2006/08/21 16:14:45 iha 1.5.4.60: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/08/09 17:40:44 iha 1.5.4.59: #i63017# disable/enable menu Format->Arrangement 2006/06/30 22:20:48 iha 1.5.4.58: correct 3D pie rotation: different default camera for pies 2006/06/24 18:30:38 iha 1.5.4.57: don't show wall nor floor for pies and donuts until older files can be detected 2006/06/23 15:45:05 iha 1.5.4.56: correct rotation 2006/06/18 19:33:15 iha 1.5.4.55: implement camera distance 2006/06/18 19:29:53 iha 1.5.4.54: implement camera distance 2006/06/13 19:05:51 iha 1.5.4.53: also rotate lights when rotating diagram 2006/06/09 15:31:02 iha 1.5.4.52: concentrated helping method for getting and setting rotation of diagram - don't touch the camera rotation but take it into account 2006/04/22 11:13:36 iha 1.5.4.51: park unused categories in scale with AxisType not being CATEGORY 2006/04/12 09:40:13 iha 1.5.4.50: correct x axis direction for horizontal bars 2D <-> 3D is differnet 2006/04/11 19:26:27 iha 1.5.4.49: correct x axis direction for horizontal bars 2006/04/10 15:03:35 iha 1.5.4.48: api restructure axis, grids, scales and increments 2006/04/10 12:25:15 iha 1.5.4.47: api restructure axis, grids, scales and increments 2006/01/16 12:08:58 bm 1.5.4.46: also reset diagram rotation in rearrange function 2005/12/21 21:29:27 iha 1.5.4.45: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/01 18:52:56 iha 1.5.4.44: correct axis title rotation when swapping x and y axis 2005/11/28 15:35:42 bm 1.5.4.43: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/23 15:14:29 iha 1.5.4.42: support BarOverlap and GapWidth 2005/11/08 16:32:19 iha 1.5.4.41: correct x axis direction for bar charts 2005/11/08 14:56:17 iha 1.5.4.40: set and remove categories also to and from secondary scales 2005/11/07 20:56:21 iha 1.5.4.39: implement changing series order 2005/11/02 19:16:35 iha 1.5.4.38: enable load of stock chart with japanese boxes 2005/11/02 16:10:13 bm 1.5.4.37: removed unused function getInterpretedDataFromDiagram 2005/11/02 13:49:22 bm 1.5.4.36: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/11/01 13:06:22 iha 1.5.4.35: support sequence mapping 2005/10/24 11:06:55 iha 1.5.4.34: coordinate system restructure 2005/10/13 17:39:09 iha 1.5.4.33: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 12:51:43 bm 1.5.4.32: +removeUnusedCoordinateSystems 2005/10/07 12:07:52 bm 1.5.4.31: RESYNC: (1.5-1.6); FILE MERGED 2005/09/22 16:56:41 iha 1.5.4.30: automatic categories for pie legend 2005/09/16 16:50:16 iha 1.5.4.29: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/22 11:19:05 bm 1.5.4.28: getScaleHoldingCategoriesFromDiagram: return first x-scale as fall-back 2005/08/03 16:36:27 bm 1.5.4.27: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/22 12:17:45 bm 1.5.4.26: #124486# it is allowed to pass no coordinate system, so don't assert 2005/07/14 14:50:48 bm 1.5.4.25: function for creating dummy categories (preliminary, not localized yet) 2005/06/21 16:09:05 bm 1.5.4.24: getChartTypeByIndex corrected, missing return value added to isSeriesAttachedToMainAxis 2005/06/14 15:03:39 iha 1.5.4.23: more failsave 2005/05/09 09:51:33 bm 1.5.4.22: moved parts of API to data namespace 2005/05/04 12:52:30 iha 1.5.4.21: added methods isSeriesAttachedToMainAxis(), attachSeriesToAxis(), getChartTypeOfSeries(), getCoordinateSystemOfChartType(), clearCoordinateSystem() 2005/04/19 14:33:52 bm 1.5.4.20: +getScaleHoldingCategoriesFromDiagram 2005/04/11 11:33:34 iha 1.5.4.19: changed parameter for methods set/getVertical() for old api 2004/09/30 16:04:35 bm 1.5.4.18: replaceCoordinateSystem (used by setDimension): copy chart-types between coo-sys 2004/09/20 17:25:49 bm 1.5.4.17: add parameter to setStackMode that only sets the mode at the first chart-type 2004/09/17 10:52:51 bm 1.5.4.16: API simplification 2004/09/16 16:42:42 iha 1.5.4.15: implement api redesign 2004/09/16 15:30:51 iha 1.5.4.14: implement api redesign 2004/09/16 14:43:27 iha 1.5.4.13: implement api redesign 2004/09/16 11:52:50 bm 1.5.4.12: API simplification 2004/09/15 17:06:06 bm 1.5.4.11: +getStackModeFromChartType +getChartTypesFromDiagram 2004/09/15 14:13:46 iha 1.5.4.10: implement api redesign 2004/09/15 11:44:17 bm 1.5.4.9: API simplification 2004/06/29 12:43:04 bm 1.5.4.8: +getInterpretedDataFromDiagram 2004/05/27 17:28:38 bm 1.5.4.7: +bTreatBarsAsVertical flag in get/setVertical methods 2004/05/13 09:52:12 bm 1.5.4.6: getTemplateForDiagram() supports a parameter rPreferredTemplateName for faster access in case the template didn't change 2004/04/01 16:03:03 bm 1.5.4.5: some more fixes for setDimension() for old API 2004/04/01 10:48:26 bm 1.5.4.4: +functions to get/set the SwapXAndYAxis property at coordinate-systems 2004/03/24 19:05:26 bm 1.5.4.3: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/24 10:35:00 bm 1.5.4.2: +getTemplateNameForDiagram 2004/02/13 16:51:51 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [53c76090290e31ed4986eec12ff8043879930b0f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:42 iha 1.1.2.25: resync m195 -> m202 2007/02/02 16:00:30 bm 1.1.2.24: #i68229# use the same method for determining used ranges in XChartDocument::getUsedData() as in the range-chooser dialog 2006/11/17 16:32:43 bm 1.1.2.23: in ChartModel::setParent migrate the data from one data provider to the new one, if it is the same implementation and no temporary document. This is needed for solving the current clipboard problems 2006/04/27 13:03:08 bm 1.1.2.22: allArgumentsForRectRangeDetected: HasCategories is not mandatory for this 2006/04/13 14:51:04 bm 1.1.2.21: catch exceptions that might be thrown by data provider 2006/03/17 13:28:15 bm 1.1.2.20: +allArgumentsForRectRangeDetected 2006/03/07 12:33:11 bm 1.1.2.19: underscore variables removed 2005/12/02 15:24:06 bm 1.1.2.18: +getUsedDataRanges for XDiagram, +getRangesFromLabeledDataSequence, +getRangesFromDataSource 2005/11/02 13:49:22 bm 1.1.2.17: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/11/01 13:09:02 iha 1.1.2.16: support sequence mapping 2005/10/27 17:44:42 iha 1.1.2.15: support SequenceMapping 2005/10/25 16:26:26 iha 1.1.2.14: support SequenceMapping 2005/10/11 09:20:52 bm 1.1.2.13: license header change 2005/08/19 15:28:06 bm 1.1.2.12: GetUsedData for XChartDocument 2005/08/03 16:36:27 bm 1.1.2.11: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/29 14:54:28 bm 1.1.2.10: detectRangeSegmentation: allow including unused data for calculation of data range 2005/07/14 14:48:46 bm 1.1.2.9: detectRangeSegmentation: return only true if the data provider returns a valid range 2005/05/27 12:20:43 bm 1.1.2.8: +getUsedDataRanges 2005/05/12 13:56:42 bm 1.1.2.7: API change XDataProvider 2005/05/09 09:51:33 bm 1.1.2.6: moved parts of API to data namespace 2005/04/04 16:12:37 iha 1.1.2.5: added helping methods for ranges 2004/09/16 14:43:27 iha 1.1.2.4: implement api redesign 2004/06/29 12:46:48 bm 1.1.2.3: -getRangeIdentifiers +addRangeRepresentationsFromLabeledDataSequence (was local before as helper for the above) 2004/06/23 14:09:51 bm 1.1.2.2: do not overwrite parameters where there are no corresponding arguments found 2004/05/07 16:26:38 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [aafd8fbd29ac7bda7d3fe726cc449ecaf4b18bc6]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/02/08 21:25:42 iha 1.1.4.7: resync m195 -> m202 2005/10/11 09:20:52 bm 1.1.4.6: license header change 2005/06/20 14:35:54 bm 1.1.4.5: DataSource may be created via factory 2005/05/09 09:51:33 bm 1.1.4.4: moved parts of API to data namespace 2004/03/24 10:45:09 bm 1.1.4.3: check for illegal index access 2004/03/19 14:33:02 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:51 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7eed06e07af6cb3f79354877567727972b7a1577]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2007/03/06 14:09:24 bm 1.1.4.34: lcl_findLSequenceWithOnlyLabel: make more safe if labeled sequence is empty 2007/02/24 10:38:28 iha 1.1.4.33: #i74648# also change attributed data points 2007/02/23 18:07:52 iha 1.1.4.32: #i74655# symbols lost when switching smooth lines 2007/02/09 12:39:03 bm 1.1.4.31: #i72841# temporary did not work on Linux 2007/02/09 12:29:58 bm 1.1.4.30: #i72841# move deleteSeries functionality here from source/controller/dialog/DialogModel.cxx 2006/12/11 17:31:54 bm 1.1.4.29: #i72308# allow to set the label before the values of a series 2006/10/18 17:16:03 bm 1.1.4.28: RESYNC: (1.2-1.3); FILE MERGED 2006/08/02 11:16:27 bm 1.1.4.27: #i27352# implement quick help 2006/07/25 16:46:03 bm 1.1.4.26: #i64824# handle number formats in the data browser 2006/07/19 08:46:04 bm 1.1.4.25: getLabelForLabeledDataSequence: some comments added 2006/04/11 10:53:38 bm 1.1.4.24: getAttachedAxisIndex: return a value 2006/04/10 12:25:15 iha 1.1.4.23: api restructure axis, grids, scales and increments 2006/03/10 12:45:34 bm 1.1.4.22: #i63011# explicit qualification in declaration, function names were qualified with namespace (was a class in the past) 2005/12/21 21:29:26 iha 1.1.4.21: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/02 19:19:16 iha 1.1.4.20: added helping method SetRole() 2005/11/01 13:08:08 iha 1.1.4.19: support sequence mapping 2005/10/29 18:50:11 iha 1.1.4.18: make more failsave 2005/10/27 17:43:54 iha 1.1.4.17: support autogenerated label 2005/10/25 16:28:30 iha 1.1.4.16: corrected getDataSeriesLabel 2005/10/24 11:06:55 iha 1.1.4.15: coordinate system restructure 2005/10/13 17:39:08 iha 1.1.4.14: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:07:38 bm 1.1.4.13: RESYNC: (1.1-1.2); FILE MERGED 2005/09/16 16:50:15 iha 1.1.4.12: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/09/08 18:17:42 iha 1.1.4.11: use generated labels for series names 2005/08/03 16:36:27 bm 1.1.4.10: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/05/09 13:01:22 bm 1.1.4.9: data namespace forgotten 2005/05/09 09:51:32 bm 1.1.4.8: moved parts of API to data namespace 2004/09/17 10:52:50 bm 1.1.4.7: API simplification 2004/09/15 11:48:26 bm 1.1.4.6: API simplification 2004/05/07 15:36:50 bm 1.1.4.5: legend-entries: use TextualDataSequence if available 2004/04/27 13:42:02 bm 1.1.4.4: +createUniqueSeriesId that calculates a yet unused id +getDataSeriesIdentifier convenience to get the Identifier property of a series 2004/03/19 14:33:01 bm 1.1.4.3: XDataSource now contains XLabeledDataSources 2004/02/16 09:03:06 bm 1.1.4.2: operator lcl_MatchesRole needs const operator() 2004/02/13 16:51:50 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [37defa757d484c74b4091a9b76cdc36203ebabab]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:42 iha 1.1.2.3: resync m195 -> m202 2005/11/03 16:14:33 bm 1.1.2.2: +ControllerLockHelper 2005/10/18 12:39:36 bm 1.1.2.1: class that locks controllers of a model in CTOR an unlocks in DTOR


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5cbbf6511b888044b057b5d7a7565676bf7e54be]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:42 iha 1.1.2.5: resync m195 -> m202 2005/10/11 09:20:51 bm 1.1.2.4: license header change 2005/08/12 13:00:41 bm 1.1.2.3: return type forgotten 2005/08/03 16:36:26 bm 1.1.2.2: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/28 09:36:11 bm 1.1.2.1: color scheme that reads the default colors from the configuration


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5ef6026cec343bb9b5141fba9f54e9561eb4f1a7]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2006/11/26 13:22:33 iha 1.6.4.18: method Direction3DToB3DPoint and B3DPointToPosition3D 2006/11/22 17:25:14 iha 1.6.4.17: RESYNC: (1.8-1.9); FILE MERGED 2006/11/01 15:35:04 iha 1.6.4.16: cleanup resources + changed variable names according to style guide 2006/10/20 20:32:55 iha 1.6.4.15: implement gradient step count 2006/10/18 17:15:42 bm 1.6.4.14: RESYNC: (1.7-1.8); FILE MERGED 2006/09/29 14:59:47 iha 1.6.4.13: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/09/24 09:12:55 iha 1.6.4.12: #i61970# correct implementation of axis at 2005/10/07 12:07:15 bm 1.6.4.11: RESYNC: (1.6-1.7); FILE MERGED 2005/07/23 00:01:20 iha 1.6.4.10: include axis title sizes in diagram position to support old api and fileformat 2005/05/09 09:51:32 bm 1.6.4.9: moved parts of API to data namespace 2004/06/07 17:51:14 iha 1.6.4.8: added  Direction3DToVector3D 2004/05/05 16:00:22 iha 1.6.4.7: added Vector3DToPosition3D 2004/04/27 13:32:42 iha 1.6.4.6: warnings removed 2004/03/11 09:38:33 iha 1.6.4.5: added operator+ for Direction3D 2004/02/29 10:20:42 iha 1.6.4.4: added Position3DToAWTPoint + Direction3DToAWTSize 2004/02/23 19:07:48 iha 1.6.4.3: do not convert something wrong to number - functionality not needed anymore 2004/02/20 17:34:29 iha 1.6.4.2: added method DataSequenceToStringSequence for categories at axes 2004/02/13 16:51:50 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5f8d367a8c52ff99483d69746ae3459b5c992207]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:42 iha 1.1.2.4: resync m195 -> m202 2005/10/11 09:20:51 bm 1.1.2.3: license header change 2005/08/03 16:36:26 bm 1.1.2.2: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2004/07/01 13:36:16 iha 1.1.2.1: helper for pie chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9669870c7c0f5e1e1f69ddbad83a48d83c9508a7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:42 iha 1.1.2.2: resync m195 -> m202 2006/03/12 01:29:28 iha 1.1.2.1: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4fa46fb7be290cd308e94e119346cf0bd2c7781f]

INTEGRATION: CWS chart2mst3 (1.9.4); FILE MERGED 2006/10/18 17:15:33 bm 1.9.4.11: RESYNC: (1.10-1.11); FILE MERGED 2005/11/28 15:35:41 bm 1.9.4.10: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/25 16:22:38 iha 1.9.4.9: correct labels at z axis for deep stacking 2005/11/23 15:13:37 iha 1.9.4.8: support BarOverlap and GapWidth 2005/10/07 12:07:05 bm 1.9.4.7: RESYNC: (1.9-1.10); FILE MERGED 2005/09/16 16:50:15 iha 1.9.4.6: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/04/11 09:32:54 iha 1.9.4.5: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/17 12:20:48 iha 1.9.4.4: implement api redesign - dimension property 2004/09/17 11:38:59 iha 1.9.4.3: implement api redesign - dimension property 2004/03/02 13:24:48 iha 1.9.4.2: abilities of stockchart/candlestick 2004/02/13 16:51:50 bm 1.9.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cf75f313eb4fa56918ad871d42f458218a75e875]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/02/09 17:29:20 bm 1.6.4.14: XChartDocument::createInternalDataProvider() works like expected now 2006/10/18 17:15:25 bm 1.6.4.13: RESYNC: (1.7-1.8); FILE MERGED 2006/01/23 17:40:31 bm 1.6.4.12: offer findDiagram also for an XChartDocument 2005/12/21 21:29:26 iha 1.6.4.11: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/13 17:39:07 iha 1.6.4.10: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:06:52 bm 1.6.4.9: RESYNC: (1.6-1.7); FILE MERGED 2005/08/18 15:20:44 bm 1.6.4.8: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/07/01 11:03:00 iha 1.6.4.7: make more failsafe 2005/05/31 18:29:27 iha 1.6.4.6: add methods get/setPageSize 2005/05/04 12:54:39 iha 1.6.4.5: implementation of 2 methods moved to DiagramHelper 2004/09/16 14:43:27 iha 1.6.4.4: implement api redesign 2004/03/19 10:55:41 iha 1.6.4.3: removed getScaleGroupOfSeries again - use getParentOfNode instead 2004/03/18 16:20:08 iha 1.6.4.2: added method getScaleGroupOfSeries 2004/03/09 11:06:37 iha 1.6.4.1: find correct charttype for series also for 3D


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [89335b624e5375a8061722fef55f64aae29bf165]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:42 iha 1.1.2.16: resync m195 -> m202 2006/04/10 12:25:14 iha 1.1.2.15: api restructure axis, grids, scales and increments 2005/12/21 21:29:25 iha 1.1.2.14: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/24 11:06:54 iha 1.1.2.13: coordinate system restructure 2005/10/13 17:39:07 iha 1.1.2.12: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 09:20:51 bm 1.1.2.11: license header change 2005/09/16 16:50:14 iha 1.1.2.10: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/09/07 14:44:59 bm 1.1.2.9: XChartDocument: +hasInternalDataProvider, -getDataEditorForInternalData 2005/08/18 15:20:44 bm 1.1.2.8: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/05/09 09:51:32 bm 1.1.2.7: moved parts of API to data namespace 2005/04/25 09:34:17 bm 1.1.2.6: trace categories 2005/04/19 14:33:30 bm 1.1.2.5: also trace categories 2004/09/20 14:37:11 bm 1.1.2.4: some more debug code 2004/09/20 08:52:15 bm 1.1.2.3: stacking added 2004/09/17 16:25:13 bm 1.1.2.2: improved 2004/09/17 13:46:25 bm 1.1.2.1: helper for showing OSL_TRACES about objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b3bf48892e37ee80cc5ef616099ac11e4236687e]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/10/18 17:15:17 bm 1.1.4.10: RESYNC: (1.2-1.3); FILE MERGED 2006/02/20 09:15:19 bm 1.1.4.9: +helper function to get a FontDescriptor from properties 2005/10/07 12:06:39 bm 1.1.4.8: RESYNC: (1.1-1.2); FILE MERGED 2005/09/02 11:12:21 bm 1.1.4.7: default value for FontStrikeOut had wrong type 2005/07/14 12:45:44 iha 1.1.4.6: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/06/02 16:55:36 iha 1.1.4.5: use awt::CharSet::DONTKNOW instead of SYSTEM to avoid assertion issue 50249 2005/04/21 14:16:24 iha 1.1.4.4: added defaults 2005/04/19 17:36:31 iha 1.1.4.3: improved old api support (introduced wrappedpropertyset ...) 2004/05/26 16:26:58 bm 1.1.4.2: default font sizes adapted 2004/02/13 16:51:49 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [93fc2271bdff62af678e529e839d50509959ef5b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:41 iha 1.1.2.20: resync m195 -> m202 2006/04/04 15:59:06 bm 1.1.2.19: implement XModifyBroadcaster 2006/04/04 13:46:43 bm 1.1.2.18: add XModifyBroadcaster to DataSequence 2005/10/11 09:20:50 bm 1.1.2.17: license header change 2005/09/08 12:42:03 bm 1.1.2.16: +generateLabel 2005/08/11 16:00:27 bm 1.1.2.15: small changes 2005/08/05 13:59:03 bm 1.1.2.14: -XDataSequence::generateLabel 2005/08/03 16:36:26 bm 1.1.2.13: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/21 14:47:11 bm 1.1.2.12: support for number formats from data provider 2005/05/09 09:51:32 bm 1.1.2.11: moved parts of API to data namespace 2005/05/03 16:52:43 bm 1.1.2.10: XDataProvider, XDataSequence: RangeIdentifiers removed 2004/06/03 10:12:06 iha 1.1.2.9: added missing interface method 'generateLabel' 2004/04/22 14:22:12 bm 1.1.2.8: member initialisation order was wrong 2004/04/15 17:26:54 bm 1.1.2.7: cloning for data sequences 2004/04/05 14:12:26 bm 1.1.2.6: XDataProvider API changed 2004/03/29 13:27:26 bm 1.1.2.5: -label / getSourceRangeRepresentation -> getSourceIdentifier 2004/03/24 10:44:05 bm 1.1.2.4: +CTOR with a single string (for the typical "label-case") 2004/03/19 14:33:01 bm 1.1.2.3: XDataSource now contains XLabeledDataSources 2004/03/09 13:02:48 bm 1.1.2.2: XDataSequence: +getLabel, getLabelSourceIdentifier 2004/03/02 09:27:42 bm 1.1.2.1: moved here from model/main


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a18ab91370082fa39564c5c930a4a181a63bbdf0]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:41 iha 1.1.2.12: resync m195 -> m202 2006/12/13 18:38:45 iha 1.1.2.11: #i71189# corrected check whether clipping is necessary 2006/11/26 12:59:45 iha 1.1.2.10: performance: avoid unnecessary clipping 2006/11/09 15:31:53 iha 1.1.2.9: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/23 16:02:23 iha 1.1.2.8: use corrected matrix decompose method from basegfx 2006/08/10 15:44:56 iha 1.1.2.7: additional conversion from basegfx to UNO types 2006/07/01 20:54:35 iha 1.1.2.6: correct sign error in matrix rotation decompose 2006/06/23 20:24:43 iha 1.1.2.5: correct rotation decomposition for 90degree 2006/06/23 15:39:15 iha 1.1.2.4: removed superfluous includes 2006/06/23 15:14:18 iha 1.1.2.3: more correct matrix rotation decomposition + added helping methods for rotation 2006/06/09 14:45:07 iha 1.1.2.2: added conversions from/to B3DVector to/from Direction3D and Position3D 2005/11/02 12:13:32 bm 1.1.2.1: helper functions for basegfx matrix etc.


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4f8531d349721ea3680654b277d44b11a6b38c3f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/20 12:25:57 iha 1.1.2.10: #i74576# enable and display minor grids for category axes 2007/02/23 15:46:24 iha 1.1.2.9: #i74663# insert correct 2nd x axis in category charts 2007/02/15 20:22:29 iha 1.1.2.8: #i74576# disable inserting minor grids on category axis 2007/02/08 21:25:41 iha 1.1.2.7: resync m195 -> m202 2006/10/13 09:32:02 iha 1.1.2.6: #i66856# correct sourceformat for x axis 2006/10/10 08:47:05 iha 1.1.2.5: remove explicit scaling for category axis and pie axis 2006/08/16 14:56:20 iha 1.1.2.4: #124495# categories for net chart are not displayed when loading old files 2006/04/10 18:48:02 dr 1.1.2.3: remove assertions 2006/04/10 18:32:12 iha 1.1.2.2: api restructure axis, grids, scales and increments 2006/04/10 15:00:52 iha 1.1.2.1: api restructure axis, grids, scales and increments


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [035f26b55c34fa83bfafad92f6f94d815b5df196]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2005/10/07 12:00:57 bm 1.5.4.7: RESYNC: (1.7-1.8); FILE MERGED 2005/07/25 15:20:04 bm 1.5.4.6: RESYNC: (1.6-1.7); FILE MERGED 2005/06/27 13:40:26 iha 1.5.4.5: support property number of lines 2004/09/16 14:42:48 bm 1.5.4.4: API simplification 2004/09/15 17:32:08 bm 1.5.4.3: API simplification 2004/06/03 03:39:48 iha 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2004/02/13 16:51:48 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d889f5801eabfcad0711e89052fe3bef1a9d5771]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:41 iha 1.1.2.6: resync m195 -> m202 2006/03/10 10:55:22 iha 1.1.2.5: don't use leading underscore 2005/10/11 09:20:49 bm 1.1.2.4: license header change 2004/09/16 16:10:03 bm 1.1.2.3: API simplification 2004/09/16 16:02:07 bm 1.1.2.2: API simplification 2004/09/16 14:42:18 bm 1.1.2.1: registration for chart types


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6c966b94fa3acc0dc43c78dcdfcc86af25fea33f]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2005/10/11 09:20:49 bm 1.1.4.5: license header change 2005/05/09 09:51:31 bm 1.1.4.4: moved parts of API to data namespace 2004/05/07 13:40:25 bm 1.1.4.3: context added in CTOR 2004/03/19 14:33:00 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:47 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [afb97130d708a5195ddc72a0b3661605361bfc23]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/02/08 21:25:40 iha 1.1.4.17: resync m195 -> m202 2006/12/12 16:13:04 iha 1.1.4.16: #i67784# data disappear while selecting 'XY (Scatter)' having only one sequence 2006/04/28 13:41:19 bm 1.1.4.15: #i64618# reinterpretDataSeries: leave Categories in passed aInterpretedData to leave it stored at the scale 2006/04/22 11:09:48 iha 1.1.4.14: park unused categories in scale with AxisType not being CATEGORY 2005/12/21 21:29:24 iha 1.1.4.13: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/11 09:20:48 bm 1.1.4.12: license header change 2005/08/03 16:36:25 bm 1.1.4.11: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/08/01 09:39:38 bm 1.1.4.10: use base method HasCategories to determine the existence of categories 2005/07/29 13:30:16 bm 1.1.4.9: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/07/19 11:17:48 bm 1.1.4.8: shift data if it contains categories 2005/05/09 09:51:31 bm 1.1.4.7: moved parts of API to data namespace 2004/05/07 13:40:25 bm 1.1.4.6: context added in CTOR 2004/04/15 17:26:54 bm 1.1.4.5: cloning for data sequences 2004/03/24 10:43:41 bm 1.1.4.4: check for interface validity 2004/03/19 14:33:00 bm 1.1.4.3: XDataSource now contains XLabeledDataSources 2004/03/03 14:06:07 bm 1.1.4.2: don't recycle categories as x-values 2004/02/13 16:51:46 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7430c8bc94de13f5bc2ed33259189759e6e783fb]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/03/20 12:10:44 bm 1.1.4.8: code-review: add keyword virtual to DTOR 2005/11/08 16:52:31 bm 1.1.4.7: overload reinterpretDataSeriesand do nothing to prevent standard reinterpretation 2005/10/11 09:20:46 bm 1.1.4.6: license header change 2005/07/29 13:30:16 bm 1.1.4.5: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/05/09 09:51:29 bm 1.1.4.4: moved parts of API to data namespace 2004/05/07 13:40:25 bm 1.1.4.3: context added in CTOR 2004/03/19 14:33:00 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:46 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0aec5ed584b00d5fdb0e585ef2d76398f34410ab]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/03/20 12:19:42 bm 1.1.4.17: creation of stock type 4 with wizard fixed (order of sequences was broken due to reverse iteration) 2007/03/06 16:48:12 bm 1.1.4.16: #i72433# improved handling of stock charts. Still not really good, but better 2007/02/08 21:25:40 iha 1.1.4.15: resync m195 -> m202 2006/11/17 21:49:09 iha 1.1.4.14: don't loose ranges when sequence count is not suiteable for stock charts, show at least close values  when having not enough sequences 2006/11/17 21:47:34 iha 1.1.4.13: don't loose ranges when sequence count is not suiteable for stock charts, show at least close values  when having not enough sequences 2006/10/20 20:20:46 iha 1.1.4.12: #i68043# load stockchart even if not enough series are provided 2006/08/28 11:49:57 iha 1.1.4.11: corrected order in comment 2005/12/21 21:29:23 iha 1.1.4.10: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/08 16:52:15 bm 1.1.4.9: overload reinterpretDataSeriesand do nothing to prevent standard reinterpretation 2005/10/11 09:20:46 bm 1.1.4.8: license header change 2005/08/03 16:36:25 bm 1.1.4.7: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/29 13:30:16 bm 1.1.4.6: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/07/12 16:38:14 bm 1.1.4.5: interpretDataSource: chicken out when we do not have enough data (instead of crashing) 2005/05/09 09:51:29 bm 1.1.4.4: moved parts of API to data namespace 2004/05/07 13:40:25 bm 1.1.4.3: context added in CTOR 2004/03/19 14:33:00 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:45 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [afff95287abc5424e4e409202c7050bebb93b2a5]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/03/26 14:21:59 iha 1.2.4.23: #i75590# copy some aspects from old charttype during creation of new 2007/03/01 13:54:31 iha 1.2.4.22: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2006/08/10 17:10:42 bm 1.2.4.21: second axis for stock charts fixed 2006/04/10 12:25:14 iha 1.2.4.20: api restructure axis, grids, scales and increments 2005/11/28 18:01:02 iha 1.2.4.19: set series to correct axis for stockcharts 2005/10/24 11:06:53 iha 1.2.4.18: coordinate system restructure 2005/10/13 17:39:06 iha 1.2.4.17: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:06:29 bm 1.2.4.16: RESYNC: (1.2-1.3); FILE MERGED 2005/08/04 11:53:43 bm 1.2.4.15: set stack mode at new series. Percent stacking is now set in adaptScales 2005/07/15 16:07:22 bm 1.2.4.14: keep more old objects on chart type changes 2005/05/09 09:51:28 bm 1.2.4.13: moved parts of API to data namespace 2004/09/15 17:32:08 bm 1.2.4.12: API simplification 2004/06/29 12:26:36 bm 1.2.4.11: XChartTypeTemplate changes 2004/05/27 17:27:14 bm 1.2.4.10: +getChartTypeForNewSeries at XChartTypeTemplate 2004/04/01 10:53:12 bm 1.2.4.9: XChartType: may return a coordinate system now 2004/03/24 19:05:26 bm 1.2.4.8: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:28:21 iha 1.2.4.7: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/19 14:32:59 bm 1.2.4.6: XDataSource now contains XLabeledDataSources 2004/03/12 15:39:42 iha 1.2.4.5: create a secondary y axis for stock charts 2004/03/03 14:14:41 bm 1.2.4.4: create 2 coordinate-systems if there is volume 2004/03/02 16:40:45 bm 1.2.4.3: allow creating more than one coordinate system 2004/02/20 17:43:58 iha 1.2.4.2: integrate categories at ScaleData 2004/02/13 16:51:45 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2981dcfe9d3f9e40ab2b9b3362e31c1de1e80952]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/03/26 14:21:26 iha 1.3.4.42: #i75590# copy some aspects from old charttype during creation of new 2007/03/01 13:54:31 iha 1.3.4.41: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2007/02/21 13:40:24 bm 1.3.4.40: #i72433# create only one y-axis for stock variants without volume 2006/11/17 21:52:47 iha 1.3.4.39: switch lines on for stock charts 2006/10/18 17:15:09 bm 1.3.4.38: RESYNC: (1.4-1.5); FILE MERGED 2006/08/10 17:10:42 bm 1.3.4.37: second axis for stock charts fixed 2006/04/10 15:03:35 iha 1.3.4.36: api restructure axis, grids, scales and increments 2006/04/10 12:25:14 iha 1.3.4.35: api restructure axis, grids, scales and increments 2005/11/28 18:01:21 iha 1.3.4.34: set series to correct axis for stockcharts 2005/11/02 22:33:58 iha 1.3.4.33: fixed loading of stock charts with volume 2005/10/24 11:06:52 iha 1.3.4.32: coordinate system restructure 2005/10/13 17:39:06 iha 1.3.4.31: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:06:19 bm 1.3.4.30: RESYNC: (1.3-1.4); FILE MERGED 2005/09/16 16:50:13 iha 1.3.4.29: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/04 11:53:43 bm 1.3.4.28: set stack mode at new series. Percent stacking is now set in adaptScales 2005/08/03 16:36:25 bm 1.3.4.27: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/18 16:11:36 bm 1.3.4.26: stock chart issues fixed 2005/07/15 16:07:22 bm 1.3.4.25: keep more old objects on chart type changes 2005/07/13 09:17:41 bm 1.3.4.24: set properties at candlestick chart type / matching fixed 2005/07/12 16:39:42 bm 1.3.4.23: better matching in matchesTemplate 2005/05/09 09:51:27 bm 1.3.4.22: moved parts of API to data namespace 2005/04/11 09:36:18 iha 1.3.4.21: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/20 09:49:58 bm 1.3.4.20: set stacking explicitly to NONE 2004/09/17 16:00:21 iha 1.3.4.19: avoid index out of bounds 2004/09/16 15:29:28 bm 1.3.4.18: superfluous headers removed 2004/09/16 15:24:27 bm 1.3.4.17: API simplification 2004/09/16 13:24:51 bm 1.3.4.16: API simplification 2004/09/16 12:27:30 bm 1.3.4.15: API simplification 2004/06/29 12:26:36 bm 1.3.4.14: XChartTypeTemplate changes 2004/05/27 17:27:13 bm 1.3.4.13: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 13:41:02 bm 1.3.4.12: context added in CTOR for DataInterpreter 2004/04/01 10:53:12 bm 1.3.4.11: XChartType: may return a coordinate system now 2004/03/24 19:05:25 bm 1.3.4.10: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:28:39 iha 1.3.4.9: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/19 14:32:59 bm 1.3.4.8: XDataSource now contains XLabeledDataSources 2004/03/18 16:35:22 iha 1.3.4.7: removed unused include 2004/03/12 15:39:42 iha 1.3.4.6: create a secondary y axis for stock charts 2004/03/03 14:12:06 bm 1.3.4.5: create 2 coordinate-systems if there is volume 2004/03/02 16:40:44 bm 1.3.4.4: allow creating more than one coordinate system 2004/03/01 09:31:26 bm 1.3.4.3: JapaneseStyle Property was not set correctly in CTOR 2004/02/20 17:43:58 iha 1.3.4.2: integrate categories at ScaleData 2004/02/13 16:51:45 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [39a02f88a46f5d6103571f94617a76c7a248c011]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/03/26 14:20:42 iha 1.4.4.17: #i75590# copy some aspects from old charttype during creation of new 2005/10/07 12:06:06 bm 1.4.4.16: RESYNC: (1.4-1.5); FILE MERGED 2005/07/15 16:07:22 bm 1.4.4.15: keep more old objects on chart type changes 2005/07/14 14:59:03 bm 1.4.4.14: overload supportsCategories 2005/05/09 09:51:27 bm 1.4.4.13: moved parts of API to data namespace 2004/09/15 17:32:07 bm 1.4.4.12: API simplification 2004/06/29 12:26:35 bm 1.4.4.11: XChartTypeTemplate changes 2004/05/27 17:27:13 bm 1.4.4.10: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:37 bm 1.4.4.9: applyStyle works for single series now 2004/04/20 19:21:35 iha 1.4.4.8: make curve style an adabtable property 2004/04/01 10:53:12 bm 1.4.4.7: XChartType: may return a coordinate system now 2004/03/24 19:05:25 bm 1.4.4.6: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:27:08 iha 1.4.4.5: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/19 14:32:59 bm 1.4.4.4: XDataSource now contains XLabeledDataSources 2004/03/02 16:40:44 bm 1.4.4.3: allow creating more than one coordinate system 2004/02/20 17:43:58 iha 1.4.4.2: integrate categories at ScaleData 2004/02/13 16:51:45 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [20a8e8e33d204d11b12aae1538886412ea07ae40]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2007/03/26 14:20:18 iha 1.5.4.31: #i75590# copy some aspects from old charttype during creation of new 2007/02/23 18:09:22 iha 1.5.4.30: #i74655# symbols lost when switching smooth lines 2006/10/18 17:15:01 bm 1.5.4.29: RESYNC: (1.6-1.7); FILE MERGED 2006/04/10 12:25:14 iha 1.5.4.28: api restructure axis, grids, scales and increments 2005/12/20 14:13:26 dr 1.5.4.27: API struct member names without prefixes 2005/10/30 12:42:00 iha 1.5.4.26: #125770# detect symbolstyle correctly 2005/10/07 12:05:55 bm 1.5.4.25: RESYNC: (1.5-1.6); FILE MERGED 2005/08/04 11:53:43 bm 1.5.4.24: set stack mode at new series. Percent stacking is now set in adaptScales 2005/08/03 16:36:25 bm 1.5.4.23: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/15 16:07:21 bm 1.5.4.22: keep more old objects on chart type changes 2005/07/14 14:58:45 bm 1.5.4.21: overload supportsCategories 2005/05/09 09:51:26 bm 1.5.4.20: moved parts of API to data namespace 2005/04/11 09:36:45 iha 1.5.4.19: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/16 15:29:28 bm 1.5.4.18: superfluous headers removed 2004/09/16 15:24:27 bm 1.5.4.17: API simplification 2004/09/16 13:24:51 bm 1.5.4.16: API simplification 2004/09/16 12:27:30 bm 1.5.4.15: API simplification 2004/09/15 17:32:07 bm 1.5.4.14: API simplification 2004/06/29 12:26:35 bm 1.5.4.13: XChartTypeTemplate changes 2004/05/27 17:27:13 bm 1.5.4.12: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:37 bm 1.5.4.11: applyStyle works for single series now 2004/05/07 13:41:01 bm 1.5.4.10: context added in CTOR for DataInterpreter 2004/04/20 19:21:34 iha 1.5.4.9: make curve style an adabtable property 2004/04/01 10:53:12 bm 1.5.4.8: XChartType: may return a coordinate system now 2004/03/24 19:05:25 bm 1.5.4.7: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/24 15:18:00 bm 1.5.4.6: matchesTemplate: mismatch for symbols-lines template with symbol-only chart 2004/03/22 15:27:38 iha 1.5.4.5: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/19 14:32:59 bm 1.5.4.4: XDataSource now contains XLabeledDataSources 2004/03/02 16:40:44 bm 1.5.4.3: allow creating more than one coordinate system 2004/02/20 17:43:57 iha 1.5.4.2: integrate categories at ScaleData 2004/02/13 16:51:44 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7fb2bbb01e951de4a78bef1305ad961d35d7838e]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2005/11/14 13:47:45 iha 1.3.4.7: createCoordinateSystem without categories for scatter chart 2005/10/07 12:05:44 bm 1.3.4.6: RESYNC: (1.3-1.4); FILE MERGED 2005/03/30 16:31:13 bm 1.3.4.5: make model cloneable (+first undo implementation) 2004/09/16 14:42:47 bm 1.3.4.4: API simplification 2004/09/16 12:27:30 bm 1.3.4.3: API simplification 2004/04/01 10:53:12 bm 1.3.4.2: XChartType: may return a coordinate system now 2004/03/02 09:49:19 bm 1.3.4.1: XChartTypeInterface changed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a3c9405741693b7fe2f744831352f69bd920ce88]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:14:53 bm 1.3.4.16: RESYNC: (1.4-1.5); FILE MERGED 2006/04/10 12:25:14 iha 1.3.4.15: api restructure axis, grids, scales and increments 2006/03/29 22:24:45 iha 1.3.4.14: restructure legend entry creation + legend entries in data labels 2005/11/25 16:21:36 iha 1.3.4.13: correct labels at z axis for deep stacking 2005/11/14 13:47:45 iha 1.3.4.12: createCoordinateSystem without categories for scatter chart 2005/10/07 12:05:33 bm 1.3.4.11: RESYNC: (1.3-1.4); FILE MERGED 2005/08/03 16:36:25 bm 1.3.4.10: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/04/11 09:38:48 iha 1.3.4.9: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/03/30 16:31:13 bm 1.3.4.8: make model cloneable (+first undo implementation) 2004/09/16 14:42:47 bm 1.3.4.7: API simplification 2004/09/16 12:27:29 bm 1.3.4.6: API simplification 2004/05/27 17:41:54 bm 1.3.4.5: error-bars not supported yet 2004/04/01 10:53:12 bm 1.3.4.4: XChartType: may return a coordinate system now 2004/03/19 16:44:10 bm 1.3.4.3: symbols in legend 2004/03/02 09:49:19 bm 1.3.4.2: XChartTypeInterface changed 2004/02/13 16:51:44 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7263b867f593dfbfa4dd062f83c319f89a7e5b23]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/03/26 14:19:43 iha 1.3.4.25: #i75590# copy some aspects from old charttype during creation of new 2007/03/01 13:54:31 iha 1.3.4.24: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2006/10/10 08:47:24 iha 1.3.4.23: remove explicit scaling for category axis and pie axis 2006/08/10 17:10:41 bm 1.3.4.22: second axis for stock charts fixed 2006/04/10 12:25:13 iha 1.3.4.21: api restructure axis, grids, scales and increments 2005/10/13 17:39:05 iha 1.3.4.20: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:05:17 bm 1.3.4.19: RESYNC: (1.3-1.4); FILE MERGED 2005/07/26 12:13:35 bm 1.3.4.18: +resetStyles for restoring default settings, StackMode was not set in createChartTypes, allow change to unexploded if mode before was exploded, changed default explosion value to 0.5 2005/07/22 15:59:39 bm 1.3.4.17: #124566# on changeDiagram keep even more existing objects 2005/07/15 16:07:21 bm 1.3.4.16: keep more old objects on chart type changes 2005/06/24 16:11:35 iha 1.3.4.15: change scene descriptor for pie charts to have a more visible default position 2004/09/15 17:32:07 bm 1.3.4.14: API simplification 2004/06/29 12:26:35 bm 1.3.4.13: XChartTypeTemplate changes 2004/05/27 17:27:13 bm 1.3.4.12: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:36 bm 1.3.4.11: applyStyle works for single series now 2004/04/21 20:07:17 iha 1.3.4.10: #i20344# pie subtypes changed 2004/04/19 17:29:02 iha 1.3.4.9: enable pie ring switch 2004/04/01 10:53:11 bm 1.3.4.8: XChartType: may return a coordinate system now 2004/03/24 10:43:15 bm 1.3.4.7: use getXStackMode() to make the generic matchesTemplate() method work again remove lines in 3d pie 2004/03/22 15:24:20 iha 1.3.4.6: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/19 14:32:59 bm 1.3.4.5: XDataSource now contains XLabeledDataSources 2004/03/08 13:34:24 bm 1.3.4.4: createAndAddAxes, createAndAddGrids: gets a sequences of coordinate systems now 2004/03/02 16:40:44 bm 1.3.4.3: allow creating more than one coordinate system 2004/02/20 17:43:57 iha 1.3.4.2: integrate categories at ScaleData 2004/02/13 16:51:44 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [241968098483c22604a7a31f3b5eeadf4ca38f6b]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/03/28 16:23:41 iha 1.6.4.50: #i75818# donuts change series order after save and reload, explosion gone 2007/03/27 10:18:40 iha 1.6.4.49: #i75776# explode the outer series for donuts 2007/03/26 14:19:21 iha 1.6.4.48: #i75590# copy some aspects from old charttype during creation of new 2007/03/01 13:54:30 iha 1.6.4.47: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2006/10/18 17:14:46 bm 1.6.4.46: RESYNC: (1.7-1.8); FILE MERGED 2006/10/10 08:47:24 iha 1.6.4.45: remove explicit scaling for category axis and pie axis 2006/09/29 15:00:35 iha 1.6.4.44: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/08/10 17:10:41 bm 1.6.4.43: second axis for stock charts fixed 2006/06/30 22:22:19 iha 1.6.4.42: correct 3D pie rotation: different default camera for pies 2006/04/10 12:25:13 iha 1.6.4.41: api restructure axis, grids, scales and increments 2006/01/26 16:18:59 bm 1.6.4.40: deprecated (and unused) header included 2005/11/02 13:49:21 bm 1.6.4.39: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/13 17:39:04 iha 1.6.4.38: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:05:06 bm 1.6.4.37: RESYNC: (1.6-1.7); FILE MERGED 2005/08/26 16:18:36 bm 1.6.4.36: reset number format when switching forth and back percent stacking 2005/08/05 14:19:59 bm 1.6.4.35: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/04 11:53:43 bm 1.6.4.34: set stack mode at new series. Percent stacking is now set in adaptScales 2005/08/03 16:36:24 bm 1.6.4.33: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/29 13:30:15 bm 1.6.4.32: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/07/28 09:34:52 bm 1.6.4.31: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/26 12:13:17 bm 1.6.4.30: +resetStyles for restoring default settings, StackMode was not set in createChartTypes, allow change to unexploded if mode before was exploded, changed default explosion value to 0.5 2005/07/22 15:59:39 bm 1.6.4.29: #124566# on changeDiagram keep even more existing objects 2005/07/19 11:22:40 bm 1.6.4.28: only set floor to empty fillstyle if chart is 3d 2005/07/19 11:19:32 bm 1.6.4.27: remove floor filling for 3d pies 2005/07/18 16:11:35 bm 1.6.4.26: stock chart issues fixed 2005/07/15 16:07:21 bm 1.6.4.25: keep more old objects on chart type changes 2005/07/14 14:58:12 bm 1.6.4.24: remove wall filling 2005/06/24 16:12:01 iha 1.6.4.23: change scene descriptor for pie charts to have a more visible default position 2005/04/11 09:39:19 iha 1.6.4.22: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/03/30 16:31:13 bm 1.6.4.21: make model cloneable (+first undo implementation) 2004/09/16 15:29:28 bm 1.6.4.20: superfluous headers removed 2004/09/16 15:24:26 bm 1.6.4.19: API simplification 2004/09/16 12:27:29 bm 1.6.4.18: API simplification 2004/09/15 17:32:07 bm 1.6.4.17: API simplification 2004/06/29 12:26:35 bm 1.6.4.16: XChartTypeTemplate changes 2004/05/27 17:27:12 bm 1.6.4.15: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/08 17:54:54 iha 1.6.4.14: polartransformation fixes and pie offset implementation 2004/05/07 15:34:36 bm 1.6.4.13: applyStyle works for single series now 2004/04/21 20:07:17 iha 1.6.4.12: #i20344# pie subtypes changed 2004/04/19 20:04:22 iha 1.6.4.11: #i20344# enable Pie Offset Mode 2004/04/19 17:28:49 iha 1.6.4.10: enable pie ring switch 2004/04/01 10:53:11 bm 1.6.4.9: XChartType: may return a coordinate system now 2004/03/24 10:42:54 bm 1.6.4.8: use getXStackMode() to make the generic matchesTemplate() method work again remove lines in 3d pie 2004/03/22 19:28:12 iha 1.6.4.7: Pie has swapped x and y axis 2004/03/22 15:24:42 iha 1.6.4.6: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/19 14:32:58 bm 1.6.4.5: XDataSource now contains XLabeledDataSources 2004/03/08 13:35:15 bm 1.6.4.4: createAndAddAxes, createAndAddGrids: gets a sequences of coordinate systems now 2004/03/02 16:40:44 bm 1.6.4.3: allow creating more than one coordinate system 2004/02/20 17:43:57 iha 1.6.4.2: integrate categories at ScaleData 2004/02/13 16:51:43 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e45bb965b2e52676757c8ca07059fc0bc9b55362]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/13 17:39:04 iha 1.1.1.1.4.10: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:04:55 bm 1.1.1.1.4.9: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/03/30 16:31:13 bm 1.1.1.1.4.8: make model cloneable (+first undo implementation) 2004/09/16 14:42:47 bm 1.1.1.1.4.7: API simplification 2004/09/16 12:27:29 bm 1.1.1.1.4.6: API simplification 2004/09/15 17:32:07 bm 1.1.1.1.4.5: API simplification 2004/05/08 17:54:54 iha 1.1.1.1.4.4: polartransformation fixes and pie offset implementation 2004/04/19 20:04:22 iha 1.1.1.1.4.3: #i20344# enable Pie Offset Mode 2004/04/19 11:55:38 iha 1.1.1.1.4.2: enable switching between ring and pie 2004/04/01 10:53:11 bm 1.1.1.1.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8819bd2f3b7a55e5ca137cf1e1fdcf4b6d625dfd]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:14:38 bm 1.3.4.20: RESYNC: (1.4-1.5); FILE MERGED 2006/10/10 08:47:24 iha 1.3.4.19: remove explicit scaling for category axis and pie axis 2006/04/10 12:25:13 iha 1.3.4.18: api restructure axis, grids, scales and increments 2005/10/24 11:06:52 iha 1.3.4.17: coordinate system restructure 2005/10/13 17:39:04 iha 1.3.4.16: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:04:43 bm 1.3.4.15: RESYNC: (1.3-1.4); FILE MERGED 2005/09/16 16:50:13 iha 1.3.4.14: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/03 16:36:24 bm 1.3.4.13: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/19 11:41:36 iha 1.3.4.12: change pie orientation to old default 2005/04/11 09:39:41 iha 1.3.4.11: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/03/30 16:31:13 bm 1.3.4.10: make model cloneable (+first undo implementation) 2004/09/16 14:42:47 bm 1.3.4.9: API simplification 2004/09/16 13:24:50 bm 1.3.4.8: API simplification 2004/09/16 12:27:29 bm 1.3.4.7: API simplification 2004/09/15 17:32:07 bm 1.3.4.6: API simplification 2004/05/08 17:54:54 iha 1.3.4.5: polartransformation fixes and pie offset implementation 2004/04/19 20:04:22 iha 1.3.4.4: #i20344# enable Pie Offset Mode 2004/04/19 11:56:23 iha 1.3.4.3: enable switching between ring and pie 2004/04/01 10:53:11 bm 1.3.4.2: XChartType: may return a coordinate system now 2004/02/13 16:51:43 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [14706dbe6ea7abd417621b54d80145ec12b4449a]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/03/26 14:18:33 iha 1.2.4.16: #i75590# copy some aspects from old charttype during creation of new 2005/10/07 12:04:33 bm 1.2.4.15: RESYNC: (1.2-1.3); FILE MERGED 2005/08/05 14:19:58 bm 1.2.4.14: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2004/09/16 12:27:29 bm 1.2.4.13: API simplification 2004/09/15 17:32:06 bm 1.2.4.12: API simplification 2004/06/29 12:26:35 bm 1.2.4.11: XChartTypeTemplate changes 2004/05/27 17:27:12 bm 1.2.4.10: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:36 bm 1.2.4.9: applyStyle works for single series now 2004/04/21 20:45:54 iha 1.2.4.8: #i20344# net subtypes changed 2004/04/01 10:53:11 bm 1.2.4.7: XChartType: may return a coordinate system now 2004/03/24 19:05:25 bm 1.2.4.6: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:23:18 iha 1.2.4.5: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/19 14:32:58 bm 1.2.4.4: XDataSource now contains XLabeledDataSources 2004/03/02 16:40:43 bm 1.2.4.3: allow creating more than one coordinate system 2004/02/20 17:43:56 iha 1.2.4.2: integrate categories at ScaleData 2004/02/13 16:51:43 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [22ff77b1f747bc92e1a6447d612ecdf896d3bff1]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/03/26 14:17:52 iha 1.3.4.28: #i75590# copy some aspects from old charttype during creation of new 2007/02/23 18:09:51 iha 1.3.4.27: #i74655# symbols lost when switching smooth lines 2006/10/18 17:14:29 bm 1.3.4.26: RESYNC: (1.4-1.5); FILE MERGED 2006/05/18 14:17:35 bm 1.3.4.25: #i65525# template detection corrected 2006/04/10 12:25:13 iha 1.3.4.24: api restructure axis, grids, scales and increments 2005/12/20 14:13:26 dr 1.3.4.23: API struct member names without prefixes 2005/10/07 12:04:23 bm 1.3.4.22: RESYNC: (1.3-1.4); FILE MERGED 2005/08/05 14:19:58 bm 1.3.4.21: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/04 11:53:42 bm 1.3.4.20: set stack mode at new series. Percent stacking is now set in adaptScales 2005/08/03 16:36:24 bm 1.3.4.19: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/04/14 16:30:09 iha 1.3.4.18: removed wrong previous changes 2005/04/14 16:28:17 iha 1.3.4.17: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/04/11 09:40:09 iha 1.3.4.16: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/16 15:24:26 bm 1.3.4.15: API simplification 2004/09/16 13:24:50 bm 1.3.4.14: API simplification 2004/09/16 12:27:28 bm 1.3.4.13: API simplification 2004/09/15 17:32:06 bm 1.3.4.12: API simplification 2004/06/29 12:26:34 bm 1.3.4.11: XChartTypeTemplate changes 2004/05/27 17:27:12 bm 1.3.4.10: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:35 bm 1.3.4.9: applyStyle works for single series now 2004/04/21 20:45:54 iha 1.3.4.8: #i20344# net subtypes changed 2004/04/01 10:53:11 bm 1.3.4.7: XChartType: may return a coordinate system now 2004/03/24 19:05:25 bm 1.3.4.6: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:23:50 iha 1.3.4.5: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/19 14:32:58 bm 1.3.4.4: XDataSource now contains XLabeledDataSources 2004/03/02 16:40:43 bm 1.3.4.3: allow creating more than one coordinate system 2004/02/20 17:43:56 iha 1.3.4.2: integrate categories at ScaleData 2004/02/13 16:51:43 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [04af378b93ea74e1f68b2dea14f152268a13cc62]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2005/10/13 17:39:03 iha 1.1.4.7: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:04:12 bm 1.1.4.6: RESYNC: (1.1-1.2); FILE MERGED 2005/03/30 16:31:12 bm 1.1.4.5: make model cloneable (+first undo implementation) 2004/09/16 14:42:47 bm 1.1.4.4: API simplification 2004/09/15 17:32:06 bm 1.1.4.3: API simplification 2004/04/01 10:53:10 bm 1.1.4.2: XChartType: may return a coordinate system now 2004/03/03 14:57:30 bm 1.1.4.1: support LegendSymbolStyle property


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f20e2723754615f1584b685549b2816bebedee24]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:14:21 bm 1.2.4.18: RESYNC: (1.3-1.4); FILE MERGED 2006/04/10 12:25:13 iha 1.2.4.17: api restructure axis, grids, scales and increments 2006/03/29 22:24:45 iha 1.2.4.16: restructure legend entry creation + legend entries in data labels 2005/10/24 11:06:51 iha 1.2.4.15: coordinate system restructure 2005/10/13 17:39:03 iha 1.2.4.14: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:04:02 bm 1.2.4.13: RESYNC: (1.2-1.3); FILE MERGED 2005/09/16 16:50:12 iha 1.2.4.12: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/03 16:36:24 bm 1.2.4.11: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/19 11:42:24 iha 1.2.4.10: change net orientation to old default 2005/04/11 09:40:36 iha 1.2.4.9: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/03/30 16:31:12 bm 1.2.4.8: make model cloneable (+first undo implementation) 2004/09/16 14:42:46 bm 1.2.4.7: API simplification 2004/09/16 13:24:50 bm 1.2.4.6: API simplification 2004/09/16 12:27:28 bm 1.2.4.5: API simplification 2004/09/15 17:32:06 bm 1.2.4.4: API simplification 2004/04/01 10:53:10 bm 1.2.4.3: XChartType: may return a coordinate system now 2004/03/23 16:48:05 bm 1.2.4.2: show symbols in legend 2004/03/03 14:57:17 bm 1.2.4.1: support LegendSymbolStyle property


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6aad3c06c12f14a7f8f4b38360bb88da0d543c23]

INTEGRATION: CWS chart2mst3 (1.9.4); FILE MERGED 2007/03/26 14:17:16 iha 1.9.4.12: #i75590# copy some aspects from old charttype during creation of new 2005/10/07 12:03:52 bm 1.9.4.11: RESYNC: (1.9-1.10); FILE MERGED 2005/08/05 14:19:57 bm 1.9.4.10: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2004/09/16 12:27:28 bm 1.9.4.9: API simplification 2004/09/15 17:32:06 bm 1.9.4.8: API simplification 2004/06/29 12:26:34 bm 1.9.4.7: XChartTypeTemplate changes 2004/05/27 17:27:12 bm 1.9.4.6: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:35 bm 1.9.4.5: applyStyle works for single series now 2004/04/20 19:21:34 iha 1.9.4.4: make curve style an adabtable property 2004/04/20 18:54:00 iha 1.9.4.3: enable chart type: points only on category axis 2004/03/24 19:05:25 bm 1.9.4.2: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/02/13 16:51:42 bm 1.9.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fce9aeb98c3da0cd5ad5f312f462d346a961e517]

INTEGRATION: CWS chart2mst3 (1.11.4); FILE MERGED 2007/03/26 14:16:53 iha 1.11.4.22: #i75590# copy some aspects from old charttype during creation of new 2007/02/23 18:08:48 iha 1.11.4.21: #i74655# symbols lost when switching smooth lines 2006/10/18 17:14:13 bm 1.11.4.20: RESYNC: (1.12-1.13); FILE MERGED 2005/12/20 14:13:26 dr 1.11.4.19: API struct member names without prefixes 2005/10/30 12:42:40 iha 1.11.4.18: #125770# detect symbolstyle correctly 2005/10/07 12:03:39 bm 1.11.4.17: RESYNC: (1.11-1.12); FILE MERGED 2005/08/05 14:19:57 bm 1.11.4.16: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/04 11:53:42 bm 1.11.4.15: set stack mode at new series. Percent stacking is now set in adaptScales 2005/08/03 16:36:23 bm 1.11.4.14: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/04/11 09:40:57 iha 1.11.4.13: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/16 15:24:26 bm 1.11.4.12: API simplification 2004/09/16 12:27:28 bm 1.11.4.11: API simplification 2004/09/15 17:32:05 bm 1.11.4.10: API simplification 2004/06/29 12:26:34 bm 1.11.4.9: XChartTypeTemplate changes 2004/05/27 17:27:12 bm 1.11.4.8: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:35 bm 1.11.4.7: applyStyle works for single series now 2004/04/20 19:21:34 iha 1.11.4.6: make curve style an adabtable property 2004/04/20 18:55:12 iha 1.11.4.5: enable chart type: points only on category axis; make curve style an adabtable property 2004/04/19 12:00:46 iha 1.11.4.4: set spline resolution and order to matching template 2004/04/01 10:53:10 bm 1.11.4.3: XChartType: may return a coordinate system now 2004/03/24 19:05:24 bm 1.11.4.2: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/02/13 16:51:42 bm 1.11.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cafc3846059d53d737852cf0bf8546575f5e92dd]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2005/10/07 12:03:30 bm 1.5.4.5: RESYNC: (1.5-1.6); FILE MERGED 2005/03/30 16:31:12 bm 1.5.4.4: make model cloneable (+first undo implementation) 2004/09/16 15:24:26 bm 1.5.4.3: API simplification 2004/09/16 14:42:46 bm 1.5.4.2: API simplification 2004/04/01 10:53:10 bm 1.5.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fb8a6cae32d5762253dab543165deb3927e08d89]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2006/10/18 17:14:04 bm 1.6.4.13: RESYNC: (1.7-1.8); FILE MERGED 2006/03/29 22:24:45 iha 1.6.4.12: restructure legend entry creation + legend entries in data labels 2005/10/07 12:03:20 bm 1.6.4.11: RESYNC: (1.6-1.7); FILE MERGED 2005/08/03 16:36:23 bm 1.6.4.10: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/01 08:56:46 bm 1.6.4.9: use line-with-symbol style in legend as default 2005/04/11 09:59:41 iha 1.6.4.8: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/03/30 16:31:12 bm 1.6.4.7: make model cloneable (+first undo implementation) 2004/09/16 15:24:25 bm 1.6.4.6: API simplification 2004/09/16 14:42:46 bm 1.6.4.5: API simplification 2004/09/16 12:27:28 bm 1.6.4.4: API simplification 2004/04/01 10:53:10 bm 1.6.4.3: XChartType: may return a coordinate system now 2004/03/19 16:44:09 bm 1.6.4.2: symbols in legend 2004/02/13 16:51:42 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e2899c1e365e1f22dadacfe0bb7065062ac3c047]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2005/10/11 09:20:45 bm 1.1.4.6: license header change 2005/07/29 13:30:15 bm 1.1.4.5: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/05/09 09:51:26 bm 1.1.4.4: moved parts of API to data namespace 2004/05/07 13:40:25 bm 1.1.4.3: context added in CTOR 2004/03/19 14:32:57 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:42 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d3057e4870d4193c88e1c1ba1357dca6168c4a1f]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/02/08 21:25:40 iha 1.1.4.17: resync m195 -> m202 2006/08/10 17:10:41 bm 1.1.4.16: second axis for stock charts fixed 2006/04/28 12:44:52 bm 1.1.4.15: #i64618# lcl_LabeledSequenceEquals: allow data sequences to be empty on equality check. 2005/12/21 21:29:23 iha 1.1.4.14: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/02 14:54:17 iha 1.1.4.13: make more failsafe 2005/10/11 09:20:45 bm 1.1.4.12: license header change 2005/08/03 16:36:23 bm 1.1.4.11: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/29 13:30:15 bm 1.1.4.10: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/05/09 09:51:25 bm 1.1.4.9: moved parts of API to data namespace 2005/05/03 16:52:14 bm 1.1.4.8: XDataProvider, XDataSequence: RangeIdentifiers removed 2005/04/06 13:17:11 iha 1.1.4.7: make more failsave 2004/07/05 11:33:13 iha 1.1.4.6: identify duplicate ranges correctly to prevent duplication of series 2004/05/07 13:40:24 bm 1.1.4.5: context added in CTOR 2004/03/29 13:29:25 bm 1.1.4.4: XDataSequence: getSourceRangeRepresentation -> getSourceIdentifier 2004/03/24 09:44:21 bm 1.1.4.3: +debug function lcl_ShowDataSource for tracing the content of the data source that is parsed some if checks for invalid objects 2004/03/19 14:32:57 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:42 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f66668a5b8e940e301dbababee69d01b4297e3b3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:45 bm 1.1.2.3: license header change 2005/07/29 11:37:50 bm 1.1.2.2: only overload for interpretDataSource needed 2005/06/27 13:37:43 iha 1.1.2.1: support property number of lines


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [40165e7b50f3b936ff1fdb13526db6c5b66d3ab2]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:40 iha 1.1.2.9: resync m195 -> m202 2006/05/09 13:06:50 bm 1.1.2.8: #i65200# references to sequence elements become invalid after realloc. (Why didn't this happen earlier? Maybe earlier the realloc was a no-op) 2005/10/11 09:20:44 bm 1.1.2.7: license header change 2005/08/15 17:04:06 iha 1.1.2.6: don't crash caused by illegal number of lines (if switching charttype from stock to column+line) 2005/08/03 16:36:23 bm 1.1.2.5: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/29 11:38:32 bm 1.1.2.4: only overload for interpretDataSource needed, call base class to avoid duplicate code 2005/07/15 15:58:14 bm 1.1.2.3: allow one sequence of data for compatibility 2005/06/27 13:40:01 iha 1.1.2.2: support property number of lines 2005/06/27 13:39:08 iha 1.1.2.1: support property number of lines


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [41d599eb83b8257e2ba7ad8a37df9b60ecf10efe]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2007/03/26 14:15:40 iha 1.5.4.15: #i75590# copy some aspects from old charttype during creation of new 2007/03/01 13:54:30 iha 1.5.4.14: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2005/10/13 17:39:02 iha 1.5.4.13: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:03:07 bm 1.5.4.12: RESYNC: (1.5-1.6); FILE MERGED 2005/08/05 14:19:57 bm 1.5.4.11: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/07/15 16:07:21 bm 1.5.4.10: keep more old objects on chart type changes 2005/06/27 13:41:57 iha 1.5.4.9: support property number of lines 2004/09/16 12:27:28 bm 1.5.4.8: API simplification 2004/09/15 17:32:05 bm 1.5.4.7: API simplification 2004/05/27 17:27:11 bm 1.5.4.6: +getChartTypeForNewSeries at XChartTypeTemplate 2004/03/24 19:05:24 bm 1.5.4.5: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/19 14:32:57 bm 1.5.4.4: XDataSource now contains XLabeledDataSources 2004/03/02 16:40:42 bm 1.5.4.3: allow creating more than one coordinate system 2004/02/20 17:43:56 iha 1.5.4.2: integrate categories at ScaleData 2004/02/13 16:51:41 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6f5e07fc9a8fda8523767710c7ba5a4eeb2757c0]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2007/03/26 14:15:09 iha 1.5.4.26: #i75590# copy some aspects from old charttype during creation of new 2007/03/01 13:54:30 iha 1.5.4.25: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2006/10/18 17:13:52 bm 1.5.4.24: RESYNC: (1.6-1.7); FILE MERGED 2005/10/24 11:06:50 iha 1.5.4.23: coordinate system restructure 2005/10/13 17:39:02 iha 1.5.4.22: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:02:56 bm 1.5.4.21: RESYNC: (1.5-1.6); FILE MERGED 2005/08/15 17:04:06 iha 1.5.4.20: don't crash caused by illegal number of lines (if switching charttype from stock to column+line) 2005/08/05 14:19:56 bm 1.5.4.19: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/03 16:36:23 bm 1.5.4.18: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/18 16:11:35 bm 1.5.4.17: stock chart issues fixed 2005/07/15 16:07:20 bm 1.5.4.16: keep more old objects on chart type changes 2005/07/01 16:13:39 bm 1.5.4.15: wrong behaviour fixed when number of series is 0 2005/06/27 13:41:34 iha 1.5.4.14: support property number of lines 2005/04/11 10:00:14 iha 1.5.4.13: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/20 08:58:21 bm 1.5.4.12: set stacking for lines explicitly to NONE 2004/09/17 10:52:50 bm 1.5.4.11: API simplification 2004/09/16 15:24:25 bm 1.5.4.10: API simplification 2004/09/16 12:27:27 bm 1.5.4.9: API simplification 2004/09/15 17:32:05 bm 1.5.4.8: API simplification 2004/05/27 17:27:11 bm 1.5.4.7: +getChartTypeForNewSeries at XChartTypeTemplate 2004/04/01 10:53:09 bm 1.5.4.6: XChartType: may return a coordinate system now 2004/03/24 19:05:24 bm 1.5.4.5: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/19 14:32:57 bm 1.5.4.4: XDataSource now contains XLabeledDataSources 2004/03/02 16:40:42 bm 1.5.4.3: allow creating more than one coordinate system 2004/02/20 17:43:55 iha 1.5.4.2: integrate categories at ScaleData 2004/02/13 16:51:41 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e37ec885258aeb59bac2580915cc94c16f4b604e]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2005/11/22 14:06:27 iha 1.1.4.6: support BarOverlap and GapWidth 2005/10/07 12:02:46 bm 1.1.4.5: RESYNC: (1.1-1.2); FILE MERGED 2005/03/30 16:31:12 bm 1.1.4.4: make model cloneable (+first undo implementation) 2004/09/16 14:42:46 bm 1.1.4.3: API simplification 2004/09/16 12:27:27 bm 1.1.4.2: API simplification 2004/04/01 10:53:09 bm 1.1.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7da220604ab2e53933ccbc76c87ab24962aa3639]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:13:44 bm 1.2.4.8: RESYNC: (1.3-1.4); FILE MERGED 2005/11/22 14:06:35 iha 1.2.4.7: support BarOverlap and GapWidth 2005/10/07 12:02:35 bm 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/04/11 10:00:52 iha 1.2.4.5: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/03/30 16:31:12 bm 1.2.4.4: make model cloneable (+first undo implementation) 2004/09/16 14:42:46 bm 1.2.4.3: API simplification 2004/09/16 12:27:27 bm 1.2.4.2: API simplification 2004/04/01 10:53:09 bm 1.2.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bf2ebe4ccf623eb8e5d94f2fad60eb15ba1c6b30]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/03/01 13:54:30 iha 1.6.4.30: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2006/08/10 17:10:41 bm 1.6.4.29: second axis for stock charts fixed 2006/04/10 12:25:13 iha 1.6.4.28: api restructure axis, grids, scales and increments 2005/10/24 11:06:50 iha 1.6.4.27: coordinate system restructure 2005/10/13 17:39:01 iha 1.6.4.26: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:02:23 bm 1.6.4.25: RESYNC: (1.6-1.7); FILE MERGED 2005/08/05 14:19:56 bm 1.6.4.24: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/04 11:53:42 bm 1.6.4.23: set stack mode at new series. Percent stacking is now set in adaptScales 2005/07/26 12:11:58 bm 1.6.4.22: +resetStyles for restoring default settings 2005/07/22 15:59:38 bm 1.6.4.21: #124566# on changeDiagram keep even more existing objects 2005/07/15 16:07:20 bm 1.6.4.20: keep more old objects on chart type changes 2005/07/14 14:52:57 bm 1.6.4.19: +supportsCategories 2005/06/24 16:11:07 iha 1.6.4.18: change scene descriptor for pie charts to have a more visible default position 2005/05/09 09:51:23 bm 1.6.4.17: moved parts of API to data namespace 2004/09/16 14:47:50 iha 1.6.4.16: implement api redesign 2004/09/16 12:27:27 bm 1.6.4.15: API simplification 2004/09/15 17:32:05 bm 1.6.4.14: API simplification 2004/09/09 15:12:37 bm 1.6.4.13: fixing loading of series: newly interpreted series have to be attached to the tree correctly 2004/06/29 12:26:34 bm 1.6.4.12: XChartTypeTemplate changes 2004/05/27 17:27:11 bm 1.6.4.11: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:34 bm 1.6.4.10: applyStyle works for single series now 2004/05/07 13:39:35 bm 1.6.4.9: +changeDiagramData (XChartTypeTemplate) 2004/04/01 10:53:09 bm 1.6.4.8: XChartType: may return a coordinate system now 2004/03/24 19:05:24 bm 1.6.4.7: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:18:21 iha 1.6.4.6: added parameter SwapXAndYAxis for horizontal bar chart 2004/03/19 14:32:56 bm 1.6.4.5: XDataSource now contains XLabeledDataSources 2004/03/03 14:18:46 bm 1.6.4.4: m_xContext -> protected, may be used by derived classes 2004/03/02 16:40:42 bm 1.6.4.3: allow creating more than one coordinate system 2004/02/20 17:43:55 iha 1.6.4.2: integrate categories at ScaleData 2004/02/13 16:51:40 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1ea4023ab50153eddb350a7363f8b3258e4900ae]

INTEGRATION: CWS chart2mst3 (1.10.4); FILE MERGED 2007/03/26 14:14:10 iha 1.10.4.72: #i75590# copy some aspects from old charttype during creation of new 2007/03/01 13:54:30 iha 1.10.4.71: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2007/02/24 12:10:47 iha 1.10.4.70: #i74656# keep as much axis info as possible when switching charttypes 2007/02/09 17:29:20 bm 1.10.4.69: XChartDocument::createInternalDataProvider() works like expected now 2006/10/18 17:13:37 bm 1.10.4.68: RESYNC: (1.13-1.14); FILE MERGED 2006/10/10 08:47:23 iha 1.10.4.67: remove explicit scaling for category axis and pie axis 2006/09/21 11:58:17 bm 1.10.4.66: #i69680# createCoordinateSystems: make grid of first y-axis visible (was in the CooSys CTOR before) 2006/08/10 17:10:41 bm 1.10.4.65: second axis for stock charts fixed 2006/04/22 11:10:30 iha 1.10.4.64: park unused categories in scale with AxisType not being CATEGORY 2006/04/11 19:24:58 iha 1.10.4.63: api restructure axis, grids, scales and increments - adapt scales after creating axis now 2006/04/10 15:03:34 iha 1.10.4.62: api restructure axis, grids, scales and increments 2006/04/10 12:25:12 iha 1.10.4.61: api restructure axis, grids, scales and increments 2005/12/07 12:21:01 iha 1.10.4.60: remove dependendy from special axis identifiers 2005/11/29 18:09:26 iha 1.10.4.59: create correct secondary axis for stockcharts 2005/11/18 18:19:55 iha 1.10.4.58: restructuring for proper subgrid support 2005/11/18 15:21:34 bm 1.10.4.57: use XInitialization for passing the identifier when creating grids (do not use context) 2005/11/08 14:56:59 iha 1.10.4.56: set and remove categories also to and from secondary scales 2005/11/02 19:15:56 iha 1.10.4.55: enable load of stock chart with japanese boxes 2005/10/24 11:06:49 iha 1.10.4.54: coordinate system restructure 2005/10/13 17:39:00 iha 1.10.4.53: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 12:56:02 bm 1.10.4.52: maintain coordinate system structure on template change 2005/10/07 12:02:14 bm 1.10.4.51: RESYNC: (1.12-1.13); FILE MERGED 2005/09/16 16:50:12 iha 1.10.4.50: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/09/01 16:23:56 bm 1.10.4.49: adaptAxes: remove axes that use coordinate systems not contained in the current Diagram 2005/09/01 15:54:13 bm 1.10.4.48: try to get categories fromunused data (switch from scatter to category chart) 2005/08/31 12:30:00 iha 1.10.4.47: no categories for xy 2005/08/26 16:18:36 bm 1.10.4.46: reset number format when switching forth and back percent stacking 2005/08/26 12:47:51 bm 1.10.4.45: always call createAxes to have enough axes. E.g. stock charts with volume have a series attached to the second axis. We need to create the second axis at least for saving (there are no scales in the file format) 2005/08/05 14:19:55 bm 1.10.4.44: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/04 11:53:42 bm 1.10.4.43: set stack mode at new series. Percent stacking is now set in adaptScales 2005/08/03 16:36:22 bm 1.10.4.42: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/29 13:30:15 bm 1.10.4.41: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/07/28 15:43:25 bm 1.10.4.40: last change reverted -- seems to be necessary to delete the coordinate systems (todo: make this unnecessary) 2005/07/28 15:28:13 bm 1.10.4.39: changeDiagram: do not delete coordinate systems 2005/07/28 09:34:51 bm 1.10.4.38: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/26 12:11:34 bm 1.10.4.37: +resetStyles for restoring default settings 2005/07/22 15:59:38 bm 1.10.4.36: #124566# on changeDiagram keep even more existing objects 2005/07/18 16:11:35 bm 1.10.4.35: stock chart issues fixed 2005/07/15 16:07:20 bm 1.10.4.34: keep more old objects on chart type changes 2005/07/14 14:52:17 bm 1.10.4.33: create dummy categories if a chart type needs categories but has no actual ones 2005/06/16 12:51:24 iha 1.10.4.32: no legend by default 2005/05/09 09:51:22 bm 1.10.4.31: moved parts of API to data namespace 2005/04/19 14:24:48 bm 1.10.4.30: changeDiagramData: also set categories 2004/09/27 17:15:28 bm 1.10.4.29: iterate only to min instead of max of the two sequences lengths 2004/09/20 14:37:10 bm 1.10.4.28: some more debug code 2004/09/17 16:25:12 bm 1.10.4.27: improved 2004/09/17 10:52:50 bm 1.10.4.26: API simplification 2004/09/16 14:47:50 iha 1.10.4.25: implement api redesign 2004/09/16 13:22:41 bm 1.10.4.24: API simplification 2004/09/16 12:27:27 bm 1.10.4.23: API simplification 2004/09/15 17:32:04 bm 1.10.4.22: API simplification 2004/09/09 15:12:37 bm 1.10.4.21: fixing loading of series: newly interpreted series have to be attached to the tree correctly 2004/07/01 13:40:39 iha 1.10.4.20: use ColorProvider for default series colors 2004/06/29 12:26:33 bm 1.10.4.19: XChartTypeTemplate changes 2004/06/11 12:21:42 bm 1.10.4.18: use standard colors 2004/05/27 17:27:10 bm 1.10.4.17: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/10 16:38:39 bm 1.10.4.16: put lcl_replaceCategoriesAtCoordinateSystem into an anonymous namespace that is available undconditionally (not only with debug) 2004/05/10 16:29:01 bm 1.10.4.15: changeDiagramData corrected 2004/05/07 15:46:06 bm 1.10.4.14: shadowed variable 2004/05/07 15:34:34 bm 1.10.4.13: applyStyle works for single series now 2004/05/07 13:38:41 bm 1.10.4.12: +changeDiagramData (XChartTypeTemplate) 2004/04/01 10:53:08 bm 1.10.4.11: XChartType: may return a coordinate system now 2004/03/29 13:29:09 bm 1.10.4.10: XDataSequence: getSourceRangeRepresentation -> getSourceIdentifier 2004/03/25 10:27:41 bm 1.10.4.9: for-loop scope problem 2004/03/24 19:05:24 bm 1.10.4.8: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:18:58 iha 1.10.4.7: added parameter SwapXAndYAxis for horizontal bar chart 2004/03/19 14:32:56 bm 1.10.4.6: XDataSource now contains XLabeledDataSources 2004/03/18 16:34:50 iha 1.10.4.5: removed unused include 2004/03/12 15:38:43 iha 1.10.4.4: added AxisPosition for secondary axes 2004/03/02 16:40:42 bm 1.10.4.3: allow creating more than one coordinate system 2004/02/20 17:43:55 iha 1.10.4.2: integrate categories at ScaleData 2004/02/13 16:51:40 bm 1.10.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b35a3febef69bb0a81fca2cb697c274fc5376749]

INTEGRATION: CWS chart2mst3 (1.12.4); FILE MERGED 2006/10/18 17:13:28 bm 1.12.4.18: RESYNC: (1.14-1.15); FILE MERGED 2005/11/21 12:39:07 iha 1.12.4.17: i58146 percent stacked net charts with lines and symbols are not detected in wizard and not saved 2005/10/07 12:02:05 bm 1.12.4.16: RESYNC: (1.13-1.14); FILE MERGED 2005/08/03 16:36:22 bm 1.12.4.15: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2004/11/03 01:21:32 bm 1.12.4.14: RESYNC: (1.12-1.13); FILE MERGED 2004/09/16 12:27:26 bm 1.12.4.13: API simplification 2004/09/15 17:32:04 bm 1.12.4.12: API simplification 2004/05/27 17:27:10 bm 1.12.4.11: +getChartTypeForNewSeries at XChartTypeTemplate 2004/04/21 20:45:54 iha 1.12.4.10: #i20344# net subtypes changed 2004/04/21 20:07:12 iha 1.12.4.9: #i20344# pie subtypes changed 2004/04/20 21:02:32 iha 1.12.4.8: enable stacking subtypes for charttype 3D Line 2004/04/20 20:32:24 iha 1.12.4.7: enable 3D Scatter chart 2004/04/20 19:21:34 iha 1.12.4.6: make curve style an adabtable property 2004/04/20 19:01:49 iha 1.12.4.5: enable chart type: points only on category axis; make curve style an adabtable property 2004/04/19 20:04:22 iha 1.12.4.4: #i20344# enable Pie Offset Mode 2004/03/19 14:32:56 bm 1.12.4.3: XDataSource now contains XLabeledDataSources 2004/03/09 09:26:58 bm 1.12.4.2: breaks in case missing 2004/02/13 16:51:39 bm 1.12.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7c5f07633c553f4d4f43f113583a80018a07c075]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/12/21 21:29:22 iha 1.2.4.17: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/29 09:52:50 bm 1.2.4.16: #i58588# make m_xModifyEventForwarder protected for derived classes to be able to listen to children 2005/11/07 20:54:04 iha 1.2.4.15: fixed crash during switching of charttype - remove modify listeners from removed series 2005/11/07 17:12:45 bm 1.2.4.14: some missing notifications added 2005/10/13 17:39:00 iha 1.2.4.13: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:01:55 bm 1.2.4.12: RESYNC: (1.2-1.3); FILE MERGED 2005/04/15 14:50:57 bm 1.2.4.11: use vector instead of map to avoid sorting of data series 2005/03/30 16:31:11 bm 1.2.4.10: make model cloneable (+first undo implementation) 2004/09/16 16:52:14 bm 1.2.4.9: API simplification 2004/09/16 16:51:14 bm 1.2.4.8: API simplification 2004/09/16 14:42:45 bm 1.2.4.7: API simplification 2004/09/16 12:27:26 bm 1.2.4.6: API simplification 2004/09/15 17:32:04 bm 1.2.4.5: API simplification 2004/06/29 12:26:33 bm 1.2.4.4: XChartTypeTemplate changes 2004/04/01 10:53:08 bm 1.2.4.3: XChartType: may return a coordinate system now 2004/03/02 09:49:18 bm 1.2.4.2: XChartTypeInterface changed 2004/02/13 16:51:39 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [68c968a6d9b6a7810703c3376594f0ef93f4f10f]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:13:18 bm 1.2.4.31: RESYNC: (1.3-1.4); FILE MERGED 2006/04/10 12:25:12 iha 1.2.4.30: api restructure axis, grids, scales and increments 2005/12/21 21:29:22 iha 1.2.4.29: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/29 09:52:50 bm 1.2.4.28: #i58588# make m_xModifyEventForwarder protected for derived classes to be able to listen to children 2005/11/25 16:21:03 iha 1.2.4.27: correct labels at z axis for deep stacking 2005/11/15 18:32:19 bm 1.2.4.26: copy CTOR: add as listener to data series 2005/11/14 13:46:58 iha 1.2.4.25: fixed category axis for created cooredinate system 2005/11/07 20:54:28 iha 1.2.4.24: fixed crash during switching of charttype - remove modify listeners from removed series 2005/11/07 17:12:44 bm 1.2.4.23: some missing notifications added 2005/10/24 11:06:48 iha 1.2.4.22: coordinate system restructure 2005/10/13 17:38:59 iha 1.2.4.21: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:01:46 bm 1.2.4.20: RESYNC: (1.2-1.3); FILE MERGED 2005/09/23 15:25:06 iha 1.2.4.19: #i55000# crash caused by dead reference to mutex 2005/09/16 16:50:11 iha 1.2.4.18: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/03 16:36:22 bm 1.2.4.17: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/04/15 14:50:56 bm 1.2.4.16: use vector instead of map to avoid sorting of data series 2005/03/30 16:31:11 bm 1.2.4.15: make model cloneable (+first undo implementation) 2004/09/17 11:12:07 bm 1.2.4.14: setDataSeries: clear vector before adding content 2004/09/17 09:00:04 bm 1.2.4.13: DataSeries is no XIdentifiable, but has a property "Identifier" 2004/09/16 17:02:21 bm 1.2.4.12: API simplification 2004/09/16 16:53:43 bm 1.2.4.11: API simplification 2004/09/16 16:51:14 bm 1.2.4.10: API simplification 2004/09/16 14:42:45 bm 1.2.4.9: API simplification 2004/09/16 13:21:37 bm 1.2.4.8: API simplification 2004/09/16 12:27:26 bm 1.2.4.7: API simplification 2004/09/15 17:32:04 bm 1.2.4.6: API simplification 2004/06/29 12:26:33 bm 1.2.4.5: XChartTypeTemplate changes 2004/05/27 17:41:38 bm 1.2.4.4: error-bars not supported yet 2004/04/01 10:53:08 bm 1.2.4.3: XChartType: may return a coordinate system now 2004/03/02 09:49:18 bm 1.2.4.2: XChartTypeInterface changed 2004/02/13 16:51:39 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0f92572bcd677c3b3bf960cd687e9dcdd866d504]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2005/11/29 09:53:36 bm 1.1.4.10: #i58587# correct adding and removing modification listeners at XPropertySet properties 2005/10/11 09:20:44 bm 1.1.4.9: license header change 2005/03/30 16:31:11 bm 1.1.4.8: make model cloneable (+first undo implementation) 2004/09/16 14:42:45 bm 1.1.4.7: API simplification 2004/09/16 12:27:25 bm 1.1.4.6: API simplification 2004/06/29 12:26:33 bm 1.1.4.5: XChartTypeTemplate changes 2004/04/27 13:36:38 bm 1.1.4.4: +optional roles 2004/04/01 10:53:08 bm 1.1.4.3: XChartType: may return a coordinate system now 2004/03/02 09:49:18 bm 1.1.4.2: XChartTypeInterface changed 2004/02/13 16:51:39 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [07cd806e411f56016448cffe26034208b7221104]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/02/08 21:25:40 iha 1.1.4.16: resync m195 -> m202 2006/03/29 22:24:45 iha 1.1.4.15: restructure legend entry creation + legend entries in data labels 2005/11/29 09:53:35 bm 1.1.4.14: #i58587# correct adding and removing modification listeners at XPropertySet properties 2005/10/11 09:20:44 bm 1.1.4.13: license header change 2005/08/03 16:36:22 bm 1.1.4.12: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/13 09:16:54 bm 1.1.4.11: changed defaults for properties 2005/04/14 16:26:08 iha 1.1.4.10: changed servicenames to avoid confusion with model services 2005/03/30 16:31:11 bm 1.1.4.9: make model cloneable (+first undo implementation) 2004/09/16 14:42:45 bm 1.1.4.8: API simplification 2004/09/16 12:27:25 bm 1.1.4.7: API simplification 2004/06/29 12:26:32 bm 1.1.4.6: XChartTypeTemplate changes 2004/04/27 13:36:20 bm 1.1.4.5: +optional roles 2004/04/01 10:53:08 bm 1.1.4.4: XChartType: may return a coordinate system now 2004/03/02 16:40:42 bm 1.1.4.3: allow creating more than one coordinate system 2004/03/02 09:49:03 bm 1.1.4.2: XChartTypeInterface changed, StockBars are no longer default now 2004/02/13 16:51:39 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [db64e8cadb3b9d9a50a0427efc7f50b7bf8bd80a]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/03/26 14:12:13 iha 1.4.4.19: #i75590# copy some aspects from old charttype during creation of new 2005/10/13 17:38:59 iha 1.4.4.18: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 12:01:37 bm 1.4.4.17: RESYNC: (1.4-1.5); FILE MERGED 2005/08/05 14:19:55 bm 1.4.4.16: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/04 11:53:42 bm 1.4.4.15: set stack mode at new series. Percent stacking is now set in adaptScales 2005/07/26 12:11:10 bm 1.4.4.14: +resetStyles for restoring default settings 2005/07/15 16:07:20 bm 1.4.4.13: keep more old objects on chart type changes 2005/05/09 09:51:21 bm 1.4.4.12: moved parts of API to data namespace 2004/09/27 16:44:08 bm 1.4.4.11: superfluous member ThreeDMode removed 2004/09/16 12:27:25 bm 1.4.4.10: API simplification 2004/09/15 17:32:04 bm 1.4.4.9: API simplification 2004/06/29 12:26:32 bm 1.4.4.8: XChartTypeTemplate changes 2004/05/27 17:27:10 bm 1.4.4.7: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:33 bm 1.4.4.6: applyStyle works for single series now 2004/04/01 10:53:07 bm 1.4.4.5: XChartType: may return a coordinate system now 2004/03/24 19:05:23 bm 1.4.4.4: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:22:11 iha 1.4.4.3: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/09 09:32:39 bm 1.4.4.2: set ZStackMode correctly 2004/02/13 16:51:38 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1d2c362d822fb55dd70a808ca77485483f92aa99]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/03/26 14:09:36 iha 1.4.4.31: #i75590# copy some aspects from old charttype during creation of new 2007/02/24 10:39:13 iha 1.4.4.30: #i74648# also change attributed data points 2006/10/18 17:13:10 bm 1.4.4.29: RESYNC: (1.5-1.6); FILE MERGED 2005/11/14 12:05:57 iha 1.4.4.28: fix detection of bargeometry 2005/11/08 18:14:48 iha 1.4.4.27: fix BarChart template detection 2005/11/08 16:33:09 iha 1.4.4.26: correct x axis direction for bar charts 2005/10/13 17:38:58 iha 1.4.4.25: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 12:56:50 bm 1.4.4.24: maintain coordinate system structure on template change (resetStyles: reset SwapXAndYAxis property) 2005/10/07 12:01:25 bm 1.4.4.23: RESYNC: (1.4-1.5); FILE MERGED 2005/08/26 16:18:36 bm 1.4.4.22: reset number format when switching forth and back percent stacking 2005/08/05 14:19:54 bm 1.4.4.21: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/04 11:53:41 bm 1.4.4.20: set stack mode at new series. Percent stacking is now set in adaptScales 2005/08/03 16:36:21 bm 1.4.4.19: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/29 13:30:14 bm 1.4.4.18: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/07/26 12:10:43 bm 1.4.4.17: +resetStyles for restoring default settings 2005/07/15 16:07:20 bm 1.4.4.16: keep more old objects on chart type changes 2005/05/09 09:51:20 bm 1.4.4.15: moved parts of API to data namespace 2005/04/11 10:01:44 iha 1.4.4.14: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/16 15:24:25 bm 1.4.4.13: API simplification 2004/09/16 12:27:25 bm 1.4.4.12: API simplification 2004/09/15 17:32:03 bm 1.4.4.11: API simplification 2004/06/29 12:26:32 bm 1.4.4.10: XChartTypeTemplate changes 2004/05/27 17:27:10 bm 1.4.4.9: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:33 bm 1.4.4.8: applyStyle works for single series now 2004/04/19 13:24:34 iha 1.4.4.7: apply Geometry3D to data series 2004/04/13 12:00:09 bm 1.4.4.6: getXStackMode: unstacked if deep-stacking is on 2004/04/01 10:53:07 bm 1.4.4.5: XChartType: may return a coordinate system now 2004/03/24 19:05:23 bm 1.4.4.4: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/22 15:22:37 iha 1.4.4.3: added parameter SwapXAndYAxis for horizontal bar chart to method createCoordinateSystems 2004/03/09 09:33:11 bm 1.4.4.2: set ZStackMode correctly 2004/02/13 16:51:38 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [541b355a10018a1880e4aee5a57eb3dacb887612]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 12:01:16 bm 1.1.1.1.4.5: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/03/30 16:31:11 bm 1.1.1.1.4.4: make model cloneable (+first undo implementation) 2004/09/16 14:42:44 bm 1.1.1.1.4.3: API simplification 2004/09/16 12:27:25 bm 1.1.1.1.4.2: API simplification 2004/04/01 10:53:07 bm 1.1.1.1.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2c20cc90b0b5f4fbc17faa950d63b6f2a7bc559b]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:13:02 bm 1.2.4.7: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 12:01:07 bm 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/04/11 10:02:12 iha 1.2.4.5: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/03/30 16:31:11 bm 1.2.4.4: make model cloneable (+first undo implementation) 2004/09/16 14:42:44 bm 1.2.4.3: API simplification 2004/09/16 12:27:25 bm 1.2.4.2: API simplification 2004/04/01 10:53:07 bm 1.2.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [37a89fdd6661d9d45540a6d0bbf6a9ad1536dd0d]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/03/26 14:08:47 iha 1.4.4.11: #i75590# copy some aspects from old charttype during creation of new 2005/10/07 12:00:46 bm 1.4.4.10: RESYNC: (1.4-1.5); FILE MERGED 2005/08/05 14:19:54 bm 1.4.4.9: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/07/29 13:30:14 bm 1.4.4.8: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2004/09/16 12:27:24 bm 1.4.4.7: API simplification 2004/09/15 17:32:03 bm 1.4.4.6: API simplification 2004/06/29 12:26:32 bm 1.4.4.5: XChartTypeTemplate changes 2004/05/27 17:27:10 bm 1.4.4.4: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:33 bm 1.4.4.3: applyStyle works for single series now 2004/04/13 12:00:31 bm 1.4.4.2: +getZStackMode for deep stacking 2004/02/13 16:51:38 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d408bdfc01fa306ef6052c81e4d812611d45c810]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/03/26 14:08:32 iha 1.4.4.18: #i75590# copy some aspects from old charttype during creation of new 2006/10/18 17:12:48 bm 1.4.4.17: RESYNC: (1.5-1.6); FILE MERGED 2005/10/07 12:00:36 bm 1.4.4.16: RESYNC: (1.4-1.5); FILE MERGED 2005/08/26 16:18:35 bm 1.4.4.15: reset number format when switching forth and back percent stacking 2005/08/05 14:19:53 bm 1.4.4.14: getStackMode: per chart type (open: percent stacking works per coordinate system, how can this be synched) 2005/08/04 11:53:41 bm 1.4.4.13: set stack mode at new series. Percent stacking is now set in adaptScales 2005/08/03 16:36:21 bm 1.4.4.12: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/29 13:30:14 bm 1.4.4.11: keep unused data at the diagram, resetStyles, and other small improvements of template handling 2005/04/11 10:02:42 iha 1.4.4.10: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2004/09/16 15:24:25 bm 1.4.4.9: API simplification 2004/09/16 12:27:24 bm 1.4.4.8: API simplification 2004/09/15 17:32:03 bm 1.4.4.7: API simplification 2004/06/29 12:26:31 bm 1.4.4.6: XChartTypeTemplate changes 2004/05/27 17:27:10 bm 1.4.4.5: +getChartTypeForNewSeries at XChartTypeTemplate 2004/05/07 15:34:33 bm 1.4.4.4: applyStyle works for single series now 2004/04/13 12:03:37 bm 1.4.4.3: +getZStackMode for deep stacking 2004/04/01 10:53:07 bm 1.4.4.2: XChartType: may return a coordinate system now 2004/02/13 16:51:37 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [06e60b1c053b92e94be9fac351c09196a0050972]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 12:00:27 bm 1.1.1.1.4.5: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/03/30 16:31:10 bm 1.1.1.1.4.4: make model cloneable (+first undo implementation) 2004/09/16 14:42:44 bm 1.1.1.1.4.3: API simplification 2004/09/16 12:27:24 bm 1.1.1.1.4.2: API simplification 2004/04/01 10:53:06 bm 1.1.1.1.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [532c40c8d252a03e6ab988a3599851ebc29c6214]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:12:40 bm 1.2.4.7: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 12:00:18 bm 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/04/11 10:03:12 iha 1.2.4.5: defines for servicenames for charttypes (fixed apply to 2nd axis again) 2005/03/30 16:31:10 bm 1.2.4.4: make model cloneable (+first undo implementation) 2004/09/16 14:42:44 bm 1.2.4.3: API simplification 2004/09/16 12:27:24 bm 1.2.4.2: API simplification 2004/04/01 10:53:06 bm 1.2.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6ed97268494eeb066e03c78a35b3ae3b840348fa]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/04/10 12:25:12 iha 1.5.4.10: api restructure axis, grids, scales and increments 2005/11/18 18:19:55 iha 1.5.4.9: restructuring for proper subgrid support 2005/10/07 12:00:08 bm 1.5.4.8: RESYNC: (1.5-1.6); FILE MERGED 2005/08/11 16:05:41 bm 1.5.4.7: change internal data to a new class that does not need Calc 2005/06/08 08:58:18 bm 1.5.4.6: +ChartModel_Persistence.cxx 2005/05/09 09:51:18 bm 1.5.4.5: moved parts of API to data namespace 2005/04/01 16:25:27 bm 1.5.4.4: helper classes for sharing the data between different chart models 2004/09/15 17:32:03 bm 1.5.4.3: API simplification 2004/03/02 09:27:16 bm 1.5.4.2: CachedDataSequence moved to tools 2004/02/13 16:51:36 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2a58b3ea0d71072f198c1c6c18bb9ea8e91d70de]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:12:33 bm 1.2.4.12: RESYNC: (1.3-1.4); FILE MERGED 2006/04/11 15:41:21 bm 1.2.4.11: make creation of coordinate systems available via factory 2006/04/11 15:33:13 bm 1.2.4.10: make creation of coordinate systems available via factory 2006/04/10 12:25:12 iha 1.2.4.9: api restructure axis, grids, scales and increments 2006/03/10 10:55:22 iha 1.2.4.8: don't use leading underscore 2005/10/07 11:59:58 bm 1.2.4.7: RESYNC: (1.2-1.3); FILE MERGED 2005/06/08 09:00:48 bm 1.2.4.6: FileDataSource/Provider removed from registration 2004/09/16 16:02:07 bm 1.2.4.5: API simplification 2004/09/16 14:43:16 bm 1.2.4.4: also register chart types (defined in template/_serviceregistration_charttypes.cxx) 2004/09/15 17:32:02 bm 1.2.4.3: API simplification 2004/04/27 13:39:53 bm 1.2.4.2: +DataSeries 2004/03/02 09:47:39 bm 1.2.4.1: register XMLFilter as component


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bf8e1ba9d08abfda59dfa43062ba42aa3898039b]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/11/03 16:15:07 bm 1.1.1.1.4.4: notify property changes 2005/10/07 11:59:46 bm 1.1.1.1.4.3: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/03/30 16:31:10 bm 1.1.1.1.4.2: make model cloneable (+first undo implementation) 2004/02/13 16:51:36 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a27eb9afac01571bf2a3f558380f4ee1788bb1f0]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:09:24 bm 1.3.4.10: RESYNC: (1.4-1.5); FILE MERGED 2005/11/24 18:32:43 bm 1.3.4.9: transparency gradients enabled 2005/11/03 16:15:07 bm 1.3.4.8: notify property changes 2005/10/07 11:59:37 bm 1.3.4.7: RESYNC: (1.3-1.4); FILE MERGED 2005/09/23 15:25:04 iha 1.3.4.6: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:21 bm 1.3.4.5: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:32:57 iha 1.3.4.4: remove unused parameter 'bIncludeStyleProperties' 2005/03/30 16:31:10 bm 1.3.4.3: make model cloneable (+first undo implementation) 2004/09/29 12:45:20 bm 1.3.4.2: queryInterface for XPropertySet didn't work. 2004/02/13 16:51:36 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [224561e3315beb76533f2a25c8a5c9da19a49948]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2005/12/21 21:29:22 iha 1.3.4.6: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/18 13:17:03 bm 1.3.4.5: implement XInitialization (do not use context to pass identifier) 2005/11/08 12:55:26 bm 1.3.4.4: notification mechanism added 2005/10/07 11:59:28 bm 1.3.4.3: RESYNC: (1.3-1.4); FILE MERGED 2005/03/31 14:55:00 bm 1.3.4.2: make titles cloneable 2004/02/13 16:51:36 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bede3864e7527028630b094209ae84d7aeab84e6]

INTEGRATION: CWS chart2mst3 (1.7.4); FILE MERGED 2006/10/18 17:12:25 bm 1.7.4.16: RESYNC: (1.8-1.9); FILE MERGED 2006/07/07 17:01:14 iha 1.7.4.15: correct font sizes - don't guess a default reference size, as a guess could to be wrong 2006/01/20 16:52:00 bm 1.7.4.14: moved ReferencePageSize from XFormattedString to XTitle 2005/12/21 21:29:21 iha 1.7.4.13: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/18 13:17:13 bm 1.7.4.12: implement XInitialization (do not use context to pass identifier) 2005/11/18 12:17:38 bm 1.7.4.11: guard around getIdentifier 2005/11/08 12:55:26 bm 1.7.4.10: notification mechanism added 2005/10/07 11:59:17 bm 1.7.4.9: RESYNC: (1.7-1.8); FILE MERGED 2005/09/23 15:25:03 iha 1.7.4.8: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:20 bm 1.7.4.7: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:32:57 iha 1.7.4.6: remove unused parameter 'bIncludeStyleProperties' 2005/03/31 14:55:00 bm 1.7.4.5: make titles cloneable 2004/08/25 16:17:41 iha 1.7.4.4: View independent loading - relative position with dynamic anchor point 2004/04/27 13:38:46 bm 1.7.4.3: -property Show again.  No title means don't show.  Title without text means there is an empty title but it will not be shown in the view. 2004/04/19 16:35:29 bm 1.7.4.2: + property Show 2004/02/13 16:51:35 bm 1.7.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [012644fbc8e4bea0174b7402a7ba4d9ab907fe72]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/02/08 21:25:39 iha 1.1.4.6: resync m195 -> m202 2005/11/29 09:51:32 bm 1.1.4.5: #i58588# enable cloning and modification listening 2005/10/11 09:20:43 bm 1.1.4.4: license header change 2005/08/03 16:36:20 bm 1.1.4.3: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:32:55 iha 1.1.4.2: remove unused parameter 'bIncludeStyleProperties' 2004/02/13 16:51:35 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f1f5c5ef6f3571709a13566d779ce029692a2523]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:11:53 bm 1.2.4.4: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 11:57:17 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/05/09 09:51:18 bm 1.2.4.2: moved parts of API to data namespace 2004/02/13 16:51:35 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ce63bc44740c905799fc84bac40b28a5058519f1]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:11:38 bm 1.3.4.6: RESYNC: (1.4-1.5); FILE MERGED 2006/04/11 15:33:13 bm 1.3.4.5: make creation of coordinate systems available via factory 2005/10/13 17:38:58 iha 1.3.4.4: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:57:07 bm 1.3.4.3: RESYNC: (1.3-1.4); FILE MERGED 2004/09/15 17:32:02 bm 1.3.4.2: API simplification 2004/04/01 10:53:06 bm 1.3.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [eccf57dedb9b16bdb75ce7ebfe5055e2e7c4d027]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2005/11/07 17:12:44 bm 1.1.4.4: some missing notifications added 2005/10/07 11:56:58 bm 1.1.4.3: RESYNC: (1.1-1.2); FILE MERGED 2005/03/30 16:31:09 bm 1.1.4.2: make model cloneable (+first undo implementation) 2004/02/13 16:51:34 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [87a65af9be01338c8d040800bf814d9214cffc35]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:11:30 bm 1.3.4.10: RESYNC: (1.4-1.5); FILE MERGED 2005/11/07 17:12:44 bm 1.3.4.9: some missing notifications added 2005/10/07 11:56:47 bm 1.3.4.8: RESYNC: (1.3-1.4); FILE MERGED 2005/09/23 15:25:03 iha 1.3.4.7: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:20 bm 1.3.4.6: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 15:32:56 iha 1.3.4.5: cleanup WrappedIgnoreProperty 2005/07/14 12:32:55 iha 1.3.4.4: remove unused parameter 'bIncludeStyleProperties' 2005/03/30 16:31:09 bm 1.3.4.3: make model cloneable (+first undo implementation) 2004/03/02 09:46:54 bm 1.3.4.2: queryInterface to XPropertySet didn't work default fill-style 'solid' default fill-color 'white' 2004/02/13 16:51:34 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [19cb91d67ae65332a9e52900b8244812e717db12]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2005/12/21 21:29:21 iha 1.4.4.6: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/03 11:59:18 bm 1.4.4.5: fire modify events on property change 2005/10/14 16:58:44 bm 1.4.4.4: model listener mechanism 2005/10/07 11:56:37 bm 1.4.4.3: RESYNC: (1.4-1.5); FILE MERGED 2005/03/30 16:31:09 bm 1.4.4.2: make model cloneable (+first undo implementation) 2004/02/13 16:51:34 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [63e5673ffaa463c3d291e2bf8968d26c5c89b5b4]

INTEGRATION: CWS chart2mst3 (1.11.4); FILE MERGED 2006/10/18 17:11:11 bm 1.11.4.17: RESYNC: (1.12-1.13); FILE MERGED 2006/07/07 17:00:44 iha 1.11.4.16: correct font sizes - don't guess a default reference size, as a guess could to be wrong 2006/01/20 16:52:47 bm 1.11.4.15: set suitable defaults for font-size and ReferencePageSize 2005/12/21 21:29:20 iha 1.11.4.14: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/03 11:59:17 bm 1.11.4.13: fire modify events on property change 2005/10/14 16:58:44 bm 1.11.4.12: model listener mechanism 2005/10/07 11:56:27 bm 1.11.4.11: RESYNC: (1.11-1.12); FILE MERGED 2005/09/23 15:25:02 iha 1.11.4.10: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:20 bm 1.11.4.9: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:45:43 iha 1.11.4.8: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/07/14 12:32:54 iha 1.11.4.7: remove unused parameter 'bIncludeStyleProperties' 2005/05/09 09:51:18 bm 1.11.4.6: moved parts of API to data namespace 2005/03/30 16:31:09 bm 1.11.4.5: make model cloneable (+first undo implementation) 2004/09/17 17:26:54 iha 1.11.4.4: removed unused code 2004/08/25 16:17:24 iha 1.11.4.3: View independent loading - relative position with dynamic anchor point 2004/05/26 16:26:58 bm 1.11.4.2: default font sizes adapted 2004/02/13 16:51:33 bm 1.11.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7e9c6eb9badbccc2f40d75bf704036fc8ac2fffc]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:11:03 bm 1.2.4.4: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 11:56:00 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/08/03 16:36:20 bm 1.2.4.2: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2004/02/13 16:51:32 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a62ade33ad71ebab46d0b74a3d825d733195d4d9]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:43 bm 1.1.2.3: license header change 2005/05/09 09:51:18 bm 1.1.2.2: moved parts of API to data namespace 2005/04/01 16:24:38 bm 1.1.2.1: helper classes for sharing the data between different chart models


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0ddb024aa544f2a0e528962a2e40bcf4d252fc8c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:39 iha 1.1.2.5: resync m195 -> m202 2005/10/11 09:20:43 bm 1.1.2.4: license header change 2005/06/08 14:43:49 bm 1.1.2.3: temporary storage for internal data is ok, unless we export the data as substorage in the fileformat 2005/05/09 09:51:18 bm 1.1.2.2: moved parts of API to data namespace 2005/04/01 16:24:28 bm 1.1.2.1: helper classes for sharing the data between different chart models


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bced85eca01a253a306468a6b8818e6dbd903cd5]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2007/02/09 17:29:20 bm 1.5.4.27: XChartDocument::createInternalDataProvider() works like expected now 2005/11/11 15:02:51 bm 1.5.4.26: notify changes 2005/10/14 16:58:44 bm 1.5.4.25: model listener mechanism 2005/10/07 11:55:30 bm 1.5.4.24: RESYNC: (1.5-1.6); FILE MERGED 2005/09/08 11:40:34 iha 1.5.4.23: set data provider and number formatter in the filter and not in the model load methods thus binary loading also gets the correct dataprovider and numberformatter 2005/09/07 14:43:16 bm 1.5.4.22: XChartDocument: +hasInternalDataProvider, -getDataEditorForInternalData 2005/09/05 16:52:54 iha 1.5.4.21: hold own numberformatter by reference only (don't delete it as it is offered as reference to the outside) 2005/08/15 14:02:18 bm 1.5.4.20: SetRangeRepresentation: transport string as const ref to allow temporaries 2005/08/15 13:03:13 bm 1.5.4.19: internal methods for setting data (ImplChartModel) changed 2005/08/11 16:05:40 bm 1.5.4.18: change internal data to a new class that does not need Calc 2005/07/21 14:47:08 bm 1.5.4.17: support for number formats from data provider 2005/07/08 16:46:19 bm 1.5.4.16: marker table removed 2005/06/08 14:49:12 bm 1.5.4.15: createInternalData needs the parent storage from ChartModel 2005/06/08 09:13:27 bm 1.5.4.14: all load/save/modify functionality put in a separate file for clarity 2005/06/07 15:35:04 iha 1.5.4.13: offer SvNumberformatter via unotunnel 2005/05/31 18:51:27 iha 1.5.4.12: keep gradient table etc. in model 2005/05/09 09:51:17 bm 1.5.4.11: moved parts of API to data namespace 2005/04/01 16:25:39 bm 1.5.4.10: shared data for different chart models 2005/03/24 17:04:29 bm 1.5.4.9: Cloneable implementation 2004/09/09 15:12:36 bm 1.5.4.8: fixing loading of series: newly interpreted series have to be attached to the tree correctly 2004/09/08 15:36:42 bm 1.5.4.7: enable loading data series. There is one Diagram deletion too much which results in lost properties 2004/06/30 11:53:31 bm 1.5.4.6: delete Diagram when setting new DataProvider create new Diagram in SetNewData if necessary 2004/05/10 14:38:03 bm 1.5.4.5: +SetNewData to set only a new m_xChartData at the current tree 2004/05/10 11:06:22 bm 1.5.4.4: make CreateDefaultData public for calling from ChartModel::initNew 2004/03/19 14:32:55 bm 1.5.4.3: XDataSource now contains XLabeledDataSources 2004/03/02 09:42:13 bm 1.5.4.2: +GetDataProvider (interface XChartDocument changed) 2004/02/13 16:51:32 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2270d7e436e2ba3235a247ecf3ad7f3204a44751]

INTEGRATION: CWS chart2mst3 (1.8.4); FILE MERGED 2007/02/09 17:29:19 bm 1.8.4.50: XChartDocument::createInternalDataProvider() works like expected now 2006/10/18 17:10:54 bm 1.8.4.49: RESYNC: (1.9-1.10); FILE MERGED 2006/03/31 10:38:58 bm 1.8.4.48: unneeded headers removed 2005/12/21 21:29:20 iha 1.8.4.47: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/15 15:30:32 bm 1.8.4.46: garbage collection, disposing, reference release issues 2005/11/11 15:02:51 bm 1.8.4.45: notify changes 2005/11/02 16:17:01 bm 1.8.4.44: assertion: do not call getCategoriesFromDiagram with an empty diagram 2005/10/29 15:42:17 iha 1.8.4.43: support SequenceMapping also for chart local data 2005/10/14 16:58:44 bm 1.8.4.42: model listener mechanism 2005/10/07 11:55:19 bm 1.8.4.41: RESYNC: (1.8-1.9); FILE MERGED 2005/09/08 11:40:58 iha 1.8.4.40: set data provider and number formatter in the filter and not in the model load methods thus binary loading also gets the correct dataprovider and numberformatter 2005/09/07 14:42:49 bm 1.8.4.39: +hasInternalDataProvider, -getDataEditorForInternalData 2005/09/05 16:53:20 iha 1.8.4.38: hold own numberformatter by reference only (don't delete it as it is offered as reference to the outside) 2005/08/15 14:02:18 bm 1.8.4.37: SetRangeRepresentation: transport string as const ref to allow temporaries 2005/08/15 13:04:16 bm 1.8.4.36: internal methods for setting data (ImplChartModel) changed 2005/08/11 16:05:40 bm 1.8.4.35: change internal data to a new class that does not need Calc 2005/08/03 16:36:19 bm 1.8.4.34: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/21 14:47:08 bm 1.8.4.33: support for number formats from data provider 2005/07/08 17:24:15 bm 1.8.4.32: oops,includes missing 2005/07/08 16:45:40 bm 1.8.4.31: marker table removed, table value types corrected, copy CTOR: clone tables 2005/06/16 14:08:04 iha 1.8.4.30: add a legend to the chart created by initNew 2005/06/09 15:45:37 iha 1.8.4.29: added comment 2005/06/08 14:49:11 bm 1.8.4.28: createInternalData needs the parent storage from ChartModel 2005/06/08 09:13:27 bm 1.8.4.27: all load/save/modify functionality put in a separate file for clarity 2005/06/07 15:35:46 iha 1.8.4.26: offer SvNumberformatter via unotunnel 2005/06/03 09:25:59 bm 1.8.4.25: explicitly create references to XInterface in Get...Table. Warning on Windows 2005/05/31 18:51:51 iha 1.8.4.24: keep gradient table etc. in model 2005/05/31 15:25:34 bm 1.8.4.23: create data for internal spreadsheet in createInternalDataProvider 2005/05/12 13:56:41 bm 1.8.4.22: API change XDataProvider 2005/05/09 09:51:17 bm 1.8.4.21: moved parts of API to data namespace 2005/04/01 16:25:39 bm 1.8.4.20: shared data for different chart models 2005/03/30 16:31:08 bm 1.8.4.19: make model cloneable (+first undo implementation) 2005/03/24 17:04:28 bm 1.8.4.18: Cloneable implementation 2004/09/17 17:27:29 iha 1.8.4.17: removed unused code 2004/09/15 17:32:02 bm 1.8.4.16: API simplification 2004/09/09 15:12:36 bm 1.8.4.15: fixing loading of series: newly interpreted series have to be attached to the tree correctly 2004/09/08 15:36:42 bm 1.8.4.14: enable loading data series. There is one Diagram deletion too much which results in lost properties 2004/06/30 11:53:13 bm 1.8.4.13: delete Diagram when setting new DataProvider create new Diagram in SetNewData if necessary 2004/06/03 09:31:45 bm 1.8.4.12: Embedding API changes 2004/05/27 17:29:13 bm 1.8.4.11: ChartTypeManager is no propertyset any longer.  Set Column chart as hard default 2004/05/11 10:13:51 bm 1.8.4.10: fix creation of default data/default chart 2004/05/10 14:38:18 bm 1.8.4.9: +SetNewData to set only a new m_xChartData at the current tree 2004/05/10 11:05:38 bm 1.8.4.8: don't create a default chart in CloneData apply data using changeDiagramData in CloneData 2004/05/07 15:36:14 bm 1.8.4.7: NULL-check + assertion (instead of GPF) 2004/04/07 21:50:33 iha 1.8.4.6: make chart more failsave 2004/04/05 14:12:25 bm 1.8.4.5: XDataProvider API changed 2004/03/24 10:36:57 bm 1.8.4.4: CloneData adapted to new API (using XLabeledDataSequences) 2004/03/19 14:32:55 bm 1.8.4.3: XDataSource now contains XLabeledDataSources 2004/03/02 09:41:49 bm 1.8.4.2: +GetDataProvider (interface XChartDocument changed) 2004/02/13 16:51:31 bm 1.8.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [632a08774046901b8d58abce1e4fc0dfcf97c873]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/04/10 12:25:11 iha 1.1.2.2: api restructure axis, grids, scales and increments 2005/11/18 18:17:46 iha 1.1.2.1: restructuring for proper subgrid support


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4fb89abbce087792f170c66c35e1fdc558771844]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:39 iha 1.1.2.4: resync m195 -> m202 2006/04/10 18:32:12 iha 1.1.2.3: api restructure axis, grids, scales and increments 2006/04/10 12:25:11 iha 1.1.2.2: api restructure axis, grids, scales and increments 2005/11/18 18:19:09 iha 1.1.2.1: restructuring for proper subgrid support


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3182cb474d9c9dc694f0e0f38adad44e1c3f40b5]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/11/08 12:55:25 bm 1.2.4.4: notification mechanism added 2005/10/07 11:54:56 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/03/31 14:54:59 bm 1.2.4.2: make titles cloneable 2004/02/13 16:51:30 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ce252d1fcd8ec30a9085c89a3921fadea8fe3166]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:10:46 bm 1.3.4.10: RESYNC: (1.4-1.5); FILE MERGED 2006/01/20 16:51:45 bm 1.3.4.9: moved ReferencePageSize from XFormattedString to XTitle 2005/11/08 12:55:25 bm 1.3.4.8: notification mechanism added 2005/10/07 11:54:47 bm 1.3.4.7: RESYNC: (1.3-1.4); FILE MERGED 2005/09/23 15:25:00 iha 1.3.4.6: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:19 bm 1.3.4.5: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:45:43 iha 1.3.4.4: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/03/31 14:54:59 bm 1.3.4.3: make titles cloneable 2004/05/26 16:26:57 bm 1.3.4.2: default font sizes adapted 2004/02/13 16:51:30 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [06ba41db11ba05237d56f7d73b7a1a31442de933]

INTEGRATION: CWS chart2mst3 (1.11.4); FILE MERGED 2007/04/20 08:07:40 iha 1.11.4.32: #i75393# Connect Bars per diagram not per series 2007/04/19 16:08:03 iha 1.11.4.31: #i76130# write attribute sort-by-x-values per plot-area not per series 2006/10/18 17:09:16 bm 1.11.4.30: RESYNC: (1.12-1.13); FILE MERGED 2006/04/12 11:22:46 bm 1.11.4.29: cloning of coordinate systems re-enabled 2006/04/10 15:03:34 iha 1.11.4.28: api restructure axis, grids, scales and increments 2006/04/10 12:25:10 iha 1.11.4.27: api restructure axis, grids, scales and increments 2006/01/16 12:08:58 bm 1.11.4.26: also reset diagram rotation in rearrange function 2005/12/21 21:29:18 iha 1.11.4.25: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/15 15:30:31 bm 1.11.4.24: garbage collection, disposing, reference release issues 2005/11/11 15:01:48 bm 1.11.4.23: implement XComponent 2005/11/03 11:59:16 bm 1.11.4.22: fire modify events on property change 2005/11/02 13:49:21 bm 1.11.4.21: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/24 11:06:46 iha 1.11.4.20: coordinate system restructure 2005/10/14 16:58:43 bm 1.11.4.19: model listener mechanism 2005/10/13 17:38:56 iha 1.11.4.18: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:54:37 bm 1.11.4.17: RESYNC: (1.11-1.12); FILE MERGED 2005/09/23 15:24:58 iha 1.11.4.16: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:19 bm 1.11.4.15: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/08/02 13:48:02 bm 1.11.4.14: data_type is not standard. use mapped_type instead 2005/07/29 13:27:53 bm 1.11.4.13: store unused data 2005/07/28 09:34:51 bm 1.11.4.12: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/26 12:09:54 bm 1.11.4.11: +XDiagram::getColorAtIndex 2005/05/09 09:51:14 bm 1.11.4.10: moved parts of API to data namespace 2005/03/30 16:31:08 bm 1.11.4.9: make model cloneable (+first undo implementation) 2005/03/24 17:04:28 bm 1.11.4.8: Cloneable implementation 2004/09/17 11:11:52 bm 1.11.4.7: setAxes/setGrids: clear vector before adding content 2004/09/16 13:00:57 bm 1.11.4.6: API simplification 2004/09/15 17:32:02 bm 1.11.4.5: API simplification 2004/08/25 16:17:05 iha 1.11.4.4: View independent loading - relative position with dynamic anchor point 2004/06/08 14:30:06 iha 1.11.4.3: adapt default light sources 2004/06/04 08:34:51 iha 1.11.4.2: added aProjectionMode 2004/02/13 16:51:30 bm 1.11.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bd0bb409510e6a618654bd6f003f9bbb29e68b8c]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:10:38 bm 1.2.4.7: RESYNC: (1.3-1.4); FILE MERGED 2006/03/07 11:14:42 bm 1.2.4.6: avoid variables starting with underscores. rMutex is a base-class member so use par_rMutex instead 2005/10/07 11:54:12 bm 1.2.4.5: RESYNC: (1.2-1.3); FILE MERGED 2005/08/03 16:36:18 bm 1.2.4.4: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 13:00:23 iha 1.2.4.3: remove unused parameter 'bIncludeStyleProperties' from series and point properties 2005/07/14 12:45:42 iha 1.2.4.2: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2004/02/13 16:51:29 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a08baa192d4df1105bf5c261dc2dfb04372fd8a2]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/20 08:06:44 iha 1.1.1.1.4.11: #i75393# Connect Bars per diagram not per series 2007/04/19 16:07:00 iha 1.1.1.1.4.10: #i76130# write attribute sort-by-x-values per plot-area not per series 2006/08/21 17:02:45 iha 1.1.1.1.4.9: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2005/12/21 21:29:18 iha 1.1.1.1.4.8: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/28 15:35:41 bm 1.1.1.1.4.7: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/10/24 11:06:45 iha 1.1.1.1.4.6: coordinate system restructure 2005/10/07 11:53:44 bm 1.1.1.1.4.5: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/07/28 09:34:51 bm 1.1.1.1.4.4: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/14 13:00:23 iha 1.1.1.1.4.3: remove unused parameter 'bIncludeStyleProperties' from series and point properties 2004/09/15 17:32:02 bm 1.1.1.1.4.2: API simplification 2004/02/13 16:51:29 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6b0894de22faf3902f02a701cdee444e5b6c6b42]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/20 08:07:06 iha 1.1.1.1.4.13: #i75393# Connect Bars per diagram not per series 2007/04/19 16:07:16 iha 1.1.1.1.4.12: #i76130# write attribute sort-by-x-values per plot-area not per series 2006/10/18 17:10:30 bm 1.1.1.1.4.11: RESYNC: (1.2-1.3); FILE MERGED 2006/08/21 17:03:00 iha 1.1.1.1.4.10: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/04/26 15:22:42 bm 1.1.1.1.4.9: how could that work: an undefined absolute namespace? 2005/12/21 21:29:18 iha 1.1.1.1.4.8: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/28 15:35:41 bm 1.1.1.1.4.7: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/10/24 11:06:45 iha 1.1.1.1.4.6: coordinate system restructure 2005/10/07 11:53:32 bm 1.1.1.1.4.5: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/07/28 09:34:50 bm 1.1.1.1.4.4: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/14 13:00:23 iha 1.1.1.1.4.3: remove unused parameter 'bIncludeStyleProperties' from series and point properties 2004/09/15 17:32:01 bm 1.1.1.1.4.2: API simplification 2004/02/13 16:51:29 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cd2a0093d3afd4665a2bbbcbb544ffb85bdec3d4]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/02/14 12:05:05 bm 1.3.4.28: #i74133# clone: do late initialization after holding a reference to avoid ref-count problems in copy-CTOR 2007/02/13 16:45:59 bm 1.3.4.27: #i74133# clone: do late initialization after holding a reference to avoid ref-count problems in copy-CTOR 2007/02/12 17:19:09 bm 1.3.4.26: add as event listener to labeled data sequences to release them when they get disposed 2006/11/10 15:06:12 bm 1.3.4.25: #i67875# add undo for own data 2006/10/18 17:10:22 bm 1.3.4.24: RESYNC: (1.4-1.5); FILE MERGED 2006/04/04 15:57:24 bm 1.3.4.23: listen at data sequences for modification events. 2006/04/04 13:38:59 bm 1.3.4.22: listen at data sequences for modification events. 2005/12/21 21:29:17 iha 1.3.4.21: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/29 09:53:35 bm 1.3.4.20: #i58587# correct adding and removing modification listeners at XPropertySet properties 2005/11/07 17:12:43 bm 1.3.4.19: some missing notifications added 2005/11/03 11:59:16 bm 1.3.4.18: fire modify events on property change 2005/10/14 16:58:43 bm 1.3.4.17: model listener mechanism 2005/10/11 13:00:08 bm 1.3.4.16: #i27351# use own mutex in DataPoint to allow cloning 2005/10/07 11:53:21 bm 1.3.4.15: RESYNC: (1.3-1.4); FILE MERGED 2005/09/23 15:24:58 iha 1.3.4.14: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:18 bm 1.3.4.13: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/08/02 13:49:06 bm 1.3.4.12: data_type is not standard. use mapped_type instead 2005/07/14 13:00:23 iha 1.3.4.11: remove unused parameter 'bIncludeStyleProperties' from series and point properties 2005/07/14 12:45:42 iha 1.3.4.10: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/05/09 09:51:14 bm 1.3.4.9: moved parts of API to data namespace 2005/04/01 16:25:39 bm 1.3.4.8: shared data for different chart models 2005/03/30 16:31:07 bm 1.3.4.7: make model cloneable (+first undo implementation) 2004/09/15 17:32:01 bm 1.3.4.6: API simplification 2004/05/26 16:40:55 bm 1.3.4.5: default font sizes adapted 2004/05/07 13:46:42 bm 1.3.4.4: only CTORS with component-context 2004/04/27 13:39:40 bm 1.3.4.3: +XInitialization for transfering Id over factory 2004/03/19 14:32:54 bm 1.3.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:29 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [478b03ae95ef96334b1ec83cb99433649429fed3]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:10:13 bm 1.2.4.6: RESYNC: (1.3-1.4); FILE MERGED 2006/03/07 11:13:44 bm 1.2.4.5: avoid variables starting with underscores. rMutex is a base-class member so use par_rMutex instead 2005/10/07 11:52:30 bm 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2005/08/03 16:36:18 bm 1.2.4.3: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 13:00:22 iha 1.2.4.2: remove unused parameter 'bIncludeStyleProperties' from series and point properties 2004/02/13 16:51:29 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [45877f51385c55970e96784c908882e3a96654d6]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2006/10/20 20:29:07 iha 1.4.4.10: implement gradient step count 2005/11/03 11:59:15 bm 1.4.4.9: fire modify events on property change 2005/10/07 11:52:50 bm 1.4.4.8: RESYNC: (1.4-1.5); FILE MERGED 2005/07/22 12:54:32 bm 1.4.4.7: #124485# property FillBackground added 2005/07/14 13:00:22 iha 1.4.4.6: remove unused parameter 'bIncludeStyleProperties' from series and point properties 2005/07/14 11:35:08 iha 1.4.4.5: use identical fast-property-IDs for lineproperties everywhere 2005/07/12 12:57:08 bm 1.4.4.4: use named properties for gradients etc. in chart model 2004/06/08 14:31:05 iha 1.4.4.3: added property RoundedEdges 2004/03/08 18:58:45 iha 1.4.4.2: added Geometry3D to DataPointPoperties 2004/02/13 16:51:28 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [66a2bee5b2b1130ac7f07c081bf946e63e02796b]

INTEGRATION: CWS chart2mst3 (1.9.4); FILE MERGED 2006/10/20 20:28:55 iha 1.9.4.27: implement gradient step count 2006/10/18 17:10:05 bm 1.9.4.26: RESYNC: (1.10-1.11); FILE MERGED 2006/08/02 16:37:04 bm 1.9.4.25: #i68041# reduce symbol default size to 0.25 cm 2006/07/07 16:59:39 iha 1.9.4.24: correct font sizes - don't guess a default reference size, as a guess could to be wrong 2006/06/23 19:29:17 iha 1.9.4.23: rounded edges on per default 2006/05/17 14:18:07 bm 1.9.4.22: support bitmap properties like tile, stretch, offsets etc. also for data points/series 2006/03/12 01:04:30 iha 1.9.4.21: offer LineDash property 2006/01/20 16:56:13 bm 1.9.4.20: better default for guessed ReferenceDiagramSize 2005/12/21 14:10:57 dr 1.9.4.19: border color for symbols 2005/12/20 14:13:06 dr 1.9.4.18: API struct member names without prefixes 2005/11/24 18:32:43 bm 1.9.4.17: transparency gradients enabled 2005/11/08 11:54:06 bm 1.9.4.16: smaller default symbol size, todo: resize symbols on diagram resize 2005/11/03 11:59:15 bm 1.9.4.15: fire modify events on property change 2005/10/07 11:52:39 bm 1.9.4.14: RESYNC: (1.9-1.10); FILE MERGED 2005/09/02 12:00:52 bm 1.9.4.13: default for FillBackground added 2005/07/22 12:54:42 bm 1.9.4.12: #124485# property FillBackground added 2005/07/14 13:00:22 iha 1.9.4.11: remove unused parameter 'bIncludeStyleProperties' from series and point properties 2005/07/14 11:34:41 iha 1.9.4.10: use identical fast-property-IDs for lineproperties everywhere 2005/07/12 12:57:08 bm 1.9.4.9: use named properties for gradients etc. in chart model 2005/07/07 16:28:21 bm 1.9.4.8: make border style solid default (correct import of old barchart files) 2005/06/22 11:24:14 iha 1.9.4.7: add error bar properties to default map 2005/06/08 11:31:57 iha 1.9.4.6: use number format key at API instead of string 2005/04/14 11:16:15 bm 1.9.4.5: changed default color from blue7 to blue 8 2004/06/08 14:31:11 iha 1.9.4.4: added property RoundedEdges 2004/05/26 16:40:55 bm 1.9.4.3: default font sizes adapted 2004/03/08 18:59:20 iha 1.9.4.2: added Geometry3D to DataPointPoperties 2004/02/13 16:51:28 bm 1.9.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [70cdba9766281bc4251afa06f0a706e85d31f77a]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/11/10 10:25:54 bm 1.1.1.1.4.7: warning removed (wrong GetMutex() function defined) 2005/12/02 15:24:37 bm 1.1.1.1.4.6: implement XServiceInfo 2005/11/07 17:12:43 bm 1.1.1.1.4.5: some missing notifications added 2005/10/11 12:58:55 bm 1.1.1.1.4.4: #i27351# use own mutex to allow cloning 2005/10/07 11:52:19 bm 1.1.1.1.4.3: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/09/26 16:43:29 iha 1.1.1.1.4.2: #i55110# crash clone of datapoints, caused by invalid mutex 2005/03/30 16:31:07 bm 1.1.1.1.4.1: make model cloneable (+first undo implementation)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [db490e0026b36d8a6389f98357835643262ea04b]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/02/28 19:29:56 iha 1.2.4.16: #i74967# assert missing parent 2006/11/10 10:25:45 bm 1.2.4.15: warning removed (wrong GetMutex() function defined) 2006/10/18 17:09:58 bm 1.2.4.14: RESYNC: (1.3-1.4); FILE MERGED 2005/12/02 15:24:50 bm 1.2.4.13: implement XServiceInfo 2005/11/29 09:53:34 bm 1.2.4.12: #i58587# correct adding and removing modification listeners at XPropertySet properties 2005/11/07 17:12:43 bm 1.2.4.11: some missing notifications added 2005/10/11 12:58:19 bm 1.2.4.10: #i27351# use own mutex to allow cloning 2005/10/07 11:52:07 bm 1.2.4.9: RESYNC: (1.2-1.3); FILE MERGED 2005/09/26 16:44:13 iha 1.2.4.8: #i55110# crash clone of datapoints, caused by invalid mutex 2005/09/23 15:24:57 iha 1.2.4.7: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:18 bm 1.2.4.6: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 13:00:22 iha 1.2.4.5: remove unused parameter 'bIncludeStyleProperties' from series and point properties 2005/07/14 12:45:41 iha 1.2.4.4: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/07/11 13:04:17 bm 1.2.4.3: warning removved 2005/03/30 16:31:07 bm 1.2.4.2: make model cloneable (+first undo implementation) 2004/02/13 16:51:28 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [504a35177fa000fdd0aecd600a57da4d651cc280]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/20 14:27:01 bm 1.1.2.25: #i75191# else missing before query for InputStream 2007/04/20 08:56:02 mav 1.1.2.24: #i75191# let chart be able to load from InputStream 2007/04/19 09:28:15 bm 1.1.2.23: #i76397# implement storing to URL private:stream for MSOLE export 2007/04/19 09:22:38 bm 1.1.2.22: #i76397# implement storing to URL private:stream for MSOLE export 2007/02/23 10:42:32 bm 1.1.2.21: unused empty local function removed 2007/02/22 17:03:49 ka 1.1.2.20: #i66558#: added mechanism for preloading and storing of graphics during lifetime of model 2007/02/08 21:25:39 iha 1.1.2.19: resync m195 -> m202 2006/11/02 21:39:11 iha 1.1.2.18: #i66865# notify parent only if chart has no internal data 2006/11/02 17:27:24 nn 1.1.2.17: #i66865# notify parent (via property SavedObject) after saving 2006/03/15 13:26:21 iha 1.1.2.16: enable modified notifications during load again for loading addins correctly 2006/03/12 01:28:29 iha 1.1.2.15: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2005/11/29 18:11:20 iha 1.1.2.14: #i58464# work around wrong writer ranges in file 2005/11/02 13:49:21 bm 1.1.2.13: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/14 16:58:43 bm 1.1.2.12: model listener mechanism 2005/10/11 09:20:42 bm 1.1.2.11: license header change 2005/09/08 11:39:23 iha 1.1.2.10: set data provider and number formatter in the filter and not in the model load methods thus binary loading also gets the correct dataprovider and numberformatter 2005/09/02 19:17:58 iha 1.1.2.9: call createInternalDataProvider in case of standalone for series identification (missing series styles) 2005/09/02 14:22:32 iha 1.1.2.8: enable loading 5.0 standalone charts 2005/08/30 16:41:53 iha 1.1.2.7: don't send modified notifications during load and if controllers are locked 2005/08/15 13:02:51 bm 1.1.2.6: internal methods for setting data (ImplChartModel) changed 2005/08/11 16:05:40 bm 1.1.2.5: change internal data to a new class that does not need Calc 2005/07/22 08:21:58 bm 1.1.2.4: set parent as data provider before starting loading. ToDo: do this only when the container really provides the data for the current chart (setting at this time is necessary to get the parent number formatter before the styles are loaded) 2005/06/08 15:10:56 bm 1.1.2.3: XStorable2 is derived from XStorable 2005/06/08 14:50:19 bm 1.1.2.2: implement XStorable2, call attachResource in load 2005/06/08 08:51:01 bm 1.1.2.1: all load/save/modify functionality put in a separate file for clarity


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c28b7d79c53839d045f510abbf2c324b6e21ca33]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/03/19 15:23:42 bm 1.4.4.31: #i75418# support XTransferable in model and offer a high-contrast replacement image 2007/02/22 17:02:32 ka 1.4.4.30: #i66558#: added mechanism for preloading and storing of graphics during lifetime of model 2006/08/09 14:00:12 bm 1.4.4.29: #i68229# add getUsedData (from XChartDocument) 2006/01/26 16:16:05 bm 1.4.4.28: adapting to move of implbase_var from cppuhelper to comphelper 2005/12/02 15:25:19 bm 1.4.4.27: XDataReceiver: +getRangeHighlighter 2005/11/15 15:30:31 bm 1.4.4.26: garbage collection, disposing, reference release issues 2005/11/10 09:24:45 dr 1.4.4.25: #i3997# no IA exception for setFirstDiagram 2005/11/08 09:43:08 bm 1.4.4.24: missing exception spec in setFirstDiagram 2005/10/14 16:58:42 bm 1.4.4.23: model listener mechanism 2005/10/07 11:51:53 bm 1.4.4.22: RESYNC: (1.5-1.6); FILE MERGED 2005/09/08 11:38:34 iha 1.4.4.21: set data provider and number formatter in the filter and not in the model load methods thus binary loading also gets the correct dataprovider and numberformatter 2005/09/07 14:42:05 bm 1.4.4.20: +hasInternalDataProvider, -getDataEditorForInternalData 2005/08/30 16:40:20 iha 1.4.4.19: don't send modified notifications during load and if controllers are locked 2005/08/18 15:20:43 bm 1.4.4.18: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/08/15 13:04:53 bm 1.4.4.17: XDataReceiver: setRangeRepresentation -> setArguments 2005/06/20 14:37:22 bm 1.4.4.16: support XChild for being able to get the data provider during load (after creation of model and before the filter is started 2005/06/08 15:10:19 bm 1.4.4.15: XStorable2 is derived from XStorable 2005/06/08 14:50:19 bm 1.4.4.14: implement XStorable2, call attachResource in load 2005/06/08 08:59:42 bm 1.4.4.13: support XStorageBasedDocument 2005/06/07 15:34:01 iha 1.4.4.12: offer SvNumberformatter via unotunnel 2005/05/31 18:46:04 iha 1.4.4.11: modle offers MultiServiceFactory in addition for gradient table etc. 2005/05/31 15:24:48 bm 1.4.4.10: support aggregated XTypeProvider for Basic Scripts 2005/05/27 12:24:10 bm 1.4.4.9: +getUsedRangeRepresentations() in XDataReceiver interface 2005/05/09 09:51:12 bm 1.4.4.8: moved parts of API to data namespace 2005/04/25 11:28:07 bm 1.4.4.7: XVisualObject first impl 2005/04/01 16:25:38 bm 1.4.4.6: shared data for different chart models 2005/03/24 17:04:27 bm 1.4.4.5: Cloneable implementation 2004/06/03 03:39:40 iha 1.4.4.4: RESYNC: (1.4-1.5); FILE MERGED 2004/04/21 11:33:32 bm 1.4.4.3: no locked mutex when calling out 2004/03/19 14:32:54 bm 1.4.4.2: XDataSource now contains XLabeledDataSources 2004/03/02 09:41:19 bm 1.4.4.1: +getDataProvider() method at XChartDocument -XStyleFamiliesSupplier (xmloff queries to that interface and assumes that it is  						 fully functional, which it isn't yet)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [da3db2ef0779f7348e15d4d579a4408f2370b0d0]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/03/19 15:23:42 bm 1.6.4.76: #i75418# support XTransferable in model and offer a high-contrast replacement image 2007/02/23 15:56:00 bm 1.6.4.75: #i66558# also copy m_aGraphicObjectVector in copy CTOR 2007/02/09 17:29:19 bm 1.6.4.74: XChartDocument::createInternalDataProvider() works like expected now 2006/11/30 15:20:10 bm 1.6.4.73: #i64497# setParent does no longer set the data provider (was only a temporary solution) 2006/11/17 16:32:42 bm 1.6.4.72: in ChartModel::setParent migrate the data from one data provider to the new one, if it is the same implementation and no temporary document. This is needed for solving the current clipboard problems 2006/10/18 17:09:50 bm 1.6.4.71: RESYNC: (1.8-1.9); FILE MERGED 2006/09/01 11:16:31 bm 1.6.4.70: set Model to modified state if diagram is set 2006/08/09 14:00:12 bm 1.6.4.69: #i68229# add getUsedData (from XChartDocument) 2006/05/09 14:37:34 bm 1.6.4.68: the ChartModel service name is ChartDocument 2006/03/12 01:28:00 iha 1.6.4.67: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/21 17:10:50 bm 1.6.4.66: ooops 2006/02/21 17:02:32 bm 1.6.4.65: createInstance: NamespaceMap added as reminder (not implemented yet) 2006/01/27 09:51:22 bm 1.6.4.64: InlineContainer.hxx moved to comphelper 2006/01/20 16:59:01 bm 1.6.4.63: warnings removed, leak fixed (releasing the old api aggregate) 2005/12/02 15:25:36 bm 1.6.4.62: XDataReceiver: +getRangeHighlighter 2005/11/24 18:32:42 bm 1.6.4.61: transparency gradients enabled 2005/11/22 11:58:06 bm 1.6.4.60: remove TEST (creating MainTitle via factory) 2005/11/15 18:37:17 bm 1.6.4.59: do neither clone nor dispose the storage 2005/11/15 15:30:29 bm 1.6.4.58: garbage collection, disposing, reference release issues 2005/11/11 15:02:50 bm 1.6.4.57: notify changes 2005/11/10 09:24:45 dr 1.6.4.56: #i3997# no IA exception for setFirstDiagram 2005/11/08 18:22:46 bm 1.6.4.55: set modified flag if visual area size changes (needed for saving new absolute positions and sizes in XML) 2005/11/08 09:42:56 bm 1.6.4.54: missing exception spec in setFirstDiagram 2005/11/02 13:49:20 bm 1.6.4.53: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/14 16:58:42 bm 1.6.4.52: model listener mechanism 2005/10/07 11:51:40 bm 1.6.4.51: RESYNC: (1.7-1.8); FILE MERGED 2005/09/08 11:39:05 iha 1.6.4.50: set data provider and number formatter in the filter and not in the model load methods thus binary loading also gets the correct dataprovider and numberformatter 2005/09/07 14:42:23 bm 1.6.4.49: +hasInternalDataProvider, -getDataEditorForInternalData 2005/08/30 16:41:03 iha 1.6.4.48: don't send modified notifications during load and if controllers are locked 2005/08/25 16:24:11 bm 1.6.4.47: #124570# CloseVetoException was passed as Exception to function before throw, which discarded the type. This violated the throw specification later that only allows the CloseVetoException 2005/08/18 15:20:43 bm 1.6.4.46: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/08/15 13:02:28 bm 1.6.4.45: internal methods for setting data (ImplChartModel) changed 2005/08/11 16:05:40 bm 1.6.4.44: change internal data to a new class that does not need Calc 2005/07/12 12:57:07 bm 1.6.4.43: use named properties for gradients etc. in chart model 2005/07/08 16:46:42 bm 1.6.4.42: marker table removed 2005/07/07 09:30:46 iha 1.6.4.41: implement interface XSelectionSupplier 2005/07/07 09:29:20 iha 1.6.4.40: warnings removed 2005/06/20 14:37:22 bm 1.6.4.39: support XChild for being able to get the data provider during load (after creation of model and before the filter is started 2005/06/09 15:44:59 iha 1.6.4.38: corrected comment 2005/06/08 14:57:39 bm 1.6.4.37: createInternalData needs the parent storage from ChartModel 2005/06/08 11:29:43 bm 1.6.4.36: WinExtent in MediaDescriptor is deprecated 2005/06/08 08:59:09 bm 1.6.4.35: all load/save/modify functionality put in a separate file for clarity 2005/06/07 15:34:36 iha 1.6.4.34: offer SvNumberformatter via unotunnel 2005/05/31 18:50:19 iha 1.6.4.33: modle offers MultiServiceFactory in addition for gradient table etc. + create view for visual representation 2005/05/31 15:24:47 bm 1.6.4.32: support aggregated XTypeProvider for Basic Scripts 2005/05/27 12:24:09 bm 1.6.4.31: +getUsedRangeRepresentations() in XDataReceiver interface 2005/05/09 09:51:12 bm 1.6.4.30: moved parts of API to data namespace 2005/04/25 11:28:07 bm 1.6.4.29: XVisualObject first impl 2005/04/01 16:25:38 bm 1.6.4.28: shared data for different chart models 2005/03/30 16:31:07 bm 1.6.4.27: make model cloneable (+first undo implementation) 2005/03/24 17:04:27 bm 1.6.4.26: Cloneable implementation 2004/09/21 15:54:01 iha 1.6.4.25: enable save 2004/09/20 14:37:10 bm 1.6.4.24: some more debug code 2004/09/17 16:24:35 bm 1.6.4.23: trace chart doc in initNew 2004/09/09 15:12:36 bm 1.6.4.22: fixing loading of series: newly interpreted series have to be attached to the tree correctly 2004/09/08 15:36:42 bm 1.6.4.21: enable loading data series. There is one Diagram deletion too much which results in lost properties 2004/09/06 10:59:57 bm 1.6.4.20: oops, one slash too much 2004/09/06 09:56:42 bm 1.6.4.19: enable a test file name to save for unix systems 2004/09/03 17:13:58 iha 1.6.4.18: enable save 2004/08/30 18:01:42 iha 1.6.4.17: enable menubar again 2004/06/29 12:26:01 bm 1.6.4.16: close internal spreadsheet when chart is closed. 2004/06/17 09:30:58 bm 1.6.4.15: wrong number of storage arguments 2004/06/03 09:31:44 bm 1.6.4.14: Embedding API changes 2004/06/03 03:39:32 iha 1.6.4.13: RESYNC: (1.6-1.7); FILE MERGED 2004/05/11 10:13:33 bm 1.6.4.12: fix creation of default data/default chart 2004/05/10 17:14:32 bm 1.6.4.11: create diagram before default data to avoid exception 2004/05/10 11:17:28 bm 1.6.4.10: call CreateDefaultChart in initNew as CloneData doesn't do this any longer 2004/04/27 14:27:42 bm 1.6.4.9: warnings removed 2004/04/21 11:33:32 bm 1.6.4.8: no locked mutex when calling out 2004/04/15 17:13:31 bm 1.6.4.7: new macro DONT_CLONE_FILE_DATA_SOURCE to avoid cloning of file-data-source 2004/03/24 10:39:04 bm 1.6.4.6: switch to internal calc again don't use file data source in initNew 2004/03/19 14:32:54 bm 1.6.4.5: XDataSource now contains XLabeledDataSources 2004/03/05 15:11:39 iha 1.6.4.4: removed wrong OSL_ASSERTs 2004/03/03 14:43:35 bm 1.6.4.3: call setModified() in some methods 2004/03/02 09:39:48 bm 1.6.4.2: +USE_FILE_DATA_SOURCE define for deciding whether to use default data or the file XMLFilter integrated in load-method 2004/02/13 16:51:28 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c5be9dc59f452d57524ff8dc3ef0dc0e7ce8c43f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/09 17:29:19 bm 1.1.2.9: XChartDocument::createInternalDataProvider() works like expected now 2005/10/29 15:42:04 iha 1.1.2.8: support SequenceMapping also for chart local data 2005/10/11 09:20:42 bm 1.1.2.7: license header change 2005/09/07 14:43:43 bm 1.1.2.6: XChartDocument: +hasInternalDataProvider, -getDataEditorForInternalData 2005/08/15 13:06:48 bm 1.1.2.5: internal methods for setting data (ImplChartModel) changed 2005/08/11 16:05:39 bm 1.1.2.4: change internal data to a new class that does not need Calc 2005/05/31 15:25:33 bm 1.1.2.3: create data for internal spreadsheet in createInternalDataProvider 2005/05/09 09:51:11 bm 1.1.2.2: moved parts of API to data namespace 2005/04/01 16:25:03 bm 1.1.2.1: helper classes for sharing the data between different chart models


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [42bffd69566308b6abcaf5bde34df33005b35070]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/09 17:29:18 bm 1.1.2.12: XChartDocument::createInternalDataProvider() works like expected now 2007/02/08 21:25:38 iha 1.1.2.11: resync m195 -> m202 2005/10/29 15:41:56 iha 1.1.2.10: support SequenceMapping also for chart local data 2005/10/11 09:20:42 bm 1.1.2.9: license header change 2005/09/08 11:50:39 bm 1.1.2.8: hasInternalData also tests m_xDataProvider, m_pInternalDataProvider was uninitialized in CTOR 2005/09/07 14:44:16 bm 1.1.2.7: XChartDocument: +hasInternalDataProvider, -getDataEditorForInternalData 2005/08/15 13:06:34 bm 1.1.2.6: internal methods for setting data (ImplChartModel) changed 2005/08/11 16:05:39 bm 1.1.2.5: change internal data to a new class that does not need Calc 2005/05/31 15:25:32 bm 1.1.2.4: create data for internal spreadsheet in createInternalDataProvider 2005/05/09 09:51:09 bm 1.1.2.3: moved parts of API to data namespace 2005/04/15 14:49:46 bm 1.1.2.2: reset internal data member in setDataProvider 2005/04/01 16:24:53 bm 1.1.2.1: helper classes for sharing the data between different chart models


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [43c48b8e74c906d187310f98b7893debbf383aea]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:09:41 bm 1.3.4.6: RESYNC: (1.4-1.5); FILE MERGED 2006/04/11 15:41:32 bm 1.3.4.5: make creation of coordinate systems available via factory 2005/10/13 17:38:56 iha 1.3.4.4: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:51:29 bm 1.3.4.3: RESYNC: (1.3-1.4); FILE MERGED 2004/09/15 17:32:01 bm 1.3.4.2: API simplification 2004/04/01 10:53:06 bm 1.3.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4ea59044b0f06a0127df675d765e74ae9d57d4b0]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:38 iha 1.1.2.18: resync m195 -> m202 2006/09/24 09:12:55 iha 1.1.2.17: #i61970# correct implementation of axis at 2006/09/21 11:59:34 bm 1.1.2.16: #i69680# do not make grid of first y-axis visible (instead do that in the template) 2006/04/10 18:32:11 iha 1.1.2.15: api restructure axis, grids, scales and increments 2006/04/10 18:04:23 iha 1.1.2.14: api restructure axis, grids, scales and increments 2006/04/10 12:25:10 iha 1.1.2.13: api restructure axis, grids, scales and increments 2005/11/03 11:59:15 bm 1.1.2.12: fire modify events on property change 2005/11/02 17:46:27 bm 1.1.2.11: warning removed 2005/11/02 16:37:21 bm 1.1.2.10: CloneRefVector uses a back_inserter: do not resize destination before calling 2005/10/24 11:06:44 iha 1.1.2.9: coordinate system restructure 2005/10/14 16:58:42 bm 1.1.2.8: model listener mechanism 2005/10/13 17:38:55 iha 1.1.2.7: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 09:20:42 bm 1.1.2.6: license header change 2005/09/23 15:24:56 iha 1.1.2.5: #i55000# crash caused by dead reference to mutex 2005/08/03 16:36:18 bm 1.1.2.4: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/03/30 16:31:07 bm 1.1.2.3: make model cloneable (+first undo implementation) 2004/09/16 16:51:13 bm 1.1.2.2: API simplification 2004/09/15 17:30:42 bm 1.1.2.1: API simplification


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0e99d4733dd431c0de609bb024aecb96c3608dbc]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/02/14 12:04:17 bm 1.4.4.12: #i74133# clone: do late initialization after holding a reference to avoid ref-count problems in copy-CTOR 2006/04/10 12:25:10 iha 1.4.4.11: api restructure axis, grids, scales and increments 2005/12/21 21:29:17 iha 1.4.4.10: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/18 15:18:50 bm 1.4.4.9: implement XInitialization (do not use context to pass identifier) 2005/11/03 11:59:14 bm 1.4.4.8: fire modify events on property change 2005/10/24 11:06:43 iha 1.4.4.7: coordinate system restructure 2005/10/14 16:58:42 bm 1.4.4.6: model listener mechanism 2005/10/13 17:38:54 iha 1.4.4.5: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:51:12 bm 1.4.4.4: RESYNC: (1.4-1.5); FILE MERGED 2005/03/30 16:31:07 bm 1.4.4.3: make model cloneable (+first undo implementation) 2005/03/24 17:04:27 bm 1.4.4.2: Cloneable implementation 2004/02/13 16:51:27 bm 1.4.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [67df673bfbaa1fc57bb63bef809ebff1823272fb]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/02/14 12:03:54 bm 1.6.4.32: #i74133# clone: do late initialization after holding a reference to avoid ref-count problems in copy-CTOR 2007/02/12 17:19:09 bm 1.6.4.31: add as event listener to labeled data sequences to release them when they get disposed 2006/11/10 09:28:02 iha 1.6.4.30: no break as default 2006/10/18 17:09:08 bm 1.6.4.29: RESYNC: (1.7-1.8); FILE MERGED 2006/07/19 15:49:42 bm 1.6.4.28: add axis as listener at the categories of the ScaleData to be able to propagate changes in categories to the ChartDocument 2006/07/07 17:00:18 iha 1.6.4.27: correct font sizes - don't guess a default reference size, as a guess could to be wrong 2006/04/10 15:03:34 iha 1.6.4.26: api restructure axis, grids, scales and increments 2006/04/10 12:25:10 iha 1.6.4.25: api restructure axis, grids, scales and increments 2006/02/21 19:40:06 iha 1.6.4.24: added property show to axis to make axis title possible with invisible axis and enlarge lifetime for old api 2006/01/20 16:56:37 bm 1.6.4.23: better default for guessed ReferenceDiagramSize and font size 2005/12/21 21:29:16 iha 1.6.4.22: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/18 15:19:02 bm 1.6.4.21: implement XInitialization (do not use context to pass identifier) 2005/11/08 11:55:22 bm 1.6.4.20: notification mechanism added 2005/11/03 11:59:14 bm 1.6.4.19: fire modify events on property change 2005/10/24 11:06:43 iha 1.6.4.18: coordinate system restructure 2005/10/14 16:58:42 bm 1.6.4.17: model listener mechanism 2005/10/13 17:38:54 iha 1.6.4.16: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:51:00 bm 1.6.4.15: RESYNC: (1.6-1.7); FILE MERGED 2005/09/23 15:24:55 iha 1.6.4.14: #i55000# crash caused by dead reference to mutex 2005/09/02 12:45:33 bm 1.6.4.13: AxisPosition had wrong type 2005/08/03 16:36:17 bm 1.6.4.12: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/21 08:22:12 bm 1.6.4.11: use source format as default 2005/07/14 12:45:41 iha 1.6.4.10: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/07/14 12:32:52 iha 1.6.4.9: remove unused parameter 'bIncludeStyleProperties' 2005/06/08 11:31:22 iha 1.6.4.8: use number format key at API instead of string 2005/05/09 09:51:08 bm 1.6.4.7: moved parts of API to data namespace 2005/03/30 16:31:06 bm 1.6.4.6: make model cloneable (+first undo implementation) 2005/03/24 17:04:27 bm 1.6.4.5: Cloneable implementation 2004/05/26 16:40:55 bm 1.6.4.4: default font sizes adapted 2004/05/26 16:26:57 bm 1.6.4.3: default font sizes adapted 2004/03/12 15:37:33 iha 1.6.4.2: added AxisPosition for secondary axes 2004/02/13 16:51:27 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d184dd83bc9046cc78a97aca9dd96e255056e1e8]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/10 10:55:22 iha 1.1.2.4: don't use leading underscore 2005/10/11 09:20:41 bm 1.1.2.3: license header change 2004/09/16 16:10:02 bm 1.1.2.2: API simplification 2004/09/16 16:01:37 bm 1.1.2.1: API simplification


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a8acc8335d477600602e5aef7e7368e29c3cab8b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/07/27 14:33:02 bm 1.1.2.5: #i60323# export and import meta data. Implement the BuildId Property for storing the build id in the InfoProperties 2005/10/11 09:20:41 bm 1.1.2.4: license header change 2005/06/10 18:19:46 iha 1.1.2.3: load gradients, hatches etc. correct (transport StyleNameMap) 2004/09/03 17:15:15 iha 1.1.2.2: enable save 2004/03/02 09:32:18 bm 1.1.2.1: filter calling xmloff subfilter for chart im-/export Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a6ce7918aea4be1b9e5b5a37f87118135b40c90e]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2005/11/29 09:51:42 bm 1.1.4.3: #i58588# enable cloning and modification listening 2005/10/11 09:20:41 bm 1.1.4.2: license header change 2004/02/13 16:51:26 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [998dee094dc4be884d8abbf2fe9970cf500c7942]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/04/11 15:33:00 bm 1.3.4.5: make creation of coordinate systems available via factory 2005/10/13 17:38:53 iha 1.3.4.4: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:50:37 bm 1.3.4.3: RESYNC: (1.3-1.4); FILE MERGED 2004/09/15 17:32:00 bm 1.3.4.2: API simplification 2004/04/01 10:53:05 bm 1.3.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [65775016fe4ddd8ea6f8614bfb1574686060dacc]

INTEGRATION: CWS chart2mst3 (1.8.4); FILE MERGED 2006/04/10 12:25:09 iha 1.8.4.16: api restructure axis, grids, scales and increments 2005/12/21 21:29:16 iha 1.8.4.15: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/15 15:30:28 bm 1.8.4.14: garbage collection, disposing, reference release issues 2005/11/11 15:01:37 bm 1.8.4.13: implement XComponent 2005/11/03 11:59:06 bm 1.8.4.12: fire modify events on property change 2005/10/14 16:58:41 bm 1.8.4.11: model listener mechanism 2005/10/13 17:38:52 iha 1.8.4.10: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:50:14 bm 1.8.4.9: RESYNC: (1.8-1.9); FILE MERGED 2005/07/29 13:26:40 bm 1.8.4.8: store unused data 2005/07/28 09:34:50 bm 1.8.4.7: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/26 12:09:28 bm 1.8.4.6: +XDiagram::getColorAtIndex 2005/03/30 16:31:05 bm 1.8.4.5: make model cloneable (+first undo implementation) 2005/03/24 17:04:26 bm 1.8.4.4: Cloneable implementation 2004/09/16 13:00:57 bm 1.8.4.3: API simplification 2004/09/15 17:32:00 bm 1.8.4.2: API simplification 2004/02/13 16:51:26 bm 1.8.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f678c3a9b1493d412a6fe0ea1932887ed402f5b8]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 11:50:03 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/06/29 12:42:22 bm 1.2.4.1: API changes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e1dd058a9a213e4a62d21225de91ec0a347fbb2b]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2007/02/14 12:04:37 bm 1.1.4.15: #i74133# clone: do late initialization after holding a reference to avoid ref-count problems in copy-CTOR 2006/04/04 15:58:30 bm 1.1.4.14: include of ModifyListenerHelper only needed in cxx. Therefore, moved there 2005/12/21 21:29:15 iha 1.1.4.13: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/07 17:12:42 bm 1.1.4.12: some missing notifications added 2005/11/03 11:59:05 bm 1.1.4.11: fire modify events on property change 2005/10/14 16:58:41 bm 1.1.4.10: model listener mechanism 2005/10/11 09:20:41 bm 1.1.4.9: license header change 2005/05/09 09:51:06 bm 1.1.4.8: moved parts of API to data namespace 2005/03/30 16:31:05 bm 1.1.4.7: make model cloneable (+first undo implementation) 2004/09/17 10:52:49 bm 1.1.4.6: API simplification 2004/09/15 17:32:00 bm 1.1.4.5: API simplification 2004/05/07 13:47:07 bm 1.1.4.4: only CTORS with component-context 2004/04/27 13:39:23 bm 1.1.4.3: +XInitialization for transfering Id over factory 2004/03/19 14:32:53 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:25 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8ca51c3772308ea96bea6c8649fc824ab121318a]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 11:49:28 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/05/27 17:29:44 bm 1.2.4.2: ChartTypeManager is no propertyset any longer. 2004/02/13 16:51:25 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2006b0c7def85ede47558e64ff94bb25663f1e99]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/04/11 15:41:59 bm 1.2.4.5: make creation of coordinate systems available via factory 2005/10/13 17:38:51 iha 1.2.4.4: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:49:41 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/09/15 17:32:00 bm 1.2.4.2: API simplification 2004/04/01 10:53:05 bm 1.2.4.1: XChartType: may return a coordinate system now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bf66aabcfa99ef696112c17f1441726840c812ab]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/09/24 09:12:55 iha 1.1.2.10: #i61970# correct implementation of axis at 2006/04/10 12:25:09 iha 1.1.2.9: api restructure axis, grids, scales and increments 2005/11/03 11:59:05 bm 1.1.2.8: fire modify events on property change 2005/10/24 11:06:42 iha 1.1.2.7: coordinate system restructure 2005/10/14 16:58:41 bm 1.1.2.6: model listener mechanism 2005/10/13 17:38:51 iha 1.1.2.5: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 09:20:40 bm 1.1.2.4: license header change 2004/09/16 17:37:54 bm 1.1.2.3: -getChartTypeByIdentifier 2004/09/16 16:51:13 bm 1.1.2.2: API simplification 2004/09/15 17:30:29 bm 1.1.2.1: API simplification


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0cbec8f757312a00f854a2b54830aefdd9ce2d92]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:39 bm 1.1.2.2: license header change 2004/03/02 09:25:21 bm 1.1.2.1: +XMLFilter: filter calling xmloff subfilter for chart im-/export


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b71b5a9b4cc0bdb47d57bcf6e6d4025f91a1f35d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:38 iha 1.1.2.17: resync m195 -> m202 2007/01/31 13:16:41 bm 1.1.2.16: #144135# export table-number list in OOo XML format (not Oasis) 2007/01/30 10:59:23 bm 1.1.2.15: #i72973# detect properly, if the format is Oasis or OOo (didn't work by querying the storage) 2006/08/15 16:29:23 bm 1.1.2.14: get rid of tools library. lib/urlobj.hxx was no longer needed. 2006/07/27 14:33:02 bm 1.1.2.13: #i60323# export and import meta data. Implement the BuildId Property for storing the build id in the InfoProperties 2005/10/21 13:35:08 bm 1.1.2.12: enable FillBitmaps 2005/10/11 09:20:38 bm 1.1.2.11: license header change 2005/08/03 16:36:17 bm 1.1.2.10: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/06/10 18:20:27 iha 1.1.2.9: load gradients, hatches etc. correct (transport StyleNameMap) 2005/06/10 09:52:16 bm 1.1.2.8: property Encrypted is now UseCommonStoragePasswordEncryption 2005/06/08 08:49:48 bm 1.1.2.7: use storages in MediaDescriptor 2005/04/11 11:43:38 iha 1.1.2.6: enable oasis format 2004/09/21 15:54:00 iha 1.1.2.5: enable save 2004/09/03 17:17:15 iha 1.1.2.4: enable save 2004/06/03 09:31:42 bm 1.1.2.3: Embedding API changes 2004/04/27 14:27:42 bm 1.1.2.2: warnings removed 2004/03/02 09:24:59 bm 1.1.2.1: filter calling xmloff subfilter for chart im-/export


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [323b826f2990fe9893159d0afba921d2157ae2c1]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/04/26 09:53:58 bm 1.3.4.13: RESYNC: resolving merge problems 2007/02/22 17:00:17 ka 1.3.4.12: #i66558#: added VCLLIB and GOODIESLIB for preloading of graphics 2006/08/15 16:31:54 bm 1.3.4.11: get rid of tools library. In XMLFilter lib/urlobj.hxx was no longer needed. 2006/06/30 22:23:00 iha 1.3.4.10: correct 3D pie rotation: different default camera for pies 2005/10/07 11:49:15 bm 1.3.4.9: RESYNC: (1.3-1.4); FILE MERGED 2005/06/07 15:36:52 iha 1.3.4.8: offer SvNumberformatter via unotunnel 2005/04/11 11:58:47 iha 1.3.4.7: enable oasis format 2004/09/16 13:00:56 bm 1.3.4.6: API simplification 2004/09/03 17:12:01 iha 1.3.4.5: enable save - added SVLLIB for SvtSaveOptions 2004/03/19 14:32:53 bm 1.3.4.4: XDataSource now contains XLabeledDataSources 2004/03/02 09:30:28 bm 1.3.4.3: new lib filter 2004/02/18 10:04:44 iha 1.3.4.2: dependencies only for windows 2004/02/17 19:31:05 iha 1.3.4.1: indicate lib dependencies


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a70f7ad382205c3a7597447bd5d16b237befcf3f]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:49:04 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/04/11 10:04:51 iha 1.1.1.1.4.1: changed servicenames to avoid confusion with model services


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [02647791ce4c55dfc6e92867598afba386052944]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/12/15 13:34:13 iha 1.2.4.6: #i72360# use axis number format for data labels when one is provided 2005/10/07 11:48:53 bm 1.2.4.5: RESYNC: (1.2-1.3); FILE MERGED 2005/07/21 14:47:06 bm 1.2.4.4: support for number formats from data provider 2005/06/10 18:18:42 iha 1.2.4.3: removed comment 2005/06/08 11:30:25 iha 1.2.4.2: use number format key at API instead of string 2005/06/07 15:46:16 iha 1.2.4.1: use numberformatter from model


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4340f24b89a69e7f61a5ad57978024f94450d00e]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/12/15 13:34:57 iha 1.2.4.11: #i72360# use axis number format for data labels when one is provided 2006/12/01 18:35:52 iha 1.2.4.10: #68896# always save the explicit number format 2006/09/24 09:12:54 iha 1.2.4.9: #i61970# correct implementation of axis at 2006/04/10 12:25:08 iha 1.2.4.8: api restructure axis, grids, scales and increments 2006/03/12 01:26:57 iha 1.2.4.7: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/20 15:27:42 bm 1.2.4.6: make getShapeForCID an interface method of ExplicitValueProvider again 2005/10/07 11:48:42 bm 1.2.4.5: RESYNC: (1.2-1.3); FILE MERGED 2005/07/23 00:01:20 iha 1.2.4.4: include axis title sizes in diagram position to support old api and fileformat 2005/07/08 12:53:34 iha 1.2.4.3: provide and keep view as service only 2005/06/09 15:42:30 iha 1.2.4.2: support positions and sizes via view for old api wrapper 2004/04/26 11:43:45 iha 1.2.4.1: getExplicitValuesForMeter returns bool + added description


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fdc9a39e93701f01ef721738ffdbc317e999510f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/10/20 21:28:24 iha 1.1.2.11: implement selection of additional shapes 2006/03/12 01:26:21 iha 1.1.2.10: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/20 14:33:21 iha 1.1.2.9: move SchItemPool from controller to view lib -> ChartItemPool 2005/10/11 09:20:38 bm 1.1.2.8: license header change 2005/08/30 14:42:46 bm 1.1.2.7: +attachParentReferenceDevice, +getReferenceDevice 2005/07/13 15:21:55 iha 1.1.2.6: update draw model tables before use in view and dialogs 2005/07/08 12:52:14 iha 1.1.2.5: provide and keep view as service only 2005/07/05 15:32:11 iha 1.1.2.4: redefine diagram size 2005/06/10 18:18:23 iha 1.1.2.3: removed comment 2005/06/01 16:50:23 iha 1.1.2.2: export metafile 2005/05/31 19:10:59 iha 1.1.2.1: create view without controller


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9a7af9d96f113c163a9eeef4ac64f26f46d05589]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/20 14:31:04 iha 1.1.2.1: move SchItemPool from controller to view lib -> ChartItemPool


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [24fc8f5b44d592a7d41585f24d9ee7a68c73a286]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:37 bm 1.1.2.2: license header change 2005/04/11 09:03:21 iha 1.1.2.1: defines for servicenames for charttypes (fixed apply to 2nd axis again) Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a7af71320a7e5fad5b9c15983a58ff2572cdbc59]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/05/11 08:55:12 bm 1.1.1.1.4.7: the ChartModel service name is ChartDocument 2006/03/23 09:58:04 bm 1.1.1.1.4.6: helper component for text accessibility 2005/10/07 11:47:32 bm 1.1.1.1.4.5: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/07/08 14:58:33 iha 1.1.1.1.4.4: create and notify an accessible view 2005/05/31 18:31:36 iha 1.1.1.1.4.3: added service names for chart view 2004/04/07 21:47:44 iha 1.1.1.1.4.2: #i20344# added WizardDialog 2004/02/13 16:51:25 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [42bfd6c369fb356b6e90d694bff6d5afdb0351ed]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:47:23 bm 1.1.1.1.4.4: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/06/07 15:34:47 bm 1.1.1.1.4.3: show exception type in ASSERT_EXCEPTION 2004/04/27 13:32:42 iha 1.1.1.1.4.2: warnings removed 2004/03/04 08:55:36 bm 1.1.1.1.4.1: ASSERT_EXCEPTION: for pro-builds print the exception variable to avoid warning


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f9739b0e61292b6280426fe2ce9e3190794145d3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:37 bm 1.1.2.2: license header change 2005/08/11 16:02:17 bm 1.1.2.1: classes for internal data


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4ae34bb20177709b900f2c35aaddf340d97565d1]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:54 iha 1.1.2.6: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/06 13:40:29 iha 1.1.2.5: make WrappedPropertySet a MutexContainer 2006/02/02 14:36:08 iha 1.1.2.4: enable late init with inner propertyset 2005/10/11 09:20:36 bm 1.1.2.3: license header change 2005/07/15 13:32:28 iha 1.1.2.2: removed support if FastPropertySet at WrappedPropertySet as this is to errorprone due to mismatch of FastPropertyIds 2005/04/19 17:25:10 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [39de0458120704a5244f60479ca04d4a55ce77ac]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 01:00:14 iha 1.1.2.4: enlarge validity of area or line properties of data series to lifetime of new chartmodel 2005/10/11 09:20:36 bm 1.1.2.3: license header change 2005/07/14 15:32:56 iha 1.1.2.2: cleanup WrappedIgnoreProperty 2005/04/19 17:24:55 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [af8037b928c726e10030c688fbaae8564f13d5f0]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:36 bm 1.1.2.2: license header change 2005/07/14 15:27:29 iha 1.1.2.1: cleanup WrappedIgnoreProperty Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1f9e93b34a235eb52d6ee5d2352ad6e945fa65b3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/10/25 17:50:05 iha 1.1.2.1: cope with context dependent defaults from old chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f74a35b3bb3a4e89af17b3713f70061afc4fffb4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:35 bm 1.1.2.2: license header change 2005/07/05 16:41:20 bm 1.1.2.1: wrapped property which can have a different default value than the inner propertyset


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e60c21540514e94a15cf0a3c4f20e747b76248b3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/12/02 15:21:35 bm 1.1.2.4: +XSelectionChangeListener specialization 2005/11/15 17:16:16 bm 1.1.2.3: missing namespace 2005/11/15 13:33:45 bm 1.1.2.2: missing DTOR in WeakListenerAdapter 2005/11/14 17:24:04 bm 1.1.2.1: helper for adding listener objects as weak references to broadcasters


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ace0e78ed497637c4166450c70321b8e11b3bbfe]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/10 15:06:11 bm 1.1.2.6: #i67875# add undo for own data 2005/11/21 15:04:47 bm 1.1.2.5: implement modify listener to notify the undo dispatch about changes in the undo-/redo stack 2005/11/11 14:56:03 bm 1.1.2.4: canUndo/Redo for setting menu state 2005/11/04 14:50:00 bm 1.1.2.3: enable undo limitation according to config setting 2005/11/02 13:49:20 bm 1.1.2.2: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/10 12:14:00 bm 1.1.2.1: helper class for adding a model to the undo/redo stacks


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5f399de96b0c414e4b87e44d0674ab162cc74494]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/10 15:06:11 bm 1.1.2.3: #i67875# add undo for own data 2005/11/16 10:51:57 iha 1.1.2.2: don't call cancelAction twice 2005/11/15 18:06:26 iha 1.1.2.1: UndoGuard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [77c31b3b72ec2728e346936c2b5aa4524400f39a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/07/25 12:38:58 bm 1.1.2.11: #i64824# notify change in sequence length from internal data provider to uncached data sequence 2006/07/19 15:55:25 bm 1.1.2.10: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/04/05 11:43:20 bm 1.1.2.9: include XModifyBroadcaster (not only implement ...) 2006/04/04 15:58:50 bm 1.1.2.8: implement XModifyBroadcaster 2006/04/04 13:45:51 bm 1.1.2.7: add XModifyBroadcaster to DataSequence 2006/01/23 16:47:08 bm 1.1.2.6: member initialization order 2005/10/11 09:20:35 bm 1.1.2.5: license header change 2005/09/08 12:43:29 bm 1.1.2.4: +generateLabel 2005/08/18 14:07:28 bm 1.1.2.3: provide a CTOR with the Role 2005/08/15 09:30:03 bm 1.1.2.2: add an XDataProvider reference to ensure a long-enough life-time for the data sequences to work properly 2005/08/11 16:02:09 bm 1.1.2.1: classes for internal data


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [43e0eb1fdf71b9e0898f5b4085b00f984bb2731c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/25 17:12:21 iha 1.1.2.1: text- and diagram-size dependent auto main step width


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e46ce70ca91a90859709ba937a7e4357ad902710]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/08/03 13:44:56 bm 1.3.4.9: warning removed: comma in last enum entry 2006/01/24 10:53:56 bm 1.3.4.8: use ReferenceSizeProvider to adapt auto-scale settings for newly created objects 2005/12/21 21:29:15 iha 1.3.4.7: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/07 14:00:47 iha 1.3.4.6: remove dependendy from special title identifiers 2005/12/01 18:51:24 iha 1.3.4.5: create axis title with correct rotation default + don't mix x and y in barcharts 2005/10/07 11:46:57 bm 1.3.4.4: RESYNC: (1.3-1.4); FILE MERGED 2005/07/13 11:43:06 iha 1.3.4.3: added method getTitleType() 2004/05/26 16:26:56 bm 1.3.4.2: default font sizes adapted 2004/04/27 13:33:49 bm 1.3.4.1: +createTitle method for creating a title, if you only have an XDiagram (creation of main-title not possible there)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a4107f4ec0ca924726dde9d6bb38ea56645485d0]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/03 08:02:34 iha 1.1.2.23: #i76842# warning for scale tabpage when min > max 2007/03/19 15:13:39 bm 1.1.2.22: #i75403# Use strings from resource for row and column labels 2007/02/09 12:26:08 bm 1.1.2.21: #i72841# +STR_ACTION_NOTPOSSIBLE for message box that pops up when a non-deleteable object gets a delete-request 2007/01/08 14:07:43 bm 1.1.2.20: #i73221# include guard added 2006/12/11 15:45:58 bm 1.1.2.19: -STR_DATA_NEW_SERIES, +STR_DATA_UNNAMED_SERIES_WITH_INDEX 2006/12/08 19:03:08 iha 1.1.2.18: corrected title of roadmap in wizard 2006/12/05 23:41:55 iha 1.1.2.17: #i71675# enable set data label range for xy charts 2006/11/01 17:45:46 iha 1.1.2.16: cleanup resources: no hardcoded quotes 2006/11/01 15:35:32 iha 1.1.2.15: cleanup resources + changed variable names according to style guide 2006/10/27 18:42:21 iha 1.1.2.14: added warnings STR_STEP_GT_ZERO and STR_BAD_LOGARITHM tp scale tab page + remove unused code 2006/10/27 15:31:47 iha 1.1.2.13: name consolidation 2006/10/27 15:17:11 iha 1.1.2.12: name consolidation 2006/10/27 15:02:48 iha 1.1.2.11: name consolidation 2006/10/27 14:59:05 iha 1.1.2.10: name consolidation 2006/10/21 12:14:27 iha 1.1.2.9: name consolidation 2006/10/21 11:03:55 iha 1.1.2.8: removed string STR_GRIDLINES use TR_OBJECT_GRIDS instead 2006/07/19 15:51:05 bm 1.1.2.7: #i64824# +STR_DATA_ROLE_CATEGORIES for the role categories in the data dialog 2006/05/29 17:54:13 iha 1.1.2.6: replaced STR_OBJECT_SOURCE_DATA by STR_OBJECT_DATA_RANGE 2006/01/14 14:55:51 iha 1.1.2.5: Custom entry for 3D View scheme listbox 2006/01/13 15:05:04 bm 1.1.2.4: +STR_ACTION_REARRANGE_CHART (94) 2006/01/12 17:56:25 iha 1.1.2.3: change name of wizard step 4 according to spec 2005/11/29 18:36:38 bm 1.1.2.2: SchResId may return an OUString, ResIdHelper offers replacement method for OUString 2005/11/29 16:32:51 bm 1.1.2.1: moved here from controller/inc


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [91762b7a85893c61c44b845e2711ecc3e161c898]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:35 bm 1.1.2.3: license header change 2004/09/16 11:37:53 bm 1.1.2.2: API simplification 2004/09/15 12:06:04 bm 1.1.2.1: replacement for API StackMode enum


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1a5c0fa78c925a9eadad17aff9bc1c1fa2a0f7cb]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:35 bm 1.1.2.2: license header change 2004/05/07 13:42:18 bm 1.1.2.1: properties for a 3d scene


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [74cfd217f8f490973959083f2ba958797674b0b2]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2006/04/05 11:13:12 bm 1.3.12.1: make Scalings available via factory


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4baf7dee871c4a893944b1ea6eeeb04e3c3d2b2d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 15:53:27 bm 1.1.2.2: #i74635# some adaptions for ResMgr cleanup 2005/11/29 17:25:41 bm 1.1.2.1: provide ResMgr singleton (was in controller/inc/ViewSingletons.hxx before)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [099c559413c5b90d79cdfbb42f4c8dce8c45fbf6]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/11/29 18:36:38 bm 1.1.2.2: SchResId may return an OUString, ResIdHelper offers replacement method for OUString 2005/11/29 17:20:08 bm 1.1.2.1: moved here from controller/inc


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7011a3c745a9b25384501ac35efb4a23304e71af]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2006/01/20 16:49:17 bm 1.3.12.1: adaptFontSizes: pass target properties as const Reference to allow temporaries


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [00ded4d6c488d920a9d19b52efefc05d7c5b9ff6]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/05/02 11:12:52 bm 1.1.2.6: #i62831# +moveObject with check for out-of-bounds 2006/05/02 08:51:13 bm 1.1.2.5: +getReanchoredPosition 2006/02/23 17:35:23 bm 1.1.2.4: +centerGrow 2005/12/01 16:39:54 iha 1.1.2.3: #124571# load & save position of rotated titles correctly 2005/10/11 09:20:35 bm 1.1.2.2: license header change 2004/09/17 17:21:41 iha 1.1.2.1: correct positions for titles also after move


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2eb18caa5a8c35cb1d58f3f8e21eeb60f8ced776]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/06/07 14:52:05 bm 1.5.4.9: #124497# +getMeanValueLine 2006/03/29 22:24:44 iha 1.5.4.8: restructure legend entry creation + legend entries in data labels 2006/02/28 12:36:17 bm 1.5.4.7: +isMeanValueLine 2005/10/07 11:45:20 bm 1.5.4.6: RESYNC: (1.5-1.6); FILE MERGED 2005/05/09 09:51:05 bm 1.5.4.5: moved parts of API to data namespace 2005/04/11 10:08:37 iha 1.5.4.4: add methods addRegressionCurve() removeAllExceptMeanValueLine() and getFirstCurveNotMeanValueLine() 2004/04/28 11:51:26 bm 1.5.4.3: superfluous class name in method declaration 2004/04/14 09:40:01 iha 1.5.4.2: domain-x -> values-x 2004/02/13 16:51:24 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7d74179c0c7c2a0e513647a4b497294d79d92aa7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/01/24 10:21:20 bm 1.1.2.1: Helper for Reference(Diagram|Page)Size setting and retrieving. Includes former functionality of AutoResizeHelper


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8a283b072d9a2912494489966bcd08678ad5e816]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/12/21 21:29:14 iha 1.1.2.2: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/02 15:20:33 bm 1.1.2.1: component implementing range highlighting


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5a15e4288bc0207e3882bfa82786255cf6c9cd38]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 11:45:10 bm 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/08/11 16:01:12 bm 1.2.4.5: PropertyValueNameEquals and PropertyLess enabled 2005/08/03 16:36:17 bm 1.2.4.4: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/12 12:57:06 bm 1.2.4.3: use named properties for gradients etc. in chart model 2005/07/11 12:57:43 bm 1.2.4.2: functions to add named properties into the corresponding tables with unique names 2004/02/13 16:51:24 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a0d31700cff8ba9a135311460f1b40f25a41b186]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/09/19 16:46:31 bm 1.1.2.6: #i67808# offer a way to get the title type of a CID (publicly) 2006/04/10 12:25:08 iha 1.1.2.5: api restructure axis, grids, scales and increments 2006/03/19 10:39:54 iha 1.1.2.4: reselect pie and donut segments after dragging 2006/02/28 12:09:12 bm 1.1.2.3: ObjectIdentifier::getIndexFromParticle => ObjectIdentifier::getIndexFromParticleOrCID 2006/02/20 09:18:28 bm 1.1.2.2: getObjectPropertySet also with XChartDocument as parameter 2005/12/21 21:28:02 iha 1.1.2.1: remove identifiers from model objects and create an index based CID protocol instead for selection purposes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1d24b403d51b2d4f83061fbde61a24f649bee2d0]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/11/15 15:30:27 bm 1.2.4.6: garbage collection, disposing, reference release issues 2005/11/03 13:38:45 bm 1.2.4.5: do not notify change to parent object in _NoBroadcast method 2005/11/03 11:57:03 bm 1.2.4.4: +firePropertyChangeEvent for notifying property changes 2005/10/07 11:44:17 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/09/23 15:24:10 iha 1.2.4.2: #i55000# crash caused by dead reference to mutex 2005/03/30 16:31:05 bm 1.2.4.1: make model cloneable (+first undo implementation)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [30100d742d230d11b18a71ac10d4a2a4093780d5]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:34 bm 1.1.2.3: license header change 2004/04/30 15:48:24 bm 1.1.2.2: some comments added 2004/04/30 15:31:48 bm 1.1.2.1: Avoid Warning if this is used in the CTOR base-initializer list This warning appears on Windows (Warning 4355) esp. for Dialog classes where all controls have to be initialized in the base-initializer list and have to get this as parameter Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3dbe78a6fe4494942dbc75bf9340d893e06526c7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:34 bm 1.1.2.2: license header change 2005/04/19 17:24:06 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset) Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1886e1699b715a6a2ac8c78775e6e4953fe5b512]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:34 bm 1.1.2.4: license header change 2005/07/12 12:57:06 bm 1.1.2.3: use named properties for gradients etc. in chart model 2005/04/19 17:23:17 iha 1.1.2.2: improved old api support (introduced wrappedpropertyset ...) 2004/06/04 07:52:46 bm 1.1.2.1: handling named properties like FillGradientName (coming from XML)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [245c359fe02a9968234732f145b50d2c95e9601d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:34 bm 1.1.2.5: license header change 2005/07/12 12:57:06 bm 1.1.2.4: use named properties for gradients etc. in chart model 2005/04/19 17:23:16 iha 1.1.2.3: improved old api support (introduced wrappedpropertyset ...) 2004/09/27 17:09:01 iha 1.1.2.2: added NamedFillProperties::GetPropertyNameForHandle 2004/06/04 07:52:34 bm 1.1.2.1: handling named properties like FillGradientName (coming from XML)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3a08072c5b71fa264b320fd32d6a55bc2dae944f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/07/07 13:47:31 bm 1.1.2.4: don't implement the private default CTOR 2005/10/11 09:20:33 bm 1.1.2.3: license header change 2005/07/08 16:44:36 bm 1.1.2.2: support XCloneable 2005/05/31 18:26:02 iha 1.1.2.1: name container for gradient lists etc. Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c8dce75fe1b6926003b02351cfb440fd3bd6cd4e]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:43:30 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/02/13 16:51:24 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c75b7f94c6e903f960b7148ca4576b42b530aed5]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/11/14 17:25:14 bm 1.1.2.7: use weak references for listening 2005/11/11 15:02:16 bm 1.1.2.6: implement XComponent 2005/11/09 09:19:32 bm 1.1.2.5: give containers as const reference to helper functions to allow temporaries 2005/11/08 16:08:11 bm 1.1.2.4: update mechanism for old API wrapper. Todo: implement for all objects and especially for chartdocument 2005/10/25 09:26:10 bm 1.1.2.3: wrong typename keywords 2005/10/25 09:20:41 bm 1.1.2.2: missing namespaces 2005/10/14 14:42:23 bm 1.1.2.1: helper for notifying model changes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b29996eff534e8481d685331e012e8d33bc84c1d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/06/18 07:02:39 bm 1.1.2.1: helping class for listening at XModifyBroadcaster


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4279f15b149f5ab13e34fd2ba67592fc3a32b643]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/11/29 18:07:55 iha 1.1.1.1.4.5: #i58464# work around wrong writer ranges in file 2005/10/07 11:43:02 bm 1.1.1.1.4.4: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/09/03 17:08:58 iha 1.1.1.1.4.3: enable save - add OutputStream 2004/03/19 14:32:52 bm 1.1.1.1.4.2: XDataSource now contains XLabeledDataSources 2004/03/02 09:38:00 bm 1.1.1.1.4.1: type of URL property was wrong


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e0c028d36628060abe9fd498064f41fb1bb7f907]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/04/10 12:25:08 iha 1.1.4.6: api restructure axis, grids, scales and increments 2005/10/07 11:42:09 bm 1.1.4.5: RESYNC: (1.1-1.2); FILE MERGED 2005/07/14 12:32:50 iha 1.1.4.4: remove unused parameter 'bIncludeStyleProperties' 2005/07/14 11:33:17 iha 1.1.4.3: use identical fast-property-IDs for lineproperties everywhere 2005/07/12 12:57:06 bm 1.1.4.2: use named properties for gradients etc. in chart model 2004/02/13 16:51:24 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [06697f1a454f2efd71571a278a3694a9d5bc86f2]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 11:41:53 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/08/25 16:24:10 bm 1.2.4.2: #124570# CloseVetoException was passed as Exception to function before throw, which discarded the type. This violated the throw specification later that only allows the CloseVetoException 2004/04/26 11:42:14 iha 1.2.4.1: corrected comment


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7de8cdc8ce81b84a2b7ae10fd5b0efb5fbd0b4a6]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/10/16 15:38:32 bm 1.5.4.5: #i70287# +hasLegend (used by toolbar toggle legend command) 2005/12/21 21:29:14 iha 1.5.4.4: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/07 11:41:36 bm 1.5.4.3: RESYNC: (1.5-1.6); FILE MERGED 2005/06/16 12:52:49 iha 1.5.4.2: create legend on demand 2004/09/16 14:43:48 iha 1.5.4.1: implement api redesign


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b2aa75b7437626eb35cb9c572e03bf0e7502cdb2]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/04/05 11:43:20 bm 1.1.2.8: include XModifyBroadcaster (not only implement ...) 2006/04/04 15:58:50 bm 1.1.2.7: implement XModifyBroadcaster 2005/10/11 09:20:33 bm 1.1.2.6: license header change 2005/05/27 12:21:08 bm 1.1.2.5: offer LabeledDataSequence as service 2005/05/09 09:51:04 bm 1.1.2.4: moved parts of API to data namespace 2004/04/15 17:26:53 bm 1.1.2.3: cloning for data sequences 2004/03/19 14:32:52 bm 1.1.2.2: XDataSource now contains XLabeledDataSources 2004/03/12 10:40:48 bm 1.1.2.1: core object for XLabeledDataSequence


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [830c4d01bf1d896632af6c057e55299928e9e9af]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/14 16:30:15 bm 1.1.2.10: #i72340# allow swapping rows 2007/02/09 17:29:18 bm 1.1.2.9: XChartDocument::createInternalDataProvider() works like expected now 2006/11/10 15:06:11 bm 1.1.2.8: #i67875# add undo for own data 2006/07/19 15:55:25 bm 1.1.2.7: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2005/10/29 15:41:31 iha 1.1.2.6: support SequenceMapping also for chart local data 2005/10/11 09:20:33 bm 1.1.2.5: license header change 2005/09/08 11:36:39 iha 1.1.2.4: set data provider and number formatter in the filter and not in the model load methods thus binary loading also gets the correct dataprovider and numberformatter 2005/08/18 14:08:04 bm 1.1.2.3: provide a CTOR with another XChartDataArray to copy 2005/08/17 16:54:46 bm 1.1.2.2: keep data row source away from InternalData class / support XCloneable 2005/08/11 16:01:59 bm 1.1.2.1: classes for internal data


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a1376f19c88a905fa2f0547c8175f4584239c567]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/29 22:20:41 iha 1.1.2.1: restructure legend entry creation + legend entries in data labels


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [30bbc6317dfff8f816a9e443ab6d5b1c7466090b]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/10/20 20:30:55 iha 1.1.4.8: implement gradient step count 2005/10/07 11:41:06 bm 1.1.4.7: RESYNC: (1.1-1.2); FILE MERGED 2005/07/14 14:42:44 iha 1.1.4.6: cleanup Fillproperties 2005/07/14 12:32:49 iha 1.1.4.5: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:57:06 bm 1.1.4.4: use named properties for gradients etc. in chart model 2005/06/16 07:56:48 iha 1.1.4.3: added missing Property FillBackground 2005/06/15 18:17:25 iha 1.1.4.2: correct name for Property FillTransparenceGradient + added comments 2004/02/13 16:51:23 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7c776fbaff8d0e2e05b39b20f978918c643ceb1b]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2005/10/07 11:40:48 bm 1.1.4.12: RESYNC: (1.1-1.2); FILE MERGED 2005/07/14 14:42:44 iha 1.1.4.11: cleanup Fillproperties 2005/07/14 12:03:41 iha 1.1.4.10: use identical fast-property-IDs for lineproperties everywhere 2005/07/12 12:57:05 bm 1.1.4.9: use named properties for gradients etc. in chart model 2005/07/04 08:38:32 iha 1.1.4.8: offer stock properties 'Volume' and 'UpDown' 2005/06/22 08:14:24 iha 1.1.4.7: support property DataCaption at diagram, series and data point 2005/06/17 20:13:24 iha 1.1.4.6: support spline propeties 2005/05/09 16:32:47 iha 1.1.4.5: added support for property Symboltype 2005/04/22 18:50:08 iha 1.1.4.4: old api support - statistic properties 2005/04/19 17:23:16 iha 1.1.4.3: improved old api support (introduced wrappedpropertyset ...) 2004/06/04 08:05:53 bm 1.1.4.2: named fill and line properties 2004/05/07 13:45:34 bm 1.1.4.1: +SceneProperties


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2c16f17af2806458568cedc02f4cb2764dacc9af]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/02 11:16:27 bm 1.1.2.2: #i27352# implement quick help 2006/08/02 10:19:29 bm 1.1.2.1: moved here from view/axes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [95d7617abbb337e647a25b88a9a79dde3ce1d5e4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/12 17:17:52 bm 1.1.2.1: helper for adding as XEventListener to multiple objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8b11ae67e1cc1995ab1a23ad1d322612aeba8e9a]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/06/26 12:34:15 bm 1.2.4.6: #i66692# offer regression curves and error bars via service manager 2005/12/21 21:29:13 iha 1.2.4.5: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/07 17:12:42 bm 1.2.4.4: some missing notifications added 2005/10/11 12:52:29 bm 1.2.4.3: #i27351# implement XCloneable for Undo 2005/10/07 11:40:21 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/02/13 16:51:23 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [41aff1049e99b00429a802a565a8babf8186b62f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/11/15 17:17:09 bm 1.1.2.3: typename missing 2005/11/11 15:00:45 bm 1.1.2.2: include algorithm (for_each) 2005/11/11 14:55:21 bm 1.1.2.1: helper for disposing objects or containers of objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e43817cde3b5804a155677a7da951e7830872d5e]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/04/20 08:08:49 iha 1.2.4.51: #i75393# Connect Bars per diagram not per series 2007/04/19 16:10:53 iha 1.2.4.50: #i76130# write attribute sort-by-x-values per plot-area not per series 2007/03/01 13:54:29 iha 1.2.4.49: #i71167 & i74564# keep charttype properties if possible when switching charttypes 2007/02/09 17:29:18 bm 1.2.4.48: XChartDocument::createInternalDataProvider() works like expected now 2007/01/10 12:39:25 bm 1.2.4.47: extra qualifier removed 2006/12/07 23:17:54 iha 1.2.4.46: #i67833# simple 3D look - bring light to front 2006/08/21 16:13:59 iha 1.2.4.45: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/08/09 17:40:26 iha 1.2.4.44: #i63017# disable/enable menu Format->Arrangement 2006/06/30 22:20:19 iha 1.2.4.43: correct 3D pie rotation: different default camera for pies 2006/06/24 18:30:02 iha 1.2.4.42: don't show wall nor floor for pies and donuts until older files can be detected 2006/06/18 19:27:41 iha 1.2.4.41: implement camera distance 2006/06/09 15:30:20 iha 1.2.4.40: concentrated helping method for getting and setting rotation of diagram - don't touch the camera rotation but take it into account 2006/04/22 11:12:44 iha 1.2.4.39: park unused categories in scale with AxisType not being CATEGORY 2006/04/10 12:25:08 iha 1.2.4.38: api restructure axis, grids, scales and increments 2006/01/16 12:08:57 bm 1.2.4.37: also reset diagram rotation in rearrange function 2005/12/21 21:29:13 iha 1.2.4.36: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/28 15:35:40 bm 1.2.4.35: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/23 15:14:04 iha 1.2.4.34: support BarOverlap and GapWidth 2005/11/08 14:55:50 iha 1.2.4.33: set and remove categories also to and from secondary scales 2005/11/07 20:55:47 iha 1.2.4.32: implement changing series order 2005/11/02 19:16:18 iha 1.2.4.31: enable load of stock chart with japanese boxes 2005/11/02 16:09:43 bm 1.2.4.30: removed unused function getInterpretedDataFromDiagram 2005/11/02 13:49:20 bm 1.2.4.29: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/11/01 13:05:56 iha 1.2.4.28: support sequence mapping 2005/10/24 11:06:40 iha 1.2.4.27: coordinate system restructure 2005/10/13 17:38:50 iha 1.2.4.26: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 12:51:23 bm 1.2.4.25: +removeUnusedCoordinateSystems 2005/10/07 11:40:06 bm 1.2.4.24: RESYNC: (1.2-1.3); FILE MERGED 2005/09/22 16:56:15 iha 1.2.4.23: automatic categories for pie legend 2005/09/16 16:50:10 iha 1.2.4.22: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/07/14 14:51:10 bm 1.2.4.21: function for creating dummy categories (preliminary, not localized yet) 2005/05/09 09:51:04 bm 1.2.4.20: moved parts of API to data namespace 2005/05/04 12:51:51 iha 1.2.4.19: added methods isSeriesAttachedToMainAxis(), attachSeriesToAxis(), getChartTypeOfSeries(), getCoordinateSystemOfChartType(), clearCoordinateSystem() 2005/04/19 14:34:07 bm 1.2.4.18: +getScaleHoldingCategoriesFromDiagram 2005/04/11 11:32:45 iha 1.2.4.17: changed parameter for methods set/getVertical() for old api 2004/09/20 17:25:48 bm 1.2.4.16: add parameter to setStackMode that only sets the mode at the first chart-type 2004/09/16 14:43:48 iha 1.2.4.15: implement api redesign 2004/09/16 12:21:56 bm 1.2.4.14: API simplification 2004/09/15 17:06:29 bm 1.2.4.13: +getStackModeFromChartType 2004/09/15 14:32:04 iha 1.2.4.12: implement api redesign 2004/09/15 14:30:19 bm 1.2.4.11: API simplification 2004/09/15 11:48:43 iha 1.2.4.10: implement api redesign 2004/09/15 11:21:11 bm 1.2.4.9: API simplification 2004/06/29 12:42:44 bm 1.2.4.8: +getInterpretedDataFromDiagram 2004/05/27 17:28:26 bm 1.2.4.7: +bTreatBarsAsVertical flag in get/setVertical methods 2004/05/13 09:51:53 bm 1.2.4.6: getTemplateForDiagram() supports a parameter rPreferredTemplateName for faster access in case the template didn't change 2004/04/01 16:03:01 bm 1.2.4.5: some more fixes for setDimension() for old API 2004/04/01 10:48:41 bm 1.2.4.4: +functions to get/set the SwapXAndYAxis property at coordinate-systems 2004/03/24 19:05:23 bm 1.2.4.3: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/24 10:35:14 bm 1.2.4.2: +getTemplateNameForDiagram 2004/02/13 16:51:23 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [77b1ea4ac535f9a16b4f852596e4061238526900]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/17 16:32:42 bm 1.1.2.15: in ChartModel::setParent migrate the data from one data provider to the new one, if it is the same implementation and no temporary document. This is needed for solving the current clipboard problems 2006/03/17 13:27:50 bm 1.1.2.14: +allArgumentsForRectRangeDetected 2005/12/02 15:22:52 bm 1.1.2.13: +getUsedDataRanges for XDiagram, +getRangesFromLabeledDataSequence, +getRangesFromDataSource 2005/11/01 13:08:40 iha 1.1.2.12: support sequence mapping 2005/10/27 17:44:23 iha 1.1.2.11: support SequenceMapping 2005/10/25 16:25:55 iha 1.1.2.10: support SequenceMapping 2005/10/11 09:20:33 bm 1.1.2.9: license header change 2005/08/19 15:27:54 bm 1.1.2.8: GetUsedData for XChartDocument 2005/07/29 14:54:57 bm 1.1.2.7: detectRangeSegmentation: allow including unused data for calculation of data range 2005/05/27 12:20:52 bm 1.1.2.6: +getUsedDataRanges 2005/05/12 13:56:40 bm 1.1.2.5: API change XDataProvider 2005/05/09 09:51:04 bm 1.1.2.4: moved parts of API to data namespace 2005/04/04 16:12:06 iha 1.1.2.3: added helping methods for ranges 2004/06/29 12:46:35 bm 1.1.2.2: -getRangeIdentifiers +addRangeRepresentationsFromLabeledDataSequence (was local before as helper for the above) 2004/05/07 16:26:10 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [713806a9720a213d67ae00db9e94f6a09f316d16]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE ADDED 2005/10/11 09:20:32 bm 1.1.4.5: license header change 2005/06/20 14:36:08 bm 1.1.4.4: DataSource may be created via factory 2005/05/09 09:51:03 bm 1.1.4.3: moved parts of API to data namespace 2004/03/19 14:32:52 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:22 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2526bfb8ce908c2e1c6c1be95ad03c03effc6774]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2007/02/24 10:38:07 iha 1.1.4.25: #i74648# also change attributed data points 2007/02/23 18:07:28 iha 1.1.4.24: #i74655# symbols lost when switching smooth lines 2007/02/09 12:29:20 bm 1.1.4.23: #i72841# move deleteSeries functionality here from source/controller/dialog/DialogModel.cxx 2006/08/02 11:16:26 bm 1.1.4.22: #i27352# implement quick help 2006/07/25 16:46:03 bm 1.1.4.21: #i64824# handle number formats in the data browser 2006/04/10 12:25:07 iha 1.1.4.20: api restructure axis, grids, scales and increments 2005/12/21 21:29:12 iha 1.1.4.19: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/02 19:18:55 iha 1.1.4.18: added helping method SetRole() 2005/11/01 13:07:42 iha 1.1.4.17: support sequence mapping 2005/10/27 17:43:25 iha 1.1.4.16: support autogenerated label 2005/10/13 17:38:49 iha 1.1.4.15: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:39:49 bm 1.1.4.14: RESYNC: (1.1-1.2); FILE MERGED 2005/07/22 11:16:07 bm 1.1.4.13: comment fixed 2005/07/22 11:14:13 bm 1.1.4.12: comment added 2005/05/09 09:51:02 bm 1.1.4.11: moved parts of API to data namespace 2005/05/03 16:51:04 bm 1.1.4.10: XDataProvider, XDataSequence: RangeIdentifiers removed 2004/09/17 10:52:49 bm 1.1.4.9: API simplification 2004/09/15 09:59:31 iha 1.1.4.8: removed unused code 2004/09/15 09:55:02 iha 1.1.4.7: implement api redesign 2004/09/15 09:49:40 bm 1.1.4.6: API simplification 2004/05/07 15:36:50 bm 1.1.4.5: legend-entries: use TextualDataSequence if available 2004/04/27 13:41:49 bm 1.1.4.4: +createUniqueSeriesId that calculates a yet unused id +getDataSeriesIdentifier convenience to get the Identifier property of a series 2004/03/29 13:28:45 bm 1.1.4.3: XDataSource: getSourceRangeRepresentation -> getSourceIdentifier 2004/03/19 14:32:51 bm 1.1.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:22 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [357bd3ce20803b313a948fe88b970f478a8777a6]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/11/03 16:14:43 bm 1.1.2.2: +ControllerLockHelper 2005/10/18 12:39:21 bm 1.1.2.1: class that locks controllers of a model in CTOR an unlocks in DTOR


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f3d23f1eb058fbc7d29009842fe1d5140bbad8fb]

INTEGRATION: CWS chart2mst3 (1.2.12); FILE MERGED 2006/01/27 09:51:21 bm 1.2.12.1: InlineContainer.hxx moved to comphelper


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8e1ea8e2d8e22d9e10ba943787c7b7db5d0b2a57]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:32 bm 1.1.2.3: license header change 2005/08/05 16:12:08 bm 1.1.2.2: missing typename specifier 2005/08/03 16:20:17 bm 1.1.2.1: algohelper split up


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8c32352e728f0a956df4b511fbd308db37ded69d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/11/04 14:40:18 bm 1.1.2.1: helper interface for listeners for config items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [be08fe0ee4e58d6e3bf6cb542d0b931050d37311]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/11/04 14:49:30 bm 1.1.2.4: ConfigItemListener has its own header now 2005/10/11 09:20:32 bm 1.1.2.3: license header change 2005/08/12 13:00:40 bm 1.1.2.2: return type forgotten 2005/07/28 09:35:54 bm 1.1.2.1: color scheme that reads the default colors from the configuration


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cedf218b4abeb53d713eeb1a754872ce162edc9c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:32 bm 1.1.2.2: license header change 2005/08/03 16:20:06 bm 1.1.2.1: algohelper split up


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9fad1d528e72c34a1bb44a4f15a5aa5edd298e5a]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2006/11/26 13:07:53 iha 1.6.4.21: method Direction3DToB3DPoin 2006/11/22 17:24:57 iha 1.6.4.20: RESYNC: (1.7-1.8); FILE MERGED 2006/11/01 15:35:32 iha 1.6.4.19: cleanup resources + changed variable names according to style guide 2006/10/20 20:32:24 iha 1.6.4.18: implement gradient step count 2006/09/29 15:00:07 iha 1.6.4.17: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/09/24 09:12:54 iha 1.6.4.16: #i61970# correct implementation of axis at 2006/08/02 11:36:18 bm 1.6.4.15: typename keyword missing 2006/08/01 08:58:12 bm 1.6.4.14: +FlattenVector to convert a vector of vector of T to a vector of T 2005/10/07 11:39:18 bm 1.6.4.13: RESYNC: (1.6-1.7); FILE MERGED 2005/08/03 16:19:01 bm 1.6.4.12: -ContainerToSequence: see ContainerHelper for this function now 2005/07/23 00:01:20 iha 1.6.4.11: include axis title sizes in diagram position to support old api and fileformat 2005/05/09 09:51:00 bm 1.6.4.10: moved parts of API to data namespace 2004/06/07 17:51:27 iha 1.6.4.9: added  Direction3DToVector3D 2004/05/05 16:00:40 iha 1.6.4.8: added Vector3DToPosition3D 2004/04/07 14:33:20 bm 1.6.4.7: +ContainerToSequence 2004/03/19 14:32:51 bm 1.6.4.6: XDataSource now contains XLabeledDataSources 2004/03/11 09:38:05 iha 1.6.4.5: added operator+ for Direction3D 2004/02/29 10:20:04 iha 1.6.4.4: added Position3DToAWTPoint + Direction3DToAWTSize 2004/02/23 19:08:07 iha 1.6.4.3: do not convert something wrong to number - functionality not needed anymore 2004/02/20 17:33:49 iha 1.6.4.2: added method DataSequenceToStringSequence for categories at axes 2004/02/13 16:51:22 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3a97d04cc454ab1bc7a203a8e7bc541ce1af298f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:32 bm 1.1.2.3: license header change 2005/08/03 16:36:16 bm 1.1.2.2: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2004/07/01 13:35:52 iha 1.1.2.1: helper for pie chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [46f187aec8ef1d7a498fbe034ae20f598dfb9b77]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:31 bm 1.1.2.3: license header change 2005/08/12 13:02:30 bm 1.1.2.2: some includes missing 2005/08/03 16:20:27 bm 1.1.2.1: algohelper split up


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9e0672c68674f7544df8dea379eb2ec9744c1e49]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 01:29:11 iha 1.1.2.1: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3c4808e13438e2f259c943845dfa5acb402baa2c]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2005/11/28 15:35:40 bm 1.6.4.7: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/23 15:13:12 iha 1.6.4.6: support BarOverlap and GapWidth 2005/10/07 11:39:06 bm 1.6.4.5: RESYNC: (1.6-1.7); FILE MERGED 2005/09/16 16:50:10 iha 1.6.4.4: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2004/09/17 12:20:47 iha 1.6.4.3: implement api redesign - dimension property 2004/09/17 11:38:14 iha 1.6.4.2: implement api redesign - dimension property 2004/02/13 16:51:21 bm 1.6.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [10dd6377dc46257728bb057f21208b6ddab2ab33]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/02/09 17:29:18 bm 1.4.4.11: XChartDocument::createInternalDataProvider() works like expected now 2006/01/23 17:40:13 bm 1.4.4.10: offer findDiagram also for an XChartDocument 2005/12/21 21:29:12 iha 1.4.4.9: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/13 17:38:48 iha 1.4.4.8: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:38:55 bm 1.4.4.7: RESYNC: (1.4-1.5); FILE MERGED 2005/05/31 18:29:04 iha 1.4.4.6: add methods get/setPageSize 2004/09/16 14:43:48 iha 1.4.4.5: implement api redesign 2004/09/16 08:26:59 iha 1.4.4.4: implement api redesign 2004/09/15 08:25:24 iha 1.4.4.3: implement api redesign 2004/03/19 10:55:20 iha 1.4.4.2: removed getScaleGroupOfSeries again - use getParentOfNode instead 2004/03/18 16:19:42 iha 1.4.4.1: added method getScaleGroupOfSeries


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8df268ef3304cf9ff0bbb952ca034cff0d0be902]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:31 bm 1.1.2.4: license header change 2004/09/20 14:37:10 bm 1.1.2.3: some more debug code 2004/09/17 16:25:12 bm 1.1.2.2: improved 2004/09/17 13:46:41 bm 1.1.2.1: helper for showing OSL_TRACES about objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [eeb3087d8a93a859172add190b025fc7e5fce700]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/02/20 09:14:24 bm 1.1.4.5: +helper function to get a FontDescriptor from properties 2005/10/07 11:38:42 bm 1.1.4.4: RESYNC: (1.1-1.2); FILE MERGED 2005/07/14 12:45:40 iha 1.1.4.3: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/04/19 17:23:16 iha 1.1.4.2: improved old api support (introduced wrappedpropertyset ...) 2004/02/13 16:51:21 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ed08da4bdf791ab846bf7fccbcd22f1d88a22d6d]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/04/05 11:43:19 bm 1.2.4.17: include XModifyBroadcaster (not only implement ...) 2006/04/04 15:58:50 bm 1.2.4.16: implement XModifyBroadcaster 2006/04/04 13:45:50 bm 1.2.4.15: add XModifyBroadcaster to DataSequence 2005/10/07 11:38:29 bm 1.2.4.14: RESYNC: (1.2-1.3); FILE MERGED 2005/09/08 12:42:45 bm 1.2.4.13: +generateLabel 2005/08/05 13:58:30 bm 1.2.4.12: -XDataSequence::generateLabel 2005/07/21 14:47:04 bm 1.2.4.11: support for number formats from data provider 2005/05/09 09:50:58 bm 1.2.4.10: moved parts of API to data namespace 2005/05/03 16:51:04 bm 1.2.4.9: XDataProvider, XDataSequence: RangeIdentifiers removed 2004/06/03 10:11:55 iha 1.2.4.8: added missing interface method 'generateLabel' 2004/04/15 17:26:53 bm 1.2.4.7: cloning for data sequences 2004/04/05 14:12:24 bm 1.2.4.6: XDataProvider API changed 2004/03/29 13:27:15 bm 1.2.4.5: -label / getSourceRangeRepresentation -> getSourceIdentifier 2004/03/24 10:44:20 bm 1.2.4.4: +CTOR with a single string (for the typical "label-case") 2004/03/19 14:32:51 bm 1.2.4.3: XDataSource now contains XLabeledDataSources 2004/03/09 13:01:55 bm 1.2.4.2: XTextualDataSequence and XNumericalDataSequence are no longer derived from XDataSequence 2004/02/13 16:51:20 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c9d91e75c74c0a4aaa4cfbb39c8b291080cff6b4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/26 12:59:22 iha 1.1.2.6: performance: avoid unnecessary clipping 2006/11/09 15:31:37 iha 1.1.2.5: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/08/10 15:43:42 iha 1.1.2.4: additional conversion from basegfx to UNO types 2006/06/23 15:10:59 iha 1.1.2.3: added helping methods for rotation 2006/06/09 14:44:42 iha 1.1.2.2: added conversions from/to B3DVector to/from Direction3D and Position3D 2005/11/02 12:13:01 bm 1.1.2.1: helper functions for basegfx matrix etc.


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [854bda7ac8e5eb517e909a792fe59983ca090291]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/24 11:06:12 iha 1.1.2.1: coordinate system restructure


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4f607b8e4b877d2dbb74f5aa24e6c4d24d192e01]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/10/13 09:31:36 iha 1.1.2.4: #i66856# correct sourceformat for x axis 2006/10/10 08:46:46 iha 1.1.2.3: remove explicit scaling for category axis and pie axis 2006/04/10 18:32:11 iha 1.1.2.2: api restructure axis, grids, scales and increments 2006/04/10 15:00:24 iha 1.1.2.1: api restructure axis, grids, scales and increments


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [aef8d984089cd831325191aee3c513cc672e6a2a]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/10/06 09:11:07 bm 1.5.4.14: #i64500# clipboard for chart objects 2006/08/22 17:31:54 bm 1.5.4.13: #i68861# implement the status bar 2006/06/29 13:54:41 bm 1.5.4.12: dropping dragged cell-ranges from calc here. Missing: determine if the originating document is the container 2006/03/15 15:54:01 bm 1.5.4.11: ObjectHierarchy moved here from tools 2006/03/12 00:59:30 iha 1.5.4.10: merged ChartAPIValueProvider with Chart2ModelContact 2006/01/13 13:41:52 bm 1.5.4.9: +ChartController_Tools 2005/12/03 18:48:04 iha 1.5.4.8: enable pie segment dragging 2005/11/30 10:00:11 bm 1.5.4.7: ViewSingletons split up into RessourceManager and ConfigurationAccess 2005/11/30 09:58:57 bm 1.5.4.6: ResIdHelper moved to tools 2005/11/29 18:02:46 bm 1.5.4.5: ResId moved to tools 2005/11/25 17:42:34 bm 1.5.4.4: command enabling according to model state 2005/11/21 14:52:58 bm 1.5.4.3: +resid helper, +command dispatch classes 2005/10/07 11:37:14 bm 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2004/02/13 16:51:20 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [96e91cd67ee7a87e45ee3c4eaf483e96faca6ef9]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:08:47 bm 1.2.4.7: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 11:36:57 bm 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/07/08 14:55:04 iha 1.2.4.5: create and notify an accessible view 2005/05/31 19:01:25 iha 1.2.4.4: create old api without controller 2004/04/07 21:53:43 iha 1.2.4.3: #i20344# added WizardDialog 2004/02/17 19:32:25 iha 1.2.4.2: renamed global symbol to unique name 2004/02/13 16:51:20 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8425b2ecd89e655b86211e51fae8f235e5367670]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/15 13:57:09 bm 1.1.2.4: documentation of dispatch stuff. Also moved the command list of the controller to the controller itself 2006/01/20 17:03:26 bm 1.1.2.3: allow firing only one status event (needed on initial OLE activation) when the listener is added 2005/11/25 17:42:34 bm 1.1.2.2: command enabling according to model state 2005/11/21 14:52:56 bm 1.1.2.1: classes for dispatching specific events, especially Undo


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [340d566ad496dce8b7c0b7c2e21b3d66b18e1749]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:28 bm 1.1.2.5: #i74635# ResMgr cleanup ResId -> SchResId 2007/02/08 21:25:38 iha 1.1.2.4: resync m195 -> m202 2006/01/20 17:03:26 bm 1.1.2.3: allow firing only one status event (needed on initial OLE activation) when the listener is added 2005/11/25 17:42:34 bm 1.1.2.2: command enabling according to model state 2005/11/21 14:52:42 bm 1.1.2.1: classes for dispatching specific events, especially Undo


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d2f2cafa193a6d5a58b5a80b7407123c0622fcd2]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/22 17:29:33 bm 1.1.2.1: #i68861# dispatch for the status bar controls


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [84982d4824a15a9f1a7ea338754805e3a8ed4d52]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:37 iha 1.1.2.2: resync m195 -> m202 2006/08/22 17:29:23 bm 1.1.2.1: #i68861# dispatch for the status bar controls


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [991700f1bc0e63f4ec5571cf7e4e7ca42950e784]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/03/07 16:43:38 iha 1.3.4.12: don't move on floor 2007/03/07 15:39:04 iha 1.3.4.11: correct tip help on chart wall and floor 2006/10/24 13:23:19 iha 1.3.4.10: remove unused out parameter for CID 2006/10/23 14:39:07 iha 1.3.4.9: display correct mousepointer 2006/10/20 21:08:59 iha 1.3.4.8: implement selection of additional shapes 2006/08/02 11:16:26 bm 1.3.4.7: #i27352# implement quick help 2006/03/19 20:00:21 iha 1.3.4.6: set dragmode before selecting 2006/03/19 15:34:38 iha 1.3.4.5: correct selection handling of datapoints and series 2006/03/19 10:43:37 iha 1.3.4.4: reselect pie and donut segments after dragging 2005/10/07 11:36:33 bm 1.3.4.3: RESYNC: (1.3-1.4); FILE MERGED 2005/07/07 08:23:58 iha 1.3.4.2: reselect objects after view rebuild 2005/07/05 15:54:29 iha 1.3.4.1: redefine diagram size


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [277a7b0ab9eb022bf8b6239c999ac8532b3c4f78]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/03/19 15:11:05 iha 1.6.4.25: select page when nothing is hit 2007/03/07 16:43:38 iha 1.6.4.24: don't move on floor 2007/03/07 15:39:26 iha 1.6.4.23: correct tip help on chart wall and floor 2006/11/28 08:56:34 bm 1.6.4.22: includes for SolarMutex 2006/11/24 21:42:23 iha 1.6.4.21: incompatibel changes for aw024 2006/11/22 17:24:33 iha 1.6.4.20: RESYNC: (1.8-1.9); FILE MERGED 2006/10/26 11:29:22 iha 1.6.4.19: enable selection of diagram and page whitout filling 2006/10/24 13:23:35 iha 1.6.4.18: remove unused out parameter for CID 2006/10/23 14:39:36 iha 1.6.4.17: display correct mousepointer 2006/10/20 21:10:13 iha 1.6.4.16: implement selection of additional shapes 2006/10/18 17:08:39 bm 1.6.4.15: RESYNC: (1.7-1.8); FILE MERGED 2006/10/12 11:29:31 iha 1.6.4.14: more nice handles for 3D bar series selection 2006/08/02 11:16:26 bm 1.6.4.13: #i27352# implement quick help 2006/04/12 13:54:56 iha 1.6.4.12: allow deselection with empty string 2006/04/03 12:08:39 iha 1.6.4.11: correct selection handles for data point labels and legend entries 2006/03/19 20:00:40 iha 1.6.4.10: set dragmode before selecting 2006/03/19 15:34:27 iha 1.6.4.9: correct selection handling of datapoints and series 2006/03/19 10:44:00 iha 1.6.4.8: reselect pie and donut segments after dragging 2005/12/21 21:29:11 iha 1.6.4.7: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/07 11:36:22 bm 1.6.4.6: RESYNC: (1.6-1.7); FILE MERGED 2005/08/25 12:51:45 bm 1.6.4.5: lock solar mutex when calling into drawing layer code 2005/07/07 08:24:13 iha 1.6.4.4: reselect objects after view rebuild 2005/07/05 15:54:55 iha 1.6.4.3: redefine diagram size 2004/04/27 15:00:39 iha 1.6.4.2: warnings removed 2004/04/26 11:15:11 iha 1.6.4.1: cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [743f58647eb43d4be89c6d18187463dcf1b47a6e]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:08:30 bm 1.2.4.9: RESYNC: (1.3-1.4); FILE MERGED 2005/12/21 21:29:11 iha 1.2.4.8: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/15 14:11:47 iha 1.2.4.7: guard moveObject against to many view updates 2005/10/07 11:35:54 bm 1.2.4.6: RESYNC: (1.2-1.3); FILE MERGED 2005/07/23 00:01:19 iha 1.2.4.5: include axis title sizes in diagram position to support old api and fileformat 2005/05/09 09:50:58 bm 1.2.4.4: moved parts of API to data namespace 2004/09/07 10:08:02 bm 1.2.4.3: fixed calculation of new position in moveObject 2004/08/25 16:18:47 iha 1.2.4.2: View independent loading - relative position with dynamic anchor point 2004/04/26 19:01:24 iha 1.2.4.1: #i27367# offer additional simpler interface to move objects


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [491830ea61d197593ac0a00a8c149b8512b33844]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:37 iha 1.1.2.6: resync m195 -> m202 2006/04/27 11:50:21 bm 1.1.2.5: allow flattening the diagram content in the hierarchy for keyboard navigation 2006/04/10 18:32:11 iha 1.1.2.4: api restructure axis, grids, scales and increments 2006/04/10 15:03:33 iha 1.1.2.3: api restructure axis, grids, scales and increments 2006/04/10 12:25:07 iha 1.1.2.2: api restructure axis, grids, scales and increments 2006/03/15 15:51:46 bm 1.1.2.1: moved here from tools


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [61f0c1cc124f6e737ed10b157528962d07d61277]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/09 13:45:02 iha 1.1.2.6: #i72826# rotate around z-axis with mouse 2006/12/01 13:54:19 iha 1.1.2.5: correct rotation of diagram after resync to aw024 2006/11/22 17:31:19 iha 1.1.2.4: resync 2006/10/23 15:18:52 iha 1.1.2.3: rotation mode x-only and y-only 2006/06/09 16:26:16 iha 1.1.2.2: don't touch the camera rotation but take it into account 2005/12/03 18:46:13 iha 1.1.2.1: dragmethod for diagram rotation


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f08ed06f4b0178e56409ee989907ef3cd9bd1826]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/09 13:45:21 iha 1.1.2.9: #i72826# rotate around z-axis with mouse 2006/12/01 13:54:11 iha 1.1.2.8: correct rotation of diagram after resync to aw024 2006/11/24 21:42:23 iha 1.1.2.7: incompatibel changes for aw024 2006/11/22 17:31:18 iha 1.1.2.6: resync 2006/10/23 15:19:17 iha 1.1.2.5: rotation mode x-only and y-only 2006/06/19 16:03:35 iha 1.1.2.4: enable undo of rotation and preservation of dragging mode 2006/06/09 16:26:01 iha 1.1.2.3: don't touch the camera rotation but take it into account 2006/03/18 20:52:04 iha 1.1.2.2: correct selection handling for rotating diagram 2005/12/03 18:46:28 iha 1.1.2.1: dragmethod for diagram rotation


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1f92426fef1e2f0bbb71cd366f9defcbd799e261]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/01 13:51:52 iha 1.1.2.3: correct dragging of pie segments after resync to aw024 2006/11/23 17:34:05 iha 1.1.2.2: replace Vector2D with B2DVector 2005/12/03 18:43:37 iha 1.1.2.1: enable pie segment dragging


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [570e6f9bfb3a62d16dba0f2b46bd9a331d833473]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:37 iha 1.1.2.7: resync m195 -> m202 2006/12/01 13:52:00 iha 1.1.2.6: correct dragging of pie segments after resync to aw024 2006/11/26 12:33:22 bm 1.1.2.5: aw024 incompatibilities commented out: todo enable code with new syntax again 2006/11/23 17:33:55 iha 1.1.2.4: replace Vector2D with B2DVector 2006/11/01 15:36:56 iha 1.1.2.3: cleanup resources + changed variable names according to style guide 2005/12/21 21:29:11 iha 1.1.2.2: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/03 18:43:51 iha 1.1.2.1: enable pie segment dragging


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5d5cc49478e7e5d18ac318a20ab04b081d0b50a3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/12/03 18:42:00 iha 1.1.2.1: base class for dragmethods in chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2d3d6a2a58ff28cd83e5d562139cfaa0beade337]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:37 iha 1.1.2.3: resync m195 -> m202 2005/12/21 21:29:10 iha 1.1.2.2: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/03 18:42:15 iha 1.1.2.1: base class for dragmethods in chart


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3e25c85fc36822bc6d9ccf1bc3d9ba93a3a7b3b8]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/09 18:12:17 bm 1.1.2.4: #i63017# enable/disable the series forward/backward menu items (patch from pagalmes) 2006/03/15 13:57:09 bm 1.1.2.3: documentation of dispatch stuff. Also moved the command list of the controller to the controller itself 2006/01/20 16:44:57 bm 1.1.2.2: allow firing only one status event (needed on initial OLE activation) when the listener is added, status for AutoResize added 2005/11/25 17:41:28 bm 1.1.2.1: dispatch that cares about command enabling according to the (cached) model state


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [edc2c0ec381d61e6801d5e7a9cea11618aa6abc6]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/06 14:25:59 iha 1.1.2.29: #i75151# don't delete series when a data point is selected 2007/02/28 15:01:38 bm 1.1.2.28: #i74958# fire status events when the selection changed 2007/02/26 17:58:35 iha 1.1.2.27: correct enabling of 'cut' for series deletion 2007/02/26 15:12:30 iha 1.1.2.26: #i72970# disable 'Object Properties' if not offered 2007/02/08 21:25:37 iha 1.1.2.25: resync m195 -> m202 2007/02/02 11:34:59 iha 1.1.2.24: imlemented cut 2007/02/02 08:21:25 iha 1.1.2.23: corrected disabling for axes and grid formatting 2007/02/01 18:02:05 iha 1.1.2.22: disable insert special character for non text objects 2007/02/01 17:35:55 iha 1.1.2.21: disable insert statistics according spec 2007/02/01 16:52:49 iha 1.1.2.20: change legend menu entry enabling according to spec 2007/01/22 17:31:48 iha 1.1.2.19: remove slot .uno:AutoFormat 2007/01/08 16:59:18 bm 1.1.2.18: #i72787# enable copy command only if an object is selected. Note that currently this does not work for additional shapes. 2006/10/24 12:40:25 bm 1.1.2.17: disable Wall and Floor for pie and donut chart 2006/10/24 11:54:58 bm 1.1.2.16: remove commands that are handled by server application (save, save as, etc.) 2006/10/16 15:36:33 bm 1.1.2.15: #i70287# implement toggle grid horizontal command and correct status of toggle legend command 2006/10/11 09:19:53 bm 1.1.2.14: #i20287# implement toggle legend command, remove unused toolbar commands 2006/10/06 09:11:06 bm 1.1.2.13: #i64500# clipboard for chart objects 2006/09/28 16:46:29 bm 1.1.2.12: #i64500# clipboard paste of metafiles, bitmaps and text 2006/08/23 10:25:14 bm 1.1.2.11: #i68861# update state of StatusBarVisible always, do not cache in ControllerState 2006/08/22 17:31:54 bm 1.1.2.10: #i68861# implement the status bar 2006/08/09 18:12:17 bm 1.1.2.9: #i63017# enable/disable the series forward/backward menu items (patch from pagalmes) 2006/04/10 15:03:33 iha 1.1.2.8: api restructure axis, grids, scales and increments 2006/03/15 13:57:09 bm 1.1.2.7: documentation of dispatch stuff. Also moved the command list of the controller to the controller itself 2006/01/24 10:53:10 bm 1.1.2.6: AutoResizeHelper functionality moved to ReferenceSizeProvider 2006/01/20 16:44:29 bm 1.1.2.5: allow firing only one status event (needed on initial OLE activation) when the listener is added, status for AutoResize added 2005/12/21 21:29:10 iha 1.1.2.4: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/28 14:20:08 iha 1.1.2.3: menu changes 2005/11/25 17:51:18 bm 1.1.2.2: enable Position/Size dialog only for dragable objects 2005/11/25 17:41:13 bm 1.1.2.1: dispatch that cares about command enabling according to the (cached) model state


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [eda4cbae9e1f1f2681d7801c119eacf09ecdc034]

INTEGRATION: CWS chart2mst3 (1.2.12); FILE MERGED 2006/10/18 17:08:22 bm 1.2.12.3: RESYNC: (1.2-1.3); FILE MERGED 2005/11/30 15:57:10 iha 1.2.12.2: missing ! leads to crash in getConfigurationAccess() 2005/11/29 18:03:38 bm 1.2.12.1: ConfigurationAccess is a singleton now (ViewSingletons no longer needed)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [abc433766b6b15b5a9fe64840bfdc31552325da4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/07 16:55:27 bm 1.1.2.5: forward container commands to container dispatcher 2006/03/15 13:57:09 bm 1.1.2.4: documentation of dispatch stuff. Also moved the command list of the controller to the controller itself 2005/11/25 17:42:34 bm 1.1.2.3: command enabling according to model state 2005/11/22 10:53:23 bm 1.1.2.2: use correct undo strings 2005/11/21 14:53:20 bm 1.1.2.1: classes for dispatching specific events, especially Undo


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a433818837fb7d617070bf7a0afe7b5cb9fe7023]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:37 iha 1.1.2.10: resync m195 -> m202 2006/11/07 16:55:27 bm 1.1.2.9: forward container commands to container dispatcher 2006/08/22 17:31:54 bm 1.1.2.8: #i68861# implement the status bar 2006/03/15 13:57:08 bm 1.1.2.7: documentation of dispatch stuff. Also moved the command list of the controller to the controller itself 2006/01/27 09:51:21 bm 1.1.2.6: InlineContainer.hxx moved to comphelper 2005/11/28 16:30:19 bm 1.1.2.5: ::std::swap not supported for temporaries 2005/11/28 14:20:07 iha 1.1.2.4: menu changes 2005/11/25 17:42:34 bm 1.1.2.3: command enabling according to model state 2005/11/22 10:53:22 bm 1.1.2.2: use correct undo strings 2005/11/21 14:53:07 bm 1.1.2.1: classes for dispatching specific events, especially Undo


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f8ee88ee0c346dc710fe73ce0a023bc4a7b3b52a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/22 17:31:54 bm 1.1.2.5: #i68861# implement the status bar 2006/08/09 16:44:35 bm 1.1.2.4: fireStatusEventForURL: use bool instead of sal_Bool 2006/03/15 13:57:08 bm 1.1.2.3: documentation of dispatch stuff. Also moved the command list of the controller to the controller itself 2006/01/20 16:45:18 bm 1.1.2.2: allow firing only one status event (needed on initial OLE activation) when the listener is added 2005/11/21 14:52:21 bm 1.1.2.1: classes for dispatching specific events, especially Undo


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b14be6f0425ee52b478f3214a0399fc3a96d84b1]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:36 iha 1.1.2.7: resync m195 -> m202 2006/08/22 17:31:54 bm 1.1.2.6: #i68861# implement the status bar 2006/08/09 16:50:22 bm 1.1.2.5: fireStatusEventForURL: use bool instead of sal_Bool 2006/01/20 16:45:34 bm 1.1.2.4: allow firing only one status event (needed on initial OLE activation) when the listener is added 2005/11/25 17:42:34 bm 1.1.2.3: command enabling according to model state 2005/11/22 16:55:46 bm 1.1.2.2: reused variable, bad syntax 2005/11/21 14:52:32 bm 1.1.2.1: classes for dispatching specific events, especially Undo


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f84ba04936dcfd20e55ccf4662924a62eacd505b]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/08/02 11:16:26 bm 1.2.4.5: #i27352# implement quick help 2006/07/31 12:45:41 bm 1.2.4.4: #i27356# set DrawMode according to system high-contrast settings 2005/10/07 11:35:28 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/07/08 14:56:44 iha 1.2.4.2: create and notify an accessible view 2004/02/18 17:09:41 iha 1.2.4.1: handle lifetime of the ChartWindow correct


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [07ba044b739eab55acafb48795252f8f35c6af7c]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:07:10 bm 1.2.4.7: RESYNC: (1.3-1.4); FILE MERGED 2006/08/02 11:16:26 bm 1.2.4.6: #i27352# implement quick help 2006/07/31 12:45:24 bm 1.2.4.5: #i27356# set DrawMode according to system high-contrast settings 2006/03/11 13:57:40 iha 1.2.4.4: #i63018# added HelpId for Chart Window 2005/10/07 11:35:17 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/07/08 14:57:37 iha 1.2.4.2: create and notify an accessible view 2004/02/18 17:09:54 iha 1.2.4.1: handle lifetime of the ChartWindow correct


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [58be0873b05773befc686ca61e283b09f75c6272]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/10/06 09:10:28 bm 1.1.2.1: #i64500# transferable for copying chart objects to the clipboard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0b643030f73a5f6022a76661197df82914acf72a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:36 iha 1.1.2.4: resync m195 -> m202 2007/02/08 09:28:17 iha 1.1.2.3: resync m195 -> m202 2006/11/26 12:22:43 bm 1.1.2.2: aw024 adaptions 2006/10/06 09:10:17 bm 1.1.2.1: #i64500# transferable for copying chart objects to the clipboard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cc27d0fab411108f5adab420cab969ea72905135]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/01/22 17:13:34 iha 1.1.1.1.4.10: switch back to old factory name for charts now as we only have the new chart 2006/10/18 17:08:14 bm 1.1.1.1.4.9: RESYNC: (1.2-1.3); FILE MERGED 2005/12/02 14:28:13 bm 1.1.1.1.4.8: set controller as current controller in load() 2005/10/07 11:34:53 bm 1.1.1.1.4.7: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/09/02 14:24:50 iha 1.1.1.1.4.6: correct size for 5.0 standalone charts 2005/06/08 14:47:59 bm 1.1.1.1.4.5: attachResource is done in load method 2005/06/01 11:28:42 iha 1.1.1.1.4.4: add input stream to media descriptor, get model from media descriptor, don't reinit already loaded model 2004/03/04 13:19:02 iha 1.1.1.1.4.3: change attach order for new menu creation 2004/03/02 09:37:32 bm 1.1.1.1.4.2: load(): call load() or initNew() at model 2004/02/13 16:51:20 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e34e7fbb67b5cfc4c9db8a1c14f2442ba54c3fa3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/06/29 13:53:54 bm 1.1.2.1: dropping dragged cell-ranges from calc here. Missing: determine if the originating document is the container


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [45e01de7915a450c5059b73a266680bee4572a00]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:36 iha 1.1.2.3: resync m195 -> m202 2006/07/03 12:17:26 bm 1.1.2.2: DND_ACTION_NONE is a define not a member of an event 2006/06/29 13:53:54 bm 1.1.2.1: dropping dragged cell-ranges from calc here. Missing: determine if the originating document is the container


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8e29dc1eb0344f7e18780b290396b2bd4239bc8f]

INTEGRATION: CWS chart2mst3 (1.17.4); FILE MERGED 2007/04/27 09:30:51 iha 1.17.4.89: #i76656# correct Undo Strings for moving and resizing 2007/03/07 16:43:37 iha 1.17.4.88: don't move on floor 2007/03/07 15:40:27 iha 1.17.4.87: correct tip help on chart wall and floor 2007/02/09 13:51:42 iha 1.17.4.86: #i72826# rotate around z-axis with mouse 2007/02/09 12:28:32 bm 1.17.4.85: #i72841# message box that pops up when a non-deleteable object gets a delete-request 2007/02/08 18:05:04 iha 1.17.4.84: #i73262# Fast Doubleclick from Selection into another not work 2007/02/02 12:11:31 iha 1.17.4.83: notify correct current selection state before opening context menu 2007/02/02 11:31:23 iha 1.17.4.82: imlemented cut 2007/02/01 17:04:14 iha 1.17.4.81: remove superfluous code from old context menu 2007/02/01 16:53:49 iha 1.17.4.80: remove superfluous code from old context menu 2007/02/01 16:14:18 iha 1.17.4.79: added separator to contextmenu according to spec 2007/01/22 17:32:56 iha 1.17.4.78: remove slot .uno:AutoFormat 2006/12/14 19:43:36 iha 1.17.4.77: #i71857# correct values in position and size dialog + fixed dragging 2006/12/11 21:49:18 iha 1.17.4.76: #i71857# initial pos and size dlg shows wrong values 2006/11/30 19:16:12 iha 1.17.4.75: #71964# corrected context menu position when triggered via keys 2006/11/26 12:09:52 bm 1.17.4.74: PickHandle( Point, Window ) changed to PickHandle( Point ) 2006/11/26 11:47:12 bm 1.17.4.73: includes for solar mutex missing, deprecated context menu code removed 2006/11/24 21:42:23 iha 1.17.4.72: incompatibel changes for aw024 2006/11/22 17:24:25 iha 1.17.4.71: RESYNC: (1.21-1.22); FILE MERGED 2006/11/09 15:34:39 iha 1.17.4.70: #i16280# better performance for charts with many data (bar,column,line,area,xy,net charts) 2006/10/24 13:24:14 iha 1.17.4.69: remove unused out parameter for CID 2006/10/24 08:07:05 bm 1.17.4.68: SelectionHelper::isDragableObjectHitTwice: the CID is passed as non-const reference (in-out parameter). So do not pass a temporary 2006/10/23 15:20:25 iha 1.17.4.67: rotation mode x-only and y-only 2006/10/23 14:41:06 iha 1.17.4.66: display correct mousepointer 2006/10/20 21:17:59 iha 1.17.4.65: implement selection of additional shapes 2006/10/19 14:27:52 bm 1.17.4.64: enable context menus via dispatcher 2006/10/18 17:08:06 bm 1.17.4.63: RESYNC: (1.20-1.21); FILE MERGED 2006/10/16 15:49:41 bm 1.17.4.62: impl_SetMousePointer: disable special cursor for POINTER_MOVEBEZIERWEIGHT. That happens for blue handles in the 3d bar selection 2006/10/13 14:42:26 bm 1.17.4.61: enable different mouse cursors. Adjustment of the cursors is done in impl_SetMousePointer 2006/10/09 16:36:35 bm 1.17.4.60: test code checked in by error, removed. 2006/10/05 16:34:46 bm 1.17.4.59: #i69317# submenu ids must also be unique in global scope 2006/10/05 15:41:46 bm 1.17.4.58: #i69317# implement usage of contextmenuhelper. To activate define the USE_CONTEXT_MENU_HELPER variable. When it works remove the old code. 2006/09/28 16:46:29 bm 1.17.4.57: #i64500# clipboard paste of metafiles, bitmaps and text 2006/09/19 16:45:27 bm 1.17.4.56: #i67808# allow deleting the legend and the titles with the delete key 2006/08/25 15:08:34 bm 1.17.4.55: added command names for popup menu as comment to ease later switch to XPopupMenu (implementing XMenuExtended that takes commands) 2006/08/04 10:11:08 iha 1.17.4.54: don't crash on paint 2006/08/02 11:16:25 bm 1.17.4.53: #i27352# implement quick help 2006/05/02 11:14:20 bm 1.17.4.52: #i62831# check moved objects for out-of-bounds 2006/03/19 20:03:20 iha 1.17.4.51: set dragmode before selecting 2006/03/19 16:12:13 iha 1.17.4.50: do not block ckicking data series etc. while diagram is selected 2006/03/19 15:33:54 iha 1.17.4.49: correct selection handling of datapoints and series 2006/03/19 10:43:14 iha 1.17.4.48: reselect pie and donut segments after dragging 2006/03/18 20:53:35 iha 1.17.4.47: correct selection handling for rotating diagram 2006/03/12 01:22:30 iha 1.17.4.46: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/28 13:52:57 bm 1.17.4.45: pie segment dragging with cursor keys 2006/02/28 12:59:10 bm 1.17.4.44: pie segment offset per keyboard 2006/02/24 15:57:30 bm 1.17.4.43: keyboard accessibility 2006/02/23 17:38:13 bm 1.17.4.42: keyboard accessibility: resize diagram with +/- 2006/02/22 18:17:59 bm 1.17.4.41: Keyboard accessibility 2006/01/27 09:51:20 bm 1.17.4.40: InlineContainer.hxx moved to comphelper 2006/01/20 11:33:39 iha 1.17.4.39: removed some performance debug code here better integrate it in the according submathods 2006/01/17 17:16:52 bm 1.17.4.38: allow deselect with an empty Any in select() 2006/01/14 14:31:41 iha 1.17.4.37: cut,copy state requested 2006/01/11 15:11:00 iha 1.17.4.36: don't use implementation details of the ObjectIdentifier somewhere else 2005/12/21 21:29:09 iha 1.17.4.35: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/03 18:50:21 iha 1.17.4.34: enable pie segment dragging + moved diagram rotation dragmethod and adpated to new dragmethod base 2005/11/30 16:10:30 iha 1.17.4.33: menu changes 2005/11/28 14:20:07 iha 1.17.4.32: menu changes 2005/11/22 10:53:22 bm 1.17.4.31: use correct undo strings 2005/11/16 11:52:48 iha 1.17.4.30: undo for rotating diagram 2005/11/16 10:55:39 iha 1.17.4.29: undo for moving and sizing objects 2005/11/15 14:13:47 iha 1.17.4.28: remove explicit view-dirty-setting after draging as model changes are now notified 2005/11/02 13:49:19 bm 1.17.4.27: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/07 11:34:42 bm 1.17.4.26: RESYNC: (1.19-1.20); FILE MERGED 2005/09/02 14:25:30 iha 1.17.4.25: update view after resize 2005/07/23 00:01:19 iha 1.17.4.24: include axis title sizes in diagram position to support old api and fileformat 2005/07/19 10:10:22 iha 1.17.4.23: false throw 2005/07/08 12:23:35 iha 1.17.4.22: removed unused includes 2005/07/07 15:19:30 iha 1.17.4.21: implement interface XSelectionSupplier 2005/07/07 08:35:30 iha 1.17.4.20: implement interface XSelectionSupplier 2005/07/05 15:54:05 iha 1.17.4.19: redefine diagram size 2005/06/09 15:51:58 iha 1.17.4.18: support positions and sizes via view for old api wrapper 2005/06/03 14:38:18 iha 1.17.4.17: set correct size 2005/05/31 19:00:39 iha 1.17.4.16: create old api without controller 2005/04/19 17:39:22 iha 1.17.4.15: make more failsave 2005/04/04 11:23:23 bm 1.17.4.14: handle accelerator keys 2005/03/18 01:20:11 bm 1.17.4.13: RESYNC: (1.18-1.19); FILE MERGED 2004/09/17 11:37:09 iha 1.17.4.12: implement api redesign - dimension property 2004/09/16 14:49:12 iha 1.17.4.11: implement api redesign 2004/08/31 13:23:41 iha 1.17.4.10: enable context menu again 2004/08/26 15:54:57 iha 1.17.4.9: View independent loading - different setting of page size 2004/08/25 16:35:14 iha 1.17.4.8: removed unused code 2004/08/24 14:00:24 iha 1.17.4.7: View independent loading - store page size separat from window (which does not exist in some cases) 2004/08/04 20:15:24 bm 1.17.4.6: RESYNC: (1.17-1.18); FILE MERGED 2004/06/01 19:02:46 iha 1.17.4.5: new 3D view/effects dialog 2004/04/26 17:35:14 iha 1.17.4.4: #i27367# protect view access with solar mutex 2004/04/26 11:15:29 iha 1.17.4.3: #i27367# offer access to created shapes for old api 2004/03/05 15:03:06 iha 1.17.4.2: changed from slot url scheme to uno url scheme due to menubar framework changes 2004/02/18 17:08:56 iha 1.17.4.1: handle lifetime of the ChartWindow correct


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d33e4365575f5ceafd5504fbc662f3f7e7678999]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/06 14:25:05 iha 1.1.2.19: #i75151# don't delete series when a data point is selected 2007/02/26 17:58:35 iha 1.1.2.18: correct enabling of 'cut' for series deletion 2007/02/09 12:27:45 bm 1.1.2.17: #i72841# allow deleting series with DEL 2007/02/08 21:25:36 iha 1.1.2.16: resync m195 -> m202 2007/02/02 11:30:40 iha 1.1.2.15: imlemented cut 2006/11/26 11:44:30 bm 1.1.2.14: includes for solar mutex missing 2006/10/20 21:19:32 iha 1.1.2.13: implement selection of additional shapes 2006/10/16 16:15:59 bm 1.1.2.12: lock solar mutex when switching on/off AutoTextScale 2006/10/16 15:15:56 bm 1.1.2.11: #i70287# implement toggle grid horizontal command 2006/10/11 09:19:53 bm 1.1.2.10: #i20287# implement toggle legend command, remove unused toolbar commands 2006/10/06 09:11:06 bm 1.1.2.9: #i64500# clipboard for chart objects 2006/09/28 16:46:29 bm 1.1.2.8: #i64500# clipboard paste of metafiles, bitmaps and text 2006/07/07 17:16:32 iha 1.1.2.7: get correct diagram size 2006/06/30 22:26:29 iha 1.1.2.6: added todo for resetting scene defaults 2006/01/24 10:52:32 bm 1.1.2.5: +impl_createReferenceSizeProvider, +impl_adaptDataSeriesAutoResize 2006/01/20 17:02:44 bm 1.1.2.4: implement ScaleText command 2006/01/16 12:08:57 bm 1.1.2.3: also reset diagram rotation in rearrange function 2006/01/13 15:03:56 bm 1.1.2.2: use correct string for undo 2006/01/13 13:41:40 bm 1.1.2.1: dispatches for NewArrangement and ScaleText


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ead678c04352d132a94e1971b7f1b11008589683]

INTEGRATION: CWS chart2mst3 (1.7.10); FILE MERGED 2007/05/14 20:04:55 bm 1.7.10.15: RESYNC: (1.9-1.10); FILE MERGED 2007/02/01 18:01:09 iha 1.7.10.14: start edit mode before adding special characters 2007/01/16 16:26:25 iha 1.7.10.13: #i73426# wrong help context bvecause of wrong window hirarchy 2006/11/26 11:43:16 bm 1.7.10.12: includes for solar mutex missing 2006/11/24 21:42:23 iha 1.7.10.11: incompatibel changes for aw024 2006/11/22 17:24:17 iha 1.7.10.10: RESYNC: (1.8-1.9); FILE MERGED 2006/10/20 21:15:35 iha 1.7.10.9: implement selection of additional shapes 2006/10/18 17:07:58 bm 1.7.10.8: RESYNC: (1.7-1.8); FILE MERGED 2006/03/23 09:57:10 bm 1.7.10.7: support for paragraphs for accessibility titles 2005/12/21 21:29:09 iha 1.7.10.6: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/15 20:23:40 iha 1.7.10.5: remove superfluous view updates 2005/11/15 15:33:04 iha 1.7.10.4: guard dialogs with solarmutex 2005/10/18 14:45:27 bm 1.7.10.3: lock controllers during model change calls 2005/10/18 14:38:06 bm 1.7.10.2: lock controllers during model change callsProperties.cxxProperties.cxx 2005/10/11 12:49:28 bm 1.7.10.1: #i27351# implement Undo


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1d71d39de5294786bb5ec94cc1610f334fdc542c]

INTEGRATION: CWS chart2mst3 (1.24.4); FILE MERGED 2007/03/19 15:07:26 iha 1.24.4.55: #i73605#, #i75389# use correct numberformat for scale tabpage and numbers tabpage 2007/02/26 15:14:27 iha 1.24.4.54: #i72970# don't offer 'Object Properties' for wall if wall is not supported 2007/01/16 16:25:54 iha 1.24.4.53: #i73426# wrong help context bvecause of wrong window hirarchy 2006/11/26 11:41:46 bm 1.24.4.52: includes for solar mutex missing 2006/10/27 14:59:21 iha 1.24.4.51: name consolidation 2006/10/24 16:47:20 iha 1.24.4.50: use different symbol as preview for automatic symbols 2006/10/20 21:14:18 iha 1.24.4.49: implement selection of additional shapes 2006/10/18 17:07:50 bm 1.24.4.48: RESYNC: (1.25-1.26); FILE MERGED 2006/09/27 14:27:21 iha 1.24.4.47: corrected reference size for data labels 2006/09/24 09:12:54 iha 1.24.4.46: #i61970# correct implementation of axis at 2006/06/19 16:20:48 iha 1.24.4.45: fix 'cancel' for 3D view dialog 2006/04/10 15:03:33 iha 1.24.4.44: api restructure axis, grids, scales and increments 2006/04/10 12:25:07 iha 1.24.4.43: api restructure axis, grids, scales and increments 2006/03/11 17:13:20 iha 1.24.4.42: #i63009# menu item format all title/axis and grids did not work 2006/01/24 10:51:47 bm 1.24.4.41: ReferenceSizeProvider put into a separate helper class (tools) 2006/01/20 17:02:18 bm 1.24.4.40: pass correct diagram size to ReferenceSizeProvider 2005/12/21 21:29:09 iha 1.24.4.39: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/12/07 14:02:19 iha 1.24.4.38: remove dependendy from special title identifiers 2005/12/03 18:51:03 iha 1.24.4.37: enable pie segment dragging 2005/11/22 10:53:21 bm 1.24.4.36: use correct undo strings 2005/11/18 18:19:54 iha 1.24.4.35: restructuring for proper subgrid support 2005/11/15 20:49:36 iha 1.24.4.34: use UndoGuard 2005/11/15 20:23:08 iha 1.24.4.33: remove superfluous view updates 2005/11/15 15:32:44 iha 1.24.4.32: guard dialogs with solarmutex 2005/11/07 21:01:28 iha 1.24.4.31: make more failsafe 2005/11/07 17:12:09 bm 1.24.4.30: removed explicit view update for object property changes 2005/11/02 13:49:19 bm 1.24.4.29: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/18 14:35:53 bm 1.24.4.28: lock controllers during model change calls 2005/10/11 12:46:48 bm 1.24.4.27: using UndoManager for undo/redo 2005/10/07 11:34:15 bm 1.24.4.26: RESYNC: (1.24-1.25); FILE MERGED 2005/09/26 14:36:07 iha 1.24.4.25: #i54909# swap x and y grid according to old usage of uno command names 2005/08/18 15:20:42 bm 1.24.4.24: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/08/03 16:36:16 bm 1.24.4.23: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/28 09:34:49 bm 1.24.4.22: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/26 12:07:56 bm 1.24.4.21: use configuration colors in ColorProvider 2005/07/13 15:21:13 iha 1.24.4.20: update draw model tables before use in view and dialogs 2005/07/12 12:57:04 bm 1.24.4.19: use named properties for gradients etc. in chart model 2005/07/08 12:55:05 iha 1.24.4.18: provide and keep view as service only 2005/07/05 15:44:05 iha 1.24.4.17: redefine diagram size 2005/06/10 18:23:17 iha 1.24.4.16: transport gradients, hatches etc. from chart model to draw model for display in the dialogs 2005/06/07 15:51:09 iha 1.24.4.15: use numberformatter from model 2005/06/03 14:41:23 iha 1.24.4.14: shared_ptr for drawmodelwrapper 2005/05/31 19:00:06 iha 1.24.4.13: create old api without controller 2005/04/13 08:52:14 iha 1.24.4.12: changed servicenames to avoid confusion with model services 2005/03/31 12:55:16 bm 1.24.4.11: first redo implementation 2005/03/30 16:31:04 bm 1.24.4.10: make model cloneable (+first undo implementation) 2004/09/17 12:20:47 iha 1.24.4.9: implement api redesign - dimension property 2004/07/01 14:00:49 iha 1.24.4.8: correct pie segment color in point properties dialog 2004/06/04 12:06:24 iha 1.24.4.7: implement 3D View / Effects dialog 2004/06/01 19:04:56 iha 1.24.4.6: new 3D view/effects dialog 2004/05/17 17:31:15 iha 1.24.4.5: added objecttype OBJECTTYPE_DATA_AVERAGE_LINE 2004/03/18 16:32:47 iha 1.24.4.4: changed parameters in constructor of DataPointItemConverter 2004/03/05 15:00:43 iha 1.24.4.3: changed from slot url scheme to uno url scheme due to menubar framework changes 2004/03/01 20:15:19 iha 1.24.4.2: added ItemCOnverter for Stock Gain/Loss 2004/02/13 16:51:19 bm 1.24.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8e832a723d8e7a0ba00930be80f9a2a88e681e15]

INTEGRATION: CWS chart2mst3 (1.4.2); FILE MERGED 2007/05/14 20:04:49 bm 1.4.2.16: RESYNC: (1.6-1.7); FILE MERGED 2007/01/16 16:27:11 iha 1.4.2.15: #i73426# wrong help context bvecause of wrong window hirarchy 2006/11/26 11:41:06 bm 1.4.2.14: includes for solar mutex missing 2006/10/20 21:13:09 iha 1.4.2.13: implement selection of additional shapes 2006/10/18 17:07:42 bm 1.4.2.12: RESYNC: (1.5-1.6); FILE MERGED 2005/11/22 10:53:20 bm 1.4.2.11: use correct undo strings 2005/11/15 20:49:35 iha 1.4.2.10: use UndoGuard 2005/11/15 15:32:21 iha 1.4.2.9: guard dialogs with solarmutex 2005/11/15 14:00:01 iha 1.4.2.8: remove explicit view dirty setting as model changes are now notified 2005/10/11 12:50:28 bm 1.4.2.7: #i27351# implement Undo 2005/10/07 11:34:04 bm 1.4.2.6: RESYNC: (1.4-1.5); FILE MERGED 2005/07/23 00:01:19 iha 1.4.2.5: include axis title sizes in diagram position to support old api and fileformat 2005/05/31 18:59:36 iha 1.4.2.4: create old api without controller 2004/06/04 12:07:18 iha 1.4.2.3: removed unused code 2004/06/01 19:04:21 iha 1.4.2.2: new 3D view/effects dialog 2004/04/27 13:32:41 iha 1.4.2.1: warnings removed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a833bcde139eb7499400a20ca569398c8df3439c]

INTEGRATION: CWS chart2mst3 (1.8.4); FILE MERGED 2007/01/16 16:25:18 iha 1.8.4.24: #i73426# wrong help context bvecause of wrong window hirarchy 2006/11/26 11:39:17 bm 1.8.4.23: includes for solar mutex missing 2006/10/27 15:17:00 iha 1.8.4.22: name consolidation 2006/10/18 17:07:34 bm 1.8.4.21: RESYNC: (1.9-1.10); FILE MERGED 2006/04/10 15:03:33 iha 1.8.4.20: api restructure axis, grids, scales and increments 2006/04/10 12:25:07 iha 1.8.4.19: api restructure axis, grids, scales and increments 2006/02/21 19:45:05 iha 1.8.4.18: added property show to axis to make axis title possible with invisible axis and enlarge lifetime for old api 2006/01/24 10:51:11 bm 1.8.4.17: pass ReferenceSizeProvider to axis insertion dialog to adapt settings for new axes 2006/01/06 20:29:01 iha 1.8.4.16: added legendposition to wizard and restructured legend postiion control classes 2005/11/22 10:53:20 bm 1.8.4.15: use correct undo strings 2005/11/21 16:08:37 bm 1.8.4.14: #i27351# use correct undo strings 2005/11/18 18:19:53 iha 1.8.4.13: restructuring for proper subgrid support 2005/11/15 18:10:37 iha 1.8.4.12: remove direct view update call and use UndoGuard 2005/11/15 15:32:02 iha 1.8.4.11: guard dialogs with solarmutex 2005/10/18 14:36:41 bm 1.8.4.10: lock controllers during model change callsProperties.cxxProperties.cxx 2005/10/13 17:38:48 iha 1.8.4.9: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 12:48:15 bm 1.8.4.8: #i27351# implement Undo 2005/10/07 11:33:53 bm 1.8.4.7: RESYNC: (1.8-1.9); FILE MERGED 2005/07/12 12:57:04 bm 1.8.4.6: use named properties for gradients etc. in chart model 2005/06/16 12:53:52 iha 1.8.4.5: create legend on demand 2005/05/31 18:58:54 iha 1.8.4.4: create view without controller 2004/04/07 21:52:23 iha 1.8.4.3: #i20344# moved methods from here to MeterHelper to create/remove axis/grids 2004/03/18 16:32:13 iha 1.8.4.2: moved method createAxis to MeterHelper 2004/03/12 15:33:37 iha 1.8.4.1: added AxisPosition for secondary axes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [adbebab2d9364ad265b585c6e07a9da39ff57c7a]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/11/10 15:06:11 bm 1.1.4.18: #i67875# add undo for own data 2006/10/27 14:59:21 iha 1.1.4.17: name consolidation 2006/10/18 17:07:26 bm 1.1.4.16: RESYNC: (1.3-1.4); FILE MERGED 2006/07/19 15:55:25 bm 1.1.4.15: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/03/08 10:38:53 bm 1.1.4.14: new UI for DataEditor. Define TEST_NEW_UI in dlg_DataEditor.hrc to activate 2005/11/22 10:53:19 bm 1.1.4.13: use correct undo strings 2005/11/15 20:49:34 iha 1.1.4.12: use UndoGuard 2005/11/15 20:22:33 iha 1.1.4.11: remove superfluous view updates 2005/11/07 21:02:21 iha 1.1.4.10: rectangular range for dataeditor 2005/10/18 14:35:26 bm 1.1.4.9: lock controllers during model change calls 2005/10/11 12:48:56 bm 1.1.4.8: #i27351# implement Undo 2005/10/07 11:33:42 bm 1.1.4.7: RESYNC: (1.2-1.3); FILE MERGED 2005/08/29 14:54:20 bm 1.1.4.6: don't clear solar mutex, because impl_rebuildView needs a lock, too 2005/08/26 09:46:10 bm 1.1.4.5: lock solar mutex around dialog 2005/08/19 15:28:30 bm 1.1.4.4: apply data changes 2005/08/17 16:55:11 bm 1.1.4.3: use new data edition dialog instead of Calc 2004/06/03 03:39:24 iha 1.1.4.2: RESYNC: (1.1-1.2); FILE MERGED Embedding API modifications 2004/03/02 09:45:57 bm 1.1.4.1: if object is already active, bring the document to front


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bb05c4b8cb88095f46ea03d28a60cd8d19bb12cf]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2007/03/06 14:24:37 iha 1.5.4.53: #i75151# don't delete series when a data point is selected 2007/02/02 11:29:30 iha 1.5.4.52: imlemented cut 2007/01/22 17:32:09 iha 1.5.4.51: remove slot .uno:AutoFormat 2006/10/20 21:11:20 iha 1.5.4.50: implement selection of additional shapes 2006/10/16 15:14:13 bm 1.5.4.49: #i70287# implement toggle grid horizontal command 2006/10/13 14:42:40 bm 1.5.4.48: enable different mouse cursors. Adjustment of the cursors is done in impl_SetMousePointer 2006/10/11 09:19:53 bm 1.5.4.47: #i20287# implement toggle legend command, remove unused toolbar commands 2006/10/06 09:11:06 bm 1.5.4.46: #i64500# clipboard for chart objects 2006/09/28 16:46:28 bm 1.5.4.45: #i64500# clipboard paste of metafiles, bitmaps and text 2006/09/19 16:45:41 bm 1.5.4.44: #i67808# allow deleting the legend and the titles with the delete key 2006/08/22 17:31:53 bm 1.5.4.43: #i68861# implement the status bar 2006/08/02 11:16:25 bm 1.5.4.42: #i27352# implement quick help 2006/06/29 13:54:41 bm 1.5.4.41: dropping dragged cell-ranges from calc here. Missing: determine if the originating document is the container 2006/03/23 09:57:10 bm 1.5.4.40: support for paragraphs for accessibility titles 2006/03/19 15:32:57 iha 1.5.4.39: correct selection handling of datapoints and series 2006/03/18 20:52:32 iha 1.5.4.38: correct selection handling for rotating diagram 2006/03/15 13:57:08 bm 1.5.4.37: documentation of dispatch stuff. Also moved the command list of the controller to the controller itself 2006/03/12 01:20:33 iha 1.5.4.36: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/28 12:59:09 bm 1.5.4.35: pie segment offset per keyboard 2006/02/24 15:57:29 bm 1.5.4.34: keyboard accessibility 2006/02/23 17:38:12 bm 1.5.4.33: keyboard accessibility: resize diagram with +/- 2006/01/24 10:50:21 bm 1.5.4.32: +impl_createReferenceSizeProvider, +impl_adaptDataSeriesAutoResize 2006/01/20 16:53:39 bm 1.5.4.31: +impl_getDiagramSize to get diagram size from the corresponding SdrObject of the m_pDrawViewWrapper 2006/01/13 13:42:30 bm 1.5.4.30: +executeDispatch_NewArrangement(), executeDispatch_ScaleText 2005/11/25 17:42:34 bm 1.5.4.29: command enabling according to model state 2005/11/21 16:24:33 bm 1.5.4.28: use CommandDispatchContainer for dispatch issues 2005/11/15 10:41:33 iha 1.5.4.27: don't remove me as listener in disposing 2005/11/07 20:57:49 iha 1.5.4.26: implement changing series order 2005/10/18 14:39:30 bm 1.5.4.25: implement XModifyListener in order to listen to model changes 2005/10/11 12:44:40 bm 1.5.4.24: using UndoManager for undo/redo 2005/10/07 11:33:31 bm 1.5.4.23: RESYNC: (1.5-1.6); FILE MERGED 2005/07/08 14:55:50 iha 1.5.4.22: create and notify an accessible view 2005/07/08 12:55:40 iha 1.5.4.21: provide and keep view as service only 2005/07/07 15:20:07 iha 1.5.4.20: implement interface XSelectionSupplier 2005/07/07 08:35:02 iha 1.5.4.19: implement interface XSelectionSupplier 2005/06/09 15:50:55 iha 1.5.4.18: support positions and sizes via view for old api wrapper 2005/06/07 15:49:43 iha 1.5.4.17: use numberformatter from model 2005/06/03 14:40:10 iha 1.5.4.16: shared_ptr for drawmodelwrapper 2005/06/01 16:22:31 iha 1.5.4.15: remove interface xpropertyset 2005/05/31 18:55:08 iha 1.5.4.14: create old api without controller 2005/04/04 11:39:47 bm 1.5.4.13: AcceleratorExecute helper class for handling accelerator keys 2005/03/31 12:55:16 bm 1.5.4.12: first redo implementation 2005/03/30 16:31:04 bm 1.5.4.11: make model cloneable (+first undo implementation) 2004/09/27 14:32:50 iha 1.5.4.10: save - old api - provide access to ViewElementListProvider, reduce direct access to draw model 2004/08/26 15:54:12 iha 1.5.4.9: View independent loading - different setting of page size 2004/08/24 13:59:44 iha 1.5.4.8: View independent loading - store page size separat from window (which does not exist in some cases) 2004/06/04 08:05:28 bm 1.5.4.7: +GetDrawModelUNO 2004/06/01 19:03:25 iha 1.5.4.6: new 3D view/effects dialog 2004/04/26 11:15:29 iha 1.5.4.5: #i27367# offer access to created shapes for old api 2004/04/07 21:41:53 iha 1.5.4.4: #i20344# added method executeDispatch_CreationWizard 2004/03/19 14:32:51 bm 1.5.4.3: XDataSource now contains XLabeledDataSources 2004/03/05 15:02:18 iha 1.5.4.2: changed from slot url scheme to uno url scheme due to menubar framework changes 2004/02/13 16:51:19 bm 1.5.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b8adc6d9270177671405c80f551477d05776db06]

INTEGRATION: CWS chart2mst3 (1.15.4); FILE MERGED 2007/02/07 13:07:41 iha 1.15.4.109: RESYNC: (1.19-1.20); FILE MERGED 2007/02/02 11:29:51 iha 1.15.4.108: imlemented cut 2007/02/01 16:53:49 iha 1.15.4.107: remove superfluous code from old context menu 2007/01/22 17:32:29 iha 1.15.4.106: remove slot .uno:AutoFormat 2007/01/16 16:24:46 iha 1.15.4.105: #i73426# wrong help context bvecause of wrong window hirarchy 2006/11/26 11:38:59 bm 1.15.4.104: includes for solar mutex missing 2006/11/22 17:24:09 iha 1.15.4.103: RESYNC: (1.18-1.19); FILE MERGED 2006/11/07 16:55:27 bm 1.15.4.102: forward container commands to container dispatcher 2006/10/27 14:59:20 iha 1.15.4.101: name consolidation 2006/10/24 14:27:44 bm 1.15.4.100: pass chart window as parent to DataSourceDialog instead of NULL 2006/10/24 11:54:20 bm 1.15.4.99: remove commands that are handled by server application (save, save as, etc.) 2006/10/20 21:12:21 iha 1.15.4.98: implement selection of additional shapes 2006/10/18 17:07:18 bm 1.15.4.97: RESYNC: (1.17-1.18); FILE MERGED 2006/10/16 15:19:42 bm 1.15.4.96: #i70287# implement toggle grid horizontal command 2006/10/11 09:19:53 bm 1.15.4.95: #i20287# implement toggle legend command, remove unused toolbar commands 2006/10/06 09:11:06 bm 1.15.4.94: #i64500# clipboard for chart objects 2006/09/28 16:46:28 bm 1.15.4.93: #i64500# clipboard paste of metafiles, bitmaps and text 2006/08/22 17:31:53 bm 1.15.4.92: #i68861# implement the status bar 2006/07/11 13:20:37 bm 1.15.4.91: reset drop target helper in dispose() 2006/06/29 13:54:40 bm 1.15.4.90: dropping dragged cell-ranges from calc here. Missing: determine if the originating document is the container 2006/05/29 17:56:16 iha 1.15.4.89: replaced STR_OBJECT_SOURCE_DATA by STR_OBJECT_DATA_RANGE 2006/03/23 09:57:10 bm 1.15.4.88: support for paragraphs for accessibility titles 2006/03/19 15:33:20 iha 1.15.4.87: correct selection handling of datapoints and series 2006/03/18 20:53:00 iha 1.15.4.86: correct selection handling for rotating diagram 2006/03/15 13:57:08 bm 1.15.4.85: documentation of dispatch stuff. Also moved the command list of the controller to the controller itself 2006/03/12 01:21:17 iha 1.15.4.84: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/02/20 14:36:48 iha 1.15.4.83: move SchItemPool from controller to view lib -> ChartItemPool 2006/02/20 09:17:36 bm 1.15.4.82: impl_initializeAccessible: XInitialization needs two more parameters 2006/01/24 10:49:42 bm 1.15.4.81: call impl_adaptDataSeriesAutoResize after command execution of commands which may add new data series 2006/01/20 11:39:28 iha 1.15.4.80: some cleanup 2006/01/17 17:16:06 bm 1.15.4.79: clear selection in dispose (to remove range highlighting) 2006/01/13 13:43:34 bm 1.15.4.78: +executeDispatch_NewArrangement(), executeDispatch_ScaleText 2005/12/21 21:29:08 iha 1.15.4.77: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/28 15:14:00 bm 1.15.4.76: assertion about CloseVetoException only if OSL_DEBUG_LEVEL > 2 2005/11/28 14:39:29 iha 1.15.4.75: UndoLiveUpdateGuard for charttype dlg and data range dlg 2005/11/28 14:20:05 iha 1.15.4.74: menu changes 2005/11/25 17:42:33 bm 1.15.4.73: command enabling according to model state 2005/11/24 15:07:48 bm 1.15.4.72: allow removing listeners in suspend mode 2005/11/22 10:53:19 bm 1.15.4.71: use correct undo strings 2005/11/21 16:07:45 bm 1.15.4.70: use dispatch command container 2005/11/16 10:57:04 iha 1.15.4.69: use UndoLiveUpdateGuard for Wizard 2005/11/15 20:49:32 iha 1.15.4.68: use UndoGuard 2005/11/15 15:30:25 bm 1.15.4.67: garbage collection, disposing, reference release issues 2005/11/15 10:41:32 iha 1.15.4.66: don't remove me as listener in disposing 2005/11/14 16:50:26 iha 1.15.4.65: remove direct view update call from wizard slot as automatic updates are now available 2005/11/14 14:54:41 iha 1.15.4.64: guard Charttype Dialog against view updates and remove direct view update call 2005/11/11 14:51:15 bm 1.15.4.63: dispose: remove as modify listener from model 2005/11/11 14:43:30 iha 1.15.4.62: guard DataRange Dialog against view updates and remove direct view update call 2005/11/07 20:59:03 iha 1.15.4.61: implement changing series order 2005/11/02 13:49:19 bm 1.15.4.60: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/18 14:51:35 bm 1.15.4.59: implement XModifyListener in order to listen to model changes (use define TEST_ENABLE_MODIFY_LISTENER to actually add and remove as listener at the model to get view updates) 2005/10/11 12:44:07 bm 1.15.4.58: using UndoManager for undo/redo 2005/10/07 11:33:19 bm 1.15.4.57: RESYNC: (1.16-1.17); FILE MERGED 2005/09/07 16:02:21 iha 1.15.4.56: added missing include 2005/09/02 14:29:11 iha 1.15.4.55: delete window with solar mutex 2005/08/30 14:46:40 bm 1.15.4.54: attach parent reference-device after creating draw model- and view wrappers 2005/08/29 14:49:37 iha 1.15.4.53: unmark before removing shapes 2005/08/26 13:04:05 bm 1.15.4.52: lock solar mutex when deleting svx objects (DTOR calls) 2005/08/26 10:00:07 bm 1.15.4.51: some more solar mutex locks 2005/08/25 12:35:06 bm 1.15.4.50: lock solar mutex when creating CreationWizard and ChartType dialog 2005/08/22 15:37:39 iha 1.15.4.49: don't create accessibility view for update 2005/08/04 11:52:11 bm 1.15.4.48: lock solar mutex when starting data source dialog 2005/07/27 12:33:12 bm 1.15.4.47: catch exceptions in dispose() 2005/07/13 15:20:07 iha 1.15.4.46: update draw model tables before use in view and dialogs 2005/07/08 14:56:22 iha 1.15.4.45: create and notify an accessible view 2005/07/08 12:59:02 iha 1.15.4.44: disconnect controller from model when disposed 2005/07/08 12:56:35 iha 1.15.4.43: provide and keep view as service only 2005/07/07 08:35:51 iha 1.15.4.42: implement interface XSelectionSupplier 2005/07/07 08:24:44 iha 1.15.4.41: reselect objects after view rebuild 2005/07/05 15:43:29 iha 1.15.4.40: redefine diagram size 2005/06/09 15:51:28 iha 1.15.4.39: support positions and sizes via view for old api wrapper 2005/06/07 15:50:33 iha 1.15.4.38: use numberformatter from model 2005/06/06 11:42:22 cd 1.15.4.37: Use createElement/requestElement calls to create elements always, even if module frame is not visible 2005/06/03 14:40:51 iha 1.15.4.36: construct chartview with drawmodelwrapper, shared_ptr for drawmodelwrapper, no background for chart window 2005/06/01 16:22:53 iha 1.15.4.35: remove interface xpropertyset 2005/05/31 18:57:39 iha 1.15.4.34: create old api without controller 2005/04/27 11:33:59 bm 1.15.4.33: use requestElement rather than createElement for UI ressources, and lock the layoutmanager 2005/04/04 11:39:47 bm 1.15.4.32: AcceleratorExecute helper class for handling accelerator keys 2005/04/04 11:20:09 bm 1.15.4.31: create toolbars / new slot DataRanges 2005/04/01 16:25:38 bm 1.15.4.30: shared data for different chart models 2005/03/31 12:55:16 bm 1.15.4.29: first redo implementation 2005/03/30 16:31:04 bm 1.15.4.28: make model cloneable (+first undo implementation) 2005/03/18 15:48:07 bm 1.15.4.27: XLayoutManager -> drafts namespace removed 2004/09/27 14:33:49 iha 1.15.4.26: save - old api - provide access to ViewElementListProvider, reduce direct access to draw model 2004/09/15 15:44:55 iha 1.15.4.25: implement api redesign 2004/09/03 17:08:14 iha 1.15.4.24: enable save 2004/08/26 15:54:36 iha 1.15.4.23: View independent loading - different setting of page size 2004/08/24 13:51:28 iha 1.15.4.22: View independent loading - store page size separat from window (which does not exist in some cases) 2004/08/04 20:15:17 bm 1.15.4.21: RESYNC: (1.15-1.16); FILE MERGED 2004/06/30 08:09:21 iha 1.15.4.20: #i30866# charttype dialog without roadmap control 2004/06/17 10:03:29 bm 1.15.4.19: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/06/04 08:05:04 bm 1.15.4.18: +GetDrawModelUNO 2004/06/01 19:03:50 iha 1.15.4.17: new 3D view/effects dialog 2004/05/24 17:47:30 bm 1.15.4.16: data source dialog is deprecated -> is a tabpage now 2004/05/17 17:33:54 iha 1.15.4.15: provide object naming; resource cleanup 2004/04/27 13:31:03 bm 1.15.4.14: DataSourceDialog needs a context to create new data series 2004/04/26 17:33:26 iha 1.15.4.13: #i27367# exchanged own controller mutex against solar mutex because of deadlocks during old api access 2004/04/26 11:15:29 iha 1.15.4.12: #i27367# offer access to created shapes for old api 2004/04/21 16:56:46 iha 1.15.4.11: #i20344# replace old type dialog with new type page 2004/04/21 11:35:17 bm 1.15.4.10: locked SolarMutexes added 2004/04/08 15:20:31 iha 1.15.4.9: added slot SelectSourceRanges 2004/04/08 12:29:51 iha 1.15.4.8: #i20344# offer update slot for view update after wizard has closed 2004/04/07 21:52:47 iha 1.15.4.7: #i20344# added method executeDispatch_CreationWizard 2004/03/24 10:33:51 bm 1.15.4.6: switch to internal calc again in "SaveAll" (Test-method) 2004/03/19 14:32:50 bm 1.15.4.5: XDataSource now contains XLabeledDataSources 2004/03/05 16:44:47 bm 1.15.4.4: lcl_isFormatObjectCommand: return false in else-path (return was missing) 2004/03/05 15:01:43 iha 1.15.4.3: differetn menu creation + changed from slot url scheme to uno url scheme due to menubar framework changes 2004/02/18 17:07:43 iha 1.15.4.2: handle lifetime of the ChartCindow correct 2004/02/13 16:51:19 bm 1.15.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [175bccaad39db82617e8ccda687e352952510cb9]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/02/20 14:47:24 iha 1.5.4.3: move SchItemPool from controller to view lib -> ChartItemPool 2005/10/07 11:30:47 bm 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2004/03/18 16:25:00 iha 1.5.4.1: added SeriesOptionsItemConverter


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f865118263cafadb42da50e40b0266c8f3f63ccd]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2006/10/18 17:07:02 bm 1.6.4.5: RESYNC: (1.7-1.8); FILE MERGED 2006/01/20 17:00:30 bm 1.6.4.4: Titles: the Reference size for CharHeight is in a different propertyset than the actual font sizes 2005/10/07 11:33:08 bm 1.6.4.3: RESYNC: (1.6-1.7); FILE MERGED 2005/07/12 12:57:03 bm 1.6.4.2: use named properties for gradients etc. in chart model 2004/05/07 09:14:22 bm 1.6.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1a4c04a2128787b3887b307816aa145de5df9de0]

INTEGRATION: CWS chart2mst3 (1.12.4); FILE MERGED 2007/05/14 20:04:42 bm 1.12.4.8: RESYNC: (1.14-1.15); FILE MERGED 2006/10/18 17:06:52 bm 1.12.4.7: RESYNC: (1.13-1.14); FILE MERGED 2006/02/20 14:47:48 iha 1.12.4.6: move SchItemPool from controller to view lib -> ChartItemPool 2006/01/20 17:00:39 bm 1.12.4.5: cleanup 2005/10/07 11:32:56 bm 1.12.4.4: RESYNC: (1.12-1.13); FILE MERGED 2005/06/23 14:38:03 iha 1.12.4.3: correct support for statistic properties 2005/04/13 08:46:35 iha 1.12.4.2: moved functionality to RegressionCurveHelper 2004/05/07 09:14:22 bm 1.12.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [95ad20bcaddab9be9bf90b75685da5c2048d2a09]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/20 08:10:25 iha 1.1.2.16: #i75393# Connect Bars per diagram not per series 2007/02/08 21:25:36 iha 1.1.2.15: resync m195 -> m202 2006/04/10 15:03:33 iha 1.1.2.14: api restructure axis, grids, scales and increments 2006/04/10 12:25:06 iha 1.1.2.13: api restructure axis, grids, scales and increments 2006/01/20 17:00:38 bm 1.1.2.12: cleanup 2005/11/28 15:35:40 bm 1.1.2.11: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/23 15:16:32 iha 1.1.2.10: support BarOverlap and GapWidth 2005/10/24 11:06:39 iha 1.1.2.9: coordinate system restructure 2005/10/13 17:38:47 iha 1.1.2.8: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 09:20:29 bm 1.1.2.7: license header change 2005/05/04 13:29:56 iha 1.1.2.6: moved code to new methods DiagramHelper::isSeriesAttachedToMainAxis ans DiagramHelper::attachSeriesToAxis 2005/04/13 08:48:58 iha 1.1.2.5: . 2004/09/16 08:25:17 iha 1.1.2.4: implement api redesign 2004/05/07 09:14:21 bm 1.1.2.3: enabling member-ids for all items 2004/03/19 10:57:53 iha 1.1.2.2: corrected functionality 'attachSeriesToDifferentCoordinateSystem' and moved to DataSeriesTreeHelper 2004/03/18 16:24:24 iha 1.1.2.1: new to atach series to different axis Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cf3e50642285fd84cde43baf06ff72ddd18f14ad]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/02/20 14:47:11 iha 1.2.4.7: move SchItemPool from controller to view lib -> ChartItemPool 2005/11/28 15:35:40 bm 1.2.4.6: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/23 16:52:29 iha 1.2.4.5: cleanup SchSfxItemIds.hxx + removed unused defines 2005/11/23 15:16:08 iha 1.2.4.4: support BarOverlap and GapWidth 2005/10/07 11:32:45 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/03/18 16:31:08 iha 1.2.4.2: added nSeriesOptionsWhichPairs 2004/03/04 13:13:28 iha 1.2.4.1: cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3cc25908341bc2373caf35dbe10d0097ba054bcf]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2006/10/18 17:06:44 bm 1.3.4.3: RESYNC: (1.4-1.5); FILE MERGED 2005/10/07 11:32:19 bm 1.3.4.2: RESYNC: (1.3-1.4); FILE MERGED 2004/05/07 09:14:21 bm 1.3.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [be68b643015ddd84fd5d30cf8d0621e926c5251e]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/03/19 15:09:01 iha 1.6.4.11: #i73605#, #i75389# use correct numberformat for scale tabpage and numbers tabpage 2006/10/18 17:06:36 bm 1.6.4.10: RESYNC: (1.7-1.8); FILE MERGED 2006/09/24 09:12:54 iha 1.6.4.9: #i61970# correct implementation of axis at 2006/04/10 15:03:32 iha 1.6.4.8: api restructure axis, grids, scales and increments 2006/04/10 12:25:06 iha 1.6.4.7: api restructure axis, grids, scales and increments 2006/02/20 14:46:55 iha 1.6.4.6: move SchItemPool from controller to view lib -> ChartItemPool 2005/12/01 18:54:15 iha 1.6.4.5: create axis title with correct rotation default + don't mix x and y in barcharts 2005/10/07 11:32:09 bm 1.6.4.4: RESYNC: (1.6-1.7); FILE MERGED 2005/08/18 15:20:41 bm 1.6.4.3: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/07/12 12:57:03 bm 1.6.4.2: use named properties for gradients etc. in chart model 2004/03/18 16:30:31 iha 1.6.4.1: changed parameters in constructor of DataPointItemConverter


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fb7897c1b8ccdc489d9aaeca81c9ae58a65d0824]

INTEGRATION: CWS chart2mst3 (1.10.4); FILE MERGED 2007/05/14 20:04:36 bm 1.10.4.6: RESYNC: (1.12-1.13); FILE MERGED 2006/10/18 17:06:28 bm 1.10.4.5: RESYNC: (1.11-1.12); FILE MERGED 2005/10/07 11:31:58 bm 1.10.4.4: RESYNC: (1.10-1.11); FILE MERGED 2005/07/12 12:57:03 bm 1.10.4.3: use named properties for gradients etc. in chart model 2004/05/07 09:14:21 bm 1.10.4.2: enabling member-ids for all items 2004/03/29 13:25:28 bm 1.10.4.1: bool->sal_Bool because it is used for the API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [026333294975c30d6387e879163743d2f31157ff]

INTEGRATION: CWS chart2mst3 (1.7.4); FILE MERGED 2006/10/18 17:06:20 bm 1.7.4.4: RESYNC: (1.8-1.9); FILE MERGED 2006/03/07 12:50:38 bm 1.7.4.3: leading underscore in parameter to _disposing changed. The method itself is virtual, i.e. has to be changed in unotools 2005/10/07 11:31:47 bm 1.7.4.2: RESYNC: (1.7-1.8); FILE MERGED 2004/05/07 09:14:20 bm 1.7.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [696a35cb3b4e5856df80d1c9dd2bd4b02906f1be]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/05/15 11:49:00 bm 1.6.4.20: #i73604# RESYNC: additional changes for ItemId cleanup 2006/10/20 20:40:25 iha 1.6.4.19: implement gradient step count 2006/10/18 17:06:12 bm 1.6.4.18: RESYNC: (1.7-1.8); FILE MERGED 2006/06/14 18:42:49 bm 1.6.4.17: #i66438# also transparency gradient 2006/06/14 18:28:38 bm 1.6.4.16: #i66438# for named properties: set also the content, otherwise the preview is wrong and no list-entry is selected 2006/05/17 14:13:01 bm 1.6.4.15: support bitmap properties like tile, stretch, offsets etc. also for data points/series 2006/05/17 13:26:11 bm 1.6.4.14: bitmap properties (tile, stretch, etc.) 2005/11/24 18:32:42 bm 1.6.4.13: transparency gradients enabled 2005/11/24 15:08:27 bm 1.6.4.12: symbol graphics support 2005/10/07 11:31:37 bm 1.6.4.11: RESYNC: (1.6-1.7); FILE MERGED 2005/09/02 11:58:02 bm 1.6.4.10: hack for transparence item: QueryValue/PutValue use sal_Int32 for UNO, but sal_Int16 is needed 2005/07/22 12:54:42 bm 1.6.4.9: #124485# property FillBackground added 2005/07/12 15:28:18 bm 1.6.4.8: support fill bitmaps (GraphicObjectResolver still missing) 2005/07/12 14:41:17 bm 1.6.4.7: add hatch and dash names to tables 2005/07/12 12:57:02 bm 1.6.4.6: use named properties for gradients etc. in chart model 2005/06/16 07:55:46 iha 1.6.4.5: correct name for Property FillTransparenceGradient 2005/06/15 18:19:12 iha 1.6.4.4: correct name for Property FillTransparenceGradient 2005/05/13 12:14:31 bm 1.6.4.3: member ids for gradient and hatch corrected 2004/05/07 11:23:39 bm 1.6.4.2: enabling member-ids for all items 2004/05/07 09:14:20 bm 1.6.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a954901a2da94ca9feb75c929592ab1726744305]

INTEGRATION: CWS chart2mst3 (1.10.4); FILE MERGED 2007/05/15 11:49:00 bm 1.10.4.17: #i73604# RESYNC: additional changes for ItemId cleanup 2007/05/15 11:29:21 bm 1.10.4.16: RESYNC: wrong replacement id for which id 2007/05/14 20:04:29 bm 1.10.4.15: RESYNC: (1.12-1.13); FILE MERGED 2007/01/19 20:04:15 iha 1.10.4.14: #i73538# data labels: Uncheck 'show value' doen't work if modus is 'percentage' 2006/10/18 17:06:03 bm 1.10.4.13: RESYNC: (1.11-1.12); FILE MERGED 2005/12/20 14:08:48 dr 1.10.4.12: API struct member names without prefixes 2005/11/24 15:08:26 bm 1.10.4.11: symbol graphics support 2005/11/23 16:53:12 iha 1.10.4.10: cleanup SchSfxItemIds.hxx + removed unused defines 2005/10/07 11:31:25 bm 1.10.4.9: RESYNC: (1.10-1.11); FILE MERGED 2005/07/12 12:57:01 bm 1.10.4.8: use named properties for gradients etc. in chart model 2005/06/08 11:28:14 iha 1.10.4.7: use number format key at API instead of string 2004/07/01 13:59:31 iha 1.10.4.6: removed unused code 2004/07/01 13:43:44 iha 1.10.4.5: provide parameter to overwrite fill color 2004/05/07 09:14:20 bm 1.10.4.4: enabling member-ids for all items 2004/03/18 16:29:30 iha 1.10.4.3: added SeriesOptionsItemConverter + changed parameters in constructor 2004/03/17 11:06:00 bm 1.10.4.2: superfluous ; 2004/03/08 18:38:42 iha 1.10.4.1: added Geometry3D to DataPointPoperties


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2b017822188f136b0f2db753cec2e71384a4e6b5]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/05/14 20:04:23 bm 1.6.4.9: RESYNC: (1.8-1.9); FILE MERGED 2006/10/18 17:05:55 bm 1.6.4.8: RESYNC: (1.7-1.8); FILE MERGED 2006/07/07 17:03:29 iha 1.6.4.7: if about to set fontsize also check if the reference size has changed 2006/02/28 14:40:04 bm 1.6.4.6: do not setPropertyValue in FillSpecialItem 2006/01/24 10:48:59 bm 1.6.4.5: set new reference size only if there was a reference size before (auto-scaling on) 2006/01/20 16:48:39 bm 1.6.4.4: Titles: the Reference size for CharHeight is in a different propertyset than the actual font sizes, therefore +GetRefSizePropertySet() 2005/10/07 11:31:15 bm 1.6.4.3: RESYNC: (1.6-1.7); FILE MERGED 2004/05/07 09:14:19 bm 1.6.4.2: enabling member-ids for all items 2004/04/13 16:05:04 bm 1.6.4.1: #i26557# use MID_FONTHEIGHT id for SvxFontHeightItem


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5640cd082e566c28a1517e0dd5cdef21d8d46c27]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/05/15 11:49:00 bm 1.6.4.16: #i73604# RESYNC: additional changes for ItemId cleanup 2007/03/26 17:25:31 iha 1.6.4.15: #i75655# crash when sourcefomat was disabled withoutt changing the format itself 2007/03/26 13:51:17 iha 1.6.4.14: #i75655# crash when sourcefomat was disabled withoutt changing the format itself 2007/03/19 15:05:48 iha 1.6.4.13: #i73605#, #i75389# use correct numberformat for scale tabpage and numbers tabpage 2006/10/18 17:05:46 bm 1.6.4.12: RESYNC: (1.7-1.8); FILE MERGED 2006/09/24 09:12:53 iha 1.6.4.11: #i61970# correct implementation of axis at 2006/04/10 15:03:32 iha 1.6.4.10: api restructure axis, grids, scales and increments 2006/04/10 12:25:06 iha 1.6.4.9: api restructure axis, grids, scales and increments 2006/02/20 14:46:43 iha 1.6.4.8: move SchItemPool from controller to view lib -> ChartItemPool 2005/10/24 11:06:39 iha 1.6.4.7: coordinate system restructure 2005/10/13 17:38:46 iha 1.6.4.6: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:31:04 bm 1.6.4.5: RESYNC: (1.6-1.7); FILE MERGED 2005/07/21 08:20:25 bm 1.6.4.4: handle source number format (corresponds to a void property NumberFormat at the axis) 2005/07/12 12:57:01 bm 1.6.4.3: use named properties for gradients etc. in chart model 2005/06/08 11:28:13 iha 1.6.4.2: use number format key at API instead of string 2004/05/07 09:14:19 bm 1.6.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e23eddd856d88bb8e7cd061ebb25b218828e54ff]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/11/03 16:15:52 bm 1.1.2.7: live-preview changes, lock controllers for multiple changes 2005/11/03 09:42:46 bm 1.1.2.6: adaption to new transformation matrix in model and live preview of 3d view dialog 2005/11/02 13:49:19 bm 1.1.2.5: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:25 bm 1.1.2.4: license header change 2004/06/08 14:26:43 iha 1.1.2.3: #i20329# offer simple 3D look; save last page 2004/06/04 12:05:45 iha 1.1.2.2: implement 3D View / Effects dialog 2004/06/01 17:26:52 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [195e4881001154efcdc4350562de389993922d1f]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2005/12/21 21:29:07 iha 1.4.4.6: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/23 15:15:44 iha 1.4.4.5: support BarOverlap and GapWidth 2005/10/07 11:30:38 bm 1.4.4.4: RESYNC: (1.4-1.5); FILE MERGED 2005/06/07 15:57:33 iha 1.4.4.3: use numberformatter from model 2004/05/17 17:33:53 iha 1.4.4.2: provide object naming; resource cleanup 2004/02/18 19:52:47 iha 1.4.4.1: removed unused code


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b82c15cc09d9925a02fe39b97c30a8459a9eb743]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/01/06 20:28:29 iha 1.1.1.1.4.3: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:30:27 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/07 21:40:52 iha 1.1.1.1.4.1: #i20344# reuse of resources TitleResources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [650daf5dc636de65afb0f18b9e477a4b5695d4af]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2006/01/06 20:28:28 iha 1.3.12.1: added legendposition to wizard and restructured legend postiion control classes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1e93b106667f76f0e4ac1ed51232de76e0f7960a]

INTEGRATION: CWS chart2mst3 (1.2.12); FILE MERGED 2006/04/10 15:03:32 iha 1.2.12.1: api restructure axis, grids, scales and increments


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d20e095a13c290883a88e8475e7ea58e2ce3a0ab]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/27 14:01:50 bm 1.1.2.13: Disable controls and tabs when invalid ranges were entered 2005/11/14 17:53:43 iha 1.1.2.12: don't update model again at end of execute as this was done already - undo is done outside of the dialog 2005/10/11 09:20:24 bm 1.1.2.11: license header change 2005/04/15 14:54:41 bm 1.1.2.10: data source and range choose dialog rework 2004/06/29 12:30:42 bm 1.1.2.9: class for sharing data and functionality between the range chooser and the data source (data series) tab pages. 2004/06/17 10:03:26 bm 1.1.2.8: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/05/24 17:47:59 bm 1.1.2.7: data source dialog is deprecated -> is a tabpage now 2004/05/07 16:24:53 iha 1.1.2.6: #i20344# moved RefButton to RangeSelectionButton 2004/04/27 13:28:48 bm 1.1.2.5: use internal role-name as key for role-entries. (listbox now contains internal-role-name (invisible), UI role-name, range string) 2004/04/15 17:25:47 bm 1.1.2.4: DialogSeries is now declared in cxx 2004/04/08 14:56:31 bm 1.1.2.3: applying categories to model, accept changes made in editfields (no check yet) 2004/04/07 18:46:22 bm 1.1.2.2: dialog uses internal data structure, additional field for label range 2004/03/19 14:26:55 bm 1.1.2.1: dialog for flexible source range selection


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b9f77a1865847e63274eb80e3c82a3ebbcd70808]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/13 15:36:16 bm 1.1.2.6: apply pending changes on window close 2006/07/19 15:55:24 bm 1.1.2.5: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/03/08 10:38:53 bm 1.1.2.4: new UI for DataEditor. Define TEST_NEW_UI in dlg_DataEditor.hrc to activate 2005/10/11 09:20:24 bm 1.1.2.3: license header change 2005/08/19 14:28:57 bm 1.1.2.2: enable icons in the toolbox 2005/08/17 16:53:38 bm 1.1.2.1: data editor for standalone data (first approach)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c26e05f1853818287be97e18ce0151ea1cca600b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/01/16 16:15:36 iha 1.1.2.7: #i73426# wrong help context bvecause of wrong window hirarchy 2006/11/10 21:03:21 iha 1.1.2.6: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/06/24 13:05:58 iha 1.1.2.5: #i54915# chart wizard shouldn't overlap chart if possible 2005/11/15 15:30:22 bm 1.1.2.4: garbage collection, disposing, reference release issues 2005/10/11 09:20:24 bm 1.1.2.3: license header change 2004/04/08 12:26:36 iha 1.1.2.2: use macro APPHELPER_SERVICE_FACTORY_HELPER 2004/04/07 21:31:10 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [955dd4e4cd59343d645a31e450cac9933fe235af]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/07 16:52:05 bm 1.1.2.16: #i75207# use an overloaded leaveState() instead of disabling the roadmap entries. Disadvantage: the entries are shown as disabled, advantage: no crash 2007/02/28 16:07:50 bm 1.1.2.15: removed CHART2_ROADMAP_WIZARD define and else branch as we will not switch back from using the roadmap 2007/02/27 14:01:50 bm 1.1.2.14: Disable controls and tabs when invalid ranges were entered 2006/11/10 21:03:21 iha 1.1.2.13: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/03/10 10:20:41 iha 1.1.2.12: don't use leading underscore 2005/10/11 09:20:24 bm 1.1.2.11: license header change 2005/04/15 14:54:40 bm 1.1.2.10: data source and range choose dialog rework 2004/06/29 12:29:28 bm 1.1.2.9: class for sharing data and functionality between the range chooser and the data source (data series) tab pages. 2004/06/11 15:44:27 iha 1.1.2.8: activate roadmap again 2004/06/09 21:58:21 iha 1.1.2.7: disable roadmap again 2004/06/09 17:49:47 iha 1.1.2.6: enable roadmap 2004/06/08 19:30:34 iha 1.1.2.5: added stops at first and last page; added roadmap (if 0) 2004/06/03 10:03:29 iha 1.1.2.4: changed signiture 'createPage' 2004/05/27 15:58:11 iha 1.1.2.3: #i20344# provide charttype template 2004/04/21 16:55:41 iha 1.1.2.2: #i20344# replace old type dialog with new type page 2004/04/07 21:30:53 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5303ddbe6f0c5c578ab163dfe4472e60b08985e1]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2007/02/02 22:13:03 iha 1.5.4.5: some resource changes according to wizard spec 2005/10/07 11:29:19 bm 1.5.4.4: RESYNC: (1.5-1.6); FILE MERGED 2004/06/30 08:07:34 iha 1.5.4.3: #i30866# charttype dialog without roadmap control 2004/04/21 16:58:40 iha 1.5.4.2: #i20344# replace old type dialog with new type page 2004/03/24 19:05:22 bm 1.5.4.1: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8778a68dce6c23d3b68f34591034a4519080051f]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 11:28:53 bm 1.2.4.7: RESYNC: (1.2-1.3); FILE MERGED 2005/07/13 15:17:06 iha 1.2.4.6: update draw model tables before use in view and dialogs 2005/06/10 18:22:05 iha 1.2.4.5: transport gradients, hatches etc. from chart model to draw model for display in the dialogs 2005/06/07 15:56:48 iha 1.2.4.4: use numberformatter from model 2005/05/31 19:03:13 iha 1.2.4.3: create old api without controller 2005/04/13 08:55:53 iha 1.2.4.2: provide numberformatter 2004/09/27 14:15:58 iha 1.2.4.1: save - old api - provide access to gradient list and other


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fac2335fac878000b247b979a8706e101ef5e11e]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2005/10/07 11:28:42 bm 1.5.4.3: RESYNC: (1.5-1.6); FILE MERGED 2005/07/12 12:57:00 bm 1.5.4.2: use named properties for gradients etc. in chart model 2004/05/07 09:14:10 bm 1.5.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3dda732331f2f2164a1f322cae012a0def92b82d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/01/24 10:28:06 bm 1.1.2.3: pass ReferenceSizeProvider to allow setting correct Auto-Resize values for new objects 2005/10/11 09:20:23 bm 1.1.2.2: license header change 2004/04/07 21:30:35 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [02fcf06b02cf763b2f8c10004ab95eef93baef38]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/10 20:59:58 iha 1.1.2.1: prevent immidiate redraw in wizard and according dialogs (important for charts with many data)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c3a6ac2cba7d1fe94afb48c647002896680317cf]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/27 14:02:41 bm 1.1.2.1: Disable controls and tabs when invalid ranges were entered


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7849d13e5a0ec2a48bdd74e8560ec7ff2e4dbafb]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2005/10/07 11:28:31 bm 1.3.4.2: RESYNC: (1.3-1.4); FILE MERGED 2004/05/07 09:14:10 bm 1.3.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [715e542b02aaeeb0695c30b1808827375996af2e]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/20 08:09:36 iha 1.1.2.6: #i75393# Connect Bars per diagram not per series 2005/11/28 15:35:39 bm 1.1.2.5: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/23 15:15:12 iha 1.1.2.4: support BarOverlap and GapWidth 2005/10/11 09:20:23 bm 1.1.2.3: license header change 2004/05/07 09:14:09 bm 1.1.2.2: enabling member-ids for all items 2004/03/18 16:23:44 iha 1.1.2.1: new to attach series to different axis Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [47154519e544acf7cf6f8799d31c9b6ceeea68e9]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/02/01 17:04:42 iha 1.1.1.1.4.6: remove superfluous code from old context menu 2005/11/30 16:08:36 iha 1.1.1.1.4.5: menu changes 2005/11/28 14:20:00 iha 1.1.1.1.4.4: menu changes 2005/10/07 11:28:19 bm 1.1.1.1.4.3: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/08/17 16:56:06 bm 1.1.1.1.4.2: slotid for data editor re-activated 2004/03/05 15:09:05 iha 1.1.1.1.4.1: removed unused SID_ - unused due to menubar framework changes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a3dbe79f518464a3c4255a9e54e0670c6a76bd4c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:23 bm 1.1.2.2: license header change 2004/05/07 16:20:17 iha 1.1.2.1: #i20344# moved here from dlg_DataSource


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4db6fd0fd549f5b05f025fad356bc622743085e0]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/12/21 21:29:07 iha 1.1.2.6: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/11 09:20:23 bm 1.1.2.5: license header change 2005/07/23 00:01:19 iha 1.1.2.4: include axis title sizes in diagram position to support old api and fileformat 2004/09/07 10:07:35 bm 1.1.2.3: removed superfluous class-name before method declaration 2004/04/26 19:00:52 iha 1.1.2.2: #i27367# offer additional simpler interface to move objects 2004/04/26 13:04:31 iha 1.1.2.1: #i27367# helper for setSize/Position


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [efa24314e8636582d48dc05ce9f704d51ebed209]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/22 17:31:03 bm 1.1.2.6: #i68861# +getSelectedObjectText for the text shown in the status bar 2006/02/20 09:16:22 bm 1.1.2.5: +getHelpText for XChartDocument (in addition to XModel variant), +getNameForCID 2005/12/21 21:29:07 iha 1.1.2.4: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/10/11 09:20:23 bm 1.1.2.3: license header change 2005/07/13 11:46:31 iha 1.1.2.2: provide ui strings for help and accessibility 2004/05/17 17:46:07 iha 1.1.2.1: provide object naming


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8c6a381d484d932bd0a89f5046eca8b81e3c19c5]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/04/27 11:49:51 bm 1.1.2.2: allow flattening the diagram content in the hierarchy for keyboard navigation 2006/03/15 15:53:24 bm 1.1.2.1: moved here from tools (global inc)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [46dd42be5e228761d8ce369434074237262534d3]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2005/10/07 11:27:09 bm 1.3.4.2: RESYNC: (1.3-1.4); FILE MERGED 2004/05/07 09:14:09 bm 1.3.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c5aa9c55b829a0bbe7f8ed03f9554cc2c2e39026]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2005/10/07 11:26:57 bm 1.4.4.2: RESYNC: (1.4-1.5); FILE MERGED 2005/07/12 12:56:59 bm 1.4.4.1: use named properties for gradients etc. in chart model


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6d45b1969b0fe0d1f600dd37340c8149be44fa50]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2005/10/07 11:26:44 bm 1.4.4.3: RESYNC: (1.4-1.5); FILE MERGED 2005/07/12 12:56:59 bm 1.4.4.2: use named properties for gradients etc. in chart model 2004/05/07 09:14:08 bm 1.4.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1989eeffd0ba2f59e9d08d7c504623fe4a61dee3]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/01/27 09:51:20 bm 1.2.4.4: InlineContainer.hxx moved to comphelper 2005/10/07 11:26:31 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/05/07 09:14:08 bm 1.2.4.2: enabling member-ids for all items 2004/02/13 16:51:18 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4687ed08dd78e2712cce8609a9804a7d27d7dd8e]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2006/03/07 12:50:20 bm 1.6.4.4: leading underscore in parameter to _disposing changed. The method itself is virtual, i.e. has to be changed in unotools 2005/10/07 11:26:15 bm 1.6.4.3: RESYNC: (1.6-1.7); FILE MERGED 2004/05/07 09:14:08 bm 1.6.4.2: enabling member-ids for all items 2004/04/27 14:27:41 bm 1.6.4.1: warnings removed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ec8ceaebf6c7443344360b92f54b3a73be0092fc]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/12/08 16:37:43 bm 1.1.1.1.4.15: #i72361# help id for edit field with series names in own data dialog added 2006/03/11 13:56:39 iha 1.1.1.1.4.14: #i63018# added HelpId for Chart Window 2006/01/06 20:28:28 iha 1.1.1.1.4.13: added legendposition to wizard and restructured legend postiion control classes 2006/01/02 16:35:04 iha 1.1.1.1.4.12: #i58960# HelpId for Roadmap in Wizard 2005/12/06 18:54:10 iha 1.1.1.1.4.11: #i58020# added HelpIds HID_SCH_SERIES_LIST and HID_SCH_DATA_RANGES_LIST 2005/10/11 13:47:47 iha 1.1.1.1.4.10: #i55197# helpids for insert title 2005/10/11 13:01:59 iha 1.1.1.1.4.9: #i55200# helpids for insert data labels 2005/10/11 12:32:19 iha 1.1.1.1.4.8: #i55202# helpids for statistic dialog 2005/10/11 09:53:58 iha 1.1.1.1.4.7: #i55202# helpids for legend position 2005/10/07 11:26:05 bm 1.1.1.1.4.6: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/09/29 12:24:56 iha 1.1.1.1.4.5: #125781# missing helpIds for Insert:Ggrid and Insert:Axis 2005/09/27 15:05:06 iha 1.1.1.1.4.4: #i55138# add helpid for data ranges dialog 2005/09/20 17:39:29 iha 1.1.1.1.4.3: #125774# added missing helpid for smooth line dialog 2005/09/20 11:34:40 iha 1.1.1.1.4.2: #125773# added missing helpid for bar geometry listbox 2005/08/17 16:54:14 bm 1.1.1.1.4.1: some ids re-activated for data editor dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ba8ab3a00d7d8ea562e8c402ec3d4b812d21c033]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2005/10/07 11:25:51 bm 1.4.4.3: RESYNC: (1.4-1.5); FILE MERGED 2005/07/12 12:56:59 bm 1.4.4.2: use named properties for gradients etc. in chart model 2004/05/07 09:14:08 bm 1.4.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2ceb398e1e53bd0dc77fe9ab667931df329cc554]

INTEGRATION: CWS chart2mst3 (1.6.8); FILE MERGED 2006/10/20 21:06:11 iha 1.6.8.6: implement selection of additional shapes 2006/04/03 12:05:25 iha 1.6.8.5: prevent wrong reselection caused by ComeBackTimer of Draw 2005/10/07 11:25:36 bm 1.6.8.4: RESYNC: (1.6-1.7); FILE MERGED 2005/08/30 14:43:31 bm 1.6.8.3: +attachParentReferenceDevice 2005/08/29 08:24:47 iha 1.6.8.2: don't hold separat PageView 2005/07/05 15:35:34 iha 1.6.8.1: redefine diagram size


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0c3ab96eec04a8164e207de40eb6b5ca9be3e643]

INTEGRATION: CWS chart2mst3 (1.7.4); FILE MERGED 2005/10/07 11:25:26 bm 1.7.4.5: RESYNC: (1.7-1.8); FILE MERGED 2005/07/12 12:56:58 bm 1.7.4.4: use named properties for gradients etc. in chart model 2004/07/01 13:43:09 iha 1.7.4.3: provide parameter to overwrite fill color 2004/05/07 09:14:07 bm 1.7.4.2: enabling member-ids for all items 2004/03/18 16:26:43 iha 1.7.4.1: changed parameters in constructor


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3fd19e920c51d0333f4c91cd7ded8a0fcf9ea205]

INTEGRATION: CWS chart2mst3 (1.2.12); FILE MERGED 2005/11/29 18:03:38 bm 1.2.12.1: ConfigurationAccess is a singleton now (ViewSingletons no longer needed)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d64537d31ca0f1b2ead61a6f81e8d7048171dc85]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/08/08 15:00:54 iha 1.2.4.17: don't refresh addin when loading is not finished 2006/03/12 01:17:40 iha 1.2.4.16: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/03/10 10:20:41 iha 1.2.4.15: don't use leading underscore 2006/02/17 20:57:54 iha 1.2.4.14: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/06 13:55:39 iha 1.2.4.13: make WrappedPropertySet a MutexContainer 2005/11/15 15:30:20 bm 1.2.4.12: garbage collection, disposing, reference release issues 2005/11/08 16:08:10 bm 1.2.4.11: update mechanism for old API wrapper. Todo: implement for all objects and especially for chartdocument 2005/11/07 17:11:10 bm 1.2.4.10: XRefreshable removed 2005/10/07 11:24:59 bm 1.2.4.9: RESYNC: (1.2-1.3); FILE MERGED 2005/07/18 17:12:18 iha 1.2.4.8: update view in old api wrapped before saving 2005/07/07 16:27:48 bm 1.2.4.7: use wrapper for area to get correct named properties (hatches, gradients etc.) 2005/06/07 15:37:56 iha 1.2.4.6: removed inactive XNumberFormatsSupplier interface from wrapper 2005/05/31 19:02:10 iha 1.2.4.5: create old api without controller 2005/04/19 17:37:26 iha 1.2.4.4: improved old api support (introduced wrappedpropertyset ...) 2004/09/27 14:28:37 iha 1.2.4.3: save - old api - access correct gradient and oher lists 2004/03/02 09:34:53 bm 1.2.4.2: properties added (esp. the Has... properties) 2004/02/13 16:51:18 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e11f6f0dd5ba42374f1d7bffca71f7eac19597ed]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2006/01/27 07:58:18 bm 1.5.4.4: duplicate parameter name 2006/01/20 16:48:21 bm 1.5.4.3: Titles: the Reference size for CharHeight is in a different propertyset than the actual font sizes, therefore +GetRefSizePropertySet() 2005/10/07 11:24:45 bm 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2004/05/07 09:14:07 bm 1.5.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cb11e12bb7f2e18b8d130543b8380f327f4c618b]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/03/19 15:04:26 iha 1.6.4.7: #i73605#, #i75389# use correct numberformat for scale tabpage and numbers tabpage 2006/09/24 09:12:53 iha 1.6.4.6: #i61970# correct implementation of axis at 2006/04/10 12:25:06 iha 1.6.4.5: api restructure axis, grids, scales and increments 2005/10/13 17:38:46 iha 1.6.4.4: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:24:17 bm 1.6.4.3: RESYNC: (1.6-1.7); FILE MERGED 2005/07/12 12:56:57 bm 1.6.4.2: use named properties for gradients etc. in chart model 2004/05/07 09:14:06 bm 1.6.4.1: enabling member-ids for all items


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bbd284be240f1f5b9b4f0bc63a2d8a89ef91d14c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/23 09:52:46 bm 1.1.2.1: text support for titles. This class is instantiated directly by the controller as it needs a DrawView to work


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [27e98b1e94dc4c875e8a5442ff2a9328ef337625]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/24 15:53:09 bm 1.1.2.6: some typos that Windows ignored 2006/02/20 16:52:50 bm 1.1.2.5: notify selection changes 2006/02/20 09:50:40 bm 1.1.2.4: accessibility improvements 2005/10/11 09:20:22 bm 1.1.2.3: license header change 2005/09/30 18:49:30 iha 1.1.2.2: Accessibility - under construction 2005/07/08 14:51:43 iha 1.1.2.1: create and notify an accessible view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3f27edd4afaeb493116855074b5550eb11cd0a58]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/20 15:25:58 bm 1.1.2.2: color properties 2006/02/20 09:21:31 bm 1.1.2.1: new base class for accessibility objects that does not implement XAccessibleExtendedComponent


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a900c71c6d5d0779483d01ca8102192751de5de6]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:23:39 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/05/31 19:08:40 iha 1.1.1.1.4.1: create view without controller


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3fee1dd48fb24c5485a91a4c2352f01ebcb47572]

INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED 2007/02/07 13:07:33 iha 1.6.4.17: RESYNC: (1.9-1.10); FILE MERGED 2006/11/24 21:42:22 iha 1.6.4.16: incompatibel changes for aw024 2006/11/22 17:24:00 iha 1.6.4.15: RESYNC: (1.8-1.9); FILE MERGED 2006/10/20 21:33:55 iha 1.6.4.14: use method DrawViewWrapper::getSdrObject 2006/10/18 17:05:38 bm 1.6.4.13: RESYNC: (1.7-1.8); FILE MERGED 2006/08/02 16:37:04 bm 1.6.4.12: #i68041# reduce symbol default size to 0.25 cm 2005/10/07 11:24:02 bm 1.6.4.11: RESYNC: (1.6-1.7); FILE MERGED 2005/08/30 14:45:23 bm 1.6.4.10: get font list from draw-model's reference device to get printer fonts 2005/07/13 15:18:25 iha 1.6.4.9: update draw model tables before use in view and dialogs 2005/06/10 18:22:45 iha 1.6.4.8: transport gradients, hatches etc. from chart model to draw model for display in the dialogs 2005/06/07 15:55:52 iha 1.6.4.7: use numberformatter from model 2005/05/31 19:04:00 iha 1.6.4.6: create old api without controller 2005/04/13 08:56:39 iha 1.6.4.5: provide numberformatter 2004/09/27 16:07:06 iha 1.6.4.4: case mismatch 2004/09/27 14:19:45 iha 1.6.4.3: save - old api - provide access to gradient list and other 2004/08/26 13:15:24 iha 1.6.4.2: saver page creation 2004/04/21 14:06:28 bm 1.6.4.1: don't use static uno-Reference


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6bd22eda507ec3aa2259f896d7981068a7ed6855]

INTEGRATION: CWS chart2mst3 (1.9.8); FILE MERGED 2007/02/07 13:07:24 iha 1.9.8.18: RESYNC: (1.13-1.14); FILE MERGED 2006/11/28 10:46:19 bm 1.9.8.17: aw024 adaption corrected 2006/11/26 11:34:14 bm 1.9.8.16: aw024 adaptions 2006/11/24 21:42:22 iha 1.9.8.15: incompatibel changes for aw024 2006/11/22 17:23:52 iha 1.9.8.14: RESYNC: (1.12-1.13); FILE MERGED 2006/10/20 21:07:38 iha 1.9.8.13: implement selection of additional shapes 2006/10/18 17:05:30 bm 1.9.8.12: RESYNC: (1.10-1.12); FILE MERGED 2006/08/08 12:27:46 iha 1.9.8.11: avoid a paint call during the destructor hierarchy 2006/04/03 12:06:59 iha 1.9.8.10: prevent wrong reselection caused by ComeBackTimer of Draw 2006/02/22 16:40:15 bm 1.9.8.9: getNamedSdrObject: select nothing if name is an empty string 2005/11/29 18:00:19 bm 1.9.8.8: -ViewSingletons, ConfigurationAccess is a singleton itself now 2005/10/07 11:23:51 bm 1.9.8.7: RESYNC: (1.9-1.10); FILE MERGED 2005/09/13 17:31:57 iha 1.9.8.6: enable selection of 3D objects in scene 2005/08/30 14:44:17 bm 1.9.8.5: +attachParentReferenceDevice 2005/08/29 08:25:03 iha 1.9.8.4: don't hold separat PageView 2005/07/05 15:39:58 iha 1.9.8.3: redefine diagram size 2005/06/03 14:33:40 iha 1.9.8.2: don't manipulate page size in drawview 2005/05/31 19:08:17 iha 1.9.8.1: create view without controller


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [70e7c95b20c120f31edffae40cf6450c90ac92f4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:35 ihi 1.1.2.19: #i72301# German removed 2007/02/27 17:11:52 iha 1.1.2.18: change positions 2007/02/27 16:45:52 iha 1.1.2.17: change string according to wizard spec 2007/02/22 11:00:16 iha 1.1.2.16: shorter vertical line 2007/02/22 10:41:50 iha 1.1.2.15: more space for german text 2007/02/22 10:04:43 bm 1.1.2.14: encoding -> UTF8 2007/02/05 17:20:47 iha 1.1.2.13: some resource changes according to wizard spec 2007/02/02 23:04:13 iha 1.1.2.12: some resource changes according to wizard spec 2006/01/12 17:57:26 iha 1.1.2.11: some position changes to wizard page 4 2006/01/06 20:27:28 iha 1.1.2.10: added legendposition to wizard and restructured legend postiion control classes 2005/10/11 09:20:19 bm 1.1.2.9: license header change 2004/08/10 12:16:19 bm 1.1.2.8: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/08 22:16:15 iha 1.1.2.7: changed positions 2004/05/17 17:33:53 iha 1.1.2.6: provide object naming; resource cleanup 2004/05/07 16:39:07 iha 1.1.2.5: #i20344# more distance below subtype list 2004/05/05 20:51:43 iha 1.1.2.4: #i20344# removed wrong HelpId; some cleanup 2004/04/22 15:00:46 iha 1.1.2.3: #i20344# chabged legend, grid and title resources 2004/04/08 08:53:34 bm 1.1.2.2: wrong case in include file 2004/04/07 21:27:32 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b7578b526aaaf31187a3c55a7b196113ccfbf148]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/02 23:04:57 iha 1.1.2.11: some resource changes according to wizard spec 2006/11/10 21:03:07 iha 1.1.2.10: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/03/10 10:20:41 iha 1.1.2.9: don't use leading underscore 2006/01/23 15:55:34 iha 1.1.2.8: #i61054# disable next button at wizard correctly 2006/01/06 20:27:28 iha 1.1.2.7: added legendposition to wizard and restructured legend postiion control classes 2005/11/14 18:16:25 iha 1.1.2.6: don't change model during initialization of controls 2005/10/11 09:20:19 bm 1.1.2.5: license header change 2004/06/09 17:45:49 iha 1.1.2.4: live update 2004/04/27 15:00:39 iha 1.1.2.3: warnings removed 2004/04/22 15:00:46 iha 1.1.2.2: #i20344# chabged legend, grid and title resources 2004/04/07 21:27:45 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [975d1730be9e11a047db2581be762c70f6d22131]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/02 23:03:36 iha 1.1.2.6: some resource changes according to wizard spec 2006/01/06 20:27:27 iha 1.1.2.5: added legendposition to wizard and restructured legend postiion control classes 2005/10/11 09:20:19 bm 1.1.2.4: license header change 2004/04/22 15:00:45 iha 1.1.2.3: #i20344# chabged legend, grid and title resources 2004/04/19 14:07:56 iha 1.1.2.2: concentrate ResourceIds to avoid dublicates 2004/04/07 21:27:18 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [511cdae06e5b94857f398047f266ff51771e4865]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:17 bm 1.1.2.26: #i74635# ResMgr cleanup ResId -> SchResId 2007/02/27 16:46:42 iha 1.1.2.25: change string according to wizard spec 2007/02/08 21:25:35 iha 1.1.2.24: resync m195 -> m202 2007/02/02 23:03:06 iha 1.1.2.23: some resource changes according to wizard spec 2006/11/10 21:03:07 iha 1.1.2.22: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/10/27 14:59:20 iha 1.1.2.21: name consolidation 2006/10/21 11:02:40 iha 1.1.2.20: removed string STR_GRIDLINES use TR_OBJECT_GRIDS instead 2006/04/10 15:03:32 iha 1.1.2.19: api restructure axis, grids, scales and increments 2006/03/10 10:20:41 iha 1.1.2.18: don't use leading underscore 2006/01/24 10:35:46 bm 1.1.2.17: ChartModelHelper::findDiagram now also works with chart2::XChartDocument 2006/01/23 15:55:08 iha 1.1.2.16: #i61054# disable next button at wizard correctly 2006/01/12 17:54:54 iha 1.1.2.15: change name of wizard step 4 according to spec 2006/01/06 20:27:27 iha 1.1.2.14: added legendposition to wizard and restructured legend postiion control classes 2005/12/06 19:00:31 iha 1.1.2.13: #i58065# use grid HelpIds for Grid ChaeckBoxes 2005/11/18 18:19:53 iha 1.1.2.12: restructuring for proper subgrid support 2005/11/15 10:55:34 iha 1.1.2.11: only change model if controls have changed 2005/11/14 18:16:49 iha 1.1.2.10: don't change model during initialization of controls 2005/11/14 15:59:30 iha 1.1.2.9: remove direct view update call as automatic updates are now available and guard against to many view updates 2005/10/11 09:20:18 bm 1.1.2.8: license header change 2005/06/16 12:55:35 iha 1.1.2.7: create legend on demand 2004/06/09 17:46:10 iha 1.1.2.6: live update 2004/05/17 17:33:53 iha 1.1.2.5: provide object naming; resource cleanup 2004/05/05 20:52:27 iha 1.1.2.4: #i20344# added page title 2004/04/27 13:32:41 iha 1.1.2.3: warnings removed 2004/04/22 15:00:45 iha 1.1.2.2: #i20344# chabged legend, grid and title resources 2004/04/07 21:27:08 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e2bb31f7df002f496b99518cd988ef922cac3fad]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:05:54 bm 1.1.1.1.4.9: RESYNC: (1.5-1.6); FILE MERGED 2007/04/23 12:32:35 ihi 1.1.1.1.4.8: #i72301# German removed 2006/11/01 16:10:41 iha 1.1.1.1.4.7: cleanup resources: removed obsolete x-commenet string 2005/10/07 11:23:26 bm 1.1.1.1.4.6: RESYNC: (1.4-1.5); FILE MERGED 2004/08/30 22:36:06 bm 1.1.1.1.4.5: RESYNC: (1.3-1.4); FILE MERGED 2004/08/10 12:16:18 bm 1.1.1.1.4.4: resource changes (removal of translations and change to de, en-US and x-comment 2004/08/04 20:14:52 bm 1.1.1.1.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/06/03 03:39:04 iha 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/05/17 17:33:53 iha 1.1.1.1.4.1: provide object naming; resource cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ade24aca190d9cb53ef56d31f6e7dd150b42d928]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2005/10/07 11:23:14 bm 1.3.4.4: RESYNC: (1.5-1.6); FILE MERGED 2004/09/07 10:05:37 bm 1.3.4.3: header for FixedLine/FixedText was missing 2004/08/30 22:35:59 bm 1.3.4.2: RESYNC: (1.3-1.5); FILE MERGED 2004/03/04 12:32:09 iha 1.3.4.1: cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d43187a949fd7ba163dd5f316dd2bcbb9d087594]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/05/14 20:04:00 bm 1.2.4.6: RESYNC: (1.6-1.8); FILE MERGED 2006/10/18 17:05:23 bm 1.2.4.5: RESYNC: (1.5-1.6); FILE MERGED 2006/02/20 14:45:46 iha 1.2.4.4: move SchItemPool from controller to view lib -> ChartItemPool 2005/10/07 11:22:56 bm 1.2.4.3: RESYNC: (1.4-1.5); FILE MERGED 2004/08/30 22:35:52 bm 1.2.4.2: RESYNC: (1.2-1.4); FILE MERGED 2004/03/04 12:32:34 iha 1.2.4.1: cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ccec6893952219524da9b63623464610ead3c44c]

INTEGRATION: CWS chart2mst3 (1.2.20); FILE MERGED 2007/04/23 12:32:35 ihi 1.2.20.4: #i72301# German removed 2005/12/05 18:14:29 iha 1.2.20.3: moved down checkbox for bar connectors a little 2005/10/07 11:22:43 bm 1.2.20.2: RESYNC: (1.2-1.4); FILE MERGED 2004/08/10 12:16:18 bm 1.2.20.1: resource changes (removal of translations and change to de, en-US and x-comment


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [dbf93fd94948f7c295191c658a6e157c19a0ec89]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/05/14 20:03:54 bm 1.2.4.8: RESYNC: (1.4-1.5); FILE MERGED 2006/10/18 17:05:15 bm 1.2.4.7: RESYNC: (1.3-1.4); FILE MERGED 2006/02/20 14:45:46 iha 1.2.4.6: move SchItemPool from controller to view lib -> ChartItemPool 2005/11/23 16:51:29 iha 1.2.4.5: cleanup SchSfxItemIds.hxx + removed unused defines 2005/11/23 15:17:27 iha 1.2.4.4: support BarOverlap and GapWidth 2005/10/07 11:22:15 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/06/01 18:53:38 iha 1.2.4.2: no warnings+cleanup 2004/04/27 15:00:39 iha 1.2.4.1: warnings removed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [dead1ffe4fcbc7a563a573616ee6629c2c2edbe2]

INTEGRATION: CWS chart2mst3 (1.3.20); FILE MERGED 2007/04/25 01:05:43 bm 1.3.20.7: RESYNC: (1.5-1.6); FILE MERGED 2007/04/23 12:32:35 ihi 1.3.20.6: #i72301# German removed 2007/03/04 14:45:20 iha 1.3.20.5: changes according to Scales and Intervals Spec 2007/03/03 10:07:20 iha 1.3.20.4: corrected some strings and shortcuts 2006/10/27 18:42:09 iha 1.3.20.3: added warnings STR_STEP_GT_ZERO and STR_BAD_LOGARITHM tp scale tab page + remove unused code 2005/10/07 11:21:20 bm 1.3.20.2: RESYNC: (1.3-1.5); FILE MERGED 2004/08/10 12:16:18 bm 1.3.20.1: resource changes (removal of translations and change to de, en-US and x-comment


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e4ffa582d8021390a0a879d2e1791a1295db2cea]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2006/10/27 18:42:09 iha 1.3.12.1: added warnings STR_STEP_GT_ZERO and STR_BAD_LOGARITHM tp scale tab page + remove unused code


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ab2a11a68656eeec1ffd5c779048078d0fd32eeb]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/05/18 16:12:16 bm 1.2.4.13: #i74635# ResMgr cleanup ResId -> SchResId 2007/05/14 20:03:33 bm 1.2.4.12: RESYNC: (1.5-1.7); FILE MERGED 2007/05/03 08:07:36 iha 1.2.4.11: #i76842# warning for scale tabpage when min > max 2007/03/19 15:01:38 iha 1.2.4.10: #i73605#, #i75389# use correct numberformat for scale tabpage and numbers tabpage 2007/03/04 14:44:44 iha 1.2.4.9: changes according to Scales and Intervals Spec 2007/02/06 12:07:58 iha 1.2.4.8: warning for major interval <=0 2006/10/27 18:42:09 iha 1.2.4.7: added warnings STR_STEP_GT_ZERO and STR_BAD_LOGARITHM tp scale tab page + remove unused code 2006/10/18 17:04:59 bm 1.2.4.6: RESYNC: (1.4-1.5); FILE MERGED 2006/02/20 14:45:46 iha 1.2.4.5: move SchItemPool from controller to view lib -> ChartItemPool 2006/01/25 09:59:39 bm 1.2.4.4: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 11:20:56 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/05/17 17:33:52 iha 1.2.4.2: provide object naming; resource cleanup 2004/04/27 15:00:38 iha 1.2.4.1: warnings removed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2fcd3773f1c3969f300e2d5c0cee8ab625fea6fc]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:35 ihi 1.1.2.10: #i72301# German removed 2007/02/09 12:31:19 bm 1.1.2.9: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2006/10/09 17:18:33 bm 1.1.2.8: hide range chooser buttons if no range chooser is available (instead of just disabling) 2006/06/28 09:51:56 dr 1.1.2.7: german umlauts in UTF-8 2005/10/11 09:20:18 bm 1.1.2.6: license header change 2004/08/10 12:16:18 bm 1.1.2.5: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/09 18:43:47 iha 1.1.2.4: minor resource changes 2004/05/05 20:54:37 iha 1.1.2.3: #i20344# reorder controls; changes some strings 2004/04/08 08:53:54 bm 1.1.2.2: wrong case in include file 2004/04/07 21:26:42 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fd98e7f253ffd7a7346f5c553ad6846ed08fc3f7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/27 13:45:32 bm 1.1.2.15: Disable controls and tabs when invalid ranges were entered 2007/02/09 12:31:18 bm 1.1.2.14: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2006/10/24 11:55:16 bm 1.1.2.13: enable range chooser in Calc 2005/11/14 17:55:21 iha 1.1.2.12: don't update model again at end of execute as this was done already - undo is done outside of the dialog 2005/10/11 09:20:18 bm 1.1.2.11: license header change 2005/05/09 09:50:57 bm 1.1.2.10: moved parts of API to data namespace 2005/04/19 14:34:41 bm 1.1.2.9: fixing the data source/range chooser dialogs 2005/04/15 14:48:09 bm 1.1.2.8: data source and range choose dialog rework 2004/06/29 12:21:55 bm 1.1.2.7: shared data for range chooser and data source tab pages 2004/06/17 10:03:25 bm 1.1.2.6: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/05/27 15:54:52 iha 1.1.2.5: #i20344# provide charttype template; added parameter bDoLiveUpdate 2004/05/26 13:18:41 bm 1.1.2.4: dialog behaviour improvements 2004/05/07 16:37:04 iha 1.1.2.3: #i20344# init controls from model and apply changes from controls to model 2004/05/05 20:57:02 iha 1.1.2.2: #i20344# start getting to work; added FixedLine; added title 2004/04/07 21:26:29 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ee611b73b1fe23a443fbb739c95d26e02e48483a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/09 12:31:18 bm 1.1.2.5: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2005/10/11 09:20:18 bm 1.1.2.4: license header change 2004/05/05 20:53:29 iha 1.1.2.3: #i20344# added FixedLine 2004/04/19 14:06:43 iha 1.1.2.2: concentrate ResourceIds to avoid dublicates 2004/04/07 21:26:12 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [383186a534d685213dae12fc36467e31f2eaf34c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.42: #i74635# ResMgr cleanup ResId -> SchResId 2007/03/07 15:19:17 bm 1.1.2.41: #i75204# set m_aLastValidRangeString correctly in isValid() 2007/03/07 13:15:02 bm 1.1.2.40: #i75179# enable WB_FORCECTRLBACKGROUND bit to allow setting red background of controls 2007/02/27 13:45:31 bm 1.1.2.39: Disable controls and tabs when invalid ranges were entered 2007/02/26 13:10:56 bm 1.1.2.38: use different foreground and background for invalid ranges, like in Firefox. 2007/02/09 12:31:18 bm 1.1.2.37: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2007/02/08 21:25:35 iha 1.1.2.36: resync m195 -> m202 2006/11/10 21:03:06 iha 1.1.2.35: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/10/27 14:59:20 iha 1.1.2.34: name consolidation 2006/10/24 11:55:16 bm 1.1.2.33: enable range chooser in Calc 2006/10/09 17:18:33 bm 1.1.2.32: hide range chooser buttons if no range chooser is available (instead of just disabling) 2006/10/09 16:01:49 bm 1.1.2.31: only enable range chooser buttons if a range chooser component is available 2006/05/29 17:55:17 iha 1.1.2.30: replaced STR_OBJECT_SOURCE_DATA by STR_OBJECT_DATA_RANGE 2006/03/17 13:27:26 bm 1.1.2.29: disable radio-buttons and check-boxes if the range is invalid or complex 2005/11/14 17:55:41 iha 1.1.2.28: don't update model again at end of execute as this was done already - undo is done outside of the dialog 2005/11/14 15:20:37 iha 1.1.2.27: removed superfluous include 2005/11/11 13:56:16 iha 1.1.2.26: remove direct view update call 2005/11/09 12:35:21 bm 1.1.2.25: setDirty only if changes do not come from initControlsFromModel 2005/10/11 09:20:17 bm 1.1.2.24: license header change 2005/09/02 11:43:28 bm 1.1.2.23: initControlsFromModel: checkboxes were set the other way round 2005/05/20 13:31:57 bm 1.1.2.22: string construction with resid problem 2005/05/12 13:56:39 bm 1.1.2.21: API change XDataProvider 2005/04/19 14:34:41 bm 1.1.2.20: fixing the data source/range chooser dialogs 2005/04/15 14:48:09 bm 1.1.2.19: data source and range choose dialog rework 2004/09/15 15:39:01 iha 1.1.2.18: implement api redesign 2004/07/05 11:35:42 iha 1.1.2.17: correct update cycle 2004/06/30 16:14:17 bm 1.1.2.16: some fixes 2004/06/29 12:21:54 bm 1.1.2.15: shared data for range chooser and data source tab pages 2004/06/23 13:03:06 bm 1.1.2.14: change defaults for arguments that are not yet automatically detected 2004/06/17 13:05:11 bm 1.1.2.13: some minor preliminary fixes 2004/06/17 12:46:54 bm 1.1.2.12: oops, checked in a test 2004/06/17 10:03:25 bm 1.1.2.11: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/06/09 18:43:47 iha 1.1.2.10: minor resource changes 2004/06/08 19:28:13 iha 1.1.2.9: changed title 2004/05/27 15:55:21 iha 1.1.2.8: #i20344# provide charttype template; added parameter bDoLiveUpdate 2004/05/26 13:18:40 bm 1.1.2.7: dialog behaviour improvements 2004/05/17 17:33:52 iha 1.1.2.6: provide object naming; resource cleanup 2004/05/10 17:07:42 iha 1.1.2.5: swapped FirstCellAsLabel and HasCategories 2004/05/10 15:42:48 iha 1.1.2.4: catch invalid range exception 2004/05/07 16:36:54 iha 1.1.2.3: #i20344# init controls from model and apply changes from controls to model 2004/05/05 20:57:02 iha 1.1.2.2: #i20344# start getting to work; added FixedLine; added title 2004/04/07 21:25:56 iha 1.1.2.1: i20344 new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4f860537d0c012cf68677fc03e6fa95e371cb969]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:05:36 bm 1.1.1.1.4.4: RESYNC: (1.4-1.5); FILE MERGED 2005/10/07 11:20:44 bm 1.1.1.1.4.3: RESYNC: (1.2-1.4); FILE MERGED 2004/08/10 12:16:18 bm 1.1.1.1.4.2: resource changes (removal of translations and change to de, en-US and x-comment 2004/04/19 15:04:17 iha 1.1.1.1.4.1: #i20344# reuse encapsulated 3D bar form control


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7d16bc6e5ed082d7cc247cb9b5ff08346b21c0e5]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 11:20:32 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/04/19 15:03:44 iha 1.2.4.1: #i20344# reuse encapsulated 3D bar form control


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4147475ff3f0a2378162cd560049139c4c18f084]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:04:51 bm 1.2.4.7: RESYNC: (1.3-1.4); FILE MERGED 2006/02/20 14:45:46 iha 1.2.4.6: move SchItemPool from controller to view lib -> ChartItemPool 2005/11/14 12:07:59 iha 1.2.4.5: keep parameter while switching between charttypes in charttype page 2005/10/07 11:20:21 bm 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2004/04/27 15:00:38 iha 1.2.4.3: warnings removed 2004/04/19 15:03:55 iha 1.2.4.2: #i20344# reuse encapsulated 3D bar form control 2004/03/08 18:37:29 iha 1.2.4.1: cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4c17d9b2ae78212d80bdda9d9e47388b8c638c51]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:34 ihi 1.1.2.6: #i72301# German removed 2006/06/28 09:51:56 dr 1.1.2.5: german umlauts in UTF-8 2005/10/11 09:20:17 bm 1.1.2.4: license header change 2004/08/10 12:16:18 bm 1.1.2.3: resource changes (removal of translations and change to de, en-US and x-comment 2004/05/17 17:33:52 iha 1.1.2.2: provide object naming; resource cleanup 2004/05/05 20:39:54 iha 1.1.2.1: #i20344# location tab page for chart wizard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6b272291124890196ae6013bde8f813b309c8a3a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/01/23 15:54:46 iha 1.1.2.3: #i61054# disable next button at wizard correctly 2005/10/11 09:20:17 bm 1.1.2.2: license header change 2004/05/05 20:40:10 iha 1.1.2.1: #i20344# location tab page for chart wizard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [648e6d3031075a8c7e70277933e006ef2897ea84]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:17 bm 1.1.2.2: license header change 2004/05/05 20:35:23 iha 1.1.2.1: #i20344# location tab page for chart wizard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5bc80b3e44c5c23bb77a0cab282e615aad4f3381]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.7: #i74635# ResMgr cleanup ResId -> SchResId 2007/02/08 21:25:35 iha 1.1.2.6: resync m195 -> m202 2006/10/27 14:59:20 iha 1.1.2.5: name consolidation 2006/01/23 15:54:28 iha 1.1.2.4: #i61054# disable next button at wizard correctly 2005/10/11 09:20:17 bm 1.1.2.3: license header change 2004/05/17 17:33:52 iha 1.1.2.2: provide object naming; resource cleanup 2004/05/05 20:40:36 iha 1.1.2.1: #i20344# location tab page for chart wizard


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [99952df1bbf6ffaee2a8a57465fce56ed5454538]

INTEGRATION: CWS chart2mst3 (1.2.20); FILE MERGED 2007/04/23 12:32:34 ihi 1.2.20.4: #i72301# German removed 2006/01/06 20:27:27 iha 1.2.20.3: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:20:10 bm 1.2.20.2: RESYNC: (1.2-1.3); FILE MERGED 2004/08/10 12:16:17 bm 1.2.20.1: resource changes (removal of translations and change to de, en-US and x-comment


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [246a3f0756605151877f0cb7b7ff58ca8c159a55]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/01/06 20:27:26 iha 1.2.4.3: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:19:59 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/09/07 10:04:06 bm 1.2.4.1: fixed order of members to fit order in dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [101c96398d9e8b5d0dcb94edc574b90ec01e3bec]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/05/14 20:03:23 bm 1.2.4.7: RESYNC: (1.4-1.6); FILE MERGED 2006/10/18 17:04:43 bm 1.2.4.6: RESYNC: (1.3-1.4); FILE MERGED 2006/02/20 14:45:45 iha 1.2.4.5: move SchItemPool from controller to view lib -> ChartItemPool 2006/01/06 20:27:26 iha 1.2.4.4: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:19:40 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/09/07 10:04:17 bm 1.2.4.2: fixed order of members to fit order in dialog 2004/06/01 18:52:40 iha 1.2.4.1: no warnings+cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bd6653d4912dbaf06486d018c964586b34610422]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:16 bm 1.1.2.3: license header change 2005/05/09 09:50:57 bm 1.1.2.2: moved parts of API to data namespace 2005/04/15 14:47:47 bm 1.1.2.1: helpers for data source dialogs


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cc8a35d84153f4c6a7b97b94819eb5f0425585c3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:35 iha 1.1.2.3: resync m195 -> m202 2005/10/11 09:20:16 bm 1.1.2.2: license header change 2005/04/15 14:47:35 bm 1.1.2.1: helpers for data source dialogs


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b7a39703fdf98c386738aaaef70221cffa223d3a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:34 ihi 1.1.2.16: #i72301# German removed 2007/02/22 15:03:59 bm 1.1.2.15: some case-mismatch fixes to correspond to spec 2007/02/09 12:31:18 bm 1.1.2.14: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2006/12/05 23:44:51 iha 1.1.2.13: #i71675# enable set data label range for xy charts 2006/11/01 15:36:56 iha 1.1.2.12: cleanup resources + changed variable names according to style guide 2006/06/28 09:51:56 dr 1.1.2.11: german umlauts in UTF-8 2005/12/06 18:54:55 iha 1.1.2.10: #i58020# added HelpIds HID_SCH_SERIES_LIST and HID_SCH_DATA_RANGES_LIST 2005/10/11 09:20:16 bm 1.1.2.9: license header change 2005/04/15 14:48:09 bm 1.1.2.8: data source and range choose dialog rework 2004/08/10 12:16:17 bm 1.1.2.7: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/29 15:43:54 bm 1.1.2.6: internal strings converted to ressource strings 2004/06/17 10:03:25 bm 1.1.2.5: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/06/09 18:43:47 iha 1.1.2.4: minor resource changes 2004/06/08 22:16:44 iha 1.1.2.3: changed positions 2004/05/26 13:18:40 bm 1.1.2.2: dialog behaviour improvements 2004/05/24 17:37:39 bm 1.1.2.1: Flexible Source Range Dialog became a tab page now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9ff8be940516f6cc997acbd4ba04914c26b6c9bc]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/27 16:28:00 bm 1.1.2.17: #i71233# disable dialog commit when there are invalid ranges or series with missing mandatory roles 2007/02/27 13:45:31 bm 1.1.2.16: Disable controls and tabs when invalid ranges were entered 2007/02/09 12:31:18 bm 1.1.2.15: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2006/12/05 23:45:17 iha 1.1.2.14: #i71675# enable set data label range for xy charts 2006/10/24 11:55:16 bm 1.1.2.13: enable range chooser in Calc 2006/06/28 11:18:32 dr 1.1.2.12: clean up tab order of controls 2005/11/14 17:54:33 iha 1.1.2.11: don't update model again at end of execute as this was done already - undo is done outside of the dialog 2005/10/11 09:20:16 bm 1.1.2.10: license header change 2005/05/12 20:02:17 sab 1.1.2.9: get access to ranges 2005/05/09 09:50:56 bm 1.1.2.8: moved parts of API to data namespace 2005/04/19 14:34:41 bm 1.1.2.7: fixing the data source/range chooser dialogs 2005/04/15 14:48:08 bm 1.1.2.6: data source and range choose dialog rework 2004/06/29 12:21:54 bm 1.1.2.5: shared data for range chooser and data source tab pages 2004/06/17 10:03:25 bm 1.1.2.4: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/05/27 15:54:21 iha 1.1.2.3: #i20344# provide charttype template 2004/05/26 13:18:40 bm 1.1.2.2: dialog behaviour improvements 2004/05/24 17:36:32 bm 1.1.2.1: Flexible Source Range Dialog became a tab page nowsource/controller/dialogs/tp_DataSource.src


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e5f174a499355d1ef42cbbd2d7c6c0eb2acaf4d6]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/09 12:31:18 bm 1.1.2.5: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2006/12/05 23:44:14 iha 1.1.2.4: #i71675# enable set data label range for xy charts 2005/10/11 09:20:16 bm 1.1.2.3: license header change 2004/06/17 10:03:25 bm 1.1.2.2: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/05/24 17:36:21 bm 1.1.2.1: Flexible Source Range Dialog became a tab page nowsource/controller/dialogs/tp_DataSource.src


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0c1c8f4a0e91ca9c3ffbc512e8e6b0c66143b496]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.56: #i74635# ResMgr cleanup ResId -> SchResId 2007/03/19 15:18:41 bm 1.1.2.55: #i75297# allow empty data series 2007/03/07 13:15:44 bm 1.1.2.54: #i75179# enable WB_FORCECTRLBACKGROUND bit to allow setting red background of controls 2007/03/02 13:59:44 bm 1.1.2.53: #i75058# catch exceptions when createDataSequenceByRangeRepresentation fails 2007/03/01 13:15:08 bm 1.1.2.52: #i71233# check for validity when other role has been selected 2007/02/27 16:27:59 bm 1.1.2.51: #i71233# disable dialog commit when there are invalid ranges or series with missing mandatory roles 2007/02/27 13:45:31 bm 1.1.2.50: Disable controls and tabs when invalid ranges were entered 2007/02/26 13:10:44 bm 1.1.2.49: use different foreground and background for invalid ranges, like in Firefox. 2007/02/09 12:31:18 bm 1.1.2.48: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2007/02/08 21:25:35 iha 1.1.2.47: resync m195 -> m202 2007/01/10 10:24:39 bm 1.1.2.46: #i72241# When you enter a label range without corresponding values, a new sequence is created. If the range of the label sequence is changed use this sequemce again instead of creating another sequence. Also: adapt a sloppy input into a correct range string in the role listbox (like a1 -> Sheet1.$A$1) 2006/12/11 17:49:25 bm 1.1.2.45: #i72308# allow to set the label before the values of a series 2006/12/11 17:31:54 bm 1.1.2.44: #i72308# allow to set the label before the values of a series 2006/12/11 16:30:42 bm 1.1.2.43: Unnamed series get an index from the second one on 2006/12/11 14:56:02 bm 1.1.2.42: #i72308# show "Unnamed series" instead of an empty string for series with no label (and no generatable label, e.g. a new series) 2006/12/05 23:46:01 iha 1.1.2.41: #i71675# enable set data label range for xy charts 2006/11/10 21:03:06 iha 1.1.2.40: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/11/02 12:26:17 bm 1.1.2.39: enable range chooser buttons for xy-chart 2006/11/01 15:36:56 iha 1.1.2.38: cleanup resources + changed variable names according to style guide 2006/10/27 14:40:49 bm 1.1.2.37: allow deleting the range for a label but not for values 2006/10/27 12:24:25 bm 1.1.2.36: remove categories when an empty string was entered 2006/10/27 11:26:51 bm 1.1.2.35: allow to add a categories range when there were no categories before 2006/10/25 11:24:11 bm 1.1.2.34: allow setting previously unset sequences, e.g. labels at data series with external data provider 2006/10/24 11:55:16 bm 1.1.2.33: enable range chooser in Calc 2006/10/09 17:18:32 bm 1.1.2.32: hide range chooser buttons if no range chooser is available (instead of just disabling) 2006/10/09 16:01:49 bm 1.1.2.31: only enable range chooser buttons if a range chooser component is available 2006/06/28 11:18:32 dr 1.1.2.30: clean up tab order of controls 2006/04/22 11:11:17 iha 1.1.2.29: park unused categories in scale with AxisType not being CATEGORY 2006/02/20 14:45:45 iha 1.1.2.28: move SchItemPool from controller to view lib -> ChartItemPool 2005/11/14 17:54:52 iha 1.1.2.27: don't update model again at end of execute as this was done already - undo is done outside of the dialog 2005/11/11 18:45:22 iha 1.1.2.26: move only compatible series 2005/11/11 14:41:52 iha 1.1.2.25: replace direct view update call with model->setModified call 2005/11/11 13:55:14 iha 1.1.2.24: guard DataRange Dialog against to many view updates 2005/11/10 09:27:52 dr 1.1.2.23: #i3997# crash when series does not contain any role 2005/10/11 09:20:15 bm 1.1.2.22: license header change 2005/08/29 14:46:56 bm 1.1.2.21: enable live preview again 2005/08/03 16:36:15 bm 1.1.2.20: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/05/09 09:50:56 bm 1.1.2.19: moved parts of API to data namespace 2005/04/19 14:34:40 bm 1.1.2.18: fixing the data source/range chooser dialogs 2005/04/15 14:48:08 bm 1.1.2.17: data source and range choose dialog rework 2004/09/15 15:39:01 iha 1.1.2.16: implement api redesign 2004/07/05 11:35:41 iha 1.1.2.15: correct update cycle 2004/06/30 16:14:16 bm 1.1.2.14: some fixes 2004/06/29 15:43:54 bm 1.1.2.13: internal strings converted to ressource strings 2004/06/29 12:21:53 bm 1.1.2.12: shared data for range chooser and data source tab pages 2004/06/17 13:05:11 bm 1.1.2.11: some minor preliminary fixes 2004/06/17 10:03:24 bm 1.1.2.10: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/06/10 11:31:11 iha 1.1.2.9: restore version 1.1.2.7 because hiding leads to more problems on linux 2004/06/09 21:57:29 iha 1.1.2.8: hide dialog instead of disabling 2004/06/08 22:18:10 iha 1.1.2.7: set data to dirty if ranges of sequences changes 2004/06/08 19:27:55 iha 1.1.2.6: changed title 2004/05/27 17:30:42 bm 1.1.2.5: use new getChartTypeForNewSeries method at template when adding series 2004/05/27 15:54:30 iha 1.1.2.4: #i20344# provide charttype template 2004/05/26 13:18:40 bm 1.1.2.3: dialog behaviour improvements 2004/05/25 11:49:01 bm 1.1.2.2: title string changed 2004/05/24 17:37:49 bm 1.1.2.1: Flexible Source Range Dialog became a tab page now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5035e79ec3d4504693f75af7747ffa63f841e122]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/05/14 20:03:16 bm 1.2.4.5: RESYNC: (1.4-1.6); FILE MERGED 2006/10/18 17:04:35 bm 1.2.4.4: RESYNC: (1.3-1.4); FILE MERGED 2006/02/20 14:45:45 iha 1.2.4.3: move SchItemPool from controller to view lib -> ChartItemPool 2005/10/07 11:18:58 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/05/17 17:33:52 iha 1.2.4.1: provide object naming; resource cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a8b3737aa2c557673ddc05aab8b5fc32d104f749]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:34 ihi 1.1.2.26: #i72301# German removed 2007/02/15 16:05:55 iha 1.1.2.25: layout change according to wizard spec 2007/02/05 17:19:54 iha 1.1.2.24: some resource changes according to wizard spec 2007/02/02 22:19:48 iha 1.1.2.23: some resource changes according to wizard spec 2006/12/11 17:39:08 iha 1.1.2.22: String changes according to wizard spec 2006/12/05 22:47:40 iha 1.1.2.21: correct separator line according to spec 2006/12/05 22:33:37 iha 1.1.2.20: correct button order according to wizard spec 2006/12/05 17:57:47 iha 1.1.2.19: String changes according to wizard spec 2006/08/21 17:03:46 iha 1.1.2.18: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/06/28 09:51:56 dr 1.1.2.17: german umlauts in UTF-8 2006/01/13 09:41:19 iha 1.1.2.16: name for Smoothline properties button 2005/11/30 14:02:40 iha 1.1.2.15: corrected spline strings 2005/10/11 09:20:15 bm 1.1.2.14: license header change 2005/09/20 17:40:43 iha 1.1.2.13: #125774# added missing helpid for smooth line dialog 2004/08/10 12:16:17 bm 1.1.2.12: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/09 20:17:41 iha 1.1.2.11: Smooth Line Properties Dialog 2004/06/08 22:15:36 iha 1.1.2.10: added spline properties dialog 2004/06/01 18:56:26 iha 1.1.2.9: add listbox for different 3D looks 2004/05/07 16:39:06 iha 1.1.2.8: #i20344# more distance below subtype list 2004/05/05 20:49:39 iha 1.1.2.7: #i20344# FixedLine on top; changed size; some cleanup 2004/04/21 17:01:40 iha 1.1.2.6: #i20344# Splines -> Smooth Lines 2004/04/20 17:17:00 iha 1.1.2.5: #i20344# added description to chart subtypes 2004/04/20 15:52:27 iha 1.1.2.4: #i20344# changed 'x axis with values' to 'x axis with categories' 2004/04/19 15:20:05 iha 1.1.2.3: #i20344# added separator for splines; removed line count 2004/04/08 08:54:10 bm 1.1.2.2: wrong case in include file 2004/04/07 21:29:03 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [99ffe80e3b6dfa50635288fdf104423f4723eb13]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/02 22:18:23 iha 1.1.2.10: some resource changes according to wizard spec 2006/11/10 21:03:06 iha 1.1.2.9: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/08/21 17:03:45 iha 1.1.2.8: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/03/10 10:20:41 iha 1.1.2.7: don't use leading underscore 2005/11/14 12:07:59 iha 1.1.2.6: keep parameter while switching between charttypes in charttype page 2005/10/11 09:20:15 bm 1.1.2.5: license header change 2004/05/27 15:52:19 iha 1.1.2.4: #i20344# provide charttype template; added parameter bDoLiveUpdate 2004/05/05 20:50:46 iha 1.1.2.3: #i20344# FixedLine on top 2004/04/19 15:17:40 iha 1.1.2.2: #i20344# enable extra controls; removed line count here 2004/04/07 21:29:32 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [72269501c48e0a5acef72cd78dee90241d7a524d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/02 22:17:58 iha 1.1.2.11: some resource changes according to wizard spec 2006/08/21 17:03:45 iha 1.1.2.10: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2005/10/11 09:20:15 bm 1.1.2.9: license header change 2004/06/09 20:17:41 iha 1.1.2.8: Smooth Line Properties Dialog 2004/06/08 22:18:36 iha 1.1.2.7: added spline properties dialog 2004/06/01 18:55:43 iha 1.1.2.6: add listbox for different 3D looks 2004/05/05 20:50:03 iha 1.1.2.5: #i20344# FixedLine on top; changed size; some cleanup 2004/04/20 15:52:46 iha 1.1.2.4: #i20344# changed 'x axis with values' to 'x axis with categories' 2004/04/19 15:19:20 iha 1.1.2.3: #i20344# added separator for splines; removed line count 2004/04/19 14:11:33 iha 1.1.2.2: concentrate ResourceIds to avoid dublicates 2004/04/07 21:29:50 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [82ad5c707cdcd7f0e20138303414a31717923c07]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.44: #i74635# ResMgr cleanup ResId -> SchResId 2007/04/19 16:10:08 iha 1.1.2.43: #i76130# write attribute sort-by-x-values per plot-area not per series 2007/02/28 17:17:37 iha 1.1.2.42: #i74528# use correct charttype template when swithcing between rows and columns 2007/02/15 16:06:16 iha 1.1.2.41: layout change according to wizard spec 2007/02/08 21:25:35 iha 1.1.2.40: resync m195 -> m202 2007/02/05 17:19:14 iha 1.1.2.39: some resource changes according to wizard spec 2007/02/02 22:20:20 iha 1.1.2.38: some resource changes according to wizard spec 2006/12/13 18:12:52 iha 1.1.2.37: indent shape control according to wizard spec 2006/11/10 21:03:06 iha 1.1.2.36: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/10/27 14:59:20 iha 1.1.2.35: name consolidation 2006/10/10 12:05:22 iha 1.1.2.34: hide subtype controls when no known main charttype was detected 2006/08/21 17:03:45 iha 1.1.2.33: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/06/24 19:41:51 iha 1.1.2.32: #i63312# correct preselction of 3D scheme 2006/03/10 10:20:40 iha 1.1.2.31: don't use leading underscore 2006/01/13 09:41:48 iha 1.1.2.30: name for Smoothline properties button 2005/11/14 17:30:52 iha 1.1.2.29: only send one change notification for stacking radio button change 2005/11/14 17:01:50 iha 1.1.2.28: only update model if not already done 2005/11/14 15:55:45 iha 1.1.2.27: remove direct view update call as automatic updates are now available and guard against to many view updates 2005/11/14 12:07:59 iha 1.1.2.26: keep parameter while switching between charttypes in charttype page 2005/10/11 09:20:15 bm 1.1.2.25: license header change 2005/09/27 09:17:04 iha 1.1.2.24: #125774# enable helpids for smooth-line-dialog (resource depth must be <3) 2005/08/15 17:04:05 iha 1.1.2.23: don't crash caused by illegal number of lines (if switching charttype from stock to column+line) 2004/06/30 12:40:51 iha 1.1.2.22: #i20329# added ThreeDLookScheme 2004/06/11 15:28:43 iha 1.1.2.21: different 3D scheme naming 2004/06/09 21:01:06 iha 1.1.2.20: separate Line and XY again 2004/06/09 20:17:41 iha 1.1.2.19: Smooth Line Properties Dialog 2004/06/09 17:48:24 iha 1.1.2.18: update enabling of extra controls 2004/06/09 16:23:17 iha 1.1.2.17: live update 2004/06/08 22:18:56 iha 1.1.2.16: added spline properties dialog 2004/06/01 18:56:04 iha 1.1.2.15: add listbox for different 3D looks 2004/05/27 15:52:37 iha 1.1.2.14: #i20344# provide charttype template; added parameter bDoLiveUpdate 2004/05/17 17:33:51 iha 1.1.2.13: provide object naming; resource cleanup 2004/05/05 20:48:48 iha 1.1.2.12: #i20344# FixedLine on top 2004/04/27 15:50:53 iha 1.1.2.11: warnings removed 2004/04/27 13:32:40 iha 1.1.2.10: warnings removed 2004/04/21 18:00:34 iha 1.1.2.9: #i20344# added pafe title 2004/04/20 17:17:00 iha 1.1.2.8: #i20344# added description to chart subtypes 2004/04/20 15:53:38 iha 1.1.2.7: #i20344# changed 'x axis with values' to 'x axis with categories'; + only disable spline order control - do not hide it 2004/04/20 14:07:27 iha 1.1.2.6: #i20344# added method adjustSubType 2004/04/19 15:18:37 iha 1.1.2.5: #i20344# enable extra controls; added separator for splines; removed line count here 2004/04/14 12:18:51 iha 1.1.2.4: added Area and Net Charttypes 2004/04/08 16:46:19 iha 1.1.2.3: temporary removed pie; added bar 2004/04/08 12:27:32 iha 1.1.2.2: make more failsave 2004/04/07 21:29:15 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bad6232223fcb2992015eb6b37cc3b5520930edc]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:05:26 bm 1.1.1.1.4.9: RESYNC: (1.5-1.6); FILE MERGED 2007/04/23 12:32:34 ihi 1.1.1.1.4.8: #i72301# German removed 2006/11/01 16:10:41 iha 1.1.1.1.4.7: cleanup resources: removed obsolete x-commenet string 2005/10/07 11:18:42 bm 1.1.1.1.4.6: RESYNC: (1.3-1.5); FILE MERGED 2004/09/01 13:32:23 bm 1.1.1.1.4.5: missing conflict resolution 2004/08/30 22:35:44 bm 1.1.1.1.4.4: RESYNC: (1.2-1.3); FILE MERGED 2004/08/10 12:16:17 bm 1.1.1.1.4.3: resource changes (removal of translations and change to de, en-US and x-comment 2004/08/04 20:14:34 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/05/17 17:33:51 iha 1.1.1.1.4.1: provide object naming; resource cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cb28bf39a78450cb8366481d83ad5913a6d0f5d7]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 11:18:27 bm 1.2.4.3: RESYNC: (1.5-1.6); FILE MERGED 2004/08/30 22:35:37 bm 1.2.4.2: RESYNC: (1.2-1.5); FILE MERGED 2004/03/04 12:25:06 iha 1.2.4.1: cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2ee65fa9eeabfcdb098e6c9797456456288b5474]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/05/14 20:03:10 bm 1.2.4.7: RESYNC: (1.6-1.7); FILE MERGED 2006/10/18 17:04:28 bm 1.2.4.6: RESYNC: (1.5-1.6); FILE MERGED 2006/02/20 14:45:45 iha 1.2.4.5: move SchItemPool from controller to view lib -> ChartItemPool 2005/10/07 11:18:15 bm 1.2.4.4: RESYNC: (1.4-1.5); FILE MERGED 2004/08/30 22:35:30 bm 1.2.4.3: RESYNC: (1.2-1.4); FILE MERGED 2004/06/01 18:54:07 iha 1.2.4.2: no warnings 2004/03/04 12:25:25 iha 1.2.4.1: cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9a252187fc8335beab7fe8669bef2e50632ab695]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:34 ihi 1.1.2.6: #i72301# German removed 2005/10/11 09:20:14 bm 1.1.2.5: license header change 2004/08/10 12:16:17 bm 1.1.2.4: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/12 13:39:04 iha 1.1.2.3: added keyboard shortcuts 2004/06/11 15:24:36 iha 1.1.2.2: changed control order 2004/06/01 17:33:49 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bd1d368170159bab8d5093a65aeb4f6f04b60eb6]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/07 23:22:13 iha 1.1.2.9: #i67833# simple 3D look - bring light to front 2006/06/13 19:14:17 iha 1.1.2.8: also rotate lights when rotating diagram 2005/11/03 16:16:06 bm 1.1.2.7: live-preview changes, lock controllers for multiple changes 2005/11/02 13:49:18 bm 1.1.2.6: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:14 bm 1.1.2.5: license header change 2004/06/11 15:24:13 iha 1.1.2.4: changed control order 2004/06/07 17:52:48 iha 1.1.2.3: implementation 2004/06/04 12:19:43 iha 1.1.2.2: implement 3D View / Effects dialog 2004/06/01 17:33:30 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [090fe48571041f7999bb717c5890f3985f354038]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:14 bm 1.1.2.3: license header change 2004/06/04 07:47:27 bm 1.1.2.2: newline at end added 2004/06/01 17:33:10 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [74d9fd8e068df25585d4cc48c64462cfb1b64076]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.16: #i74635# ResMgr cleanup ResId -> SchResId 2007/02/08 21:25:34 iha 1.1.2.15: resync m195 -> m202 2006/12/07 23:22:36 iha 1.1.2.14: #i67833# simple 3D look - bring light to front 2006/11/24 21:42:22 iha 1.1.2.13: incompatibel changes for aw024 2006/11/22 17:31:18 iha 1.1.2.12: resync 2006/11/01 15:36:56 iha 1.1.2.11: cleanup resources + changed variable names according to style guide 2006/06/13 19:15:03 iha 1.1.2.10: also rotate lights when rotating diagram 2005/11/03 16:16:06 bm 1.1.2.9: live-preview changes, lock controllers for multiple changes 2005/11/02 13:49:18 bm 1.1.2.8: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:14 bm 1.1.2.7: license header change 2004/06/11 15:25:23 iha 1.1.2.6: changed control order 2004/06/08 14:23:21 iha 1.1.2.5: default light is light 2 2004/06/07 17:52:56 iha 1.1.2.4: implementation 2004/06/04 12:19:55 iha 1.1.2.3: implement 3D View / Effects dialog 2004/06/04 08:03:13 bm 1.1.2.2: gcc treats CTOR as function declaration 2004/06/01 17:32:58 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [18b568aa5e2c8188877564bed8b1e3ace7ab3d94]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:34 ihi 1.1.2.15: #i72301# German removed 2006/07/10 16:54:25 iha 1.1.2.14: correct positions of metric fields 2006/06/30 22:56:10 iha 1.1.2.13: correct first values of metric fields 2006/06/23 15:50:20 iha 1.1.2.12: changed range for angles and added  unit to perspective field 2006/06/20 14:28:03 iha 1.1.2.11: valid angle range only from -179 to 180 2006/06/18 19:38:34 iha 1.1.2.10: implement camera distance 2006/06/09 16:28:19 iha 1.1.2.9: added z angle again and take the camera rotation into account while calculating angles and applying angles 2006/01/16 19:14:37 iha 1.1.2.8: added metric field for perspective 2006/01/14 15:34:42 iha 1.1.2.7: removed z anle and fixed lines + different wording 2005/10/11 09:20:13 bm 1.1.2.6: license header change 2004/08/10 12:16:17 bm 1.1.2.5: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/30 14:58:53 iha 1.1.2.4: adjust degree ranges 2004/06/12 13:38:36 iha 1.1.2.3: added keyboard shortcuts 2004/06/09 20:16:14 iha 1.1.2.2: no decimal digits for scene rotation 2004/06/01 17:32:42 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ceb315f435d511f64b3da9ddc1d547836f8ce425]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/06/20 14:28:13 iha 1.1.2.12: valid angle range only from -179 to 180 2006/06/18 19:39:56 iha 1.1.2.11: implement camera distance 2006/06/09 16:28:19 iha 1.1.2.10: added z angle again and take the camera rotation into account while calculating angles and applying angles 2006/01/23 12:53:37 bm 1.1.2.9: warning removed: member initialization 2006/01/16 19:14:36 iha 1.1.2.8: added metric field for perspective 2006/01/14 15:33:31 iha 1.1.2.7: removed z anle and fixed lines + different wording 2005/11/03 16:16:05 bm 1.1.2.6: live-preview changes, lock controllers for multiple changes 2005/11/03 09:43:21 bm 1.1.2.5: adaption to new transformation matrix in model and live preview of 3d view dialog 2005/11/02 13:49:18 bm 1.1.2.4: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:13 bm 1.1.2.3: license header change 2004/06/04 12:18:13 iha 1.1.2.2: implement 3D View / Effects dialog 2004/06/01 17:32:26 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6442ee66dba22074f02fda3a152b8e0f35a6990b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/06/09 16:28:19 iha 1.1.2.5: added z angle again and take the camera rotation into account while calculating angles and applying angles 2006/01/16 19:14:32 iha 1.1.2.4: added metric field for perspective 2006/01/14 15:34:19 iha 1.1.2.3: removed z anle and fixed lines + different wording 2005/10/11 09:20:13 bm 1.1.2.2: license header change 2004/06/01 17:32:01 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [03eef47a1cc1f9104fcfac6295ba5c6783328813]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.16: #i74635# ResMgr cleanup ResId -> SchResId 2007/02/08 21:25:34 iha 1.1.2.15: resync m195 -> m202 2006/06/30 21:43:43 iha 1.1.2.14: correct rounding for perspective field 2006/06/23 15:51:42 iha 1.1.2.13: changed direction of z rotation + correct rounding of angles 2006/06/20 14:28:21 iha 1.1.2.12: valid angle range only from -179 to 180 2006/06/18 19:40:47 iha 1.1.2.11: implement camera distance 2006/06/09 16:28:19 iha 1.1.2.10: added z angle again and take the camera rotation into account while calculating angles and applying angles 2006/01/16 19:14:32 iha 1.1.2.9: added metric field for perspective 2006/01/14 15:33:54 iha 1.1.2.8: removed z anle and fixed lines + different wording 2005/11/03 16:16:05 bm 1.1.2.7: live-preview changes, lock controllers for multiple changes 2005/11/03 09:43:20 bm 1.1.2.6: adaption to new transformation matrix in model and live preview of 3d view dialog 2005/11/02 13:49:18 bm 1.1.2.5: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:13 bm 1.1.2.4: license header change 2004/07/27 13:27:24 iha 1.1.2.3: #i32096# compliler ambiguity pow() 2004/06/04 12:18:36 iha 1.1.2.2: implement 3D View / Effects dialog 2004/06/01 17:31:35 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fdb5809b289acc3f944eb31f4db5f083858ef872]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:33 ihi 1.1.2.8: #i72301# German removed 2006/01/14 15:08:16 iha 1.1.2.7: replaced rounded edges spin field by a chekbox, disable rouded edges if objectlines are on, added custom entry to the scheme listbox 2005/10/11 09:20:12 bm 1.1.2.6: license header change 2004/08/10 12:16:16 bm 1.1.2.5: resource changes (removal of translations and change to de, en-US and x-comment 2004/07/26 14:48:43 iha 1.1.2.4: #i30126# string review changes 2004/06/12 13:38:04 iha 1.1.2.3: added keyboard shortcuts 2004/06/11 15:41:56 iha 1.1.2.2: replace shadinglist box by simple checkbox 2004/06/01 17:31:15 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ce31dceff567634f31e4cc639bee66600d787880]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/07 23:20:49 iha 1.1.2.10: #i67833# simple 3D look - bring light to front 2006/01/14 15:08:56 iha 1.1.2.9: replaced rounded edges spin field by a chekbox, disable rouded edges if objectlines are on, added custom entry to the scheme listbox 2005/11/15 20:20:37 iha 1.1.2.8: remove superfluous view updates 2005/11/03 16:16:05 bm 1.1.2.7: live-preview changes, lock controllers for multiple changes 2005/11/03 09:43:20 bm 1.1.2.6: adaption to new transformation matrix in model and live preview of 3d view dialog 2005/11/02 13:49:18 bm 1.1.2.5: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:12 bm 1.1.2.4: license header change 2004/06/11 15:41:55 iha 1.1.2.3: replace shadinglist box by simple checkbox 2004/06/08 14:24:17 iha 1.1.2.2: #i20329# implementation 2004/06/01 17:30:56 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1ee23928f90b407d1e34b6eb40bc33928db08482]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/01/14 15:07:29 iha 1.1.2.4: replaced rounded edges spin field by a chekbox, disable rouded edges if objectlines are on, added custom entry to the scheme listbox 2005/10/11 09:20:12 bm 1.1.2.3: license header change 2004/06/11 15:41:55 iha 1.1.2.2: replace shadinglist box by simple checkbox 2004/06/01 17:30:40 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [844f5086a6da5e64f968ff46324c9a53aebb3ccd]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.17: #i74635# ResMgr cleanup ResId -> SchResId 2007/02/08 21:25:34 iha 1.1.2.16: resync m195 -> m202 2007/02/08 18:10:10 iha 1.1.2.15: #i71963# enable mixed mode on checkboxes 2006/12/07 23:21:20 iha 1.1.2.14: #i67833# simple 3D look - bring light to front 2006/01/14 15:09:51 iha 1.1.2.13: replaced rounded edges spin field by a chekbox, disable rouded edges if objectlines are on, added custom entry to the scheme listbox 2005/11/15 20:20:56 iha 1.1.2.12: remove superfluous view updates 2005/11/03 16:16:04 bm 1.1.2.11: live-preview changes, lock controllers for multiple changes 2005/11/03 09:48:24 bm 1.1.2.10: oops 2005/11/03 09:45:57 bm 1.1.2.9: forced view update test removed 2005/11/03 09:38:26 bm 1.1.2.8: changed to live-preview 2005/11/02 13:49:18 bm 1.1.2.7: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:12 bm 1.1.2.6: license header change 2004/06/12 10:11:28 iha 1.1.2.5: renaming 3D scheme 2004/06/12 09:58:16 iha 1.1.2.4: shading interpretion error because of changed positions 2004/06/11 15:41:54 iha 1.1.2.3: replace shadinglist box by simple checkbox 2004/06/08 14:24:42 iha 1.1.2.2: #i20329# implementation 2004/06/01 17:27:18 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [50e6c030dac70e1e1066e4fcb6eb2c3e7e2b880e]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/11/10 21:03:06 iha 1.1.2.5: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2005/11/15 10:52:17 iha 1.1.2.4: offer method IsModified 2005/10/11 09:20:11 bm 1.1.2.3: license header change 2004/06/09 17:46:40 iha 1.1.2.2: added update hdl 2004/04/07 21:24:46 iha 1.1.2.1: i20344 new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5887a5385901c8f5fd2993074690fbfa0137a33e]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:11 bm 1.1.2.2: license header change 2004/04/07 21:24:17 iha 1.1.2.1: i20344 new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d502f20e2d22ca7683780ad4f573eb3a359917db]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.8: #i74635# ResMgr cleanup ResId -> SchResId 2007/02/08 21:25:34 iha 1.1.2.7: resync m195 -> m202 2006/11/10 21:03:06 iha 1.1.2.6: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2005/11/15 10:51:38 iha 1.1.2.5: offer method IsModified 2005/10/11 09:20:11 bm 1.1.2.4: license header change 2004/06/09 17:46:54 iha 1.1.2.3: added update hdl 2004/04/26 20:06:23 iha 1.1.2.2: #i28172# already exsisiting titles are deleted and created again loosing their properties 2004/04/07 21:24:32 iha 1.1.2.1: i20344 new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3c961c6ef2a3a2e6f2c6201660c3404daee3d6c7]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2007/04/25 01:05:12 bm 1.3.12.8: RESYNC: (1.3-1.4); FILE MERGED 2007/04/23 12:32:33 ihi 1.3.12.7: #i72301# German removed 2007/02/27 16:44:36 iha 1.3.12.6: change string according to wizard spec 2007/02/05 17:21:25 iha 1.3.12.5: some resource changes according to wizard spec 2007/02/02 23:05:50 iha 1.3.12.4: some resource changes according to wizard spec 2006/11/01 16:10:41 iha 1.3.12.3: cleanup resources: removed obsolete x-commenet string 2006/01/06 20:27:26 iha 1.3.12.2: added legendposition to wizard and restructured legend postiion control classes 2005/10/11 09:55:08 iha 1.3.12.1: #i55202# helpids for legend position


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9dd0831823c823f5f2ab1e06dd8d5c1f99b0a0e5]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/01/06 20:25:32 iha 1.1.2.1: added legendposition to wizard and restructured legend postiion control classes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [94095d946506e7a7662fe8b80a7a1e706891f3b3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/01/06 20:25:12 iha 1.1.2.1: added legendposition to wizard and restructured legend postiion control classes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ba6117469af97baa84c7a1d90008976c2d11a43d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.6: #i74635# ResMgr cleanup ResId -> SchResId 2007/05/15 11:49:00 bm 1.1.2.5: #i73604# RESYNC: additional changes for ItemId cleanup 2007/02/13 10:49:46 bm 1.1.2.4: #i74482# disable the radio buttons initially when the legend is not switched on 2007/02/08 21:25:34 iha 1.1.2.3: resync m195 -> m202 2006/02/20 14:45:45 iha 1.1.2.2: move SchItemPool from controller to view lib -> ChartItemPool 2006/01/06 20:24:51 iha 1.1.2.1: added legendposition to wizard and restructured legend postiion control classes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [07edbc0053992e914e28403f5720b1546e5ff80f]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2007/04/23 12:32:33 ihi 1.3.12.3: #i72301# German removed 2006/11/01 16:10:40 iha 1.3.12.2: cleanup resources: removed obsolete x-commenet string 2005/10/11 13:04:21 iha 1.3.12.1: #i55200# helpids for insert data labels


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [09a0be52a2866d73b8bcd9b4101b0089fba064f3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:33 ihi 1.1.2.7: #i72301# German removed 2005/10/11 09:20:10 bm 1.1.2.6: license header change 2005/09/20 11:35:59 iha 1.1.2.5: #125773# added missing helpid for bar geometry listbox 2004/08/10 12:16:15 bm 1.1.2.4: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/11 15:40:11 iha 1.1.2.3: less width 2004/06/04 07:52:27 iha 1.1.2.2: Rectangular parallelepiped -> Box 2004/04/19 14:43:54 iha 1.1.2.1: #i20344# encapsulate 3D bar form control for reuse Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5e77ad77e1c6da992a99ebedd36b1de520b48b11]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/11/14 12:07:58 iha 1.1.2.4: keep parameter while switching between charttypes in charttype page 2005/10/11 09:20:10 bm 1.1.2.3: license header change 2004/04/27 15:00:38 iha 1.1.2.2: warnings removed 2004/04/19 14:40:12 iha 1.1.2.1: #i20344# encapsulate 3D bar form control for reuse Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0059feff2c72d24257f5353908c36e98aed29903]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:34 iha 1.1.2.5: resync m195 -> m202 2005/11/14 12:07:58 iha 1.1.2.4: keep parameter while switching between charttypes in charttype page 2005/10/11 09:20:10 bm 1.1.2.3: license header change 2004/04/27 15:00:38 iha 1.1.2.2: warnings removed 2004/04/19 14:43:19 iha 1.1.2.1: #i20344# encapsulate 3D bar form control for reuse Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a23096655695db0652c970ebca5f7709c011b6d5]

INTEGRATION: CWS chart2mst3 (1.4.2); FILE MERGED 2007/02/02 22:17:07 iha 1.4.2.30: some resource changes according to wizard spec 2006/11/10 21:03:06 iha 1.4.2.29: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/07/19 15:55:24 bm 1.4.2.28: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/01/06 20:27:25 iha 1.4.2.27: added legendposition to wizard and restructured legend postiion control classes 2005/11/29 17:38:07 bm 1.4.2.26: adapt dependency to new path (Strings.hrc) 2005/11/22 10:53:18 bm 1.4.2.25: use correct undo strings 2005/10/07 11:17:24 bm 1.4.2.24: RESYNC: (1.8-1.9); FILE MERGED 2005/09/29 12:32:05 iha 1.4.2.23: #125781# missing helpIds for Insert:Ggrid and Insert:Axis 2005/08/17 16:56:54 bm 1.4.2.22: data editor 2005/07/25 15:19:45 bm 1.4.2.21: RESYNC: (1.7-1.8); FILE MERGED 2005/04/15 14:58:17 bm 1.4.2.20: -DialogSeries (+garbage) 2005/04/15 14:48:08 bm 1.4.2.19: data source and range choose dialog rework 2005/03/18 15:43:23 bm 1.4.2.18: build problems 2005/03/18 15:15:30 bm 1.4.2.17: merge error: target.mk included twice 2005/03/18 01:19:16 bm 1.4.2.16: RESYNC: (1.6-1.7); FILE MERGED 2004/06/30 08:08:40 iha 1.4.2.15: #i30866# charttype dialog without roadmap control 2004/06/29 12:21:53 bm 1.4.2.14: shared data for range chooser and data source tab pages 2004/06/08 14:22:20 iha 1.4.2.13: #i20329# added Pseudo3DHelper 2004/06/04 07:15:38 bm 1.4.2.12: case missmatch tp_3D_SceneIllumination 2004/06/03 03:38:47 iha 1.4.2.11: RESYNC: (1.4-1.6); FILE MERGED 2004/06/01 19:06:41 iha 1.4.2.10: new 3D view/effects dialog 2004/05/24 17:49:30 bm 1.4.2.9: +tp_DataSource 2004/05/17 17:33:51 iha 1.4.2.8: provide object naming; resource cleanup 2004/05/07 16:21:26 iha 1.4.2.7: #i20344# added RangeSelectionButton 2004/05/05 20:41:22 iha 1.4.2.6: #i20344# location tab page for chart wizard 2004/04/21 16:57:22 iha 1.4.2.5: #i20344# replace old type dialog with new type page 2004/04/19 14:47:41 iha 1.4.2.4: #i20344# additional files for wizard charttype page 2004/04/07 21:39:47 iha 1.4.2.3: #i20344# added wizard classes 2004/03/22 16:23:12 bm 1.4.2.2: -ENVCFLAG for gcc 3.0 (was just a test) 2004/03/19 14:32:50 bm 1.4.2.1: XDataSource now contains XLabeledDataSources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c32b843c5e8f54a518514d85cf9c41ec7fb60a13]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/08 16:37:28 bm 1.1.2.10: #i72361# help id for edit field with series names in own data dialog added 2006/03/11 13:57:11 iha 1.1.2.9: #i63018# added HelpId for Chart Window 2006/01/06 20:27:25 iha 1.1.2.8: added legendposition to wizard and restructured legend postiion control classes 2006/01/02 16:35:33 iha 1.1.2.7: #i58960# HelpId for Roadmap in Wizard 2005/12/06 18:56:16 iha 1.1.2.6: #i58960# added HelpId HID_SCH_NUM_OF_LINES 2005/10/11 13:48:43 iha 1.1.2.5: #i55197# helpids for insert title 2005/10/11 13:02:42 iha 1.1.2.4: #i55200# helpids for insert data labels 2005/10/11 12:33:11 iha 1.1.2.3: #i55198# helpids for statistic dialog 2005/10/11 09:54:29 iha 1.1.2.2: #i55202# helpids for legend position 2005/09/29 12:31:01 iha 1.1.2.1: #125781# missing helpIds for Insert:Grid and Insert:Axis


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [09be3563c43deecb89644e523814bac4f69c10f9]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:32 ihi 1.1.2.4: #i72301# German removed 2005/10/11 09:20:10 bm 1.1.2.3: license header change 2004/08/10 12:16:15 bm 1.1.2.2: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/01 17:26:32 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [96daaa0513de778f3dfc5a8855014975cf1d4ae7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:10 bm 1.1.2.2: license header change 2004/06/01 17:26:18 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e48d02516dc91deeb2b2639750a27d56f3b54586]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:34 iha 1.1.2.14: resync m195 -> m202 2006/12/07 23:24:26 iha 1.1.2.13: #i67833# simple 3D look - bring light to front 2006/10/21 12:16:13 iha 1.1.2.12: name consolidation 2005/11/03 16:16:04 bm 1.1.2.11: live-preview changes, lock controllers for multiple changes 2005/11/03 09:43:20 bm 1.1.2.10: adaption to new transformation matrix in model and live preview of 3d view dialog 2005/11/02 13:49:17 bm 1.1.2.9: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/18 14:38:37 bm 1.1.2.8: lock controllers during model change callsProperties.cxxProperties.cxx 2005/10/11 09:20:09 bm 1.1.2.7: license header change 2004/06/24 13:49:56 bm 1.1.2.6: CTOR: order of member-initializers according to declaration 2004/06/11 15:39:04 iha 1.1.2.5: swap page order again 2004/06/09 20:17:12 iha 1.1.2.4: changed page order 2004/06/08 14:26:12 iha 1.1.2.3: #i20329# offer simple 3D look; save last page 2004/06/04 12:17:17 iha 1.1.2.2: implement 3D View / Effects dialog 2004/06/01 17:26:00 iha 1.1.2.1: new 3D view/effects dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4ce91b826d0bcd941a4f1b1a78d1307db0a12339]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/04/25 01:04:39 bm 1.2.4.6: RESYNC: (1.6-1.7); FILE MERGED 2005/10/07 11:16:48 bm 1.2.4.5: RESYNC: (1.4-1.6); FILE MERGED 2004/08/10 12:16:15 bm 1.2.4.4: resource changes (removal of translations and change to de, en-US and x-comment 2004/05/17 17:33:51 iha 1.2.4.3: provide object naming; resource cleanup 2004/04/22 15:00:42 iha 1.2.4.2: #i20344# chabged legend, grid and title resources 2004/04/19 15:09:08 iha 1.2.4.1: concentrate ResourceIds to avoid dublicates


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1514b06f60658e9ebaf1762a28cdbf31387128f4]

INTEGRATION: CWS chart2mst3 (1.10.2); FILE MERGED 2007/05/14 20:03:04 bm 1.10.2.22: RESYNC: (1.14-1.15); FILE MERGED 2006/10/27 15:16:59 iha 1.10.2.21: name consolidation 2006/10/18 17:04:04 bm 1.10.2.20: RESYNC: (1.13-1.14); FILE MERGED 2006/04/10 12:25:05 iha 1.10.2.19: api restructure axis, grids, scales and increments 2005/11/25 16:23:25 iha 1.10.2.18: correct labels at z axis for deep stacking 2005/11/23 15:16:58 iha 1.10.2.17: support BarOverlap and GapWidth 2005/11/18 18:19:53 iha 1.10.2.16: restructuring for proper subgrid support 2005/10/24 11:06:38 iha 1.10.2.15: coordinate system restructure 2005/10/13 17:38:45 iha 1.10.2.14: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:16:38 bm 1.10.2.13: RESYNC: (1.12-1.13); FILE MERGED 2005/09/05 11:36:41 iha 1.10.2.12: no scale page for category axis 2005/06/07 15:58:31 iha 1.10.2.11: use numberformatter from model 2004/09/17 12:20:46 iha 1.10.2.10: implement api redesign - dimension property 2004/09/17 11:35:59 iha 1.10.2.9: implement api redesign - dimension property 2004/09/16 14:48:00 iha 1.10.2.8: implement api redesign 2004/06/03 10:02:19 iha 1.10.2.7: corrected merge error 2004/06/03 03:38:36 iha 1.10.2.6: RESYNC: (1.10-1.12); FILE MERGED 2004/05/17 17:33:50 iha 1.10.2.5: provide object naming; resource cleanup 2004/04/22 15:00:41 iha 1.10.2.4: #i20344# chabged legend, grid and title resources 2004/04/19 15:07:03 iha 1.10.2.3: concentrate ResourceIds to avoid dublicates 2004/03/04 11:00:57 iha 1.10.2.2: remove SchSlotIds 2004/02/18 19:55:00 iha 1.10.2.1: removed unused code


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3847a63b6facf459e9509dd6ce0c0c4422ff8220]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:04:32 bm 1.1.1.1.4.6: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 11:16:27 bm 1.1.1.1.4.5: RESYNC: (1.2-1.3); FILE MERGED 2004/08/10 12:16:15 bm 1.1.1.1.4.4: resource changes (removal of translations and change to de, en-US and x-comment 2004/08/04 20:14:08 bm 1.1.1.1.4.3: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/22 15:00:41 iha 1.1.1.1.4.2: #i20344# chabged legend, grid and title resources 2004/04/07 21:39:02 iha 1.1.1.1.4.1: #i20344# reuse of resources TitleResources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1d0e64df04e44dab773ad53ef904598d9e39cc85]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:16:15 bm 1.1.1.1.4.3: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/19 13:41:35 iha 1.1.1.1.4.2: concentrate ResourceIds to avoid dublicates 2004/04/07 21:38:34 iha 1.1.1.1.4.1: #i20344# reuse of resources TitleResources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7750754fdc28b700d740dc96cd9d4b9ffdc082ec]

INTEGRATION: CWS chart2mst3 (1.2.8); FILE MERGED 2007/05/14 20:02:57 bm 1.2.8.8: RESYNC: (1.4-1.5); FILE MERGED 2006/10/18 17:03:55 bm 1.2.8.7: RESYNC: (1.3-1.4); FILE MERGED 2006/01/06 20:27:25 iha 1.2.8.6: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:16:03 bm 1.2.8.5: RESYNC: (1.2-1.3); FILE MERGED 2004/05/17 17:33:50 iha 1.2.8.4: provide object naming; resource cleanup 2004/04/30 15:37:32 bm 1.2.8.3: suppress warnings for this in CTOR 2004/04/22 15:00:41 iha 1.2.8.2: #i20344# chabged legend, grid and title resources 2004/04/07 21:38:05 iha 1.2.8.1: #i20344# reuse of resources TitleResources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a2a42c95033cc039bda4c8035e8b54499ed082e6]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:04:19 bm 1.1.1.1.4.7: RESYNC: (1.3-1.4); FILE MERGED 2007/02/27 17:31:00 iha 1.1.1.1.4.6: change positions 2006/01/06 20:27:24 iha 1.1.1.1.4.5: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:15:09 bm 1.1.1.1.4.4: RESYNC: (1.2-1.3); FILE MERGED 2004/08/10 12:16:15 bm 1.1.1.1.4.3: resource changes (removal of translations and change to de, en-US and x-comment 2004/08/04 20:13:54 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/22 15:00:40 iha 1.1.1.1.4.1: #i20344# chabged legend, grid and title resources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ac8e9ac27152b85819ab208ddbfde9bc8fcd3ee7]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/01/06 20:27:24 iha 1.1.1.1.4.3: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:14:57 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/19 14:05:37 iha 1.1.1.1.4.1: concentrate ResourceIds to avoid dublicates


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [eb645644b32064fb509d78e0c16f65c04d67df68]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/05/14 20:02:44 bm 1.2.4.7: RESYNC: (1.4-1.6); FILE MERGED 2006/10/18 17:03:40 bm 1.2.4.6: RESYNC: (1.3-1.4); FILE MERGED 2006/02/20 14:45:44 iha 1.2.4.5: move SchItemPool from controller to view lib -> ChartItemPool 2006/01/06 20:27:24 iha 1.2.4.4: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:14:46 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2004/05/17 17:33:49 iha 1.2.4.2: provide object naming; resource cleanup 2004/04/22 15:00:40 iha 1.2.4.1: #i20344# chabged legend, grid and title resources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e77a6afa1d491b6056c87fc65f994f79c6cde0c0]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:04:13 bm 1.1.1.1.4.5: RESYNC: (1.3-1.4); FILE MERGED 2005/10/07 11:14:30 bm 1.1.1.1.4.4: RESYNC: (1.2-1.3); FILE MERGED 2004/08/10 12:16:14 bm 1.1.1.1.4.3: resource changes (removal of translations and change to de, en-US and x-comment 2004/08/04 20:13:47 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/05/17 17:33:49 iha 1.1.1.1.4.1: provide object naming; resource cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0f053ab5ee2a43da74e767c61534709b5a1bb4c7]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:14:16 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/19 13:37:12 iha 1.1.1.1.4.1: concentrate ResourceIds to avoid dublicates


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0938a670fdb79b300bff8f153728b3870bbd7a97]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/05/14 20:02:37 bm 1.2.4.5: RESYNC: (1.4-1.6); FILE MERGED 2006/10/18 17:03:31 bm 1.2.4.4: RESYNC: (1.3-1.4); FILE MERGED 2006/02/20 14:45:44 iha 1.2.4.3: move SchItemPool from controller to view lib -> ChartItemPool 2005/10/07 11:14:05 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/05/17 17:33:49 iha 1.2.4.1: provide object naming; resource cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3695c50e7e2d88fbb25a8653a9e80711a2fdfe98]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:04:06 bm 1.1.1.1.4.10: RESYNC: (1.5-1.6); FILE MERGED 2007/04/23 12:32:32 ihi 1.1.1.1.4.9: #i72301# German removed 2006/10/27 12:25:38 iha 1.1.1.1.4.8: naming consolidation 2005/10/07 11:13:53 bm 1.1.1.1.4.7: RESYNC: (1.3-1.5); FILE MERGED 2005/09/29 12:34:38 iha 1.1.1.1.4.6: #125781# missing helpIds for Insert:Ggrid and Insert:Axis 2004/08/10 12:16:14 bm 1.1.1.1.4.5: resource changes (removal of translations and change to de, en-US and x-comment 2004/08/04 20:13:28 bm 1.1.1.1.4.4: RESYNC: (1.2-1.3); FILE MERGED 2004/06/03 03:38:28 iha 1.1.1.1.4.3: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/05/17 17:33:49 iha 1.1.1.1.4.2: provide object naming; resource cleanup 2004/04/07 21:36:16 iha 1.1.1.1.4.1: i20344 reuse of resources SECONDARYAXISCHECKBOXES


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [83495c8d19f6374f9a3f88c28c48f69b281d61a7]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:13:40 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/19 13:34:28 iha 1.1.1.1.4.1: concentrate ResourceIds to avoid dublicates


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [77e67ae4f1fc74f3cb1a454d58bf2cad01060540]

INTEGRATION: CWS chart2mst3 (1.2.8); FILE MERGED 2007/05/14 20:02:31 bm 1.2.8.8: RESYNC: (1.4-1.5); FILE MERGED 2006/10/18 17:03:23 bm 1.2.8.7: RESYNC: (1.3-1.4); FILE MERGED 2006/04/10 15:03:32 iha 1.2.8.6: api restructure axis, grids, scales and increments 2006/02/20 14:45:44 iha 1.2.8.5: move SchItemPool from controller to view lib -> ChartItemPool 2005/10/07 11:13:26 bm 1.2.8.4: RESYNC: (1.2-1.3); FILE MERGED 2005/09/29 12:33:39 iha 1.2.8.3: #125781# missing helpIds for Insert:Ggrid and Insert:Axis 2004/05/17 17:33:49 iha 1.2.8.2: provide object naming; resource cleanup 2004/04/22 15:00:40 iha 1.2.8.1: #i20344# chabged legend, grid and title resources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a844f03febcb747b8f1475798022c9deca433bd3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:32 ihi 1.1.2.15: #i72301# German removed 2006/10/24 11:55:16 bm 1.1.2.14: enable range chooser in Calc 2005/10/11 09:20:09 bm 1.1.2.13: license header change 2005/09/27 15:06:24 iha 1.1.2.12: #i55138# add helpid for data ranges dialog; added dialog name 2004/06/17 10:03:24 bm 1.1.2.11: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/05/24 17:48:46 bm 1.1.2.10: data source dialog is deprecated -> is a tabpage now 2004/05/05 20:47:19 iha 1.1.2.9: resource cleanup 2004/04/15 17:26:15 bm 1.1.2.8: enable ADD button by default 2004/04/08 15:08:04 bm 1.1.2.7: two flags to get border on Windows ? 2004/04/08 14:56:31 bm 1.1.2.6: applying categories to model, accept changes made in editfields (no check yet) 2004/04/08 14:43:51 bm 1.1.2.5: disable Add button until implemented 2004/04/08 14:11:37 bm 1.1.2.4: foo 2004/04/07 18:46:21 bm 1.1.2.3: dialog uses internal data structure, additional field for label range 2004/03/24 10:33:13 bm 1.1.2.2: english text uncommented 2004/03/19 14:26:43 bm 1.1.2.1: dialog for flexible source range selection


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [61c5d8f9978f40c32726e47c09d8af6e2bdcc073]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:09 bm 1.1.2.6: license header change 2004/06/17 10:03:24 bm 1.1.2.5: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/05/24 17:48:33 bm 1.1.2.4: data source dialog is deprecated -> is a tabpage now 2004/04/19 13:35:22 iha 1.1.2.3: concentrate ResourceIds to avoid dublicates 2004/04/07 18:46:21 bm 1.1.2.2: dialog uses internal data structure, additional field for label range 2004/03/19 14:26:31 bm 1.1.2.1: dialog for flexible source range selection


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e052fd1342ab671d5bac199d95cb718e37bd0703]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/27 16:27:59 bm 1.1.2.37: #i71233# disable dialog commit when there are invalid ranges or series with missing mandatory roles 2007/02/27 13:45:31 bm 1.1.2.36: Disable controls and tabs when invalid ranges were entered 2007/02/09 12:31:17 bm 1.1.2.35: implement adaptions for different look in wizard and stand-alone source data dialog, according to spec FlexibleSourceRangeSelection 2007/02/08 21:25:33 iha 1.1.2.34: resync m195 -> m202 2006/10/27 14:59:19 iha 1.1.2.33: name consolidation 2006/10/24 11:55:16 bm 1.1.2.32: enable range chooser in Calc 2005/11/14 17:53:12 iha 1.1.2.31: don't update model again at end of execute as this was done already - undo is done outside of the dialog 2005/10/11 09:20:09 bm 1.1.2.30: license header change 2005/09/29 12:12:25 iha 1.1.2.29: #i55138# helpId 2005/09/27 15:02:53 iha 1.1.2.28: #i55138# enable helpids for data ranges dialog (resource depth must be <3 ) 2005/08/18 15:20:41 bm 1.1.2.27: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/04/15 14:48:07 bm 1.1.2.26: data source and range choose dialog rework 2004/06/30 16:14:16 bm 1.1.2.25: some fixes 2004/06/29 12:21:52 bm 1.1.2.24: shared data for range chooser and data source tab pages 2004/06/17 13:05:10 bm 1.1.2.23: some minor preliminary fixes 2004/06/17 10:03:24 bm 1.1.2.22: data source dialog is a tab dialog now using the same tabpages as the wizard 2004/06/03 09:31:41 bm 1.1.2.21: Embedding API changes 2004/05/24 17:47:44 bm 1.1.2.20: data source dialog is deprecated -> is a tabpage now 2004/05/17 17:33:48 iha 1.1.2.19: provide object naming; resource cleanup 2004/05/07 16:24:23 iha 1.1.2.18: #i20344# moved RefButton to RangeSelectionButton 2004/05/07 16:12:03 bm 1.1.2.17: get label text from ranges bigger than one cell 2004/05/05 20:46:59 iha 1.1.2.16: resource cleanup 2004/05/05 15:58:21 iha 1.1.2.15: update label content from spreadsheet cell 2004/04/28 19:07:01 iha 1.1.2.14: #i20344# icon cleanup, prepare line subtypes 2004/04/27 15:52:27 bm 1.1.2.13: warning removed 2004/04/27 14:27:41 bm 1.1.2.12: warnings removed 2004/04/27 13:28:29 bm 1.1.2.11: use internal role-name as key for role-entries. (listbox now contains internal-role-name (invisible), UI role-name, range string) 2004/04/15 17:25:32 bm 1.1.2.10: control-enabling DialogSeries is now declared in cxx 2004/04/14 12:20:06 bm 1.1.2.9: createRangeSelection: also works for embedded chart in calc 2004/04/13 09:53:11 bm 1.1.2.8: show correct string for multi-cell labels 2004/04/08 15:19:55 bm 1.1.2.7: disable categories range ('shrink') button 2004/04/08 15:16:19 bm 1.1.2.6: use values-x instead of domain-x 2004/04/08 14:56:31 bm 1.1.2.5: applying categories to model, accept changes made in editfields (no check yet) 2004/04/07 18:46:21 bm 1.1.2.4: dialog uses internal data structure, additional field for label range 2004/03/29 13:24:38 bm 1.1.2.3: XDataSource: getSourceRangeRepresentation -> getSourceIdentifier 2004/03/19 16:43:14 bm 1.1.2.2: show names of data series correctly 2004/03/19 14:26:19 bm 1.1.2.1: dialog for flexible source range selection


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e9f302eb23e799f1c6d93dfc4bebf1aef83523d3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:32 ihi 1.1.2.14: #i72301# German removed 2007/03/02 14:49:14 bm 1.1.2.13: adapted strings to latest spec changes 2007/02/27 12:33:20 bm 1.1.2.12: better alignment of toolbar icons 2006/11/01 16:12:19 iha 1.1.2.11: cleanup resources: removed unsued resources 2006/11/01 16:10:40 iha 1.1.2.10: cleanup resources: removed obsolete x-commenet string 2006/07/20 09:53:52 bm 1.1.2.9: #i64824# show shared sequences correctly. Missing: insert new series 2006/07/19 15:55:24 bm 1.1.2.8: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/06/28 09:51:56 dr 1.1.2.7: german umlauts in UTF-8 2006/03/08 10:38:53 bm 1.1.2.6: new UI for DataEditor. Define TEST_NEW_UI in dlg_DataEditor.hrc to activate 2005/11/28 14:19:59 iha 1.1.2.5: menu changes 2005/10/11 09:20:08 bm 1.1.2.4: license header change 2005/08/19 14:29:11 bm 1.1.2.3: enable icons in the toolbox 2005/08/18 11:36:42 bm 1.1.2.2: -Zoomable 2005/08/17 16:53:07 bm 1.1.2.1: data editor for standalone data (first approach)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8e7f13019a957c45c125acbd07052db481ae51df]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/07/19 15:55:24 bm 1.1.2.5: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/03/08 10:38:52 bm 1.1.2.4: new UI for DataEditor. Define TEST_NEW_UI in dlg_DataEditor.hrc to activate 2005/10/11 09:20:08 bm 1.1.2.3: license header change 2005/08/19 14:29:10 bm 1.1.2.2: enable icons in the toolbox 2005/08/17 16:53:07 bm 1.1.2.1: data editor for standalone data (first approach)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [adf0266769d73bf4ba3f6d9d3404fc011098e00a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/05/18 16:12:16 bm 1.1.2.11: #i74635# ResMgr cleanup ResId -> SchResId 2007/02/08 21:25:33 iha 1.1.2.10: resync m195 -> m202 2006/12/13 15:36:15 bm 1.1.2.9: apply pending changes on window close 2006/07/20 09:53:52 bm 1.1.2.8: #i64824# show shared sequences correctly. Missing: insert new series 2006/07/19 15:55:24 bm 1.1.2.7: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/03/14 16:50:13 bm 1.1.2.6: #129537# remove as listener from misc options in DTOR 2006/03/08 17:53:15 bm 1.1.2.5: new UI design for data dialog 2006/03/08 10:38:52 bm 1.1.2.4: new UI for DataEditor. Define TEST_NEW_UI in dlg_DataEditor.hrc to activate 2005/10/11 09:20:08 bm 1.1.2.3: license header change 2005/08/19 14:29:10 bm 1.1.2.2: enable icons in the toolbox 2005/08/17 16:53:06 bm 1.1.2.1: data editor for standalone data (first approach)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d136a673b1a064d36f565d9a42075616c95e9e48]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:33 iha 1.1.2.14: resync m195 -> m202 2007/02/06 09:59:13 iha 1.1.2.13: #i72536# correct wizard position for not fullscreen documents 2007/01/16 16:17:20 iha 1.1.2.12: #i73426# wrong help context bvecause of wrong window hirarchy 2006/11/10 21:03:05 iha 1.1.2.11: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/06/24 13:06:42 iha 1.1.2.10: #i54915# chart wizard shouldn't overlap chart if possible 2006/03/10 10:20:40 iha 1.1.2.9: don't use leading underscore 2005/11/15 16:48:40 bm 1.1.2.8: remove as terminate listener in dispose 2005/11/15 15:30:17 bm 1.1.2.7: garbage collection, disposing, reference release issues 2005/11/14 15:51:30 iha 1.1.2.6: remove direct view update call as automatic updates are now available 2005/10/11 09:20:08 bm 1.1.2.5: license header change 2005/08/03 16:36:15 bm 1.1.2.4: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2004/05/05 16:40:25 iha 1.1.2.3: update view at end of dialog 2004/04/08 12:25:45 iha 1.1.2.2: make more failsave 2004/04/07 21:34:00 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [208e22207570054cd86dd743ac5bd6d0b89c6ada]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/10/24 11:55:15 bm 1.1.2.4: enable range chooser in Calc 2005/10/11 09:19:00 bm 1.1.2.3: license header change and CRs removed 2004/05/17 17:33:48 iha 1.1.2.2: provide object naming; resource cleanup 2004/04/07 21:32:07 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c2fdb7749b5b37911edf8212151af1a38e43977f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:08 bm 1.1.2.7: license header change 2004/06/08 22:17:09 iha 1.1.2.6: changed height 2004/05/05 20:44:14 iha 1.1.2.5: #i20344# changed wizard page width 2004/04/19 14:04:01 iha 1.1.2.4: concentrate ResourceIds to avoid dublicates 2004/04/08 15:31:45 bm 1.1.2.3: dialog id 742 -> 902 2004/04/08 14:09:00 bm 1.1.2.2: changed dialog id to 742 (made problems with ofa) 2004/04/07 21:31:56 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e90941d3de4e1f7f136efea059602542377a3c9f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/07 16:51:44 bm 1.1.2.35: #i75207# use an overloaded leaveState() instead of disabling the roadmap entries. Disadvantage: the entries are shown as disabled, advantage: no crash 2007/02/28 16:07:28 bm 1.1.2.34: removed CHART2_ROADMAP_WIZARD define and else branch as we will not switch back from using the roadmap 2007/02/27 13:45:31 bm 1.1.2.33: Disable controls and tabs when invalid ranges were entered 2007/02/08 21:25:33 iha 1.1.2.32: resync m195 -> m202 2006/12/08 19:04:16 iha 1.1.2.31: corrected title of roadmap in wizard 2006/12/05 19:52:16 iha 1.1.2.30: don't append page title to wizard title 2006/11/10 21:03:05 iha 1.1.2.29: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/10/27 14:59:19 iha 1.1.2.28: name consolidation 2006/10/24 11:55:15 bm 1.1.2.27: enable range chooser in Calc 2006/03/10 10:20:40 iha 1.1.2.26: don't use leading underscore 2006/03/08 12:57:14 bm 1.1.2.25: disable range tab-pages when having own data 2006/01/23 15:53:34 iha 1.1.2.24: #i61054# disable next button at wizard correctly 2006/01/12 17:54:34 iha 1.1.2.23: change name of wizard step 4 according to spec 2006/01/02 16:36:06 iha 1.1.2.22: #i58960# HelpId for Roadmap in Wizard 2005/11/30 08:51:52 iha 1.1.2.21: remove location page 2005/10/11 09:19:19 bm 1.1.2.20: license header change and CRs removed 2005/04/15 15:03:16 bm 1.1.2.19: commented-out code removed 2005/04/15 14:48:07 bm 1.1.2.18: data source and range choose dialog rework 2004/06/30 16:14:16 bm 1.1.2.17: some fixes 2004/06/29 12:21:52 bm 1.1.2.16: shared data for range chooser and data source tab pages 2004/06/09 22:08:12 iha 1.1.2.15: remove cancelbutton for case no roadmap 2004/06/09 18:43:47 iha 1.1.2.14: minor resource changes 2004/06/09 17:49:06 iha 1.1.2.13: added cancel button 2004/06/08 19:30:16 iha 1.1.2.12: added stops at first and last page; added roadmap (if 0) 2004/06/03 10:03:12 iha 1.1.2.11: changed signiture 'createPage' 2004/06/01 19:01:08 iha 1.1.2.10: set Finish as default button 2004/05/27 15:57:40 iha 1.1.2.9: #i20344# provide charttype template; added parameter bDoLiveUpdate 2004/05/24 17:46:02 bm 1.1.2.8: flexible source range tab-page added 2004/05/17 17:33:48 iha 1.1.2.7: provide object naming; resource cleanup 2004/05/05 20:45:04 iha 1.1.2.6: #i20344# added location tab page to chart wizard 2004/04/27 15:00:37 iha 1.1.2.5: warnings removed 2004/04/21 16:55:09 iha 1.1.2.4: #i20344# replace old type dialog with new type page 2004/04/21 11:31:39 bm 1.1.2.3: no FreeResource() call 2004/04/20 14:06:07 iha 1.1.2.2: add range chooser tabpage 2004/04/07 21:31:42 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4e160dc9a9a1432f3fc609c91e2bbfc595df8597]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:03:59 bm 1.1.1.1.4.5: RESYNC: (1.4-1.5); FILE MERGED 2007/02/05 17:17:39 iha 1.1.1.1.4.4: some resource changes according to wizard spec 2007/02/02 22:16:24 iha 1.1.1.1.4.3: some resource changes according to wizard spec 2004/04/21 16:58:04 iha 1.1.1.1.4.2: #i20344# replace old type dialog with new type page 2004/04/07 21:34:56 iha 1.1.1.1.4.1: cleanup


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cbe68580bc68e51b0652e9c9c89f094f840f69fc]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/02/02 22:16:06 iha 1.1.1.1.4.3: some resource changes according to wizard spec 2004/04/21 16:57:54 iha 1.1.1.1.4.2: #i20344# replace old type dialog with new type page 2004/04/19 13:36:06 iha 1.1.1.1.4.1: concentrate ResourceIds to avoid dublicates


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6d85ce544838f7d4bfe7ade2ee78e8e709b1e9a3]

INTEGRATION: CWS chart2mst3 (1.7.4); FILE MERGED 2007/02/02 22:15:06 iha 1.7.4.18: some resource changes according to wizard spec 2006/12/13 18:19:39 iha 1.7.4.17: correct title of charttype dialog 2006/10/27 14:59:19 iha 1.7.4.16: name consolidation 2006/10/18 17:03:15 bm 1.7.4.15: RESYNC: (1.10-1.11); FILE MERGED 2006/10/10 13:29:28 iha 1.7.4.14: removed unused code 2005/11/28 14:38:37 iha 1.7.4.13: live preview for charttype dlg 2005/10/07 11:13:12 bm 1.7.4.12: RESYNC: (1.8-1.9); FILE MERGED 2005/07/01 10:59:13 iha 1.7.4.11: correct load of donut charts - remove service name mismatch 2005/03/18 15:50:52 bm 1.7.4.10: includes missing, signature of XChartTypeTemplate::matchesTemplate() has changed 2004/11/03 01:21:23 bm 1.7.4.9: RESYNC: (1.7-1.8); FILE MERGED 2004/06/30 08:07:53 iha 1.7.4.8: #i30866# charttype dialog without roadmap control 2004/04/21 16:58:19 iha 1.7.4.7: #i20344# replace old type dialog with new type page 2004/04/19 15:11:40 iha 1.7.4.6: changed define STR_STOCK -> STR_STOCKCHART 2004/04/07 21:34:34 iha 1.7.4.5: cleanup 2004/03/29 13:23:58 bm 1.7.4.4: robustness 2004/03/24 19:05:22 bm 1.7.4.3: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/24 10:36:03 bm 1.7.4.2: lcl_getTemplateForTree() moved to DiagramHelper::getTemplateNameForDiagram() 2004/02/13 16:51:17 bm 1.7.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a44fc110ea8faf5d41cee654e219d5a1f6cfb9ff]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:33 iha 1.1.2.7: resync m195 -> m202 2006/04/10 15:03:31 iha 1.1.2.6: api restructure axis, grids, scales and increments 2006/01/24 10:27:43 bm 1.1.2.5: pass ReferenceSizeProvider to allow setting correct Auto-Resize values for new objects 2005/12/01 18:54:47 iha 1.1.2.4: create axis title with correct rotation default + don't mix x and y in barcharts 2005/10/11 09:20:08 bm 1.1.2.3: license header change 2004/04/26 20:06:05 iha 1.1.2.2: #i28172# already exsisiting titles are deleted and created again loosing their properties 2004/04/07 21:33:00 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fbcc80bb8a1edc38912446cb5f16bd6b5c66b63b]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:32 iha 1.1.2.2: resync m195 -> m202 2006/11/10 21:00:23 iha 1.1.2.1: prevent immidiate redraw in wizard and according dialogs (important for charts with many data)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b5f81e4746b698c7dd18f40297e10cbc1759fcd0]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/10/27 18:42:08 iha 1.1.1.1.4.4: added warnings STR_STEP_GT_ZERO and STR_BAD_LOGARITHM tp scale tab page + remove unused code 2006/01/06 20:27:23 iha 1.1.1.1.4.3: added legendposition to wizard and restructured legend postiion control classes 2005/10/07 11:12:58 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/19 13:32:57 iha 1.1.1.1.4.1: concentrate ResourceIds to avoid dublicates


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9024e8845b796fc0c5fe88124a2e413a9d07ebfe]

INTEGRATION: CWS chart2mst3 (1.3.12); FILE MERGED 2007/04/23 12:32:32 ihi 1.3.12.7: #i72301# German removed 2006/12/13 13:43:05 bm 1.3.12.6: wrong encoding for umlaut 2006/11/01 15:36:56 iha 1.3.12.5: cleanup resources + changed variable names according to style guide 2006/10/31 17:57:32 iha 1.3.12.4: change STR_STATISTICS_IN_LEGEND according to spec 2006/10/29 12:14:53 iha 1.3.12.3: use more readable varailbles STATTYP->REGRESSIONTYPE and ROWNAME->SERIESNAME for STR_STATISTICS_IN_LEGEND 2006/10/29 11:37:40 iha 1.3.12.2: moved STR_STATISTICS_IN_LEGEND from Strings.src to Strings_Statistic.src 2006/06/28 09:51:55 dr 1.3.12.1: german umlauts in UTF-8


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [82720b0c5d92f2948f7b10ba089c78703c2642d5]

INTEGRATION: CWS chart2mst3 (1.2.20); FILE MERGED 2007/05/03 08:06:34 iha 1.2.20.11: #i76842# warning for scale tabpage when min > max 2007/04/23 12:32:32 ihi 1.2.20.10: #i72301# German removed 2007/03/06 18:05:01 iha 1.2.20.9: changed string according to spec 2007/03/04 14:44:07 iha 1.2.20.8: changes according to Scales and Intervals Spec 2007/02/09 12:26:51 bm 1.2.20.7: #i73171# changed warning box text, german orthography 2007/02/06 12:04:55 iha 1.2.20.6: resource change for warnings in scale tabpage 2006/10/27 18:42:08 iha 1.2.20.5: added warnings STR_STEP_GT_ZERO and STR_BAD_LOGARITHM tp scale tab page + remove unused code 2006/10/27 16:50:54 iha 1.2.20.4: removed unused resources 2006/06/28 09:51:55 dr 1.2.20.3: german umlauts in UTF-8 2005/10/07 11:12:34 bm 1.2.20.2: RESYNC: (1.2-1.3); FILE MERGED 2004/08/10 12:16:14 bm 1.2.20.1: resource changes (removal of translations and change to de, en-US and x-comment


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b5d604c018230adfda17e0cff7ddc31b7292c95f]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:03:49 bm 1.1.1.1.4.17: RESYNC: (1.4-1.5); FILE MERGED 2007/04/23 12:32:31 ihi 1.1.1.1.4.16: #i72301# German removed 2007/02/06 12:03:04 iha 1.1.1.1.4.15: resource change: Torte -> Kreis 2006/12/13 17:50:32 iha 1.1.1.1.4.14: changed string according to wizard spec 2006/12/11 17:16:52 iha 1.1.1.1.4.13: String changes according to wizard spec 2006/12/06 10:32:46 iha 1.1.1.1.4.12: String changes according to wizard spec 2006/12/05 17:56:33 iha 1.1.1.1.4.11: String changes according to wizard spec 2006/11/01 16:10:40 iha 1.1.1.1.4.10: cleanup resources: removed obsolete x-commenet string 2006/10/27 16:52:18 iha 1.1.1.1.4.9: removed unused resources 2005/10/07 11:12:24 bm 1.1.1.1.4.8: RESYNC: (1.2-1.4); FILE MERGED 2004/08/10 12:16:14 bm 1.1.1.1.4.7: resource changes (removal of translations and change to de, en-US and x-comment 2004/08/04 20:13:01 bm 1.1.1.1.4.6: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/06/09 21:01:05 iha 1.1.1.1.4.5: separate Line and XY again 2004/05/17 17:33:48 iha 1.1.1.1.4.4: provide object naming; resource cleanup 2004/04/21 17:59:14 iha 1.1.1.1.4.3: #i20344# changed type names; removed unused strings 2004/04/20 17:16:59 iha 1.1.1.1.4.2: #i20344# added description to chart subtypes 2004/04/19 14:44:59 iha 1.1.1.1.4.1: #i20344# added strings for wizard charttype page


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [67580112c4304ce58356e4d1bc5122da071f54e0]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/23 12:32:31 ihi 1.1.2.14: #i72301# German removed 2006/12/11 17:19:09 iha 1.1.2.13: String changes according to wizard spec 2006/12/08 19:03:37 iha 1.1.2.12: corrected title of roadmap in wizard 2006/12/05 17:55:44 iha 1.1.2.11: String changes according to wizard spec 2006/11/01 16:10:40 iha 1.1.2.10: cleanup resources: removed obsolete x-commenet string 2006/06/28 09:51:55 dr 1.1.2.9: german umlauts in UTF-8 2006/01/14 14:57:45 iha 1.1.2.8: Custom entry for 3D View scheme listbox 2005/10/11 09:20:07 bm 1.1.2.7: license header change 2004/08/10 12:16:14 bm 1.1.2.6: resource changes (removal of translations and change to de, en-US and x-comment 2004/07/26 14:39:07 iha 1.1.2.5: #i30126# string review changes 2004/06/11 15:37:52 iha 1.1.2.4: different 3D scheme naming 2004/06/01 19:00:10 iha 1.1.2.3: new 3D view/effects dialog 2004/04/21 17:59:34 iha 1.1.2.2: #i20344# removed unused strings 2004/04/19 14:20:28 iha 1.1.2.1: #i20344# texts for special controls on charttype tabpage Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [57367c2d600a50ca57b9827cb31d12f0f3c02a23]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/04/25 01:03:29 bm 1.1.1.1.4.52: RESYNC: (1.4-1.5); FILE MERGED 2007/04/23 12:32:31 ihi 1.1.1.1.4.51: #i72301# German removed 2007/03/19 15:13:39 bm 1.1.1.1.4.50: #i75403# Use strings from resource for row and column labels 2007/03/05 13:58:44 iha 1.1.1.1.4.49: changed string according to spec 2007/03/05 13:17:56 iha 1.1.1.1.4.48: changed string according to spec 2007/02/09 12:25:45 bm 1.1.1.1.4.47: #i72841# +STR_ACTION_NOTPOSSIBLE for message box that pops up when a non-deleteable object gets a delete-request 2007/02/06 12:02:16 iha 1.1.1.1.4.46: resource change: Torte -> Kreis 2006/12/11 15:45:45 bm 1.1.1.1.4.45: -STR_DATA_NEW_SERIES, +STR_DATA_UNNAMED_SERIES_WITH_INDEX 2006/12/05 23:40:41 iha 1.1.1.1.4.44: #i71675# enable set data label range for xy charts 2006/12/05 17:55:08 iha 1.1.1.1.4.43: String changes according to wizard spec 2006/11/01 17:46:23 iha 1.1.1.1.4.42: cleanup resources: no hardcoded quotes 2006/11/01 16:10:40 iha 1.1.1.1.4.41: cleanup resources: removed obsolete x-commenet string 2006/11/01 15:36:56 iha 1.1.1.1.4.40: cleanup resources + changed variable names according to style guide 2006/10/29 11:37:39 iha 1.1.1.1.4.39: moved STR_STATISTICS_IN_LEGEND from Strings.src to Strings_Statistic.src 2006/10/27 17:49:08 iha 1.1.1.1.4.38: more cleanup 2006/10/27 15:31:33 iha 1.1.1.1.4.37: name consolidation 2006/10/27 15:02:59 iha 1.1.1.1.4.36: name consolidation 2006/10/27 14:59:19 iha 1.1.1.1.4.35: name consolidation 2006/10/21 12:13:57 iha 1.1.1.1.4.34: name consolidation 2006/10/21 11:03:15 iha 1.1.1.1.4.33: removed string STR_GRIDLINES use TR_OBJECT_GRIDS instead 2006/10/21 09:03:31 iha 1.1.1.1.4.32: changed 'Data Series Symbol' to 'Legend Key' 2006/09/27 17:25:31 iha 1.1.1.1.4.31: corrected HelpText for color button 2006/08/22 17:00:21 bm 1.1.1.1.4.30: #i68861# also changed: STR_STATUS_DATAPOINT_MARKED: row replaced by data series 2006/08/02 12:16:24 bm 1.1.1.1.4.29: STR_OBJECT_DATAPOINT_XXX, STR_BALLOONHELP_DATAPOINT changed: row replaced by data series 2006/07/19 15:53:02 bm 1.1.1.1.4.28: #i64824# +STR_DATA_ROLE_CATEGORIES for the role categories in the data dialog 2006/05/29 18:00:39 iha 1.1.1.1.4.27: adapted STR_OBJECT_DIAGRAM_DATA to spec 2006/05/29 17:54:52 iha 1.1.1.1.4.26: replaced STR_OBJECT_SOURCE_DATA by STR_OBJECT_DATA_RANGE 2006/05/29 17:08:56 iha 1.1.1.1.4.25: adapted grid names to spec 2006/03/28 15:50:00 iha 1.1.1.1.4.24: corrected broken german umlauts 2006/01/14 14:58:41 iha 1.1.1.1.4.23: renamed first page of 3D View Dialog 2006/01/13 15:07:00 bm 1.1.1.1.4.22: +STR_ACTION_REARRANGE_CHART 2006/01/12 17:54:01 iha 1.1.1.1.4.21: change name of wizard step 4 according to spec 2005/11/30 17:52:21 iha 1.1.1.1.4.20: corrected Strings 2005/11/29 18:36:37 bm 1.1.1.1.4.19: SchResId may return an OUString, ResIdHelper offers replacement method for OUString 2005/11/22 09:39:41 bm 1.1.1.1.4.18: insert object removed, these kind of strings are used from  svx 2005/11/21 16:13:43 bm 1.1.1.1.4.17: +undo insert object string, conversion to UTF-8 2005/10/07 11:12:12 bm 1.1.1.1.4.16: RESYNC: (1.3-1.4); FILE MERGED 2005/07/13 11:45:02 iha 1.1.1.1.4.15: added specialized title names 2004/08/10 12:16:13 bm 1.1.1.1.4.14: resource changes (removal of translations and change to de, en-US and x-comment 2004/08/04 20:12:54 bm 1.1.1.1.4.13: RESYNC: (1.2-1.3); FILE MERGED 2004/07/26 14:38:23 iha 1.1.1.1.4.12: #i30126# string review changes 2004/06/30 11:54:40 bm 1.1.1.1.4.11: +text for new data series 2004/06/29 15:43:53 bm 1.1.1.1.4.10: internal strings converted to ressource strings 2004/06/12 13:37:05 iha 1.1.1.1.4.9: correct german text; added comments 2004/06/09 20:17:40 iha 1.1.1.1.4.8: Smooth Line Properties Dialog 2004/06/09 18:43:46 iha 1.1.1.1.4.7: minor resource changes 2004/06/08 19:27:19 iha 1.1.1.1.4.6: added STR_OBJECT_DATA_RANGE 2004/06/03 03:38:21 iha 1.1.1.1.4.5: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/06/01 18:59:14 iha 1.1.1.1.4.4: new 3D view/effects dialog 2004/05/17 17:33:47 iha 1.1.1.1.4.3: provide object naming; resource cleanup 2004/05/05 20:42:45 iha 1.1.1.1.4.2: #i20344# additional strings for chart wizard 2004/04/22 15:00:39 iha 1.1.1.1.4.1: #i20344# chabged legend, grid and title resources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [918c5c6e1001650ef732f2fb11317423dc86b0b5]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:07 bm 1.1.2.7: license header change 2004/06/08 22:15:09 iha 1.1.2.6: added spline properties dialog 2004/06/01 18:58:14 iha 1.1.2.5: new 3D view/effects dialog 2004/05/24 17:49:12 bm 1.1.2.4: +DataSource tab page for flexible ranges 2004/05/17 17:33:47 iha 1.1.2.3: provide object naming; resource cleanup 2004/05/05 20:43:15 iha 1.1.2.2: #i20344# location tab page for chart wizard 2004/04/19 13:32:11 iha 1.1.2.1: concentrate ResourceIds to avoid dublicates


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [580fb5b9dcab298fa2ac2d9bfe08e25008a21d2f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:32 iha 1.1.2.4: resync m195 -> m202 2006/11/10 21:03:05 iha 1.1.2.3: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2005/10/11 09:20:07 bm 1.1.2.2: license header change 2004/03/19 14:27:42 bm 1.1.2.1: helper for DataSource dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [37b163e9440df13a91e539a551bbe909b471f52e]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/02 13:59:04 bm 1.1.2.13: #i75058# verifyCellRange: use XRangeXMLConversion to check validity, so this also works for Writer 2007/02/08 21:25:32 iha 1.1.2.12: resync m195 -> m202 2006/11/10 21:03:05 iha 1.1.2.11: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/10/26 12:39:02 nn 1.1.2.10: set MultiSelectionMode 2006/10/12 13:53:50 bm 1.1.2.9: reanable range chooser 2006/10/09 16:01:49 bm 1.1.2.8: only enable range chooser buttons if a range chooser component is available 2006/01/30 16:44:57 bm 1.1.2.7: range choosing currently does not work 2005/10/11 09:20:06 bm 1.1.2.6: license header change 2005/09/07 14:48:22 bm 1.1.2.5: XChartDocument: +hasInternalDataProvider, -getDataEditorForInternalData 2005/08/11 15:56:16 bm 1.1.2.4: verifyCellRange: if the XCellRangesAccess interface is not supported assume always true 2005/05/12 20:02:17 sab 1.1.2.3: get access to ranges 2005/05/09 09:50:56 bm 1.1.2.2: moved parts of API to data namespace 2005/04/15 14:46:45 bm 1.1.2.1: helpers for data source dialogs


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8c93aeb7125b2016a749f9a1b380b0a5562a4913]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:32 iha 1.1.2.7: resync m195 -> m202 2006/10/27 14:59:19 iha 1.1.2.6: name consolidation 2005/10/11 09:20:06 bm 1.1.2.5: license header change 2004/06/09 18:43:45 iha 1.1.2.4: minor resource changes 2004/06/04 14:21:13 iha 1.1.2.3: new range chooser icon 2004/05/17 17:33:46 iha 1.1.2.2: provide object naming; resource cleanup 2004/05/07 16:20:43 iha 1.1.2.1: #i20344# moved here from dlg_DataSource


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ee88d1a8fb862cf875c8e009296dbdffd5af28c5]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:32 iha 1.1.2.17: resync m195 -> m202 2006/11/16 15:45:07 iha 1.1.2.16: #i71215# use numberformatter to display values in tip help 2006/11/01 17:47:10 iha 1.1.2.15: cleanup resources: no hardcoded quotes 2006/11/01 15:36:55 iha 1.1.2.14: cleanup resources + changed variable names according to style guide 2006/10/27 15:02:59 iha 1.1.2.13: name consolidation 2006/08/22 17:31:20 bm 1.1.2.12: #i68861# +getSelectedObjectText for the text shown in the status bar 2006/08/02 14:50:53 bm 1.1.2.11: getGridName: correctly determine main and sub grids 2006/08/02 11:16:25 bm 1.1.2.10: #i27352# implement quick help 2006/04/10 15:03:31 iha 1.1.2.9: api restructure axis, grids, scales and increments 2006/04/10 12:25:05 iha 1.1.2.8: api restructure axis, grids, scales and increments 2006/02/20 09:16:38 bm 1.1.2.7: +getHelpText for XChartDocument (in addition to XModel variant), +getNameForCID 2005/12/21 21:29:06 iha 1.1.2.6: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/18 18:19:53 iha 1.1.2.5: restructuring for proper subgrid support 2005/10/11 09:20:05 bm 1.1.2.4: license header change 2005/07/13 12:12:47 iha 1.1.2.3: replace all newlines and provide x values 2005/07/13 11:47:26 iha 1.1.2.2: provide ui strings for help and accessibility 2004/05/17 17:46:48 iha 1.1.2.1: provide object naming


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ba145b150363db9536cdb30b8d68f340dfbb4e37]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/27 16:27:59 bm 1.1.2.20: #i71233# disable dialog commit when there are invalid ranges or series with missing mandatory roles 2007/02/27 13:45:31 bm 1.1.2.19: Disable controls and tabs when invalid ranges were entered 2007/02/26 13:20:32 bm 1.1.2.18: use different foreground and background for invalid ranges, like in Firefox. 2006/12/13 14:38:18 bm 1.1.2.17: correct order of roles data dialog 2006/12/12 18:04:10 bm 1.1.2.16: #i71666# show categories also for scatter charts, as data labels 2006/11/10 21:03:05 iha 1.1.2.15: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/10/27 11:26:51 bm 1.1.2.14: allow to add a categories range when there were no categories before 2006/10/25 11:24:10 bm 1.1.2.13: allow setting previously unset sequences, e.g. labels at data series with external data provider 2006/07/19 15:55:24 bm 1.1.2.12: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/04/22 11:12:11 iha 1.1.2.11: park unused categories in scale with AxisType not being CATEGORY 2006/03/17 13:26:09 bm 1.1.2.10: +allArgumentsForRectRangeDetected 2005/11/14 17:56:31 iha 1.1.2.9: removed superfluous method restore - undo is done outside of the dialog 2005/11/11 18:45:22 iha 1.1.2.8: move only compatible series 2005/11/11 13:56:56 iha 1.1.2.7: remove direct view update call 2005/11/11 13:45:01 iha 1.1.2.6: guard DataRange Dialog against to many view updates 2005/10/11 09:20:05 bm 1.1.2.5: license header change 2005/05/12 13:56:39 bm 1.1.2.4: API change XDataProvider 2005/05/09 09:50:55 bm 1.1.2.3: moved parts of API to data namespace 2005/04/19 14:34:40 bm 1.1.2.2: fixing the data source/range chooser dialogs 2005/04/15 14:47:23 bm 1.1.2.1: helpers for data source dialogs


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [34ab89f1a0e1d23e739a3571ca02b6f3515bfe4f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/02 15:43:38 bm 1.1.2.41: use correct color for new series 2007/02/28 13:22:41 bm 1.1.2.40: #i71233# isSeriesValid returns true when only one mandatory role exists. Until we re-think the whole mandatory stuff again. 2007/02/27 16:27:59 bm 1.1.2.39: #i71233# disable dialog commit when there are invalid ranges or series with missing mandatory roles 2007/02/09 17:29:17 bm 1.1.2.38: XChartDocument::createInternalDataProvider() works like expected now 2007/02/09 12:24:50 bm 1.1.2.37: #i72841# move deleteSeries functionality to tools/DataSeriesHelper 2007/02/08 21:25:32 iha 1.1.2.36: resync m195 -> m202 2006/12/13 14:38:18 bm 1.1.2.35: correct order of roles data dialog 2006/12/12 18:04:10 bm 1.1.2.34: #i71666# show categories also for scatter charts, as data labels 2006/12/11 16:29:58 bm 1.1.2.33: STR_DATA_NEW_SERIES removed 2006/12/05 23:43:13 iha 1.1.2.32: #i71675# enable set data label range for xy charts 2006/11/10 21:03:05 iha 1.1.2.31: prevent immidiate redraw in wizard and according dialogs (important for charts with many data) 2006/10/27 11:26:51 bm 1.1.2.30: allow to add a categories range when there were no categories before 2006/10/25 11:24:10 bm 1.1.2.29: allow setting previously unset sequences, e.g. labels at data series with external data provider 2006/10/24 11:52:47 bm 1.1.2.28: DataSourceHelper::detectRangeSegmentation supports no unused data 2006/07/26 14:46:18 bm 1.1.2.27: allow insertion of data series into empty chart 2006/07/19 15:55:23 bm 1.1.2.26: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/04/22 11:11:54 iha 1.1.2.25: park unused categories in scale with AxisType not being CATEGORY 2006/03/17 13:25:26 bm 1.1.2.24: +allArgumentsForRectRangeDetected 2005/12/21 21:29:06 iha 1.1.2.23: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/11/14 17:56:46 iha 1.1.2.22: removed superfluous method restore - undo is done outside of the dialog 2005/11/11 18:45:21 iha 1.1.2.21: move only compatible series 2005/11/11 17:59:01 iha 1.1.2.20: don't set categories to scatter charts 2005/11/11 13:57:16 iha 1.1.2.19: remove direct view update call 2005/11/11 13:45:40 iha 1.1.2.18: guard DataRange Dialog against to many view updates 2005/11/08 14:57:32 iha 1.1.2.17: set and remove categories also to and from secondary scales 2005/10/27 17:46:21 iha 1.1.2.16: support SequenceMapping 2005/10/13 17:38:44 iha 1.1.2.15: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 09:20:05 bm 1.1.2.14: license header change 2005/09/16 16:50:03 iha 1.1.2.13: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/08/18 15:20:40 bm 1.1.2.12: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/08/04 12:08:44 bm 1.1.2.11: assertion removed: xy-charts have no categories, this is no error 2005/08/03 16:36:15 bm 1.1.2.10: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/08/02 13:46:27 bm 1.1.2.9: data_type is not standard. use mapped_type instead 2005/07/29 14:54:00 bm 1.1.2.8: include unused data for calculation of data range 2005/07/28 09:34:49 bm 1.1.2.7: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries 2005/07/26 12:07:35 bm 1.1.2.6: use configuration colors in ColorProvider 2005/07/14 14:49:49 bm 1.1.2.5: create dummy categories if there are none but the charttype needs them 2005/05/12 13:56:39 bm 1.1.2.4: API change XDataProvider 2005/05/09 09:50:54 bm 1.1.2.3: moved parts of API to data namespace 2005/04/19 14:34:40 bm 1.1.2.2: fixing the data source/range chooser dialogs 2005/04/15 14:47:12 bm 1.1.2.1: helpers for data source dialogs


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a229b3b2e442102a835ead08dcd7ba8de75195ae]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/13 14:38:18 bm 1.1.2.3: correct order of roles data dialog 2006/07/25 16:46:03 bm 1.1.2.2: #i64824# handle number formats in the data browser 2006/07/19 15:48:03 bm 1.1.2.1: #i64824# link between the data provider and the data browser control


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [114c0f973b4f4b4c59e4256969c423dfbbfd3991]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/14 16:30:14 bm 1.1.2.14: #i72340# allow swapping rows 2007/02/08 21:25:31 iha 1.1.2.13: resync m195 -> m202 2006/12/13 17:39:49 bm 1.1.2.12: private struct access problem with solaris compiler 2006/12/13 14:38:17 bm 1.1.2.11: correct order of roles data dialog 2006/12/12 18:04:10 bm 1.1.2.10: #i71666# show categories also for scatter charts, as data labels 2006/10/25 11:24:10 bm 1.1.2.9: allow setting previously unset sequences, e.g. labels at data series with external data provider 2006/07/30 21:27:54 bm 1.1.2.8: lcl_getSharedSequences: pass the sequence as const ref to allow temporaries 2006/07/26 14:46:18 bm 1.1.2.7: allow insertion of data series into empty chart 2006/07/25 16:46:02 bm 1.1.2.6: #i64824# handle number formats in the data browser 2006/07/25 12:51:40 bm 1.1.2.5: #i64824# lock controllers during adding/deleting of data points of all series to avoid multiple model updates 2006/07/24 14:42:10 bm 1.1.2.4: #i64824# forgot to remove commented-out lines 2006/07/24 14:40:55 bm 1.1.2.3: #i64824# fixed insertion of new data series and deletion of series. 2006/07/20 09:53:52 bm 1.1.2.2: #i64824# show shared sequences correctly. Missing: insert new series 2006/07/19 15:48:22 bm 1.1.2.1: #i64824# link between the data provider and the data browser control


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0e4b435bd15736fb2fa18fe89f5316bc4128f82a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/07/25 16:46:02 bm 1.1.2.6: #i64824# handle number formats in the data browser 2006/07/19 15:55:23 bm 1.1.2.5: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/03/08 10:38:52 bm 1.1.2.4: new UI for DataEditor. Define TEST_NEW_UI in dlg_DataEditor.hrc to activate 2005/10/11 09:20:04 bm 1.1.2.3: license header change 2005/08/19 14:29:37 bm 1.1.2.2: remove sort functionality 2005/08/17 16:52:56 bm 1.1.2.1: data editor for standalone data (first approach)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [58f538c1b9dfb8c1d53306be7de9913fa0272920]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/03/26 15:37:33 bm 1.1.2.18: #i73162# allow column-based commands also in header columns 2007/02/09 12:23:25 bm 1.1.2.17: #i73171# warning box if invalid number was entered 2007/02/08 21:25:31 iha 1.1.2.16: resync m195 -> m202 2007/01/12 16:10:46 bm 1.1.2.15: #i74172# Don't show #1.NAN for empty number cells 2006/12/12 14:39:59 bm 1.1.2.14: #i71845# allow changes with mouse click, make first cell visible in xy-charts 2006/12/08 16:38:55 bm 1.1.2.13: #i72361# setting help id for edit field containing the series labels 2006/11/20 13:40:35 bm 1.1.2.12: do not clear first cell (was always empty in old chart but no longer is) 2006/07/25 16:46:02 bm 1.1.2.11: #i64824# handle number formats in the data browser 2006/07/19 15:55:23 bm 1.1.2.10: #i64824# improvement of the data editor for internal data. Especially the handling of flexible data and series with more than one role 2006/03/13 16:54:40 bm 1.1.2.9: #126133# add changes made to sch/../databrws.cxx also here 2006/03/08 17:53:15 bm 1.1.2.8: new UI design for data dialog 2006/03/08 10:38:51 bm 1.1.2.7: new UI for DataEditor. Define TEST_NEW_UI in dlg_DataEditor.hrc to activate 2005/10/11 09:20:04 bm 1.1.2.6: license header change 2005/08/19 14:29:37 bm 1.1.2.5: remove sort functionality 2005/08/19 09:10:12 bm 1.1.2.4: deletion of rows/columns corrected, swapping implemented 2005/08/18 16:29:48 bm 1.1.2.3: +add/remove columns/rows 2005/08/18 14:10:16 bm 1.1.2.2: internal data in in rows 2005/08/17 16:52:56 bm 1.1.2.1: data editor for standalone data (first approach)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [414ba8d1cdb1a51df637479fcb493b42e0e1e4d9]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/12/05 22:33:10 iha 1.1.1.1.4.3: correct button order according to wizard spec 2005/10/07 11:11:44 bm 1.1.1.1.4.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/06/09 20:17:40 iha 1.1.1.1.4.1: Smooth Line Properties Dialog


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c373b9341a33b6dff8f1c42c7dbc1dbc0fccffd4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:04 bm 1.1.2.2: license header change 2004/05/27 15:50:59 iha 1.1.2.1: #i20344# provide charttype template - needed in case no data is selected at all or in case the dialog should not be in liveupdate mode


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [aa8e47d01d10c37a373fcdfa5e29d96b4a18eb6a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/19 16:09:07 iha 1.1.2.22: #i76130# write attribute sort-by-x-values per plot-area not per series 2006/08/21 17:03:45 iha 1.1.2.21: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/01/27 09:51:18 bm 1.1.2.20: InlineContainer.hxx moved to comphelper 2005/11/14 12:07:58 iha 1.1.2.19: keep parameter while switching between charttypes in charttype page 2005/11/11 17:48:25 iha 1.1.2.18: wrong subcharttype selected when switching from scatter to other types 2005/10/11 09:20:04 bm 1.1.2.17: license header change 2004/06/30 12:13:47 iha 1.1.2.16: #i20329# added ThreeDLookScheme 2004/06/09 21:01:05 iha 1.1.2.15: separate Line and XY again 2004/06/09 17:48:02 iha 1.1.2.14: update enabling of extra controls 2004/06/09 16:21:51 iha 1.1.2.13: update line count 2004/05/27 15:56:38 iha 1.1.2.12: #i20344# added method getCurrentTemplate; some const 2004/04/21 20:07:52 iha 1.1.2.11: #i20344# pie subtypes changed 2004/04/20 21:03:17 iha 1.1.2.10: enable stacking subtypes for charttype 3D Line 2004/04/20 20:34:22 iha 1.1.2.9: enable 3D line & scatter chart 2004/04/20 14:07:27 iha 1.1.2.8: #i20344# added method adjustSubType 2004/04/20 09:20:56 iha 1.1.2.7: no special treatment for pie needed anymore 2004/04/19 20:02:16 iha 1.1.2.6: #i20344# enable Pie Offset Mode 2004/04/19 17:17:46 iha 1.1.2.5: enable pie ring switch 2004/04/19 15:14:44 iha 1.1.2.4: #i20344# added combi chart Column+Line; added geometry controls for bar&columns; added pie/ring switch 2004/04/14 12:17:26 iha 1.1.2.3: added Area and Net Charttypes 2004/04/08 16:46:33 iha 1.1.2.2: added bar 2004/04/07 21:33:18 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8b3e7862017f9bdaf762eb13efe5a2ade115c7b9]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/04/19 16:09:29 iha 1.1.2.47: #i76130# write attribute sort-by-x-values per plot-area not per series 2007/03/01 16:16:13 iha 1.1.2.46: #i71558# Select '3D', deselect => the object borders are gone 2007/02/27 15:34:23 iha 1.1.2.45: name first pie image 'normal' in charttype dlg 2007/02/08 21:25:31 iha 1.1.2.44: resync m195 -> m202 2006/10/10 15:43:08 iha 1.1.2.43: don't show stacked icons for deep 3D lines 2006/08/24 14:49:18 iha 1.1.2.42: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in cached data 2006/08/21 17:03:45 iha 1.1.2.41: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/03/10 10:20:40 iha 1.1.2.40: don't use leading underscore 2005/11/15 12:47:10 iha 1.1.2.39: fixed area type detection 2005/11/15 12:32:47 iha 1.1.2.38: fixed pie detection 2005/11/14 12:07:57 iha 1.1.2.37: keep parameter while switching between charttypes in charttype page 2005/11/11 17:49:03 iha 1.1.2.36: wrong subcharttype selected when switching from scatter to other types 2005/11/02 13:49:17 bm 1.1.2.35: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:03 bm 1.1.2.34: license header change 2005/08/15 17:04:05 iha 1.1.2.33: don't crash caused by illegal number of lines (if switching charttype from stock to column+line) 2005/07/26 12:06:55 bm 1.1.2.32: call resetStyles for former template to restore default settings 2005/06/27 14:43:30 iha 1.1.2.31: use template mechanism to detect the number of lines 2004/09/15 15:38:59 iha 1.1.2.30: implement api redesign 2004/06/30 12:14:13 iha 1.1.2.29: #i20329# added ThreeDLookScheme 2004/06/09 21:01:04 iha 1.1.2.28: separate Line and XY again 2004/06/09 17:48:09 iha 1.1.2.27: update enabling of extra controls 2004/06/09 16:22:26 iha 1.1.2.26: update line count 2004/06/04 11:35:00 iha 1.1.2.25: new charttype icons 2004/05/27 15:57:04 iha 1.1.2.24: #i20344# added method getCurrentTemplate; some const 2004/05/07 16:39:06 iha 1.1.2.23: #i20344# more distance below subtype list 2004/04/28 19:07:01 iha 1.1.2.22: #i20344# icon cleanup, prepare line subtypes 2004/04/28 14:25:50 iha 1.1.2.21: #i20344# net subtypes 2004/04/27 15:00:30 iha 1.1.2.20: warnings removed 2004/04/27 13:32:40 iha 1.1.2.19: warnings removed 2004/04/22 09:30:10 iha 1.1.2.18: correct ThreeDLine service names (fallback for no stacking is deep stacking for now) 2004/04/21 20:56:11 iha 1.1.2.17: #i20344# net subtypes changed 2004/04/21 20:07:51 iha 1.1.2.16: #i20344# pie subtypes changed 2004/04/21 18:00:05 iha 1.1.2.15: #i20344# changed type names 2004/04/20 21:03:17 iha 1.1.2.14: enable stacking subtypes for charttype 3D Line 2004/04/20 20:34:21 iha 1.1.2.13: enable 3D line & scatter chart 2004/04/20 19:51:21 iha 1.1.2.12: make curve style an adabtable property; no stackmode for x axis with values 2004/04/20 17:16:58 iha 1.1.2.11: #i20344# added description to chart subtypes 2004/04/20 14:07:26 iha 1.1.2.10: #i20344# added method adjustSubType 2004/04/20 09:20:56 iha 1.1.2.9: no special treatment for pie needed anymore 2004/04/19 20:02:14 iha 1.1.2.8: #i20344# enable Pie Offset Mode 2004/04/19 17:18:05 iha 1.1.2.7: enable pie ring switch 2004/04/19 15:15:23 iha 1.1.2.6: #i20344# added combi chart Column+Line; added geometry controls for bar&columns; added pie/ring switch 2004/04/14 14:00:13 iha 1.1.2.5: use smaller dummy icons 2004/04/14 12:17:43 iha 1.1.2.4: added Area and Net Charttypes 2004/04/08 16:46:33 iha 1.1.2.3: added bar 2004/04/08 15:32:32 iha 1.1.2.2: #i20344# corrected image list handling 2004/04/07 21:33:35 iha 1.1.2.1: #i20344# new


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [39c873e63507b97bd92067bcb669cf1da1c0a0fb]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:03 bm 1.1.2.2: license header change 2004/04/19 14:17:38 iha 1.1.2.1: #i20344# helper classes for chart wizard Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4010ec410046ab9a67cfe1d797ce5b5ff2631798]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:31 iha 1.1.2.3: resync m195 -> m202 2005/10/11 09:20:03 bm 1.1.2.2: license header change 2004/04/19 14:18:02 iha 1.1.2.1: #i20344# helper classes for chart wizard Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [41dc87941a78d675ae6f97c54dacdcd41898a75a]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2006/11/02 16:24:37 iha 1.1.1.1.4.7: no automatic break for more than 100 labels 2005/10/07 11:11:32 bm 1.1.1.1.4.6: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/06/04 14:19:58 iha 1.1.1.1.4.5: new range chooser icon 2004/06/04 11:34:27 iha 1.1.1.1.4.4: new charttype icons 2004/04/28 19:07:00 iha 1.1.1.1.4.3: #i20344# icon cleanup, prepare line subtypes 2004/04/28 14:25:49 iha 1.1.1.1.4.2: #i20344# net subtypes 2004/04/21 20:56:11 iha 1.1.1.1.4.1: #i20344# net subtypes changed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a7d5c9eac1a18253c30d5c4424b376d433a733c8]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:11:20 bm 1.1.1.1.4.6: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/06/04 14:20:39 iha 1.1.1.1.4.5: new range chooser icon 2004/06/04 11:33:23 iha 1.1.1.1.4.4: new charttype icons 2004/04/28 19:07:00 iha 1.1.1.1.4.3: #i20344# icon cleanup, prepare line subtypes 2004/04/28 14:25:49 iha 1.1.1.1.4.2: #i20344# net subtypes 2004/04/21 20:56:11 iha 1.1.1.1.4.1: #i20344# net subtypes changed


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [22ccd4646bbd6b93a1819b7d58b65a279426ce44]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2005/10/07 11:11:10 bm 1.1.1.1.4.8: RESYNC: (1.2-1.3); FILE MERGED 2004/08/10 12:16:13 bm 1.1.1.1.4.7: resource changes (removal of translations and change to de, en-US and x-comment 2004/06/04 14:20:58 iha 1.1.1.1.4.6: new range chooser icon 2004/06/04 11:33:51 iha 1.1.1.1.4.5: new charttype icons 2004/04/28 19:07:00 iha 1.1.1.1.4.4: #i20344# icon cleanup, prepare line subtypes 2004/04/28 14:25:49 iha 1.1.1.1.4.3: #i20344# net subtypes 2004/04/21 20:56:10 iha 1.1.1.1.4.2: #i20344# net subtypes changed 2004/03/19 14:32:50 bm 1.1.1.1.4.1: XDataSource now contains XLabeledDataSources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2f9d865b9d9ac9b871221a65abcc052bbfbfac3f]

INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED 2007/01/08 14:07:28 bm 1.1.1.1.4.8: #i73221# include guard added 2005/10/07 11:11:00 bm 1.1.1.1.4.7: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/06/04 14:19:45 iha 1.1.1.1.4.6: new range chooser icon 2004/06/04 11:33:05 iha 1.1.1.1.4.5: new charttype icons 2004/04/28 19:06:59 iha 1.1.1.1.4.4: #i20344# icon cleanup, prepare line subtypes 2004/04/28 14:25:49 iha 1.1.1.1.4.3: #i20344# net subtypes 2004/04/21 20:56:10 iha 1.1.1.1.4.2: #i20344# net subtypes changed 2004/03/19 14:32:50 bm 1.1.1.1.4.1: XDataSource now contains XLabeledDataSources


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [42633dddff11ca7bf2ed63a6a0afb38326e2c111]

INTEGRATION: CWS chart2mst3 (1.1.4); FILE MERGED 2006/04/10 15:03:31 iha 1.1.4.26: api restructure axis, grids, scales and increments 2006/03/12 01:25:25 iha 1.1.4.25: implement old AddIn interface 2006/03/12 00:47:00 iha 1.1.4.24: removed unused file 2006/03/12 00:45:17 iha 1.1.4.23: enlarge validity of area or line properties of data series to lifetime of new chartmodel 2006/02/17 20:57:53 iha 1.1.4.22: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/01/11 13:24:38 iha 1.1.4.21: pie is rotated 90 degree compared to other charts 2005/11/02 13:49:17 bm 1.1.4.20: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/07 11:10:46 bm 1.1.4.19: RESYNC: (1.1-1.2); FILE MERGED 2005/08/19 15:35:15 bm 1.1.4.18: -ArrayDataProvider 2005/07/22 08:19:28 bm 1.1.4.17: +WrappedNumberFormatProperty.obj 2005/07/14 15:32:55 iha 1.1.4.16: cleanup WrappedIgnoreProperty 2005/07/07 16:23:54 bm 1.1.4.15: use wrapper for area to get correct named properties (hatches, gradients etc.) 2005/07/01 17:58:06 iha 1.1.4.14: offer stock properties 'Volume' and 'UpDown' 2005/06/22 08:12:17 iha 1.1.4.13: support property DataCaption at diagram, series and data point 2005/06/17 20:06:57 iha 1.1.4.12: support spline propeties 2005/06/15 17:59:50 iha 1.1.4.11: support Up/DownBar in old API 2005/06/14 15:02:14 iha 1.1.4.10: new class to support MinMaxLine for old api 2005/06/08 11:26:54 iha 1.1.4.9: use number format key at API instead of string 2005/05/09 16:30:42 iha 1.1.4.8: added support for property Symboltype 2005/04/29 16:28:41 iha 1.1.4.7: renamed and reorganized 'WrappedMeterExcistenceProperty'->'WrappedMeterExistenceProperties' 2005/04/22 18:52:05 iha 1.1.4.6: old api support - statistic properties 2005/04/19 17:28:40 iha 1.1.4.5: improved old api support (introduced wrappedpropertyset ...) 2004/06/04 07:58:22 bm 1.1.4.4: +WallFloorWrapper 2004/05/28 14:12:02 bm 1.1.4.3: +GridWrapper 2004/03/24 10:45:24 bm 1.1.4.2: some improvements of old API 2004/02/13 16:51:16 bm 1.1.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9796a8b3fab5a08ac2190d1054ce3b19286aa816]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 09:20:02 bm 1.1.2.2: license header change 2005/04/19 17:32:50 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [94f8a763cfb831c4bae9c54e4a732758e45d3ba2]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:31 iha 1.1.2.3: resync m195 -> m202 2005/10/11 09:20:02 bm 1.1.2.2: license header change 2005/04/19 17:32:10 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1b280e32410ebeed2d09f751d8e9bdfe023cdd58]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:53 iha 1.1.2.3: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:20:02 bm 1.1.2.2: license header change 2005/05/09 16:29:04 iha 1.1.2.1: added support for property Symboltype


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2173229f2a0be0cd134f73aceaba2cf4726c9e93]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:31 iha 1.1.2.9: resync m195 -> m202 2006/11/16 09:43:18 iha 1.1.2.8: #i71374# saved xy line only gets symbols when loading in older versions 2006/03/12 01:34:54 iha 1.1.2.7: changed default of lines to true 2006/02/17 20:57:53 iha 1.1.2.6: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/06 18:22:42 iha 1.1.2.5: offer property 'Lines' at diagram for old API 2005/12/20 14:08:29 dr 1.1.2.4: API struct member names without prefixes 2005/11/24 15:08:24 bm 1.1.2.3: symbol graphics support 2005/10/11 09:20:02 bm 1.1.2.2: license header change 2005/05/09 16:29:20 iha 1.1.2.1: added support for property Symboltype


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9951ed6730f5b3f36fbbf0c0b8b16bbe549a88c0]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:52 iha 1.1.2.3: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:20:01 bm 1.1.2.2: license header change 2005/07/01 17:57:17 iha 1.1.2.1: offer stock properties 'Volume' and 'UpDown'


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2abcdedcc7eea95f3ae1f92e87842c1bcfbe8811]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:30 iha 1.1.2.6: resync m195 -> m202 2006/02/17 20:57:52 iha 1.1.2.5: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/11/02 13:49:16 bm 1.1.2.4: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:20:01 bm 1.1.2.3: license header change 2005/07/04 16:33:52 iha 1.1.2.2: corrected getPropertyValue 2005/07/01 17:57:34 iha 1.1.2.1: offer stock properties 'Volume' and 'UpDown'


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8ab850c985ffec96a8e2cf9830f3f655d0e46cf6]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:52 iha 1.1.2.4: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:20:01 bm 1.1.2.3: license header change 2005/05/09 16:27:46 iha 1.1.2.2: changed contructor parameter 2005/04/22 18:51:17 iha 1.1.2.1: old api support - statistic properties


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [be51866b2d7930ddbcf9a3f16b0b5d2cb97ff6ad]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:30 iha 1.1.2.12: resync m195 -> m202 2006/06/07 15:29:51 bm 1.1.2.11: #124503# handle DataErrorProperties property 2006/06/07 14:53:45 bm 1.1.2.10: #124497# +properties DataRegressionProperties, DataErrorProperties, DataMeanValueProperties 2006/02/17 20:57:51 iha 1.1.2.9: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:20:01 bm 1.1.2.8: license header change 2005/07/04 11:49:31 iha 1.1.2.7: enable load of deprecated regression curve type 'POLYNOMIAL' 2005/06/30 14:09:40 iha 1.1.2.6: correct default value for RegressionCurves 2005/06/30 13:51:47 iha 1.1.2.5: only set regression curve if not NONE 2005/06/23 14:37:17 iha 1.1.2.4: correct support for statistic properties 2005/06/22 11:25:48 iha 1.1.2.3: different error bar defaults 2005/05/09 16:27:27 iha 1.1.2.2: moved template to WrappedSeriesOrDiagramProperty.hxx + changed contructor parameter 2005/04/22 18:51:31 iha 1.1.2.1: old api support - statistic properties


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f3e66d584683f980d3af77556ac202e0cd582e77]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:51 iha 1.1.2.3: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:20:00 bm 1.1.2.2: license header change 2005/06/17 20:05:51 iha 1.1.2.1: support spline propeties


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0ca69a29f74c15dc5bfe91e3d618d5f14fe24989]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:30 iha 1.1.2.6: resync m195 -> m202 2006/02/17 20:57:50 iha 1.1.2.5: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:20:00 bm 1.1.2.4: license header change 2005/07/18 09:35:00 bm 1.1.2.3: don't use WrappedProperty::m_aInnerName for getPropertyState to work correctly 2005/07/01 14:51:35 iha 1.1.2.2: init outparamter correctly 2005/06/17 20:06:26 iha 1.1.2.1: support spline propeties


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [61655c3454a25cb58839cadfdd759be2262fa1bd]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:50 iha 1.1.2.7: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:20:00 bm 1.1.2.6: license header change 2005/07/01 14:50:56 iha 1.1.2.5: init outparamter correctly 2005/06/21 12:53:11 iha 1.1.2.4: removed superfluous check 2005/06/17 20:17:33 iha 1.1.2.3: corrected parameter HasAmbiguousValue 2005/05/12 16:13:55 bm 1.1.2.2: namespace rtl for OUString missing 2005/05/09 16:25:19 iha 1.1.2.1: new baseclass for wrapped properties that occur on the diagram and also at single series or datapoints Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1dc3c687205d00463a3b448f120d9cb7b0947c47]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 00:42:57 iha 1.1.2.1: enlarge validity of area or line properties of data series to lifetime of new chartmodel


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b2ef4a880c4d7bb1fc408eb91d06a623b20f1aa4]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:30 iha 1.1.2.2: resync m195 -> m202 2006/03/12 00:43:10 iha 1.1.2.1: enlarge validity of area or line properties of data series to lifetime of new chartmodel


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b721187ee263c24f3abfea8e1b24e54f99df426c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:49 iha 1.1.2.4: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/01/11 13:26:42 iha 1.1.2.3: pie is rotated 90 degree compared to other charts 2005/10/11 09:20:00 bm 1.1.2.2: license header change 2005/04/19 17:33:00 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b4e331992f25c7fcbd6d68db7f09b03bc477ecaf]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:30 iha 1.1.2.15: resync m195 -> m202 2006/12/07 23:26:26 iha 1.1.2.14: use new method DiagramHelper::isPieOrDonutChart 2006/11/22 17:31:18 iha 1.1.2.13: resync 2006/09/29 15:01:11 iha 1.1.2.12: corrected creation of 3D pies and donuts (extrude instead of lathe objects- for corect texture, get rid of problem with extended scene due to rotating bounding box, fixed #i67743# and no 90degree rotation difference between old and new API anymore) 2006/06/30 22:25:27 iha 1.1.2.11: correct 3D pie rotation: different default camera for pies + 90 degree rotation caused by different object creation 2006/06/23 15:49:05 iha 1.1.2.10: use corrected decomposition method for matrices + use matrix from basegfx instead of Matrix4D 2006/06/09 16:23:42 iha 1.1.2.9: worked around Pie Rotation offset for compatibility with old chart 2006/02/17 20:57:49 iha 1.1.2.8: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/01/26 15:42:58 bm 1.1.2.7: deprecated (and unused) header included 2006/01/16 18:34:35 iha 1.1.2.6: changed pie rotation correction 2006/01/11 13:26:08 iha 1.1.2.5: pie is rotated 90 degree compared to other charts 2005/11/02 13:49:16 bm 1.1.2.4: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/11 09:19:59 bm 1.1.2.3: license header change 2005/06/24 16:16:57 iha 1.1.2.2: temporary workaround: disable loading of 3d transformation -> 3d charts especially pie charts are better visible 2005/04/19 17:33:09 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [582341a818187e255f9df5c985e47e0133f2e7b7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:48 iha 1.1.2.5: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/01/17 19:03:00 iha 1.1.2.4: load sub interval on scales correctly 2006/01/17 18:22:45 iha 1.1.2.3: load and save scales correctly 2005/10/11 09:19:59 bm 1.1.2.2: license header change 2005/04/19 17:32:01 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8d4b4a06be3ea1f2d5049ea69ea4433344855b98]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:29 iha 1.1.2.13: resync m195 -> m202 2006/09/24 09:46:25 iha 1.1.2.12: #i61970# correct implementation of axis at 2006/09/24 09:12:53 iha 1.1.2.11: #i61970# correct implementation of axis at 2006/07/28 19:56:42 iha 1.1.2.10: set help step correctly via old API 2006/04/10 12:25:05 iha 1.1.2.9: api restructure axis, grids, scales and increments 2006/03/12 00:57:10 iha 1.1.2.8: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:57:48 iha 1.1.2.7: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/01/17 19:03:00 iha 1.1.2.6: load sub interval on scales correctly 2006/01/17 18:22:45 iha 1.1.2.5: load and save scales correctly 2005/10/24 11:06:37 iha 1.1.2.4: coordinate system restructure 2005/10/13 17:38:44 iha 1.1.2.3: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/11 09:19:59 bm 1.1.2.2: license header change 2005/04/19 17:31:51 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [1552121dcc65a3582bfb3b62bdbb432be2bf28f7]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/01 18:40:15 iha 1.1.2.7: #68896# always save the explicit number format 2005/10/11 09:19:59 bm 1.1.2.6: license header change 2005/08/22 15:39:12 iha 1.1.2.5: load property 'LinkNumberFormatToSource' correctly 2005/07/22 08:18:47 bm 1.1.2.4: wrapper for NumberFormat and LinkNumberFormatToSource properties 2005/06/08 11:26:54 iha 1.1.2.3: use number format key at API instead of string 2005/06/07 16:00:59 iha 1.1.2.2: use numberformatter from model 2005/04/19 17:31:42 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0da5ddc78591bf75ee6eb9983fd2fdd1a71604f2]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:29 iha 1.1.2.9: resync m195 -> m202 2006/12/13 22:05:36 iha 1.1.2.8: #i68896# don't set linked numberformat while having internal data 2006/12/01 18:40:37 iha 1.1.2.7: #68896# always save the explicit number format 2005/10/11 09:19:58 bm 1.1.2.6: license header change 2005/08/22 15:39:31 iha 1.1.2.5: load property 'LinkNumberFormatToSource' correctly 2005/07/22 08:18:46 bm 1.1.2.4: wrapper for NumberFormat and LinkNumberFormatToSource properties 2005/06/08 11:26:54 iha 1.1.2.3: use number format key at API instead of string 2005/06/07 16:00:15 iha 1.1.2.2: use numberformatter from model 2005/04/19 17:31:33 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3bfba0e06d05474320504a05134fc2db20634e62]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/12 00:56:43 iha 1.1.2.4: merged ChartAPIValueProvider with Chart2ModelContact 2005/10/11 09:19:58 bm 1.1.2.3: license header change 2005/05/31 19:07:20 iha 1.1.2.2: create old api without controller 2005/04/19 17:31:24 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ef5a397efbe48b18f82df23e6ad5e0825546a567]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:29 iha 1.1.2.5: resync m195 -> m202 2006/03/12 00:56:23 iha 1.1.2.4: merged ChartAPIValueProvider with Chart2ModelContact 2005/10/11 09:19:58 bm 1.1.2.3: license header change 2005/05/31 19:07:20 iha 1.1.2.2: create old api without controller 2005/04/19 17:30:28 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2d39a61c7cea6213f14bdd46c4e7201bab76f7fc]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/04/10 12:25:05 iha 1.1.2.6: api restructure axis, grids, scales and increments 2006/02/17 20:57:47 iha 1.1.2.5: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/01 19:14:33 iha 1.1.2.4: don't hold axis ref 2005/11/22 14:07:37 iha 1.1.2.3: support BarOverlap and GapWidth 2005/10/11 09:19:57 bm 1.1.2.2: license header change 2005/04/19 17:30:01 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [06d5dfc66405b93331bc33190f5b1674d5ced8b9]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:29 iha 1.1.2.7: resync m195 -> m202 2006/04/10 12:25:05 iha 1.1.2.6: api restructure axis, grids, scales and increments 2006/02/17 20:57:46 iha 1.1.2.5: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/01 19:14:59 iha 1.1.2.4: don't hold axis ref 2005/11/22 14:08:07 iha 1.1.2.3: support BarOverlap and GapWidth 2005/10/11 09:19:57 bm 1.1.2.2: license header change 2005/04/19 17:29:52 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f4c0dec08ae4704d9ab7c6effed9faf52ed762ca]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:46 iha 1.1.2.3: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:19:57 bm 1.1.2.2: license header change 2005/06/22 08:11:16 iha 1.1.2.1: support property DataCaption at diagram, series and data point


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c2fef90667d6f01b957f36c7e6a04825670de299]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:29 iha 1.1.2.4: resync m195 -> m202 2006/02/17 20:57:46 iha 1.1.2.3: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:19:57 bm 1.1.2.2: license header change 2005/06/22 08:11:39 iha 1.1.2.1: support property DataCaption at diagram, series and data point


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [36dacac8c2b9c3dd59aab890fc6ceb05fdff002f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/14 13:44:28 iha 1.1.2.5: #i71411# explicitly save font size as mixed defaults are in use 2006/03/14 19:05:38 iha 1.1.2.4: #i63008# crash leaving inplace mode while having subtitlesx 2006/02/17 20:57:45 iha 1.1.2.3: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:19:56 bm 1.1.2.2: license header change 2005/04/19 17:29:04 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cbb2d7497d9bf157be75e877d362e16945ace793]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/14 13:44:36 iha 1.1.2.9: #i71411# explicitly save font size as mixed defaults are in use 2007/02/08 21:25:29 iha 1.1.2.8: resync m195 -> m202 2006/03/14 19:05:38 iha 1.1.2.7: #i63008# crash leaving inplace mode while having subtitlesx 2006/03/12 00:55:42 iha 1.1.2.6: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:57:45 iha 1.1.2.5: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:19:56 bm 1.1.2.4: license header change 2005/06/09 15:48:08 iha 1.1.2.3: includes changed 2005/05/31 19:07:19 iha 1.1.2.2: create old api without controller 2005/04/19 17:29:13 iha 1.1.2.1: improved old api support (introduced wrappedpropertyset ...)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6aedb17c70c54a27b654c4d037e6f16381742baa]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/04/10 15:01:35 iha 1.1.2.1: api restructure axis, grids, scales and increments


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7cb6c0a55964315a58dac818c606b8ba2828b3f3]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:29 iha 1.1.2.4: resync m195 -> m202 2006/11/16 13:41:23 iha 1.1.2.3: #i71215# corrected position for diagrams with axis title - don't create dummy title 2006/09/21 12:03:10 bm 1.1.2.2: #i69680# set defaults of axis and grid existence to false 2006/04/10 15:01:53 iha 1.1.2.1: api restructure axis, grids, scales and increments


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [e83c99e014f37c079c776ede14f51d61da42ac8f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/08/08 14:58:07 iha 1.1.2.2: don't refresh addin when loading is not finished 2006/03/12 00:30:02 iha 1.1.2.1: implement old AddIn interface


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d989736d612655105bbce8270effac191f6b0c4e]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:28 iha 1.1.2.3: resync m195 -> m202 2006/08/08 14:58:36 iha 1.1.2.2: don't refresh addin when loading is not finished 2006/03/12 00:29:42 iha 1.1.2.1: implement old AddIn interface


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c412104ba7221a69a64427a947ccd4d2ccf35c1d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:45 iha 1.1.2.4: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:19:56 bm 1.1.2.3: license header change 2005/04/19 17:28:40 iha 1.1.2.2: improved old api support (introduced wrappedpropertyset ...) 2004/06/04 07:52:20 bm 1.1.2.1: handling named properties like FillGradientName (coming from XML)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [2cfac61f4367620f28807cc7e1a25c3a498e2a17]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:28 iha 1.1.2.17: resync m195 -> m202 2006/10/25 21:51:55 iha 1.1.2.16: cope with context dependent defaults from old chart 2006/10/25 17:53:26 iha 1.1.2.15: cope with context dependent defaults from old chart 2006/09/20 16:27:09 bm 1.1.2.14: #i69680# As the floor is consistent and the default is the same in the old and new API, only set no-default for the wall 2006/09/20 15:58:18 bm 1.1.2.13: #i69680# Wall and floor have no defaults. They are always exported in the old and the new chart. (The wall defaults in the old chart were chart type dependent). 2006/03/12 00:55:15 iha 1.1.2.12: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:57:44 iha 1.1.2.11: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/11/15 15:30:15 bm 1.1.2.10: garbage collection, disposing, reference release issues 2005/10/11 09:19:55 bm 1.1.2.9: license header change 2005/08/03 16:36:14 bm 1.1.2.8: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:32:48 iha 1.1.2.7: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:56:56 bm 1.1.2.6: use named properties for gradients etc. in chart model 2005/07/07 12:09:22 bm 1.1.2.5: some defaults are different in old chart 2005/05/31 19:07:18 iha 1.1.2.4: create old api without controller 2005/04/19 17:28:40 iha 1.1.2.3: improved old api support (introduced wrappedpropertyset ...) 2004/09/27 17:15:52 iha 1.1.2.2: replaced getInfoHelper().fillPropertyMembersByHandle by NamedFillProperties::GetPropertyNameForHandle 2004/06/04 07:52:03 bm 1.1.2.1: handling named properties like FillGradientName (coming from XML)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6cd7a6a4d1316e18f89ad1c84b4ba997f394ef36]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:44 iha 1.1.2.4: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:19:55 bm 1.1.2.3: license header change 2005/07/13 16:07:44 iha 1.1.2.2: disable mapping from name to value for gradients etc. - use nane to name instead 2005/06/15 17:58:46 iha 1.1.2.1: support Up/DownBar in old API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [aae86cbdb5c1bab56bf0eacebcf97472374bf468]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:28 iha 1.1.2.11: resync m195 -> m202 2006/03/12 00:54:50 iha 1.1.2.10: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:57:43 iha 1.1.2.9: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/11/15 15:30:13 bm 1.1.2.8: garbage collection, disposing, reference release issues 2005/11/01 15:42:57 iha 1.1.2.7: don't export default values 2005/10/11 09:19:55 bm 1.1.2.6: license header change 2005/08/03 16:36:14 bm 1.1.2.5: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:32:48 iha 1.1.2.4: remove unused parameter 'bIncludeStyleProperties' 2005/07/13 16:08:17 iha 1.1.2.3: disable mapping from name to value for gradients etc. - use nane to name instead 2005/07/12 12:56:56 bm 1.1.2.2: use named properties for gradients etc. in chart model 2005/06/15 17:59:00 iha 1.1.2.1: support Up/DownBar in old API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c57e65edc6fbb6bcca9f5598953b788bf2b53d69]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/03/14 19:05:37 iha 1.2.4.7: #i63008# crash leaving inplace mode while having subtitlesx 2006/02/17 20:57:43 iha 1.2.4.6: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/06 14:55:10 iha 1.2.4.5: enlarge lifetime of titlewrapper 2005/10/07 11:10:33 bm 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2005/07/15 13:32:27 iha 1.2.4.3: removed support if FastPropertySet at WrappedPropertySet as this is to errorprone due to mismatch of FastPropertyIds 2005/04/19 17:28:40 iha 1.2.4.2: improved old api support (introduced wrappedpropertyset ...) 2004/02/13 16:51:16 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d8d5e4e67185a22e28d01d301a79e9fcbc25c25d]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:03:07 bm 1.2.4.22: RESYNC: (1.3-1.4); FILE MERGED 2006/03/14 19:05:37 iha 1.2.4.21: #i63008# crash leaving inplace mode while having subtitlesx 2006/03/12 00:54:26 iha 1.2.4.20: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/25 15:16:47 iha 1.2.4.19: correct default value for title string property 2006/02/17 20:57:43 iha 1.2.4.18: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/06 14:55:29 iha 1.2.4.17: enlarge lifetime of titlewrapper 2006/01/27 09:51:17 bm 1.2.4.16: InlineContainer.hxx moved to comphelper 2005/11/15 15:30:12 bm 1.2.4.15: garbage collection, disposing, reference release issues 2005/10/07 11:10:23 bm 1.2.4.14: RESYNC: (1.2-1.3); FILE MERGED 2005/08/03 16:36:13 bm 1.2.4.13: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/15 13:32:27 iha 1.2.4.12: removed support if FastPropertySet at WrappedPropertySet as this is to errorprone due to mismatch of FastPropertyIds 2005/07/14 12:45:39 iha 1.2.4.11: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/07/14 12:32:48 iha 1.2.4.10: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:56:55 bm 1.2.4.9: use named properties for gradients etc. in chart model 2005/05/31 19:07:16 iha 1.2.4.8: create old api without controller 2005/04/19 17:28:40 iha 1.2.4.7: improved old api support (introduced wrappedpropertyset ...) 2004/08/25 16:35:59 iha 1.2.4.6: View independent loading - relative position with dynamic anchor point 2004/05/07 13:48:45 bm 1.2.4.5: some updates 2004/04/26 19:02:08 iha 1.2.4.4: #i27367# use simpler interface to move objects at PositionAndSizeHelper 2004/04/26 11:17:44 iha 1.2.4.3: #i27367# get title size and position from ChartAPIValueProvider 2004/03/29 12:59:17 bm 1.2.4.2: do not create template again 2004/02/13 16:51:16 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [cf83ae594c8b1f81d885f30a9c445723b6f505c8]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/14 19:05:06 iha 1.1.2.1: #i63008# crash leaving inplace mode while having subtitles


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [338c6c98d1255e5d5d2101be84158645a6e63181]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/17 20:57:42 iha 1.1.2.6: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:19:55 bm 1.1.2.5: license header change 2005/07/19 13:50:18 bm 1.1.2.4: some properties fixed 2005/07/15 21:15:13 iha 1.1.2.3: fixed LineStyle for Min 2005/06/15 18:02:31 iha 1.1.2.2: LineDash for MinMaxLine 2005/06/14 15:01:21 iha 1.1.2.1: new class to support MinMaxLine for old api Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b067f486cd0e390866faa8f875fe334f46e41c77]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:28 iha 1.1.2.13: resync m195 -> m202 2006/03/12 00:54:04 iha 1.1.2.12: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:57:42 iha 1.1.2.11: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/11/15 15:30:11 bm 1.1.2.10: garbage collection, disposing, reference release issues 2005/11/01 14:58:51 iha 1.1.2.9: don't export default values (especially no wrong ones) 2005/10/11 09:19:54 bm 1.1.2.8: license header change 2005/08/03 16:36:13 bm 1.1.2.7: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/19 13:50:18 bm 1.1.2.6: some properties fixed 2005/07/15 21:15:13 iha 1.1.2.5: fixed LineStyle for Min 2005/07/14 12:32:47 iha 1.1.2.4: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:56:55 bm 1.1.2.3: use named properties for gradients etc. in chart model 2005/06/15 18:02:51 iha 1.1.2.2: LineDash for MinMaxLine 2005/06/14 15:01:40 iha 1.1.2.1: new class to support MinMaxLine for old api Issue number: Submitted by: Reviewed by:


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5b9f6693f7eb289ab023663b51870d3fd7712bd7]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/03/14 19:05:37 iha 1.2.4.6: #i63008# crash leaving inplace mode while having subtitlesx 2006/02/17 20:57:42 iha 1.2.4.5: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/07 11:10:12 bm 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2005/04/19 17:28:40 iha 1.2.4.3: improved old api support (introduced wrappedpropertyset ...) 2004/09/23 09:16:39 iha 1.2.4.2: save - old api - legend property states 2004/02/13 16:51:16 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8798b34153e1d768b459fba0588626d68bde4b6b]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/25 21:51:55 iha 1.2.4.28: cope with context dependent defaults from old chart 2006/10/25 17:52:28 iha 1.2.4.27: cope with context dependent defaults from old chart 2006/10/18 17:02:59 bm 1.2.4.26: RESYNC: (1.3-1.4); FILE MERGED 2006/03/14 19:05:37 iha 1.2.4.25: #i63008# crash leaving inplace mode while having subtitlesx 2006/03/12 00:53:47 iha 1.2.4.24: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:57:41 iha 1.2.4.23: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/01/27 09:51:16 bm 1.2.4.22: InlineContainer.hxx moved to comphelper 2005/11/15 15:30:04 bm 1.2.4.21: garbage collection, disposing, reference release issues 2005/10/07 11:10:02 bm 1.2.4.20: RESYNC: (1.2-1.3); FILE MERGED 2005/08/18 15:20:39 bm 1.2.4.19: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/08/03 16:36:13 bm 1.2.4.18: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:45:39 iha 1.2.4.17: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/07/14 12:32:46 iha 1.2.4.16: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:56:55 bm 1.2.4.15: use named properties for gradients etc. in chart model 2005/07/07 12:09:22 bm 1.2.4.14: some defaults are different in old chart 2005/05/31 19:07:15 iha 1.2.4.13: create old api without controller 2005/04/19 17:28:39 iha 1.2.4.12: improved old api support (introduced wrappedpropertyset ...) 2004/09/27 17:16:28 iha 1.2.4.11: replaced getInfoHelper().fillPropertyMembersByHandle by NamedFillProperties::GetPropertyNameForHandle 2004/09/27 14:39:05 iha 1.2.4.10: save - old api - get correct state and value for list element names (like gradients) 2004/09/23 09:16:38 iha 1.2.4.9: save - old api - legend property states 2004/08/25 16:36:28 iha 1.2.4.8: View independent loading - relative position with dynamic anchor point 2004/08/24 11:22:36 iha 1.2.4.7: corrected service implementation name 2004/06/04 07:56:54 bm 1.2.4.6: use named properties 2004/04/26 19:02:08 iha 1.2.4.5: #i27367# use simpler interface to move objects at PositionAndSizeHelper 2004/04/26 17:38:06 iha 1.2.4.4: #i27367# implemented setSize/Position 2004/04/26 11:41:08 iha 1.2.4.3: #i27367# get size and position from ChartAPIValueProvider 2004/03/24 10:45:24 bm 1.2.4.2: some improvements of old API 2004/02/13 16:51:15 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f211913bb5aaf567e9ac4bd19934640ef4fb20c0]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/04/10 12:25:04 iha 1.1.2.8: api restructure axis, grids, scales and increments 2006/02/17 20:57:41 iha 1.1.2.7: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/02 14:39:13 iha 1.1.2.6: some unused code removed 2005/12/07 12:24:43 iha 1.1.2.5: corrected method name 2005/11/18 18:19:52 iha 1.1.2.4: restructuring for proper subgrid support 2005/10/11 09:19:54 bm 1.1.2.3: license header change 2005/04/19 17:28:39 iha 1.1.2.2: improved old api support (introduced wrappedpropertyset ...) 2004/05/28 14:12:08 bm 1.1.2.1: wrapper for grids


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [90db8513cd0cccffd8e3668f456dd1cb9d873ba8]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:28 iha 1.1.2.17: resync m195 -> m202 2006/04/10 15:03:30 iha 1.1.2.16: api restructure axis, grids, scales and increments 2006/04/10 12:25:04 iha 1.1.2.15: api restructure axis, grids, scales and increments 2006/03/12 00:53:26 iha 1.1.2.14: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:57:41 iha 1.1.2.13: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/01/27 09:51:15 bm 1.1.2.12: InlineContainer.hxx moved to comphelper 2005/12/07 12:24:59 iha 1.1.2.11: corrected method name 2005/11/18 18:19:52 iha 1.1.2.10: restructuring for proper subgrid support 2005/11/15 15:30:00 bm 1.1.2.9: garbage collection, disposing, reference release issues 2005/10/11 09:19:54 bm 1.1.2.8: license header change 2005/08/03 16:36:13 bm 1.1.2.7: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:32:46 iha 1.1.2.6: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:56:54 bm 1.1.2.5: use named properties for gradients etc. in chart model 2005/07/07 12:09:22 bm 1.1.2.4: some defaults are different in old chart 2005/05/31 19:07:13 iha 1.1.2.3: create old api without controller 2005/04/19 17:28:39 iha 1.1.2.2: improved old api support (introduced wrappedpropertyset ...) 2004/05/28 14:11:52 bm 1.1.2.1: wrapper for grids


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b265565b31b9d773ab133879ecb8d76692e4e5b8]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/11/16 08:45:14 iha 1.2.4.18: #i71215# correct symbol color and lines for xy symbol only charts 2006/02/17 20:57:40 iha 1.2.4.17: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/06 15:29:41 iha 1.2.4.16: enlarge lifetime of titlewrapper 2006/02/03 19:36:37 iha 1.2.4.15: correct series index access for old api 2005/11/08 16:08:09 bm 1.2.4.14: update mechanism for old API wrapper. Todo: implement for all objects and especially for chartdocument 2005/10/07 11:09:48 bm 1.2.4.13: RESYNC: (1.2-1.3); FILE MERGED 2005/07/07 11:24:25 bm 1.2.4.12: getDiagramType uses template detection 2005/06/15 18:01:44 iha 1.2.4.11: support Up/DownBar in old API 2005/06/14 15:07:52 iha 1.2.4.10: support MinMaxLine for old api 2005/05/24 15:10:00 iha 1.2.4.9: add z grid 2005/04/19 17:28:39 iha 1.2.4.8: improved old api support (introduced wrappedpropertyset ...) 2004/08/25 16:38:12 iha 1.2.4.7: View independent loading - relative position with dynamic anchor point 2004/06/04 07:53:33 bm 1.2.4.6: use WallFloorWrapper for wall and floor 2004/05/28 14:12:46 bm 1.2.4.5: + grid support 2004/05/13 09:49:01 bm 1.2.4.4: Property Deep: reset x-stacking mode only for bar/column chart need chart type manager in CTOR for getChartTypeTemplate() method 2004/04/26 19:02:07 iha 1.2.4.3: #i27367# use simpler interface to move objects at PositionAndSizeHelper 2004/04/26 17:39:27 iha 1.2.4.2: #i27367# implemented setSize/Position 2004/02/13 16:51:15 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [644d4d76fc75adc6999ef599770b08eadff590f4]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/04/20 08:05:43 iha 1.2.4.92: #i75393# Connect Bars per diagram not per series 2007/04/19 16:05:40 iha 1.2.4.91: #i76130# write attribute sort-by-x-values per plot-area not per series 2006/11/16 14:22:55 iha 1.2.4.90: #i71215# switch off lines only for scatter charts not for pies or other 2006/11/16 13:37:57 iha 1.2.4.89: #i71215# corrected position for diagrams with axis title 2006/11/16 09:40:09 iha 1.2.4.88: #i71215# correct symbol color and lines for xy symbol only charts 2006/11/16 08:45:27 iha 1.2.4.87: #i71215# correct symbol color and lines for xy symbol only charts 2006/10/18 17:02:50 bm 1.2.4.86: RESYNC: (1.3-1.4); FILE MERGED 2006/10/06 19:20:01 iha 1.2.4.85: ignore invalid positions or sizes for diagram 2006/04/10 15:03:30 iha 1.2.4.84: api restructure axis, grids, scales and increments 2006/04/10 12:25:04 iha 1.2.4.83: api restructure axis, grids, scales and increments 2006/03/15 13:23:00 iha 1.2.4.82: enable save of old addins 2006/03/12 00:53:07 iha 1.2.4.81: merged ChartAPIValueProvider with Chart2ModelContact 2006/03/07 17:51:14 iha 1.2.4.80: proper initialize m_aOuterValue for number if lines 2006/02/17 20:57:40 iha 1.2.4.79: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/16 17:42:29 iha 1.2.4.78: missing return in DiagramWrapper::getDataPointProperties 2006/02/06 14:55:56 iha 1.2.4.77: enlarge lifetime of titlewrapper 2006/02/03 19:36:26 iha 1.2.4.76: correct series index access for old api 2006/01/27 09:51:14 bm 1.2.4.75: InlineContainer.hxx moved to comphelper 2006/01/11 13:27:16 iha 1.2.4.74: pie is rotated 90 degree compared to other charts 2005/12/07 12:24:04 iha 1.2.4.73: remove unnecessary code 2005/11/30 17:10:48 bm 1.2.4.72: don't use identifier for axis titles 2005/11/28 15:35:38 bm 1.2.4.71: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/15 15:29:55 bm 1.2.4.70: garbage collection, disposing, reference release issues 2005/11/08 16:08:08 bm 1.2.4.69: update mechanism for old API wrapper. Todo: implement for all objects and especially for chartdocument 2005/11/02 13:49:16 bm 1.2.4.68: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/27 18:26:34 iha 1.2.4.67: support SequenceMapping 2005/10/07 11:09:33 bm 1.2.4.66: RESYNC: (1.2-1.3); FILE MERGED 2005/08/18 15:20:39 bm 1.2.4.65: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/08/03 16:36:12 bm 1.2.4.64: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/23 00:01:18 iha 1.2.4.63: include axis title sizes in diagram position to support old api and fileformat 2005/07/14 15:32:54 iha 1.2.4.62: cleanup WrappedIgnoreProperty 2005/07/14 14:42:43 iha 1.2.4.61: cleanup Fillproperties 2005/07/14 12:00:34 iha 1.2.4.60: use identical fast-property-IDs for lineproperties everywhere 2005/07/12 12:56:54 bm 1.2.4.59: use named properties for gradients etc. in chart model 2005/07/07 11:24:24 bm 1.2.4.58: getDiagramType uses template detection 2005/07/04 14:00:59 iha 1.2.4.57: get property number of lines only if no series available 2005/07/01 18:04:23 iha 1.2.4.56: correct number of lines property 2005/07/01 17:58:48 iha 1.2.4.55: offer stock properties 'Volume' and 'UpDown' 2005/07/01 16:05:55 iha 1.2.4.54: correct number of lines property 2005/07/01 15:10:49 iha 1.2.4.53: dont change diagram again if number of lines is already set with same value 2005/06/30 16:16:30 iha 1.2.4.52: correct number of lines 2005/06/27 14:25:27 iha 1.2.4.51: support property number of lines 2005/06/22 08:13:40 iha 1.2.4.50: support property DataCaption at diagram, series and data point 2005/06/21 16:15:38 bm 1.2.4.49: getDiagramType should return stock if we have a stock with volume (where the first series is of type column) 2005/06/21 12:52:04 iha 1.2.4.48: map area properties correct for datapoints 2005/06/17 20:12:25 iha 1.2.4.47: support spline propeties 2005/06/17 20:11:12 iha 1.2.4.46: remove false setting of defaults from diagram to series 2005/06/15 18:01:27 iha 1.2.4.45: support Up/DownBar in old API 2005/06/14 15:07:44 iha 1.2.4.44: support MinMaxLine for old api 2005/06/14 12:57:50 bm 1.2.4.43: avoid exception+assertion if document has no Axis Titles 2005/06/10 15:55:33 bm 1.2.4.42: Diagram supports services for axes (otherwise they are not exported in xmloff 2005/05/31 19:07:11 iha 1.2.4.41: create old api without controller 2005/05/24 15:10:37 iha 1.2.4.40: add z grid 2005/05/09 16:31:45 iha 1.2.4.39: added support for property Symboltype 2005/05/09 09:50:53 bm 1.2.4.38: moved parts of API to data namespace 2005/05/04 14:02:35 iha 1.2.4.37: changed contructor parameters for DataSeriesPointWrapper 2005/04/29 16:28:40 iha 1.2.4.36: renamed and reorganized 'WrappedMeterExcistenceProperty'->'WrappedMeterExistenceProperties' 2005/04/29 15:52:19 iha 1.2.4.35: fixed creation of 2nd axis 2005/04/22 18:53:21 iha 1.2.4.34: old api support - statistic properties 2005/04/22 10:33:00 iha 1.2.4.33: implemented Property AttributedDataPoints 2005/04/21 16:49:17 iha 1.2.4.32: improved old api support 2005/04/19 17:28:39 iha 1.2.4.31: improved old api support (introduced wrappedpropertyset ...) 2004/09/30 15:25:20 bm 1.2.4.30: special handling for fill properties 2004/09/29 14:24:30 bm 1.2.4.29: RegressionCurves property added for compatibility, fill-properties are delegated to Wall 2004/09/27 17:16:53 iha 1.2.4.28: replaced getInfoHelper().fillPropertyMembersByHandle by NamedFillProperties::GetPropertyNameForHandle 2004/09/21 16:53:15 iha 1.2.4.27: old api: added has xyz/main/sub grid 2004/09/20 17:25:48 bm 1.2.4.26: add parameter to setStackMode that only sets the mode at the first chart-type 2004/09/16 14:57:08 iha 1.2.4.25: implement api redesign 2004/09/16 14:46:29 iha 1.2.4.24: implement api redesign 2004/09/16 12:33:34 iha 1.2.4.23: implement api redesign 2004/09/15 17:31:59 bm 1.2.4.22: API simplification 2004/08/25 16:38:05 iha 1.2.4.21: View independent loading - relative position with dynamic anchor point 2004/06/04 07:53:11 bm 1.2.4.20: use named properties. use WallFloorWrapper for wall and floor 2004/05/28 14:12:33 bm 1.2.4.19: + grid support 2004/05/27 17:27:56 bm 1.2.4.18: only set "Vertical" property if it changed 2004/05/26 10:09:30 bm 1.2.4.17: use cached template 2004/05/13 09:48:44 bm 1.2.4.16: Property Deep: reset x-stacking mode only for bar/column chart need chart type manager in CTOR for getChartTypeTemplate() method 2004/05/07 15:35:41 bm 1.2.4.15: HasAxis: code simplyfied 2004/05/07 13:48:45 bm 1.2.4.14: some updates 2004/04/27 13:40:32 bm 1.2.4.13: axis titles (Has-Properties) 2004/04/26 19:02:07 iha 1.2.4.12: #i27367# use simpler interface to move objects at PositionAndSizeHelper 2004/04/26 17:39:27 iha 1.2.4.11: #i27367# implemented setSize/Position 2004/04/26 11:18:39 iha 1.2.4.10: #i27367# get position from ChartAPIValueProvider 2004/04/21 15:11:24 bm 1.2.4.9: comments corrected 2004/04/19 16:35:54 bm 1.2.4.8: Has-Properties 2004/04/19 08:35:51 bm 1.2.4.7: map chart-types 2004/04/01 16:03:00 bm 1.2.4.6: some more fixes for setDimension() for old API 2004/04/01 10:53:04 bm 1.2.4.5: XChartType: may return a coordinate system now 2004/03/29 12:59:17 bm 1.2.4.4: do not create template again 2004/03/12 15:32:50 iha 1.2.4.3: added AxisPosition for secondary axes 2004/03/02 09:35:20 bm 1.2.4.2: properties added (esp. the Has... properties) 2004/02/13 16:51:15 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b2a9e96be3837e0e444e1884e09a3985f5de5b7c]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/02/28 16:55:30 iha 1.3.4.14: #i74965# export fillcolor for single piesegment correctly 2006/11/16 08:45:43 iha 1.3.4.13: #i71215# correct symbol color and lines for xy symbol only charts 2006/10/16 18:15:40 iha 1.3.4.12: save data point symbol 'NONE' correct for Line and Symbol charts 2006/03/14 19:05:37 iha 1.3.4.11: #i63008# crash leaving inplace mode while having subtitlesx 2006/03/12 01:24:37 iha 1.3.4.10: enlarge validity of area or line properties of data series to lifetime of new chartmodel 2006/02/17 20:57:39 iha 1.3.4.9: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/03 19:34:04 iha 1.3.4.8: correct series index access for old api + offer series wrapper to create via uno and initialize without series index at all 2005/10/07 11:09:21 bm 1.3.4.7: RESYNC: (1.3-1.4); FILE MERGED 2005/07/15 13:32:27 iha 1.3.4.6: removed support if FastPropertySet at WrappedPropertySet as this is to errorprone due to mismatch of FastPropertyIds 2005/06/23 14:36:03 iha 1.3.4.5: correct support for statistic properties 2005/06/21 12:51:42 iha 1.3.4.4: map area properties correct for datapoints 2005/05/04 14:02:35 iha 1.3.4.3: changed contructor parameters for DataSeriesPointWrapper 2005/04/19 17:28:38 iha 1.3.4.2: improved old api support (introduced wrappedpropertyset ...) 2004/06/04 07:54:39 bm 1.3.4.1: needs ChartAPIValueProvider for fill properties


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3f310ef63247e026dae5998b99ff40101cdcf1a9]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2007/04/19 16:03:53 iha 1.3.4.47: #i76130# write attribute sort-by-x-values per plot-area not per series 2007/02/28 16:55:29 iha 1.3.4.46: #i74965# export fillcolor for single piesegment correctly 2007/02/26 13:49:28 iha 1.3.4.45: #i63312# export D3DPercentDiagonal 2007/02/08 18:01:24 iha 1.3.4.44: #i72533# colors for xy charts change when exporting from new chart and loading in old one 2006/11/16 08:45:53 iha 1.3.4.43: #i71215# correct symbol color and lines for xy symbol only charts 2006/10/25 22:29:19 iha 1.3.4.42: save and reload pie color correct 2006/10/20 20:52:35 iha 1.3.4.41: implement gradient step count 2006/10/18 17:02:42 bm 1.3.4.40: RESYNC: (1.4-1.5); FILE MERGED 2006/10/16 18:15:31 iha 1.3.4.39: save data point symbol 'NONE' correct for Line and Symbol charts 2006/08/21 17:03:22 iha 1.3.4.38: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore) 2006/06/22 14:51:57 bm 1.3.4.37: do not add bitmap properties as ignore properties since they are implemented regularly 2006/05/17 14:11:57 bm 1.3.4.36: support bitmap properties like tile, stretch, offsets etc. 2006/03/14 19:05:37 iha 1.3.4.35: #i63008# crash leaving inplace mode while having subtitlesx 2006/03/12 00:43:34 iha 1.3.4.34: enlarge validity of area or line properties of data series to lifetime of new chartmodel 2006/03/10 10:20:40 iha 1.3.4.33: don't use leading underscore 2006/02/17 20:57:39 iha 1.3.4.32: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/03 19:34:40 iha 1.3.4.31: correct series index access for old api + offer series wrapper to create via uno and initialize without series index at all 2006/01/27 09:51:12 bm 1.3.4.30: InlineContainer.hxx moved to comphelper 2005/11/24 18:32:42 bm 1.3.4.29: transparency gradients enabled 2005/11/24 15:08:24 bm 1.3.4.28: symbol graphics support 2005/11/15 15:29:54 bm 1.3.4.27: garbage collection, disposing, reference release issues 2005/10/24 11:06:36 iha 1.3.4.26: coordinate system restructure 2005/10/21 13:35:00 bm 1.3.4.25: enable FillBitmaps 2005/10/07 11:09:08 bm 1.3.4.24: RESYNC: (1.3-1.4); FILE MERGED 2005/08/03 16:36:12 bm 1.3.4.23: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/15 13:32:27 iha 1.3.4.22: removed support if FastPropertySet at WrappedPropertySet as this is to errorprone due to mismatch of FastPropertyIds 2005/07/14 15:32:54 iha 1.3.4.21: cleanup WrappedIgnoreProperty 2005/07/14 14:42:42 iha 1.3.4.20: cleanup Fillproperties 2005/07/14 11:59:51 iha 1.3.4.19: use identical fast-property-IDs for lineproperties everywhere 2005/07/14 11:36:36 iha 1.3.4.18: use identical fast-property-IDs for lineproperties everywhere 2005/07/12 12:56:53 bm 1.3.4.17: use named properties for gradients etc. in chart model 2005/07/01 11:32:08 bm 1.3.4.16: pie segment offset property added 2005/06/23 14:36:30 iha 1.3.4.15: correct support for statistic properties 2005/06/22 08:13:00 iha 1.3.4.14: support property DataCaption at diagram, series and data point 2005/06/21 12:51:26 iha 1.3.4.13: map area properties correct for datapoints 2005/06/15 18:04:57 iha 1.3.4.12: cleanup 2005/05/31 19:07:10 iha 1.3.4.11: create old api without controller 2005/05/09 16:30:11 iha 1.3.4.10: added support for property Symboltype 2005/05/06 11:15:02 bm 1.3.4.9: renamed parameter to avoid identical names for type and parameter 2005/05/04 14:02:00 iha 1.3.4.8: added WrappedAttachedAxisProperty + changed constructor 2005/04/22 18:53:21 iha 1.3.4.7: old api support - statistic properties 2005/04/21 16:49:17 iha 1.3.4.6: improved old api support 2005/04/19 17:28:38 iha 1.3.4.5: improved old api support (introduced wrappedpropertyset ...) 2004/09/27 17:17:32 iha 1.3.4.4: replaced getInfoHelper().fillPropertyMembersByHandle by NamedFillProperties::GetPropertyNameForHandle 2004/06/04 07:55:14 bm 1.3.4.3: use named properties 2004/05/28 14:14:04 bm 1.3.4.2: handle BorderTransparency avoid Exception for LineJoint property 2004/02/13 16:51:14 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [3fc152216119cf0eda22a1c58b33e0e133021ef1]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/18 17:02:34 bm 1.2.4.53: RESYNC: (1.3-1.4); FILE MERGED 2006/09/29 13:10:14 bm 1.2.4.52: #i64500# create additional shape list in the correct order to store them correctly in XML 2006/08/08 15:01:27 iha 1.2.4.51: don't refresh addin when loading is not finished 2006/03/16 10:18:58 bm 1.2.4.50: catch-order fixed: RuntimeException is derived from Exception (was a warning) 2006/03/12 01:18:42 iha 1.2.4.49: changed communication between model, view and controller; implemented old AddIn Interface; changed owneship and lifetime of view 2006/03/10 10:20:39 iha 1.2.4.48: don't use leading underscore 2006/02/17 20:57:39 iha 1.2.4.47: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/06 15:30:07 iha 1.2.4.46: enlarge lifetime of titlewrapper 2006/02/03 19:37:23 iha 1.2.4.45: offer series wrapper to create via uno and initialize without series index at all 2006/01/27 09:51:11 bm 1.2.4.44: InlineContainer.hxx moved to comphelper 2005/11/23 16:50:36 iha 1.2.4.43: cleanup SchSfxItemIds.hxx + removed unused defines 2005/11/15 15:29:52 bm 1.2.4.42: garbage collection, disposing, reference release issues 2005/11/08 16:08:08 bm 1.2.4.41: update mechanism for old API wrapper. Todo: implement for all objects and especially for chartdocument 2005/11/07 17:11:23 bm 1.2.4.40: XRefreshable removed 2005/11/02 13:49:16 bm 1.2.4.39: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/10/27 18:26:12 iha 1.2.4.38: support SequenceMapping 2005/10/19 16:48:39 bm 1.2.4.37: ::getData: if hasInternalDataProvider() was true, no model was passed to the ChartDataWrapper before.  As a result when getting data from Calc no internal (cached) data can be writen.  This seems better -- what was the reason for this? 2005/10/07 11:08:54 bm 1.2.4.36: RESYNC: (1.2-1.3); FILE MERGED 2005/10/06 09:07:53 bm 1.2.4.35: do not attach data if the given data is already attached to current model 2005/09/08 11:47:38 bm 1.2.4.34: create data wrapper without model when having external data provider 2005/08/18 15:20:39 bm 1.2.4.33: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/08/18 14:12:03 bm 1.2.4.32: use InternalDataProvider instead of ArrayDataProvider (is now superfluous and had implementation problems) 2005/08/15 13:01:32 bm 1.2.4.31: attachData: if we have already internal data, set it via the XChartDataArray interface 2005/08/03 16:36:12 bm 1.2.4.30: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/18 17:12:17 iha 1.2.4.29: update view in old api wrapped before saving 2005/07/07 16:23:04 bm 1.2.4.28: use wrapper for area to get correct named properties (hatches, gradients etc.) 2005/07/01 10:58:30 iha 1.2.4.27: correct load of donut charts - remove service name mismatch 2005/06/16 12:54:41 iha 1.2.4.26: create legend on demand 2005/06/14 12:53:59 bm 1.2.4.25: avoid exception+assertion if document has no Legend 2005/06/09 15:47:27 iha 1.2.4.24: support positions and sizes via view for old api wrapper 2005/06/07 15:38:28 iha 1.2.4.23: removed inactive XNumberFormatsSupplier interface from wrapper 2005/05/31 19:05:29 iha 1.2.4.22: create old api without controller 2005/05/12 13:56:38 bm 1.2.4.21: API change XDataProvider 2005/05/09 09:50:53 bm 1.2.4.20: moved parts of API to data namespace 2005/04/19 17:28:38 iha 1.2.4.19: improved old api support (introduced wrappedpropertyset ...) 2004/09/27 14:30:54 iha 1.2.4.18: save - old api - access correct gradient and oher lists; reduce direct access to draw model 2004/09/16 09:14:30 iha 1.2.4.17: implement api redesign 2004/09/09 15:12:35 bm 1.2.4.16: fixing loading of series: newly interpreted series have to be attached to the tree correctly 2004/09/08 15:36:41 bm 1.2.4.15: enable loading data series. There is one Diagram deletion too much which results in lost properties 2004/08/26 13:18:13 iha 1.2.4.14: implement XDrawPageSupplier 2004/05/13 09:51:07 bm 1.2.4.13: use column chart as default for "BarDiagram" service DiagramWrapper needs chart type manager in CTOR 2004/05/07 13:48:45 bm 1.2.4.12: some updates 2004/04/27 14:26:43 bm 1.2.4.11: warning removed 2004/04/26 19:02:07 iha 1.2.4.10: #i27367# use simpler interface to move objects at PositionAndSizeHelper 2004/04/26 17:39:26 iha 1.2.4.9: #i27367# implemented setSize/Position 2004/04/14 15:17:13 bm 1.2.4.8: getCurrentController() -> delegate to chart2-model 2004/04/05 14:12:24 bm 1.2.4.7: XDataProvider API changed 2004/03/29 12:59:17 bm 1.2.4.6: do not create template again 2004/03/24 19:05:21 bm 1.2.4.5: XChartTypeTemplate changed: matchesTemplate may modify the template s properties if bAdaptProperties is true 2004/03/24 10:45:24 bm 1.2.4.4: some improvements of old API 2004/03/19 14:32:49 bm 1.2.4.3: XDataSource now contains XLabeledDataSources 2004/03/02 09:34:31 bm 1.2.4.2: properties added (esp. the Has... properties) 2004/02/13 16:51:13 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [07b959944bc5cc8d24e563cb6d9ddfa09bedb4ea]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/02/17 20:57:38 iha 1.2.4.5: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/11/15 15:29:51 bm 1.2.4.4: garbage collection, disposing, reference release issues 2005/10/07 11:08:43 bm 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED 2005/10/06 09:09:04 bm 1.2.4.2: apply data to model which data is attached to when setting data or labels (old behaviour) 2004/03/24 10:45:24 bm 1.2.4.1: some improvements of old API


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [60d52b409c70d33c02e2921199eeca95502db304]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/10/25 11:24:09 bm 1.2.4.32: allow setting previously unset sequences, e.g. labels at data series with external data provider 2006/10/18 17:02:26 bm 1.2.4.31: RESYNC: (1.3-1.4); FILE MERGED 2006/08/08 09:07:35 iha 1.2.4.30: create addin charts correctly Marginal,MeanCummulative,Pareto,Pie 2006/02/17 20:57:38 iha 1.2.4.29: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/16 17:39:38 iha 1.2.4.28: don't lock solar mutex to long + return DBL_MIN as NotANumber to be conform with error in old api 2006/01/16 11:52:23 bm 1.2.4.27: warning removed 2005/11/29 18:11:57 iha 1.2.4.26: make more failsafe 2005/11/15 15:29:50 bm 1.2.4.25: garbage collection, disposing, reference release issues 2005/11/03 12:45:28 bm 1.2.4.24: vector::assign does not work because the (n,len) variant is chosen instead of (beg,end). Missing member template capabilities? 2005/11/02 19:18:15 iha 1.2.4.23: make more failsafe 2005/11/02 13:49:15 bm 1.2.4.22: scene properties changed from SceneDescriptor property to the D3D properties offered by SceneProperties.hxx (this way XML im-/export works with the xmloff helper) 2005/11/01 13:11:17 iha 1.2.4.21: support sequence mapping 2005/10/29 15:43:16 iha 1.2.4.20: support SequenceMapping also for chart local data 2005/10/27 18:25:46 iha 1.2.4.19: support SequenceMapping 2005/10/13 17:38:43 iha 1.2.4.18: renamed BoundedCoordinateSystem to CoordinateSystem 2005/10/07 11:08:24 bm 1.2.4.17: RESYNC: (1.2-1.3); FILE MERGED 2005/10/06 09:09:49 bm 1.2.4.16: apply data to model which data is attached to when setting data or labels (old behaviour) 2005/09/08 11:49:14 bm 1.2.4.15: refresh data when returning data and labels, do not refresh from model, if the data is not attached to it (model is set to 0 from outside) 2005/09/07 11:23:53 bm 1.2.4.14: last change undone -- XChartData may not belong to the current ChartModel (before attachData) 2005/09/07 11:16:36 bm 1.2.4.13: until we have a data change notification mechanism we always have to update the data in getData/getRowDescriptions/getColumnDescriptions 2005/08/18 15:20:38 bm 1.2.4.12: (gs)etDiagram -> (gs)etFirstDiagram to avoid name clashes with old API 2005/08/03 16:36:11 bm 1.2.4.11: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/08/02 13:45:21 bm 1.2.4.10: data_type is not standard. use mapped_type instead 2005/08/02 09:42:12 bm 1.2.4.9: pute data into the rectangular region in the same order than in old chart 2005/07/06 11:25:28 bm 1.2.4.8: return data in the correct order depending on DataRowSource 2005/07/05 16:47:52 bm 1.2.4.7: set row and column descriptions in refreshData 2005/05/09 09:50:53 bm 1.2.4.6: moved parts of API to data namespace 2005/04/19 17:28:38 iha 1.2.4.5: improved old api support (introduced wrappedpropertyset ...) 2004/09/16 09:04:39 iha 1.2.4.4: implement api redesign 2004/03/24 10:45:23 bm 1.2.4.3: some improvements of old API 2004/03/19 14:32:49 bm 1.2.4.2: XDataSource now contains XLabeledDataSources 2004/02/13 16:51:12 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [51283ae619cb9f15a8db3e08e2a77c6b90800516]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/12/01 18:39:22 iha 1.1.2.6: #68896# always save the explicit number format 2006/09/24 09:12:53 iha 1.1.2.5: #i61970# correct implementation of axis at 2006/04/10 15:03:30 iha 1.1.2.4: api restructure axis, grids, scales and increments 2006/04/10 12:25:04 iha 1.1.2.3: api restructure axis, grids, scales and increments 2006/03/12 00:51:14 iha 1.1.2.2: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:56:12 iha 1.1.2.1: enlarge validity of api wrapper objects to lifetime of new chartmodel


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5be1f44eb948ca9fb20187219ba58a0eec99be1f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:28 iha 1.1.2.6: resync m195 -> m202 2006/12/01 18:39:30 iha 1.1.2.5: #68896# always save the explicit number format 2006/09/24 09:12:53 iha 1.1.2.4: #i61970# correct implementation of axis at 2006/04/10 12:25:04 iha 1.1.2.3: api restructure axis, grids, scales and increments 2006/03/12 00:51:42 iha 1.1.2.2: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/17 20:56:27 iha 1.1.2.1: enlarge validity of api wrapper objects to lifetime of new chartmodel


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [755d478d2b18be9f7293947a7db80be9d58f9907]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2006/07/28 19:56:42 iha 1.2.4.12: set help step correctly via old API 2006/03/14 19:05:37 iha 1.2.4.11: #i63008# crash leaving inplace mode while having subtitlesx 2006/02/17 20:57:37 iha 1.2.4.10: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/02 14:38:11 iha 1.2.4.9: create inner axis only if accessed directly 2006/02/01 19:12:52 iha 1.2.4.8: offer XShape and XNumberFormatsSupplier interface for old api axis 2006/01/17 19:25:43 iha 1.2.4.7: load sub interval on scales correctly 2006/01/17 19:02:59 iha 1.2.4.6: load sub interval on scales correctly 2005/12/07 12:21:39 iha 1.2.4.5: remove dependendy from special axis identifiers 2005/10/07 11:08:13 bm 1.2.4.4: RESYNC: (1.2-1.3); FILE MERGED 2005/04/19 17:28:38 iha 1.2.4.3: improved old api support (introduced wrappedpropertyset ...) 2004/04/19 16:36:12 bm 1.2.4.2: +static method to create Axis-Id 2004/02/13 16:51:12 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [312c3c64fb7161c79115badbc1b5e116798fdb9f]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2007/02/23 14:52:02 iha 1.2.4.40: #i74799# export text break for axis explicitely 2006/12/01 18:41:08 iha 1.2.4.39: #68896# always save the explicit number format 2006/10/26 12:22:16 iha 1.2.4.38: load and save of vertically stacked axis label 2006/10/18 17:02:18 bm 1.2.4.37: RESYNC: (1.3-1.4); FILE MERGED 2006/09/22 15:53:54 bm 1.2.4.36: add property Visible, mapping to new API Show property 2006/08/04 09:53:19 iha 1.2.4.35: implment XNumberFormatsSupplier for old API misuse 2006/07/28 19:56:42 iha 1.2.4.34: set help step correctly via old API 2006/04/10 15:03:30 iha 1.2.4.33: api restructure axis, grids, scales and increments 2006/04/10 12:25:04 iha 1.2.4.32: api restructure axis, grids, scales and increments 2006/03/14 19:05:36 iha 1.2.4.31: #i63008# crash leaving inplace mode while having subtitlesx 2006/03/12 00:52:12 iha 1.2.4.30: merged ChartAPIValueProvider with Chart2ModelContact 2006/02/21 19:40:57 iha 1.2.4.29: added property show to axis to make axis title possible with invisible axis and enlarge lifetime for old api 2006/02/17 20:57:37 iha 1.2.4.28: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/02/02 14:37:48 iha 1.2.4.27: create inner axis only if accessed directly 2006/02/01 19:15:35 iha 1.2.4.26: don't hold axis ref in WrappedGapwidthProperty 2006/02/01 19:13:13 iha 1.2.4.25: offer XShape and XNumberFormatsSupplier interface for old api axis 2006/01/27 09:51:10 bm 1.2.4.24: InlineContainer.hxx moved to comphelper 2006/01/17 19:25:43 iha 1.2.4.23: load sub interval on scales correctly 2006/01/17 19:02:59 iha 1.2.4.22: load sub interval on scales correctly 2005/12/07 12:22:04 iha 1.2.4.21: remove dependendy from special axis identifiers 2005/11/22 14:08:45 iha 1.2.4.20: support BarOverlap and GapWidth 2005/11/15 15:29:49 bm 1.2.4.19: garbage collection, disposing, reference release issues 2005/10/24 11:06:36 iha 1.2.4.18: coordinate system restructure 2005/10/07 11:08:00 bm 1.2.4.17: RESYNC: (1.2-1.3); FILE MERGED 2005/08/22 15:40:36 iha 1.2.4.16: load property 'LinkNumberFormatToSource' correctly 2005/08/03 16:36:11 bm 1.2.4.15: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/22 08:20:02 bm 1.2.4.14: +LinkNumberFormatToSource property and specialized wrappers for this and NumberFormat 2005/07/14 12:45:39 iha 1.2.4.13: remove unused parameter 'bIncludeStyleProperties' from characterproperties 2005/07/14 12:32:44 iha 1.2.4.12: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:56:53 bm 1.2.4.11: use named properties for gradients etc. in chart model 2005/07/05 16:48:12 bm 1.2.4.10: DisplayLabels has default False in old API 2005/06/08 11:25:46 iha 1.2.4.9: use number format key at API instead of string 2005/06/07 15:59:13 iha 1.2.4.8: use numberformatter from model 2005/05/31 19:04:41 iha 1.2.4.7: create old api without controller 2005/04/19 17:28:38 iha 1.2.4.6: improved old api support (introduced wrappedpropertyset ...) 2004/08/24 11:11:06 iha 1.2.4.5: View independent loading - old api should set fixed font sizes 2004/04/19 16:36:12 bm 1.2.4.4: +static method to create Axis-Id 2004/04/13 16:01:25 bm 1.2.4.3: unsafe bool comparison 2004/03/12 15:32:50 iha 1.2.4.2: added AxisPosition for secondary axes 2004/02/13 16:51:11 bm 1.2.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [794e252c34eba595bb5ca2dd95a0a4607d1b15ea]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/07/28 18:17:48 iha 1.1.2.4: support XShape interface at chart area for old API misuse... 2006/02/17 20:57:37 iha 1.1.2.3: enlarge validity of api wrapper objects to lifetime of new chartmodel 2005/10/11 09:19:53 bm 1.1.2.2: license header change 2005/07/07 16:24:15 bm 1.1.2.1: use wrapper for area to get correct named properties (hatches, gradients etc.)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0dda91507a344954eccab7c8db1abb0ccaab3209]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/14 13:21:20 iha 1.1.2.13: #i71411# explicitly save line style of the chart border as mixed defaults are in use 2007/02/08 21:25:27 iha 1.1.2.12: resync m195 -> m202 2006/10/25 17:54:01 iha 1.1.2.11: removed unused include 2006/09/20 10:03:49 bm 1.1.2.10: #i69680# Default fill style of area is solid 2006/07/28 18:17:56 iha 1.1.2.9: support XShape interface at chart area for old API misuse... 2006/02/17 20:57:36 iha 1.1.2.8: enlarge validity of api wrapper objects to lifetime of new chartmodel 2006/01/27 09:51:10 bm 1.1.2.7: InlineContainer.hxx moved to comphelper 2005/11/15 15:29:47 bm 1.1.2.6: garbage collection, disposing, reference release issues 2005/10/11 09:19:53 bm 1.1.2.5: license header change 2005/08/03 16:36:10 bm 1.1.2.4: algohelper.hxx split up into CommonFunctors.hxx ContainerHelper.hxx CloneHelper.hxx 2005/07/14 12:32:43 iha 1.1.2.3: remove unused parameter 'bIncludeStyleProperties' 2005/07/12 12:56:52 bm 1.1.2.2: use named properties for gradients etc. in chart model 2005/07/07 16:24:24 bm 1.1.2.1: use wrapper for area to get correct named properties (hatches, gradients etc.)


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [4fed2451274a4baab293c6798f0d9b64a608e30e]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/23 09:55:52 bm 1.1.2.6: +AccessibleTextHelper 2006/02/20 09:22:49 bm 1.1.2.5: removed some classes 2005/10/11 09:19:52 bm 1.1.2.4: license header change 2005/10/10 16:24:04 bm 1.1.2.3: duplicate entries 2005/09/30 18:48:41 iha 1.1.2.2: Accessibility - under construction 2005/07/08 14:53:18 iha 1.1.2.1: create and notify an accessible view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [48cb1607d5a60413a6dea3056f86179c571b4a9d]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/02/20 09:50:14 bm 1.1.2.2: accessibility improvements 2005/09/30 18:46:36 iha 1.1.2.1: Accessibility - under construction


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [fb0ed9a2ff8eeb4560442aece9eebabf7c486269]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:27 iha 1.1.2.4: resync m195 -> m202 2006/02/20 15:29:47 bm 1.1.2.3: create data points and legend entries with parameter bMayHaveChildren=false 2006/02/20 09:50:13 bm 1.1.2.2: accessibility improvements 2005/09/30 18:42:02 iha 1.1.2.1: Accessibility - under construction


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ce06e8b018ccc4ad2f8670fc4aec2d51111b2375]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:27 iha 1.1.2.3: resync m195 -> m202 2006/11/26 10:55:32 bm 1.1.2.2: includes for solar mutex missing 2006/03/23 09:51:50 bm 1.1.2.1: text support for titles. This class is instantiated directly by the controller as it needs a DrawView to work


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [ae5a0c081b11a95b9b65e382fab32142fe41552a]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:27 iha 1.1.2.8: resync m195 -> m202 2006/02/24 15:54:53 bm 1.1.2.7: wrong exception spec 2006/02/20 16:52:50 bm 1.1.2.6: notify selection changes 2006/02/20 15:28:22 bm 1.1.2.5: provide an ExplicitValueProvider for ObjectHierarchy to get legend entries and data points 2006/02/20 09:50:13 bm 1.1.2.4: accessibility improvements 2005/09/30 18:49:11 iha 1.1.2.3: Accessibility - under construction 2005/07/11 16:09:33 iha 1.1.2.2: dom'T register twice as selection change listener 2005/07/08 14:52:54 iha 1.1.2.1: create and notify an accessible view


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [02bc03cb870e28cd27d0d6cf8bf39799533a8b96]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2006/03/23 09:56:08 bm 1.1.2.3: support for paragraphs for titles 2006/02/20 09:50:13 bm 1.1.2.2: accessibility improvements 2005/09/30 18:41:30 iha 1.1.2.1: Accessibility - under construction


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [0bc0d7b5a05880664918e1b6b51db174e70f9d55]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:27 iha 1.1.2.5: resync m195 -> m202 2006/03/23 09:56:08 bm 1.1.2.4: support for paragraphs for titles 2006/02/20 16:52:20 bm 1.1.2.3: make chart elements transient 2006/02/20 09:50:12 bm 1.1.2.2: accessibility improvements 2005/09/30 18:39:49 iha 1.1.2.1: Accessibility - under construction


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7e2e2809a0807568744880586931eb1140ab2f6f]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:27 iha 1.1.2.3: resync m195 -> m202 2006/02/20 15:25:20 bm 1.1.2.2: color properties 2006/02/20 09:21:44 bm 1.1.2.1: new base class for accessibility objects that does not implement XAccessibleExtendedComponent


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [69d170920193048a2eb232d8133f9c98a6074d6c]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/12/21 21:29:04 iha 1.1.2.2: remove identifiers from model objects and create an index based CID protocol instead for selection purposes 2005/09/30 18:44:48 iha 1.1.2.1: Accessibility - under construction


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [82a0062e6faead9c1277b0608e0d7cd379e1a94e]

INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2007/02/08 21:25:26 iha 1.1.2.2: resync m195 -> m202 2005/09/30 18:41:40 iha 1.1.2.1: Accessibility - under construction


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [9ec47a90d7e816fff8062b4b86a0c908f4bda4e2]

INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED 2007/04/26 09:53:57 bm 1.4.4.12: RESYNC: resolving merge problems 2007/02/01 16:54:10 iha 1.4.4.11: remove superfluous code from old context menu 2006/11/22 17:23:31 iha 1.4.4.10: RESYNC: (1.7-1.8); FILE MERGED 2006/10/06 09:10:52 bm 1.4.4.9: #i64500# need sot library for clipboard 2006/05/05 14:03:51 bm 1.4.4.8: RESYNC: (1.6-1.7); FILE MERGED 2005/11/21 14:53:31 bm 1.4.4.7: +sfx.srs for the strings STR_UNDO and STR_REDO 2005/11/02 12:11:34 bm 1.4.4.6: +basegfx lib (remember to remove goodies soon) 2005/10/07 11:07:49 bm 1.4.4.5: RESYNC: (1.5-1.6); FILE MERGED 2005/07/19 11:28:47 bm 1.4.4.4: backslash too much in libraries list 2005/07/08 14:54:37 iha 1.4.4.3: create and notify an accessible view 2004/06/03 03:38:10 iha 1.4.4.2: RESYNC: (1.4-1.5); FILE MERGED 2004/02/16 16:06:57 bm 1.4.4.1: -$SVLIB == $VCLLIB


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [7b5dfc849fb6f776dbab0045f9533991a0518f57]

INTEGRATION: CWS chart2mst3 (1.2.2); FILE MERGED 2005/10/07 11:07:15 bm 1.2.2.2: RESYNC: (1.2-1.3); FILE MERGED 2005/05/26 11:24:12 bm 1.2.2.1: API comes completely from unoil.jar now


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [54d1f8d245d66383a8e50dbb427580a25fca0aa1]

INTEGRATION: CWS chart2mst3 (1.14.4); FILE MERGED 2006/02/21 11:03:31 bm 1.14.4.17: test UserDefinedAttributes by inserting a value (requires fixed default value) 2006/02/20 17:18:42 bm 1.14.4.16: test existence of UserDefinedAttributes in ChartArea 2005/08/18 14:27:18 bm 1.14.4.15: testData and testStockProperties corrected 2005/08/04 16:14:12 bm 1.14.4.14: adapted gradient and hatch test (using names), avoid some test that need a view due to problems, stock volume adapted, min-max line added 2005/07/12 12:56:51 bm 1.14.4.13: use named properties for gradients etc. in chart model 2005/07/05 15:23:54 bm 1.14.4.12: oops, wrong assure test 2005/07/05 14:56:53 bm 1.14.4.11: remove usage of new chart API in this test 2005/07/05 14:04:44 bm 1.14.4.10: testData: test correct retrieval, data row source disabled 2005/07/04 17:11:33 iha 1.14.4.9: removed deprecated file data provider 2005/07/04 17:04:40 iha 1.14.4.8: stock properties 2005/05/26 11:23:55 bm 1.14.4.7: some interfaces moved to data sub-namespace 2004/04/27 13:20:31 bm 1.14.4.6: axis title test 2004/04/27 09:29:11 bm 1.14.4.5: testing secondary y-axis +approxEqual for integers 2004/04/26 18:59:30 iha 1.14.4.4: #i27367# added test move legend and diagram; size diagram 2004/04/01 10:46:18 bm 1.14.4.3: some chart type properties 2004/03/24 09:39:23 bm 1.14.4.2: test for XChartDataArray 2004/02/13 16:51:11 bm 1.14.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [965944d582569baf65cdf6035a152485775f6e85]

INTEGRATION: CWS chart2mst3 (1.5.4); FILE MERGED 2007/02/01 16:31:26 bm 1.5.4.11: inc/DevChartConfig.hxx no longer exists 2007/01/19 20:51:43 iha 1.5.4.10: switch back to old factory name for charts now as we only have the new chart 2006/11/02 21:20:55 iha 1.5.4.9: #i55229# don't deliver help ids from old chart 2005/12/06 19:11:56 iha 1.5.4.8: #i55229# overwrite old charts helpids with empty file which gets a newer date while building 2005/09/29 12:02:58 iha 1.5.4.7: #i55229# overwrite old charts helpids with empty file 2005/04/04 11:23:08 bm 1.5.4.6: uiconfig is delivered to the modules subdirectory 2005/03/24 14:41:06 bm 1.5.4.5: comment removed 2005/03/21 13:38:57 bm 1.5.4.4: deliver resources 2005/03/18 01:05:09 bm 1.5.4.3: RESYNC: (1.6-1.7); FILE MERGED 2004/06/15 09:43:54 bm 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2004/03/05 14:57:06 iha 1.5.4.1: added menubar.xml due to menubar framework changes


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [f778aa0b3b7e53181a9ec3e84771779e7819a925]

INTEGRATION: CWS chart2mst3 (1.4.2); FILE MERGED 2007/02/01 16:54:52 iha 1.4.2.15: remove superfluous code from old context menu 2006/11/22 17:23:24 iha 1.4.2.14: RESYNC: (1.6-1.7); FILE MERGED 2006/11/02 21:21:27 iha 1.4.2.13: #i55229# don't deliver help ids from old chart 2006/05/08 08:04:27 bm 1.4.2.12: controller links against accessibility 2006/03/29 22:24:44 iha 1.4.2.11: restructure legend entry creation + legend entries in data labels 2005/09/29 12:03:27 iha 1.4.2.10: #i55229# overwrite old charts helpids with empty file 2005/07/08 14:53:57 iha 1.4.2.9: create and notify an accessible view 2005/05/09 09:50:48 bm 1.4.2.8: moved parts of API to data namespace 2005/05/06 11:19:32 bm 1.4.2.7: layout API deprecated 2004/09/15 17:31:58 bm 1.4.2.6: API simplification 2004/06/15 09:43:46 bm 1.4.2.5: RESYNC: (1.5-1.6); FILE MERGED 2004/03/02 09:23:51 bm 1.4.2.4: model/filter for XML filter added 2004/02/16 14:05:40 bm 1.4.2.3: more dependencies 2004/02/16 14:04:08 bm 1.4.2.2: RESYNC: (1.4-1.5); FILE MERGED 2004/02/13 16:51:11 bm 1.4.2.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [babc1a7240605e76703fe6f646dae792e9c3d4d6]

INTEGRATION: CWS chart2mst3 (1.3.2); FILE MERGED 2007/05/18 21:52:22 bm 1.3.2.1: invalid includes corrected


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [a2c659c2afc99bf8c7d93ae5f467d0a999f69ef4]

INTEGRATION: CWS chart2mst3 (1.3.4); FILE MERGED 2005/10/07 11:05:57 bm 1.3.4.4: RESYNC: (1.3-1.4); FILE MERGED 2004/04/23 13:55:44 bm 1.3.4.3: remote string for office added 2004/03/25 16:51:30 bm 1.3.4.2: chart2.rdb has to be delivered before running dmake 2004/02/13 16:51:06 bm 1.3.4.1: join from changes on branch bm_post_chart01


2007-05-22  Vladimir Glazounov  <vg@openoffice.org>  [653c2db8622fd6dce3919aaac55bddf9c624775b]

INTEGRATION: CWS chart2mst3 (1.2.4); FILE MERGED 2005/10/07 11:05:47 bm 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2005/05/26 11:17:48 bm 1.2.4.1: -genjava, -com


2007-05-15  Kurt Zenker  <kz@openoffice.org>  [269229b513df9f3df282fdcf7b9a34742dfefed9]

#i77311# chg. pResult to pLocalResult


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [aa102e53f33b68a825404455f458b890b43ef231]

INTEGRATION: CWS pchfix04 (1.37.20); FILE MERGED 2007/04/26 04:02:25 hjs 1.37.20.2: RESYNC: (1.37-1.38); FILE MERGED 2007/02/02 11:34:30 hjs 1.37.20.1: #i72289# split lib file


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [984decc47bc74ee9654fc1314f369e20ece49905]

INTEGRATION: CWS pchfix04 (1.12.104); FILE MERGED 2007/04/26 04:22:50 hjs 1.12.104.2: RESYNC: (1.12-1.13); FILE MERGED 2007/02/05 08:35:39 os 1.12.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [9704f6ef6e24a856b19723313dde052f82140285]

INTEGRATION: CWS pchfix04 (1.35.20); FILE MERGED 2007/04/26 04:31:24 hjs 1.35.20.2: RESYNC: (1.35-1.36); FILE MERGED 2007/02/05 08:35:39 os 1.35.20.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [3967aebeabdad1939e441c4d5ce4d8e5d0251c6b]

INTEGRATION: CWS pchfix04 (1.34.104); FILE MERGED 2007/02/05 08:35:39 os 1.34.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [e940766cc99a0a0fab1790568221e29dc8c8c3e6]

INTEGRATION: CWS pchfix04 (1.31.94); FILE MERGED 2007/04/26 04:22:11 hjs 1.31.94.2: RESYNC: (1.31-1.32); FILE MERGED 2007/02/05 08:35:39 os 1.31.94.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [414b5bef334a898f2519abc0f55e2e738fb4b2c3]

INTEGRATION: CWS pchfix04 (1.56.102); FILE MERGED 2007/04/26 04:23:06 hjs 1.56.102.2: RESYNC: (1.56-1.58); FILE MERGED 2007/02/05 08:35:39 os 1.56.102.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [fa404b370d7135ee1fcae609c974b57da96adb79]

INTEGRATION: CWS pchfix04 (1.9.104); FILE MERGED 2007/04/26 04:29:25 hjs 1.9.104.2: RESYNC: (1.9-1.10); FILE MERGED 2007/02/05 08:35:39 os 1.9.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [a0963d6e4b7fb44970649e51c2632280acecfae3]

INTEGRATION: CWS pchfix04 (1.63.2); FILE MERGED 2007/04/26 04:30:47 hjs 1.63.2.2: RESYNC: (1.63-1.64); FILE MERGED 2007/02/05 08:35:38 os 1.63.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [4ec10eddde561e66103c1c9ca083e55f9389621f]

INTEGRATION: CWS pchfix04 (1.29.104); FILE MERGED 2007/04/26 04:29:02 hjs 1.29.104.2: RESYNC: (1.29-1.30); FILE MERGED 2007/02/05 08:35:38 os 1.29.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [703863c63e207b1b0b2d848a879f35345cb0af52]

INTEGRATION: CWS pchfix04 (1.20.8); FILE MERGED 2007/02/05 08:35:38 os 1.20.8.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [d868bd415c49ddaae6062fea5c38e626c5a2ae77]

INTEGRATION: CWS pchfix04 (1.51.2); FILE MERGED 2007/04/26 04:23:49 hjs 1.51.2.2: RESYNC: (1.51-1.52); FILE MERGED 2007/02/05 08:35:38 os 1.51.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [cbdaa7088b82bfd7544a9f4d76c8182c52420b97]

INTEGRATION: CWS pchfix04 (1.16.22); FILE MERGED 2007/04/26 04:22:33 hjs 1.16.22.2: RESYNC: (1.16-1.17); FILE MERGED 2007/02/05 08:35:38 os 1.16.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [94cf3883bbf546dafdc3cd77d051716439a83452]

INTEGRATION: CWS pchfix04 (1.15.104); FILE MERGED 2007/04/26 04:31:37 hjs 1.15.104.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/05 08:35:38 os 1.15.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [6cab2d773862d316acd83966fd96f73e26a1a647]

INTEGRATION: CWS pchfix04 (1.48.2); FILE MERGED 2007/04/26 04:25:15 hjs 1.48.2.2: RESYNC: (1.48-1.49); FILE MERGED 2007/02/05 08:35:37 os 1.48.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [b7ee9457b8abfad4599ce848cd487d90923d8042]

INTEGRATION: CWS pchfix04 (1.31.2); FILE MERGED 2007/04/26 04:24:24 hjs 1.31.2.2: RESYNC: (1.31-1.33); FILE MERGED 2007/02/05 08:35:37 os 1.31.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [9ada7bb7c9b4c7a18034692841e77cd60fa71082]

INTEGRATION: CWS pchfix04 (1.30.2); FILE MERGED 2007/04/26 04:30:32 hjs 1.30.2.2: RESYNC: (1.30-1.31); FILE MERGED 2007/02/05 08:35:37 os 1.30.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [b3b97e0913efedaf82824f42364c6d26c0f2013e]

INTEGRATION: CWS pchfix04 (1.52.38); FILE MERGED 2007/04/26 04:24:31 hjs 1.52.38.2: RESYNC: (1.52-1.53); FILE MERGED 2007/02/05 08:35:37 os 1.52.38.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [67137e20a3a051cf957300e0bd88179c7e7cdad8]

INTEGRATION: CWS pchfix04 (1.17.22); FILE MERGED 2007/04/26 04:22:26 hjs 1.17.22.2: RESYNC: (1.17-1.18); FILE MERGED 2007/02/05 08:35:37 os 1.17.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [28a53d97c575922feea763fd34aa0fc68c59a779]

INTEGRATION: CWS pchfix04 (1.31.22); FILE MERGED 2007/04/26 04:31:30 hjs 1.31.22.2: RESYNC: (1.31-1.32); FILE MERGED 2007/02/05 08:35:36 os 1.31.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [c446a751f6f4b5ca5bb5e430c7eee8e1587b9edf]

INTEGRATION: CWS pchfix04 (1.15.22); FILE MERGED 2007/04/26 04:30:07 hjs 1.15.22.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/05 08:35:36 os 1.15.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1d6f8e9ed6323fd10d0e48227996d45d482a80d0]

INTEGRATION: CWS pchfix04 (1.79.22); FILE MERGED 2007/04/26 04:29:32 hjs 1.79.22.2: RESYNC: (1.79-1.80); FILE MERGED 2007/02/05 08:35:36 os 1.79.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [3818943bc5661cdcdd188766541e18743ded974b]

INTEGRATION: CWS pchfix04 (1.32.104); FILE MERGED 2007/04/26 04:25:23 hjs 1.32.104.2: RESYNC: (1.32-1.33); FILE MERGED 2007/02/05 08:35:36 os 1.32.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [a81427cc7859df0aa56ea4b4169061318d52c99f]

INTEGRATION: CWS pchfix04 (1.29.104); FILE MERGED 2007/04/26 04:24:37 hjs 1.29.104.2: RESYNC: (1.29-1.30); FILE MERGED 2007/02/05 08:35:36 os 1.29.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [eb4bed8bca76a7ea2553573efe15168d8e5612ab]

INTEGRATION: CWS pchfix04 (1.44.6); FILE MERGED 2007/04/26 04:29:09 hjs 1.44.6.2: RESYNC: (1.44-1.45); FILE MERGED 2007/02/05 08:35:35 os 1.44.6.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [761fd2b28c954c4ce53540c4cda454ec13b0643c]

INTEGRATION: CWS pchfix04 (1.22.104); FILE MERGED 2007/04/26 04:56:12 hjs 1.22.104.2: RESYNC: (1.22-1.23); FILE MERGED 2007/02/05 08:35:35 os 1.22.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [810c2a4ef9fcccc3828336c458ffd816276a780a]

INTEGRATION: CWS pchfix04 (1.36.104); FILE MERGED 2007/04/26 04:54:27 hjs 1.36.104.2: RESYNC: (1.36-1.38); FILE MERGED 2007/02/05 08:35:35 os 1.36.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [b946e44e886dbdc3eb00bc45eb9285ada770d5bd]

INTEGRATION: CWS pchfix04 (1.5.104); FILE MERGED 2007/04/26 04:54:20 hjs 1.5.104.2: RESYNC: (1.5-1.6); FILE MERGED 2007/02/05 08:35:35 os 1.5.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [21d2252409b3c1849854f2019860df2fac2bc9f2]

INTEGRATION: CWS pchfix04 (1.14.104); FILE MERGED 2007/04/26 04:53:22 hjs 1.14.104.2: RESYNC: (1.14-1.16); FILE MERGED 2007/02/05 08:35:35 os 1.14.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [f238477d1a19a837f33cba8f89e794f6c28c99ff]

INTEGRATION: CWS pchfix04 (1.23.104); FILE MERGED 2007/04/26 04:59:19 hjs 1.23.104.2: RESYNC: (1.23-1.24); FILE MERGED 2007/02/05 08:35:34 os 1.23.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [07a0419ab291d8eccf18db65e6b7d80e6bfbcdf9]

INTEGRATION: CWS pchfix04 (1.99.38); FILE MERGED 2007/04/26 04:55:50 hjs 1.99.38.2: RESYNC: (1.99-1.101); FILE MERGED 2007/02/05 08:35:34 os 1.99.38.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [043d89fc1801d9906c84efc5d3d9570b3b2c1867]

INTEGRATION: CWS pchfix04 (1.12.104); FILE MERGED 2007/04/26 04:59:13 hjs 1.12.104.2: RESYNC: (1.12-1.14); FILE MERGED 2007/02/05 08:35:34 os 1.12.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [309ec6d5874567051b1e4d1281bced125b95b1fe]

INTEGRATION: CWS pchfix04 (1.11.104); FILE MERGED 2007/04/26 04:20:40 hjs 1.11.104.2: RESYNC: (1.11-1.12); FILE MERGED 2007/02/05 08:35:33 os 1.11.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [0a57299bc2be2c38b8c5998106a8faef252a3d1e]

INTEGRATION: CWS pchfix04 (1.15.104); FILE MERGED 2007/05/09 08:35:34 hjs 1.15.104.3: RESYNC: (1.16-1.17); FILE MERGED 2007/04/26 05:00:40 hjs 1.15.104.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/05 08:35:33 os 1.15.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [01fb2c583b950ae9e77ba44c4966d3afa313a333]

INTEGRATION: CWS pchfix04 (1.7.104); FILE MERGED 2007/04/26 05:00:47 hjs 1.7.104.2: RESYNC: (1.7-1.8); FILE MERGED 2007/02/05 08:35:33 os 1.7.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [63c9faa86d87edc8d692748375d877b9794114d2]

INTEGRATION: CWS pchfix04 (1.15.104); FILE MERGED 2007/04/26 04:47:03 hjs 1.15.104.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/05 08:35:33 os 1.15.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [e036b75bc1b8c4964e17538d307762e6d5525281]

INTEGRATION: CWS pchfix04 (1.8.104); FILE MERGED 2007/04/26 04:51:58 hjs 1.8.104.2: RESYNC: (1.8-1.9); FILE MERGED 2007/02/05 08:35:32 os 1.8.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [464048bd1cb6d6ece69882148d4cd8c96e1640e2]

INTEGRATION: CWS pchfix04 (1.15.104); FILE MERGED 2007/04/26 04:50:37 hjs 1.15.104.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/05 08:35:32 os 1.15.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [0b81cd185bcdd7a4fbe0116a8566a40dce8a1e08]

INTEGRATION: CWS pchfix04 (1.13.22); FILE MERGED 2007/02/05 08:35:32 os 1.13.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [cfaed7e323e85d673c06ce3b139b476e4e58ae73]

INTEGRATION: CWS pchfix04 (1.17.6); FILE MERGED 2007/04/26 04:40:12 hjs 1.17.6.2: RESYNC: (1.17-1.18); FILE MERGED 2007/02/05 08:35:31 os 1.17.6.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1c62bcd9a6b0717f617166b79693c08b74f10913]

INTEGRATION: CWS pchfix04 (1.10.22); FILE MERGED 2007/04/26 04:39:18 hjs 1.10.22.3: RESYNC: (1.10-1.11); FILE MERGED 2007/02/06 07:03:28 os 1.10.22.2: #i73604#  eeitemid.hxx removed 2007/02/05 08:35:31 os 1.10.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [506b276f2d031040cad0308e751ab83d940f2388]

INTEGRATION: CWS pchfix04 (1.16.22); FILE MERGED 2007/02/05 08:35:31 os 1.16.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [f062753329725614d0bf6f8dc3cf74fdbf83f815]

INTEGRATION: CWS pchfix04 (1.12.104); FILE MERGED 2007/05/09 08:34:13 hjs 1.12.104.3: RESYNC: (1.13-1.14); FILE MERGED 2007/04/26 04:37:51 hjs 1.12.104.2: RESYNC: (1.12-1.13); FILE MERGED 2007/02/05 08:35:31 os 1.12.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [ffcae9a9a344409a6c26d4ff1d8eb577d81a3ff9]

INTEGRATION: CWS pchfix04 (1.28.104); FILE MERGED 2007/04/26 04:37:57 hjs 1.28.104.2: RESYNC: (1.28-1.29); FILE MERGED 2007/02/05 08:35:30 os 1.28.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [0905618f0979d8295ca9c747c85216b1b35d495b]

INTEGRATION: CWS pchfix04 (1.7.94); FILE MERGED 2007/02/05 08:35:30 os 1.7.94.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [11d0d238169079186a14b4884ab4b4e32e48cd17]

INTEGRATION: CWS pchfix04 (1.50.2); FILE MERGED 2007/04/26 05:05:10 hjs 1.50.2.2: RESYNC: (1.50-1.51); FILE MERGED 2007/02/05 08:35:30 os 1.50.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [df45a62bc5d82f4080aca72ebbac0a0cf44a16ae]

INTEGRATION: CWS pchfix04 (1.21.34); FILE MERGED 2007/04/26 05:03:50 hjs 1.21.34.2: RESYNC: (1.21-1.22); FILE MERGED 2007/02/05 08:35:30 os 1.21.34.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [14831dc2eace617fe19e72b048524d1725eddb0b]

INTEGRATION: CWS pchfix04 (1.88.16); FILE MERGED 2007/04/26 05:05:17 hjs 1.88.16.2: RESYNC: (1.88-1.89); FILE MERGED 2007/02/05 08:35:29 os 1.88.16.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [0dc0bd29af1a7d1e895deb9d076ee0a149f6f5e4]

INTEGRATION: CWS pchfix04 (1.63.38); FILE MERGED 2007/04/26 05:05:40 hjs 1.63.38.2: RESYNC: (1.63-1.64); FILE MERGED 2007/02/05 08:35:29 os 1.63.38.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [d35b60bac6c94e97aed494e24bdccad2b2a69311]

INTEGRATION: CWS pchfix04 (1.13.104); FILE MERGED 2007/04/26 04:32:57 hjs 1.13.104.2: RESYNC: (1.13-1.14); FILE MERGED 2007/02/05 08:35:29 os 1.13.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [8396daf5af6e76b9c18911726286ba22f44d5191]

INTEGRATION: CWS pchfix04 (1.25.94); FILE MERGED 2007/04/26 04:34:00 hjs 1.25.94.2: RESYNC: (1.25-1.26); FILE MERGED 2007/02/05 08:35:29 os 1.25.94.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [29829510322cfc77e04b34ea795bf5e0c5d9cd61]

INTEGRATION: CWS pchfix04 (1.15.104); FILE MERGED 2007/02/05 08:35:28 os 1.15.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [accc482e5e3e9da3dcbbb9a77549bcf130cb1e87]

INTEGRATION: CWS pchfix04 (1.28.104); FILE MERGED 2007/04/26 04:04:01 hjs 1.28.104.2: RESYNC: (1.28-1.29); FILE MERGED 2007/02/05 08:35:28 os 1.28.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [a5719b892fce1490a96aa38a1876156b12fe6410]

INTEGRATION: CWS pchfix04 (1.51.82); FILE MERGED 2007/04/26 04:05:03 hjs 1.51.82.2: RESYNC: (1.51-1.52); FILE MERGED 2007/02/05 08:35:28 os 1.51.82.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [6d0778d72e235bf000115313842c9fd6be3d2968]

INTEGRATION: CWS pchfix04 (1.36.20); FILE MERGED 2007/04/26 04:04:09 hjs 1.36.20.2: RESYNC: (1.36-1.37); FILE MERGED 2007/02/05 08:35:28 os 1.36.20.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [fcba16112cb840d3088efa298779f098e78783d7]

INTEGRATION: CWS pchfix04 (1.50.2); FILE MERGED 2007/04/26 04:04:25 hjs 1.50.2.2: RESYNC: (1.50-1.51); FILE MERGED 2007/02/05 08:35:28 os 1.50.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [20e8a7d8b5d3eb9c6c00ab3c333c2fded274d5a6]

INTEGRATION: CWS pchfix04 (1.67.38); FILE MERGED 2007/04/26 04:03:44 hjs 1.67.38.2: RESYNC: (1.67-1.68); FILE MERGED 2007/02/05 08:35:27 os 1.67.38.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [9946f361df2fd308ca6665f75315792cdac0b5bf]

INTEGRATION: CWS pchfix04 (1.36.46); FILE MERGED 2007/04/26 04:45:16 hjs 1.36.46.3: RESYNC: (1.37-1.38); FILE MERGED 2007/02/13 16:27:00 hjs 1.36.46.2: RESYNC: (1.36-1.37); FILE MERGED 2007/02/05 08:35:27 os 1.36.46.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [53e3362034bd8a01c8ffabf8195b1dcbfcf1131c]

INTEGRATION: CWS pchfix04 (1.23.104); FILE MERGED 2007/04/26 04:43:54 hjs 1.23.104.2: RESYNC: (1.23-1.24); FILE MERGED 2007/02/05 08:35:27 os 1.23.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [4038be860079303bcdc74694467e3cdd23423bb6]

INTEGRATION: CWS pchfix04 (1.18.104); FILE MERGED 2007/04/26 04:44:00 hjs 1.18.104.2: RESYNC: (1.18-1.19); FILE MERGED 2007/02/05 08:35:27 os 1.18.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [c970a6ea696ef8e1526b18451eb73286117ffd45]

INTEGRATION: CWS pchfix04 (1.15.104); FILE MERGED 2007/02/05 08:35:27 os 1.15.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [a618d6c00414ffa9bf6fa372ddec5145cb60d8fc]

INTEGRATION: CWS pchfix04 (1.19.104); FILE MERGED 2007/04/26 04:44:52 hjs 1.19.104.2: RESYNC: (1.19-1.20); FILE MERGED 2007/02/05 08:35:26 os 1.19.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [c6a74db21e45c379861330cfcba96c107f93425d]

INTEGRATION: CWS pchfix04 (1.29.104); FILE MERGED 2007/04/26 04:43:29 hjs 1.29.104.3: RESYNC: (1.30-1.31); FILE MERGED 2007/02/13 16:26:52 hjs 1.29.104.2: RESYNC: (1.29-1.30); FILE MERGED 2007/02/05 08:35:26 os 1.29.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [a55539a35f13bd75c367ccb067d65482d7749abe]

INTEGRATION: CWS pchfix04 (1.9.104); FILE MERGED 2007/04/26 05:32:15 hjs 1.9.104.2: RESYNC: (1.9-1.10); FILE MERGED 2007/02/05 08:35:26 os 1.9.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [e02495b89d948451db3eed88627882d49ae62939]

INTEGRATION: CWS pchfix04 (1.201.102); FILE MERGED 2007/04/26 05:36:07 hjs 1.201.102.2: RESYNC: (1.201-1.203); FILE MERGED 2007/02/05 08:35:26 os 1.201.102.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1f513dbc0cdd8c5eaee9883e042ad00049f51494]

INTEGRATION: CWS pchfix04 (1.84.2); FILE MERGED 2007/04/26 05:48:15 hjs 1.84.2.2: RESYNC: (1.84-1.85); FILE MERGED 2007/02/05 08:35:25 os 1.84.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [d7d1a5dac0e29d61bbd2a5d3b52791f496a518ae]

INTEGRATION: CWS pchfix04 (1.17.2); FILE MERGED 2007/05/03 15:25:52 hjs 1.17.2.3: #i73604# - fix after resync 2007/04/26 05:49:23 hjs 1.17.2.2: RESYNC: (1.17-1.18); FILE MERGED 2007/02/05 08:35:25 os 1.17.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1a9bc7c97d14bc31144910c3c9ca89c712de477e]

INTEGRATION: CWS pchfix04 (1.7.104); FILE MERGED 2007/04/26 05:28:30 hjs 1.7.104.2: RESYNC: (1.7-1.8); FILE MERGED 2007/02/05 08:35:25 os 1.7.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [e09931200300f04c88d464c6c072e039211edac0]

INTEGRATION: CWS pchfix04 (1.6.102); FILE MERGED 2007/04/26 05:28:42 hjs 1.6.102.2: RESYNC: (1.6-1.7); FILE MERGED 2007/02/05 08:35:24 os 1.6.102.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [f6d0d87454f582adc3b4b9f15f8fae321f264fa3]

INTEGRATION: CWS pchfix04 (1.16.104); FILE MERGED 2007/04/26 05:28:36 hjs 1.16.104.2: RESYNC: (1.16-1.17); FILE MERGED 2007/02/05 08:35:24 os 1.16.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [5766928b93f091479871b48bd827f863bbf55eb8]

INTEGRATION: CWS pchfix04 (1.3.104); FILE MERGED 2007/04/26 05:39:13 hjs 1.3.104.2: RESYNC: (1.3-1.4); FILE MERGED 2007/02/05 08:35:24 os 1.3.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [21719dff64b68c5911397884a8d5271eef27be6b]

INTEGRATION: CWS pchfix04 (1.13.102); FILE MERGED 2007/04/26 05:46:39 hjs 1.13.102.2: RESYNC: (1.13-1.14); FILE MERGED 2007/02/05 08:35:24 os 1.13.102.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [ddab40a7acb7de75fd3c3d082d9e4041a027ad38]

INTEGRATION: CWS pchfix04 (1.3.104); FILE MERGED 2007/02/05 08:35:23 os 1.3.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [f2c7ec51e2f23d39d6337bc9c539f7fd793d136c]

INTEGRATION: CWS pchfix04 (1.4.104); FILE MERGED 2007/04/26 05:47:32 hjs 1.4.104.2: RESYNC: (1.4-1.5); FILE MERGED 2007/02/05 08:35:23 os 1.4.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1faa81f4728f36708057da536989d58c712262ee]

INTEGRATION: CWS pchfix04 (1.10.124); FILE MERGED 2007/02/05 08:35:23 os 1.10.124.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [05ce2c8f0bf9064e0d4ba3b3a14dd462b3e05425]

INTEGRATION: CWS pchfix04 (1.29.82); FILE MERGED 2007/04/26 05:37:54 hjs 1.29.82.2: RESYNC: (1.29-1.30); FILE MERGED 2007/02/05 08:35:23 os 1.29.82.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [05907c1725aa10d37ce683726fb7309f60dbfc15]

INTEGRATION: CWS pchfix04 (1.15.104); FILE MERGED 2007/04/26 05:38:11 hjs 1.15.104.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/05 08:35:22 os 1.15.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1ad69c9a271db481911eb35627b28a7f425a0bb4]

INTEGRATION: CWS pchfix04 (1.32.52); FILE MERGED 2007/04/26 05:37:47 hjs 1.32.52.2: RESYNC: (1.32-1.33); FILE MERGED 2007/02/05 08:35:22 os 1.32.52.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [c5c2ba819d7e519340751a3ea28acd4c3f2d7d07]

INTEGRATION: CWS pchfix04 (1.31.36); FILE MERGED 2007/04/26 05:45:36 hjs 1.31.36.2: RESYNC: (1.31-1.32); FILE MERGED 2007/02/05 08:35:22 os 1.31.36.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [d63f94514b5e28ef3193349b26c574d397cf808e]

INTEGRATION: CWS pchfix04 (1.13.100); FILE MERGED 2007/04/26 05:43:19 hjs 1.13.100.2: RESYNC: (1.13-1.14); FILE MERGED 2007/02/05 08:35:22 os 1.13.100.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [50247017b2f0f0187d245cfdbd51303154b283de]

INTEGRATION: CWS pchfix04 (1.25.14); FILE MERGED 2007/04/26 05:46:25 hjs 1.25.14.2: RESYNC: (1.25-1.26); FILE MERGED 2007/02/05 08:35:22 os 1.25.14.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [c3dc1f317d3724ed7e976a4f9234b439fe00badb]

INTEGRATION: CWS pchfix04 (1.48.2); FILE MERGED 2007/04/26 05:45:00 hjs 1.48.2.2: RESYNC: (1.48-1.49); FILE MERGED 2007/02/05 08:35:21 os 1.48.2.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [db287bfa795dabe180e6d4959f0716f26579fd70]

INTEGRATION: CWS pchfix04 (1.22.102); FILE MERGED 2007/04/26 05:41:23 hjs 1.22.102.2: RESYNC: (1.22-1.23); FILE MERGED 2007/02/05 08:35:21 os 1.22.102.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [ab4ff655187e7a18d8c55daa227927fd5c542b37]

INTEGRATION: CWS pchfix04 (1.27.36); FILE MERGED 2007/02/05 08:35:21 os 1.27.36.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [aed1ae3831f35c20b4189fa2bedee8efddd6fa01]

INTEGRATION: CWS pchfix04 (1.18.36); FILE MERGED 2007/04/26 05:42:46 hjs 1.18.36.2: RESYNC: (1.18-1.19); FILE MERGED 2007/02/05 08:35:21 os 1.18.36.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [17b5b45253ceb7a0ba4a4fac8727a17f23033872]

INTEGRATION: CWS pchfix04 (1.85.36); FILE MERGED 2007/04/26 05:40:33 hjs 1.85.36.2: RESYNC: (1.85-1.86); FILE MERGED 2007/02/05 08:35:21 os 1.85.36.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [676d0698d0a98ff740081c020a6eae286b003f89]

INTEGRATION: CWS pchfix04 (1.14.104); FILE MERGED 2007/02/05 08:35:21 os 1.14.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [135eafd5c5b02a746be870027b7680b4c0b7e179]

INTEGRATION: CWS pchfix04 (1.58.104); FILE MERGED 2007/04/26 05:45:30 hjs 1.58.104.2: RESYNC: (1.58-1.59); FILE MERGED 2007/02/05 08:35:20 os 1.58.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [3465388ebe9a62d98d3c982a129e2d3a0daf78b6]

INTEGRATION: CWS pchfix04 (1.84.36); FILE MERGED 2007/04/26 05:45:23 hjs 1.84.36.2: RESYNC: (1.84-1.85); FILE MERGED 2007/02/05 08:35:20 os 1.84.36.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [8132cb2561d9da4dd3571e501d00be90cbcbc646]

INTEGRATION: CWS pchfix04 (1.42.20); FILE MERGED 2007/04/26 05:41:16 hjs 1.42.20.2: RESYNC: (1.42-1.43); FILE MERGED 2007/02/05 08:35:20 os 1.42.20.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [29dd18d04d3c7df95c495c516bdfac93ede1247d]

INTEGRATION: CWS pchfix04 (1.116.14); FILE MERGED 2007/02/05 08:35:20 os 1.116.14.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [ee3a940bc46c45ec538a361301ffa6c2dacb64d7]

INTEGRATION: CWS pchfix04 (1.29.104); FILE MERGED 2007/04/26 05:18:04 hjs 1.29.104.2: RESYNC: (1.29-1.30); FILE MERGED 2007/02/05 08:35:20 os 1.29.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [5ceb261b5cc16c27f347d932383e15b6b4beb154]

INTEGRATION: CWS pchfix04 (1.19.104); FILE MERGED 2007/04/26 05:20:23 hjs 1.19.104.2: RESYNC: (1.19-1.20); FILE MERGED 2007/02/05 08:35:19 os 1.19.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [8c0f0877905bab25f1625b7c1033d9f57f44c6f9]

INTEGRATION: CWS pchfix04 (1.14.184); FILE MERGED 2007/02/05 08:35:19 os 1.14.184.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [34987068cebeb303807890b80ef327763545b73c]

INTEGRATION: CWS pchfix04 (1.11.38); FILE MERGED 2007/04/26 05:09:59 hjs 1.11.38.2: RESYNC: (1.11-1.12); FILE MERGED 2007/02/05 08:35:19 os 1.11.38.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [ff1e1fa354b60fa5b69dc005503e3b6ffc54e670]

INTEGRATION: CWS pchfix04 (1.18.30); FILE MERGED 2007/04/26 05:08:03 hjs 1.18.30.2: RESYNC: (1.18-1.19); FILE MERGED 2007/02/05 08:35:18 os 1.18.30.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [f36d10ff77c61e17f6b8fec6b450e72ad9714ac2]

INTEGRATION: CWS pchfix04 (1.9.104); FILE MERGED 2007/04/26 05:10:05 hjs 1.9.104.2: RESYNC: (1.9-1.10); FILE MERGED 2007/02/05 08:35:18 os 1.9.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [f38b7a812717c1a6a75a4d7b419f36864f15f89c]

INTEGRATION: CWS pchfix04 (1.13.104); FILE MERGED 2007/04/26 05:08:56 hjs 1.13.104.2: RESYNC: (1.13-1.15); FILE MERGED 2007/02/05 08:35:18 os 1.13.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [70f5e60a7b4d52d6a20436de151d6047f6f0f30c]

INTEGRATION: CWS pchfix04 (1.9.104); FILE MERGED 2007/04/26 05:11:21 hjs 1.9.104.2: RESYNC: (1.9-1.10); FILE MERGED 2007/02/05 08:35:18 os 1.9.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1ed709dc338117c0d44108512b7db34e85976ad7]

INTEGRATION: CWS pchfix04 (1.48.36); FILE MERGED 2007/04/26 05:13:47 hjs 1.48.36.2: RESYNC: (1.48-1.49); FILE MERGED 2007/02/05 08:35:18 os 1.48.36.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [b26be9efa87e2d38e318aa7de1bffd74abd69049]

INTEGRATION: CWS pchfix04 (1.46.20); FILE MERGED 2007/04/26 05:13:40 hjs 1.46.20.2: RESYNC: (1.46-1.47); FILE MERGED 2007/02/05 08:35:18 os 1.46.20.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [c80610ce3805494b172baa9de5cd50d47f349a39]

INTEGRATION: CWS pchfix04 (1.12.104); FILE MERGED 2007/04/26 05:06:31 hjs 1.12.104.2: RESYNC: (1.12-1.13); FILE MERGED 2007/02/05 08:35:18 os 1.12.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [a9a51cc009311970ecdd6b37a1255187773af2a5]

INTEGRATION: CWS pchfix04 (1.74.46); FILE MERGED 2007/04/26 05:13:54 hjs 1.74.46.2: RESYNC: (1.74-1.75); FILE MERGED 2007/02/05 08:35:17 os 1.74.46.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [ad665503b243fa2d9894ef06eb43ff90f1e8a79b]

INTEGRATION: CWS pchfix04 (1.36.36); FILE MERGED 2007/04/26 05:09:52 hjs 1.36.36.2: RESYNC: (1.36-1.37); FILE MERGED 2007/02/05 08:35:17 os 1.36.36.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [b52a8d0cf0f2b0462da0abb7f60fad10bf6b3222]

INTEGRATION: CWS pchfix04 (1.45.38); FILE MERGED 2007/04/26 05:09:03 hjs 1.45.38.2: RESYNC: (1.45-1.46); FILE MERGED 2007/02/05 08:35:17 os 1.45.38.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [653d9eb60df8272ee0fddf8c23337f6e27d77799]

INTEGRATION: CWS pchfix04 (1.61.34); FILE MERGED 2007/04/26 05:11:36 hjs 1.61.34.2: RESYNC: (1.61-1.62); FILE MERGED 2007/02/05 08:35:17 os 1.61.34.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [c89546a6fef6dcb8801f9347681383e36b67b700]

INTEGRATION: CWS pchfix04 (1.22.104); FILE MERGED 2007/04/26 05:09:33 hjs 1.22.104.2: RESYNC: (1.22-1.23); FILE MERGED 2007/02/05 08:35:17 os 1.22.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1316fafafc2cda3b2eacb6ed46d2cfa59b0a7292]

INTEGRATION: CWS pchfix04 (1.26.104); FILE MERGED 2007/04/26 05:14:10 hjs 1.26.104.2: RESYNC: (1.26-1.28); FILE MERGED 2007/02/05 08:35:16 os 1.26.104.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [3790f201420ad775b1647e07367731e32e10e7be]

INTEGRATION: CWS pchfix04 (1.35.30); FILE MERGED 2007/04/26 05:11:15 hjs 1.35.30.2: RESYNC: (1.35-1.36); FILE MERGED 2007/02/05 08:35:16 os 1.35.30.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [524640913a133e89221f9f9b7e7d8233ade963bf]

INTEGRATION: CWS pchfix04 (1.13.38); FILE MERGED 2007/04/26 05:10:29 hjs 1.13.38.2: RESYNC: (1.13-1.15); FILE MERGED 2007/02/05 08:35:16 os 1.13.38.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [cbbc79963c4b58c4c5789dcd16aaccc2d8a96c0a]

INTEGRATION: CWS pchfix04 (1.3.52); FILE MERGED 2007/04/26 04:01:49 hjs 1.3.52.4: RESYNC: (1.5-1.6); FILE MERGED 2006/12/22 12:53:04 hjs 1.3.52.3: RESYNC: (1.4-1.5); FILE MERGED 2006/12/08 13:57:51 mkretzschmar 1.3.52.2: Fix build after resync to m195 2006/11/15 22:18:21 mkretzschmar 1.3.52.1: #i71588# Fix precompiled_sc.hxx for case sensitive platforms.


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [2f8b5aca5fd4eab04a92bacd158f7ad0996adbed]

INTEGRATION: CWS pchfix04 (1.10.318); FILE MERGED 2007/02/05 08:35:15 os 1.10.318.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1ea00a5acee2eca7d9a8ccfa090ca6a8588f9e63]

INTEGRATION: CWS pchfix04 (1.2.318); FILE MERGED 2007/02/05 08:35:15 os 1.2.318.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [542cce21a5b1a98a1c5b50b6b93f2f8824312656]

INTEGRATION: CWS pchfix04 (1.14.22); FILE MERGED 2007/02/05 08:39:01 os 1.14.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [b9f4c872af4a5912862f400881f68fade69c8a2c]

INTEGRATION: CWS pchfix04 (1.12.22); FILE MERGED 2007/02/05 08:39:00 os 1.12.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [520aa17f760afa71cd05d80eb37f64a2f1678ed1]

INTEGRATION: CWS pchfix04 (1.8.22); FILE MERGED 2007/02/05 08:39:00 os 1.8.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [9f51005714def6ff47d0ea0cb094c39c18e33356]

INTEGRATION: CWS pchfix04 (1.6.100); FILE MERGED 2007/02/05 08:38:59 os 1.6.100.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [f84483cabc15b95a950f388f188334ad6e909290]

INTEGRATION: CWS pchfix04 (1.6.22); FILE MERGED 2007/02/05 08:38:59 os 1.6.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [7987abdcb3aa6772c218ba69fa5d8c8a7e640edf]

INTEGRATION: CWS pchfix04 (1.5.22); FILE MERGED 2007/02/05 08:38:59 os 1.5.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1059550f91dc2c4d602981803fa5627b74a8a70a]

INTEGRATION: CWS pchfix04 (1.4.22); FILE MERGED 2007/02/05 08:38:58 os 1.4.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [d85814b0126809368517b34296b9fed4881a394e]

INTEGRATION: CWS pchfix04 (1.6.22); FILE MERGED 2007/02/05 08:38:58 os 1.6.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [05a73bcce346abb3bcedf09bd08f117d1df78755]

INTEGRATION: CWS pchfix04 (1.14.22); FILE MERGED 2007/02/05 08:38:58 os 1.14.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [483eebd2d087bd24427cd2fb7cd8624b61cbb80f]

INTEGRATION: CWS pchfix04 (1.4.22); FILE MERGED 2007/02/05 08:38:57 os 1.4.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [c4c632fbbaade1cd41a70a971245a5689eb7cf20]

INTEGRATION: CWS pchfix04 (1.11.22); FILE MERGED 2007/02/05 08:38:57 os 1.11.22.1: #i73604# usage of ITEMID_* removed


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [1a7034e472bf11730aac3cad0f7bf5f1834f5963]

INTEGRATION: CWS pchfix04 (1.2.24); FILE MERGED 2007/02/06 11:20:22 hjs 1.2.24.4: #i73078# remove entry for removed file 2006/12/08 13:56:14 mkretzschmar 1.2.24.3: Fix build after resync to m195 2006/11/29 18:15:06 kaib 1.2.24.2: #i71519# chart2 pch working for msc 2006/11/27 16:47:58 mkretzschmar 1.2.24.1: #i71519# fill in chart2 pch file. Builds fine on Mac OS X and Linux.


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [74a5014154d13a1108af22baf4307644602cb440]

INTEGRATION: CWS calc221_SRC680 (1.44.18); FILE MERGED 2007/04/17 11:45:06 er 1.44.18.1: #i76284# In case error propagation skipped parameters, clean stack environment for JumpMatrix to work


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [10dca7cec87ca7d338c3272213c197bee37c0f10]

INTEGRATION: CWS calc221_SRC680 (1.42.18); FILE MERGED 2007/04/17 13:43:48 er 1.42.18.1: #i72508# in matrix/array use GetErrorIfNotString() to detect presence of an error


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [3fc136a81bb028a2c8a4188e07676f11c0a45478]

INTEGRATION: CWS dba23a (1.27.8); FILE MERGED 2007/03/20 10:34:49 fs 1.27.8.3: RESYNC: (1.27-1.29); FILE MERGED 2007/03/12 12:11:53 fs 1.27.8.2: #i71488# removed IllegalArgumentException from getFormController 2007/03/12 12:09:24 fs 1.27.8.1: #i71488# support XFormLayerAccess, superseding XControlAccess


2007-05-10  Kurt Zenker  <kz@openoffice.org>  [57d8be05f20426006eb6e5160446390a2dc57dbe]

INTEGRATION: CWS dba23a (1.8.326); FILE MERGED 2007/03/20 09:03:58 fs 1.8.326.3: RESYNC: (1.8-1.9); FILE MERGED 2007/03/12 12:11:47 fs 1.8.326.2: #i71488# removed IllegalArgumentException from getFormController 2007/03/12 12:09:06 fs 1.8.326.1: #i71488# support XFormLayerAccess, superseding XControlAccess


2007-04-27  Rüdiger Timm  <rt@openoffice.org>  [c259a0f6ce41d46df3e66197ed3ffeffc57d6c53]

#i10000# Some more clean up


2007-04-27  Rüdiger Timm  <rt@openoffice.org>  [27651af798d4f511544c27e6155fcbc91886a1eb]

#i10000# #i76740# Added license header, removed obsolete sv.mk, corrected 'PRJ' and 'PRJNAME'.


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [d4714cb260ff799e8d93d04837380691360c75b5]

INTEGRATION: CWS residcleanup (1.12.180); FILE MERGED 2007/03/20 18:01:29 pl 1.12.180.2: RESYNC: (1.12-1.13); FILE MERGED 2007/02/28 22:46:38 pl 1.12.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [a3cd348d0faf3bc14b445b5c3477ad589de3f33d]

INTEGRATION: CWS residcleanup (1.46.24); FILE MERGED 2007/03/20 18:01:00 pl 1.46.24.2: RESYNC: (1.46-1.48); FILE MERGED 2007/02/28 22:46:38 pl 1.46.24.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [4c9699dd46aaa0611ea3c937ad4dcf4614fc3a01]

INTEGRATION: CWS residcleanup (1.11.180); FILE MERGED 2007/03/20 17:59:58 pl 1.11.180.2: RESYNC: (1.11-1.12); FILE MERGED 2007/02/28 22:46:38 pl 1.11.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [786c051511e05b67931c25679f6ba57b80f10bad]

INTEGRATION: CWS residcleanup (1.18.180); FILE MERGED 2007/03/20 17:59:10 pl 1.18.180.2: RESYNC: (1.18-1.19); FILE MERGED 2007/02/28 22:46:38 pl 1.18.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [6313b1feaac8176a784925be4b604b8eeca6a75a]

INTEGRATION: CWS residcleanup (1.29.180); FILE MERGED 2007/03/20 17:58:36 pl 1.29.180.2: RESYNC: (1.29-1.30); FILE MERGED 2007/02/28 22:46:38 pl 1.29.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [29446447464688da57cc539f90960847cad21491]

INTEGRATION: CWS residcleanup (1.31.24); FILE MERGED 2007/03/20 17:56:42 pl 1.31.24.2: RESYNC: (1.31-1.33); FILE MERGED 2007/02/28 22:46:38 pl 1.31.24.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [1367117be9a56e80c18f3b3e8881b13af7ac9487]

INTEGRATION: CWS residcleanup (1.7.180); FILE MERGED 2007/02/28 22:46:38 pl 1.7.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [67687a54bfda0361384ac8081a0897cd537e6fda]

INTEGRATION: CWS residcleanup (1.12.90); FILE MERGED 2007/03/20 17:54:30 pl 1.12.90.2: RESYNC: (1.12-1.13); FILE MERGED 2007/02/28 22:46:37 pl 1.12.90.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [30bfbb1f3ccba9830c2cf1f5bda80056a9c053eb]

INTEGRATION: CWS residcleanup (1.32.180); FILE MERGED 2007/03/20 17:54:07 pl 1.32.180.2: RESYNC: (1.32-1.33); FILE MERGED 2007/02/28 22:46:37 pl 1.32.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [cb2de07ce11dfbe34fad5c82a4a1e5c4a7be8511]

INTEGRATION: CWS residcleanup (1.29.180); FILE MERGED 2007/03/20 17:53:59 pl 1.29.180.2: RESYNC: (1.29-1.30); FILE MERGED 2007/02/28 22:46:37 pl 1.29.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [8c9ffdf7c8ccbb3c62e4812ee4116e4fdfb5d12d]

INTEGRATION: CWS residcleanup (1.19.180); FILE MERGED 2007/03/20 17:52:42 pl 1.19.180.2: RESYNC: (1.19-1.20); FILE MERGED 2007/02/28 22:46:37 pl 1.19.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [85fd9a0c068e4d753b43754713b0b9fd8ca586e4]

INTEGRATION: CWS residcleanup (1.27.180); FILE MERGED 2007/03/20 17:52:36 pl 1.27.180.2: RESYNC: (1.27-1.28); FILE MERGED 2007/02/28 22:46:37 pl 1.27.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [d2c55390b33faf0086fe79fac0e528cd40184b14]

INTEGRATION: CWS residcleanup (1.44.84); FILE MERGED 2007/03/20 17:52:29 pl 1.44.84.2: RESYNC: (1.44-1.45); FILE MERGED 2007/02/28 22:46:37 pl 1.44.84.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [a2532fbeadc2b21bb585f078f49f433d7379572a]

INTEGRATION: CWS residcleanup (1.11.24); FILE MERGED 2007/03/20 17:49:49 pl 1.11.24.2: RESYNC: (1.11-1.12); FILE MERGED 2007/02/28 22:46:36 pl 1.11.24.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [b1dca90979289c74c6ff880cb8863b56a15fc303]

INTEGRATION: CWS residcleanup (1.10.24); FILE MERGED 2007/03/20 17:44:06 pl 1.10.24.2: RESYNC: (1.10-1.11); FILE MERGED 2007/02/28 22:46:36 pl 1.10.24.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [6224174b9874e00a258a275eeae036d4630cea83]

INTEGRATION: CWS residcleanup (1.15.180); FILE MERGED 2007/03/20 17:43:59 pl 1.15.180.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/28 22:46:36 pl 1.15.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [7b68ff94c727bb61fd513df02673ba9a1166074a]

INTEGRATION: CWS residcleanup (1.15.180); FILE MERGED 2007/03/20 17:42:58 pl 1.15.180.2: RESYNC: (1.15-1.16); FILE MERGED 2007/02/28 22:46:35 pl 1.15.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [e2282c934337c763055094f5994d7481fcfb527b]

INTEGRATION: CWS residcleanup (1.5.180); FILE MERGED 2007/03/20 17:42:39 pl 1.5.180.2: RESYNC: (1.5-1.6); FILE MERGED 2007/02/28 22:46:35 pl 1.5.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [199eba3ae3d6b6b2f3d57c872d8a271b93e6fef8]

INTEGRATION: CWS residcleanup (1.7.180); FILE MERGED 2007/03/20 17:42:21 pl 1.7.180.2: RESYNC: (1.7-1.8); FILE MERGED 2007/02/28 22:46:35 pl 1.7.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [40cbbede80b886a085b1301f793dd109a21c1782]

INTEGRATION: CWS residcleanup (1.8.180); FILE MERGED 2007/03/20 17:40:10 pl 1.8.180.2: RESYNC: (1.8-1.9); FILE MERGED 2007/02/28 22:46:35 pl 1.8.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [8e026e6be834bef864b680025ee6163cd34e477a]

INTEGRATION: CWS residcleanup (1.10.180); FILE MERGED 2007/03/20 17:38:37 pl 1.10.180.2: RESYNC: (1.10-1.11); FILE MERGED 2007/02/28 22:46:35 pl 1.10.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [76ceac1eabedf0b95c3cbcc44e9dfa580c7ffdbb]

INTEGRATION: CWS residcleanup (1.21.118); FILE MERGED 2007/03/20 17:36:58 pl 1.21.118.2: RESYNC: (1.21-1.22); FILE MERGED 2007/02/28 22:46:34 pl 1.21.118.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [6795262e8f18ae3e0d1d6f9aaeee995b62fd61a7]

INTEGRATION: CWS residcleanup (1.11.158); FILE MERGED 2007/03/20 17:26:08 pl 1.11.158.2: RESYNC: (1.11-1.12); FILE MERGED 2007/02/28 22:46:34 pl 1.11.158.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [227705527e74ffa81619c378a59a12f75d954052]

INTEGRATION: CWS residcleanup (1.12.180); FILE MERGED 2007/03/20 17:23:35 pl 1.12.180.2: RESYNC: (1.12-1.13); FILE MERGED 2007/02/28 22:46:34 pl 1.12.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [325aec85deaac6cc72f9ffb3b9bddc3421839d02]

INTEGRATION: CWS residcleanup (1.28.180); FILE MERGED 2007/03/20 17:23:28 pl 1.28.180.2: RESYNC: (1.28-1.29); FILE MERGED 2007/02/28 22:46:33 pl 1.28.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [80709ef0c6556b9f97c1411c08d8062c7c3cfe77]

INTEGRATION: CWS residcleanup (1.31.60); FILE MERGED 2007/03/20 17:23:20 pl 1.31.60.2: RESYNC: (1.31-1.32); FILE MERGED 2007/02/28 22:46:33 pl 1.31.60.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [6f14cc40da8309df816a34e6a42d7337d165ac37]

INTEGRATION: CWS residcleanup (1.10.168); FILE MERGED 2007/03/20 17:23:13 pl 1.10.168.2: RESYNC: (1.10-1.11); FILE MERGED 2007/02/28 22:46:33 pl 1.10.168.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [350f3715887533e292a9a0c41c8e571f7e76139a]

INTEGRATION: CWS residcleanup (1.50.22); FILE MERGED 2007/03/20 17:20:54 pl 1.50.22.2: RESYNC: (1.50-1.51); FILE MERGED 2007/02/28 22:46:33 pl 1.50.22.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [1e665fb89017c42f42bb0dee7e53ef045ed30b8f]

INTEGRATION: CWS residcleanup (1.23.84); FILE MERGED 2007/03/20 17:19:27 pl 1.23.84.2: RESYNC: (1.23-1.24); FILE MERGED 2007/02/28 22:46:33 pl 1.23.84.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [e5e98362bd8350b2c87b2526f32b5ee713062aa9]

INTEGRATION: CWS residcleanup (1.13.180); FILE MERGED 2007/03/21 12:05:11 pl 1.13.180.3: #i75635# ResId cleanup 2007/03/20 17:18:08 pl 1.13.180.2: RESYNC: (1.13-1.14); FILE MERGED 2007/02/28 22:46:32 pl 1.13.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [4d9767a3a42d549c0d404b90d793dab0d97d81e2]

INTEGRATION: CWS residcleanup (1.23.180); FILE MERGED 2007/03/20 17:18:01 pl 1.23.180.2: RESYNC: (1.23-1.24); FILE MERGED 2007/02/28 22:46:32 pl 1.23.180.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [6631dfed9a782e7782f8f25644b0219584c43a31]

INTEGRATION: CWS residcleanup (1.9.84); FILE MERGED 2007/03/20 17:14:47 pl 1.9.84.2: RESYNC: (1.9-1.10); FILE MERGED 2007/02/28 22:46:32 pl 1.9.84.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [5a9fc4597cd9c763455f6b3f5112cf8eed6b4452]

INTEGRATION: CWS residcleanup (1.10.84); FILE MERGED 2007/03/20 17:14:39 pl 1.10.84.2: RESYNC: (1.10-1.11); FILE MERGED 2007/02/28 22:46:32 pl 1.10.84.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [1e430b565695305b045551cbe0f5f0cafcb56d9f]

INTEGRATION: CWS residcleanup (1.36.88); FILE MERGED 2007/03/20 17:13:19 pl 1.36.88.2: RESYNC: (1.36-1.37); FILE MERGED 2007/02/28 22:46:31 pl 1.36.88.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [66b6e51fcdda33cb56e529849209bc02a4182292]

INTEGRATION: CWS residcleanup (1.8.84); FILE MERGED 2007/02/28 22:46:31 pl 1.8.84.1: #i74635# no more ResMgr fallback


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [7e1096eec04b2522dd5e95c6c10bc0dac78ab9c8]

INTEGRATION: CWS residcleanup (1.9.22); FILE MERGED 2007/02/26 22:00:56 pl 1.9.22.1: #i74635# no more ResMgr default


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [5055b2d2388ec1e0697934a18d4d0c0c64adbd4f]

INTEGRATION: CWS residcleanup (1.6.38); FILE MERGED 2007/02/26 22:00:56 pl 1.6.38.1: #i74635# no more ResMgr default


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [e98c388c7307861e95d92034f0e5b357daeeb579]

INTEGRATION: CWS residcleanup (1.4.38); FILE MERGED 2007/02/26 22:00:56 pl 1.4.38.1: #i74635# no more ResMgr default


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [02977cee32bf7cd1de55b629c7f9f8cc4e2376b8]

INTEGRATION: CWS residcleanup (1.5.38); FILE MERGED 2007/02/26 22:00:55 pl 1.5.38.1: #i74635# no more ResMgr default


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [2c7c0dc90deb6efc3e18cc2b9293272a5de5f1b5]

INTEGRATION: CWS residcleanup (1.4.38); FILE MERGED 2007/02/26 22:00:55 pl 1.4.38.1: #i74635# no more ResMgr default


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [4281c8ee4853ea6068d250fdc1184a4a9a5d0760]

INTEGRATION: CWS residcleanup (1.4.38); FILE MERGED 2007/02/26 22:00:54 pl 1.4.38.1: #i74635# no more ResMgr default


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [576851167eec62a7f464be26c18d562789744dd7]

INTEGRATION: CWS residcleanup (1.11.38); FILE MERGED 2007/02/26 22:00:54 pl 1.11.38.1: #i74635# no more ResMgr default


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [0ab79e62e6e401a3fcd2de693cc5242594cdd140]

INTEGRATION: CWS residcleanup (1.12.38); FILE MERGED 2007/03/04 15:04:42 pl 1.12.38.1: #i73635# ResId cleanup


2007-04-26  Rüdiger Timm  <rt@openoffice.org>  [815f6d663c9825e2fdd3fc0b003721a68a60f13f]

INTEGRATION: CWS residcleanup (1.53.24); FILE MERGED 2007/03/04 15:04:41 pl 1.53.24.1: #i73635# ResId cleanup


2007-04-26  Gerd Weiss  <gm@openoffice.org>  [1e2d33ca61645e4f735c542e20e2bd0958089a63]

INTEGRATION: CWS calcwarnings2 (1.7.20); FILE MERGED 2007/03/19 17:45:49 dr 1.7.20.2: wntmsci10 compiler warning 2007/03/19 16:49:11 dr 1.7.20.1: unxlngi6 compiler warning


2007-04-26  Gerd Weiss  <gm@openoffice.org>  [5304b0cd4a18575861c930809acdb8b96338405c]

INTEGRATION: CWS calcwarnings2 (1.22.20); FILE MERGED 2007/03/19 16:47:27 dr 1.22.20.1: unxlngi6 compiler warning


2007-04-26  Gerd Weiss  <gm@openoffice.org>  [57d51c0a4cdb51a17296a8cb73a8c2a4d48b9a09]

INTEGRATION: CWS calcwarnings2 (1.30.20); FILE MERGED 2007/03/19 16:40:14 dr 1.30.20.1: unxlngi6 compiler warning


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [37af2afaf0010166e347b6f9052cb3e6ae0484a9]

INTEGRATION: CWS npower6 (1.6.108); FILE MERGED 2007/02/08 09:24:14 npower 1.6.108.2: #i74096# remove public symbol thingy from already public class ( causes build failure on windows ) 2007/02/07 21:29:11 npower 1.6.108.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [76e347a03a59f7072d1c5de5641be9327d028403]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/07 21:24:44 npower 1.1.2.1: #i74096# vba compatibility api component build bits


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [4995af93a1f1c0e1407d10e1d4920fd80981eeb0]

INTEGRATION: CWS npower6 (1.37.76); FILE MERGED 2007/02/27 11:03:46 npower 1.37.76.5: #i74096 use proper macro for calc lib 2007/02/09 11:50:36 npower 1.37.76.4: #i74096 add perl script to create the openoffice extension 2007/02/08 18:14:51 npower 1.37.76.3: #i74096 make building component optional 2007/02/08 11:16:19 npower 1.37.76.2: #i74096# fix link failure on windows 2007/02/07 21:24:25 npower 1.37.76.1: #i74096# vba compatibility api component build bits


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [07da1cddfbb6d58bffadef130aa5d38f570494f1]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:32:22 npower 1.1.2.3: #i74096 add license 2007/02/09 11:53:34 npower 1.1.2.2: #i74096 update error message 2007/02/09 11:51:38 npower 1.1.2.1: #i74096 add perl script to create the openoffice extension


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [1ea53f7298bf074d806692bfaac0d3868eb92945]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:25 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:07 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [7bb62bf3c75452b091b5f7b4274da13c87b538e6]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/27 23:29:39 npower 1.1.2.3: #i74096 get rid of warnings windows 2007/02/21 17:29:25 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:07 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [79dd346140637c7c86cd3ec92b9493ba8110fe39]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:24 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:07 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [53959dd62013c623fd0d4bcce29145e020a70f12]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:24 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:06 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [c85bfb98b32772bb2e6a0b2b77018c759a401a98]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:24 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:05 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [31d56cf46f3e85c327007dac4ceda7f782ada022]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:24 npower 1.1.2.4: #i74096 add license 2007/02/16 10:43:43 npower 1.1.2.3: #i74096 fix url handling for workbooks.open 2007/02/16 10:18:16 npower 1.1.2.2: #i74096 fix url handling for workbooks.open 2007/02/07 21:18:05 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [cf4a2b36bbeffd02ef8113479bd633dbd240be4b]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:23 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:05 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [a730c6de22174f2469d5e7f3a5964a40856b7279]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:23 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:04 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [4350a3bee01cb43639a86b732b29c54740e27e7c]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:23 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:03 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [a5b93eb8b1c43032d9e08bb651bdad0139108788]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/27 22:37:53 npower 1.1.2.3: #i74096 get rid of warnings linux 2007/02/21 17:29:22 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:02 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [732c3d860d8444101a66a9086684d008918b3172]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:22 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:02 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [c0ac5bf160edbfd733d81adf4a1a11dda35a126e]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/03/05 13:52:58 npower 1.1.2.3: #i74096# remove 'old' default method handling foo 2007/02/21 17:29:22 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:01 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [231a7836a294e31569118804237e5e60eb36c80b]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/03/05 13:52:58 npower 1.1.2.6: #i74096# remove 'old' default method handling foo 2007/02/27 23:29:39 npower 1.1.2.5: #i74096 get rid of warnings windows 2007/02/27 22:37:53 npower 1.1.2.4: #i74096 get rid of warnings linux 2007/02/21 17:29:22 npower 1.1.2.3: #i74096 add license 2007/02/12 17:01:35 npower 1.1.2.2: #i74096 use XInterface to dynamic cast from 2007/02/07 21:18:01 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [ae5667f37079ebdc7bf8402bc0f22a51e9054c9e]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:21 npower 1.1.2.2: #i74096 add license 2007/02/07 21:18:00 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [694f79627bde951d3dec01ee19058c83f32c6028]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:21 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:59 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [34f55b4d5746c440a07b3b0949dc91f9efa8b0ac]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:21 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:58 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [0f08f6aa9395cccab9d8d6f38275d4ae1ec71790]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:20 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:58 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [27ed5d04bcee625d08a81cff6107471570f4a21e]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:20 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:57 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [f14be9ef58059b8beac4bb5d50114941de4e98aa]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:20 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:56 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [a274722a6d044caa2943f63fe876302f79c52fa5]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:20 npower 1.1.2.3: #i74096 add license 2007/02/12 17:01:35 npower 1.1.2.2: #i74096 use XInterface to dynamic cast from 2007/02/07 21:17:56 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [a70e73b9ee87a57db310c38328ba6380c95ed462]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:19 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:55 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [94575be17be80d864f0e0cef300534def5f6d979]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:19 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:54 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [a82e0595e5937b48d12e77b2e3d4808c2f953ab7]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:19 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:53 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [8057608b6b5de3bc9fd95deb0d627ae1088a2db1]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:18 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:53 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [da190280866347876f50a7d3a7aa9840891e57c4]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:18 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:52 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [9463a861fe46bbcbecc86a7a87c338cf0cdc49ae]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/03/05 13:52:57 npower 1.1.2.3: #i74096# remove 'old' default method handling foo 2007/02/21 17:29:18 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:51 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [a0201b7aa0037f4cfaa98c13354c239724f8eb8b]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:17 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:51 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [83cc8329034125916b7c15257a7a63fda5020455]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:17 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:50 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [e0cc45a9d8912f72e860cd5c874b76c25e6baf8c]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:17 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:49 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [55ad8142e733c5111bd27f31c11636159ba26a47]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:16 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:48 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [002dc347dfafed2b7c4fe5635a72dd7117b360c5]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:16 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:47 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [1e6681f1945cc27f51cf5fe4b85bf1d2ffd1b6be]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/21 17:29:15 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:46 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [1a3094d8ccd61758947306aac6b34611545e2c03]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/27 23:29:39 npower 1.1.2.4: #i74096 get rid of warnings windows 2007/02/27 22:37:53 npower 1.1.2.3: #i74096 get rid of warnings linux 2007/02/21 17:29:15 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:46 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [72d80f0525ebfb50d7c19147daae1bcbded29b03]

INTEGRATION: CWS npower6 (1.1.2); FILE ADDED 2007/02/07 21:17:46 npower 1.1.2.1: #i74096# add compatibility api implementation


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [362ad03ffdf6587ac82c4936f36caf1ca2ba97f3]

INTEGRATION: CWS npower6 (1.29.110); FILE MERGED 2007/02/07 21:29:12 npower 1.29.110.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [642207add2d26ed07afe6c8467d22bba6419b16d]

INTEGRATION: CWS npower6 (1.14.380); FILE MERGED 2007/02/07 21:29:12 npower 1.14.380.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [462f172674dd13e2177ef7903236d3a6ae8e3884]

INTEGRATION: CWS npower6 (1.22.50); FILE MERGED 2007/02/07 21:29:11 npower 1.22.50.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [bf00376df749b7de25b257adfcda588c2470c164]

INTEGRATION: CWS npower6 (1.39.10); FILE MERGED 2007/02/07 21:29:11 npower 1.39.10.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [091a37bdd6f4c0cce4007ba942a7c6f9f670e6e4]

INTEGRATION: CWS npower6 (1.14.108); FILE MERGED 2007/02/07 21:29:11 npower 1.14.108.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [d77ac5f97c0feb5e825d0e8a8b7dbbab005a4a09]

INTEGRATION: CWS npower6 (1.8.380); FILE MERGED 2007/02/07 21:29:11 npower 1.8.380.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [b0b1d85e16d7515d424480e644c94a522455f8b5]

INTEGRATION: CWS npower6 (1.23.104); FILE MERGED 2007/02/08 14:35:42 npower 1.23.104.2: #i74096 make sure windows dll gets delivered 2007/02/07 21:24:25 npower 1.23.104.1: #i74096# vba compatibility api component build bits


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [11d48339fc0734b5b04bebadc3e9e327d309efd9]

INTEGRATION: CWS npower6 (1.13.88); FILE MERGED 2007/02/28 14:29:58 npower 1.13.88.2: #i74096 depends on top level inc 2007/02/07 21:24:24 npower 1.13.88.1: #i74096# vba compatibility api component build bits


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [2153cd5a0bc0263fb0bf8e05740a8260ddbd8244]

INTEGRATION: CWS npower6 (1.20.150); FILE MERGED 2007/02/07 21:29:11 npower 1.20.150.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [6746a0e7389a9d94a78fce1e6b095498a23887ee]

INTEGRATION: CWS npower6 (1.47.52); FILE MERGED 2007/02/07 21:29:10 npower 1.47.52.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [ea6dac895d6089334266b75d63ef9c83774acaaa]

INTEGRATION: CWS npower6 (1.22.338); FILE MERGED 2007/02/07 21:29:10 npower 1.22.338.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [22f05dc6fcbbeca9114c687165e11e691c164333]

INTEGRATION: CWS npower6 (1.97.10); FILE MERGED 2007/02/07 21:29:10 npower 1.97.10.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [5fa63b2a23b260c6256a870da836958fa52f2d93]

INTEGRATION: CWS npower6 (1.10.370); FILE MERGED 2007/02/07 21:29:10 npower 1.10.370.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [d3b0c97e8312a7f330bc91e038d027dacb11d68d]

INTEGRATION: CWS npower6 (1.28.14); FILE MERGED 2007/02/07 21:29:10 npower 1.28.14.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [7755c6a6e4dbd36d3e367bd287e9cc54c9d033c6]

INTEGRATION: CWS npower6 (1.26.106); FILE MERGED 2007/02/07 21:29:10 npower 1.26.106.1: Issue number:  i74096 symbol visibility issues for needed for vba compatility api to link


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [cec6a47c24372a6f6f7b0f898ca8e836ccd719e2]

INTEGRATION: CWS npower6 (1.7.378); FILE MERGED 2007/02/07 21:25:31 npower 1.7.378.1: Issue number: Submitted by: Reviewed by:


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [d148192bd35af630e16dce76738e618320986dcd]

INTEGRATION: CWS sixtyfour11 (1.6.356); FILE MERGED 2007/03/12 16:39:27 kendy 1.6.356.1: #i75331# Don't introduce new virtual methods where they should be overridden.


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [1da4b647c3b3a2627abbb170c786607b33a7af72]

INTEGRATION: CWS sixtyfour11 (1.11.224); FILE MERGED 2007/03/12 16:39:27 kendy 1.11.224.1: #i75331# Don't introduce new virtual methods where they should be overridden.


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [bbcf4ab58bfc9dd13d36585f40241264134c468e]

INTEGRATION: CWS sixtyfour11 (1.11.144); FILE MERGED 2007/03/12 16:39:27 kendy 1.11.144.1: #i75331# Don't introduce new virtual methods where they should be overridden.


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [7ede44c78c0f6184b3dd0a7e9ebfee25961b44ff]

INTEGRATION: CWS sixtyfour11 (1.12.144); FILE MERGED 2007/03/12 16:39:26 kendy 1.12.144.1: #i75331# Don't introduce new virtual methods where they should be overridden.


2007-04-25  Rüdiger Timm  <rt@openoffice.org>  [4bc703ca5e211ed17460a2f57ba04ee4803cc4ba]

INTEGRATION: CWS sixtyfour11 (1.34.66); FILE MERGED 2007/03/12 16:39:26 kendy 1.34.66.1: #i75331# Don't introduce new virtual methods where they should be overridden.


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [e54b4c9b304956de396fda12f8ef5b17c0bfb91d]

INTEGRATION: CWS mergede01 (1.35.342); FILE MERGED 2007/03/20 14:49:52 ihi 1.35.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [aeaef2d90efb05da19d670e96e56725f2c4412e3]

INTEGRATION: CWS mergede01 (1.25.352); FILE MERGED 2007/03/20 14:49:52 ihi 1.25.352.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [da387391be64a80abdfd72133c873ac53a579012]

INTEGRATION: CWS mergede01 (1.74.340); FILE MERGED 2007/03/20 14:49:52 ihi 1.74.340.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [bae3673b04ef89477ea5f045a33e1514cae4e106]

INTEGRATION: CWS mergede01 (1.28.342); FILE MERGED 2007/03/20 14:49:51 ihi 1.28.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [dd2b1c91ad79f369f5e90f2f1f11c688ba1f36d3]

INTEGRATION: CWS mergede01 (1.26.352); FILE MERGED 2007/03/20 14:49:51 ihi 1.26.352.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [2129d16841313b89d78e52c23bf50147fed6d1d8]

INTEGRATION: CWS mergede01 (1.39.342); FILE MERGED 2007/03/20 14:49:51 ihi 1.39.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9d9e2e7ee6bf03fe34bf6cc49faf9428ad540361]

INTEGRATION: CWS mergede01 (1.40.274); FILE MERGED 2007/03/20 14:49:50 ihi 1.40.274.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [ad42ae6be4bbacbb5b94c008e9408842b7bea23b]

INTEGRATION: CWS mergede01 (1.28.342); FILE MERGED 2007/03/20 14:49:50 ihi 1.28.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [e5e54c2639d03be3614e2e9eec37cc3b14ad6f79]

INTEGRATION: CWS mergede01 (1.20.352); FILE MERGED 2007/03/20 14:49:50 ihi 1.20.352.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [892e19287053e90a07fffd965bb9d1ecb2919bf1]

INTEGRATION: CWS mergede01 (1.22.342); FILE MERGED 2007/03/20 14:49:49 ihi 1.22.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [a28dd621b9108e666a92b1e111235bfab4a5b3b9]

INTEGRATION: CWS mergede01 (1.85.236); FILE MERGED 2007/03/20 14:49:49 ihi 1.85.236.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [89d030f406e371f1e3dae5abaeab094f139f2d70]

INTEGRATION: CWS mergede01 (1.89.14); FILE MERGED 2007/03/20 14:49:47 ihi 1.89.14.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [79d2394d02537b00898b03b084557f016a436a1e]

INTEGRATION: CWS mergede01 (1.49.22); FILE MERGED 2007/03/20 14:49:47 ihi 1.49.22.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [c41eb09607cdd32e9eb0ef625858520351c226c5]

INTEGRATION: CWS mergede01 (1.24.352); FILE MERGED 2007/03/20 14:49:46 ihi 1.24.352.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [89d7f22f94653a6f01ee07f73654bf1fd450fb22]

INTEGRATION: CWS mergede01 (1.55.58); FILE MERGED 2007/03/20 14:49:46 ihi 1.55.58.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6a55b53461ad3692a92b07970e8aef279d32418e]

INTEGRATION: CWS mergede01 (1.63.342); FILE MERGED 2007/03/20 14:49:45 ihi 1.63.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [90455806c875f9431638357092f5dae4d77d8b88]

INTEGRATION: CWS mergede01 (1.35.342); FILE MERGED 2007/03/20 14:49:45 ihi 1.35.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [93b9351a1f2795101e276808dcd9871ca84a1995]

INTEGRATION: CWS mergede01 (1.34.342); FILE MERGED 2007/03/20 14:49:44 ihi 1.34.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [1225b1ad9c86299a4964d133ba6d30c43bd104b1]

INTEGRATION: CWS mergede01 (1.71.342); FILE MERGED 2007/03/20 14:49:44 ihi 1.71.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [90782c3875b6e1c473c8d0eb485538c3fdb4e8c4]

INTEGRATION: CWS mergede01 (1.33.342); FILE MERGED 2007/03/20 14:49:44 ihi 1.33.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [b0d0dfcd3992a28d6a4058276022c09c0c93ed7e]

INTEGRATION: CWS mergede01 (1.65.76); FILE MERGED 2007/03/20 14:49:43 ihi 1.65.76.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [26f5aa388b9ad4639d6c4f7886c6d11266c6fe18]

INTEGRATION: CWS mergede01 (1.56.342); FILE MERGED 2007/03/20 14:49:43 ihi 1.56.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6c3475634876f58035beeafc36c5012ce1832c0e]

INTEGRATION: CWS mergede01 (1.44.342); FILE MERGED 2007/03/20 14:49:43 ihi 1.44.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [899f0abac32b4844e7083d65ec82296c4fe6a1c8]

INTEGRATION: CWS mergede01 (1.43.342); FILE MERGED 2007/03/20 14:49:43 ihi 1.43.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9111e0f8df7bc77e7c02b3d7b9f4caee6bbeb590]

INTEGRATION: CWS mergede01 (1.30.342); FILE MERGED 2007/03/20 14:49:43 ihi 1.30.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [5bf14043e4816ef334bf747ed544e9fa8a8e79a4]

INTEGRATION: CWS mergede01 (1.42.342); FILE MERGED 2007/03/20 14:49:42 ihi 1.42.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [27ed140e9aa4077012bf36920d55566057b7a030]

INTEGRATION: CWS mergede01 (1.54.342); FILE MERGED 2007/03/20 14:49:42 ihi 1.54.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [5402ac8cd930b383f890c1e3c845230e10b5eae4]

INTEGRATION: CWS mergede01 (1.23.352); FILE MERGED 2007/03/20 14:49:42 ihi 1.23.352.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [fff3cfabfbb10500cd396e7cf40831c13b1a1497]

INTEGRATION: CWS mergede01 (1.52.342); FILE MERGED 2007/03/20 14:49:41 ihi 1.52.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [1917a808017bc51a424b9e5ddedd27645bffc989]

INTEGRATION: CWS mergede01 (1.44.342); FILE MERGED 2007/03/20 14:49:41 ihi 1.44.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [7cffca8dd312a8c30c0d2b66c7b81d96154c20cd]

INTEGRATION: CWS mergede01 (1.29.342); FILE MERGED 2007/03/20 14:49:40 ihi 1.29.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [f5ad83f458f22b47985a993c0d0f564700b425f6]

INTEGRATION: CWS mergede01 (1.34.342); FILE MERGED 2007/03/20 14:49:40 ihi 1.34.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [d380be98bd594eb71cc0dfd512e3c6abe8fa584c]

INTEGRATION: CWS mergede01 (1.31.342); FILE MERGED 2007/03/20 14:49:40 ihi 1.31.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [8cf2702dfa2f54595dda07b816749931a85cef3f]

INTEGRATION: CWS mergede01 (1.33.342); FILE MERGED 2007/03/20 14:49:40 ihi 1.33.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [ddc811bbe5a51d217bb5efdfa891f71fa701262b]

INTEGRATION: CWS mergede01 (1.28.342); FILE MERGED 2007/03/20 14:49:39 ihi 1.28.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [359057d09c260a0e0e06e1b9a21795a54485078b]

INTEGRATION: CWS mergede01 (1.47.342); FILE MERGED 2007/03/20 14:49:39 ihi 1.47.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [37b5eda555064b8d674d2da3f579d13d4c8a22ab]

INTEGRATION: CWS mergede01 (1.33.342); FILE MERGED 2007/03/20 14:49:39 ihi 1.33.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9d8ba0d2705f7527370843483674fd00648e915c]

INTEGRATION: CWS mergede01 (1.68.14); FILE MERGED 2007/03/20 14:49:38 ihi 1.68.14.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [1b1faa663af96b25cd5476edc2259d0177976f72]

INTEGRATION: CWS mergede01 (1.28.14); FILE MERGED 2007/03/20 14:49:38 ihi 1.28.14.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [088601483a5af853ebb44af45bf185e0c7b1c383]

INTEGRATION: CWS mergede01 (1.27.352); FILE MERGED 2007/03/20 14:49:38 ihi 1.27.352.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [e7f970cc5ba813b45325647598acfe769c240ab3]

INTEGRATION: CWS mergede01 (1.43.342); FILE MERGED 2007/03/20 14:49:37 ihi 1.43.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9ea3ef2768a447aab16b799d063bda747b7214ca]

INTEGRATION: CWS mergede01 (1.42.342); FILE MERGED 2007/03/20 14:49:37 ihi 1.42.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [11cfe15da6c21ea910c2ce73be49ae97186aa57a]

INTEGRATION: CWS mergede01 (1.37.342); FILE MERGED 2007/03/20 14:49:37 ihi 1.37.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9969b6037df042159e7c72f5ef275ba069fe30da]

INTEGRATION: CWS mergede01 (1.58.342); FILE MERGED 2007/03/20 14:49:37 ihi 1.58.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [36d3b13dfbe524aa71f8aa2f2f20e64848c39521]

INTEGRATION: CWS mergede01 (1.33.240); FILE MERGED 2007/03/20 14:49:36 ihi 1.33.240.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [2c89de8948d512fd3f11ff06525bfacf19f5966f]

INTEGRATION: CWS mergede01 (1.3.352); FILE MERGED 2007/03/20 14:49:36 ihi 1.3.352.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [b54bfc4105e5893ca7f6b041a1fd7335619ca8c6]

INTEGRATION: CWS mergede01 (1.36.342); FILE MERGED 2007/03/20 14:49:36 ihi 1.36.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9e5f7ab302313a122d35936c2a80dac83457c45c]

INTEGRATION: CWS mergede01 (1.37.342); FILE MERGED 2007/03/20 14:49:36 ihi 1.37.342.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [d48b4a27d9df333ec6635a8551e279a0b3af4fc0]

INTEGRATION: CWS mergede01 (1.33.352); FILE MERGED 2007/03/20 14:49:36 ihi 1.33.352.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [525c448cf1f1bd13fc8d861db13b8362084c74f8]

INTEGRATION: CWS mergede01 (1.50.76); FILE MERGED 2007/03/20 14:49:35 ihi 1.50.76.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [ec3ac9be9a3112e3c2f35f5f1857decc5bcde0a4]

INTEGRATION: CWS mergede01 (1.5.108); FILE MERGED 2007/03/20 14:48:27 ihi 1.5.108.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [de54a46f99d665e27b802b31746ca60e2447b054]

INTEGRATION: CWS mergede01 (1.4.106); FILE MERGED 2007/03/20 14:48:27 ihi 1.4.106.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [82ce0be4791898838bcd1b015349830a768adfd6]

INTEGRATION: CWS mergede01 (1.5.106); FILE MERGED 2007/03/20 14:48:26 ihi 1.5.106.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [5a0a8fd4ae1f7913e14615455b7ced2b9c421532]

INTEGRATION: CWS mergede01 (1.4.106); FILE MERGED 2007/03/20 14:48:26 ihi 1.4.106.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6691b52e43016e8403253a8e9584dce7745c50b8]

INTEGRATION: CWS mergede01 (1.3.108); FILE MERGED 2007/03/20 14:48:26 ihi 1.3.108.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [50c1b281f409aaea5e1d1796acd4b3f8d6bd5557]

INTEGRATION: CWS mergede01 (1.3.110); FILE MERGED 2007/04/18 13:58:56 ihi 1.3.110.1: removed german


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6864087eb54370098f694b441d73476e1469aaec]

INTEGRATION: CWS mergede01 (1.3.110); FILE MERGED 2007/04/18 13:56:13 ihi 1.3.110.1: removed german


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0fc12e71179a2df4d59aa1a8e5e2971d9631e834]

INTEGRATION: CWS mergede01 (1.6.106); FILE MERGED 2007/03/20 14:48:25 ihi 1.6.106.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [f6a8419f1968e181271f37d2b2fffc51cb87a6fd]

INTEGRATION: CWS mergede01 (1.3.108); FILE MERGED 2007/03/20 14:48:25 ihi 1.3.108.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6b7f391bdf4213d0c096308f8e8ca7e276fe97cd]

INTEGRATION: CWS mergede01 (1.3.108); FILE MERGED 2007/03/20 14:48:24 ihi 1.3.108.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [a06607d0bbfe9487fd693609961d8a42c5a373f1]

INTEGRATION: CWS mergede01 (1.5.106); FILE MERGED 2007/03/20 14:48:24 ihi 1.5.106.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [edbc6193adca01764573b9b94df496d94e2ae29e]

INTEGRATION: CWS mergede01 (1.4.106); FILE MERGED 2007/03/20 14:48:24 ihi 1.4.106.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9c3e1f47370a2b0ad1498b8c22d3477240a3c54b]

INTEGRATION: CWS mergede01 (1.3.110); FILE MERGED 2007/03/20 14:48:23 ihi 1.3.110.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0d9ddfd26555ea2f4df03d24e6fe1e5d43c2dd1c]

INTEGRATION: CWS mergede01 (1.4.106); FILE MERGED 2007/03/20 14:48:23 ihi 1.4.106.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [dee97752affeab44d9c84e3682646935c2a0ccdd]

INTEGRATION: CWS mergede01 (1.4.108); FILE MERGED 2007/03/20 14:48:23 ihi 1.4.108.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0218b112baba804378ec361862e1b79a38a91722]

INTEGRATION: CWS mergede01 (1.3.108); FILE MERGED 2007/03/20 14:48:23 ihi 1.3.108.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [a337f4142c4a78bfdd0dcccc059801160b72d8a4]

INTEGRATION: CWS mergede01 (1.24.82); FILE MERGED 2007/03/20 14:35:06 ihi 1.24.82.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [7156debd7c294335e6bcc41ae00bd9103e80ab96]

INTEGRATION: CWS mergede01 (1.27.82); FILE MERGED 2007/03/20 14:35:06 ihi 1.27.82.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [39ecdc495405992e4273dabd7ccb565482a31234]

INTEGRATION: CWS mergede01 (1.66.82); FILE MERGED 2007/03/20 14:35:04 ihi 1.66.82.1: #i72301# Remove German


2007-04-19  Ivo Hinkelmann  <ihi@openoffice.org>  [3f7f6fd07fb3c3dceb67c265538bd81a5133d861]

INTEGRATION: CWS fwk64 (1.17.6); FILE MERGED 2007/03/25 18:13:38 mav 1.17.6.2: RESYNC: (1.17-1.18); FILE MERGED 2007/03/20 11:31:54 mav 1.17.6.1: #107330# check objects for size and position protection


2007-04-17  Ivo Hinkelmann  <ihi@openoffice.org>  [7a578fe4d917f4041415fba77ea65bf295eb3122]

INTEGRATION: CWS pj79 (1.14.42); FILE MERGED 2007/04/16 09:41:21 pjanik 1.14.42.1: #i76365#: Use sal_uInt32 instead of ULONG (patch from nn).


2007-04-17  Ivo Hinkelmann  <ihi@openoffice.org>  [e967b9482416a0f9b7f7251e7f9643311dfa3312]

INTEGRATION: CWS pj79 (1.32.42); FILE MERGED 2007/04/16 09:40:38 pjanik 1.32.42.1: #i76365#: Use sal_uInt32 instead of ULONG (patch from nn).


2007-04-16  Ivo Hinkelmann  <ihi@openoffice.org>  [e95fb91bfbad2ec36612a21b56a724097992c902]

INTEGRATION: CWS oasisrng02_SRC680 (1.62.4); FILE MERGED 2007/04/02 13:05:37 nn 1.62.4.1: #i68880# encode apply-style-name for map also with is-true-formula


2007-04-11  Vladimir Glazounov  <vg@openoffice.org>  [d4ed2903bb33fce5656c08b2e4dbc3d72a922d77]

INTEGRATION: CWS hedaburemove01 (1.95.28); FILE MERGED 2007/04/03 09:13:31 vg 1.95.28.2: RESYNC: (1.95-1.97); FILE MERGED 2007/02/09 16:13:22 vg 1.95.28.1: #72503# get rid of hedabu procedure: Moving headers to sc/inc/sc and correspondent necessary changes


2007-03-26  Vladimir Glazounov  <vg@openoffice.org>  [2aa201f4a714bec1a176fc1d8d4255c37356a672]

INTEGRATION: CWS mingwport03 (1.35.58); FILE MERGED 2007/01/09 01:23:17 vg 1.35.58.3: RESYNC: (1.36-1.37); FILE MERGED 2006/11/08 15:51:47 vg 1.35.58.2: RESYNC: (1.35-1.36); FILE MERGED 2006/09/13 14:03:23 vg 1.35.58.1: #i53572# MinGW port


2007-03-26  Vladimir Glazounov  <vg@openoffice.org>  [a2026773ae6799b462639db1e60c9a9a31699d3b]

INTEGRATION: CWS mingwport03 (1.8.132); FILE MERGED 2007/03/19 19:36:09 vg 1.8.132.3: RESYNC: (1.9-1.10); FILE MERGED 2006/11/08 15:08:19 vg 1.8.132.2: RESYNC: (1.8-1.9); FILE MERGED 2006/09/13 14:01:26 vg 1.8.132.1: #i53572# MinGW port


2007-03-26  Vladimir Glazounov  <vg@openoffice.org>  [88baed3fb0b6e00326d67b7ae82c89df5fd1bc34]

INTEGRATION: CWS mingwport03 (1.7.132); FILE MERGED 2007/03/19 19:35:55 vg 1.7.132.3: RESYNC: (1.8-1.9); FILE MERGED 2006/11/08 15:08:02 vg 1.7.132.2: RESYNC: (1.7-1.8); FILE MERGED 2006/09/13 14:00:38 vg 1.7.132.1: #i53572# MinGW port


2007-03-26  Vladimir Glazounov  <vg@openoffice.org>  [6a88b478cec3294d18dade051e9576e09a200311]

INTEGRATION: CWS mingwport03 (1.3.36); FILE MERGED 2007/03/19 19:19:58 vg 1.3.36.3: RESYNC: (1.4-1.5); FILE MERGED 2007/01/09 00:43:01 vg 1.3.36.2: RESYNC: (1.3-1.4); FILE MERGED 2006/09/13 12:39:39 vg 1.3.36.1: #i53572# MinGW port


2007-03-26  Vladimir Glazounov  <vg@openoffice.org>  [38828db7b0fb3e55462d7c9fd6329a13ea0c963f]

INTEGRATION: CWS mingwport03 (1.18.80); FILE MERGED 2007/03/19 19:19:51 vg 1.18.80.3: RESYNC: (1.19-1.20); FILE MERGED 2007/01/09 00:42:54 vg 1.18.80.2: RESYNC: (1.18-1.19); FILE MERGED 2006/09/13 12:40:25 vg 1.18.80.1: #i53572# MinGW port


2007-03-15  Oliver Bolte  <obo@openoffice.org>  [413b227d4c8e1a8b096b764ad444e99359e04ea2]

INTEGRATION: CWS basmgr02 (1.47.4); FILE MERGED 2007/03/14 08:28:27 fs 1.47.4.1: #146367# ScViewFunc::PasteDataFormat: delete the AbstractScImportAsciiDlg, so it's not left over long after the stream it works with is dead


2007-03-15  Oliver Bolte  <obo@openoffice.org>  [22cf408417eac3e7752774b7167e300f4b005040]

INTEGRATION: CWS basmgr02 (1.58.24); FILE MERGED 2007/03/06 07:21:52 fs 1.58.24.3: #i10000# 2007/03/05 09:36:29 fs 1.58.24.2: RESYNC: (1.58-1.59); FILE MERGED 2007/01/11 09:32:50 fs 1.58.24.1: #i73329# support for DialogLibraries property


2007-03-15  Oliver Bolte  <obo@openoffice.org>  [1e54ab409cec7b7c0044a9060dd820b20a566a33]

INTEGRATION: CWS basmgr02 (1.71.202); FILE MERGED 2007/01/11 09:32:13 fs 1.71.202.1: #i73329# +DialogLibraries


2007-03-09  Oliver Bolte  <obo@openoffice.org>  [ea9ac521fa3a9a216b283dd12e561a1174f93a63]

INTEGRATION: CWS ause076 (1.4.10); FILE MERGED 2007/02/28 10:26:31 hjs 1.4.10.1: #i74812# cleanup *LIB and more


2007-03-09  Oliver Bolte  <obo@openoffice.org>  [78173bc0979e05759f636f8e6789b63874d02130]

INTEGRATION: CWS ause076 (1.13.86); FILE MERGED 2007/02/15 18:26:59 hjs 1.13.86.1: #i74347# add new directory and dependencies


2007-03-09  Oliver Bolte  <obo@openoffice.org>  [7c5f3fe8f5350054285f8314fabe4d8a6519c986]

INTEGRATION: CWS ause076 (1.5.12); FILE MERGED 2007/02/15 18:28:17 hjs 1.5.12.1: #i74347# avoid collisions in multiprocess builds when writing perl script


2007-03-09  Oliver Bolte  <obo@openoffice.org>  [63d912f39e88538b8586c1c820d87986315f1c58]

INTEGRATION: CWS ause076 (1.10.12); FILE MERGED 2007/02/15 18:28:15 hjs 1.10.12.1: #i74347# avoid collisions in multiprocess builds when writing perl script


2007-03-09  Oliver Bolte  <obo@openoffice.org>  [c55602c7a95272346dea6cbc0dffaff2fe57e68f]

INTEGRATION: CWS ause076 (1.9.12); FILE MERGED 2007/02/15 18:28:14 hjs 1.9.12.1: #i74347# avoid collisions in multiprocess builds when writing perl script


2007-03-09  Oliver Bolte  <obo@openoffice.org>  [145f37172dbbf2018985fb97f889ae629747c99c]

INTEGRATION: CWS ause076 (1.1.2); FILE ADDED 2007/02/27 11:43:10 hjs 1.1.2.2: #i74347# fix path to cl2c.pl 2007/02/15 18:28:37 hjs 1.1.2.1: #i74347# avoid collisions in multiprocess builds when writing perl script


2007-03-09  Oliver Bolte  <obo@openoffice.org>  [85acfed1495de6d320f9941ac8091ace02b13091]

INTEGRATION: CWS ause076 (1.5.6); FILE MERGED 2007/02/28 10:42:12 hjs 1.5.6.1: #i74812# cleanup *LIB and more


2007-03-09  Oliver Bolte  <obo@openoffice.org>  [344b77973da0bfa5f619b7d8a92db2584bba7271]

INTEGRATION: CWS ause076 (1.8.20); FILE MERGED 2007/02/28 10:42:11 hjs 1.8.20.1: #i74812# cleanup *LIB and more


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [46b74e8b833861017d3de7c8e26d6b175501ebee]

INTEGRATION: CWS pj75 (1.57.2); FILE MERGED 2007/03/04 16:13:25 pjanik 1.57.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [86e8ce85fd64cb17dc90d8e1009f3ad5fc8225ab]

INTEGRATION: CWS pj75 (1.32.2); FILE MERGED 2007/03/04 16:13:08 pjanik 1.32.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [6383411ef25963208a7adaac7a90706ec8749f5c]

INTEGRATION: CWS pj75 (1.28.2); FILE MERGED 2007/03/04 16:16:52 pjanik 1.28.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [0d3d07c135429aab50c6b38f0ed16b793d61a278]

INTEGRATION: CWS pj75 (1.37.2); FILE MERGED 2007/03/04 16:16:48 pjanik 1.37.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [412d6ddc0481ed7aee335fcce3f3705b32518c8d]

INTEGRATION: CWS pj75 (1.17.2); FILE MERGED 2007/03/04 16:16:44 pjanik 1.17.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [49229df233d2c72d15ce221bb2f6857d3f52474b]

INTEGRATION: CWS pj75 (1.7.2); FILE MERGED 2007/03/04 16:16:40 pjanik 1.7.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [96121094077ed55e91f7e972c11b50cc1527b1b9]

INTEGRATION: CWS pj75 (1.12.2); FILE MERGED 2007/03/04 16:16:36 pjanik 1.12.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [c00acdb6bb422418a34879b31c72dfd3188f5f9a]

INTEGRATION: CWS pj75 (1.15.2); FILE MERGED 2007/03/04 16:16:32 pjanik 1.15.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [8ab1a8d8cb1ab3db572f927956e26f4d1795e6fd]

INTEGRATION: CWS pj75 (1.16.2); FILE MERGED 2007/03/04 16:16:28 pjanik 1.16.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [491023f4c5148fc4b4201099bd28c0437fb5543c]

INTEGRATION: CWS pj75 (1.15.2); FILE MERGED 2007/03/04 16:16:25 pjanik 1.15.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [3f4f4d44d9fc2a448a26f6ad0d013851d9508adc]

INTEGRATION: CWS pj75 (1.59.2); FILE MERGED 2007/03/04 16:16:21 pjanik 1.59.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [59967a785b82e89745d37f4e256be98e7f5f9e13]

INTEGRATION: CWS pj75 (1.10.2); FILE MERGED 2007/03/04 16:16:17 pjanik 1.10.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [57629c8ac233c28e22172ae32f35e5e98cd911db]

INTEGRATION: CWS pj75 (1.27.2); FILE MERGED 2007/03/04 16:16:13 pjanik 1.27.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [28c441e94e23e0001b46d32b0432610db2a90e85]

INTEGRATION: CWS pj75 (1.24.2); FILE MERGED 2007/03/04 16:16:09 pjanik 1.24.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [61fbd4ed423afee26c5e14de150e943f82cb56fb]

INTEGRATION: CWS pj75 (1.9.2); FILE MERGED 2007/03/04 16:16:05 pjanik 1.9.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [2a4ffb8ce1de915155e118c06cbbb3005303ea30]

INTEGRATION: CWS pj75 (1.100.2); FILE MERGED 2007/03/04 16:16:01 pjanik 1.100.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [f089b101952eda1048181e1854f95d28efd02e85]

INTEGRATION: CWS pj75 (1.13.2); FILE MERGED 2007/03/04 16:15:56 pjanik 1.13.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [7167bc908871f28fcdab1b6721bfaf864ce26895]

INTEGRATION: CWS pj75 (1.7.2); FILE MERGED 2007/03/04 16:15:53 pjanik 1.7.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [5f4fa6616400c48ebf947f066719e7b3bf3bc833]

INTEGRATION: CWS pj75 (1.21.2); FILE MERGED 2007/03/04 16:12:49 pjanik 1.21.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [4070562fb1faa14de1e99df0a045909629241552]

INTEGRATION: CWS pj75 (1.70.2); FILE MERGED 2007/03/04 16:15:49 pjanik 1.70.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [7c46be2345504ecb3328676f768d29b1364b8dcc]

INTEGRATION: CWS pj75 (1.20.2); FILE MERGED 2007/03/04 16:15:45 pjanik 1.20.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [d9f3fd8f43877f6b482df4efc7b60083c46e6de4]

INTEGRATION: CWS pj75 (1.63.2); FILE MERGED 2007/03/04 16:15:40 pjanik 1.63.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [db11655e8c2e8dde6368a8bf599b22d3f3140a7c]

INTEGRATION: CWS pj75 (1.202.2); FILE MERGED 2007/03/04 16:15:36 pjanik 1.202.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [b8718514c81d075fd1ae00cc76f35a7d2cc246fe]

INTEGRATION: CWS pj75 (1.10.2); FILE MERGED 2007/03/04 16:14:07 pjanik 1.10.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [59cdfd9969253dca2e88c5798ac2bc14fa86cec8]

INTEGRATION: CWS pj75 (1.7.182); FILE MERGED 2007/03/04 16:13:42 pjanik 1.7.182.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [bd9a8dbd22365131d8a34d8a8dc664ece685af3d]

INTEGRATION: CWS pj75 (1.19.2); FILE MERGED 2007/03/04 16:15:32 pjanik 1.19.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [148a1929110857a3dc2c51bc91974e01bc7386a7]

INTEGRATION: CWS pj75 (1.6.2); FILE MERGED 2007/03/04 16:15:24 pjanik 1.6.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [abf442dfdf554cbae81d4e3ee4ffaaca3730b372]

INTEGRATION: CWS pj75 (1.6.2); FILE MERGED 2007/03/04 16:15:20 pjanik 1.6.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [2c689fb8d0b273f5a05447123bdd9a09742ddbf2]

INTEGRATION: CWS pj75 (1.43.2); FILE MERGED 2007/03/04 16:15:16 pjanik 1.43.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [1c15794880ec6b8026ffd0b39dbbf0c029520d04]

INTEGRATION: CWS pj75 (1.8.2); FILE MERGED 2007/03/04 16:15:12 pjanik 1.8.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [f091d10dea6f5e8be052346f376837d4b7d67d12]

INTEGRATION: CWS pj75 (1.7.2); FILE MERGED 2007/03/04 16:15:08 pjanik 1.7.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [e66db64b7f8260287ea875db38c3269ebb9c95a5]

INTEGRATION: CWS pj75 (1.8.2); FILE MERGED 2007/03/04 16:15:04 pjanik 1.8.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [53d7a8dbbe485edf33ca6d337f9316eef6f83a50]

INTEGRATION: CWS pj75 (1.19.2); FILE MERGED 2007/03/04 16:15:01 pjanik 1.19.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [64dd975b1b02eca11c8a3ba2dfc4f4d8dc8e3b65]

INTEGRATION: CWS pj75 (1.27.2); FILE MERGED 2007/03/04 16:14:57 pjanik 1.27.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [00d6a2dc9f715484ebd50a871aa4cccbae75df02]

INTEGRATION: CWS pj75 (1.18.2); FILE MERGED 2007/03/04 16:14:52 pjanik 1.18.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [371d191ff8409ca46547c819b7d86458d18298e8]

INTEGRATION: CWS pj75 (1.27.2); FILE MERGED 2007/03/04 16:14:48 pjanik 1.27.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [6d3178598724b8684eb46920d47916face5163fc]

INTEGRATION: CWS pj75 (1.14.2); FILE MERGED 2007/03/04 16:14:44 pjanik 1.14.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-03-05  Oliver Bolte  <obo@openoffice.org>  [1dec60a762d55cbf904f42faafb0f6b3cf61569e]

INTEGRATION: CWS pj75 (1.27.2); FILE MERGED 2007/03/04 16:10:40 pjanik 1.27.2.1: #i75099#: Prevent warnings on Mac OS X/gcc-4.0.1.


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8e2a7bdb6f683a47fb43a66cd61ac17d83c11492]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/01 08:53:53 nn 1.12.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [252e8111048f163ba5b43e08b8c49a8a826e6080]

INTEGRATION: CWS calcwarnings (1.35.26); FILE MERGED 2006/12/12 17:03:36 nn 1.35.26.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:52 nn 1.35.26.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b7664aed86d037046eb88224229a312f2db74f56]

INTEGRATION: CWS calcwarnings (1.29.2); FILE MERGED 2006/12/12 17:03:35 nn 1.29.2.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b1e6a36a4274d9341e7249d2db26d1c01c51557e]

INTEGRATION: CWS calcwarnings (1.44.8); FILE MERGED 2007/02/19 16:10:53 nn 1.44.8.2: RESYNC: (1.44-1.46); FILE MERGED 2006/12/12 17:03:35 nn 1.44.8.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5073a275e92e7dceec60b7fda6236de5d4357aa4]

INTEGRATION: CWS calcwarnings (1.34.54); FILE MERGED 2006/12/01 08:53:52 nn 1.34.54.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7033698c0edd0b08c6b322b8a41b3a730c99ad1c]

INTEGRATION: CWS calcwarnings (1.31.100); FILE MERGED 2006/12/14 17:57:19 nn 1.31.100.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:35 nn 1.31.100.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:52 nn 1.31.100.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5fa51ab31a49210a2e692aba5f8ce74f4f5599e5]

INTEGRATION: CWS calcwarnings (1.56.108); FILE MERGED 2006/12/12 17:03:35 nn 1.56.108.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:52 nn 1.56.108.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d5f7e3ff264c850f8f50244551b4a9eb0379a9b8]

INTEGRATION: CWS calcwarnings (1.13.100); FILE MERGED 2006/12/12 17:03:35 nn 1.13.100.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:52 nn 1.13.100.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0a72a348f7d7ccdc62afd4ca8f1539c180fad395]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/12 17:03:34 nn 1.11.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:52 nn 1.11.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [04efecaab7be94e39fb440b963ad07aedde292ba]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/12 17:03:34 nn 1.9.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:52 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [55f64a7cc6875c87f364735a05ac64a4fdc4e01d]

INTEGRATION: CWS calcwarnings (1.33.8); FILE MERGED 2006/12/12 17:03:34 nn 1.33.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:51 nn 1.33.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3807a88be68f73308c23e575bcec9499702646a5]

INTEGRATION: CWS calcwarnings (1.18.110); FILE MERGED 2006/12/14 17:57:19 nn 1.18.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:33 nn 1.18.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:51 nn 1.18.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ccbbabc9c888db7148cfcade88fa0a6dc106a266]

INTEGRATION: CWS calcwarnings (1.10.100); FILE MERGED 2006/12/01 08:53:51 nn 1.10.100.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [85fe3a83d6e0433e5895812ca426db8ee2775433]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2006/12/01 08:53:51 nn 1.10.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7b8579d5c261c9390cb12be3a2eda135905578e5]

INTEGRATION: CWS calcwarnings (1.61.8); FILE MERGED 2007/02/19 16:10:46 nn 1.61.8.3: RESYNC: (1.61-1.63); FILE MERGED 2006/12/12 17:03:33 nn 1.61.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:51 nn 1.61.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9150b47ad08dfecd79bbafa2793ebfb4973b5021]

INTEGRATION: CWS calcwarnings (1.29.110); FILE MERGED 2006/12/12 17:03:33 nn 1.29.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:50 nn 1.29.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0e12204ed02e758a6ae71143fb69b4502300d1dc]

INTEGRATION: CWS calcwarnings (1.23.8); FILE MERGED 2006/12/01 08:53:50 nn 1.23.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [051872206884a2efe55c403de8166758b72329f1]

INTEGRATION: CWS calcwarnings (1.49.2); FILE MERGED 2007/02/20 11:38:39 nn 1.49.2.6: #i10000# changes after resync to m203 2007/02/19 16:10:39 nn 1.49.2.5: RESYNC: (1.50-1.51); FILE MERGED 2006/12/18 09:36:40 nn 1.49.2.4: RESYNC: (1.49-1.50); FILE MERGED 2006/12/14 17:57:19 nn 1.49.2.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:33 nn 1.49.2.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:50 nn 1.49.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ecb97307657b61fd00f116a58b7fd9ef8b3c57ac]

INTEGRATION: CWS calcwarnings (1.16.8); FILE MERGED 2006/12/01 08:53:50 nn 1.16.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3b105581d6b847a18efae2482c79a0a7103ff348]

INTEGRATION: CWS calcwarnings (1.29.8); FILE MERGED 2006/12/12 17:03:32 nn 1.29.8.3: #i69284# warning-free: ui, unxlngi6 2006/12/01 15:51:28 nn 1.29.8.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 08:53:50 nn 1.29.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [10562268adbedac68a3a28fd79fda2e71fafb12e]

INTEGRATION: CWS calcwarnings (1.14.110); FILE MERGED 2006/12/01 08:53:50 nn 1.14.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b3d06ed22ce4267f75cf289c8363886792c1765c]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/14 17:57:19 nn 1.15.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:32 nn 1.15.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:49 nn 1.15.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1254f79881b6fcf5c5863da09883e1ee77e492b0]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:32 nn 1.5.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f2e4296405ec8ef0c0a048b029334f12271a0d23]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/01 08:53:49 nn 1.4.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3b896e81640738194d930730789ea647648275ee]

INTEGRATION: CWS calcwarnings (1.17.8); FILE MERGED 2006/12/01 08:53:49 nn 1.17.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7a40e6f372d223d8103dd3e6953b8bd299586359]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2007/02/01 10:44:01 nn 1.7.110.2: fix for #i73877# from CWS calcdocmerge 2006/12/12 17:03:32 nn 1.7.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0447f55228c1b1e148226b76d08eb7e05116af28]

INTEGRATION: CWS calcwarnings (1.47.8); FILE MERGED 2007/02/19 16:10:28 nn 1.47.8.3: RESYNC: (1.47-1.48); FILE MERGED 2006/12/12 17:03:32 nn 1.47.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:49 nn 1.47.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [14b79d72d361827519902967fdd367a30183c9cf]

INTEGRATION: CWS calcwarnings (1.6.108); FILE MERGED 2006/12/01 08:53:49 nn 1.6.108.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [de1cbba884d24a5a1c97dbbaee90f18e63c06c9c]

INTEGRATION: CWS calcwarnings (1.30.110); FILE MERGED 2007/02/19 16:10:21 nn 1.30.110.3: RESYNC: (1.30-1.31); FILE MERGED 2006/12/12 17:03:32 nn 1.30.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:49 nn 1.30.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ce070fea5fcd229905020f14997bd0bd7061c33c]

INTEGRATION: CWS calcwarnings (1.14.110); FILE MERGED 2006/12/12 17:03:32 nn 1.14.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:49 nn 1.14.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bfbf585ffec607abfaea724fab13992d17f4eb54]

INTEGRATION: CWS calcwarnings (1.29.8); FILE MERGED 2007/02/19 16:10:15 nn 1.29.8.3: RESYNC: (1.29-1.30); FILE MERGED 2006/12/12 17:03:31 nn 1.29.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:48 nn 1.29.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [983c57b9dd70db3b129fecc10fc2fd03bc2b1b38]

INTEGRATION: CWS calcwarnings (1.22.8); FILE MERGED 2007/02/19 16:10:08 nn 1.22.8.2: RESYNC: (1.22-1.23); FILE MERGED 2006/12/01 08:53:48 nn 1.22.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7b96a1f003935584c2c31f2b4e3747cd46c872e4]

INTEGRATION: CWS calcwarnings (1.52.46); FILE MERGED 2006/12/12 17:03:31 nn 1.52.46.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:48 nn 1.52.46.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [946d861169fb738b4f4ed5cbb5fb8e32b3302e91]

INTEGRATION: CWS calcwarnings (1.29.110); FILE MERGED 2006/12/12 17:03:31 nn 1.29.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:48 nn 1.29.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [962a8674199b280ebce1f047ca29bd9fcb12099a]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/01 08:53:48 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [280b25ee8ca0e1626e0a33cb8548102a0d5120b0]

INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED 2006/12/01 08:53:48 nn 1.13.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f495cd3e6a686cf1db2da9afe99da686f23df168]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/12 17:03:31 nn 1.9.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:47 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [727bfa702594da7480ba153330728d2a7e2fd6d0]

INTEGRATION: CWS calcwarnings (1.14.324); FILE MERGED 2006/12/14 17:57:19 nn 1.14.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e96b93c8655043e65877d7a46bc7a5ced08fa104]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/01 08:53:47 nn 1.4.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a1ba88ad2e93f90e779076c71d82827196a09b18]

INTEGRATION: CWS calcwarnings (1.18.110); FILE MERGED 2006/12/12 17:03:31 nn 1.18.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:47 nn 1.18.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a8df318309c970fdf7663670a595c9384a700299]

INTEGRATION: CWS calcwarnings (1.17.8); FILE MERGED 2006/12/01 08:53:47 nn 1.17.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dec2f3389974292ce1f1d2792f7368347039845d]

INTEGRATION: CWS calcwarnings (1.31.8); FILE MERGED 2006/12/01 08:53:47 nn 1.31.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e597b29152f222aeedc65554a1daf6db19cf7036]

INTEGRATION: CWS calcwarnings (1.15.8); FILE MERGED 2006/12/01 08:53:47 nn 1.15.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [67480103db8121479bccf8419cd5e7374332f2a5]

INTEGRATION: CWS calcwarnings (1.12.8); FILE MERGED 2006/12/01 08:53:47 nn 1.12.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6ab408240a9f293448ae6e7c850b856f282022e5]

INTEGRATION: CWS calcwarnings (1.79.8); FILE MERGED 2006/12/12 17:03:30 nn 1.79.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:46 nn 1.79.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [92c855e517fc6c351e3a389a6a2d37267e8ab983]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/12 17:03:30 nn 1.4.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [30c2434905327edf74dde8fe8d96f4918b144694]

INTEGRATION: CWS calcwarnings (1.32.110); FILE MERGED 2006/12/14 17:57:18 nn 1.32.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:30 nn 1.32.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:46 nn 1.32.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0089b3caae1127727554215b765b7f6ee973bc94]

INTEGRATION: CWS calcwarnings (1.29.110); FILE MERGED 2006/12/14 17:57:18 nn 1.29.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:30 nn 1.29.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:46 nn 1.29.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c831f555e9ef004193f31215efac6241406a3571]

INTEGRATION: CWS calcwarnings (1.43.8); FILE MERGED 2006/12/18 09:36:32 nn 1.43.8.2: RESYNC: (1.43-1.44); FILE MERGED 2006/12/12 17:03:30 nn 1.43.8.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [be183c9237e4a4f4163dc93d3c8df23280ed2641]

INTEGRATION: CWS calcwarnings (1.26.50); FILE MERGED 2006/12/12 17:03:30 nn 1.26.50.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:46 nn 1.26.50.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b53e29c19280038a0c758b411995bbe46518c850]

INTEGRATION: CWS calcwarnings (1.10.8); FILE MERGED 2007/02/19 16:10:01 nn 1.10.8.3: RESYNC: (1.11-1.12); FILE MERGED 2006/12/18 09:36:25 nn 1.10.8.2: RESYNC: (1.10-1.11); FILE MERGED 2006/12/12 17:03:29 nn 1.10.8.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0373d9fab5878a7d79bb7da0b0adc6c3dbbbb8cf]

INTEGRATION: CWS calcwarnings (1.3.110); FILE MERGED 2006/12/01 08:53:46 nn 1.3.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bf4587fad7afd8c5502e28eaca7e8c8b2dc62f93]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/12 17:03:29 nn 1.12.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [cbfbacba176ab53f98ae9944ecf6aa7024687a37]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/12 17:03:29 nn 1.12.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:46 nn 1.12.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [744f63f39750f857ff1b1ec1bb297e869184e710]

INTEGRATION: CWS calcwarnings (1.15.46); FILE MERGED 2007/02/20 15:21:11 nn 1.15.46.2: #i69284# warnings on wntmsci10.pro after resync 2006/12/12 17:03:29 nn 1.15.46.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2efcf214c84764878990edad507a2e5623fadc1a]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/01 08:53:45 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6238402bd88131af7f966ffd2b00c13398f21f6a]

INTEGRATION: CWS calcwarnings (1.19.110); FILE MERGED 2006/12/12 17:03:29 nn 1.19.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:45 nn 1.19.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7a0b81a2a4e8effc573271744661fdcd4a35153b]

INTEGRATION: CWS calcwarnings (1.27.110); FILE MERGED 2006/12/12 17:03:29 nn 1.27.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:45 nn 1.27.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [46c3b9cb93e68da4e7564be749f9843ca8f78836]

INTEGRATION: CWS calcwarnings (1.44.2); FILE MERGED 2006/12/12 17:03:28 nn 1.44.2.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:45 nn 1.44.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f39d77532d852751ebddb2b3df448c025fa66147]

INTEGRATION: CWS calcwarnings (1.41.2); FILE MERGED 2006/12/12 17:03:28 nn 1.41.2.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:45 nn 1.41.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8640ced5e6e43b5724816d5ab75f27be45ba924d]

INTEGRATION: CWS calcwarnings (1.26.8); FILE MERGED 2007/02/19 16:09:55 nn 1.26.8.4: RESYNC: (1.26-1.27); FILE MERGED 2006/12/14 17:57:18 nn 1.26.8.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:28 nn 1.26.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:44 nn 1.26.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9f69b10af42adbf4cb3f475b0f469eeb06628997]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/01 08:53:44 nn 1.8.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0efe88a8e403f52649ff44c06baca37209f283c8]

INTEGRATION: CWS calcwarnings (1.22.110); FILE MERGED 2006/12/12 17:03:28 nn 1.22.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:44 nn 1.22.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [18acc4cf7e4815435785770392cdff7d4a4fbfd3]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/14 17:57:18 nn 1.7.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:28 nn 1.7.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:44 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2a8671d1916f8f888ab0c023df3023e06d62e873]

INTEGRATION: CWS calcwarnings (1.36.110); FILE MERGED 2006/12/14 17:57:18 nn 1.36.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:27 nn 1.36.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:44 nn 1.36.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [86c81cdd92a504392d2d1c8e7bacd0caa42892bf]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:27 nn 1.5.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6534ef686556ca3e00b9a2d55636ef90d8f564e8]

INTEGRATION: CWS calcwarnings (1.16.110); FILE MERGED 2006/12/14 17:57:18 nn 1.16.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:27 nn 1.16.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:44 nn 1.16.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [24f6e69af8da9e88dd67de10256392b8ba2103aa]

INTEGRATION: CWS calcwarnings (1.20.88); FILE MERGED 2006/12/12 17:03:27 nn 1.20.88.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:44 nn 1.20.88.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [397f7b0f247a4cb36b1cd35bcc6de0229d456151]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/12 17:03:27 nn 1.6.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7e2717dabd7277bf262351f3a518c96d72e669e8]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/12 17:03:27 nn 1.8.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:43 nn 1.8.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [80e3e8bbadb9496d8dcff744b0443ff663f694ef]

INTEGRATION: CWS calcwarnings (1.15.54); FILE MERGED 2006/12/14 17:57:17 nn 1.15.54.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:26 nn 1.15.54.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:43 nn 1.15.54.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5541e599387a8276cf91cc1cc2e58ccf321309d6]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/14 17:57:17 nn 1.11.110.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:43 nn 1.11.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e57c9d4051365d3def4bd939e026eb838d934532]

INTEGRATION: CWS calcwarnings (1.14.110); FILE MERGED 2006/12/14 17:57:17 nn 1.14.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:26 nn 1.14.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:43 nn 1.14.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [91d9c48840a6eb3a04edc8705341f5dfbb3f66b2]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/12 17:03:26 nn 1.15.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:43 nn 1.15.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1973bf66bbc3bc3994df0252c5de6f6c294d47fe]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/01 08:53:43 nn 1.4.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [babbd4e10da3c9d7c5d8399f74ed3d7127958184]

INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED 2006/12/14 17:57:17 nn 1.13.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:26 nn 1.13.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:43 nn 1.13.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [53947fa8f24ce9c9fa82519abc60fc2d3ea6bf17]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2007/02/19 16:09:48 nn 1.10.110.2: RESYNC: (1.10-1.11); FILE MERGED 2006/12/01 08:53:43 nn 1.10.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ec997f3153301abcf83ee3787992c783e974cf60]

INTEGRATION: CWS calcwarnings (1.14.110); FILE MERGED 2006/12/14 17:57:17 nn 1.14.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:26 nn 1.14.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:42 nn 1.14.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [677011ff0d39609ed82f60286a3f1b7559c054d2]

INTEGRATION: CWS calcwarnings (1.23.110); FILE MERGED 2006/12/01 08:53:42 nn 1.23.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a01f7c61bbdc9f9731a864aa4ac73f42360198f0]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/01 08:53:42 nn 1.4.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [97daa602d0fd8fec6a4768bba5559cebfc6979dc]

INTEGRATION: CWS calcwarnings (1.57.6); FILE MERGED 2006/12/18 09:36:18 nn 1.57.6.5: RESYNC: (1.57-1.58); FILE MERGED 2006/12/14 17:57:17 nn 1.57.6.4: #i69284# warning-free: ui, unxsols4 2006/12/13 11:31:48 dr 1.57.6.3: #i69284# remove compiler warnings for unxlngi6.pro 2006/12/12 17:03:26 nn 1.57.6.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:42 nn 1.57.6.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bd3c12ed7a8e8c19f93ba97ba5815346501f226c]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/01 08:53:42 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0263e4e0ffcb04ed45e60498b9dc6f6682479302]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/01 08:53:42 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [272fae609d418899a25d5c262518c13ec5a4b4f2]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/12 17:03:25 nn 1.9.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:42 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [556d99adaf768455444cfbe712cd966a06371502]

INTEGRATION: CWS calcwarnings (1.26.110); FILE MERGED 2006/12/14 17:57:16 nn 1.26.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:25 nn 1.26.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:41 nn 1.26.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f982c65db8103ee99f407bd9e488b97cfb11306a]

INTEGRATION: CWS calcwarnings (1.18.54); FILE MERGED 2006/12/14 17:57:16 nn 1.18.54.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:25 nn 1.18.54.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:41 nn 1.18.54.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [862d21a4b9107eb92294256c3b97925bb8a806eb]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/12 17:03:25 nn 1.9.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f1d46aeafd3afbddd837d617d9bd6b7158ac716c]

INTEGRATION: CWS calcwarnings (1.23.110); FILE MERGED 2006/12/12 17:03:25 nn 1.23.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:41 nn 1.23.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [36cca02b537381c13ca48d8adc89cad6c7b34166]

INTEGRATION: CWS calcwarnings (1.18.48); FILE MERGED 2006/12/14 17:57:16 nn 1.18.48.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:41 nn 1.18.48.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [78e2e19f0cee83c73295673e5827e09a666afed3]

INTEGRATION: CWS calcwarnings (1.5.108); FILE MERGED 2006/12/14 17:57:16 nn 1.5.108.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:25 nn 1.5.108.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:41 nn 1.5.108.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e11a4eead78572f02b57acf9d00ceec20894059f]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/14 17:57:16 nn 1.4.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d4f6aae4d87876328486abc371ade8de8f022077]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/12 17:03:24 nn 1.8.110.3: #i69284# warning-free: ui, unxlngi6 2006/12/01 15:51:27 nn 1.8.110.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 08:53:41 nn 1.8.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [20cd21e6431089ec63e538f0a0f19c9c260ac13e]

INTEGRATION: CWS calcwarnings (1.99.46); FILE MERGED 2006/12/14 17:57:15 nn 1.99.46.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:24 nn 1.99.46.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:40 nn 1.99.46.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6b4e12a3b3cea18b1c2649bac5f426e9342d90e3]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/14 17:57:15 nn 1.4.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [77c7aad86a254a3f20363933ed8f91e7d8e3eb26]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/01 15:51:27 nn 1.8.110.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 08:53:40 nn 1.8.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [62565066cc5ef8e60c5148c79a769fd39bd75a46]

INTEGRATION: CWS calcwarnings (1.21.88); FILE MERGED 2006/12/14 17:57:15 nn 1.21.88.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:24 nn 1.21.88.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:40 nn 1.21.88.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e1a65025fad4b51326847e34947630e4535ab6bf]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/12 17:03:24 nn 1.12.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:40 nn 1.12.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [624bf05a2d19045fa2ec259f12fcb7a3c28151fa]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/12 17:03:24 nn 1.6.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:40 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a0dad5664bc1cea350140e7a6152bef10713e88b]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/01 15:51:27 nn 1.5.110.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 08:53:39 nn 1.5.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a5115a91217bb51e2c1e461315f57108686eea2c]

INTEGRATION: CWS calcwarnings (1.15.46); FILE MERGED 2006/12/12 17:03:23 nn 1.15.46.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:39 nn 1.15.46.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f02a2cbda908a52c5d5e04d3f804e51441b32604]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/01 08:53:39 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8f0421a53e3bb20aaef183b23cfda85107cae9cc]

INTEGRATION: CWS calcwarnings (1.8.108); FILE MERGED 2006/12/12 17:03:23 nn 1.8.108.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:39 nn 1.8.108.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [53ade556a0ac5d5ac957a1704347fa0d8897cac8]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/12 17:03:23 nn 1.11.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:39 nn 1.11.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [caf79e08ce5a82f0e9a9a739c4a7844e9ff9b72c]

INTEGRATION: CWS calcwarnings (1.18.110); FILE MERGED 2006/12/12 17:03:23 nn 1.18.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:39 nn 1.18.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [46569737829100de7ac4637884c7d88d5b1cc8c9]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/12 17:03:23 nn 1.9.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:39 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4fc9c7926a882b5b78c725d5dcb00d73929bee30]

INTEGRATION: CWS calcwarnings (1.24.46); FILE MERGED 2006/12/14 17:57:15 nn 1.24.46.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:22 nn 1.24.46.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:38 nn 1.24.46.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ed284010760d4cf24387ee818ccfe61d462c7c5e]

INTEGRATION: CWS calcwarnings (1.3.324); FILE MERGED 2006/12/14 17:57:14 nn 1.3.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a8d012e2c62373051b71e7de85bfde5910e42399]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/12 17:03:22 nn 1.6.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e2bc076b46547250a43f235ef930672f484044ad]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2007/02/19 16:07:16 nn 1.9.110.3: RESYNC: (1.9-1.10); FILE MERGED 2006/12/12 17:03:22 nn 1.9.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:38 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ca68df98ce576e268ce02251b36b25de4defa385]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/12 17:03:22 nn 1.15.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:38 nn 1.15.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [81bfcffa47508ea14095d9c55024d8617b138b36]

INTEGRATION: CWS calcwarnings (1.10.50); FILE MERGED 2006/12/12 17:03:22 nn 1.10.50.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [493c7afdc9eabe990b4cb02fa5ce8382e5fb5baf]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/12 17:03:21 nn 1.7.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:38 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [82bed15c40f45fccab55025a22870542b692dc51]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:21 nn 1.5.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:38 nn 1.5.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [22633d0c694bf006765b1b0d7dbdedfc5017e564]

INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED 2006/12/12 17:03:21 nn 1.13.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:37 nn 1.13.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [11964f8fe378ce7798a6f214af5755dd0770cb39]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2007/02/20 15:21:10 nn 1.15.110.3: #i69284# warnings on wntmsci10.pro after resync 2006/12/12 17:03:21 nn 1.15.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:37 nn 1.15.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [451d13ecc632e19b6e66f4d47cec2a4236c6b6c8]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/12 17:03:20 nn 1.8.110.3: #i69284# warning-free: ui, unxlngi6 2006/12/01 15:51:27 nn 1.8.110.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 08:53:37 nn 1.8.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [947ff3355f863da3dfe1f31d1993c4f55ab66e4c]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:20 nn 1.5.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [729babc65d101a4ea35453064b504f0c4a9ad115]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/12 17:03:20 nn 1.15.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:37 nn 1.15.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e6c6f2c30b2a6d6edfc3519b8fdce6e9484ca94b]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/12 17:03:20 nn 1.7.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:37 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [57a3a8d6a2f4bb16695f42c5a32b7b7a580f6d61]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/12 17:03:20 nn 1.6.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [495219425bffecbcc631d9bb9a660754c77e32b8]

INTEGRATION: CWS calcwarnings (1.20.110); FILE MERGED 2006/12/14 17:57:14 nn 1.20.110.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:37 nn 1.20.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9faf64f9c0c65ac48fda1afea406961a68a2dfaf]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/12 17:03:19 nn 1.4.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:36 nn 1.4.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [45bf9231406fa9ac11ca58a1a1db0588fdbf1586]

INTEGRATION: CWS calcwarnings (1.22.8); FILE MERGED 2006/12/14 17:57:14 nn 1.22.8.3: #i69284# warning-free: ui, unxsols4 2006/12/13 19:18:27 nn 1.22.8.2: #i69284# warning-free: core, unxsols4 2006/12/01 08:53:36 nn 1.22.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [82a59bef84631f4d1c54c6b8d7a4907501374864]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/12 17:03:19 nn 1.7.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:36 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a972bae0753648a7124a2444fd06600e1fb4760f]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/19 16:26:01 nn 1.8.110.1: #i69284# warning-free with precompiled headers


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5717b2b20c71595908c1666b03ed3dde797e343a]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/12 17:03:19 nn 1.9.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:36 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [83fe08e320682a0ad41cae2a3d8087e93400d932]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2007/02/19 16:06:51 nn 1.6.110.2: RESYNC: (1.6-1.7); FILE MERGED 2006/12/12 17:03:19 nn 1.6.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5f09d6ee9b97c38d2ba8cc5d0512333b90b06f4b]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2006/12/12 17:03:18 nn 1.10.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:36 nn 1.10.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [db1591bd4036a4657dd2415599ddb4a1b320046d]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/12 17:03:18 nn 1.8.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1c901d0d59cb48ff6c4979f283dd8010482fad41]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/12 17:03:18 nn 1.6.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:35 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d95a9b4df8dcf02f2c1935d342064cf0e5b40ae2]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:18 nn 1.5.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4efb99a74432cbc99aaefda658ac707413b2c568]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/01 08:53:35 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fee09e4aa17cf37db4730887c20526b319fb5cd0]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2007/02/20 15:21:10 nn 1.6.110.2: #i69284# warnings on wntmsci10.pro after resync 2006/12/12 17:03:18 nn 1.6.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [66a16214af13c766e9b68a25bf935116a525dea3]

INTEGRATION: CWS calcwarnings (1.14.2); FILE MERGED 2007/02/20 15:21:10 nn 1.14.2.1: #i69284# warnings on wntmsci10.pro after resync


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [79d984ca4876b7e1af49b7cefda9caaed4428188]

INTEGRATION: CWS calcwarnings (1.12.2); FILE MERGED 2006/12/12 17:03:18 nn 1.12.2.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:35 nn 1.12.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6a8d06c6037a8a3441e294b6d80641b8e68ee811]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/12 17:03:17 nn 1.6.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:35 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [79361c7e9a791a2f8ac47138979143ab0dd4df22]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:17 nn 1.5.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [935a39777f056f7f8b188634aa6eb1f35cbc1158]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2006/12/12 17:03:17 nn 1.10.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7898297dacc5d9ef9d9964516a29dea98078eeac]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/12 17:03:17 nn 1.7.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:35 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8cfff0b4fbca1253ae647d7a4a3ff4f92b9db829]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:16 nn 1.5.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d8633b1a5dc8fdcabde0c192daac69b2a672ee5f]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/12 17:03:16 nn 1.8.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:35 nn 1.8.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4b9b748f51d2b84e5dc0b09300fad582d2e9bd89]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/12 17:03:16 nn 1.15.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:34 nn 1.15.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2dbc1ea66e952d520518eac8bfe0d62f933defc4]

INTEGRATION: CWS calcwarnings (1.17.110); FILE MERGED 2006/12/12 17:03:16 nn 1.17.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:34 nn 1.17.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [27d26d31664d6a8e6e0611ae1e581ab7dc8f05bb]

INTEGRATION: CWS calcwarnings (1.21.50); FILE MERGED 2006/12/12 17:03:16 nn 1.21.50.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:34 nn 1.21.50.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e2af9035fbb0148439528bf3cc073c806e3c3d99]

INTEGRATION: CWS calcwarnings (1.19.324); FILE MERGED 2006/12/01 08:53:34 nn 1.19.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1dd4aab74373353a292159c7d7e19cd8653c9ae4]

INTEGRATION: CWS calcwarnings (1.7.324); FILE MERGED 2006/12/01 08:53:34 nn 1.7.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ee4725f3a35bb1f3ca9f405bb415ef2eeeeee4ab]

INTEGRATION: CWS calcwarnings (1.3.324); FILE MERGED 2006/12/01 08:53:34 nn 1.3.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9dc77c492b7cc65c3a739c883fc22680cdb0f18b]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2007/02/19 16:06:34 nn 1.6.324.2: RESYNC: (1.6-1.7); FILE MERGED 2006/12/01 08:53:33 nn 1.6.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [11ccaeab9633dbf908ca60c343ac423ce678ad8e]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2006/12/01 08:53:33 nn 1.6.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1adbbe321e13ac2d3776cd7c824f7c0a71065879]

INTEGRATION: CWS calcwarnings (1.3.324); FILE MERGED 2006/12/14 17:57:14 nn 1.3.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [38eba5fec512e99be1b5f3944a13b3c5e0761173]

INTEGRATION: CWS calcwarnings (1.11.324); FILE MERGED 2006/12/14 17:57:14 nn 1.11.324.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:33 nn 1.11.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5283aa63c6b26168ec6443e63057adce4ef9f6d2]

INTEGRATION: CWS calcwarnings (1.3.324); FILE MERGED 2006/12/12 17:03:15 nn 1.3.324.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:33 nn 1.3.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8c327fd78a0ff6995e5ea4645afb51d00be4b9e1]

INTEGRATION: CWS calcwarnings (1.7.324); FILE MERGED 2006/12/01 08:53:33 nn 1.7.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ad412e5ce8253d016e730877dc2a487fad59e7d7]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/01 08:53:33 nn 1.4.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f476e540a49baa7ae4286ed7972a777efcad62bd]

INTEGRATION: CWS calcwarnings (1.25.172); FILE MERGED 2007/02/19 16:06:28 nn 1.25.172.2: RESYNC: (1.25-1.26); FILE MERGED 2006/12/14 17:57:13 nn 1.25.172.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7f8c686ea45e6249aeca1b053515c070432e5a34]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2006/12/14 17:57:13 nn 1.6.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [89236fb22af2b3fd93e44ba30eaa7b1f5a13b143]

INTEGRATION: CWS calcwarnings (1.8.322); FILE MERGED 2007/02/19 16:06:00 nn 1.8.322.2: RESYNC: (1.8-1.9); FILE MERGED 2006/12/14 17:57:13 nn 1.8.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [38671bdad1fdcda8dd80611aa44170af18e55c5f]

INTEGRATION: CWS calcwarnings (1.8.324); FILE MERGED 2006/12/14 17:57:13 nn 1.8.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [24d13726df54e9efddbf09016cc9f1608e79957d]

INTEGRATION: CWS calcwarnings (1.3.322); FILE MERGED 2006/12/14 17:57:13 nn 1.3.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [507146d83ad9aa23562886f2dacea62a9bdb83f0]

INTEGRATION: CWS calcwarnings (1.2.322); FILE MERGED 2006/12/14 17:57:13 nn 1.2.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c5ac25f5e123bd1e866f9437b9ce2e0d13f6776d]

INTEGRATION: CWS calcwarnings (1.9.324); FILE MERGED 2006/12/14 17:57:13 nn 1.9.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c966d3d7cfdc03f44b1fa98414fa4a609786eb7c]

INTEGRATION: CWS calcwarnings (1.2.322); FILE MERGED 2006/12/14 17:57:12 nn 1.2.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [16f5256de419fce7ada6eb940138ce1d77a513ed]

INTEGRATION: CWS calcwarnings (1.11.324); FILE MERGED 2006/12/14 17:57:12 nn 1.11.324.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:33 nn 1.11.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f852a92b407b179596e561210d5451a06fef2cc3]

INTEGRATION: CWS calcwarnings (1.3.322); FILE MERGED 2006/12/14 17:57:12 nn 1.3.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b2132b4c045ca0dbba490751a02ea3e8be8ac9ea]

INTEGRATION: CWS calcwarnings (1.15.324); FILE MERGED 2006/12/14 17:57:12 nn 1.15.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ea0b9eab1a3f5fcb4dc128b3ed9f76a8ccb56765]

INTEGRATION: CWS calcwarnings (1.22.8); FILE MERGED 2006/12/01 08:53:32 nn 1.22.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4c45427ab964f065b64ad5ccf555e3c9e4231e05]

INTEGRATION: CWS calcwarnings (1.4.322); FILE MERGED 2006/12/14 17:57:12 nn 1.4.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [df71f75c9770866925e8f9e0f7b581aa17b8e745]

INTEGRATION: CWS calcwarnings (1.5.324); FILE MERGED 2006/12/01 08:53:32 nn 1.5.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f84c85c8a6e7ba56b5e564767ce833a33485290a]

INTEGRATION: CWS calcwarnings (1.5.324); FILE MERGED 2006/12/12 17:03:15 nn 1.5.324.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b12edafe506583a65847efbda21e32d257fe96b6]

INTEGRATION: CWS calcwarnings (1.6.322); FILE MERGED 2006/12/14 17:57:12 nn 1.6.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [26ab091fc282b3468d8278b449925e4fca7f2ce9]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/01 08:53:32 nn 1.4.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ad627bc5fa061900f9b1a7517323ce97d461be7c]

INTEGRATION: CWS calcwarnings (1.5.322); FILE MERGED 2006/12/14 17:57:11 nn 1.5.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [83b62107ece52e25e3166f658c2577af579b2141]

INTEGRATION: CWS calcwarnings (1.2.322); FILE MERGED 2006/12/14 17:57:11 nn 1.2.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ce8f9e17114bebdbab987f421aad4287d5b50f3a]

INTEGRATION: CWS calcwarnings (1.6.322); FILE MERGED 2006/12/14 17:57:11 nn 1.6.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [daef9bf7d6c7477a61790f2c48081cab1de2c0c6]

INTEGRATION: CWS calcwarnings (1.38.2); FILE MERGED 2007/02/19 16:05:45 nn 1.38.2.3: RESYNC: (1.38-1.39); FILE MERGED 2006/12/14 17:57:11 nn 1.38.2.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:32 nn 1.38.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dba28f02eb27ca26208ec4bcfa66b3c210d00454]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2006/12/01 08:53:32 nn 1.6.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3ffe6d5240d8f89311832dfd074307f6d261e8e3]

INTEGRATION: CWS calcwarnings (1.11.324); FILE MERGED 2006/12/01 08:53:32 nn 1.11.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [cb8512d852b62c1e1e592d8ce773ee196f98eb27]

INTEGRATION: CWS calcwarnings (1.11.208); FILE MERGED 2006/12/14 17:57:11 nn 1.11.208.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:32 nn 1.11.208.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a69236587908405e356eb26344a226198d2c2be2]

INTEGRATION: CWS calcwarnings (1.7.2); FILE MERGED 2006/12/14 17:57:10 nn 1.7.2.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [842cffdae52ff6fa6353dc1f735832ad40c186a4]

INTEGRATION: CWS calcwarnings (1.2.322); FILE MERGED 2006/12/14 17:57:10 nn 1.2.322.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f2fa7b8b368591f78716bcedd2ab097fd6471011]

INTEGRATION: CWS calcwarnings (1.8.324); FILE MERGED 2006/12/01 08:53:31 nn 1.8.324.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dde5e3f2dedfc735c56b11db3291ac43d9d213ff]

INTEGRATION: CWS calcwarnings (1.17.262); FILE MERGED 2006/12/14 17:57:10 nn 1.17.262.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:15 nn 1.17.262.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:31 nn 1.17.262.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a2b789e0b6d64ade1007e5789cf34734df31a8fa]

INTEGRATION: CWS calcwarnings (1.22.324); FILE MERGED 2006/12/14 17:57:10 nn 1.22.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b9978825b8c731a536f6fdd7e95acb750b270bfb]

INTEGRATION: CWS calcwarnings (1.27.324); FILE MERGED 2006/12/14 17:57:10 nn 1.27.324.2: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:15 nn 1.27.324.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5d2519ebc3607871647654978b1da76ef76de132]

INTEGRATION: CWS calcwarnings (1.8.324); FILE MERGED 2006/12/14 17:57:10 nn 1.8.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ee0c20e7824db3775f97e04ea51f1c9cec548afe]

INTEGRATION: CWS calcwarnings (1.11.324); FILE MERGED 2006/12/14 17:57:10 nn 1.11.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [78890296a7a9708dfa8d7d8c98a7e3b7a97d8cc0]

INTEGRATION: CWS calcwarnings (1.9.324); FILE MERGED 2006/12/14 17:57:10 nn 1.9.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c703c538ffdf2f238e348b12b23325788949c853]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2006/12/14 17:57:09 nn 1.6.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a5587656f72b30dd0c31fd8a05f83f589e6f5e09]

INTEGRATION: CWS calcwarnings (1.8.324); FILE MERGED 2006/12/14 17:57:09 nn 1.8.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [10672d17b53d339b0cd6fe6453301810f1fbfdf7]

INTEGRATION: CWS calcwarnings (1.11.192); FILE MERGED 2006/12/14 17:57:09 nn 1.11.192.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c3f011d786b52e942317747168e430e538c69764]

INTEGRATION: CWS calcwarnings (1.26.192); FILE MERGED 2006/12/14 17:57:09 nn 1.26.192.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b376e9758bdb22c2d440ab4fcee4d17d0cfa4219]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/14 17:57:08 nn 1.4.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d4825eb2bcdc61f558d844e0e6fba363e6755338]

INTEGRATION: CWS calcwarnings (1.13.324); FILE MERGED 2006/12/14 17:57:08 nn 1.13.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7c5d0f6943c8af7babb7cdd9444b71a88009b503]

INTEGRATION: CWS calcwarnings (1.21.324); FILE MERGED 2006/12/15 11:40:02 nn 1.21.324.2: #i69284# warning-free: resolve ambiguity 2006/12/14 17:57:08 nn 1.21.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [802c34ecc853d78e680c184fc26afe6cd296812f]

INTEGRATION: CWS calcwarnings (1.14.324); FILE MERGED 2006/12/14 17:57:08 nn 1.14.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ee93b6e2255393379150036d4d7ead112301703a]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/12 17:03:14 nn 1.7.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:31 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ef70527c4f63f6448bf920365266039ff6c0d88c]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/01 08:53:31 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [025cbe7e29d73021aa598f424b8f0cb6c9324c44]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/01 08:53:31 nn 1.4.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d64196fad727cef117880d6266c25c29d641b34e]

INTEGRATION: CWS calcwarnings (1.14.88); FILE MERGED 2006/12/12 17:03:14 nn 1.14.88.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:31 nn 1.14.88.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5d1338513c108b1b862b597917be77fda8b263d9]

INTEGRATION: CWS calcwarnings (1.11.88); FILE MERGED 2006/12/12 17:03:14 nn 1.11.88.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:30 nn 1.11.88.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [179ffdca77a777ead98ceda45070766c090c7f28]

INTEGRATION: CWS calcwarnings (1.6.100); FILE MERGED 2006/12/01 08:53:30 nn 1.6.100.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e5e5ac321f474e333b0a7add04e28bb58789c2ba]

INTEGRATION: CWS calcwarnings (1.25.8); FILE MERGED 2006/12/12 17:03:14 nn 1.25.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:30 nn 1.25.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [287e8dcc2d2ff63c8a44a8f962b3b1f80c7241be]

INTEGRATION: CWS calcwarnings (1.16.8); FILE MERGED 2006/12/18 09:35:31 nn 1.16.8.3: RESYNC: (1.16-1.17); FILE MERGED 2006/12/12 17:03:14 nn 1.16.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:30 nn 1.16.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a1a57318c67264c077f12e901bb53afe04a40931]

INTEGRATION: CWS calcwarnings (1.11.8); FILE MERGED 2006/12/12 17:03:14 nn 1.11.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:30 nn 1.11.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0302ea0cd65ccbecc7f26b897aa1f225c855d99d]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/12 17:03:13 nn 1.6.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:30 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c0f9733e9f9c87b304587fec3cd2894573a3e7d5]

INTEGRATION: CWS calcwarnings (1.24.8); FILE MERGED 2006/12/12 17:03:13 nn 1.24.8.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8ad7027942bde0dba5563b06a2da0d68b1eee91b]

INTEGRATION: CWS calcwarnings (1.9.8); FILE MERGED 2006/12/12 17:03:13 nn 1.9.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:29 nn 1.9.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [470b3a4647b1e15960977079d16ea972ba6b68d2]

INTEGRATION: CWS calcwarnings (1.20.8); FILE MERGED 2006/12/18 09:35:38 nn 1.20.8.3: RESYNC: (1.20-1.21); FILE MERGED 2006/12/12 17:03:13 nn 1.20.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:29 nn 1.20.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b53b2449a745406bb050b4ae9afa564c82dbd549]

INTEGRATION: CWS calcwarnings (1.7.108); FILE MERGED 2006/12/12 17:03:13 nn 1.7.108.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:29 nn 1.7.108.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9990766dfc0bf33d455b1cdb54a4883bbe01d816]

INTEGRATION: CWS calcwarnings (1.9.8); FILE MERGED 2006/12/12 17:03:12 nn 1.9.8.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [df50cd1ca5b33d6eed38a6f0a7e5adc1a0f75439]

INTEGRATION: CWS calcwarnings (1.12.8); FILE MERGED 2006/12/12 17:03:12 nn 1.12.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:29 nn 1.12.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bbcbf0396515ea5356e535b635be5a2d548ce78e]

INTEGRATION: CWS calcwarnings (1.6.8); FILE MERGED 2006/12/12 17:03:12 nn 1.6.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:29 nn 1.6.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f421248d1bc77fd32ccea27319f5bfb0a1bfa0d2]

INTEGRATION: CWS calcwarnings (1.10.8); FILE MERGED 2006/12/12 17:03:12 nn 1.10.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:29 nn 1.10.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b1739d03961ef67c5760cc53fdd27c5ca5d078bf]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/12 17:03:12 nn 1.7.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:29 nn 1.7.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [05cea3d9bb7a36fd31c755adfe2ecc7749ebc806]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/12 17:03:12 nn 1.12.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:28 nn 1.12.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5ecb2dabe1689a2a63ef895fabe8ec24866d15af]

INTEGRATION: CWS calcwarnings (1.28.110); FILE MERGED 2006/12/12 17:03:11 nn 1.28.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:28 nn 1.28.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c16581cac241d5a0ed1fc55a83e641b53cd71416]

INTEGRATION: CWS calcwarnings (1.30.8); FILE MERGED 2007/02/19 16:05:01 nn 1.30.8.2: RESYNC: (1.30-1.31); FILE MERGED 2006/12/01 08:53:28 nn 1.30.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [40e2bd597a1ea77c57cd1e45b4cc75733bb5bf76]

INTEGRATION: CWS calcwarnings (1.10.98); FILE MERGED 2006/12/01 08:53:28 nn 1.10.98.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [945305dce07646b4e217d8759d69e4979eead7d3]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:11 nn 1.5.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:28 nn 1.5.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c9356cdc38f7453450801936ac16bbf337a31947]

INTEGRATION: CWS calcwarnings (1.25.2); FILE MERGED 2007/02/19 16:04:44 nn 1.25.2.3: RESYNC: (1.25-1.26); FILE MERGED 2006/12/13 19:18:27 nn 1.25.2.2: #i69284# warning-free: core, unxsols4 2006/12/01 08:53:28 nn 1.25.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [61511c9b4abdb273d18c64b8721bfe4a1dedadcf]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/01 08:53:27 nn 1.8.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [15175b0808eb3cba9a56ed0f4d9267cab0180ff1]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/12 17:03:11 nn 1.4.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a2810775d3570a62555fd17501751ecbf1d68484]

INTEGRATION: CWS calcwarnings (1.7.100); FILE MERGED 2006/12/01 08:53:27 nn 1.7.100.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [eee2f4e5622e71eeafb117bb615a6e4359bbadcf]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/01 08:53:27 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [539d434008e586a9a05fce3f584e84d6c286c04c]

INTEGRATION: CWS calcwarnings (1.38.8); FILE MERGED 2006/12/14 17:57:08 nn 1.38.8.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:11 nn 1.38.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:27 nn 1.38.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2fb21f42c5978e6f3a82c47c7e0d04520a01756c]

INTEGRATION: CWS calcwarnings (1.23.54); FILE MERGED 2007/02/19 16:04:29 nn 1.23.54.3: RESYNC: (1.23-1.24); FILE MERGED 2006/12/14 17:57:07 nn 1.23.54.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:27 nn 1.23.54.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3a4e3f33911e679098f5c45951451e2c7ace8448]

INTEGRATION: CWS calcwarnings (1.3.110); FILE MERGED 2006/12/01 08:53:27 nn 1.3.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ddca336afcb0e02b0c457a4b3bd1e2a0ecae9cc7]

INTEGRATION: CWS calcwarnings (1.16.110); FILE MERGED 2006/12/14 17:57:07 nn 1.16.110.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:27 nn 1.16.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [48410501225c942a02dc3454d3785a08c63ff486]

INTEGRATION: CWS calcwarnings (1.49.2); FILE MERGED 2007/02/19 16:04:22 nn 1.49.2.4: RESYNC: (1.49-1.50); FILE MERGED 2006/12/14 17:57:07 nn 1.49.2.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:11 nn 1.49.2.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:26 nn 1.49.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [04cfdbe74c15dc8e18677b889ea34cb7c93f64b6]

INTEGRATION: CWS calcwarnings (1.27.2); FILE MERGED 2007/02/01 10:44:01 nn 1.27.2.2: fix for #i73877# from CWS calcdocmerge 2006/12/01 08:53:26 nn 1.27.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [81a31be8bd2a35b107e5576de2c382db06e74ce2]

INTEGRATION: CWS calcwarnings (1.20.2); FILE MERGED 2007/02/19 16:04:12 nn 1.20.2.2: RESYNC: (1.20-1.21); FILE MERGED 2006/12/01 08:53:26 nn 1.20.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bb914b77b356b70c04d4eb70e27e9086ead56234]

INTEGRATION: CWS calcwarnings (1.88.2); FILE MERGED 2006/12/14 17:57:07 nn 1.88.2.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:10 nn 1.88.2.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:26 nn 1.88.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7a9425e6cecad1dfad1ce4f8a5ea8eec8b54db65]

INTEGRATION: CWS calcwarnings (1.63.46); FILE MERGED 2006/12/14 17:57:07 nn 1.63.46.4: #i69284# warning-free: ui, unxsols4 2006/12/13 19:18:26 nn 1.63.46.3: #i69284# warning-free: core, unxsols4 2006/12/12 17:03:10 nn 1.63.46.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:26 nn 1.63.46.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [22e879c74a5932bce0b24e28d83fcbd723f99f43]

INTEGRATION: CWS calcwarnings (1.20.110); FILE MERGED 2006/12/14 17:57:06 nn 1.20.110.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:26 nn 1.20.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [001e251f27816a423bf14ee2e646c947c65bee38]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2007/02/19 16:04:05 nn 1.15.110.3: RESYNC: (1.15-1.16); FILE MERGED 2006/12/14 17:57:06 nn 1.15.110.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:25 nn 1.15.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bdad1c663b83c1225b9b38ad109aa5ddb21b695d]

INTEGRATION: CWS calcwarnings (1.3.110); FILE MERGED 2006/12/01 15:51:26 nn 1.3.110.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 08:53:25 nn 1.3.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [661e56e58edfe1f7b560f099598ce094a333fc45]

INTEGRATION: CWS calcwarnings (1.23.2); FILE MERGED 2006/12/13 19:18:26 nn 1.23.2.3: #i69284# warning-free: core, unxsols4 2006/12/12 17:03:10 nn 1.23.2.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:25 nn 1.23.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dddc34cf5dc32fbd5ed54bbf99c26c4730c3ccd0]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/12 17:03:10 nn 1.15.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:25 nn 1.15.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fa652735cbb8a230d7c4a7ebb4e1c6ee26320224]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/12 17:03:10 nn 1.9.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:25 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0e321cbaedd7263fbd961c4cfcd6660adf97b068]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/12 17:03:10 nn 1.11.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:25 nn 1.11.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7e31963c2871b110bd57e3ab1246e23cedc120ad]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/12 17:03:09 nn 1.11.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:24 nn 1.11.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bcc0c2d29e613b29bdf61e61595736cb7b741732]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2007/02/19 16:03:44 nn 1.6.110.2: RESYNC: (1.6-1.7); FILE MERGED 2006/12/12 17:03:09 nn 1.6.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fde538926a835eb3712ba7f61d6b8e8a2cf0caa8]

INTEGRATION: CWS calcwarnings (1.10.46); FILE MERGED 2007/02/20 15:21:10 nn 1.10.46.3: #i69284# warnings on wntmsci10.pro after resync 2007/02/19 16:03:37 nn 1.10.46.2: RESYNC: (1.10-1.11); FILE MERGED 2006/12/01 15:51:26 nn 1.10.46.1: #i69284# warning-free: wntmsci10.pro changes


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a91376b5a0fbfcc70fa67e106ec35ece8b1f589b]

INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED 2006/12/12 17:03:09 nn 1.13.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fbdb51ef869cfe44998c373c6f671b5058555916]

INTEGRATION: CWS calcwarnings (1.23.110); FILE MERGED 2006/12/12 17:03:09 nn 1.23.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:24 nn 1.23.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2e3e40ae3b362df2431a2c6fb2fdbc3caad8f528]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2007/02/20 15:21:09 nn 1.10.110.2: #i69284# warnings on wntmsci10.pro after resync 2006/12/01 08:53:24 nn 1.10.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [25f32d40b69920ddf807f5dd5f716e15a5d2669a]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/12 17:03:09 nn 1.8.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:24 nn 1.8.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [45543f960580ac87d00d82633c582e936737048a]

INTEGRATION: CWS calcwarnings (1.8.324); FILE MERGED 2006/12/14 17:57:06 nn 1.8.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5c5fc5238dee6e44b4e6d52c7849f021452450da]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:09 nn 1.5.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8b354457f6b55e62d5ea5fd70419739aee79eb2a]

INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED 2006/12/12 17:03:09 nn 1.13.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:24 nn 1.13.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [74077e926705ed489bfe693cbdef8a1ab4d17c9d]

INTEGRATION: CWS calcwarnings (1.18.110); FILE MERGED 2006/12/01 08:53:24 nn 1.18.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [05ff42eb77ed0896be0ca26d0904b9a80159e46e]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2007/02/20 15:21:09 nn 1.6.110.2: #i69284# warnings on wntmsci10.pro after resync 2006/12/01 08:53:24 nn 1.6.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [020d501032364987854380f0907ab984be447f72]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/12 17:03:08 nn 1.7.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [286500a04db713754d8458fd88ea75973bc4a183]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/12 17:03:08 nn 1.5.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e7a7faa009b6ac9699e7647d5f244923d8258a79]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2006/12/12 17:03:08 nn 1.10.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:23 nn 1.10.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c82f51db4f18cd8e0b7a5a271741846c8747698f]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/12 17:03:08 nn 1.11.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:23 nn 1.11.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [65e073547d98ad6cb487ebc57c1ecd466b54391f]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/12 17:03:08 nn 1.12.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:23 nn 1.12.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [de0080d56af998970ece978da834a96153a688f6]

INTEGRATION: CWS calcwarnings (1.25.100); FILE MERGED 2006/12/12 17:03:08 nn 1.25.100.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:23 nn 1.25.100.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [34d5efc725f5556b134d38cd248095e40377ffe4]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2006/12/12 17:03:07 nn 1.10.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:23 nn 1.10.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4bf6d55efe9f4aac66478be71d4a1cd82c4719ee]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/01 08:53:23 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [36716988c13f87ca825901bf4de42f5e061a24c1]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/19 16:26:00 nn 1.6.110.1: #i69284# warning-free with precompiled headers


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [20bd48bf7effd26c4f9a0f57aeb48951a8dad12c]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/12 17:03:07 nn 1.6.110.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [db118f4f54a5d37e482215418fcba01e5001e473]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/14 17:57:05 nn 1.5.110.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5e2420352c39d4b5ce24f502ac8ebde7bb80998e]

INTEGRATION: CWS calcwarnings (1.9.2); FILE MERGED 2006/12/14 17:57:05 nn 1.9.2.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a0a1a6fe8f848371f0fff88b74419b1fa00062a6]

INTEGRATION: CWS calcwarnings (1.10.2); FILE MERGED 2006/12/14 17:57:05 nn 1.10.2.2: #i69284# warning-free: ui, unxsols4 2006/12/01 08:53:22 nn 1.10.2.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a1ce3e7ac13a5b172f7944d5d182dd64c36aeddc]

INTEGRATION: CWS calcwarnings (1.6.58); FILE MERGED 2006/12/14 17:57:05 nn 1.6.58.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [546de1e7465726857c8b254abf0d0ddafd01e99c]

INTEGRATION: CWS calcwarnings (1.8.46); FILE MERGED 2006/12/12 17:03:07 nn 1.8.46.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:22 nn 1.8.46.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [93650a278bf341796e094ce86e3a9b6e185c065d]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2006/12/12 17:03:07 nn 1.10.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:22 nn 1.10.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [cd2c3a00416479ff4f730de78650955ace92b83c]

INTEGRATION: CWS calcwarnings (1.7.96); FILE MERGED 2006/12/12 17:03:07 nn 1.7.96.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:22 nn 1.7.96.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8449c7dd8219b7aea9ed4743ed4eecb6bd893938]

INTEGRATION: CWS calcwarnings (1.28.110); FILE MERGED 2006/12/12 17:03:06 nn 1.28.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:22 nn 1.28.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [790d56b806e5a96f6c23042d81e6052ab98fedb7]

INTEGRATION: CWS calcwarnings (1.12.100); FILE MERGED 2006/12/01 08:53:21 nn 1.12.100.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [20e81d97e2302783f7e5e0d5cb020106b09953f0]

INTEGRATION: CWS calcwarnings (1.51.88); FILE MERGED 2006/12/14 17:57:04 nn 1.51.88.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:06 nn 1.51.88.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:21 nn 1.51.88.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b79ad6d58fd3cfe429df4ba678cd0fc2f77b21e7]

INTEGRATION: CWS calcwarnings (1.36.8); FILE MERGED 2006/12/01 08:53:21 nn 1.36.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [938cf2abdcee95a39187a5ffb94cf44bc0ccc2c6]

INTEGRATION: CWS calcwarnings (1.49.86); FILE MERGED 2007/02/19 16:03:20 nn 1.49.86.5: RESYNC: (1.49-1.50); FILE MERGED 2006/12/14 17:57:04 nn 1.49.86.4: #i69284# warning-free: ui, unxsols4 2006/12/13 19:18:26 nn 1.49.86.3: #i69284# warning-free: core, unxsols4 2006/12/12 17:03:06 nn 1.49.86.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:21 nn 1.49.86.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3f630f6b7ba6a63a2f140d83041e6b5b5276670f]

INTEGRATION: CWS calcwarnings (1.67.46); FILE MERGED 2006/12/14 17:57:04 nn 1.67.46.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:06 nn 1.67.46.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:21 nn 1.67.46.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dce85a48de7dcee5e6bbf32ce76008f0bd2dd0e8]

INTEGRATION: CWS calcwarnings (1.34.8); FILE MERGED 2006/12/18 09:35:23 nn 1.34.8.3: RESYNC: (1.34-1.35); FILE MERGED 2006/12/12 17:03:06 nn 1.34.8.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:21 nn 1.34.8.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8d22c450f438a6ec936f0c1f84f5892ed6b680fd]

INTEGRATION: CWS calcwarnings (1.17.50); FILE MERGED 2006/12/12 17:03:05 nn 1.17.50.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b734534d1af200a9bec9fd50a09cb66dbcc8f585]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/01 08:53:20 nn 1.5.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [13c1156f3144678e8097029e6e548fdbaf565462]

INTEGRATION: CWS calcwarnings (1.36.54); FILE MERGED 2007/02/19 16:02:53 nn 1.36.54.4: RESYNC: (1.36-1.37); FILE MERGED 2006/12/14 17:57:03 nn 1.36.54.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:05 nn 1.36.54.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:20 nn 1.36.54.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7f462f53063b4a1fd4d1de9df3d20921ee825f34]

INTEGRATION: CWS calcwarnings (1.30.110); FILE MERGED 2007/02/19 16:03:13 nn 1.30.110.2: RESYNC: (1.30-1.31); FILE MERGED 2006/12/01 08:53:20 nn 1.30.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [318350aa7d79dfe818890eb4b524e9a6dba9d0bb]

INTEGRATION: CWS calcwarnings (1.46.54); FILE MERGED 2007/02/19 16:03:07 nn 1.46.54.3: RESYNC: (1.46-1.47); FILE MERGED 2006/12/01 15:51:26 nn 1.46.54.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 08:53:20 nn 1.46.54.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4aea01c8e0cde40b78244f4f2cc35adc735a291b]

INTEGRATION: CWS calcwarnings (1.25.110); FILE MERGED 2007/02/19 16:03:00 nn 1.25.110.3: RESYNC: (1.25-1.26); FILE MERGED 2006/12/12 17:03:05 nn 1.25.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:20 nn 1.25.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0ca7860c0def064b063f600d24fd064bfc5ebd6d]

INTEGRATION: CWS calcwarnings (1.23.110); FILE MERGED 2006/12/12 17:03:05 nn 1.23.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:20 nn 1.23.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [db2f9a2948a0680a5bcb8bf627472b1d2745395e]

INTEGRATION: CWS calcwarnings (1.18.110); FILE MERGED 2006/12/01 08:53:20 nn 1.18.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bbdf80a42e368e42fda105c376e3f6ca75603726]

INTEGRATION: CWS calcwarnings (1.19.110); FILE MERGED 2007/02/19 16:02:17 nn 1.19.110.2: RESYNC: (1.19-1.20); FILE MERGED 2006/12/01 08:53:19 nn 1.19.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f62b212c6740f78cb5ca52968d496f75cfb10cc8]

INTEGRATION: CWS calcwarnings (1.33.110); FILE MERGED 2007/02/19 16:02:10 nn 1.33.110.3: RESYNC: (1.33-1.34); FILE MERGED 2006/12/12 17:03:04 nn 1.33.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:19 nn 1.33.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [214c3b2c8ee0f1934ba1ea9b54471d18c93a399d]

INTEGRATION: CWS calcwarnings (1.68.110); FILE MERGED 2007/02/19 16:01:50 nn 1.68.110.4: RESYNC: (1.68-1.69); FILE MERGED 2006/12/12 17:03:04 nn 1.68.110.3: #i69284# warning-free: ui, unxlngi6 2006/12/01 15:51:25 nn 1.68.110.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 08:53:19 nn 1.68.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [95512b8f56f7b65dec05324b0021464276643052]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2007/02/19 16:02:03 nn 1.11.110.4: RESYNC: (1.11-1.12); FILE MERGED 2006/12/14 17:57:03 nn 1.11.110.3: #i69284# warning-free: ui, unxsols4 2006/12/12 17:03:04 nn 1.11.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:19 nn 1.11.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [44a45ae04bcb309440c55bf9f8a33a689bc802b7]

INTEGRATION: CWS calcwarnings (1.19.110); FILE MERGED 2006/12/01 08:53:19 nn 1.19.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9d1a6c2ca96f49fac6637871fb9ad269b32447cf]

INTEGRATION: CWS calcwarnings (1.30.110); FILE MERGED 2007/02/19 16:01:57 nn 1.30.110.3: RESYNC: (1.30-1.31); FILE MERGED 2006/12/12 17:03:04 nn 1.30.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:19 nn 1.30.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [efdfd37ca04b642f08bfcc6b7672e3af0711dfe4]

INTEGRATION: CWS calcwarnings (1.18.46); FILE MERGED 2007/02/19 16:01:44 nn 1.18.46.2: RESYNC: (1.18-1.19); FILE MERGED 2006/12/12 17:03:03 nn 1.18.46.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [aa1b8a53dc5d9c944d121a67052eb233601992c2]

INTEGRATION: CWS calcwarnings (1.29.110); FILE MERGED 2007/02/19 16:01:37 nn 1.29.110.3: RESYNC: (1.29-1.30); FILE MERGED 2006/12/12 17:03:03 nn 1.29.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:19 nn 1.29.110.1: #i69284# warning-free: ui, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [53dbfe5956f58cbbefc76333a5221b95c129fe89]

INTEGRATION: CWS calcwarnings (1.64.88); FILE MERGED 2006/12/13 10:30:20 nn 1.64.88.3: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 15:51:25 nn 1.64.88.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 13:29:20 nn 1.64.88.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d2add6251eef18499c1c17b46205991b3649c6e5]

INTEGRATION: CWS calcwarnings (1.28.324); FILE MERGED 2006/12/13 10:30:20 nn 1.28.324.1: #i69284# warning-free: filter/xml, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [35c898c1a8773e49651a5a9734a1c6a361730b73]

INTEGRATION: CWS calcwarnings (1.46.110); FILE MERGED 2006/12/13 10:30:20 nn 1.46.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:20 nn 1.46.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e0efe08f3b58e1ea7e562d1a55d9f23a390a9e38]

INTEGRATION: CWS calcwarnings (1.24.322); FILE MERGED 2006/12/14 14:19:48 dr 1.24.322.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d8f421f96b1c1215e1d36f7aea079cb8a245b2e8]

INTEGRATION: CWS calcwarnings (1.58.110); FILE MERGED 2006/12/13 10:30:19 nn 1.58.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:20 nn 1.58.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9c6636242c3137010568603bbf764300d76f42d5]

INTEGRATION: CWS calcwarnings (1.29.50); FILE MERGED 2006/12/01 13:29:20 nn 1.29.50.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d19820f20e63d5da793e7e181728ec9b625eac98]

INTEGRATION: CWS calcwarnings (1.62.48); FILE MERGED 2006/12/13 10:30:19 nn 1.62.48.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:20 nn 1.62.48.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [19f6c3c41312095e09dd30fa75d6fd18b0894422]

INTEGRATION: CWS calcwarnings (1.15.108); FILE MERGED 2006/12/13 10:30:19 nn 1.15.108.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:20 nn 1.15.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8a0d167cb81ea8f6790b344bef1f3d59244a19b6]

INTEGRATION: CWS calcwarnings (1.12.108); FILE MERGED 2006/12/01 13:29:19 nn 1.12.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [78f649aee86548ff9fdc9e2e83495dd3feed9bd4]

INTEGRATION: CWS calcwarnings (1.27.110); FILE MERGED 2006/12/01 13:29:19 nn 1.27.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [148fed1e79cd1464b3db221e307159c3eab16285]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/01 13:29:19 nn 1.15.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [20c04e5439d2442c5639f48da3c2918d08adad22]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/01 13:29:19 nn 1.11.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [52db7c584e1e3ace2868519d02e4c15df012f0d7]

INTEGRATION: CWS calcwarnings (1.124.108); FILE MERGED 2006/12/14 14:19:48 dr 1.124.108.3: #i69284# remove compiler warnings for unxsols4 2006/12/13 10:30:19 nn 1.124.108.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:19 nn 1.124.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d7ad0e31aac6dc39e255be87bbfef398119ebbc1]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/13 10:30:19 nn 1.9.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:19 nn 1.9.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0035a6633302eeaced37e5197113e9bbbc4cf53c]

INTEGRATION: CWS calcwarnings (1.14.108); FILE MERGED 2006/12/13 10:30:19 nn 1.14.108.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:19 nn 1.14.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3026374aebdd0b2e314a9004fa42e64cc0340b84]

INTEGRATION: CWS calcwarnings (1.201.108); FILE MERGED 2006/12/14 14:19:47 dr 1.201.108.4: #i69284# remove compiler warnings for unxsols4 2006/12/13 10:30:18 nn 1.201.108.3: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 15:51:25 nn 1.201.108.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 13:29:18 nn 1.201.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c3566c3d970d8dc5a05809918644b1f2b627bde4]

INTEGRATION: CWS calcwarnings (1.28.108); FILE MERGED 2006/12/13 10:30:18 nn 1.28.108.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:18 nn 1.28.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a8abd9f3a4e80c87c2eea57b04904a6aa1b54f5e]

INTEGRATION: CWS calcwarnings (1.17.296); FILE MERGED 2006/12/13 10:30:18 nn 1.17.296.1: #i69284# warning-free: filter/xml, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [095bcf4d3972317a5237b820088c2f034d3f1fe3]

INTEGRATION: CWS calcwarnings (1.23.108); FILE MERGED 2007/02/19 16:01:31 nn 1.23.108.3: RESYNC: (1.23-1.24); FILE MERGED 2006/12/13 10:30:18 nn 1.23.108.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:18 nn 1.23.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7aaa67fc3a1223233eeacb1e023ed35bdb93732d]

INTEGRATION: CWS calcwarnings (1.24.110); FILE MERGED 2006/12/13 10:30:18 nn 1.24.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:18 nn 1.24.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [20da876987519015094ac3f78e5a4c3c00c81a26]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/13 10:30:17 nn 1.8.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:18 nn 1.8.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [40c478d8152e0abbc6b12a2b3450a59507deb1cf]

INTEGRATION: CWS calcwarnings (1.21.54); FILE MERGED 2006/12/01 13:29:18 nn 1.21.54.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [55d3cb78b07dd9a7fa7f21177e9798f9d99e5e0a]

INTEGRATION: CWS calcwarnings (1.23.314); FILE MERGED 2006/12/13 10:30:17 nn 1.23.314.1: #i69284# warning-free: filter/xml, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a5ed41255c0b245f654df2239a0e54e90e3ab633]

INTEGRATION: CWS calcwarnings (1.92.110); FILE MERGED 2006/12/13 10:30:17 nn 1.92.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:17 nn 1.92.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0b4971f5d5d67d4f92610f62f6eadfe45bf3ef6e]

INTEGRATION: CWS calcwarnings (1.28.110); FILE MERGED 2006/12/13 10:30:17 nn 1.28.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:17 nn 1.28.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5384a04e6c038efed8406a60eb4c32c6599c2332]

INTEGRATION: CWS calcwarnings (1.14.110); FILE MERGED 2006/12/13 10:30:17 nn 1.14.110.1: #i69284# warning-free: filter/xml, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b8f27875a820781b803906f42ba7f08dcb39ec2c]

INTEGRATION: CWS calcwarnings (1.26.110); FILE MERGED 2006/12/13 10:30:17 nn 1.26.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:17 nn 1.26.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2e118773b2ed43cf708536b4cc3867b6bb2f556c]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2006/12/13 10:30:16 nn 1.10.110.1: #i69284# warning-free: filter/xml, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6a72db5c90c418a375ce46b89a389f7bad041366]

INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED 2006/12/01 13:29:17 nn 1.13.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d79eeb6d81016cffb8ddd70caeda2256dc8526be]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/01 13:29:17 nn 1.6.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [488631fe26e2d6f7beefbe23c26bea33e9f9d7e8]

INTEGRATION: CWS calcwarnings (1.26.108); FILE MERGED 2006/12/13 10:30:16 nn 1.26.108.1: #i69284# warning-free: filter/xml, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1b08680de1d6f76d71b7b993dffcffe89491b416]

INTEGRATION: CWS calcwarnings (1.25.108); FILE MERGED 2006/12/13 10:30:16 nn 1.25.108.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:17 nn 1.25.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [68fa015b052f4fb0aebefad5b2bbb158d0fa10af]

INTEGRATION: CWS calcwarnings (1.14.110); FILE MERGED 2006/12/13 10:30:16 nn 1.14.110.1: #i69284# warning-free: filter/xml, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [007df30b1c814a4061ac0f5ac710419db6e29434]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/13 10:30:16 nn 1.11.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:17 nn 1.11.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7f7102fc1ded580e2f8c3cf9540b4bf0bbaf0730]

INTEGRATION: CWS calcwarnings (1.19.110); FILE MERGED 2006/12/13 10:30:16 nn 1.19.110.3: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 15:51:25 nn 1.19.110.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 13:29:16 nn 1.19.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [eb094ed11a15032b295eaab2bc7a0d676a5ca0af]

INTEGRATION: CWS calcwarnings (1.26.324); FILE MERGED 2006/12/13 10:30:16 nn 1.26.324.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:16 nn 1.26.324.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [21a2d696e1fefb8836a696b4afff1c99fbb82eec]

INTEGRATION: CWS calcwarnings (1.46.108); FILE MERGED 2006/12/13 10:30:15 nn 1.46.108.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:16 nn 1.46.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5888aacdef4049bd00f15862076e3c88d954cec2]

INTEGRATION: CWS calcwarnings (1.30.314); FILE MERGED 2006/12/01 13:29:16 nn 1.30.314.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c0f942ade11a1ca7bc3c49c4186a7eed8f61d77c]

INTEGRATION: CWS calcwarnings (1.43.110); FILE MERGED 2006/12/13 10:30:15 nn 1.43.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:16 nn 1.43.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8dfe910a9ff8dc4b5b88e794a0f7da392ad2af4a]

INTEGRATION: CWS calcwarnings (1.20.108); FILE MERGED 2006/12/14 14:19:47 dr 1.20.108.2: #i69284# remove compiler warnings for unxsols4 2006/12/01 13:29:16 nn 1.20.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2baef64f70aa1c76884751dd738bad2887ac3d90]

INTEGRATION: CWS calcwarnings (1.23.108); FILE MERGED 2007/02/19 16:01:24 nn 1.23.108.4: RESYNC: (1.23-1.24); FILE MERGED 2006/12/14 14:19:47 dr 1.23.108.3: #i69284# remove compiler warnings for unxsols4 2006/12/13 10:30:15 nn 1.23.108.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:16 nn 1.23.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bbb6986961901f16ff501be1259fa7d4b2ecb73e]

INTEGRATION: CWS calcwarnings (1.3.110); FILE MERGED 2006/12/01 13:29:15 nn 1.3.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a8cda14014bc786de94540ffbd58b6afcf44dfe3]

INTEGRATION: CWS calcwarnings (1.13.108); FILE MERGED 2006/12/01 13:29:15 nn 1.13.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [239bd78c1cdb77fcf0564632c9f43babce5af01c]

INTEGRATION: CWS calcwarnings (1.16.110); FILE MERGED 2006/12/13 10:30:15 nn 1.16.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:15 nn 1.16.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a56200e1a8cf5063a5996d288069fb0f277bcf7f]

INTEGRATION: CWS calcwarnings (1.25.46); FILE MERGED 2006/12/01 13:29:15 nn 1.25.46.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f4544ccde4c9c7b3cb086ca43cc3df9095e0ea84]

INTEGRATION: CWS calcwarnings (1.8.108); FILE MERGED 2006/12/01 13:29:15 nn 1.8.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [04d8042b0e42d02487ff08c77685ec9163fd5c66]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/13 10:30:15 nn 1.12.110.1: #i69284# warning-free: filter/xml, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [de2824b3507cfee102f802bb88e5d26a38914099]

INTEGRATION: CWS calcwarnings (1.24.46); FILE MERGED 2006/12/13 10:30:15 nn 1.24.46.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:15 nn 1.24.46.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e36941e80df78097912178bf0c84ddcaf972783e]

INTEGRATION: CWS calcwarnings (1.27.108); FILE MERGED 2006/12/13 10:30:14 nn 1.27.108.3: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 15:51:24 nn 1.27.108.2: #i69284# warning-free: wntmsci10.pro changes 2006/12/01 13:29:15 nn 1.27.108.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [97690eed1e780934239a5023d1d5d307523618b1]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/01 13:29:15 nn 1.8.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [97315fc1794be1c5c0c71800e54d2744f53f12e6]

INTEGRATION: CWS calcwarnings (1.14.110); FILE MERGED 2006/12/01 13:29:14 nn 1.14.110.1: #i69284# warning-free: filter/xml, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2eca2ce1d9ce24d131203699bcc2d6d7512402d2]

INTEGRATION: CWS calcwarnings (1.83.48); FILE MERGED 2007/02/19 16:01:17 nn 1.83.48.4: RESYNC: (1.83-1.84); FILE MERGED 2006/12/13 10:19:40 dr 1.83.48.3: #i69284# remove compiler warnings for wntmsci10.pro 2006/12/12 16:42:52 dr 1.83.48.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:38 dr 1.83.48.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [52bc87a3cee1ac97ec6471fce381327ea5ff31eb]

INTEGRATION: CWS calcwarnings (1.22.108); FILE MERGED 2007/02/19 16:01:11 nn 1.22.108.2: RESYNC: (1.22-1.23); FILE MERGED 2006/12/01 14:42:38 dr 1.22.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d8b267f879ff2e6d9ba6ca805a49f2145d135cdb]

INTEGRATION: CWS calcwarnings (1.14.324); FILE MERGED 2006/12/14 14:01:23 dr 1.14.324.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b346b73adbfeb5b1f8d6615e536da9445696ee5a]

INTEGRATION: CWS calcwarnings (1.24.110); FILE MERGED 2006/12/12 16:42:52 dr 1.24.110.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:38 dr 1.24.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9408da63201c832164bd6a43e0583229e97e82f6]

INTEGRATION: CWS calcwarnings (1.16.54); FILE MERGED 2007/02/19 16:00:56 nn 1.16.54.3: RESYNC: (1.16-1.17); FILE MERGED 2006/12/12 16:42:52 dr 1.16.54.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 15:01:38 dr 1.16.54.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1de1c46101b2b2fe0ce8789d1af8d249fa059a4e]

INTEGRATION: CWS calcwarnings (1.2.324); FILE MERGED 2006/12/14 14:01:23 dr 1.2.324.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6b8b72cca59dfb48fe3087e52aa505f241e6f883]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/01 16:13:03 dr 1.7.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [efed2a1fc0ec00a8cfbe0d64a67e3af53fda974d]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/12 16:42:51 dr 1.4.110.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a4da56aeab50d120117a9bc429bfc2f01f65ed36]

INTEGRATION: CWS calcwarnings (1.6.108); FILE MERGED 2006/12/01 16:13:02 dr 1.6.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [66687f9feec48c5ae88035820d991e1440cb6298]

INTEGRATION: CWS calcwarnings (1.2.324); FILE MERGED 2006/12/14 14:01:22 dr 1.2.324.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [53a27a11150c63ad3ced447c365929d8b6e96d7a]

INTEGRATION: CWS calcwarnings (1.16.110); FILE MERGED 2006/12/12 16:42:51 dr 1.16.110.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 16:13:02 dr 1.16.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [014647aede76631f2707493ee1c29ac6b1c39199]

INTEGRATION: CWS calcwarnings (1.3.110); FILE MERGED 2006/12/01 16:06:09 dr 1.3.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3fc13a15e27c2a30c8cab657600e708bdb21bb5a]

INTEGRATION: CWS calcwarnings (1.4.46); FILE MERGED 2006/12/14 14:01:22 dr 1.4.46.2: #i69284# remove compiler warnings for unxsols4 2006/12/01 16:06:09 dr 1.4.46.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a100c285a70fa9d21e0c5ff09620b6eef9eba7d4]

INTEGRATION: CWS calcwarnings (1.2.248); FILE MERGED 2006/12/14 14:01:22 dr 1.2.248.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [94440da8a04e34dce99af9337c4cea077c6fa222]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/14 14:01:21 dr 1.11.110.2: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:51 dr 1.11.110.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d7e5055fa0b89e070fdd1771a1468c32effe4489]

INTEGRATION: CWS calcwarnings (1.13.108); FILE MERGED 2006/12/01 15:51:58 dr 1.13.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6d271556324e9dc5f40ec14bdca8032b0343d832]

INTEGRATION: CWS calcwarnings (1.2.324); FILE MERGED 2006/12/14 14:01:21 dr 1.2.324.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7647906248d8ae8a37dba8a3375898ddbf31f45f]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/12 16:42:51 dr 1.8.110.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [81257decd632dec2ef3458d91d45b3c83a8f7353]

INTEGRATION: CWS calcwarnings (1.11.108); FILE MERGED 2006/12/12 16:42:51 dr 1.11.108.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 15:51:58 dr 1.11.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0836b6e1268613980c84c172c3a032527f54414c]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/12/12 16:42:50 dr 1.11.110.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 15:51:58 dr 1.11.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7f1dea362c34756fd8b0fad0d05cd3a94d0f74d5]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/01 15:51:58 dr 1.4.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [cd38c86d2bf3a49ebd09c74e4f8f215ea1a68e8c]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/14 14:01:21 dr 1.7.110.2: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:50 dr 1.7.110.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [26cee9164cb8e8e83b3e8770623a54f6f73c4c62]

INTEGRATION: CWS calcwarnings (1.3.110); FILE MERGED 2006/12/14 14:01:21 dr 1.3.110.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [936b1081d93f219854e417c195a45fe81a2545fb]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/01 15:51:57 dr 1.5.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [34b9542c04c5cff4042a140ec6b7eee24fdfbc1e]

INTEGRATION: CWS calcwarnings (1.9.116); FILE MERGED 2006/12/01 14:42:07 dr 1.9.116.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6e50abb9212ad053886b2442136b69e5c4cb1181]

INTEGRATION: CWS calcwarnings (1.7.2); FILE MERGED 2007/02/19 16:00:10 nn 1.7.2.4: RESYNC: (1.7-1.9); FILE MERGED 2006/12/15 12:47:04 nn 1.7.2.3: #i69284# warning-free: access control for using 2006/12/14 14:01:20 dr 1.7.2.2: #i69284# remove compiler warnings for unxsols4 2006/12/04 09:33:16 nn 1.7.2.1: #i69284# warning-free: wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b4ef1c287086427ad561d3353c7ca327ce40f59f]

INTEGRATION: CWS calcwarnings (1.11.118); FILE MERGED 2006/12/12 16:42:50 dr 1.11.118.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9e953b9f2f4d0681cc97f0e2704fce7ca825915a]

INTEGRATION: CWS calcwarnings (1.5.116); FILE MERGED 2007/02/19 15:59:34 nn 1.5.116.3: RESYNC: (1.5-1.6); FILE MERGED 2006/12/14 14:01:20 dr 1.5.116.2: #i69284# remove compiler warnings for unxsols4 2006/12/01 14:42:07 dr 1.5.116.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e8b8ad4e11ef9ed6a73110377e666e77673d03d5]

INTEGRATION: CWS calcwarnings (1.3.324); FILE MERGED 2006/12/01 14:42:07 dr 1.3.324.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e5358f514dead0bff93586dd43eb28b457e1907d]

INTEGRATION: CWS calcwarnings (1.16.168); FILE MERGED 2006/12/14 14:01:20 dr 1.16.168.3: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:50 dr 1.16.168.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:06 dr 1.16.168.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e248ba0d26e6ba4911fe8fe5cc7d58210f66dc87]

INTEGRATION: CWS calcwarnings (1.11.116); FILE MERGED 2006/12/12 16:42:49 dr 1.11.116.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:06 dr 1.11.116.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1b303a51d967b92c9e17ea22a5322e5cf2c8c540]

INTEGRATION: CWS calcwarnings (1.8.296); FILE MERGED 2007/02/19 15:58:41 nn 1.8.296.2: RESYNC: (1.8-1.9); FILE MERGED 2006/12/12 16:42:49 dr 1.8.296.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5104c27b073f8c464d5acfdd307a744469d9e0ed]

INTEGRATION: CWS calcwarnings (1.7.194); FILE MERGED 2006/12/14 14:01:20 dr 1.7.194.3: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:49 dr 1.7.194.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 15:32:41 dr 1.7.194.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b1f3565ff6e7248cefa11d44683034f95af90811]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/14 14:01:19 dr 1.4.324.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7be233d8e3ab596bd0b829ca82e3ac6d22ce547f]

INTEGRATION: CWS calcwarnings (1.2.248); FILE MERGED 2006/12/01 16:06:17 dr 1.2.248.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0af44bb0f621c9ca3c9f26b4d00fc6383d6502ca]

INTEGRATION: CWS calcwarnings (1.12.46); FILE MERGED 2006/12/01 14:42:06 dr 1.12.46.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4746429cc8f0d052471ce597c3d55f05a3ae1b9e]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/14 14:01:19 dr 1.4.324.2: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:49 dr 1.4.324.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [41eb689c875d86c70231fc3f30832155ee8062a8]

INTEGRATION: CWS calcwarnings (1.39.52); FILE MERGED 2006/12/12 16:42:49 dr 1.39.52.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:06 dr 1.39.52.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ad402857d0569bf54e431b91569b772c0960c9cf]

INTEGRATION: CWS calcwarnings (1.14.194); FILE MERGED 2006/12/14 14:01:19 dr 1.14.194.2: #i69284# remove compiler warnings for unxsols4 2006/12/01 15:40:09 dr 1.14.194.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b00d68d6fc98261a505f32664a06c9b6dae3aa72]

INTEGRATION: CWS calcwarnings (1.9.60); FILE MERGED 2006/12/14 14:01:19 dr 1.9.60.2: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:49 dr 1.9.60.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7fe50eb574a50d2abc85e91ec908bb96a20586d6]

INTEGRATION: CWS calcwarnings (1.19.168); FILE MERGED 2007/02/19 15:58:34 nn 1.19.168.2: RESYNC: (1.19-1.20); FILE MERGED 2006/12/01 11:17:37 dr 1.19.168.1: #i69284# warnings in sc module


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5175cabba94122f1fe47a4827d98ac1f4f01c6ac]

INTEGRATION: CWS calcwarnings (1.8.116); FILE MERGED 2006/12/15 12:47:04 nn 1.8.116.4: #i69284# warning-free: access control for using 2006/12/14 14:01:19 dr 1.8.116.3: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:48 dr 1.8.116.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:05 dr 1.8.116.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [83cfa94ba36d03d3ef625914825f9ab9531961af]

INTEGRATION: CWS calcwarnings (1.3.44); FILE MERGED 2007/02/19 15:58:28 nn 1.3.44.3: RESYNC: (1.3-1.4); FILE MERGED 2006/12/15 12:47:03 nn 1.3.44.2: #i69284# warning-free: access control for using 2006/12/14 14:01:19 dr 1.3.44.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e9da25a45f7f4751efc37eb8dc2e0df27d639456]

INTEGRATION: CWS calcwarnings (1.5.44); FILE MERGED 2007/02/20 10:56:41 dr 1.5.44.4: #i10000# unxsols warning 2007/02/19 15:58:11 nn 1.5.44.3: RESYNC: (1.5-1.6); FILE MERGED 2006/12/15 12:47:03 nn 1.5.44.2: #i69284# warning-free: access control for using 2006/12/14 14:01:19 dr 1.5.44.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1ed8658fc4962f9284e48f61a2540225cf5b55b9]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2006/12/01 14:42:05 dr 1.6.324.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ba317227e5409afaba69b616ebb040030bc6a999]

INTEGRATION: CWS calcwarnings (1.48.118); FILE MERGED 2006/12/14 14:01:18 dr 1.48.118.2: #i69284# remove compiler warnings for unxsols4 2006/12/01 14:42:05 dr 1.48.118.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [22451038d3213cb72fccdb2df7d0c1b8d098f4a4]

INTEGRATION: CWS calcwarnings (1.67.52); FILE MERGED 2006/12/14 14:01:18 dr 1.67.52.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ad237ebbf1015a4aa1143797ec37425744773821]

INTEGRATION: CWS calcwarnings (1.16.116); FILE MERGED 2007/02/19 15:57:55 nn 1.16.116.2: RESYNC: (1.16-1.17); FILE MERGED 2006/12/14 14:01:18 dr 1.16.116.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fae5cc8d925feb407f4ca2cd982de8130a085b83]

INTEGRATION: CWS calcwarnings (1.6.314); FILE MERGED 2006/12/14 14:01:18 dr 1.6.314.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2ca0d808dd94125b94a136f1c490ed05b1508c7e]

INTEGRATION: CWS calcwarnings (1.18.116); FILE MERGED 2006/12/14 14:01:18 dr 1.18.116.2: #i69284# remove compiler warnings for unxsols4 2006/12/01 14:42:05 dr 1.18.116.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2df48710e51ac624d0129c48340625b3b12c6f27]

INTEGRATION: CWS calcwarnings (1.3.324); FILE MERGED 2006/12/14 14:01:17 dr 1.3.324.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [307053e45f8d26c9fb1c2e26a33e27dc38acc916]

INTEGRATION: CWS calcwarnings (1.29.88); FILE MERGED 2006/12/01 15:39:59 dr 1.29.88.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b31790e04196fbf88ba1e8862223637f8a6a769f]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/12 16:42:48 dr 1.15.110.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 15:39:59 dr 1.15.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ae1b5a3a809c859955d9ae42484cb3a2aecf7ddc]

INTEGRATION: CWS calcwarnings (1.14.50); FILE MERGED 2006/12/01 15:39:59 dr 1.14.50.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9769d0b172b72e97cea8428f63ac4acce49f86b9]

INTEGRATION: CWS calcwarnings (1.32.60); FILE MERGED 2006/12/14 14:01:17 dr 1.32.60.3: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:48 dr 1.32.60.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 15:39:59 dr 1.32.60.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d24e49d5ee3529c4111b2dd60bf798b2b56bf4df]

INTEGRATION: CWS calcwarnings (1.5.116); FILE MERGED 2007/02/19 15:57:49 nn 1.5.116.2: RESYNC: (1.5-1.6); FILE MERGED 2006/12/14 14:01:17 dr 1.5.116.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5c905e0e756afdf5daf67bb805c3147a49ec4965]

INTEGRATION: CWS calcwarnings (1.4.44); FILE MERGED 2007/02/19 15:57:33 nn 1.4.44.2: RESYNC: (1.4-1.6); FILE MERGED 2006/12/04 09:22:13 dr 1.4.44.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1b0fd595b06eb298b12db3db77168d734ea7e273]

INTEGRATION: CWS calcwarnings (1.7.44); FILE MERGED 2007/02/19 15:57:10 nn 1.7.44.4: RESYNC: (1.7-1.8); FILE MERGED 2006/12/14 14:01:17 dr 1.7.44.3: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:47 dr 1.7.44.2: #i69284# remove compiler warnings for unxlngi6 2006/12/04 09:22:12 dr 1.7.44.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [cd2a1067160332e6f435568989f300ef057ae113]

INTEGRATION: CWS calcwarnings (1.23.52); FILE MERGED 2007/02/19 15:57:04 nn 1.23.52.2: RESYNC: (1.23-1.24); FILE MERGED 2006/12/12 16:42:47 dr 1.23.52.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [bab471c4e8f90807efce753013a2e2effc2da8e2]

INTEGRATION: CWS calcwarnings (1.28.2); FILE MERGED 2007/02/19 15:56:57 nn 1.28.2.3: RESYNC: (1.28-1.29); FILE MERGED 2006/12/13 10:19:39 dr 1.28.2.2: #i69284# remove compiler warnings for wntmsci10.pro 2006/12/12 16:42:47 dr 1.28.2.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [cb46081fae3c76f73295bde4863d78820ed71740]

INTEGRATION: CWS calcwarnings (1.10.2); FILE MERGED 2006/12/12 16:42:46 dr 1.10.2.2: #i69284# remove compiler warnings for unxlngi6 2006/12/04 09:17:43 dr 1.10.2.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9db2c93d34fb4fd129000d67ce1ec636f242fe36]

INTEGRATION: CWS calcwarnings (1.19.108); FILE MERGED 2007/02/19 15:56:51 nn 1.19.108.2: RESYNC: (1.19-1.20); FILE MERGED 2006/12/01 14:42:29 dr 1.19.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [015520ea0ef712045a7a02f243bd8273c20987f1]

INTEGRATION: CWS calcwarnings (1.16.46); FILE MERGED 2007/02/19 15:56:43 nn 1.16.46.3: RESYNC: (1.16-1.18); FILE MERGED 2006/12/12 16:42:46 dr 1.16.46.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:29 dr 1.16.46.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [60bc624c62f1dfb7b0fab9360813cd2d7eee079d]

INTEGRATION: CWS calcwarnings (1.10.2); FILE MERGED 2007/02/19 15:56:19 nn 1.10.2.3: RESYNC: (1.10-1.12); FILE MERGED 2006/12/14 14:01:16 dr 1.10.2.2: #i69284# remove compiler warnings for unxsols4 2006/12/04 09:17:43 dr 1.10.2.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ac1fab99e7cbc6b94a6132b6e811885856339ad2]

INTEGRATION: CWS calcwarnings (1.6.108); FILE MERGED 2006/12/01 14:42:28 dr 1.6.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1cf0fa51cfc3fb4305ba2e90e63bb1438bc3496e]

INTEGRATION: CWS calcwarnings (1.30.52); FILE MERGED 2007/02/19 15:56:12 nn 1.30.52.3: RESYNC: (1.30-1.31); FILE MERGED 2006/12/12 16:42:46 dr 1.30.52.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:28 dr 1.30.52.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [cf91f52f94967f04658b431c7dbae6cbfab5d317]

INTEGRATION: CWS calcwarnings (1.19.108); FILE MERGED 2007/02/19 15:56:06 nn 1.19.108.2: RESYNC: (1.19-1.20); FILE MERGED 2006/12/04 09:17:43 dr 1.19.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3bf4a809172110dd264e985429d921bcfe2f8391]

INTEGRATION: CWS calcwarnings (1.20.108); FILE MERGED 2007/02/19 15:55:59 nn 1.20.108.2: RESYNC: (1.20-1.21); FILE MERGED 2006/12/01 14:42:28 dr 1.20.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9c389fa1c43becff5c34d92c288d11fe79522295]

INTEGRATION: CWS calcwarnings (1.14.2); FILE MERGED 2006/12/13 10:19:39 dr 1.14.2.2: #i69284# remove compiler warnings for wntmsci10.pro 2006/12/01 14:42:28 dr 1.14.2.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [68cee5f5cbedde15a30f96af332083e0ac315c73]

INTEGRATION: CWS calcwarnings (1.13.106); FILE MERGED 2006/12/12 16:42:46 dr 1.13.106.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [41921c128053f57c652f5c10cdb2aa380c323ddc]

INTEGRATION: CWS calcwarnings (1.7.108); FILE MERGED 2006/12/01 14:42:28 dr 1.7.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1254b061e9eafb0828033c3cf34bc9d4b1888eee]

INTEGRATION: CWS calcwarnings (1.20.108); FILE MERGED 2006/12/12 16:42:45 dr 1.20.108.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [338c7d871cab1f66d7d92e38b00ff0f87ca1861c]

INTEGRATION: CWS calcwarnings (1.25.2); FILE MERGED 2006/12/01 14:42:27 dr 1.25.2.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0f3e79914e52e15681b9e7f8d653157bd14a53c6]

INTEGRATION: CWS calcwarnings (1.3.58); FILE MERGED 2006/12/01 14:42:27 dr 1.3.58.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [650ef9c6083704ec3ad2a54506b91c7ed60e615c]

INTEGRATION: CWS calcwarnings (1.47.48); FILE MERGED 2007/02/20 11:38:39 nn 1.47.48.4: #i10000# changes after resync to m203 2007/02/19 15:55:52 nn 1.47.48.3: RESYNC: (1.47-1.48); FILE MERGED 2006/12/12 16:42:45 dr 1.47.48.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:27 dr 1.47.48.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [637d769620e39b6625996c50a5cc9ae3ed87689d]

INTEGRATION: CWS calcwarnings (1.22.108); FILE MERGED 2006/12/01 14:42:27 dr 1.22.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [02d3bede8198a4a2c798952001166b222cb3c6ce]

INTEGRATION: CWS calcwarnings (1.9.108); FILE MERGED 2007/02/19 15:55:33 nn 1.9.108.2: RESYNC: (1.9-1.10); FILE MERGED 2006/12/01 14:42:26 dr 1.9.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b08c7dfd882651de60bbea259a516e7537ebaf96]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/01 14:42:26 dr 1.5.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f7c42b6b99b8074c41b6620f7bae3c8ca3e4e72b]

INTEGRATION: CWS calcwarnings (1.14.52); FILE MERGED 2006/12/13 10:19:39 dr 1.14.52.2: #i69284# remove compiler warnings for wntmsci10.pro 2006/12/01 14:42:26 dr 1.14.52.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f556298df8beab7a1a140e1218241d12a9e7486a]

INTEGRATION: CWS calcwarnings (1.25.108); FILE MERGED 2007/02/19 15:55:26 nn 1.25.108.3: RESYNC: (1.25-1.26); FILE MERGED 2006/12/12 16:42:45 dr 1.25.108.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:26 dr 1.25.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [28f8cc2a029d2742baa1795c09541d026ef23795]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/04 09:17:43 dr 1.9.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1cda68f039299fb09f694bded59b76962d44746d]

INTEGRATION: CWS calcwarnings (1.7.108); FILE MERGED 2006/12/12 16:42:45 dr 1.7.108.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:26 dr 1.7.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f1e7d5783f3c346af6d53404c08ecd0bfc8f4fff]

INTEGRATION: CWS calcwarnings (1.15.2); FILE MERGED 2007/02/19 15:55:00 nn 1.15.2.2: RESYNC: (1.15-1.16); FILE MERGED 2006/12/01 14:42:25 dr 1.15.2.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [22155a1986795e373202aad6cd228a9fcb073738]

INTEGRATION: CWS calcwarnings (1.17.108); FILE MERGED 2007/02/19 15:54:44 nn 1.17.108.3: RESYNC: (1.17-1.18); FILE MERGED 2006/12/13 10:19:39 dr 1.17.108.2: #i69284# remove compiler warnings for wntmsci10.pro 2006/12/01 14:42:25 dr 1.17.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e5817a5e214e5a64b27f8156d6cc514f977ab947]

INTEGRATION: CWS calcwarnings (1.13.46); FILE MERGED 2007/02/19 15:54:15 nn 1.13.46.3: RESYNC: (1.13-1.14); FILE MERGED 2006/12/13 10:19:38 dr 1.13.46.2: #i69284# remove compiler warnings for wntmsci10.pro 2006/12/01 14:42:25 dr 1.13.46.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [353cf94f04ab98dc109a733d24bb1591bfa2323a]

INTEGRATION: CWS calcwarnings (1.16.108); FILE MERGED 2007/02/19 15:54:09 nn 1.16.108.2: RESYNC: (1.16-1.18); FILE MERGED 2006/12/01 14:42:25 dr 1.16.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5fbbda2d41c0c55ef75c06b7ece628c5fe6672f6]

INTEGRATION: CWS calcwarnings (1.17.108); FILE MERGED 2007/02/19 15:54:02 nn 1.17.108.3: RESYNC: (1.17-1.18); FILE MERGED 2006/12/12 16:42:44 dr 1.17.108.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:24 dr 1.17.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3ffd8d5dc7bb803a63cf61cd5d98bc6a05432405]

INTEGRATION: CWS calcwarnings (1.63.2); FILE MERGED 2007/02/19 15:52:53 nn 1.63.2.3: RESYNC: (1.63-1.65); FILE MERGED 2006/12/14 14:01:16 dr 1.63.2.2: #i69284# remove compiler warnings for unxsols4 2006/12/01 14:42:24 dr 1.63.2.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [67a28e3ed7746cc5231188508704334be8c9ed5b]

INTEGRATION: CWS calcwarnings (1.23.110); FILE MERGED 2006/12/01 14:42:24 dr 1.23.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ccb1e35ed05379f1badcda7d23031948627a9df1]

INTEGRATION: CWS calcwarnings (1.36.116); FILE MERGED 2007/02/19 15:53:56 nn 1.36.116.2: RESYNC: (1.36-1.37); FILE MERGED 2006/12/14 14:01:16 dr 1.36.116.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [399ae3b92920ce610dcc28a341dd1187a9be9d46]

INTEGRATION: CWS calcwarnings (1.84.2); FILE MERGED 2007/02/19 15:53:49 nn 1.84.2.3: RESYNC: (1.84-1.85); FILE MERGED 2006/12/12 16:42:44 dr 1.84.2.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:24 dr 1.84.2.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [78199b259b553c897207917f2c24b5b8c876b996]

INTEGRATION: CWS calcwarnings (1.8.108); FILE MERGED 2006/12/12 16:42:44 dr 1.8.108.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [541630e79346d16c67a32d717461689cc2dee59f]

INTEGRATION: CWS calcwarnings (1.28.108); FILE MERGED 2007/02/19 15:53:43 nn 1.28.108.2: RESYNC: (1.28-1.29); FILE MERGED 2006/12/01 14:42:24 dr 1.28.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e8a8167aa5b4435ec0ed9fe0964e4d40ccf51aaa]

INTEGRATION: CWS calcwarnings (1.58.110); FILE MERGED 2006/12/12 16:42:44 dr 1.58.110.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:23 dr 1.58.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [de4167270d18edcede5766c250bd03082e653a5f]

INTEGRATION: CWS calcwarnings (1.83.108); FILE MERGED 2007/02/19 15:53:36 nn 1.83.108.3: RESYNC: (1.83-1.84); FILE MERGED 2006/12/12 16:42:44 dr 1.83.108.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:23 dr 1.83.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b1e2c035cc473b0f4ae37831dc2d54cc77116d3e]

INTEGRATION: CWS calcwarnings (1.42.8); FILE MERGED 2006/12/12 16:42:43 dr 1.42.8.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 14:42:23 dr 1.42.8.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8071e92367c16639237e5a507a6e4e94e154a5fc]

INTEGRATION: CWS calcwarnings (1.40.108); FILE MERGED 2007/02/19 15:53:30 nn 1.40.108.3: RESYNC: (1.40-1.41); FILE MERGED 2006/12/14 14:01:16 dr 1.40.108.2: #i69284# remove compiler warnings for unxsols4 2006/12/12 16:42:43 dr 1.40.108.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8b9f2001eff4c85c2fa95ef9c533194d71ecc6f4]

INTEGRATION: CWS calcwarnings (1.43.46); FILE MERGED 2007/02/19 15:53:23 nn 1.43.46.2: RESYNC: (1.43-1.44); FILE MERGED 2006/12/01 14:42:23 dr 1.43.46.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e4c44cfcddb498073d2a458fc00b30e3dbf778fd]

INTEGRATION: CWS calcwarnings (1.24.108); FILE MERGED 2006/12/01 14:42:22 dr 1.24.108.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [99cef915557c15a2c80db3ca02f4c37c581f9cee]

INTEGRATION: CWS calcwarnings (1.31.54); FILE MERGED 2006/12/01 14:42:22 dr 1.31.54.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [352507f896ea5fd3e7c9ec0c88718cb46dbe7442]

INTEGRATION: CWS calcwarnings (1.2.324); FILE MERGED 2006/12/14 14:01:15 dr 1.2.324.1: #i69284# remove compiler warnings for unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d298d0474c1190e0b0f07b30f073e58b7e17ff29]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/13 10:19:38 dr 1.12.110.3: #i69284# remove compiler warnings for wntmsci10.pro 2006/12/12 16:42:43 dr 1.12.110.2: #i69284# remove compiler warnings for unxlngi6 2006/12/01 15:06:02 dr 1.12.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ac22167af6f903dbd95f9ff5eb2d7c35f7a5270f]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/01 15:06:02 dr 1.9.110.1: #i69284# remove compiler warnings for wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c5205f7d99f88cb26afe425141a646941acb2fc1]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/06 13:34:23 nn 1.5.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:50 nn 1.5.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7589a9a60606f4f64621083e302a8778a474b633]

INTEGRATION: CWS calcwarnings (1.9.88); FILE MERGED 2006/12/06 13:34:23 nn 1.9.88.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:50 nn 1.9.88.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [59d526adb21fae33ed808dafa53af89fabfe40f8]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/06 13:34:23 nn 1.5.110.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3f2bb778cfc398bab5a8de5026bb094726b338a7]

INTEGRATION: CWS calcwarnings (1.24.110); FILE MERGED 2007/02/20 11:38:38 nn 1.24.110.5: #i10000# changes after resync to m203 2007/02/19 15:52:46 nn 1.24.110.4: RESYNC: (1.24-1.25); FILE MERGED 2006/12/13 19:18:25 nn 1.24.110.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:23 nn 1.24.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:50 nn 1.24.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dbd23a1878b18af347e73269cdb857f84115d641]

INTEGRATION: CWS calcwarnings (1.13.46); FILE MERGED 2006/11/28 13:24:50 nn 1.13.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fe232757ce8103ad2d1c619ad4977c512893099d]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/11/28 13:24:49 nn 1.6.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4766fc68354b85cfcd079eedad61ac9c5db673a1]

INTEGRATION: CWS calcwarnings (1.5.46); FILE MERGED 2006/12/06 13:34:22 nn 1.5.46.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c5dba1f48b5c2c7124a2426e938a4614666200a6]

INTEGRATION: CWS calcwarnings (1.8.46); FILE MERGED 2006/11/28 13:24:49 nn 1.8.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3425622fd2b5abca8e0e80551c6624aa2dc19b3c]

INTEGRATION: CWS calcwarnings (1.22.46); FILE MERGED 2007/02/19 15:52:39 nn 1.22.46.4: RESYNC: (1.22-1.23); FILE MERGED 2006/12/13 19:18:25 nn 1.22.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:22 nn 1.22.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:49 nn 1.22.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0f83260a71a1c468d66616dd2a6b86254d495b93]

INTEGRATION: CWS calcwarnings (1.9.46); FILE MERGED 2006/12/13 19:18:25 nn 1.9.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:22 nn 1.9.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:49 nn 1.9.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [214e9d9f35fd47e6d0d7b1c826683de3ee1136cc]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/06 13:34:22 nn 1.4.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:49 nn 1.4.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f88af464b6316f71a47a4bb0dd0044a5343b2c24]

INTEGRATION: CWS calcwarnings (1.6.88); FILE MERGED 2006/12/13 19:18:25 nn 1.6.88.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:22 nn 1.6.88.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:49 nn 1.6.88.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2c2a3bce7d4709ecd1bb764854fb2201dda6d985]

INTEGRATION: CWS calcwarnings (1.7.88); FILE MERGED 2006/11/28 13:24:48 nn 1.7.88.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [25e77e3d1dd7b17f59954ac638beff8dc2b9d265]

INTEGRATION: CWS calcwarnings (1.17.86); FILE MERGED 2006/12/13 19:18:25 nn 1.17.86.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d01c1b1c9d52581825f0bae1eca061482af5892b]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/11/28 13:24:48 nn 1.4.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2a811a80b5da3a896dcb2fdce5aafd7434eba2b9]

INTEGRATION: CWS calcwarnings (1.21.110); FILE MERGED 2006/12/06 13:34:22 nn 1.21.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:48 nn 1.21.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d8885994982101490356ff5c7f16d8d990e4aeb4]

INTEGRATION: CWS calcwarnings (1.43.46); FILE MERGED 2007/02/20 11:38:38 nn 1.43.46.5: #i10000# changes after resync to m203 2007/02/19 15:52:17 nn 1.43.46.4: RESYNC: (1.43-1.44); FILE MERGED 2006/12/13 19:18:24 nn 1.43.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:22 nn 1.43.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:48 nn 1.43.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ef5dc3585c1245d5ec90bdebe9f561a1b3a8e45c]

INTEGRATION: CWS calcwarnings (1.17.108); FILE MERGED 2006/12/06 13:34:21 nn 1.17.108.3: #i69284# warning-free: core, unxlngi6 2006/12/01 15:51:24 nn 1.17.108.2: #i69284# warning-free: wntmsci10.pro changes 2006/11/28 13:24:48 nn 1.17.108.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6744de621679329ac09a828498f9d9253b4258c0]

INTEGRATION: CWS calcwarnings (1.28.108); FILE MERGED 2007/02/19 15:52:10 nn 1.28.108.3: RESYNC: (1.28-1.29); FILE MERGED 2006/12/06 13:34:21 nn 1.28.108.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:48 nn 1.28.108.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1e3f47d20cc7c0c534074b3cd9ea1b46f52e13d9]

INTEGRATION: CWS calcwarnings (1.41.46); FILE MERGED 2007/02/19 15:52:03 nn 1.41.46.4: RESYNC: (1.41-1.42); FILE MERGED 2006/12/13 19:18:24 nn 1.41.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:21 nn 1.41.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:47 nn 1.41.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8975aa030c08a0efebc38913cc33534fbe493159]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/11/28 13:24:47 nn 1.7.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [69d36c1d8e964fa34dd135151988f73984f04aaf]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/11/28 13:24:47 nn 1.4.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [35b052fcc58754ab8d64eb7a8af3a7e03675e6b2]

INTEGRATION: CWS calcwarnings (1.29.110); FILE MERGED 2006/12/13 19:18:24 nn 1.29.110.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:21 nn 1.29.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:47 nn 1.29.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c18f37737df1b715377cb45c510c02a055950228]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/06 13:34:21 nn 1.6.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:46 nn 1.6.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [eb9b8f6747370df962ca9bae0b5d96fa2efb57c9]

INTEGRATION: CWS calcwarnings (1.25.8); FILE MERGED 2007/02/19 15:51:56 nn 1.25.8.4: RESYNC: (1.25-1.26); FILE MERGED 2006/12/06 13:34:20 nn 1.25.8.3: #i69284# warning-free: core, unxlngi6 2006/12/01 15:51:24 nn 1.25.8.2: #i69284# warning-free: wntmsci10.pro changes 2006/11/28 13:24:46 nn 1.25.8.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [242f085d16839b1f569977e796a3330d9a72e685]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/06 13:34:20 nn 1.6.110.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0e5deb3bd3d7419f72b03cff9f9a8b6ec84f3fa8]

INTEGRATION: CWS calcwarnings (1.14.110); FILE MERGED 2006/12/06 13:34:20 nn 1.14.110.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1e1993a6b86f2ba6add12e1de38da16fa3216662]

INTEGRATION: CWS calcwarnings (1.15.110); FILE MERGED 2006/12/06 13:34:20 nn 1.15.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:45 nn 1.15.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2413847cdd15c558f64ff10791947f10cc4b6254]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/12/06 13:34:20 nn 1.5.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:45 nn 1.5.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a96bc0b003ebaf3b53a347b052bb15fbd071e76c]

INTEGRATION: CWS calcwarnings (1.64.46); FILE MERGED 2007/02/19 15:51:50 nn 1.64.46.4: RESYNC: (1.64-1.67); FILE MERGED 2006/12/13 19:18:24 nn 1.64.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:20 nn 1.64.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:45 nn 1.64.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [aa6774b03ab11af72e1e0b6f4fbe382329e86f34]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/06 13:34:19 nn 1.12.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:44 nn 1.12.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [eeb8325babcf9a99e74e0aa1e276d242896bf828]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/11/28 13:24:44 nn 1.5.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [68031eed549fc5ad24e8827f6bd3f9cc275eb06f]

INTEGRATION: CWS calcwarnings (1.25.46); FILE MERGED 2006/12/13 19:18:23 nn 1.25.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:19 nn 1.25.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:43 nn 1.25.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [55adc41922d38be8c2ffc1278f39ad1e7d2a4646]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/06 13:34:19 nn 1.8.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:43 nn 1.8.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0aa03df623e2942c3912b1c9f462e0c82c9b4f91]

INTEGRATION: CWS calcwarnings (1.20.106); FILE MERGED 2006/12/06 13:34:19 nn 1.20.106.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:43 nn 1.20.106.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ee068377795cf139b4ebf5d34152488aabcafc7d]

INTEGRATION: CWS calcwarnings (1.10.108); FILE MERGED 2006/12/13 19:18:23 nn 1.10.108.2: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:19 nn 1.10.108.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [589bf457a9e32d17ec00ec7e292a11c3102a4f04]

INTEGRATION: CWS calcwarnings (1.19.110); FILE MERGED 2006/12/13 19:18:23 nn 1.19.110.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:19 nn 1.19.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:43 nn 1.19.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f228245b5bb01b5526a55dc5780ec277aa4fac4e]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/11/28 13:24:43 nn 1.7.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ed9fffdfc63864714c2067a0c188b29438d782ac]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/06 13:34:18 nn 1.4.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:43 nn 1.4.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3afc3a1ba2e13a728ee3a1fe676a20125e560a96]

INTEGRATION: CWS calcwarnings (1.6.46); FILE MERGED 2007/02/19 15:51:43 nn 1.6.46.2: RESYNC: (1.6-1.8); FILE MERGED 2006/11/28 13:24:43 nn 1.6.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [18114a6534b770e147d4802f280013ace4528453]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/11/28 13:24:42 nn 1.4.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [778b6c93c816a4228854f752b682dbf3dda3b3b5]

INTEGRATION: CWS calcwarnings (1.19.88); FILE MERGED 2006/12/06 13:34:18 nn 1.19.88.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:42 nn 1.19.88.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4332fadd6ad9ca902d7f8ec70288aa90d6fa4c14]

INTEGRATION: CWS calcwarnings (1.3.324); FILE MERGED 2006/12/13 19:18:23 nn 1.3.324.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [578bb3368ceee34a7efcfd7b0e2964a52fbddda8]

INTEGRATION: CWS calcwarnings (1.18.110); FILE MERGED 2006/12/06 13:34:18 nn 1.18.110.3: #i69284# warning-free: core, unxlngi6 2006/12/01 15:51:24 nn 1.18.110.2: #i69284# warning-free: wntmsci10.pro changes 2006/11/28 13:24:42 nn 1.18.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c04b5b66c0137cbf7feafefc6eedbdf79e30c2b3]

INTEGRATION: CWS calcwarnings (1.8.8); FILE MERGED 2006/11/28 13:24:42 nn 1.8.8.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2288e025419dc0cb692dae96c3c8c8d45aafbec3]

INTEGRATION: CWS calcwarnings (1.11.46); FILE MERGED 2006/11/28 13:24:41 nn 1.11.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b37934dce02d276afd4ff1831d0d5ad3b05b6822]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/11/28 13:24:41 nn 1.12.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [18a4c3dad057d84e8160f7c9e2b7c669bd9bd8c5]

INTEGRATION: CWS calcwarnings (1.16.110); FILE MERGED 2007/02/20 15:21:09 nn 1.16.110.4: #i69284# warnings on wntmsci10.pro after resync 2007/02/19 15:50:59 nn 1.16.110.3: RESYNC: (1.16-1.18); FILE MERGED 2006/12/06 13:34:18 nn 1.16.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:41 nn 1.16.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [034dff6b3dc9dcca525019feda4ff44aa05a4051]

INTEGRATION: CWS calcwarnings (1.25.110); FILE MERGED 2007/02/19 15:50:52 nn 1.25.110.4: RESYNC: (1.25-1.26); FILE MERGED 2006/12/13 19:18:22 nn 1.25.110.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:18 nn 1.25.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:41 nn 1.25.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fd54c515815e247ff1a6e9880bc344f627f17eb8]

INTEGRATION: CWS calcwarnings (1.35.110); FILE MERGED 2007/02/19 15:50:45 nn 1.35.110.3: RESYNC: (1.35-1.36); FILE MERGED 2006/12/06 13:34:17 nn 1.35.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:41 nn 1.35.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c0b038e0e500e8672a22af0c32a176077c02515b]

INTEGRATION: CWS calcwarnings (1.19.8); FILE MERGED 2006/12/06 13:34:17 nn 1.19.8.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:40 nn 1.19.8.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d4706aed214eb4f612cce559c0159cefece7a56c]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2006/12/06 13:34:17 nn 1.9.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:40 nn 1.9.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2b914ceff762a69d68fbecd6bacc14b310127791]

INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED 2006/12/06 13:34:17 nn 1.13.110.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [035c8b9de29c654e9cbde0d8f67aa46c4fe27a27]

INTEGRATION: CWS calcwarnings (1.4.110); FILE MERGED 2006/12/06 13:34:17 nn 1.4.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:40 nn 1.4.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3af3646219238c33b4653c2d12db84d079535109]

INTEGRATION: CWS calcwarnings (1.3.110); FILE MERGED 2006/11/28 13:24:40 nn 1.3.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1787fa3c1ed4fb26b7c495e29710af57e8ae8a4a]

INTEGRATION: CWS calcwarnings (1.9.8); FILE MERGED 2006/11/28 13:24:40 nn 1.9.8.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [217ffc5a77e3605ef6a66aaaa1902cad32032aee]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/06 13:34:17 nn 1.7.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:40 nn 1.7.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c81caa679113dbd9ced7d308f5db07c779334152]

INTEGRATION: CWS calcwarnings (1.31.110); FILE MERGED 2006/12/06 13:34:16 nn 1.31.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:39 nn 1.31.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c1dbe5d091ae58c29784691b6b04dc60ee63eeeb]

INTEGRATION: CWS calcwarnings (1.7.110); FILE MERGED 2006/12/06 13:34:16 nn 1.7.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:39 nn 1.7.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b18b7d081534538f08150ade835bb2625ed793c8]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/06 13:34:16 nn 1.6.110.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ca8709625d5b99388b80d79ff2fdaab102e94e07]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/12/06 13:34:16 nn 1.8.110.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dc987556c6215a9913d39aa174286de0eb84a868]

INTEGRATION: CWS calcwarnings (1.20.246); FILE MERGED 2006/12/13 19:18:22 nn 1.20.246.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [192653d9da278a9d4d19e851ab00752af2a1a222]

INTEGRATION: CWS calcwarnings (1.20.110); FILE MERGED 2006/12/06 13:34:16 nn 1.20.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:39 nn 1.20.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [01c5f12eded635cafd381a09b8f6033dcd948ac0]

INTEGRATION: CWS calcwarnings (1.47.88); FILE MERGED 2007/02/19 15:50:29 nn 1.47.88.2: RESYNC: (1.47-1.48); FILE MERGED 2006/11/28 13:24:39 nn 1.47.88.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [20b5eec73475a87ae6c5a22f58c750a437789b95]

INTEGRATION: CWS calcwarnings (1.12.46); FILE MERGED 2006/12/06 13:34:16 nn 1.12.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:39 nn 1.12.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [930244e6e4188b9068c0ca702a6de6de8a1c7b83]

INTEGRATION: CWS calcwarnings (1.46.8); FILE MERGED 2006/12/06 13:34:15 nn 1.46.8.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:39 nn 1.46.8.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b9bcab6ac3b804cde5055a3349f9c5eeae11d0d2]

INTEGRATION: CWS calcwarnings (1.16.46); FILE MERGED 2007/02/19 15:50:22 nn 1.16.46.4: RESYNC: (1.16-1.17); FILE MERGED 2006/12/13 19:18:22 nn 1.16.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:15 nn 1.16.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:38 nn 1.16.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1f925ea4174a1d8f00322865723d6c4221afe889]

INTEGRATION: CWS calcwarnings (1.9.54); FILE MERGED 2007/02/20 11:38:38 nn 1.9.54.3: #i10000# changes after resync to m203 2007/02/19 15:50:15 nn 1.9.54.2: RESYNC: (1.9-1.10); FILE MERGED 2006/11/28 13:24:38 nn 1.9.54.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c458f1569a47af1e70324ec27c79aa7fe0ffab38]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2007/02/19 15:50:08 nn 1.10.110.2: RESYNC: (1.10-1.11); FILE MERGED 2006/11/28 13:24:38 nn 1.10.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ba418c4a6c1811b8e136b778daee3698b1f4c4bb]

INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED 2006/11/28 13:24:38 nn 1.8.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [372fc4a8efa0206f9dde4f3038e67c7621c30bdd]

INTEGRATION: CWS calcwarnings (1.11.110); FILE MERGED 2006/11/28 13:24:38 nn 1.11.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fa0c1db65f183da063b9351fbb014cd28771339e]

INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED 2007/02/19 15:50:02 nn 1.9.110.3: RESYNC: (1.9-1.10); FILE MERGED 2006/12/06 13:34:15 nn 1.9.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:38 nn 1.9.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1fd5ead77d3b289e0c953f8f342542dbb7ab8fc6]

INTEGRATION: CWS calcwarnings (1.12.110); FILE MERGED 2006/12/06 13:34:15 nn 1.12.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:37 nn 1.12.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7fe570336a8fa34cf7c5961e0c5602a398d3d45c]

INTEGRATION: CWS calcwarnings (1.19.110); FILE MERGED 2006/12/06 13:34:15 nn 1.19.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:37 nn 1.19.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ad004ef3f6f4ce110a614882af5e387205e27a92]

INTEGRATION: CWS calcwarnings (1.6.110); FILE MERGED 2006/12/06 13:34:15 nn 1.6.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:37 nn 1.6.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [0c0a5fcf961da8ce8ea02771b2d9e4328e99d25d]

INTEGRATION: CWS calcwarnings (1.5.110); FILE MERGED 2006/11/28 13:24:37 nn 1.5.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c1d338ffc5e812d9622e36826d4fbc9a79ac0285]

INTEGRATION: CWS calcwarnings (1.74.54); FILE MERGED 2006/12/06 13:34:14 nn 1.74.54.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:37 nn 1.74.54.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [6411e108aef1e2d828b699a92a6845e322914333]

INTEGRATION: CWS calcwarnings (1.35.8); FILE MERGED 2007/02/19 15:49:55 nn 1.35.8.3: RESYNC: (1.35-1.36); FILE MERGED 2006/12/06 13:34:14 nn 1.35.8.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:37 nn 1.35.8.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a37400a4386a18b1e0fb704074a38e81687e1dc2]

INTEGRATION: CWS calcwarnings (1.45.46); FILE MERGED 2006/12/01 15:51:23 nn 1.45.46.2: #i69284# warning-free: wntmsci10.pro changes 2006/11/28 13:24:36 nn 1.45.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [023d67e9970e8a099ee4938a25dbc780b733b51d]

INTEGRATION: CWS calcwarnings (1.10.110); FILE MERGED 2006/11/28 13:24:36 nn 1.10.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ba78391245b19060327c5c5853bc17089aaf480d]

INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED 2006/11/28 13:24:36 nn 1.13.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fc999e3ec86d278431e3100dbe9c34a6fa686fca]

INTEGRATION: CWS calcwarnings (1.25.108); FILE MERGED 2006/12/06 13:34:14 nn 1.25.108.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:36 nn 1.25.108.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [669f13543ebcfa84dcbe9fc495868fdd0c56ed6e]

INTEGRATION: CWS calcwarnings (1.16.46); FILE MERGED 2007/02/19 15:49:49 nn 1.16.46.3: RESYNC: (1.16-1.17); FILE MERGED 2006/12/06 13:34:14 nn 1.16.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:36 nn 1.16.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [03fa4b5e6d41b0127a643051b4410d0c9f1a7517]

INTEGRATION: CWS calcwarnings (1.32.44); FILE MERGED 2007/02/19 15:49:42 nn 1.32.44.2: RESYNC: (1.32-1.33); FILE MERGED 2006/11/28 13:24:35 nn 1.32.44.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [4ade36ce749cb8881fb33e00ad59fc7300760270]

INTEGRATION: CWS calcwarnings (1.60.8); FILE MERGED 2007/02/19 15:49:35 nn 1.60.8.3: RESYNC: (1.60-1.61); FILE MERGED 2006/12/06 13:34:14 nn 1.60.8.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:35 nn 1.60.8.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1a6ce6672e0ee6e7febfc4f1ff2a4316ce1cff6b]

INTEGRATION: CWS calcwarnings (1.22.110); FILE MERGED 2006/11/28 13:24:35 nn 1.22.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [89050ae16230bca1b363b4f150f4fe5285d9be65]

INTEGRATION: CWS calcwarnings (1.18.110); FILE MERGED 2006/12/13 19:18:22 nn 1.18.110.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:14 nn 1.18.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:35 nn 1.18.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3bf7b4dba0f65525c2e2cef827faccca9865b831]

INTEGRATION: CWS calcwarnings (1.20.46); FILE MERGED 2006/12/13 19:18:21 nn 1.20.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:13 nn 1.20.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:35 nn 1.20.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [3021d3abf460e8cf6ce0e7fbf9c326fea7cbfe25]

INTEGRATION: CWS calcwarnings (1.22.46); FILE MERGED 2007/02/19 15:49:29 nn 1.22.46.4: RESYNC: (1.22-1.23); FILE MERGED 2006/12/13 19:18:21 nn 1.22.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:13 nn 1.22.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:35 nn 1.22.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [f4e31050b8698aabaaca3105aef558ab00f6d77c]

INTEGRATION: CWS calcwarnings (1.26.110); FILE MERGED 2006/12/13 19:18:21 nn 1.26.110.2: #i69284# warning-free: core, unxsols4 2006/11/28 13:24:34 nn 1.26.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [ce477ac0924fb5f718344ef708861da59338952a]

INTEGRATION: CWS calcwarnings (1.21.38); FILE MERGED 2006/12/06 13:34:13 nn 1.21.38.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:34 nn 1.21.38.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [125ab591aa27e6fee9aba246ccc97916e1813f84]

INTEGRATION: CWS calcwarnings (1.27.46); FILE MERGED 2007/02/19 15:49:22 nn 1.27.46.4: RESYNC: (1.27-1.28); FILE MERGED 2006/12/13 19:18:21 nn 1.27.46.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:13 nn 1.27.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:34 nn 1.27.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [639146b58b4fa09b248b6c3b70dbbcacba14dea1]

INTEGRATION: CWS calcwarnings (1.35.38); FILE MERGED 2006/11/28 13:24:34 nn 1.35.38.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [b89a8e3e7ca490545caca555e43f3bc80714bcf2]

INTEGRATION: CWS calcwarnings (1.13.46); FILE MERGED 2006/12/06 13:34:13 nn 1.13.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:34 nn 1.13.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dad2fa20ecf1b3799692bfcf02db95030d6a4ff2]

INTEGRATION: CWS calcwarnings (1.22.110); FILE MERGED 2006/12/06 13:34:13 nn 1.22.110.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:33 nn 1.22.110.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5f84204ab08270695f7c82ec67300f57eea1a43b]

INTEGRATION: CWS calcwarnings (1.5.2); FILE MERGED 2006/12/19 16:25:48 nn 1.5.2.1: #i69284# warning-free with precompiled headers


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c81771668e5ce58cb6ef98bc2356fd9a63355007]

INTEGRATION: CWS calcwarnings (1.8.324); FILE MERGED 2006/12/14 17:57:03 nn 1.8.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8400be44ccc0ca2fa7a41f92ed7c01731de11911]

INTEGRATION: CWS calcwarnings (1.11.194); FILE MERGED 2006/12/13 19:18:20 nn 1.11.194.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c9ab892719142832d8d06659dd778b8f96b27484]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2006/12/13 19:18:20 nn 1.6.324.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [328b363f6ff89241753b39d34c0c40283072c596]

INTEGRATION: CWS calcwarnings (1.15.2); FILE MERGED 2006/12/13 19:18:20 nn 1.15.2.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [8427025a4e9715e681f29a3c279a0f4444699bb8]

INTEGRATION: CWS calcwarnings (1.3.324); FILE MERGED 2006/11/28 13:24:33 nn 1.3.324.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [75acf323faa984a14feead31cab5d150620e235d]

INTEGRATION: CWS calcwarnings (1.20.88); FILE MERGED 2006/12/13 19:18:20 nn 1.20.88.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [a2b9e1fefff6ccc4dd00c9f275d367686a67da8b]

INTEGRATION: CWS calcwarnings (1.7.46); FILE MERGED 2006/11/28 13:24:33 nn 1.7.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [1171fdcfd0579a9c6a30c142e32e10e868dc2a9a]

INTEGRATION: CWS calcwarnings (1.11.116); FILE MERGED 2006/12/13 19:18:20 nn 1.11.116.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:12 nn 1.11.116.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:33 nn 1.11.116.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dd78a4bfb5401408d2a6958576d7e743c3a42a33]

INTEGRATION: CWS calcwarnings (1.6.46); FILE MERGED 2006/12/13 19:18:20 nn 1.6.46.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c801e80f570b256f9d40714bc18d16450e2e2988]

INTEGRATION: CWS calcwarnings (1.12.324); FILE MERGED 2006/12/06 13:34:12 nn 1.12.324.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2d08488001c84fea656f2a4743a7408bc22e4d84]

INTEGRATION: CWS calcwarnings (1.3.88); FILE MERGED 2006/12/13 19:18:20 nn 1.3.88.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [763065a875a5c4e4f6454ca54a47a29b28702bd4]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/14 17:57:03 nn 1.4.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [fc66699ba09cd9107357ce447cf3d482a51af4ba]

INTEGRATION: CWS calcwarnings (1.5.324); FILE MERGED 2006/12/12 16:43:17 dr 1.5.324.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [65a6ed415c0664a3ce1709f23b1476265c02d114]

INTEGRATION: CWS calcwarnings (1.5.324); FILE MERGED 2006/12/12 16:43:16 dr 1.5.324.1: #i69284# remove compiler warnings for unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [d01a191edeeda3128f3c8b88b988e5f84047cddd]

INTEGRATION: CWS calcwarnings (1.10.324); FILE MERGED 2006/12/13 19:18:19 nn 1.10.324.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5523e2e99c5037c2980c53046307443dc2f204d1]

INTEGRATION: CWS calcwarnings (1.2.324); FILE MERGED 2006/12/12 17:03:03 nn 1.2.324.1: #i69284# warning-free: ui, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7fc712d3f8c5e2d33bd9e213ff6448da5198ab2a]

INTEGRATION: CWS calcwarnings (1.5.324); FILE MERGED 2007/02/19 15:47:05 nn 1.5.324.2: RESYNC: (1.5-1.6); FILE MERGED 2006/12/13 19:18:19 nn 1.5.324.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [987439a945bd98f8c68e1bb62a4958a9782e5201]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2006/11/28 13:24:32 nn 1.6.324.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e65e35b68924f920b263b82c6fe05dc8d202c5c4]

INTEGRATION: CWS calcwarnings (1.5.314); FILE MERGED 2006/12/13 19:18:19 nn 1.5.314.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [87ec14ab020b28f0781342a0fa3fe776a03948f3]

INTEGRATION: CWS calcwarnings (1.10.314); FILE MERGED 2006/12/13 19:18:19 nn 1.10.314.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2b4675dce8de46dfe4ffd64fd997b1f4c5e5c499]

INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED 2006/12/13 19:18:19 nn 1.6.324.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [685cc15c90096c2d15ab722db3beeda00b8f1657]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/14 17:57:02 nn 1.4.324.1: #i69284# warning-free: ui, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c99f4a1dcba9542317659e7984ed23f468e3375e]

INTEGRATION: CWS calcwarnings (1.9.194); FILE MERGED 2006/12/13 19:18:19 nn 1.9.194.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [dd55b3e581a6327ddabd08a1e5f88a906d3db2f3]

INTEGRATION: CWS calcwarnings (1.5.324); FILE MERGED 2006/12/06 13:34:12 nn 1.5.324.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [7c0cf953abed438743917f1e09c26185c1b06f4b]

INTEGRATION: CWS calcwarnings (1.27.46); FILE MERGED 2007/02/19 15:46:32 nn 1.27.46.3: RESYNC: (1.27-1.28); FILE MERGED 2006/12/06 13:34:12 nn 1.27.46.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:32 nn 1.27.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [26d223822ed9a1cc6457ec81c9001e8a83a50b77]

INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED 2006/12/06 13:34:12 nn 1.4.324.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [583b93ac1a5380ab5768993ca4679e726c0b9984]

INTEGRATION: CWS calcwarnings (1.26.324); FILE MERGED 2006/12/13 19:18:18 nn 1.26.324.3: #i69284# warning-free: core, unxsols4 2006/12/06 13:34:11 nn 1.26.324.2: #i69284# warning-free: core, unxlngi6 2006/11/28 13:24:32 nn 1.26.324.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [5e1a1dd4ddaa28202791a8f7d064f2c2fc1acf7c]

INTEGRATION: CWS calcwarnings (1.5.324); FILE MERGED 2006/12/13 19:18:18 nn 1.5.324.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2b3c1b6bc250d5ed97da11eaf56d8335c835e883]

INTEGRATION: CWS calcwarnings (1.26.46); FILE MERGED 2006/12/13 19:18:18 nn 1.26.46.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [e438229d141cf9897d8b7e0229bd8d8c00e35e3b]

INTEGRATION: CWS calcwarnings (1.21.38); FILE MERGED 2007/02/19 15:46:16 nn 1.21.38.3: RESYNC: (1.21-1.22); FILE MERGED 2006/12/13 19:18:18 nn 1.21.38.2: #i69284# warning-free: core, unxsols4 2006/11/28 13:24:32 nn 1.21.38.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [c0ba650905b91f46ff159e02dae9167a785c2ff8]

INTEGRATION: CWS calcwarnings (1.7.322); FILE MERGED 2006/12/06 13:34:11 nn 1.7.322.1: #i69284# warning-free: core, unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [70b075d537cfe7b94fd12abe0254628a8ee1caa6]

INTEGRATION: CWS calcwarnings (1.9.2); FILE MERGED 2006/12/13 19:18:18 nn 1.9.2.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [9745cfa7cca1f82c429abdd7ca24a8e1801be7de]

INTEGRATION: CWS calcwarnings (1.10.46); FILE MERGED 2007/02/19 15:46:09 nn 1.10.46.2: RESYNC: (1.10-1.11); FILE MERGED 2006/11/28 13:24:32 nn 1.10.46.1: #i69284# warning-free: core, wntmsci10


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [68584fe3f97df61b8f8754bff78f775c649939d2]

INTEGRATION: CWS calcwarnings (1.2.88); FILE MERGED 2006/12/13 19:18:18 nn 1.2.88.1: #i69284# warning-free: core, unxsols4


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [2e8ac21abf60870955c7abdccc6b1674b7a28ed4]

INTEGRATION: CWS calcwarnings (1.2.246); FILE MERGED 2006/12/12 17:44:34 nn 1.2.246.1: #i69284# warning-free: unxlngi6


2007-02-27  Vladimir Glazounov  <vg@openoffice.org>  [655b5c21e75aa69d6a5d2cf12deb95d19913b163]

INTEGRATION: CWS calcwarnings (1.2.246); FILE MERGED 2006/12/12 17:44:34 nn 1.2.246.2: #i69284# warning-free: unxlngi6 2006/12/01 16:19:38 nn 1.2.246.1: #i69284# warning-free: wntmsci10


2007-02-12  Kurt Zenker  <kz@openoffice.org>  [fa7284fdbaa93bb9b57b5163f5ea1391170ea1f1]

INTEGRATION: CWS aw043_SRC680 (1.11.12.1.6); FILE MERGED 2007/01/31 13:53:28 aw 1.11.12.1.6.1: #i73602# use Calc's own flag from configuration to decide if to use OverlayBuffer or not


2007-02-06  Vladimir Glazounov  <vg@openoffice.org>  [b4277c9da82f5263e824571d794f740416125e90]

INTEGRATION: CWS ause074 (1.3.40); FILE MERGED 2007/01/30 12:06:21 hjs 1.3.40.1: #i73801# remove remaining usages of sv[pre].mk


2007-02-06  Vladimir Glazounov  <vg@openoffice.org>  [d325612fb8b46325fc0d410e9f22eb0404da5516]

INTEGRATION: CWS ause074 (1.9.198); FILE MERGED 2007/01/30 12:06:20 hjs 1.9.198.1: #i73801# remove remaining usages of sv[pre].mk


2007-02-05  Vladimir Glazounov  <vg@openoffice.org>  [8f0eee1af7c26807b6348538c96afbb2943f8d7a]

INTEGRATION: CWS calcdocmerge_SRC680 (1.7.158); FILE MERGED 2007/01/26 16:28:43 nn 1.7.158.1: #i73877# AcceptChgDlg: check view pointer


2007-02-05  Vladimir Glazounov  <vg@openoffice.org>  [cd10295055fc85d64b45842105116420e1e3e16f]

INTEGRATION: CWS calcdocmerge_SRC680 (1.27.60); FILE MERGED 2007/01/26 16:27:51 nn 1.27.60.1: #i73877# MergeDocument: no repainting after each action


2007-01-29  Rüdiger Timm  <rt@openoffice.org>  [04773fdf4f4ce03732fab5f0152a59fe5faf6c5f]

INTEGRATION: CWS dr53 (1.36.96); FILE MERGED 2007/01/24 08:36:40 dr 1.36.96.1: #i19430# gnopernicus and rotated cell text


2007-01-29  Rüdiger Timm  <rt@openoffice.org>  [b188ed1813ececc7d56f62a75ca034976ecbe4bd]

INTEGRATION: CWS dr53 (1.29.154); FILE MERGED 2007/01/24 08:36:39 dr 1.29.154.1: #i19430# gnopernicus and rotated cell text


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [f828956d913af064316c75ae052d9ae00a5dc5f8]

INTEGRATION: CWS ause069 (1.2.94); FILE MERGED 2006/11/28 12:22:02 hjs 1.2.94.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [2b1d54a34f799be51defb18b90d9e14e321d52e2]

INTEGRATION: CWS ause069 (1.4.4); FILE MERGED 2006/11/28 12:22:02 hjs 1.4.4.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [812b881199a259f1787f1059cad46a77b43fd56e]

INTEGRATION: CWS ause069 (1.3.46); FILE MERGED 2006/12/04 22:48:31 hjs 1.3.46.2: RESYNC: (1.3-1.4); FILE MERGED 2006/11/28 12:22:01 hjs 1.3.46.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [8fb905ebec051b69a47e89745c68d128d0ea89b3]

INTEGRATION: CWS ause069 (1.18.90); FILE MERGED 2006/12/04 22:50:54 hjs 1.18.90.2: RESYNC: (1.18-1.19); FILE MERGED 2006/11/28 12:22:01 hjs 1.18.90.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [363381541459ccbbf813b6bf36c9e0c469723837]

INTEGRATION: CWS ause069 (1.12.20); FILE MERGED 2007/01/10 21:43:38 hjs 1.12.20.2: RESYNC: (1.12-1.13); FILE MERGED 2006/12/01 17:28:26 hjs 1.12.20.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [76d99cd7718239766a341c3f2f4f1af9e06d552f]

INTEGRATION: CWS ause069 (1.14.20); FILE MERGED 2007/01/10 21:43:59 hjs 1.14.20.2: RESYNC: (1.14-1.15); FILE MERGED 2006/12/01 17:28:25 hjs 1.14.20.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [d11a904597ca170a27eb2b8bca7d2db38e4ca5a9]

INTEGRATION: CWS ause069 (1.5.296); FILE MERGED 2006/11/24 14:37:06 hjs 1.5.296.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [6f273a80500eb5f8a75da92f94ddcb693e8aeee0]

INTEGRATION: CWS ause069 (1.4.296); FILE MERGED 2006/11/24 14:37:05 hjs 1.4.296.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [1551f83048feec6bc2961f69cc06fb3156b400ac]

INTEGRATION: CWS ause069 (1.9.8); FILE MERGED 2006/11/24 14:37:05 hjs 1.9.8.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [d9303d66641724715ea029df265c90ad0252f92d]

INTEGRATION: CWS ause069 (1.8.8); FILE MERGED 2006/11/24 14:37:04 hjs 1.8.8.1: #i70359# remove forced shell calls


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [1a8fb3eaea643f8c6ca0a7734ab9da6fa6f242c2]

INTEGRATION: CWS mbafixesfor22 (1.62.6); FILE MERGED 2007/01/16 11:29:24 mba 1.62.6.1: #i64552#: pass bIsAPI to every print call


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [05849ed00c5b1ba4172edc3e55a951caa0edde8f]

INTEGRATION: CWS mbafixesfor22 (1.30.136); FILE MERGED 2007/01/16 11:29:23 mba 1.30.136.1: #i64552#: pass bIsAPI to every print call


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [8dca8b11bf5a6e15770491380fc5452d1a45b1a4]

INTEGRATION: CWS mbafixesfor22 (1.25.196); FILE MERGED 2007/01/16 11:29:23 mba 1.25.196.1: #i64552#: pass bIsAPI to every print call


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [bea303aae95061ae149a009388cf5db1879939ca]

INTEGRATION: CWS mbafixesfor22 (1.8.346); FILE MERGED 2007/01/16 11:29:23 mba 1.8.346.1: #i64552#: pass bIsAPI to every print call


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [033799b198dc942d107f782b60b6998e0207e1f6]

INTEGRATION: CWS mbafixesfor22 (1.38.32); FILE MERGED 2007/01/16 11:29:23 mba 1.38.32.1: #i64552#: pass bIsAPI to every print call


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [256f34bd8812a61a130b8d2413b35d784db21baa]

INTEGRATION: CWS mbafixesfor22 (1.49.34); FILE MERGED 2007/01/16 11:29:22 mba 1.49.34.1: #i64552#: pass bIsAPI to every print call


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [302ab0621ecd48d73d239825ef51a6dcde2c9c05]

INTEGRATION: CWS calc41 (1.45.16); FILE MERGED 2007/01/10 14:57:54 er 1.45.16.1: #i73320# PasteDataFormat: CSV dialog cancelled by user isn't a failure


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [8cc55a1a357b3d91ffe239b9803207262e2c356e]

INTEGRATION: CWS calc41 (1.50.20); FILE MERGED 2007/01/17 15:18:41 nn 1.50.20.1: #i73567# KillEditView: Draw() is still needed


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [844ad6187a2779dc9a5d1f40e6cbcb2018e4414c]

INTEGRATION: CWS calc41 (1.29.50); FILE MERGED 2007/01/16 18:59:01 nn 1.29.50.1: #i72968# UpdateDrawView: re-create draw view if different page is shown


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [cf0a4ee7437586795d2af32c11ef79c78817daab]

INTEGRATION: CWS calc41 (1.10.142); FILE MERGED 2007/01/12 14:53:38 er 1.10.142.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [ecde0a933119dfdf0ada555140180ad308d5fdd1]

INTEGRATION: CWS calc41 (1.23.84); FILE MERGED 2007/01/12 14:53:37 er 1.23.84.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [10c4468a30f768359494a619f24bc0b66e3a15d9]

INTEGRATION: CWS calc41 (1.6.142); FILE MERGED 2007/01/12 14:53:37 er 1.6.142.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [25fc053f71d67f5e0bde5d0d14b881f2583bffb8]

INTEGRATION: CWS calc41 (1.49.118); FILE MERGED 2007/01/18 13:55:19 nn 1.49.118.1: #i73615# don't rely on SfxViewShell::Current while constructing the input line


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [a106028a05b074897e2f338dfe6915320874f7a1]

INTEGRATION: CWS calc41 (1.23.140); FILE MERGED 2007/01/12 10:38:32 nn 1.23.140.1: #i73404# when loading group limits, reset automatic flag


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [e37404284ef428117f5e051b5c4e1137fd3a256b]

INTEGRATION: CWS calc41 (1.16.84); FILE MERGED 2007/01/10 14:31:00 er 1.16.84.1: allocate note buffer


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [c68710061ca056c463dc86f568749862a25741a5]

INTEGRATION: CWS calc41 (1.25.50); FILE MERGED 2007/01/10 10:02:26 nn 1.25.50.1: #i73305# lcl_IsOtherTab: distinguish square from circle


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [2ff066d9e5e6823738760fd52cfe2b9f90930d86]

INTEGRATION: CWS calc41 (1.25.142); FILE MERGED 2007/01/12 14:53:36 er 1.25.142.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [0f2e5044f26e42b3285485723012e43d0e1b941e]

INTEGRATION: CWS calc41 (1.16.78); FILE MERGED 2007/01/10 18:53:26 nn 1.16.78.1: #i72188# use hash map for datapilot result members (patch from Jody)


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [4ad188ce407c9bc9842501c41f3d5806089d5a06]

INTEGRATION: CWS calc41 (1.9.84); FILE MERGED 2007/01/10 18:53:26 nn 1.9.84.1: #i72188# use hash map for datapilot result members (patch from Jody)


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [f67fa3c5072367ef09a004af77ecd59feb1296d3]

INTEGRATION: CWS calc41 (1.10.142); FILE MERGED 2007/01/10 18:53:25 nn 1.10.142.1: #i72188# use hash map for datapilot result members (patch from Jody)


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [557de71171a882ac986fc5462ce38fa0f751332d]

INTEGRATION: CWS calc41 (1.16.78); FILE MERGED 2007/01/12 14:53:36 er 1.16.78.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [bac054f029d396a18ed6cb737769df05847efbb7]

INTEGRATION: CWS calc41 (1.22.78); FILE MERGED 2007/01/12 14:53:36 er 1.22.78.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [d2acfc583c16afc40745bbe19ce3de1f4a3c74b5]

INTEGRATION: CWS calc41 (1.30.236); FILE MERGED 2007/01/12 14:53:36 er 1.30.236.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [eda9750b50bab1919705e12f88ab7fb528c417dc]

INTEGRATION: CWS calc41 (1.7.354); FILE MERGED 2007/01/10 18:53:25 nn 1.7.354.1: #i72188# use hash map for datapilot result members (patch from Jody)


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [f3491a57983d2b77667ce1d97748451d3c01a132]

INTEGRATION: CWS calc41 (1.5.354); FILE MERGED 2007/01/10 18:53:25 nn 1.5.354.1: #i72188# use hash map for datapilot result members (patch from Jody)


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [1838d51e28f9ec67ff6ddc8d330803909f3c7891]

INTEGRATION: CWS calc41 (1.96.14); FILE MERGED 2007/01/12 14:53:36 er 1.96.14.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-25  Oliver Bolte  <obo@openoffice.org>  [efef2ebc7648dbe1e8c2365e45c58292415b95b1]

INTEGRATION: CWS calc41 (1.17.78); FILE MERGED 2007/01/12 14:53:35 er 1.17.78.1: #i72457# dBase export now supports multibyte encodings, adapt field width determination and error handling


2007-01-23  Oliver Bolte  <obo@openoffice.org>  [abdcf24faaaa96a1143eaf5da81276b41f8486c8]

INTEGRATION: CWS mfdouble (1.9.128); FILE MERGED 2006/12/20 14:29:42 pl 1.9.128.1: #i71046# increase precision of MetricField and friends


2007-01-23  Oliver Bolte  <obo@openoffice.org>  [de9a8d75c80d4715f50f9fff63ae09e7decec51e]

INTEGRATION: CWS mfdouble (1.6.342); FILE MERGED 2006/12/20 14:29:42 pl 1.6.342.1: #i71046# increase precision of MetricField and friends


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [cd240070d87ad93f2589e612fc626b8da218ce82]

INTEGRATION: CWS aw039 (1.47.36); FILE MERGED 2006/12/20 16:16:44 aw 1.47.36.1: #i72502# reorganizing DrawingLayer Layer printing for SC


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [0a51714b0c9bfd483b802463480be9936e79e5c6]

INTEGRATION: CWS aw039 (1.22.36); FILE MERGED 2006/12/20 16:16:44 aw 1.22.36.1: #i72502# reorganizing DrawingLayer Layer printing for SC


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [9b03a22db7e8948290e45f077f9fbac6519fb892]

INTEGRATION: CWS aw039 (1.10.34); FILE MERGED 2007/01/09 12:31:09 aw 1.10.34.2: RESYNC: (1.10-1.11); FILE MERGED 2007/01/08 16:42:56 nn 1.10.34.1: #i73115# Notify/ScTabDeletedHint: hide page only if the visible page was deleted


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [ca75efca721523236d0c0d201e2d835019178f9d]

INTEGRATION: CWS aw039 (1.17.36); FILE MERGED 2006/12/20 16:16:44 aw 1.17.36.1: #i72502# reorganizing DrawingLayer Layer printing for SC


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [6e27a1974dcc564895da05641f1c5bf48aa61c99]

INTEGRATION: CWS dr52 (1.25.26); FILE MERGED 2006/12/19 15:17:00 dr 1.25.26.1: #i71497# check if external document exists


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [2e171f7a02257b89135d64ecc688e2707ce39772]

INTEGRATION: CWS dr52 (1.18.62); FILE MERGED 2006/12/19 14:22:23 dr 1.18.62.1: #i65103# add space between cell address and contents, needed for ZT


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [d0a32ef43e7517fee5f78bb58694a60d19402309]

INTEGRATION: CWS dr52 (1.23.124); FILE MERGED 2006/12/20 19:22:05 nn 1.23.124.1: #i63686# use hash map for members in ScDPSaveDimension (patch from Jody)


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [f42cbea614ad0d9733f72d659c43a0032843058d]

INTEGRATION: CWS dr52 (1.83.62); FILE MERGED 2007/01/04 18:19:48 er 1.83.62.1: #i72190# export proper RefMode record according to our document setting


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [32223739ab3bc6984cfaa77c68aad5e3c8834f71]

INTEGRATION: CWS dr52 (1.22.124); FILE MERGED 2007/01/08 15:35:47 dr 1.22.124.1: #i51348# moved import/export of shape names to svx


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [e9ddd43829b029bae1f7a2171762ed477bb9f738]

INTEGRATION: CWS dr52 (1.19.126); FILE MERGED 2007/01/04 18:19:48 er 1.19.126.1: #i72190# export proper RefMode record according to our document setting


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [e34092a26c0fb820645606223d59518a35f56d43]

INTEGRATION: CWS dr52 (1.13.330); FILE MERGED 2007/01/05 16:06:27 dr 1.13.330.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [c01b618d5e2b424dc89cceded1a264a8ec4b28e3]

INTEGRATION: CWS dr52 (1.20.132); FILE MERGED 2007/01/05 16:06:27 dr 1.20.132.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [113b98831e8b463ba46794f6399e5a4905fd9f76]

INTEGRATION: CWS dr52 (1.7.22); FILE MERGED 2007/01/08 16:59:58 dr 1.7.22.3: RESYNC: (1.7-1.8); FILE MERGED 2007/01/05 16:06:27 dr 1.7.22.2: #i51348# load drawing object names 2006/12/21 12:46:46 dr 1.7.22.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [81bd2e7854f560a2ac05cba32d3161f16c3b8943]

INTEGRATION: CWS dr52 (1.6.132); FILE MERGED 2006/12/21 12:46:46 dr 1.6.132.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [006fff69e51a5b4c915e7c73174f9e39df80dc3e]

INTEGRATION: CWS dr52 (1.24.62); FILE MERGED 2007/01/08 15:35:21 dr 1.24.62.2: #i51348# moved import/export of shape names to svx 2007/01/05 16:06:27 dr 1.24.62.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [903bcc70da9ae33fefc4ebd67b69ed3b3cb2af8c]

INTEGRATION: CWS dr52 (1.5.132); FILE MERGED 2006/12/21 12:46:45 dr 1.5.132.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [cab07316d21067e6243eeb344f6f673302ad3fee]

INTEGRATION: CWS dr52 (1.7.132); FILE MERGED 2007/01/05 16:06:26 dr 1.7.132.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [a1ba2249fb5e06282121d890c88a379ef39d2dc1]

INTEGRATION: CWS dr52 (1.46.134); FILE MERGED 2007/01/04 18:19:48 er 1.46.134.1: #i72190# export proper RefMode record according to our document setting


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [0a814e5184e8f2139ea483e8db93e72fa631d56b]

INTEGRATION: CWS dr52 (1.9.134); FILE MERGED 2007/01/04 18:19:47 er 1.9.134.1: #i72190# export proper RefMode record according to our document setting


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [23fe47297872de568ed40b765863110bb9a98e87]

INTEGRATION: CWS dr52 (1.3.58); FILE MERGED 2006/12/21 12:46:45 dr 1.3.58.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [ed07b4d444aaa2a756fccf055db92b22e1e9dc86]

INTEGRATION: CWS dr52 (1.1.4); FILE ADDED 2007/01/05 16:06:26 dr 1.1.4.2: #i51348# load drawing object names 2006/12/21 12:46:45 dr 1.1.4.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [f9f9bdcf3631c5224904651c9677c8cd613e8db3]

INTEGRATION: CWS dr52 (1.5.58); FILE MERGED 2007/01/05 16:06:26 dr 1.5.58.2: #i51348# load drawing object names 2006/12/21 12:46:45 dr 1.5.58.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [7f0460171c33b1319b7fc31570b459424fead226]

INTEGRATION: CWS dr52 (1.8.132); FILE MERGED 2007/01/05 16:06:26 dr 1.8.132.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [dbb10d5e2657450f5574d847b41588483e0ba1be]

INTEGRATION: CWS dr52 (1.5.132); FILE MERGED 2006/12/21 12:45:01 dr 1.5.132.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [4ce68880827e246b262e28de743590567778ae38]

INTEGRATION: CWS dr52 (1.15.124); FILE MERGED 2007/01/08 16:58:34 dr 1.15.124.2: RESYNC: (1.15-1.16); FILE MERGED 2007/01/04 16:44:08 er 1.15.124.1: #i72189# performance: in non-ascii identifiers avoid temporary strings by calling the proper CharClass::isLetterNumeric() method from IsCharWordChar()/IsWordChar()


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [6343a4926eeca2d6af03d54b9c16cf46466df05a]

INTEGRATION: CWS dr52 (1.4.58); FILE MERGED 2007/01/08 16:58:26 dr 1.4.58.2: RESYNC: (1.4-1.5); FILE MERGED 2006/12/21 12:45:00 dr 1.4.58.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [f23be7db8a08e591746c7824b6849ff9b54ae49b]

INTEGRATION: CWS dr52 (1.1.4); FILE ADDED 2007/01/10 09:09:11 dr 1.1.4.3: #i10000# missing include 2007/01/05 16:06:40 dr 1.1.4.2: #i51348# load drawing object names 2006/12/21 12:45:00 dr 1.1.4.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [62bb7d9d1ae3d996cc99bd53e4d94c28f8c9aebf]

INTEGRATION: CWS dr52 (1.1.4); FILE ADDED 2006/12/21 12:45:00 dr 1.1.4.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [bb7da408ef063d6de495e28fc900f1400e062d6a]

INTEGRATION: CWS dr52 (1.7.58); FILE MERGED 2007/01/05 16:06:40 dr 1.7.58.2: #i51348# load drawing object names 2006/12/21 12:45:00 dr 1.7.58.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [d31d2abd6fa98a082e50566a95bc5411015dfa3a]

INTEGRATION: CWS dr52 (1.19.124); FILE MERGED 2007/01/05 16:06:18 dr 1.19.124.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [fb07c457f5cad60d64816f6d34a877583a941d0b]

INTEGRATION: CWS dr52 (1.16.60); FILE MERGED 2007/01/08 16:57:49 dr 1.16.60.3: RESYNC: (1.16-1.17); FILE MERGED 2006/12/21 08:54:21 dr 1.16.60.2: add USDOLLAR function 2006/12/19 18:35:27 dr 1.16.60.1: #i72768# add support for cotangent functions


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [31a847d30df594531d2ffc7e282c667419d56e89]

INTEGRATION: CWS dr52 (1.11.124); FILE MERGED 2007/01/05 16:06:18 dr 1.11.124.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [70acea2ed1ae7e8bb09c8a5ddffce97f7af91811]

INTEGRATION: CWS dr52 (1.8.22); FILE MERGED 2006/12/21 12:47:05 dr 1.8.22.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [57dccd6d234606a736e39b662841672a1532db62]

INTEGRATION: CWS dr52 (1.10.22); FILE MERGED 2007/01/09 13:58:45 dr 1.10.22.5: resync problem 2007/01/08 16:57:29 dr 1.10.22.4: RESYNC: (1.10-1.11); FILE MERGED 2007/01/08 15:34:53 dr 1.10.22.3: #i51348# moved import/export of shape names to svx 2007/01/05 16:06:17 dr 1.10.22.2: #i51348# load drawing object names 2006/12/21 12:47:04 dr 1.10.22.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [abcfbd8a13d94c3c0ea8447c8236e5b342c2f665]

INTEGRATION: CWS dr52 (1.47.62); FILE MERGED 2007/01/09 12:20:58 dr 1.47.62.3: changes from #i68101# 2007/01/08 15:34:53 dr 1.47.62.2: #i51348# moved import/export of shape names to svx 2007/01/05 16:06:17 dr 1.47.62.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [b82c0b3a6345621918021811d6ecc7c3620b83fe]

INTEGRATION: CWS dr52 (1.9.124); FILE MERGED 2006/12/21 12:47:04 dr 1.9.124.1: merge dumper changes from CWS chart2mst3


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [fb046041f1fcff400b1950209683106afdcef352]

INTEGRATION: CWS dr52 (1.15.24); FILE MERGED 2006/12/20 19:22:05 nn 1.15.24.1: #i63686# use hash map for members in ScDPSaveDimension (patch from Jody)


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [441cffee7dcb15906beeaa34a4a561177ea72049]

INTEGRATION: CWS dr52 (1.13.60); FILE MERGED 2006/12/19 18:35:26 dr 1.13.60.1: #i72768# add support for cotangent functions


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [01322a01a85ce4dc89ce306c12882d6b48195061]

INTEGRATION: CWS dr52 (1.16.124); FILE MERGED 2007/01/08 16:55:20 dr 1.16.124.3: RESYNC: (1.16-1.17); FILE MERGED 2007/01/08 15:34:53 dr 1.16.124.2: #i51348# moved import/export of shape names to svx 2007/01/05 16:06:17 dr 1.16.124.1: #i51348# load drawing object names


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [0fe0bd8033cb6cf971470bd8d0a594fcb2cdb5b7]

INTEGRATION: CWS dr52 (1.63.22); FILE MERGED 2007/01/08 16:54:58 dr 1.63.22.2: RESYNC: (1.63-1.64); FILE MERGED 2006/12/18 12:54:39 dr 1.63.22.1: #i72713# load broken ARRAY formulas


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [42451d6f44f4188e661f3a05293d9fe5ea1257c5]

INTEGRATION: CWS dr52 (1.36.132); FILE MERGED 2007/01/09 13:50:06 dr 1.36.132.1: missing exception file


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [d594213d2c643362cdb0dcc9021fab5f8e077d4f]

INTEGRATION: CWS dr52 (1.65.124); FILE MERGED 2007/01/04 18:19:47 er 1.65.124.1: #i72190# export proper RefMode record according to our document setting


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [c917cd2d35ab2b7d118350069016132ac9150808]

INTEGRATION: CWS dr52 (1.22.62); FILE MERGED 2007/01/04 16:44:07 er 1.22.62.1: #i72189# performance: in non-ascii identifiers avoid temporary strings by calling the proper CharClass::isLetterNumeric() method from IsCharWordChar()/IsWordChar()


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [682b105357ce23f63ba01ebd719e5e92af8daec2]

INTEGRATION: CWS dr52 (1.64.62); FILE MERGED 2007/01/08 16:52:18 dr 1.64.62.2: RESYNC: (1.64-1.66); FILE MERGED 2007/01/04 16:44:07 er 1.64.62.1: #i72189# performance: in non-ascii identifiers avoid temporary strings by calling the proper CharClass::isLetterNumeric() method from IsCharWordChar()/IsWordChar()


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [5615bf25e06dfca82e14f0d8b6f198d16edf5f5a]

INTEGRATION: CWS dr52 (1.6.62); FILE MERGED 2007/01/08 16:52:09 dr 1.6.62.2: RESYNC: (1.6-1.7); FILE MERGED 2007/01/04 17:34:07 er 1.6.62.1: #i72190# Xcl reference parser: use the current table from the result parm rather than resetting to table 0


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [8db363b26c902b4c29c31603812fe293af8d39f7]

INTEGRATION: CWS dr52 (1.9.126); FILE MERGED 2007/01/09 14:23:48 dr 1.9.126.2: unxsols compiler error 2006/12/20 19:22:05 nn 1.9.126.1: #i63686# use hash map for members in ScDPSaveDimension (patch from Jody)


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [f970d416a55293003fc86250ac6d2f270167d727]

INTEGRATION: CWS dr52 (1.8.340); FILE MERGED 2006/12/20 19:22:04 nn 1.8.340.1: #i63686# use hash map for members in ScDPSaveDimension (patch from Jody)


2007-01-22  Oliver Bolte  <obo@openoffice.org>  [b5fe05aa1aebbe04bf8a0167028e40469169dc14]

INTEGRATION: CWS dr52 (1.27.62); FILE MERGED 2007/01/04 16:44:07 er 1.27.62.1: #i72189# performance: in non-ascii identifiers avoid temporary strings by calling the proper CharClass::isLetterNumeric() method from IsCharWordChar()/IsWordChar()


2007-01-15  Vladimir Glazounov  <vg@openoffice.org>  [310a982cbeae10c37bd28ca8b479901ea58ab673]

INTEGRATION: CWS dba22b (1.26.28); FILE MERGED 2006/12/12 08:17:34 fs 1.26.28.1: #i71260# GetUnoControl now taking an SdrView, additionally to the output device


2007-01-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f8d3178cd9e6d9645961091e617ea3e72fb073e]

#i72939#: clean up types (64bit clean)


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [e8b8cb506217321606bbc44371bc4b4eef78509d]

INTEGRATION: CWS caloc (1.64.30); FILE MERGED 2006/11/17 14:36:41 er 1.64.30.1: for consistency's sake initialize and check things even if not used at the moment


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6366dbb63974521dd6dd3faec2ad93e5359c7ec3]

INTEGRATION: CWS caloc (1.16.100); FILE MERGED 2006/11/08 18:51:14 er 1.16.100.1: #i47233# fill cells taking OrdinalSuffix into account; contributed by Muthu Subramanian <muthusuba@ooo>


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [88a6155485f7849216765affe40869cfcaaf937e]

INTEGRATION: CWS caloc (1.10.100); FILE MERGED 2006/11/08 18:51:14 er 1.10.100.1: #i47233# fill cells taking OrdinalSuffix into account; contributed by Muthu Subramanian <muthusuba@ooo>


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [2f48662b375c995261777f38cd034c70a84ddd8a]

INTEGRATION: CWS caloc (1.47.76); FILE MERGED 2006/11/08 18:51:14 er 1.47.76.1: #i47233# fill cells taking OrdinalSuffix into account; contributed by Muthu Subramanian <muthusuba@ooo>


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0056c6f366c6b08dd0d5bbd1535305445c76fa34]

INTEGRATION: CWS caloc (1.46.74); FILE MERGED 2006/11/08 18:51:13 er 1.46.74.1: #i47233# fill cells taking OrdinalSuffix into account; contributed by Muthu Subramanian <muthusuba@ooo>


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [e666ed00ba2d8455ed8d3ff32da9af25ad62c2be]

INTEGRATION: CWS aw038 (1.6.114); FILE MERGED 2006/12/05 10:34:55 aw 1.6.114.1: #i68101# 2nd version of dialogs


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0b6b255f19c635a24650aef5c9f6c772fed53886]

INTEGRATION: CWS aw038 (1.67.180); FILE MERGED 2006/12/18 17:07:03 aw 1.67.180.3: #i68101# ressource changes as described by the spec 2006/12/06 16:10:34 aw 1.67.180.2: #i68101# adapted ressources for new texts 2006/12/05 10:34:54 aw 1.67.180.1: #i68101# 2nd version of dialogs


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [8d945f9dc591a22f8e24af868775305f8a917450]

INTEGRATION: CWS aw038 (1.27.180); FILE MERGED 2006/12/06 16:10:34 aw 1.27.180.2: #i68101# adapted ressources for new texts 2006/12/05 10:34:54 aw 1.27.180.1: #i68101# 2nd version of dialogs


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [99ab1c8f7a131a306bcbc293b22449a29b1de135]

INTEGRATION: CWS aw038 (1.30.18); FILE MERGED 2006/12/06 16:14:11 aw 1.30.18.3: #i68101# rmoved old NameDialog code 2006/12/05 10:34:54 aw 1.30.18.2: #i68101# 2nd version of dialogs 2006/12/04 11:46:03 aw 1.30.18.1: #i68101# change to NameTitleDesc dialog (from Name dialog) for supporting Title and Description for SdrObjects


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9de626d8ec51881fc0c8b316f6bbabd692dfd9ce]

INTEGRATION: CWS aw038 (1.22.18); FILE MERGED 2006/12/05 10:34:54 aw 1.22.18.1: #i68101# 2nd version of dialogs


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [f66895ba619d4f596fc8db2907988c3035797e6a]

INTEGRATION: CWS aw038 (1.32.32); FILE MERGED 2006/12/05 17:17:06 aw 1.32.32.1: #i68101# added SC slot for ObjectTitleDescription


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [d41b496ec35513d6e77af6a9491aa0b51590b68d]

INTEGRATION: CWS aw038 (1.16.180); FILE MERGED 2006/12/06 16:10:19 aw 1.16.180.2: #i68101# adapted ressources for new texts 2006/12/05 17:17:06 aw 1.16.180.1: #i68101# added SC slot for ObjectTitleDescription


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9050d6020c978f9f6cabbfa2b659eaec82e3412a]

INTEGRATION: CWS aw038 (1.51.32); FILE MERGED 2006/12/05 14:21:59 aw 1.51.32.2: #i68101# definition of HID_SC_TITLE_DESCRIPTION_OBJECT changed, old place was violating value bounds 2006/12/05 10:34:46 aw 1.51.32.1: #i68101# 2nd version of dialogs


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [d79da4f6b1d329d63b04c3bcf8d643ffc67ad1d4]

INTEGRATION: CWS fwk56 (1.61.18); FILE MERGED 2006/12/04 14:52:21 mav 1.61.18.1: #i68012# fix resizing of embedded object


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0e16671619e9df3a01a464ed1c1876bdf9eec6af]

INTEGRATION: CWS fwk56 (1.20.18); FILE MERGED 2006/12/04 14:52:22 mav 1.20.18.1: #i68012# fix resizing of embedded object


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [f8bf8e4da61c5b8bd45033d1cef15b608061cb9f]

INTEGRATION: CWS dr51 (1.2.300); FILE MERGED 2006/11/14 20:13:40 er 1.2.300.1: correct PRJNAME


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [2916842d3c0b217a3c72c3b86b5f65f08b5a01b0]

INTEGRATION: CWS dr51 (1.43.6); FILE MERGED 2006/12/01 14:16:38 dr 1.43.6.2: RESYNC: (1.43-1.44); FILE MERGED 2006/10/25 13:20:29 er 1.43.6.1: #i15509# reenabled: invoke CSV text import dialog when pasting unformatted text with delimiters from clipboard


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [073eef848d99e3e1a63bc7b8bf7fabff97cb0408]

INTEGRATION: CWS dr51 (1.88.6); FILE MERGED 2006/10/30 16:06:22 dr 1.88.6.1: #i70592# correct en-US descriptions of LEFT and RIGHT


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [16a7aabbc37444c521c7d5bc2f9d76ad00da86f2]

INTEGRATION: CWS dr51 (1.15.86); FILE MERGED 2006/11/08 17:35:47 nn 1.15.86.1: #132702# sort/filter to different position: check for overflow


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [55301cc5c41cc909c849bd4203a71f8ad6c8df54]

INTEGRATION: CWS dr51 (1.10.6); FILE MERGED 2006/11/02 13:08:03 er 1.10.6.2: #i15509# reverted separator preselection change, as splitting columns on tabs was the previous behavior without this feature 2006/11/02 11:44:20 er 1.10.6.1: #i15509# if from clipboard don't preselect separators, and always Unicode


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [880b19549c4378fd90ad9b54880fc91f2ebcef50]

INTEGRATION: CWS dr51 (1.30.86); FILE MERGED 2006/10/30 10:05:42 dr 1.30.86.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0a71acbfbc3570638fac38a4bd58aa66bd8a237d]

INTEGRATION: CWS dr51 (1.46.20); FILE MERGED 2006/10/30 10:05:42 dr 1.46.20.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [50fa29d5d6b5c792e1d25c04746014cb6a7b37c6]

INTEGRATION: CWS dr51 (1.25.86); FILE MERGED 2006/10/30 10:05:42 dr 1.25.86.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [27bf10d6add0d265801824c5df963d1daf46328b]

INTEGRATION: CWS dr51 (1.17.86); FILE MERGED 2006/10/30 10:05:42 dr 1.17.86.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [b1b266989ec43b35956a40ed8949bd0084d7dbfc]

INTEGRATION: CWS dr51 (1.19.86); FILE MERGED 2006/10/30 10:05:42 dr 1.19.86.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6759a7fd6ee1179c8f06844b295d3b548ae5ccff]

INTEGRATION: CWS dr51 (1.33.86); FILE MERGED 2006/10/30 10:05:42 dr 1.33.86.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [bb2a0fad427c41c1dbbbbb9fd084fa8995e03359]

INTEGRATION: CWS dr51 (1.68.86); FILE MERGED 2006/10/30 10:05:42 dr 1.68.86.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [790ab3bda0be41b336c403a44b15ec8ad653cdef]

INTEGRATION: CWS dr51 (1.11.86); FILE MERGED 2006/10/30 10:05:41 dr 1.11.86.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [e9ec8ff27c1bab9fd4019336d331c3acefcd6600]

INTEGRATION: CWS dr51 (1.30.86); FILE MERGED 2006/10/30 10:05:41 dr 1.30.86.1: #i68213# set correct event source


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [bf26850490834749320fda46a4ae397ef41090a5]

INTEGRATION: CWS dr51 (1.20.18); FILE MERGED 2006/11/08 09:30:37 dr 1.20.18.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [b3c3e05e703de0dbf6eeb322bde3322915731b67]

INTEGRATION: CWS dr51 (1.26.92); FILE MERGED 2006/12/01 13:58:43 dr 1.26.92.2: RESYNC: (1.26-1.27); FILE MERGED 2006/11/08 09:30:37 dr 1.26.92.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [4f43cebcb6dab6ae7acd19e08e273f14d6a2ea89]

INTEGRATION: CWS dr51 (1.6.4); FILE MERGED 2006/12/01 13:58:23 dr 1.6.4.2: RESYNC: (1.6-1.7); FILE MERGED 2006/11/08 09:30:37 dr 1.6.4.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [a47fcacf5feead7a69c4c5a8717c3e26bfd56612]

INTEGRATION: CWS dr51 (1.20.92); FILE MERGED 2006/11/08 09:30:37 dr 1.20.92.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [e0d8eb9c0b7bff802cd669b8c5615b6538022580]

INTEGRATION: CWS dr51 (1.8.94); FILE MERGED 2006/11/08 09:30:36 dr 1.8.94.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [8b7b015f13eaa0ae97c5eb504aa0856f4a5ba22b]

INTEGRATION: CWS dr51 (1.19.92); FILE MERGED 2006/11/08 09:30:36 dr 1.19.92.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [bd5b0b42110cf647833691215ad365256c6e24fb]

INTEGRATION: CWS dr51 (1.8.274); FILE MERGED 2006/10/30 14:09:30 dr 1.8.274.1: #i70925# reduce function parameter count if no more tokens available on stack


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6e9dfd375e1b5f45dc953f43c28bbeaaa104111f]

INTEGRATION: CWS dr51 (1.19.146); FILE MERGED 2006/11/08 09:30:36 dr 1.19.146.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [c16cdc40555311b894cd97cedad1ae2d10ccf781]

INTEGRATION: CWS dr51 (1.16.92); FILE MERGED 2006/11/02 19:59:43 er 1.16.92.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [ed82959ac78ef8a156d34b3724521bb33bfe8375]

INTEGRATION: CWS dr51 (1.15.84); FILE MERGED 2006/11/08 09:30:47 dr 1.15.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [4fddbebb7197dcc46e1ffb73aab2bc914d7b8954]

INTEGRATION: CWS dr51 (1.4.4); FILE MERGED 2006/11/08 09:30:47 dr 1.4.4.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [7ceed806cba062b40b15c89ff6b3ec352bf14a1f]

INTEGRATION: CWS dr51 (1.23.18); FILE MERGED 2006/11/08 09:30:27 dr 1.23.18.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [ea734d1aa413f42d3c15ef3b8e18f09fbe6fe037]

INTEGRATION: CWS dr51 (1.27.84); FILE MERGED 2006/12/01 13:57:41 dr 1.27.84.2: RESYNC: (1.27-1.28); FILE MERGED 2006/11/08 09:30:26 dr 1.27.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [3204c0b8008ce6725f0c1b4a1f36b38c970e0d9e]

INTEGRATION: CWS dr51 (1.16.6); FILE MERGED 2006/11/02 19:59:42 er 1.16.6.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [33f0c670914edadf839ae6da2cbb054ef2f2e641]

INTEGRATION: CWS dr51 (1.9.4); FILE MERGED 2006/12/01 13:57:12 dr 1.9.4.3: RESYNC: (1.9-1.10); FILE MERGED 2006/11/08 09:30:26 dr 1.9.4.2: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding' 2006/10/30 13:59:12 dr 1.9.4.1: #i70925# dump NAME


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [a608b12cfe3e86293374d21a7469eac6c7bff38d]

INTEGRATION: CWS dr51 (1.30.18); FILE MERGED 2006/11/08 09:30:26 dr 1.30.18.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [cf8a9bfe60b8ea055d929413c538050cb23e1a5e]

INTEGRATION: CWS dr51 (1.19.84); FILE MERGED 2006/11/08 09:30:26 dr 1.19.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [1edd964406f52888aad9cbcd15a2852e767d7f50]

INTEGRATION: CWS dr51 (1.20.84); FILE MERGED 2006/11/08 09:30:25 dr 1.20.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9ffc75b4d4e126959134fc19f5ed6a2012c07d2d]

INTEGRATION: CWS dr51 (1.25.84); FILE MERGED 2006/11/08 09:30:25 dr 1.25.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [d1b1d0ac1f7d379a6f34dde143ca717c348fdeb3]

INTEGRATION: CWS dr51 (1.10.84); FILE MERGED 2006/11/08 09:30:25 dr 1.10.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [7d68c00a069d5b8ba3d2b9e48f8e40b47eca334b]

INTEGRATION: CWS dr51 (1.12.84); FILE MERGED 2006/11/08 09:30:25 dr 1.12.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [d839b2b8c55a48a4b417a472951e6e3ebdb4e234]

INTEGRATION: CWS dr51 (1.17.84); FILE MERGED 2006/11/08 09:30:24 dr 1.17.84.2: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding' 2006/11/06 17:19:41 dr 1.17.84.1: #i70418# do not export cached values for big external references


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [f861a21116013cbac763bf2f0648d03b58d670e8]

INTEGRATION: CWS dr51 (1.26.84); FILE MERGED 2006/11/08 09:30:24 dr 1.26.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [734e720db224de20aa5ba8daabf2de7d7291a443]

INTEGRATION: CWS dr51 (1.16.84); FILE MERGED 2006/11/08 09:30:24 dr 1.16.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [431f1c8fd0bb12920b0e67d43f0c7634722eaec4]

INTEGRATION: CWS dr51 (1.17.84); FILE MERGED 2006/11/08 09:30:24 dr 1.17.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [af475fd7bb2875eaf58f058b38a8a76eb0674b17]

INTEGRATION: CWS dr51 (1.62.18); FILE MERGED 2006/12/01 13:56:17 dr 1.62.18.2: RESYNC: (1.62-1.63); FILE MERGED 2006/11/08 09:30:24 dr 1.62.18.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [10e4c8224efea378c1fb65473068ff1aea4250b6]

INTEGRATION: CWS dr51 (1.83.18); FILE MERGED 2006/12/01 13:56:08 dr 1.83.18.2: RESYNC: (1.83-1.84); FILE MERGED 2006/11/08 09:30:23 dr 1.83.18.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [95806a88e7d5488dc53ceee736dac21d1942ca60]

INTEGRATION: CWS dr51 (1.28.84); FILE MERGED 2006/11/08 09:30:23 dr 1.28.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [8cd211cfb71cfa127fe428556bd8b45fb48a2a88]

INTEGRATION: CWS dr51 (1.83.84); FILE MERGED 2006/11/08 09:30:23 dr 1.83.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [ce4c5387eee6a2612a1ca3704abf4d04988edf13]

INTEGRATION: CWS dr51 (1.40.84); FILE MERGED 2006/11/02 19:59:42 er 1.40.84.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [1c732cbc1c8830af769ab43bf0fbd7b53cf2edc8]

INTEGRATION: CWS dr51 (1.43.6); FILE MERGED 2006/11/02 19:59:42 er 1.43.6.2: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula 2006/10/30 14:09:23 dr 1.43.6.1: #i70925# reduce function parameter count if no more tokens available on stack


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0608b5ab3b0414dbe0f4db9892d4c22386fa62bc]

INTEGRATION: CWS dr51 (1.86.84); FILE MERGED 2006/11/10 10:21:51 dr 1.86.84.1: #i71389# && -> &


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [2d526cfa2c2495424150ff1df2dd0582bcd2bb70]

INTEGRATION: CWS dr51 (1.24.86); FILE MERGED 2006/11/02 19:59:42 er 1.24.86.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [2526feeca64a8b48c34094e0a0d053c1f1198cf7]

INTEGRATION: CWS dr51 (1.43.6); FILE MERGED 2006/11/02 19:59:41 er 1.43.6.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [9acf4d8608ece81df6111dd88d302850ff28e7de]

INTEGRATION: CWS dr51 (1.28.84); FILE MERGED 2006/11/02 19:59:41 er 1.28.84.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [0519fa36e5e31a9aaa3016714772f6f23ef0665e]

INTEGRATION: CWS dr51 (1.41.6); FILE MERGED 2006/11/23 19:10:56 er 1.41.6.3: #i57401# ScCountIf: handle array case of second argument 2006/11/08 15:46:23 dr 1.41.6.2: #i70001# decode URL for CELL function 2006/11/02 19:59:41 er 1.41.6.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6b74fb90ddc0eafa58ae890b6485cfe1a0cc54d9]

INTEGRATION: CWS dr51 (1.64.6); FILE MERGED 2006/11/02 20:31:56 er 1.64.6.2: retab; this file once was already tab free ... 2006/11/02 19:59:41 er 1.64.6.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [413fdee6939d93d2eaf0d3375c12436a5d2d1223]

INTEGRATION: CWS dr51 (1.6.6); FILE MERGED 2006/11/02 20:36:46 er 1.6.6.1: retab; this file once was already tab free ...


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [310afc499e90b40937c915a8a485834a890766af]

INTEGRATION: CWS dr51 (1.26.6); FILE MERGED 2006/11/02 19:59:40 er 1.26.6.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [383165dfce76e7cf450b27a53a927cae88ff477a]

INTEGRATION: CWS dr51 (1.35.86); FILE MERGED 2006/11/08 17:35:54 nn 1.35.86.1: #132702# sort/filter to different position: check for overflow


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [427be34ccc0962014ca8cdb78cf2049f63970eb5]

INTEGRATION: CWS dr51 (1.27.6); FILE MERGED 2006/11/02 19:59:40 er 1.27.6.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [b50c3cfc7f76cae47f7908431c24d7f5565f884b]

INTEGRATION: CWS dr51 (1.4.302); FILE MERGED 2006/11/14 20:12:19 er 1.4.302.1: correct PRJNAME


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [d19fd6e284c4a7c222faec8aad729594c190ac7c]

INTEGRATION: CWS dr51 (1.4.302); FILE MERGED 2006/11/14 20:12:18 er 1.4.302.1: correct PRJNAME


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [8dd1bf6de59aa12a0c84f66e0cbd443250ec8ead]

INTEGRATION: CWS dr51 (1.6.302); FILE MERGED 2006/11/02 19:59:40 er 1.6.302.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [d07688714455d8f0627668d7b322ae81e4d69911]

INTEGRATION: CWS dr51 (1.20.6); FILE MERGED 2006/12/01 13:50:56 dr 1.20.6.2: RESYNC: (1.20-1.21); FILE MERGED 2006/11/02 19:59:40 er 1.20.6.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [3c3df008e1da74c9d5ed9a1eaaa232247e23ac38]

INTEGRATION: CWS dr51 (1.10.6); FILE MERGED 2006/11/02 20:40:14 er 1.10.6.1: retab; this file once was already tab free ...


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [900069a2cbef2160ea9d97c2a863b2cd92874210]

INTEGRATION: CWS dr51 (1.12.26); FILE MERGED 2006/11/14 20:10:45 er 1.12.26.1: correct PRJNAME


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [6fa1759b088fdcd2bb94970de2c44a4d5d645ec3]

INTEGRATION: CWS dr51 (1.14.26); FILE MERGED 2006/11/14 20:10:45 er 1.14.26.1: correct PRJNAME


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [b9dfa8118f61589aaa6f3369aee575d5cc749136]

INTEGRATION: CWS dr51 (1.18.22); FILE MERGED 2006/11/02 20:00:16 er 1.18.22.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [1d9f0e54094aada85f7ba938680151af307c95af]

INTEGRATION: CWS dr51 (1.12.76); FILE MERGED 2006/11/02 20:00:16 er 1.12.76.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [ab92826a9420e487ac886fba06bd35f3101710ad]

INTEGRATION: CWS dr51 (1.15.76); FILE MERGED 2006/11/02 20:00:16 er 1.15.76.1: #i70041# add missing arguments support for most obvious functions of Xcl imported files while writing the correct default parameters to OOoXML's plain old formula


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [e803b6c233cc51fe30e0ac4eb4fb7cb5ac215039]

INTEGRATION: CWS autokerning (1.19.70); FILE MERGED 2006/10/06 09:59:48 nn 1.19.70.1: #i16874# enable pair kerning as drawing layer default in new documents


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [a1f602e44490fa0dfad34cc5beb5d10010d5358d]

INTEGRATION: CWS autokerning (1.34.70); FILE MERGED 2006/10/06 09:59:27 nn 1.34.70.1: #i16874# enable pair kerning as drawing layer default in new documents


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [4e9a4c4649ef0a5a833a9d426b656593c25832a9]

INTEGRATION: CWS autokerning (1.31.70); FILE MERGED 2006/11/15 19:22:14 cl 1.31.70.2: RESYNC: (1.31-1.32); FILE MERGED 2006/10/06 09:59:27 nn 1.31.70.1: #i16874# enable pair kerning as drawing layer default in new documents


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [3fefb4ca1cd8f2ae43ac7e5fb7a0f42dad22085f]

INTEGRATION: CWS autokerning (1.58.70); FILE MERGED 2006/11/15 19:22:06 cl 1.58.70.2: RESYNC: (1.58-1.59); FILE MERGED 2006/10/06 09:59:27 nn 1.58.70.1: #i16874# enable pair kerning as drawing layer default in new documents


2006-12-19  Ivo Hinkelmann  <ihi@openoffice.org>  [ac5fcb78d194af8d20113b6dc27092996a4deae6]

INTEGRATION: CWS autokerning (1.92.134); FILE MERGED 2006/11/15 19:17:46 cl 1.92.134.2: RESYNC: (1.92-1.94); FILE MERGED 2006/10/06 09:59:11 nn 1.92.134.1: #i16874# enable pair kerning as drawing layer default in new documents


2006-12-14  Kurt Zenker  <kz@openoffice.org>  [a452f74881e55b66fe5f0944c119a78873196eb8]

#i10000# #include <sal/config.h>


2006-12-13  Kurt Zenker  <kz@openoffice.org>  [7e8655249294d2d3bbcb0ea5e10e8bc6109c712a]

INTEGRATION: CWS dba22ui (1.48.64); FILE MERGED 2006/12/11 11:46:40 fs 1.48.64.1: #i72457# +SCERR_EXPORT_FIELDWIDTH


2006-12-13  Kurt Zenker  <kz@openoffice.org>  [69d59601701efc0eddac11b9286ff97150d8978b]

INTEGRATION: CWS dba22ui (1.6.64); FILE MERGED 2006/12/11 11:46:26 fs 1.6.64.1: #i72457# +SCERR_EXPORT_FIELDWIDTH


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [5461ced3cea580d0e79d3b114592abd0a63a59ee]

INTEGRATION: CWS aw037 (1.19.2); FILE MERGED 2006/11/28 10:42:50 aw 1.19.2.1: #i65399# made show/hideMarkHandles more concrete


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [31f9ac2bf5fc7889030c9b1571b89faf79e2e6c7]

INTEGRATION: CWS aw037 (1.9.2); FILE MERGED 2006/11/28 10:42:50 aw 1.9.2.1: #i65399# made show/hideMarkHandles more concrete


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [8ac1683022db4210170b231024897c4e2ebd898e]

INTEGRATION: CWS aw037 (1.13.2); FILE MERGED 2006/11/28 10:42:49 aw 1.13.2.1: #i65399# made show/hideMarkHandles more concrete


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [697ccefa810741e7f1526eccf5f19a463bcd5b08]

INTEGRATION: CWS aw037 (1.19.4); FILE MERGED 2006/11/27 16:39:18 aw 1.19.4.1: #i65399# Some necessary cleanups/reworks of handles after aw024


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [c1d6839cb0bb7f87d0368a1262dcdcb11fd7f6fa]

INTEGRATION: CWS aw037 (1.48.4); FILE MERGED 2006/11/27 16:39:18 aw 1.48.4.1: #i65399# Some necessary cleanups/reworks of handles after aw024


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [cf83485cde759ce721a02dcc41c66297cec1dbce]

INTEGRATION: CWS aw037 (1.43.4); FILE MERGED 2006/11/27 16:39:18 aw 1.43.4.1: #i65399# Some necessary cleanups/reworks of handles after aw024


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [51fd44bf01e51a17030057fb536a0a7e39e55d04]

INTEGRATION: CWS aw037 (1.10.4); FILE MERGED 2006/11/27 16:39:18 aw 1.10.4.1: #i65399# Some necessary cleanups/reworks of handles after aw024


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [acc003ffd12a1de2ccc57c2693ff1d0a785b31c2]

INTEGRATION: CWS aw037 (1.20.4); FILE MERGED 2006/11/27 16:39:18 aw 1.20.4.1: #i65399# Some necessary cleanups/reworks of handles after aw024


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [a470f3190f6f34beec8a1c9a3565ba59b464e575]

INTEGRATION: CWS aw037 (1.9.4); FILE MERGED 2006/11/27 16:39:17 aw 1.9.4.1: #i65399# Some necessary cleanups/reworks of handles after aw024


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [4854db1e05fa1d52a97637f9ff49e3fcaa0d951d]

INTEGRATION: CWS aw037 (1.16.4); FILE MERGED 2006/11/27 16:39:17 aw 1.16.4.1: #i65399# Some necessary cleanups/reworks of handles after aw024


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [53018e78597c1561089ba08eb1151eedeb700c3d]

INTEGRATION: CWS aw037 (1.20.4); FILE MERGED 2006/11/27 16:39:17 aw 1.20.4.1: #i65399# Some necessary cleanups/reworks of handles after aw024


2006-12-12  Kurt Zenker  <kz@openoffice.org>  [56f2b9724ccb278a5f075baf09fb488b813fb752]

INTEGRATION: CWS aw037 (1.34.4); FILE MERGED 2006/11/22 12:56:42 aw 1.34.4.1: #i71538# do not use SdrExchangeView directly, use SdrView due to places where casts to SDrView take place


2006-12-05  Rüdiger Timm  <rt@openoffice.org>  [4a3a42d83c4f10efb02f776f4d945af168ff2eab]

#i10000# Obsolete headers removed.


2006-12-04  Rüdiger Timm  <rt@openoffice.org>  [a7e27c6cc5295193b8319a9ae312abd7436bfee5]

INTEGRATION: CWS pdf04 (1.56.12); FILE MERGED 2006/11/21 13:28:12 pl 1.56.12.2: RESYNC: (1.56-1.57); FILE MERGED 2006/10/18 14:38:51 pl 1.56.12.1: #i68873# export bookmarks optionally


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [24cc7d791cda19248fc1b057bec3b4335db5c6e6]

INTEGRATION: CWS scpivotcacheimport (1.26.84); FILE MERGED 2006/10/20 13:47:36 dr 1.26.84.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [a05b5f5e34fa6f97171e238497f142990929fa2a]

INTEGRATION: CWS scpivotcacheimport (1.8.294); FILE MERGED 2006/10/25 13:53:10 dr 1.8.294.4: #i70650# handle more special cases for cache fields 2006/10/24 15:45:07 dr 1.8.294.3: #i70650# support for pivottables based on database 2006/10/23 09:01:15 dr 1.8.294.2: RESYNC: (1.8-1.9); FILE MERGED 2006/10/20 13:47:35 dr 1.8.294.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [4719bc1be6995232abdd3fc6fb35977a8f7b5d7a]

INTEGRATION: CWS scpivotcacheimport (1.5.6); FILE MERGED 2006/10/23 11:33:38 dr 1.5.6.4: #i10000# merge error 2006/10/23 09:01:06 dr 1.5.6.3: RESYNC: (1.5-1.6); FILE MERGED 2006/10/20 13:47:35 dr 1.5.6.2: #i70650# import pivotcache from external pivottables into own sheet 2006/10/16 15:09:42 dr 1.5.6.1: merge pivotcache dumper from calc39


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [e52b383930a6fab405953312052f7280170491bf]

INTEGRATION: CWS scpivotcacheimport (1.9.84); FILE MERGED 2006/10/25 13:53:10 dr 1.9.84.3: #i70650# handle more special cases for cache fields 2006/10/20 15:09:12 dr 1.9.84.2: #i70650# import pivotcache from external pivottables into own sheet 2006/10/20 13:47:35 dr 1.9.84.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [e778bc372e509ddc0812c9f8a74f82c1015752d3]

INTEGRATION: CWS scpivotcacheimport (1.9.86); FILE MERGED 2006/10/20 13:47:35 dr 1.9.86.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [adc64b05d26c6ec62f8f198bf49dcd0cc71b45e8]

INTEGRATION: CWS scpivotcacheimport (1.27.76); FILE MERGED 2006/10/20 13:45:48 dr 1.27.76.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [93b1c5c9c3b8ee1c0099acd26a233f512d750471]

INTEGRATION: CWS scpivotcacheimport (1.9.78); FILE MERGED 2006/10/25 13:52:34 dr 1.9.78.2: #i70650# handle more special cases for cache fields 2006/10/20 13:45:48 dr 1.9.78.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [746b79ceca156d76e84bcea77a4415a2dbfc2075]

INTEGRATION: CWS scpivotcacheimport (1.6.6); FILE MERGED 2006/11/22 12:11:15 dr 1.6.6.5: RESYNC: (1.6-1.7); FILE MERGED 2006/10/25 13:52:34 dr 1.6.6.4: #i70650# handle more special cases for cache fields 2006/10/24 15:45:20 dr 1.6.6.3: #i70650# support for pivottables based on database 2006/10/20 13:45:48 dr 1.6.6.2: #i70650# import pivotcache from external pivottables into own sheet 2006/10/16 15:09:34 dr 1.6.6.1: merge pivotcache dumper from calc39


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [04de214ab378b6319b0bc1de5e31bae1a525beb6]

INTEGRATION: CWS scpivotcacheimport (1.8.6); FILE MERGED 2006/10/25 13:52:34 dr 1.8.6.4: #i70650# handle more special cases for cache fields 2006/10/24 15:45:20 dr 1.8.6.3: #i70650# support for pivottables based on database 2006/10/20 13:45:48 dr 1.8.6.2: #i70650# import pivotcache from external pivottables into own sheet 2006/10/16 15:09:34 dr 1.8.6.1: merge pivotcache dumper from calc39


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [fabb3033b68e663d82cb845652f05479c8593796]

INTEGRATION: CWS scpivotcacheimport (1.12.76); FILE MERGED 2006/10/25 13:52:33 dr 1.12.76.6: #i70650# handle more special cases for cache fields 2006/10/24 15:45:19 dr 1.12.76.5: #i70650# support for pivottables based on database 2006/10/23 12:28:19 dr 1.12.76.4: #i70650# do not use 'pivot' in UI 2006/10/23 08:59:49 dr 1.12.76.3: RESYNC: (1.12-1.13); FILE MERGED 2006/10/20 15:09:01 dr 1.12.76.2: #i70650# import pivotcache from external pivottables into own sheet 2006/10/20 13:45:48 dr 1.12.76.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [c0b80e01a69a4c79bb07bb3a3ac35bf5338a05cf]

INTEGRATION: CWS scpivotcacheimport (1.24.76); FILE MERGED 2006/10/20 13:45:47 dr 1.24.76.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [db228e9689d15dd1b4fdea9ea5be17cf7fbf1d19]

INTEGRATION: CWS scpivotcacheimport (1.14.66); FILE MERGED 2006/10/20 13:45:47 dr 1.14.66.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [6d989910859c972569d5718b0409c995128064af]

INTEGRATION: CWS scpivotcacheimport (1.62.6); FILE MERGED 2006/10/20 13:45:47 dr 1.62.6.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [c0de9362a3cc45d572e5708f53bd7bd549191309]

INTEGRATION: CWS scpivotcacheimport (1.83.6); FILE MERGED 2006/10/25 13:52:33 dr 1.83.6.2: #i70650# handle more special cases for cache fields 2006/10/20 13:45:47 dr 1.83.6.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [feb894fb04303ecebca30a582187e077101d8db9]

INTEGRATION: CWS scpivotcacheimport (1.115.6); FILE MERGED 2006/10/25 13:52:33 dr 1.115.6.2: #i70650# handle more special cases for cache fields 2006/10/20 13:45:46 dr 1.115.6.1: #i70650# import pivotcache from external pivottables into own sheet


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [7cb37a32cce42eb97a54ced5cbbe5e8dfe3d1504]

INTEGRATION: CWS notecrash_SRC680 (1.27.38); FILE MERGED 2006/11/14 16:59:18 nn 1.27.38.1: #i71529# don't create a base class of SdrView directly


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [d5a03d75e7e252d8549637917e0f22e3913136ea]

INTEGRATION: CWS notecrash_SRC680 (1.46.36); FILE MERGED 2006/11/13 17:51:18 nn 1.46.36.1: #i71490# SetTabNo: Deselect drawing objects before changing sheet number


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [0d2dab1e5de90609b22468246cea68a3439259ca]

INTEGRATION: CWS asyncdialogs (1.40.66); FILE MERGED 2006/08/30 16:11:33 pb 1.40.66.2: RESYNC: (1.40-1.42); FILE MERGED 2006/03/22 07:57:30 pb 1.40.66.1: fix: #i57125# ExecuteExternalSource() added


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [b34e7b0408c45a8bab5bd35a63d3a3691e683e5c]

INTEGRATION: CWS asyncdialogs (1.37.80); FILE MERGED 2006/11/21 15:31:11 pb 1.37.80.4: RESYNC: (1.39-1.40); FILE MERGED 2006/08/30 16:11:26 pb 1.37.80.3: RESYNC: (1.38-1.39); FILE MERGED 2006/05/31 14:09:41 pb 1.37.80.2: RESYNC: (1.37-1.38); FILE MERGED 2006/03/22 07:56:35 pb 1.37.80.1: fix: #i57125# use pImpl


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [8f08b40bd27f2276848dddd66a3599c36dea20b0]

INTEGRATION: CWS asyncdialogs (1.12.96); FILE MERGED 2006/08/30 15:53:08 pb 1.12.96.3: RESYNC: (1.12-1.13); FILE MERGED 2006/03/22 07:55:50 pb 1.12.96.2: fix: #i57125# use FileDlg::GetError() 2006/03/01 09:46:33 pb 1.12.96.1: fix: #i57125# sfx2::DocumentInserter replaces SfxApp::InsertDocumentDialog()


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [173c6b3af29748e3a84575227dd145618bb044e2]

INTEGRATION: CWS asyncdialogs (1.10.124); FILE MERGED 2006/08/30 15:52:44 pb 1.10.124.2: RESYNC: (1.10-1.11); FILE MERGED 2006/03/01 09:46:33 pb 1.10.124.1: fix: #i57125# sfx2::DocumentInserter replaces SfxApp::InsertDocumentDialog()


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [acee1197bc61ef5023a4094c7bfb909450e9a6ec]

INTEGRATION: CWS asyncdialogs (1.4.124); FILE MERGED 2006/03/01 09:46:11 pb 1.4.124.1: fix: #i57125# sfx2::DocumentInserter replaces SfxApp::InsertDocumentDialog()


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [a7db38f89b1ff14ab1e9a05595f982a8c306606c]

INTEGRATION: CWS asyncdialogs (1.6.124); FILE MERGED 2006/03/01 09:46:11 pb 1.6.124.1: fix: #i57125# sfx2::DocumentInserter replaces SfxApp::InsertDocumentDialog()


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [021dea7a1a6cbaf6899fe8cdb3d3a02f35ab661f]

INTEGRATION: CWS asyncdialogs (1.36.64); FILE MERGED 2006/05/31 14:02:09 pb 1.36.64.2: RESYNC: (1.36-1.37); FILE MERGED 2006/03/01 09:44:30 pb 1.36.64.1: fix: #i57125# DocShell_Impl* added


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [fbaa583189e024b548d8aa62b31dcf7abc920e3e]

INTEGRATION: CWS asyncdialogs (1.6.122); FILE MERGED 2006/03/22 07:49:18 pb 1.6.122.1: fix: #i57125# DialogClosedHdl() added


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [52ef00239c8477b46a1e074cc25b7951c4e79f76]

INTEGRATION: CWS asyncdialogs (1.22.122); FILE MERGED 2006/08/30 15:43:25 pb 1.22.122.2: RESYNC: (1.22-1.23); FILE MERGED 2006/03/22 07:45:07 pb 1.22.122.1: fix: #i57125# now Edit() asynchron


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [d635d0cbcc89659a363b5c782740ce7afbece74a]

INTEGRATION: CWS asyncdialogs (1.1.2); FILE ADDED 2006/03/01 09:42:45 pb 1.1.2.1: fix: #i57125# impl class of ScDocShell


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [d4819ba1ec148bd3305bc389db175388718872f7]

INTEGRATION: CWS asyncdialogs (1.45.90); FILE MERGED 2006/08/30 15:40:36 pb 1.45.90.3: RESYNC: (1.46-1.47); FILE MERGED 2006/05/31 13:57:13 pb 1.45.90.2: RESYNC: (1.45-1.46); FILE MERGED 2006/03/01 09:47:54 pb 1.45.90.1: fix: #i57125# sfx2::DocumentInserter replaces SfxApp::InsertDocumentDialog()


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [62864c531add075ffaad52c9c25c2213aca8daeb]

INTEGRATION: CWS asyncdialogs (1.24.92); FILE MERGED 2006/08/30 15:40:29 pb 1.24.92.4: RESYNC: (1.25-1.26); FILE MERGED 2006/06/01 05:24:11 pb 1.24.92.3: fix: #i57125# pFontList moved to pImpl 2006/05/31 13:57:02 pb 1.24.92.2: RESYNC: (1.24-1.25); FILE MERGED 2006/03/01 09:47:41 pb 1.24.92.1: fix: #i57125# use DocShell_Impl*


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [46be6a3a69bf1877d854547a1a4fd1089b4c122d]

INTEGRATION: CWS asyncdialogs (1.17.122); FILE MERGED 2006/08/30 15:40:22 pb 1.17.122.4: RESYNC: (1.18-1.19); FILE MERGED 2006/06/01 05:24:11 pb 1.17.122.3: fix: #i57125# pFontList moved to pImpl 2006/05/31 13:56:52 pb 1.17.122.2: RESYNC: (1.17-1.18); FILE MERGED 2006/03/01 09:47:41 pb 1.17.122.1: fix: #i57125# use DocShell_Impl*


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [13b4dcba08c80f9ae9a0ee4a3c9850671ba46dd6]

INTEGRATION: CWS asyncdialogs (1.83.30); FILE MERGED 2006/08/30 15:40:14 pb 1.83.30.4: RESYNC: (1.86-1.87); FILE MERGED 2006/05/31 13:56:43 pb 1.83.30.3: RESYNC: (1.84-1.86); FILE MERGED 2006/03/24 19:38:50 pb 1.83.30.2: RESYNC: (1.83-1.84); FILE MERGED 2006/03/01 09:47:41 pb 1.83.30.1: fix: #i57125# use DocShell_Impl*


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [796e83b87e8afc7463b6fe7313e74062049c2a58]

INTEGRATION: CWS asyncdialogs (1.20.122); FILE MERGED 2006/08/30 15:39:23 pb 1.20.122.2: RESYNC: (1.20-1.22); FILE MERGED 2006/03/22 07:45:08 pb 1.20.122.1: fix: #i57125# now Edit() asynchron


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [a96ba4e31421f7889a952584f37b99562b82e1fd]

INTEGRATION: CWS asyncdialogs (1.8.124); FILE MERGED 2006/03/22 07:44:44 pb 1.8.124.1: fix: #i57125# now LinkedDlg derived from AbstractDialog2


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [2d3fa9aab39dbc20abb3abdd13a0891b6e936cf8]

INTEGRATION: CWS asyncdialogs (1.8.124); FILE MERGED 2006/08/30 15:33:08 pb 1.8.124.2: RESYNC: (1.8-1.9); FILE MERGED 2006/03/22 07:44:44 pb 1.8.124.1: fix: #i57125# now LinkedDlg derived from AbstractDialog2


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [8709ad86aae520ee8edc78e6af1258d2a5b214af]

INTEGRATION: CWS asyncdialogs (1.14.122); FILE MERGED 2006/03/22 07:42:32 pb 1.14.122.1: fix: #i57125# now Edit() asynchron


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [b4cc79402b394d3a100dc704f49cb9cc1ad2807b]

INTEGRATION: CWS asyncdialogs (1.7.124); FILE MERGED 2006/03/22 07:42:13 pb 1.7.124.1: fix: #i57125# now LinkedDlg derived from AbstractDialog2


2006-11-22  Vladimir Glazounov  <vg@openoffice.org>  [180667bdd0d2932ca65043a52977e3c22108a1bb]

INTEGRATION: CWS asyncdialogs (1.8.122); FILE MERGED 2006/03/22 07:42:32 pb 1.8.122.1: fix: #i57125# now Edit() asynchron


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [43b58a004978d0d34a1cf547b9cf68443c250b16]

INTEGRATION: CWS aw024 (1.29.80); FILE MERGED 2006/09/22 05:48:28 aw 1.29.80.9: RESYNC: (1.35-1.36); FILE MERGED 2006/07/04 17:36:16 aw 1.29.80.8: RESYNC: (1.34-1.35); FILE MERGED 2006/05/13 00:10:55 aw 1.29.80.7: RESYNC: (1.33-1.34); FILE MERGED 2006/01/30 19:47:46 aw 1.29.80.6: RESYNC: (1.32-1.33); FILE MERGED 2005/11/18 19:43:06 aw 1.29.80.5: RESYNC: (1.31-1.32); FILE MERGED 2005/09/20 04:03:32 aw 1.29.80.4: RESYNC: (1.30-1.31); FILE MERGED 2005/05/19 12:09:24 aw 1.29.80.3: #i39529# 2005/05/13 17:20:37 aw 1.29.80.2: RESYNC: (1.29-1.30); FILE MERGED 2005/04/26 14:54:50 aw 1.29.80.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [eec56fffdde0e9da95f106c71061aba8c306f284]

INTEGRATION: CWS aw024 (1.21.10); FILE MERGED 2006/11/10 06:45:04 aw 1.21.10.8: RESYNC: (1.26-1.27); FILE MERGED 2006/08/03 19:37:08 aw 1.21.10.7: RESYNC: (1.24-1.26); FILE MERGED 2006/07/07 16:06:03 aw 1.21.10.6: adaptions after resync SRC680m171->SRC680m174 2006/05/13 00:10:26 aw 1.21.10.5: RESYNC: (1.22-1.23); FILE MERGED 2005/09/20 04:02:35 aw 1.21.10.4: RESYNC: (1.21-1.22); FILE MERGED 2005/05/26 11:16:21 aw 1.21.10.3: #i39531# 2005/05/19 12:08:19 aw 1.21.10.2: #i39529# 2005/05/12 16:44:11 aw 1.21.10.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [21b465ef79fdf7f25724168e0389da2c3563b3e9]

INTEGRATION: CWS aw024 (1.32.58); FILE MERGED 2006/11/10 06:44:54 aw 1.32.58.11: RESYNC: (1.41-1.43); FILE MERGED 2006/08/03 19:36:52 aw 1.32.58.10: RESYNC: (1.40-1.41); FILE MERGED 2006/05/13 00:10:17 aw 1.32.58.9: RESYNC: (1.39-1.40); FILE MERGED 2005/11/18 19:42:37 aw 1.32.58.8: RESYNC: (1.38-1.39); FILE MERGED 2005/09/20 04:02:18 aw 1.32.58.7: RESYNC: (1.37-1.38); FILE MERGED 2005/07/22 12:53:25 aw 1.32.58.6: RESYNC: (1.36-1.37); FILE MERGED 2005/05/26 11:16:20 aw 1.32.58.5: #i39531# 2005/05/19 12:08:19 aw 1.32.58.4: #i39529# 2005/05/13 17:19:57 aw 1.32.58.3: RESYNC: (1.35-1.36); FILE MERGED 2005/03/24 02:14:25 aw 1.32.58.2: RESYNC: (1.32-1.35); FILE MERGED 2004/12/27 09:54:40 aw 1.32.58.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [437b8ae1baa04c4c549a8e732d89a10bca38cfc4]

INTEGRATION: CWS aw024 (1.8.88); FILE MERGED 2006/08/03 19:36:00 aw 1.8.88.4: RESYNC: (1.9-1.10); FILE MERGED 2005/09/20 04:01:04 aw 1.8.88.3: RESYNC: (1.8-1.9); FILE MERGED 2005/05/26 11:16:19 aw 1.8.88.2: #i39531# 2005/05/19 12:08:18 aw 1.8.88.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [e872f336a08e92899408931521080db59bd744f2]

INTEGRATION: CWS aw024 (1.24.10); FILE MERGED 2006/11/10 06:44:39 aw 1.24.10.7: RESYNC: (1.30-1.32); FILE MERGED 2006/08/03 19:35:16 aw 1.24.10.6: RESYNC: (1.28-1.30); FILE MERGED 2006/05/13 00:09:50 aw 1.24.10.5: RESYNC: (1.26-1.28); FILE MERGED 2005/11/18 19:42:02 aw 1.24.10.4: RESYNC: (1.25-1.26); FILE MERGED 2005/09/20 04:00:02 aw 1.24.10.3: RESYNC: (1.24-1.25); FILE MERGED 2005/05/26 11:16:19 aw 1.24.10.2: #i39531# 2005/05/19 12:08:18 aw 1.24.10.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [fc78d2a2173c1b3305cb787e3522cdf6f0391f97]

INTEGRATION: CWS aw024 (1.50.34); FILE MERGED 2006/08/03 19:34:33 aw 1.50.34.5: RESYNC: (1.58-1.60); FILE MERGED 2006/05/13 00:09:43 aw 1.50.34.4: RESYNC: (1.52-1.58); FILE MERGED 2006/01/26 23:42:29 aw 1.50.34.3: RESYNC: (1.51-1.52); FILE MERGED 2005/09/20 03:59:11 aw 1.50.34.2: RESYNC: (1.50-1.51); FILE MERGED 2005/05/19 12:08:18 aw 1.50.34.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [35569a556a5f5a062f91067f899c35cdba062179]

INTEGRATION: CWS aw024 (1.19.32); FILE MERGED 2006/08/03 19:34:17 aw 1.19.32.5: RESYNC: (1.21-1.22); FILE MERGED 2005/11/18 19:41:54 aw 1.19.32.4: RESYNC: (1.20-1.21); FILE MERGED 2005/09/20 03:58:55 aw 1.19.32.3: RESYNC: (1.19-1.20); FILE MERGED 2005/05/26 11:16:18 aw 1.19.32.2: #i39531# 2005/05/19 12:08:17 aw 1.19.32.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [99f1d3150af3997fe95be7e6b8d8d5dcfdf22c4e]

INTEGRATION: CWS aw024 (1.16.84); FILE MERGED 2006/08/03 19:34:01 aw 1.16.84.7: RESYNC: (1.17-1.18); FILE MERGED 2006/07/07 16:06:03 aw 1.16.84.6: adaptions after resync SRC680m171->SRC680m174 2006/05/17 10:31:42 aw 1.16.84.5: changes after resync 2005/09/20 03:58:25 aw 1.16.84.4: RESYNC: (1.16-1.17); FILE MERGED 2005/05/26 11:16:18 aw 1.16.84.3: #i39531# 2005/05/19 12:08:17 aw 1.16.84.2: #i39529# 2005/05/12 16:44:11 aw 1.16.84.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c8381551b8b5ee4a1c85b7625fd7bfa2120c90d1]

INTEGRATION: CWS aw024 (1.44.116); FILE MERGED 2006/11/10 06:44:24 aw 1.44.116.7: RESYNC: (1.46-1.47); FILE MERGED 2006/08/03 19:33:46 aw 1.44.116.6: RESYNC: (1.45-1.46); FILE MERGED 2006/07/27 15:51:15 aw 1.44.116.5: #114408# adaptions for overlay 2006/07/21 18:54:44 nn 1.44.116.4: #112209# KillEditView: UpdateAllOverlays 2005/09/20 03:58:01 aw 1.44.116.3: RESYNC: (1.44-1.45); FILE MERGED 2005/07/29 17:44:36 nn 1.44.116.2: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle 2005/05/19 12:08:16 aw 1.44.116.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [a1220f81fde2fae8164677e619fd2e8ff83b111d]

INTEGRATION: CWS aw024 (1.12.138); FILE MERGED 2006/08/03 19:33:39 aw 1.12.138.7: RESYNC: (1.14-1.15); FILE MERGED 2006/06/16 16:09:13 nn 1.12.138.6: #114409# more overlay objects instead of Invert calls 2006/06/09 13:52:55 aw 1.12.138.5: #114408# moved GetXorDiff to OLD_SELECTION_PAINT body 2006/05/29 17:31:06 aw 1.12.138.4: RESYNC: (1.13-1.14); FILE MERGED 2005/09/20 03:57:52 aw 1.12.138.3: RESYNC: (1.12-1.13); FILE MERGED 2005/07/29 17:44:36 nn 1.12.138.2: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle 2005/05/19 12:08:16 aw 1.12.138.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [368dd68c9ff53ddfb9028f7c2b09141705658dce]

INTEGRATION: CWS aw024 (1.24.42); FILE MERGED 2006/08/03 19:33:32 aw 1.24.42.7: RESYNC: (1.27-1.28); FILE MERGED 2006/05/17 10:31:42 aw 1.24.42.6: changes after resync 2005/11/18 19:41:46 aw 1.24.42.5: RESYNC: (1.26-1.27); FILE MERGED 2005/09/20 03:57:44 aw 1.24.42.4: RESYNC: (1.25-1.26); FILE MERGED 2005/07/29 17:44:35 nn 1.24.42.3: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle 2005/03/24 02:12:46 aw 1.24.42.2: RESYNC: (1.24-1.25); FILE MERGED 2004/12/27 09:54:40 aw 1.24.42.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [d8202b794a228d993e1256d41f868478ab64380e]

INTEGRATION: CWS aw024 (1.15.6); FILE MERGED 2006/08/03 19:32:31 aw 1.15.6.2: RESYNC: (1.15-1.16); FILE MERGED 2006/06/16 16:09:13 nn 1.15.6.1: #114409# more overlay objects instead of Invert calls


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c9d703629bec83b9e400f733b5bf770c5db8d7e1]

INTEGRATION: CWS aw024 (1.41.138); FILE MERGED 2006/08/03 19:32:07 aw 1.41.138.7: RESYNC: (1.45-1.46); FILE MERGED 2006/05/13 00:09:00 aw 1.41.138.6: RESYNC: (1.43-1.45); FILE MERGED 2005/09/20 03:55:08 aw 1.41.138.5: RESYNC: (1.42-1.43); FILE MERGED 2005/07/22 12:52:51 aw 1.41.138.4: RESYNC: (1.41-1.42); FILE MERGED 2005/05/26 11:16:17 aw 1.41.138.3: #i39531# 2005/05/19 12:08:16 aw 1.41.138.2: #i39529# 2005/05/12 16:44:09 aw 1.41.138.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [3c5251a1ff5eb11aaaa01a92ccbab50264e64880]

INTEGRATION: CWS aw024 (1.25.136); FILE MERGED 2006/08/03 19:31:32 aw 1.25.136.8: RESYNC: (1.27-1.28); FILE MERGED 2006/05/17 10:31:41 aw 1.25.136.7: changes after resync 2006/05/13 00:08:42 aw 1.25.136.6: RESYNC: (1.26-1.27); FILE MERGED 2005/09/20 03:53:17 aw 1.25.136.5: RESYNC: (1.25-1.26); FILE MERGED 2005/05/26 16:10:15 aw 1.25.136.4: #i39531# 2005/05/26 11:16:17 aw 1.25.136.3: #i39531# 2005/05/19 12:08:15 aw 1.25.136.2: #i39529# 2005/05/12 16:44:07 aw 1.25.136.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [eb602b2d3deabdd0d820d87930e62d20dd2f21f3]

INTEGRATION: CWS aw024 (1.18.20); FILE MERGED 2006/11/10 06:44:18 aw 1.18.20.6: RESYNC: (1.20-1.21); FILE MERGED 2006/08/03 19:30:48 aw 1.18.20.5: RESYNC: (1.19-1.20); FILE MERGED 2006/07/27 15:51:15 aw 1.18.20.4: #114408# adaptions for overlay 2005/09/20 03:50:21 aw 1.18.20.3: RESYNC: (1.18-1.19); FILE MERGED 2005/05/26 11:16:16 aw 1.18.20.2: #i39531# 2005/05/19 12:08:15 aw 1.18.20.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c61b0523805e766c17ffa5a3c23fd96836168128]

INTEGRATION: CWS aw024 (1.2.350); FILE MERGED 2006/08/03 19:30:00 aw 1.2.350.3: RESYNC: (1.3-1.4); FILE MERGED 2005/09/20 03:47:59 aw 1.2.350.2: RESYNC: (1.2-1.3); FILE MERGED 2005/07/29 17:44:35 nn 1.2.350.1: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [425ad3f1fa014d0f84d2004bfec9115509ffca08]

INTEGRATION: CWS aw024 (1.14.138); FILE MERGED 2006/08/03 19:29:28 aw 1.14.138.4: RESYNC: (1.15-1.16); FILE MERGED 2005/09/20 03:46:29 aw 1.14.138.3: RESYNC: (1.14-1.15); FILE MERGED 2005/05/26 11:16:16 aw 1.14.138.2: #i39531# 2005/05/19 12:08:15 aw 1.14.138.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [684e58fccd0d438b91cd2972640fbc6f5d163a0a]

INTEGRATION: CWS aw024 (1.26.134); FILE MERGED 2006/08/03 19:29:21 aw 1.26.134.8: RESYNC: (1.28-1.30); FILE MERGED 2006/07/27 15:51:15 aw 1.26.134.7: #114408# adaptions for overlay 2006/06/16 16:09:12 nn 1.26.134.6: #114409# more overlay objects instead of Invert calls 2005/11/22 13:22:08 aw 1.26.134.5: #b898147# 2005/11/18 19:41:06 aw 1.26.134.4: RESYNC: (1.27-1.28); FILE MERGED 2005/09/20 03:45:10 aw 1.26.134.3: RESYNC: (1.26-1.27); FILE MERGED 2005/07/29 17:44:35 nn 1.26.134.2: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle 2005/05/19 12:08:14 aw 1.26.134.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [9a11b6d87a2c4a1c3de789eb080bb80d85e65347]

INTEGRATION: CWS aw024 (1.11.180); FILE MERGED 2006/08/03 19:29:12 aw 1.11.180.7: RESYNC: (1.13-1.14); FILE MERGED 2006/07/27 15:51:15 aw 1.11.180.6: #114408# adaptions for overlay 2006/05/17 10:31:41 aw 1.11.180.5: changes after resync 2005/11/18 19:40:59 aw 1.11.180.4: RESYNC: (1.12-1.13); FILE MERGED 2005/09/20 03:44:56 aw 1.11.180.3: RESYNC: (1.11-1.12); FILE MERGED 2005/05/26 11:16:15 aw 1.11.180.2: #i39531# 2005/05/19 12:08:14 aw 1.11.180.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [dfc8eca430a3be8f2d34c9001869ae265dcdef48]

INTEGRATION: CWS aw024 (1.10.10); FILE MERGED 2006/08/03 19:29:05 aw 1.10.10.2: RESYNC: (1.10-1.11); FILE MERGED 2006/06/16 16:09:12 nn 1.10.10.1: #114409# more overlay objects instead of Invert calls


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [7e5b671856ca6d22bed62e854219dd54ec8b4050]

INTEGRATION: CWS aw024 (1.68.18); FILE MERGED 2006/11/10 06:44:01 aw 1.68.18.21: RESYNC: (1.77-1.78); FILE MERGED 2006/10/27 12:16:07 aw 1.68.18.20: #i39528# ::basegfx -> basegfx adaption 2006/10/25 16:25:44 aw 1.68.18.19: #i70788# secured access to OverlayManager 2006/08/07 10:42:45 aw 1.68.18.18: adaptions after resync 2006/08/03 19:28:57 aw 1.68.18.17: RESYNC: (1.75-1.77); FILE MERGED 2006/07/28 15:47:30 aw 1.68.18.16: #114408# adaptions for SW 2006/07/27 15:51:14 aw 1.68.18.15: #114408# adaptions for overlay 2006/07/21 18:34:31 nn 1.68.18.14: #112209# use inverting overlay objects for now 2006/06/19 12:52:10 nn 1.68.18.13: #114409# SetMapMode 2006/06/16 16:09:12 nn 1.68.18.12: #114409# more overlay objects instead of Invert calls 2006/05/29 17:30:56 aw 1.68.18.11: RESYNC: (1.74-1.75); FILE MERGED 2006/05/17 10:31:41 aw 1.68.18.10: changes after resync 2006/05/13 00:08:35 aw 1.68.18.9: RESYNC: (1.73-1.74); FILE MERGED 2006/03/15 11:18:35 aw 1.68.18.8: #114409# corrected sc overlay problems 2006/01/26 23:42:08 aw 1.68.18.7: RESYNC: (1.72-1.73); FILE MERGED 2005/11/18 19:40:42 aw 1.68.18.6: RESYNC: (1.71-1.72); FILE MERGED 2005/09/20 03:44:40 aw 1.68.18.5: RESYNC: (1.70-1.71); FILE MERGED 2005/07/29 17:44:35 nn 1.68.18.4: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle 2005/07/22 12:52:40 aw 1.68.18.3: RESYNC: (1.68-1.70); FILE MERGED 2005/05/26 11:16:14 aw 1.68.18.2: #i39531# 2005/05/19 12:08:13 aw 1.68.18.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [6a9861d2f3600087b9f25d1a2b8e3bd5b3a23981]

INTEGRATION: CWS aw024 (1.37.36); FILE MERGED 2006/11/10 06:43:54 aw 1.37.36.8: RESYNC: (1.41-1.42); FILE MERGED 2006/08/03 19:28:08 aw 1.37.36.7: RESYNC: (1.39-1.41); FILE MERGED 2006/05/13 00:08:06 aw 1.37.36.6: RESYNC: (1.38-1.39); FILE MERGED 2005/09/20 03:43:43 aw 1.37.36.5: RESYNC: (1.37-1.38); FILE MERGED 2005/07/26 11:51:55 aw 1.37.36.4: #114176# 2005/05/26 11:16:13 aw 1.37.36.3: #i39531# 2005/05/19 12:08:13 aw 1.37.36.2: #i39529# 2005/05/12 16:44:07 aw 1.37.36.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [be90b451ba756d4a57a1827c097ebeabf2a69ab0]

INTEGRATION: CWS aw024 (1.6.32); FILE MERGED 2006/08/03 19:27:51 aw 1.6.32.5: RESYNC: (1.7-1.9); FILE MERGED 2006/07/28 15:47:30 aw 1.6.32.4: #114408# adaptions for SW 2005/09/20 03:43:25 aw 1.6.32.3: RESYNC: (1.6-1.7); FILE MERGED 2005/05/26 11:16:13 aw 1.6.32.2: #i39531# 2005/05/19 12:08:13 aw 1.6.32.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [fa1e99de26940e9d0f3f0c6b92a77e0ec8bfcfbf]

INTEGRATION: CWS aw024 (1.21.34); FILE MERGED 2006/08/03 19:25:32 aw 1.21.34.5: RESYNC: (1.23-1.25); FILE MERGED 2006/05/13 00:07:23 aw 1.21.34.4: RESYNC: (1.22-1.23); FILE MERGED 2005/09/20 03:40:13 aw 1.21.34.3: RESYNC: (1.21-1.22); FILE MERGED 2005/05/26 11:16:12 aw 1.21.34.2: #i39531# 2005/05/19 12:08:12 aw 1.21.34.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [1dd57cd43375e0435497c0a0d3c16fc546a98b73]

INTEGRATION: CWS aw024 (1.49.56); FILE MERGED 2006/11/10 06:42:52 aw 1.49.56.8: RESYNC: (1.55-1.56); FILE MERGED 2006/08/03 19:21:37 aw 1.49.56.7: RESYNC: (1.54-1.55); FILE MERGED 2006/05/13 00:06:47 aw 1.49.56.6: RESYNC: (1.52-1.54); FILE MERGED 2005/11/18 19:39:52 aw 1.49.56.5: RESYNC: (1.51-1.52); FILE MERGED 2005/09/20 03:30:38 aw 1.49.56.4: RESYNC: (1.50-1.51); FILE MERGED 2005/05/19 12:08:12 aw 1.49.56.3: #i39529# 2005/05/13 17:14:59 aw 1.49.56.2: RESYNC: (1.49-1.50); FILE MERGED 2005/05/12 16:44:06 aw 1.49.56.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [21dd271c309f4a45393e3798758360451a493b2f]

INTEGRATION: CWS aw024 (1.16.136); FILE MERGED 2006/08/03 19:12:45 aw 1.16.136.7: RESYNC: (1.19-1.21); FILE MERGED 2006/07/04 17:34:37 aw 1.16.136.6: RESYNC: (1.18-1.19); FILE MERGED 2006/05/13 00:03:41 aw 1.16.136.5: RESYNC: (1.17-1.18); FILE MERGED 2005/09/20 03:02:50 aw 1.16.136.4: RESYNC: (1.16-1.17); FILE MERGED 2005/05/26 11:16:11 aw 1.16.136.3: #i39531# 2005/05/19 12:08:11 aw 1.16.136.2: #i39529# 2005/05/12 16:44:05 aw 1.16.136.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [95c21000358ab0ef0fb523c50464bf848ea5dd19]

INTEGRATION: CWS aw024 (1.8.138); FILE MERGED 2006/05/13 00:02:47 aw 1.8.138.5: RESYNC: (1.11-1.12); FILE MERGED 2005/09/20 02:50:39 aw 1.8.138.4: RESYNC: (1.10-1.11); FILE MERGED 2005/05/13 17:09:45 aw 1.8.138.3: RESYNC: (1.9-1.10); FILE MERGED 2005/03/24 02:03:27 aw 1.8.138.2: RESYNC: (1.8-1.9); FILE MERGED 2004/12/27 09:54:39 aw 1.8.138.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [d6f77e597ed958a8b2bea4c19022e576ddb975af]

INTEGRATION: CWS aw024 (1.18.38); FILE MERGED 2006/06/16 16:07:58 nn 1.18.38.3: #114409# more overlay objects instead of Invert calls 2005/09/20 02:46:56 aw 1.18.38.2: RESYNC: (1.18-1.19); FILE MERGED 2005/07/29 17:43:20 nn 1.18.38.1: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0bbabb6675732ab6ce88af9f88d3dbf7aa031482]

INTEGRATION: CWS aw024 (1.16.6); FILE MERGED 2006/07/27 15:51:14 aw 1.16.6.1: #114408# adaptions for overlay


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0ac8be24081c0050057866c63522e49c4e2f60b1]

INTEGRATION: CWS aw024 (1.1.1.1.748); FILE MERGED 2005/09/20 02:18:32 aw 1.1.1.1.748.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/07/29 17:43:19 nn 1.1.1.1.748.1: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [537b6bb006a7728e22ed4373d803f6776524b0a3]

INTEGRATION: CWS aw024 (1.20.18); FILE MERGED 2006/10/27 12:16:06 aw 1.20.18.9: #i39528# ::basegfx -> basegfx adaption 2006/10/25 16:25:44 aw 1.20.18.8: #i70788# secured access to OverlayManager 2006/07/27 15:51:14 aw 1.20.18.7: #114408# adaptions for overlay 2006/07/21 18:32:40 nn 1.20.18.6: #112209# use inverting overlay objects for now 2006/06/16 16:07:58 nn 1.20.18.5: #114409# more overlay objects instead of Invert calls 2006/03/15 11:18:35 aw 1.20.18.4: #114409# corrected sc overlay problems 2005/09/20 02:13:25 aw 1.20.18.3: RESYNC: (1.20-1.21); FILE MERGED 2005/07/29 17:43:19 nn 1.20.18.2: #114409# use OverlayObjectCell for cell cursor, selection and AutoFill handle 2005/05/19 12:08:10 aw 1.20.18.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [696a855cad7c65e3e791c48dc3ad884f59cfc00a]

INTEGRATION: CWS aw024 (1.7.36); FILE MERGED 2005/09/20 02:04:31 aw 1.7.36.2: RESYNC: (1.7-1.8); FILE MERGED 2005/05/19 12:08:10 aw 1.7.36.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [781cdabe2f0fe80f5b3b5c9616af090d570d2df9]

INTEGRATION: CWS aw024 (1.5.206); FILE MERGED 2006/08/03 19:05:30 aw 1.5.206.5: RESYNC: (1.7-1.9); FILE MERGED 2006/05/13 00:00:03 aw 1.5.206.4: RESYNC: (1.6-1.7); FILE MERGED 2005/09/20 01:45:18 aw 1.5.206.3: RESYNC: (1.5-1.6); FILE MERGED 2005/05/26 11:16:11 aw 1.5.206.2: #i39531# 2005/05/19 12:08:10 aw 1.5.206.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [f974d3366ed1b74801aed527695f393997bd0909]

INTEGRATION: CWS aw024 (1.8.36); FILE MERGED 2006/08/03 19:05:23 aw 1.8.36.3: RESYNC: (1.9-1.11); FILE MERGED 2005/09/20 01:45:08 aw 1.8.36.2: RESYNC: (1.8-1.9); FILE MERGED 2005/05/19 12:08:09 aw 1.8.36.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [ec778d45dd3322ee23802437e7814b5aea8c8664]

INTEGRATION: CWS aw024 (1.3.604); FILE MERGED 2006/08/03 19:05:16 aw 1.3.604.3: RESYNC: (1.4-1.5); FILE MERGED 2005/09/20 01:45:00 aw 1.3.604.2: RESYNC: (1.3-1.4); FILE MERGED 2005/05/19 12:08:09 aw 1.3.604.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [f5b83f2bef0f82141fc7cf9f8e7eff42dfa6fbb2]

INTEGRATION: CWS aw024 (1.20.36); FILE MERGED 2006/08/03 19:05:09 aw 1.20.36.6: RESYNC: (1.22-1.24); FILE MERGED 2006/07/07 16:06:03 aw 1.20.36.5: adaptions after resync SRC680m171->SRC680m174 2005/11/18 19:28:46 aw 1.20.36.4: RESYNC: (1.21-1.22); FILE MERGED 2005/09/20 01:44:52 aw 1.20.36.3: RESYNC: (1.20-1.21); FILE MERGED 2005/05/26 11:16:10 aw 1.20.36.2: #i39531# 2005/05/19 12:08:09 aw 1.20.36.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [778350f39c2d34f6a4af8e4b5e02cfdad55cb8dd]

INTEGRATION: CWS aw024 (1.7.38); FILE MERGED 2006/08/03 19:05:02 aw 1.7.38.4: RESYNC: (1.8-1.9); FILE MERGED 2005/09/20 01:44:39 aw 1.7.38.3: RESYNC: (1.7-1.8); FILE MERGED 2005/05/26 11:16:10 aw 1.7.38.2: #i39531# 2005/05/19 12:08:09 aw 1.7.38.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [add423ff616afbbd6641382fb96f882f786ef69b]

INTEGRATION: CWS aw024 (1.10.108); FILE MERGED 2006/11/10 06:38:20 aw 1.10.108.7: RESYNC: (1.14-1.15); FILE MERGED 2006/08/03 19:04:56 aw 1.10.108.6: RESYNC: (1.12-1.14); FILE MERGED 2006/07/07 16:06:03 aw 1.10.108.5: adaptions after resync SRC680m171->SRC680m174 2006/05/12 23:58:49 aw 1.10.108.4: RESYNC: (1.11-1.12); FILE MERGED 2005/09/20 01:40:20 aw 1.10.108.3: RESYNC: (1.10-1.11); FILE MERGED 2005/05/26 11:16:09 aw 1.10.108.2: #i39531# 2005/05/19 12:08:08 aw 1.10.108.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0f73f1489ed2b4fe03f0933c7e2de80d8fb97bca]

INTEGRATION: CWS aw024 (1.8.42); FILE MERGED 2006/08/03 19:04:49 aw 1.8.42.5: RESYNC: (1.9-1.10); FILE MERGED 2006/07/07 16:06:03 aw 1.8.42.4: adaptions after resync SRC680m171->SRC680m174 2005/09/20 01:44:25 aw 1.8.42.3: RESYNC: (1.8-1.9); FILE MERGED 2005/05/26 11:16:08 aw 1.8.42.2: #i39531# 2005/05/19 12:08:08 aw 1.8.42.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [137b8c4f8a5000ba1ef4f72d04013756f75f50f3]

INTEGRATION: CWS aw024 (1.19.10); FILE MERGED 2006/11/10 06:38:10 aw 1.19.10.6: RESYNC: (1.22-1.23); FILE MERGED 2006/08/03 19:04:33 aw 1.19.10.5: RESYNC: (1.21-1.22); FILE MERGED 2006/05/12 23:59:56 aw 1.19.10.4: RESYNC: (1.20-1.21); FILE MERGED 2005/09/20 01:44:07 aw 1.19.10.3: RESYNC: (1.19-1.20); FILE MERGED 2005/05/26 11:16:08 aw 1.19.10.2: #i39531# 2005/05/19 12:08:08 aw 1.19.10.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [a465882207380d9732dd50ec3844a6991b4b3f4d]

INTEGRATION: CWS aw024 (1.6.32); FILE MERGED 2006/08/03 19:04:27 aw 1.6.32.5: RESYNC: (1.7-1.8); FILE MERGED 2005/09/20 01:43:55 aw 1.6.32.4: RESYNC: (1.6-1.7); FILE MERGED 2005/08/08 16:56:39 aw 1.6.32.3: #i48467# 2005/05/26 11:16:07 aw 1.6.32.2: #i39531# 2005/05/19 12:08:07 aw 1.6.32.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [41d58e1c22817c3234095ea838398f719d6f731e]

INTEGRATION: CWS aw024 (1.14.38); FILE MERGED 2006/08/03 19:04:20 aw 1.14.38.5: RESYNC: (1.16-1.19); FILE MERGED 2006/07/07 16:06:03 aw 1.14.38.4: adaptions after resync SRC680m171->SRC680m174 2005/11/18 19:28:39 aw 1.14.38.3: RESYNC: (1.15-1.16); FILE MERGED 2005/09/20 01:43:47 aw 1.14.38.2: RESYNC: (1.14-1.15); FILE MERGED 2005/05/12 16:44:05 aw 1.14.38.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [5493dbe50f23f61b3598a9c385dcf6918ef346e3]

INTEGRATION: CWS aw024 (1.6.4); FILE MERGED 2006/08/03 19:04:03 aw 1.6.4.2: RESYNC: (1.6-1.8); FILE MERGED 2006/07/07 16:06:02 aw 1.6.4.1: adaptions after resync SRC680m171->SRC680m174


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0d14dc7a1a95506e32d7aa0366800912bfca82d1]

INTEGRATION: CWS aw024 (1.8.208); FILE MERGED 2006/10/27 12:16:06 aw 1.8.208.5: #i39528# ::basegfx -> basegfx adaption 2006/08/03 19:03:56 aw 1.8.208.4: RESYNC: (1.9-1.11); FILE MERGED 2005/09/20 01:42:56 aw 1.8.208.3: RESYNC: (1.8-1.9); FILE MERGED 2005/05/12 16:44:04 aw 1.8.208.2: #i39529# 2005/04/26 14:54:37 aw 1.8.208.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [a63bba42b9ea015ad6cfc39c08e8d293a6f8169a]

INTEGRATION: CWS aw024 (1.3.710); FILE MERGED 2006/10/27 12:16:06 aw 1.3.710.5: #i39528# ::basegfx -> basegfx adaption 2006/08/03 19:03:49 aw 1.3.710.4: RESYNC: (1.4-1.5); FILE MERGED 2005/09/20 01:42:46 aw 1.3.710.3: RESYNC: (1.3-1.4); FILE MERGED 2005/05/12 16:44:04 aw 1.3.710.2: #i39529# 2005/04/26 14:54:36 aw 1.3.710.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [bf6274ab5266292b2e48b96780596a39d853ffe7]

INTEGRATION: CWS aw024 (1.6.94); FILE MERGED 2006/08/03 19:03:43 aw 1.6.94.4: RESYNC: (1.8-1.9); FILE MERGED 2005/09/20 01:42:38 aw 1.6.94.3: RESYNC: (1.7-1.8); FILE MERGED 2005/05/13 17:09:08 aw 1.6.94.2: RESYNC: (1.6-1.7); FILE MERGED 2005/04/26 14:54:36 aw 1.6.94.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [86ffd0cb302ec4caa601bc76b47f5aee2391e2d6]

INTEGRATION: CWS aw024 (1.12.136); FILE MERGED 2006/08/03 19:03:27 aw 1.12.136.4: RESYNC: (1.13-1.15); FILE MERGED 2005/09/20 01:42:17 aw 1.12.136.3: RESYNC: (1.12-1.13); FILE MERGED 2005/05/26 11:16:07 aw 1.12.136.2: #i39531# 2005/05/19 12:08:07 aw 1.12.136.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [fc1ad388f4021871e9a7dc07284e2242b604a6c0]

INTEGRATION: CWS aw024 (1.23.34); FILE MERGED 2006/11/10 06:38:04 aw 1.23.34.6: RESYNC: (1.28-1.29); FILE MERGED 2006/08/03 19:02:52 aw 1.23.34.5: RESYNC: (1.25-1.28); FILE MERGED 2006/05/12 23:59:21 aw 1.23.34.4: RESYNC: (1.24-1.25); FILE MERGED 2005/09/20 01:41:08 aw 1.23.34.3: RESYNC: (1.23-1.24); FILE MERGED 2005/05/26 11:16:05 aw 1.23.34.2: #i39531# 2005/05/19 12:08:07 aw 1.23.34.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [045a1ae19a1cbaf07db0211cfd897574e689d9e2]

INTEGRATION: CWS aw024 (1.16.68); FILE MERGED 2006/08/03 19:02:36 aw 1.16.68.6: RESYNC: (1.19-1.21); FILE MERGED 2006/05/12 23:59:14 aw 1.16.68.5: RESYNC: (1.18-1.19); FILE MERGED 2005/11/18 19:28:22 aw 1.16.68.4: RESYNC: (1.17-1.18); FILE MERGED 2005/09/20 01:40:50 aw 1.16.68.3: RESYNC: (1.16-1.17); FILE MERGED 2005/05/26 11:16:05 aw 1.16.68.2: #i39531# 2005/05/19 12:08:06 aw 1.16.68.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [293001824c774f2d6e3c3f16bd0b7edc071c9a41]

INTEGRATION: CWS aw024 (1.31.88); FILE MERGED 2006/11/10 06:37:37 aw 1.31.88.6: RESYNC: (1.36-1.37); FILE MERGED 2006/08/03 19:00:52 aw 1.31.88.5: RESYNC: (1.34-1.36); FILE MERGED 2006/05/12 23:58:31 aw 1.31.88.4: RESYNC: (1.33-1.34); FILE MERGED 2006/01/26 23:30:56 aw 1.31.88.3: RESYNC: (1.32-1.33); FILE MERGED 2005/09/20 01:37:46 aw 1.31.88.2: RESYNC: (1.31-1.32); FILE MERGED 2005/05/19 12:08:06 aw 1.31.88.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [19934d455e324ebe6503b2fab26508a901f4f889]

INTEGRATION: CWS aw024 (1.42.18); FILE MERGED 2006/08/03 18:59:53 aw 1.42.18.7: RESYNC: (1.46-1.47); FILE MERGED 2006/05/12 23:58:22 aw 1.42.18.6: RESYNC: (1.45-1.46); FILE MERGED 2005/11/18 19:27:54 aw 1.42.18.5: RESYNC: (1.44-1.45); FILE MERGED 2005/09/20 01:36:26 aw 1.42.18.4: RESYNC: (1.43-1.44); FILE MERGED 2005/05/19 12:08:05 aw 1.42.18.3: #i39529# 2005/05/13 17:08:37 aw 1.42.18.2: RESYNC: (1.42-1.43); FILE MERGED 2005/05/12 16:44:03 aw 1.42.18.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [bdf1e5699f8c5a68dc8af948c86cf7c3341a66c8]

INTEGRATION: CWS aw024 (1.29.34); FILE MERGED 2006/08/03 18:51:20 aw 1.29.34.6: RESYNC: (1.33-1.34); FILE MERGED 2006/05/12 23:55:03 aw 1.29.34.5: RESYNC: (1.32-1.33); FILE MERGED 2005/11/18 19:25:48 aw 1.29.34.4: RESYNC: (1.31-1.32); FILE MERGED 2005/09/20 01:17:19 aw 1.29.34.3: RESYNC: (1.30-1.31); FILE MERGED 2005/05/13 17:07:37 aw 1.29.34.2: RESYNC: (1.29-1.30); FILE MERGED 2004/12/27 09:54:38 aw 1.29.34.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0a1f0e5e9001ba576d75b997c8b7e4ce233158fc]

INTEGRATION: CWS aw024 (1.24.58); FILE MERGED 2006/11/10 06:35:28 aw 1.24.58.11: RESYNC: (1.31-1.33); FILE MERGED 2006/08/03 18:50:22 aw 1.24.58.10: RESYNC: (1.29-1.31); FILE MERGED 2006/07/07 16:06:02 aw 1.24.58.9: adaptions after resync SRC680m171->SRC680m174 2006/07/04 17:33:08 aw 1.24.58.8: RESYNC: (1.28-1.29); FILE MERGED 2006/05/12 23:55:10 aw 1.24.58.7: RESYNC: (1.27-1.28); FILE MERGED 2005/09/20 01:17:50 aw 1.24.58.6: RESYNC: (1.26-1.27); FILE MERGED 2005/05/26 11:16:04 aw 1.24.58.5: #i39531# 2005/05/19 12:08:04 aw 1.24.58.4: #i39529# 2005/05/12 16:44:02 aw 1.24.58.3: #i39529# 2005/03/24 01:53:16 aw 1.24.58.2: RESYNC: (1.24-1.26); FILE MERGED 2004/12/27 09:54:38 aw 1.24.58.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [f04acf1c5265fe2772c8ddc3e6d823df252c230a]

INTEGRATION: CWS aw024 (1.8.32); FILE MERGED 2006/11/10 06:32:52 aw 1.8.32.4: RESYNC: (1.10-1.11); FILE MERGED 2006/08/03 18:38:45 aw 1.8.32.3: RESYNC: (1.9-1.10); FILE MERGED 2005/09/20 00:52:11 aw 1.8.32.2: RESYNC: (1.8-1.9); FILE MERGED 2005/05/19 12:08:04 aw 1.8.32.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [5c3787f4551f28274ffa32a81a732077bfb11859]

INTEGRATION: CWS aw024 (1.36.38); FILE MERGED 2006/10/27 12:16:05 aw 1.36.38.7: #i39528# ::basegfx -> basegfx adaption 2006/08/03 18:14:22 aw 1.36.38.6: RESYNC: (1.39-1.41); FILE MERGED 2006/01/26 23:24:00 aw 1.36.38.5: RESYNC: (1.38-1.39); FILE MERGED 2005/09/20 00:12:28 aw 1.36.38.4: RESYNC: (1.37-1.38); FILE MERGED 2005/05/13 16:44:00 aw 1.36.38.3: RESYNC: (1.36-1.37); FILE MERGED 2005/05/12 16:44:01 aw 1.36.38.2: #i39529# 2005/04/26 14:54:35 aw 1.36.38.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [93b5d5780f742e79bad2cce3fbc48023b3590553]

INTEGRATION: CWS aw024 (1.20.38); FILE MERGED 2006/10/27 12:16:05 aw 1.20.38.6: #i39528# ::basegfx -> basegfx adaption 2006/08/03 18:05:43 aw 1.20.38.5: RESYNC: (1.22-1.24); FILE MERGED 2006/07/04 17:32:26 aw 1.20.38.4: RESYNC: (1.21-1.22); FILE MERGED 2005/09/20 00:02:32 aw 1.20.38.3: RESYNC: (1.20-1.21); FILE MERGED 2005/05/12 16:43:59 aw 1.20.38.2: #i39529# 2005/04/26 14:54:34 aw 1.20.38.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [441e260398babf6127a7cefda96ce6162592fb1f]

INTEGRATION: CWS aw024 (1.4.60); FILE MERGED 2006/08/03 18:00:53 aw 1.4.60.4: RESYNC: (1.6-1.7); FILE MERGED 2005/09/19 23:53:58 aw 1.4.60.3: RESYNC: (1.5-1.6); FILE MERGED 2005/03/24 01:24:14 aw 1.4.60.2: RESYNC: (1.4-1.5); FILE MERGED 2004/12/27 09:54:37 aw 1.4.60.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [55ff45fc17e8a0198d152ecf69edc2488af0f54d]

INTEGRATION: CWS aw024 (1.12.34); FILE MERGED 2006/08/03 17:59:42 aw 1.12.34.6: RESYNC: (1.17-1.18); FILE MERGED 2006/05/12 23:39:44 aw 1.12.34.5: RESYNC: (1.15-1.17); FILE MERGED 2006/01/26 23:20:00 aw 1.12.34.4: RESYNC: (1.14-1.15); FILE MERGED 2005/11/18 19:08:49 aw 1.12.34.3: RESYNC: (1.13-1.14); FILE MERGED 2005/09/19 23:52:48 aw 1.12.34.2: RESYNC: (1.12-1.13); FILE MERGED 2005/05/19 12:08:03 aw 1.12.34.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [d3f65958b6a616c2e1ca3e7c14f959d6b7364fbf]

INTEGRATION: CWS aw024 (1.6.86); FILE MERGED 2006/10/27 12:16:05 aw 1.6.86.5: #i39528# ::basegfx -> basegfx adaption 2006/08/03 17:58:51 aw 1.6.86.4: RESYNC: (1.7-1.8); FILE MERGED 2005/09/19 23:51:47 aw 1.6.86.3: RESYNC: (1.6-1.7); FILE MERGED 2005/05/12 16:43:59 aw 1.6.86.2: #i39529# 2005/04/26 14:54:33 aw 1.6.86.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [df22c503456ca5eed7f957a431d92d22f23638c4]

INTEGRATION: CWS aw024 (1.35.34); FILE MERGED 2006/11/10 06:23:15 aw 1.35.34.7: RESYNC: (1.44-1.45); FILE MERGED 2006/08/03 17:56:32 aw 1.35.34.6: RESYNC: (1.42-1.44); FILE MERGED 2006/01/26 23:19:30 aw 1.35.34.5: RESYNC: (1.41-1.42); FILE MERGED 2005/11/18 19:08:40 aw 1.35.34.4: RESYNC: (1.40-1.41); FILE MERGED 2005/09/19 23:48:55 aw 1.35.34.3: RESYNC: (1.39-1.40); FILE MERGED 2005/03/24 01:23:05 aw 1.35.34.2: RESYNC: (1.35-1.39); FILE MERGED 2004/12/27 09:54:36 aw 1.35.34.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [947a2130efa780915aa42c57695ca322aff36b08]

INTEGRATION: CWS aw024 (1.27.60); FILE MERGED 2006/08/03 17:54:14 aw 1.27.60.6: RESYNC: (1.33-1.34); FILE MERGED 2006/07/04 17:32:00 aw 1.27.60.5: RESYNC: (1.32-1.33); FILE MERGED 2006/05/12 23:38:29 aw 1.27.60.4: RESYNC: (1.29-1.32); FILE MERGED 2005/09/19 23:46:13 aw 1.27.60.3: RESYNC: (1.28-1.29); FILE MERGED 2005/03/24 01:22:07 aw 1.27.60.2: RESYNC: (1.27-1.28); FILE MERGED 2004/12/27 09:54:36 aw 1.27.60.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [cf9bc64b90862e7ce412f4393af9053def3147de]

INTEGRATION: CWS aw024 (1.47.44); FILE MERGED 2006/11/10 06:22:09 aw 1.47.44.9: RESYNC: (1.58-1.59); FILE MERGED 2006/08/03 17:53:03 aw 1.47.44.8: RESYNC: (1.57-1.58); FILE MERGED 2006/07/04 17:31:53 aw 1.47.44.7: RESYNC: (1.56-1.57); FILE MERGED 2006/05/12 23:37:50 aw 1.47.44.6: RESYNC: (1.53-1.56); FILE MERGED 2006/01/26 23:18:28 aw 1.47.44.5: RESYNC: (1.52-1.53); FILE MERGED 2005/11/18 19:07:45 aw 1.47.44.4: RESYNC: (1.51-1.52); FILE MERGED 2005/09/19 23:44:49 aw 1.47.44.3: RESYNC: (1.50-1.51); FILE MERGED 2005/03/24 01:21:23 aw 1.47.44.2: RESYNC: (1.47-1.50); FILE MERGED 2004/12/27 09:54:36 aw 1.47.44.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c6186e064f5d8ce8b81320ca1f05529b51d6dbc1]

INTEGRATION: CWS aw024 (1.3.60); FILE MERGED 2005/09/19 23:33:15 aw 1.3.60.2: RESYNC: (1.4-1.5); FILE MERGED 2004/12/27 09:54:35 aw 1.3.60.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [371b5d834ecadad36b2e8f8a2a6b34e1da7a8688]

INTEGRATION: CWS aw024 (1.14.34); FILE MERGED 2006/08/03 17:49:16 aw 1.14.34.5: RESYNC: (1.17-1.18); FILE MERGED 2006/01/26 23:17:06 aw 1.14.34.4: RESYNC: (1.16-1.17); FILE MERGED 2005/11/18 19:05:16 aw 1.14.34.3: RESYNC: (1.15-1.16); FILE MERGED 2005/09/19 23:14:25 aw 1.14.34.2: RESYNC: (1.14-1.15); FILE MERGED 2004/12/27 09:54:35 aw 1.14.34.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0760372ddf8a1479c02ea559e6cb9348efe0bc4c]

INTEGRATION: CWS aw024 (1.85.44); FILE MERGED 2006/11/10 06:18:20 aw 1.85.44.7: RESYNC: (1.92-1.94); FILE MERGED 2006/05/12 23:32:31 aw 1.85.44.6: RESYNC: (1.89-1.92); FILE MERGED 2006/01/26 23:16:50 aw 1.85.44.5: RESYNC: (1.88-1.89); FILE MERGED 2005/11/18 19:04:48 aw 1.85.44.4: RESYNC: (1.87-1.88); FILE MERGED 2005/09/19 23:11:09 aw 1.85.44.3: RESYNC: (1.86-1.87); FILE MERGED 2005/03/24 01:14:53 aw 1.85.44.2: RESYNC: (1.85-1.86); FILE MERGED 2004/12/27 09:54:34 aw 1.85.44.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [62d352324243775555f1a7f6cb53387ab1e88f62]

INTEGRATION: CWS aw024 (1.9.70); FILE MERGED 2006/09/22 04:26:32 aw 1.9.70.3: RESYNC: (1.10-1.11); FILE MERGED 2005/09/19 15:39:31 aw 1.9.70.2: RESYNC: (1.9-1.10); FILE MERGED 2005/01/12 20:02:42 aw 1.9.70.1: #i39528


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [9214bdc75956698250c5a84f105b41ef3090b6c0]

INTEGRATION: CWS aw024 (1.34.72); FILE MERGED 2006/09/22 04:26:05 aw 1.34.72.3: RESYNC: (1.35-1.36); FILE MERGED 2005/09/19 15:37:49 aw 1.34.72.2: RESYNC: (1.34-1.35); FILE MERGED 2005/01/12 20:02:42 aw 1.34.72.1: #i39528


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [3e6e8b4ece6e300b488a8c28284b95f186238251]

INTEGRATION: CWS aw024 (1.1.1.1.72); FILE MERGED 2006/09/22 04:24:07 aw 1.1.1.1.72.4: RESYNC: (1.2-1.3); FILE MERGED 2005/09/19 15:37:20 aw 1.1.1.1.72.3: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/05/12 16:41:39 aw 1.1.1.1.72.2: #i39529# 2005/04/26 14:50:18 aw 1.1.1.1.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [7d7b2ecdf03d60fff2520e8bcd785ddaf300aab4]

INTEGRATION: CWS aw024 (1.18.72); FILE MERGED 2006/09/22 04:25:43 aw 1.18.72.5: RESYNC: (1.19-1.20); FILE MERGED 2005/09/19 15:37:05 aw 1.18.72.4: RESYNC: (1.18-1.19); FILE MERGED 2005/05/12 16:41:39 aw 1.18.72.3: #i39529# 2005/04/26 14:50:18 aw 1.18.72.2: #i39528# 2005/01/12 20:02:41 aw 1.18.72.1: #i39528


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [47a4b9907a7ca7a068824b9e968ce3b0c34034d6]

INTEGRATION: CWS aw024 (1.9.72); FILE MERGED 2006/09/22 04:25:17 aw 1.9.72.3: RESYNC: (1.10-1.11); FILE MERGED 2005/09/19 15:36:16 aw 1.9.72.2: RESYNC: (1.9-1.10); FILE MERGED 2005/04/26 14:50:18 aw 1.9.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [2cf4624692b1272e4df8599029d7ceca9bf10e2a]

INTEGRATION: CWS aw024 (1.1.1.1.72); FILE MERGED 2006/09/22 04:24:34 aw 1.1.1.1.72.3: RESYNC: (1.2-1.3); FILE MERGED 2005/09/19 15:35:11 aw 1.1.1.1.72.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/04/26 14:50:18 aw 1.1.1.1.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c3621fe1bff867b22117c2d8d859e2eea25d20c6]

INTEGRATION: CWS aw024 (1.3.72); FILE MERGED 2006/09/22 04:23:40 aw 1.3.72.2: RESYNC: (1.3-1.4); FILE MERGED 2005/05/19 12:04:31 aw 1.3.72.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [d06b75fbf36cd102126614070404f801c6f76e3c]

INTEGRATION: CWS aw024 (1.32.72); FILE MERGED 2006/09/22 04:23:28 aw 1.32.72.3: RESYNC: (1.33-1.34); FILE MERGED 2005/09/19 15:33:38 aw 1.32.72.2: RESYNC: (1.32-1.33); FILE MERGED 2005/04/26 14:50:18 aw 1.32.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [cb185838087b6daf6ba873daddc290ebb6b32347]

INTEGRATION: CWS aw024 (1.7.72); FILE MERGED 2005/09/19 15:29:43 aw 1.7.72.2: RESYNC: (1.7-1.8); FILE MERGED 2005/04/26 14:50:17 aw 1.7.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [c45163688c963b6cb2277704ea67cd418a92ad94]

INTEGRATION: CWS aw024 (1.10.72); FILE MERGED 2005/09/19 15:29:32 aw 1.10.72.2: RESYNC: (1.10-1.11); FILE MERGED 2005/04/26 14:50:17 aw 1.10.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [40ee2495c432c4928fd0d01103a1f318c6989793]

INTEGRATION: CWS aw024 (1.9.72); FILE MERGED 2006/09/22 04:23:21 aw 1.9.72.3: RESYNC: (1.10-1.11); FILE MERGED 2005/09/19 15:32:53 aw 1.9.72.2: RESYNC: (1.9-1.10); FILE MERGED 2005/04/26 14:50:16 aw 1.9.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [53fb9a5eabf3de4507bbca5fe29605edb0f99591]

INTEGRATION: CWS aw024 (1.6.68); FILE MERGED 2006/09/22 04:22:55 aw 1.6.68.2: RESYNC: (1.6-1.7); FILE MERGED 2005/05/19 12:04:31 aw 1.6.68.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [78d9cdfe408f5484a5912fc810ae8fbd8959ed45]

INTEGRATION: CWS aw024 (1.15.72); FILE MERGED 2006/09/22 04:22:23 aw 1.15.72.2: RESYNC: (1.15-1.16); FILE MERGED 2005/04/26 14:50:16 aw 1.15.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [fafaead7104c4c6c585fc0f64b7966f4b25844a6]

INTEGRATION: CWS aw024 (1.43.72); FILE MERGED 2006/09/22 04:22:15 aw 1.43.72.3: RESYNC: (1.43-1.44); FILE MERGED 2005/05/12 16:41:38 aw 1.43.72.2: #i39529# 2005/04/26 14:50:16 aw 1.43.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [bebc003744fef875323604b50a841eaecd9d7289]

INTEGRATION: CWS aw024 (1.1.1.1.72); FILE MERGED 2006/05/12 22:52:19 aw 1.1.1.1.72.3: RESYNC: (1.2-1.3); FILE MERGED 2005/09/19 15:21:10 aw 1.1.1.1.72.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/04/26 14:50:15 aw 1.1.1.1.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [e370df296a7015a2472e3b8e266c5054a3c9382f]

INTEGRATION: CWS aw024 (1.17.72); FILE MERGED 2005/09/19 15:20:59 aw 1.17.72.2: RESYNC: (1.17-1.18); FILE MERGED 2005/04/26 14:50:14 aw 1.17.72.1: #i39528#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [ca108263b02f83d369401fad2f0183fe8917dff0]

INTEGRATION: CWS aw024 (1.6.72); FILE MERGED 2006/09/22 04:14:24 aw 1.6.72.6: RESYNC: (1.7-1.8); FILE MERGED 2005/09/19 15:11:52 aw 1.6.72.5: RESYNC: (1.6-1.7); FILE MERGED 2005/05/19 12:04:31 aw 1.6.72.4: #i39529# 2005/05/12 16:41:38 aw 1.6.72.3: #i39529# 2005/04/26 14:50:14 aw 1.6.72.2: #i39528# 2005/01/12 20:02:41 aw 1.6.72.1: #i39528


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [28cda0b6f5e7b37ca42215083b9eddf41a9e3661]

INTEGRATION: CWS aw024 (1.6.72); FILE MERGED 2005/09/19 14:23:43 aw 1.6.72.3: RESYNC: (1.6-1.7); FILE MERGED 2005/04/26 14:50:13 aw 1.6.72.2: #i39528# 2005/01/12 20:02:40 aw 1.6.72.1: #i39528


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [83c3a2798f42206cef15546ef159d9cc890cef1c]

INTEGRATION: CWS aw024 (1.6.72); FILE MERGED 2006/09/22 04:02:40 aw 1.6.72.3: RESYNC: (1.7-1.8); FILE MERGED 2005/09/19 14:19:28 aw 1.6.72.2: RESYNC: (1.6-1.7); FILE MERGED 2005/05/12 16:41:38 aw 1.6.72.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [6423eaa46cc4431035d302672a9f1e619cefa158]

INTEGRATION: CWS aw024 (1.19.10); FILE MERGED 2006/09/22 04:01:48 aw 1.19.10.6: RESYNC: (1.20-1.21); FILE MERGED 2006/07/07 16:07:08 aw 1.19.10.5: adaptions after resync SRC680m171->SRC680m174 2005/09/19 14:17:18 aw 1.19.10.4: RESYNC: (1.19-1.20); FILE MERGED 2005/05/12 16:41:37 aw 1.19.10.3: #i39529# 2005/04/26 14:50:13 aw 1.19.10.2: #i39528# 2004/12/27 09:50:16 aw 1.19.10.1: #i39525


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [f4180d2926ad711bfa0f610bf4b31e3d3c654b52]

INTEGRATION: CWS aw024 (1.6.70); FILE MERGED 2006/09/22 04:01:41 aw 1.6.70.3: RESYNC: (1.7-1.8); FILE MERGED 2005/09/19 14:17:02 aw 1.6.70.2: RESYNC: (1.6-1.7); FILE MERGED 2005/05/19 12:04:30 aw 1.6.70.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [0a4e5fab45104e465cc80922cbe869f252574f22]

INTEGRATION: CWS aw024 (1.16.32); FILE MERGED 2006/09/22 04:00:38 aw 1.16.32.3: RESYNC: (1.17-1.18); FILE MERGED 2005/09/19 14:15:33 aw 1.16.32.2: RESYNC: (1.16-1.17); FILE MERGED 2005/05/19 12:04:30 aw 1.16.32.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [9139edc7e148cc2c0692a9ba3af6138e0fa7dc6d]

INTEGRATION: CWS aw024 (1.6.72); FILE MERGED 2006/09/22 03:58:34 aw 1.6.72.4: RESYNC: (1.7-1.8); FILE MERGED 2005/09/19 14:01:48 aw 1.6.72.3: RESYNC: (1.6-1.7); FILE MERGED 2005/05/19 12:04:30 aw 1.6.72.2: #i39529# 2005/05/12 16:41:37 aw 1.6.72.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [e428877b0aa108afb701a1bbcd719ac10a856529]

INTEGRATION: CWS aw024 (1.9.32); FILE MERGED 2006/09/22 03:58:28 aw 1.9.32.6: RESYNC: (1.11-1.12); FILE MERGED 2006/08/03 17:32:26 aw 1.9.32.5: RESYNC: (1.10-1.11); FILE MERGED 2006/07/28 15:59:49 aw 1.9.32.4: #114408# adaptions for SW 2005/09/19 14:01:39 aw 1.9.32.3: RESYNC: (1.9-1.10); FILE MERGED 2005/05/19 12:04:29 aw 1.9.32.2: #i39529# 2005/05/12 16:41:37 aw 1.9.32.1: #i39529#


2006-11-14  Ivo Hinkelmann  <ihi@openoffice.org>  [dd252e8ba8cf0128ae920f049e6a5a39b6c0cb99]

INTEGRATION: CWS aw024 (1.5.48); FILE MERGED 2006/05/12 22:51:40 aw 1.5.48.3: RESYNC: (1.6-1.7); FILE MERGED 2005/09/19 13:40:47 aw 1.5.48.2: RESYNC: (1.5-1.6); FILE MERGED 2005/01/12 20:02:39 aw 1.5.48.1: #i39528


2006-11-07  Kurt Zenker  <kz@openoffice.org>  [5b74fa048cf9cc4a3280d7d154ab41b5549d8e5b]

INTEGRATION: CWS pure01 (1.13.310); FILE MERGED 2006/11/06 12:21:55 sparcmoz 1.13.310.1: #70684# invalid pure specifier (only = 0 is allowed)


2006-11-01  Vladimir Glazounov  <vg@openoffice.org>  [f5c9065d802b95c1a2e4a6573ed4bd47a9726d79]

INTEGRATION: CWS inplaceobjects (1.28.50); FILE MERGED 2006/08/21 19:42:22 mba 1.28.50.2: RESYNC: (1.28-1.30); FILE MERGED 2006/06/15 10:09:54 mba 1.28.50.1: #i66239#: centralize code for IP deactivation


2006-11-01  Vladimir Glazounov  <vg@openoffice.org>  [eab03db0c28ce7160060916828c9a05a9d23bc35]

INTEGRATION: CWS inplaceobjects (1.39.52); FILE MERGED 2006/08/21 19:34:48 mba 1.39.52.2: RESYNC: (1.39-1.41); FILE MERGED 2006/06/15 10:09:54 mba 1.39.52.1: #i66239#: centralize code for IP deactivation


2006-11-01  Vladimir Glazounov  <vg@openoffice.org>  [101be2abf02610ed6be62cfffa36a217bdf52dd8]

INTEGRATION: CWS inplaceobjects (1.12.52); FILE MERGED 2006/08/21 19:08:14 mba 1.12.52.2: RESYNC: (1.12-1.14); FILE MERGED 2006/06/15 10:09:54 mba 1.12.52.1: #i66239#: centralize code for IP deactivation


2006-11-01  Vladimir Glazounov  <vg@openoffice.org>  [93840b773e1453c8ebbaa42cf286170351750452]

INTEGRATION: CWS scmissinglinks (1.23.78); FILE MERGED 2006/10/18 13:02:52 nn 1.23.78.1: #139464# put errors in referenced cells of value-linked sheets that can't be updated


2006-10-30  Rüdiger Timm  <rt@openoffice.org>  [726978faf859fff121d8a0e47b2b61384436e0af]

INTEGRATION: CWS ause060 (1.15.270); FILE MERGED 2006/10/04 08:42:37 hjs 1.15.270.1: #i70086# cleanup


2006-10-30  Rüdiger Timm  <rt@openoffice.org>  [e361b037fa52ce0b359a8d43ac23ce4b966681d6]

INTEGRATION: CWS ause060 (1.12.52); FILE MERGED 2006/09/04 14:21:32 hjs 1.12.52.1: #i69234# add sc/inc to build.lst


2006-10-30  Rüdiger Timm  <rt@openoffice.org>  [344fb421e1567db32f38a21d6a8a3776e4ec2cc0]

INTEGRATION: CWS ause060 (1.1.2); FILE ADDED 2006/09/04 11:53:10 hjs 1.1.2.1: #i69234# create pch files


2006-10-30  Rüdiger Timm  <rt@openoffice.org>  [be38d9fb0fefc6fd98ded2b4c7c31980b29509a7]

INTEGRATION: CWS ause060 (1.6.172); FILE MERGED 2006/09/22 17:59:09 hjs 1.6.172.1: #i69234# call required makefile


2006-10-30  Rüdiger Timm  <rt@openoffice.org>  [4b22f10afb5e6be746a46ba9ea9e04e6b55f46ba]

INTEGRATION: CWS ause060 (1.1.2); FILE ADDED 2006/09/27 09:15:08 hjs 1.1.2.2: #i69234# makefile.pmk not reqired but includes settings.mk 2006/09/22 17:59:04 hjs 1.1.2.1: #i69234# add required makefile


2006-10-27  Rüdiger Timm  <rt@openoffice.org>  [a08af95a6a717a6e16454a854781bdeb5b4b497d]

INTEGRATION: CWS notecontext (1.33.70); FILE MERGED 2006/09/29 09:46:29 nn 1.33.70.1: #i8101# delete note


2006-10-27  Rüdiger Timm  <rt@openoffice.org>  [79826a5329d3e58a5ab995097a8158ad67fdea0c]

INTEGRATION: CWS notecontext (1.46.66); FILE MERGED 2006/09/29 09:46:29 nn 1.46.66.1: #i8101# delete note


2006-10-27  Rüdiger Timm  <rt@openoffice.org>  [da0489975919d520d60c9c970c77ee8e6a59a10d]

INTEGRATION: CWS notecontext (1.42.68); FILE MERGED 2006/09/29 09:46:28 nn 1.42.68.1: #i8101# delete note


2006-10-27  Rüdiger Timm  <rt@openoffice.org>  [5fb53a19062b3e0dc7cdab5bc11f2a28df7b21a8]

INTEGRATION: CWS notecontext (1.39.68); FILE MERGED 2006/09/29 09:46:28 nn 1.39.68.1: #i8101# delete note


2006-10-27  Rüdiger Timm  <rt@openoffice.org>  [d6d2e0d852f0dfa851c9f5139883d36180335e17]

INTEGRATION: CWS notecontext (1.54.278); FILE MERGED 2006/09/29 09:48:12 nn 1.54.278.1: #i8101# #i69947# new: insert/delete note, renamed: insert/delete cells


2006-10-27  Rüdiger Timm  <rt@openoffice.org>  [5d879e490f2391b366f366eb798cae0f20fc19ae]

INTEGRATION: CWS notecontext (1.31.288); FILE MERGED 2006/09/29 09:44:05 nn 1.31.288.1: #i8101# delete note


2006-10-27  Rüdiger Timm  <rt@openoffice.org>  [47268c123f1a0b78197c4c6719b46dd3029ca304]

INTEGRATION: CWS notecontext (1.19.140); FILE MERGED 2006/09/29 09:44:05 nn 1.19.140.1: #i8101# delete note


2006-10-27  Rüdiger Timm  <rt@openoffice.org>  [7c0fe0479ea313fc75f334f3c55948b4967caee7]

INTEGRATION: CWS notecontext (1.50.138); FILE MERGED 2006/09/29 09:43:43 nn 1.50.138.1: #i8101# delete note


2006-10-24  Jens-Heiner Rechtien  <hr@openoffice.org>  [83b9ba437cfce8da6eba8db0cdd9b9f1f0b674f7]

INTEGRATION: CWS pj59 (1.22.144); FILE MERGED 2006/09/19 07:36:33 pjanik 1.22.144.1: #i69025#: Remove extraneous macosx-create-bundle call.


2006-10-24  Jens-Heiner Rechtien  <hr@openoffice.org>  [69f64167e2f116d8e16547c9649ec7f4508696ad]

INTEGRATION: CWS calc40 (1.20.72); FILE MERGED 2006/10/13 10:07:39 nn 1.20.72.1: #i69767# call UseHyphenator before DrawLayer


2006-10-24  Jens-Heiner Rechtien  <hr@openoffice.org>  [929826177b97e3331673c767e1613b153e6417aa]

INTEGRATION: CWS calc40 (1.37.74); FILE MERGED 2006/10/16 12:58:26 nn 1.37.74.1: #i67781# don't exit loop after first SetVisibleBelow call (patch by cmc)


2006-10-24  Jens-Heiner Rechtien  <hr@openoffice.org>  [baedfdef4e49b884c826d7bf373e91f78fd4ee51]

INTEGRATION: CWS calc40 (1.20.74); FILE MERGED 2006/10/11 17:14:28 er 1.20.74.1: #i68960# performance: no unnecessary broadcasts when loading documents from alien file formats


2006-10-24  Jens-Heiner Rechtien  <hr@openoffice.org>  [50f0f01f96da9ea4a29f70bca177cf5636893464]

INTEGRATION: CWS calc40 (1.33.46); FILE MERGED 2006/10/11 17:14:28 er 1.33.46.1: #i68960# performance: no unnecessary broadcasts when loading documents from alien file formats


2006-10-24  Jens-Heiner Rechtien  <hr@openoffice.org>  [595f1efc0ddbfd7c58a084dce2bed9816d8a5fa7]

INTEGRATION: CWS calc40 (1.19.292); FILE MERGED 2006/10/11 17:14:27 er 1.19.292.1: #i68960# performance: no unnecessary broadcasts when loading documents from alien file formats


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [6a4ea043cc40951ca9677f5465508ff4151d3f16]

INTEGRATION: CWS scr1c1 (1.33.58); FILE MERGED 2006/09/07 14:21:00 jodygoldberg 1.33.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [53b8ae7295c0241393484b9b1475822fb2d3cb36]

INTEGRATION: CWS scr1c1 (1.14.58); FILE MERGED 2006/09/07 14:21:00 jodygoldberg 1.14.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [58c43f785a403b88836624ca275ad13f9e236ead]

INTEGRATION: CWS scr1c1 (1.98.58); FILE MERGED 2006/09/07 14:20:59 jodygoldberg 1.98.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [e20c938941a5e3a1d118ff73d0ff619b18a400d7]

INTEGRATION: CWS scr1c1 (1.14.58); FILE MERGED 2006/09/07 21:04:50 er 1.14.58.2: #20857# build break 2006/09/07 14:20:59 jodygoldberg 1.14.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [bb5839d361826b7567b0cd841192c9570694fd75]

INTEGRATION: CWS scr1c1 (1.87.66); FILE MERGED 2006/09/26 17:56:11 er 1.87.66.3: #i69883# get rid of that not-German-not-English Adress crap ;-) 2006/09/26 14:54:03 er 1.87.66.2: #i69883# remove ADDRESS_XL and INDIRECT_XL bits from UI; disable in interpreter 2006/09/07 14:20:57 jodygoldberg 1.87.66.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [e58834cbd133941fbc808c872692787b2685aff0]

INTEGRATION: CWS scr1c1 (1.64.66); FILE MERGED 2006/09/07 14:20:57 jodygoldberg 1.64.66.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [c3eaae9de27ae693d22a0a51e695e2b15c6a4143]

INTEGRATION: CWS scr1c1 (1.8.274); FILE MERGED 2006/09/07 14:20:56 jodygoldberg 1.8.274.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [e7564b7cc6514a90c2a023b844c5610d33e17a18]

INTEGRATION: CWS scr1c1 (1.13.244); FILE MERGED 2006/09/07 14:20:56 jodygoldberg 1.13.244.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [53cc8b9e88d19078e41ca792120a6d754e7330a1]

INTEGRATION: CWS scr1c1 (1.13.122); FILE MERGED 2006/09/07 14:20:56 jodygoldberg 1.13.122.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [956d014eb57ecb26b48e4a513ceac05c5a0a1365]

INTEGRATION: CWS scr1c1 (1.4.276); FILE MERGED 2006/09/07 14:20:56 jodygoldberg 1.4.276.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [e704ba11be3fd292f6be9fa76318c6e68d5beba8]

INTEGRATION: CWS scr1c1 (1.61.56); FILE MERGED 2006/09/07 20:22:12 er 1.61.56.2: #20857# build break 2006/09/07 14:20:56 jodygoldberg 1.61.56.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [a1da76376378bb154f3de9f780f125dd86081fa9]

INTEGRATION: CWS scr1c1 (1.7.58); FILE MERGED 2006/09/07 14:20:55 jodygoldberg 1.7.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [29e9835c7928d2823634bc3b8d22825f351ea170]

INTEGRATION: CWS scr1c1 (1.65.56); FILE MERGED 2006/09/07 14:20:55 jodygoldberg 1.65.56.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [14a2358caa8049d92e977ae2d9bddcf80b49676a]

INTEGRATION: CWS scr1c1 (1.17.58); FILE MERGED 2006/09/07 14:20:55 jodygoldberg 1.17.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [23607c41bc5d1b48ff11c78c81b85a79614f8cd5]

INTEGRATION: CWS scr1c1 (1.24.58); FILE MERGED 2006/09/07 14:20:54 jodygoldberg 1.24.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [f863b83cdfbdd6d8fb7246ffb4a631df8a6d43fe]

INTEGRATION: CWS scr1c1 (1.23.58); FILE MERGED 2006/09/07 14:20:54 jodygoldberg 1.23.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [d213c4be6cb8e2ff9bd4604e1dc2fdac8cfccbd9]

INTEGRATION: CWS scr1c1 (1.3.58); FILE MERGED 2006/09/26 17:56:11 er 1.3.58.1: #i69883# get rid of that not-German-not-English Adress crap ;-)


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [32c1f32fcf58b5265745c25d90e5265076b83992]

INTEGRATION: CWS scr1c1 (1.11.266); FILE MERGED 2006/09/26 17:56:11 er 1.11.266.1: #i69883# get rid of that not-German-not-English Adress crap ;-)


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [4c742ecaf64baa4eb75cc8a0c28b4f513e62c0c5]

INTEGRATION: CWS scr1c1 (1.14.58); FILE MERGED 2006/09/26 17:56:10 er 1.14.58.1: #i69883# get rid of that not-German-not-English Adress crap ;-)


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [08431f6a6e0bbbf7346290bd34a395cc55dd2c3d]

INTEGRATION: CWS scr1c1 (1.12.58); FILE MERGED 2006/09/26 17:56:10 er 1.12.58.1: #i69883# get rid of that not-German-not-English Adress crap ;-)


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [2130095c2ec24faf61e90e6c43affd3e83f3bff1]

INTEGRATION: CWS scr1c1 (1.41.48); FILE MERGED 2006/09/26 17:56:10 er 1.41.48.1: #i69883# get rid of that not-German-not-English Adress crap ;-)


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [a958dd0905d6e435240f7c2bddeb5bed9d3dc7f4]

INTEGRATION: CWS scr1c1 (1.4.58); FILE MERGED 2006/09/07 14:20:54 jodygoldberg 1.4.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [21798b12dd7161b7a2c82ae3c346644d9845f41a]

INTEGRATION: CWS scr1c1 (1.7.58); FILE MERGED 2006/09/07 14:20:53 jodygoldberg 1.7.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [a53570cad6a3b9f1f6af9193abcaacff8ad0641c]

INTEGRATION: CWS scr1c1 (1.21.58); FILE MERGED 2006/09/07 14:20:53 jodygoldberg 1.21.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [e0d3e58b4b114a076eb02bc1dd8df7937ed0ab27]

INTEGRATION: CWS scr1c1 (1.8.56); FILE MERGED 2006/09/07 14:20:53 jodygoldberg 1.8.56.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [95f98bb7d01b15cc6f3d4c5bf1eab5c3b9ffd420]

INTEGRATION: CWS scr1c1 (1.42.58); FILE MERGED 2006/09/27 10:54:11 er 1.42.58.4: #i69883# gnagna.. ScAddressFunc 2006/09/26 17:56:10 er 1.42.58.3: #i69883# get rid of that not-German-not-English Adress crap ;-) 2006/09/26 14:54:02 er 1.42.58.2: #i69883# remove ADDRESS_XL and INDIRECT_XL bits from UI; disable in interpreter 2006/09/07 14:20:53 jodygoldberg 1.42.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [e0195a9ef4049f088467e09028e358fb51df4293]

INTEGRATION: CWS scr1c1 (1.40.24); FILE MERGED 2006/09/26 17:56:09 er 1.40.24.3: #i69883# get rid of that not-German-not-English Adress crap ;-) 2006/09/26 14:54:02 er 1.40.24.2: #i69883# remove ADDRESS_XL and INDIRECT_XL bits from UI; disable in interpreter 2006/09/07 14:20:53 jodygoldberg 1.40.24.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [c1ad0e3309d78987d0e0ad7a40a6b75ee8bd15c1]

INTEGRATION: CWS scr1c1 (1.63.26); FILE MERGED 2006/09/26 15:49:26 er 1.63.26.2: #i69883# remove unneeded convention parameter from EnQuote/DeQuote 2006/09/07 14:20:52 jodygoldberg 1.63.26.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [2855a05ad7130be93cb32dc886eabf8d545e3f10]

INTEGRATION: CWS scr1c1 (1.24.58); FILE MERGED 2006/09/07 14:20:52 jodygoldberg 1.24.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [f56e58ba33e49cae81ceae9b5836e966afd1405d]

INTEGRATION: CWS scr1c1 (1.5.58); FILE MERGED 2006/09/07 19:53:30 er 1.5.58.2: #20857# non-pro build break 2006/09/07 14:20:52 jodygoldberg 1.5.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [9558c2de212b8a49ec5a376a1a131bf59fa7145e]

INTEGRATION: CWS scr1c1 (1.49.66); FILE MERGED 2006/09/26 17:56:09 er 1.49.66.3: #i69883# get rid of that not-German-not-English Adress crap ;-) 2006/09/26 14:54:02 er 1.49.66.2: #i69883# remove ADDRESS_XL and INDIRECT_XL bits from UI; disable in interpreter 2006/09/07 14:20:52 jodygoldberg 1.49.66.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [64489f9ae75d68977024fdca74e979c288354207]

INTEGRATION: CWS scr1c1 (1.25.66); FILE MERGED 2006/09/26 17:56:08 er 1.25.66.3: #i69883# get rid of that not-German-not-English Adress crap ;-) 2006/09/26 14:54:01 er 1.25.66.2: #i69883# remove ADDRESS_XL and INDIRECT_XL bits from UI; disable in interpreter 2006/09/07 14:20:51 jodygoldberg 1.25.66.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [2a3ec3ced9da908c84a6a5b63e6d64b743f8c0ad]

INTEGRATION: CWS scr1c1 (1.10.58); FILE MERGED 2006/09/07 14:20:51 jodygoldberg 1.10.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [237284f9f75f6e5880d9e316ba596f01b6216039]

INTEGRATION: CWS scr1c1 (1.15.58); FILE MERGED 2006/09/07 14:20:51 jodygoldberg 1.15.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [31cca16d9432a8b70d403be9053e7ee8b731ae93]

INTEGRATION: CWS scr1c1 (1.31.56); FILE MERGED 2006/09/07 14:20:51 jodygoldberg 1.31.56.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [b6383dfbeb05f41a7e191dd0b04dcef7679245af]

INTEGRATION: CWS scr1c1 (1.58.56); FILE MERGED 2006/09/07 14:20:51 jodygoldberg 1.58.56.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [d1643c5d2049c598404a67246cade2ce774ee682]

INTEGRATION: CWS scr1c1 (1.19.58); FILE MERGED 2006/09/07 14:20:50 jodygoldberg 1.19.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [e5d9f2f330afbb5e5c014fc4946f8c5b4e510281]

INTEGRATION: CWS scr1c1 (1.21.58); FILE MERGED 2006/09/07 14:20:50 jodygoldberg 1.21.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [bd54518add072f0c5cb9174c6bf0d43c58ddca93]

INTEGRATION: CWS scr1c1 (1.26.26); FILE MERGED 2006/09/07 14:20:50 jodygoldberg 1.26.26.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [4fd088a54b58eb8adc128d2fecf6e87fa128b2cb]

INTEGRATION: CWS scr1c1 (1.33.24); FILE MERGED 2006/09/07 14:20:50 jodygoldberg 1.33.24.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [6dbebec731f55d443dab4ea34ed0f1397fb65c53]

INTEGRATION: CWS scr1c1 (1.12.58); FILE MERGED 2006/09/07 14:20:50 jodygoldberg 1.12.58.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [024f89438e227607415db34c9ad67cad9b301132]

INTEGRATION: CWS scr1c1 (1.2.276); FILE MERGED 2006/09/07 14:20:49 jodygoldberg 1.2.276.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [29cff5ecb1ca4dfeca27601e08f51c8a5e395d3c]

INTEGRATION: CWS scr1c1 (1.6.274); FILE MERGED 2006/09/07 14:20:49 jodygoldberg 1.6.274.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [2c62883a67aeaf5235e9ecf33aa6c6475cd02861]

INTEGRATION: CWS scr1c1 (1.5.264); FILE MERGED 2006/09/07 14:20:49 jodygoldberg 1.5.264.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [08a227c9a055a971e998c8c430dce018087e59eb]

INTEGRATION: CWS scr1c1 (1.14.66); FILE MERGED 2006/09/26 17:56:08 er 1.14.66.2: #i69883# get rid of that not-German-not-English Adress crap ;-) 2006/09/07 14:20:49 jodygoldberg 1.14.66.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [afdad3245960b30d11e1ba68a3f7e7cb620783c4]

INTEGRATION: CWS scr1c1 (1.14.66); FILE MERGED 2006/09/07 14:20:49 jodygoldberg 1.14.66.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [ff7e41c8c22a355c0ce8e6548f6ff1ca949b1f9a]

INTEGRATION: CWS scr1c1 (1.92.120); FILE MERGED 2006/09/07 14:20:48 jodygoldberg 1.92.120.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [2d561c7642bf215bae16e60c3823f0704db753a3]

INTEGRATION: CWS scr1c1 (1.26.26); FILE MERGED 2006/09/26 15:49:25 er 1.26.26.2: #i69883# remove unneeded convention parameter from EnQuote/DeQuote 2006/09/07 14:20:48 jodygoldberg 1.26.26.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [8f577411d650668bd5859f046eb3717271a287d1]

INTEGRATION: CWS scr1c1 (1.12.66); FILE MERGED 2006/09/26 17:56:08 er 1.12.66.2: #i69883# get rid of that not-German-not-English Adress crap ;-) 2006/09/07 14:20:48 jodygoldberg 1.12.66.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [42585de2e4a8f916d2e363b9ffe5fb946d312fa5]

INTEGRATION: CWS scr1c1 (1.16.276); FILE MERGED 2006/09/07 14:20:48 jodygoldberg 1.16.276.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [2b8feb62eae37568123c870a7f1733f167d65fd5]

INTEGRATION: CWS scr1c1 (1.25.122); FILE MERGED 2006/09/07 15:16:10 jodygoldberg 1.25.122.1: Issue number:  20857 Submitted by:  jodygoldberg Reviewed by:

Missed one piece of the patch

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [fccaffeed3ed29bfa385b779c1e2af88c673b945]

INTEGRATION: CWS scr1c1 (1.19.276); FILE MERGED 2006/09/07 14:20:48 jodygoldberg 1.19.276.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [fd686233bc43abcdb401003b8b87242a86491f7f]

INTEGRATION: CWS scr1c1 (1.9.142); FILE MERGED 2006/09/07 14:20:48 jodygoldberg 1.9.142.1: Issue number:  20857 Submitted by:  jodygoldberg

Implements the the core changes to support parsing and generating cell/range
references in different formats (XL R1C1/A1) along with some tools for using
the new types.  This adds two new functions
    XL_INDIRECT
    XL_ADDRESS
but does _not_ connect them in the xls importer.  Nor does the patch make any
UI changes.  Those will need to be discussed.  The OOo parser/generator should
not be impacted by the changes.

2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [8395d04f8292c1c69cafd8ab18467116b5a6102d]

INTEGRATION: CWS calc39 (1.41.62); FILE MERGED 2006/10/12 09:49:48 er 1.41.62.3: #i15509# was temporarily rejected due to QA time constraints 2006/10/05 22:30:58 er 1.41.62.2: #i15509# invoke CSV text import dialog when pasting unformatted text with delimiters from clipboard 2006/09/20 16:54:00 nn 1.41.62.1: #i62773# handle SOT_FORMAT_FILE_LIST in drag&drop etc.


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [50b70eaa8b8c62992b651c70da211af27eb98960]

INTEGRATION: CWS calc39 (1.8.64); FILE MERGED 2006/09/12 14:03:56 nn 1.8.64.1: #i59893# don't use visible size 0


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [d80b0aaa926440a9e08bcc400d9348725928e4d1]

INTEGRATION: CWS calc39 (1.51.26); FILE MERGED 2006/09/13 17:10:41 nn 1.51.26.1: #i63149# DrawStrings/DrawEdit: Clip at output area


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [97000720b11c77df2fe9cab431f9a880bb3bc093]

INTEGRATION: CWS calc39 (1.77.62); FILE MERGED 2006/09/20 16:54:00 nn 1.77.62.1: #i62773# handle SOT_FORMAT_FILE_LIST in drag&drop etc.


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [12abb3655a487c6d5618b4c573429797f837d6db]

INTEGRATION: CWS calc39 (1.23.64); FILE MERGED 2006/09/18 13:35:28 nn 1.23.64.1: #i60855# shift left/right requires merge refresh of the moved area


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [f14a35cc598c5eba07499557f9f48cf331288ba1]

INTEGRATION: CWS calc39 (1.11.282); FILE MERGED 2006/10/05 22:30:58 er 1.11.282.1: #i15509# invoke CSV text import dialog when pasting unformatted text with delimiters from clipboard


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [49b9b4b6b17ffb957be0765b190fd5fb689f9dd9]

INTEGRATION: CWS calc39 (1.28.52); FILE MERGED 2006/09/26 17:24:06 nn 1.28.52.1: #135362# test single properties of button for URL


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [94bca8bdcbf90ebf0447d84fbf5832e510bcadbe]

INTEGRATION: CWS calc39 (1.36.62); FILE MERGED 2006/10/05 22:30:57 er 1.36.62.1: #i15509# invoke CSV text import dialog when pasting unformatted text with delimiters from clipboard


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [4415684975bffe0acb70edbd8165ed2fa871befa]

INTEGRATION: CWS calc39 (1.9.62); FILE MERGED 2006/10/05 22:30:57 er 1.9.62.1: #i15509# invoke CSV text import dialog when pasting unformatted text with delimiters from clipboard


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [d0c384555967943e8a75381057d6752b269eb4b0]

INTEGRATION: CWS calc39 (1.65.62); FILE MERGED 2006/09/12 16:18:13 nn 1.65.62.1: #i67990# don't use pLastPattern in EnterHandler


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [92f7e9ed129bb81ac55bd0d769fc21cc8a763b92]

INTEGRATION: CWS calc39 (1.8.282); FILE MERGED 2006/09/15 14:45:47 dr 1.8.282.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [b5171671edc03ed2ad85e73be78749f49a8d77a5]

INTEGRATION: CWS calc39 (1.4.72); FILE MERGED 2006/09/15 14:45:47 dr 1.4.72.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [f7563a5a65b34c7bb65e9dd6a81540341af89d35]

INTEGRATION: CWS calc39 (1.2.72); FILE MERGED 2006/09/15 14:45:47 dr 1.2.72.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [633612668632e93949bf559d03527c65367d2f00]

INTEGRATION: CWS calc39 (1.4.72); FILE MERGED 2006/09/15 14:45:46 dr 1.4.72.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [5aca222d816a9559229da1d712336237d1b8e799]

INTEGRATION: CWS calc39 (1.2.72); FILE MERGED 2006/10/09 12:29:34 nn 1.2.72.2: RESYNC: (1.2-1.3); FILE MERGED 2006/09/15 14:45:59 dr 1.2.72.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [d11dea98c219d58f4e345830a54c573940b25721]

INTEGRATION: CWS calc39 (1.5.64); FILE MERGED 2006/09/15 14:45:59 dr 1.5.64.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [555f84459c021665e48b0d991d11f120143ac1cb]

INTEGRATION: CWS calc39 (1.14.64); FILE MERGED 2006/10/09 13:25:36 dr 1.14.64.1: add info for unsupported functions to be able to import all function parameters


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [1bb65c06eeb679324b0965ef2a0aea4085048ec6]

INTEGRATION: CWS calc39 (1.5.54); FILE MERGED 2006/10/09 13:25:35 dr 1.5.54.2: add info for unsupported functions to be able to import all function parameters 2006/09/15 14:45:37 dr 1.5.54.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [db55b9db8de2eb2aa65816471ac594d263761e12]

INTEGRATION: CWS calc39 (1.7.54); FILE MERGED 2006/09/15 14:45:37 dr 1.7.54.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [5b0e6e04844e769c9e6540f63bac146a18a69bd8]

INTEGRATION: CWS calc39 (1.12.64); FILE MERGED 2006/09/15 14:45:37 dr 1.12.64.1: #i69533# assertion in pivotcache import, dump pivotcache streams


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [00e4a60bcbdcf8e35e37b67575b15c05ed0ca14b]

INTEGRATION: CWS calc39 (1.12.64); FILE MERGED 2006/10/06 17:44:16 er 1.12.64.1: #i69321# PutStringEntry: the new EMPTY cases need special care in initialization


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [6d403ac1f2639847f108af6eb95afa5d4f3b2e44]

INTEGRATION: CWS calc39 (1.11.64); FILE MERGED 2006/09/14 13:08:27 dr 1.11.64.1: #i69369# handle merged cells with borders together with hidden columns/rows


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [627cc015c7f2f18b61012a0eb98a8f6c4d50fce1]

INTEGRATION: CWS calc39 (1.15.64); FILE MERGED 2006/09/14 13:24:26 nn 1.15.64.1: #i63745# don't use source data's number format for count


2006-10-18  Ivo Hinkelmann  <ihi@openoffice.org>  [2e7962dd3efcf4554d9a315de1f979c1063a5c48]

INTEGRATION: CWS calc39 (1.44.64); FILE MERGED 2006/09/25 15:14:57 nn 1.44.64.1: #134088# InvalidateTextWidth: don't broadcast in clipboard doc


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [a0748d49e013feaf70edf6a8b6c2b98c2893a90f]

INTEGRATION: CWS opofxmlstorage (1.26.26); FILE MERGED 2006/08/25 13:18:45 mav 1.26.26.1: #i68684# supporte iconified objects


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [a14209a05e6fcf0959b48e4b4895a27d3373bd20]

INTEGRATION: CWS opofxmlstorage (1.41.36); FILE MERGED 2006/08/25 13:18:45 mav 1.41.36.1: #i68684# supporte iconified objects


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [6a24d749ff9a4460302a24aadf53c8b0072f0f4c]

INTEGRATION: CWS opofxmlstorage (1.30.24); FILE MERGED 2006/08/25 13:18:45 mav 1.30.24.1: #i68684# supporte iconified objects


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [0a20f1a00e41524bc20d050b7f874d9f7973a289]

INTEGRATION: CWS opofxmlstorage (1.24.28); FILE MERGED 2006/08/25 13:18:45 mav 1.24.28.1: #i68684# supporte iconified objects


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [752d0e788046624661d5082f2ec71b4a50263b96]

INTEGRATION: CWS opofxmlstorage (1.17.38); FILE MERGED 2006/09/12 18:02:15 mav 1.17.38.1: adopt for unix


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [c0563420b255c9b1cf8de9c75522a4b3a36d5963]

INTEGRATION: CWS opofxmlstorage (1.28.128); FILE MERGED 2006/08/25 13:18:44 mav 1.28.128.1: #i68684# supporte iconified objects


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [a516e86adb9b3205008fc5156bea14e9a6e9024b]

INTEGRATION: CWS opofxmlstorage (1.12.260); FILE MERGED 2006/08/29 15:17:50 mav 1.12.260.1: #i68684# support iconified objects from clipboard


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [5f7444d5e799a79fb92333895a03f5dddede62d5]

INTEGRATION: CWS opofxmlstorage (1.22.36); FILE MERGED 2006/08/25 13:18:44 mav 1.22.36.1: #i68684# supporte iconified objects


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [33a18b040bcbb61a63f55b0513ff10b3fad96606]

INTEGRATION: CWS opofxmlstorage (1.31.26); FILE MERGED 2006/08/29 15:17:49 mav 1.31.26.1: #i68684# support iconified objects from clipboard


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [4c48ba4869bc5ad57817a04b045401ed2fa6fcc5]

INTEGRATION: CWS opofxmlstorage (1.16.38); FILE MERGED 2006/08/25 13:18:44 mav 1.16.38.1: #i68684# supporte iconified objects


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [cbe864100a0f598b4f82f5e94f17f9c115c82522]

INTEGRATION: CWS opofxmlstorage (1.82.38); FILE MERGED 2006/09/05 09:49:13 mav 1.82.38.1: #122878# import/export iconified object from/into MS-format


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [367d7d2f3e356353dc453aebc18320f085b38000]

INTEGRATION: CWS opofxmlstorage (1.10.36); FILE MERGED 2006/09/12 09:39:25 mav 1.10.36.1: #i68684# specify the aspect


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [3036c5364be92a04c7f8e733ec44876d230b175f]

INTEGRATION: CWS opofxmlstorage (1.22.46); FILE MERGED 2006/09/05 09:49:12 mav 1.22.46.1: #122878# import/export iconified object from/into MS-format


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [fc154835c650443da225e9b17b77f8ef5f6ae108]

INTEGRATION: CWS opofxmlstorage (1.13.36); FILE MERGED 2006/08/29 15:17:49 mav 1.13.36.1: #i68684# support iconified objects from clipboard


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [f6e3f78ba803892f3b6496ef465fc87ef5db61e3]

INTEGRATION: CWS opofxmlstorage (1.46.38); FILE MERGED 2006/09/05 09:49:12 mav 1.46.38.1: #122878# import/export iconified object from/into MS-format


2006-10-13  Oliver Bolte  <obo@openoffice.org>  [2c451cf1e0584237034f5519a91c3311a271f8e6]

INTEGRATION: CWS opofxmlstorage (1.44.36); FILE MERGED 2006/08/25 13:18:43 mav 1.44.36.1: #i68684# supporte iconified objects


2006-10-12  Oliver Bolte  <obo@openoffice.org>  [2556e6bbfc74d92a63f7d7568c3f45dd94fb74eb]

INTEGRATION: CWS sb59 (1.9.24); FILE MERGED 2006/08/18 12:36:36 sb 1.9.24.1: #i67487# Made code warning-free (wntmsci10).


2006-10-12  Oliver Bolte  <obo@openoffice.org>  [8b6dd9d30bbcfdd499dca3409c565165b71fcb0f]

INTEGRATION: CWS sb59 (1.20.24); FILE MERGED 2006/08/22 15:27:42 sb 1.20.24.1: #i67487# Made code compile (warning-free) again after resync to SRC680m182.


2006-10-12  Oliver Bolte  <obo@openoffice.org>  [326bbbb82263e4759bc8bd97d45b43ffda189cb1]

INTEGRATION: CWS sb59 (1.28.164); FILE MERGED 2006/08/18 12:36:35 sb 1.28.164.1: #i67487# Made code warning-free (wntmsci10).


2006-10-12  Oliver Bolte  <obo@openoffice.org>  [192d9a29580410759954c86c5ac96b6f02891d19]

INTEGRATION: CWS sb59 (1.61.24); FILE MERGED 2006/08/18 12:36:35 sb 1.61.24.1: #i67487# Made code warning-free (wntmsci10).


2006-10-06  Kurt Zenker  <kz@openoffice.org>  [d4cee509aa9eed63776fcd0d8b850f0aa324d84a]

INTEGRATION: CWS fwk46 (1.31.14); FILE MERGED 2006/08/28 11:59:29 mav 1.31.14.1: #i57728# get correct replacement


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [d5ba52de413713f68920b076db04ea272cc59c8a]

INTEGRATION: CWS dr50 (1.33.40); FILE MERGED 2006/09/05 11:41:21 nn 1.33.40.1: #i68690# use the right sheets when looking for merged cells during paste


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [07938fd48494aa5f940dd8182d6c8b7be537227e]

INTEGRATION: CWS dr50 (1.24.32); FILE MERGED 2006/09/06 15:35:03 nn 1.24.32.1: #i59914# SetMarkedOriginalSize: SetDrawModified


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [ce144d9cdbad02dfda61b518c2ad8a3db76e0122]

INTEGRATION: CWS dr50 (1.14.42); FILE MERGED 2006/08/31 12:32:35 nn 1.14.42.1: #i58796# check for negative index


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [fb04beb9fc7dd4c2bf65cd50fb15df56f0fdcbe2]

INTEGRATION: CWS dr50 (1.55.40); FILE MERGED 2006/08/31 12:32:35 nn 1.55.40.1: #i58796# check for negative index


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [788d4620e772f2c1eee1c22af3d279f381d02f6c]

INTEGRATION: CWS dr50 (1.17.42); FILE MERGED 2006/08/31 12:32:35 nn 1.17.42.1: #i58796# check for negative index


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [b72f49e5dd550fb9d0d2671045ec8c00467df75b]

INTEGRATION: CWS dr50 (1.47.148); FILE MERGED 2006/09/08 20:37:08 er 1.47.148.1: #i63402# when dBase export fails due to characters that are not representable in the target text encoding, show message pointing to the cell in error


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [96cb138ca464a0a85b997f2aa6b0f04aa810ed0e]

INTEGRATION: CWS dr50 (1.22.42); FILE MERGED 2006/09/08 20:37:08 er 1.22.42.1: #i63402# when dBase export fails due to characters that are not representable in the target text encoding, show message pointing to the cell in error


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [ce01cffc6196b5c748e9c3924b05aeef06bda478]

INTEGRATION: CWS dr50 (1.61.40); FILE MERGED 2006/09/08 12:23:58 nn 1.61.40.1: #i61832# DeleteCells: don't copy too many cells for undo


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [39383ccff20558a38f073eef5edf20d897cfc968]

INTEGRATION: CWS dr50 (1.35.42); FILE MERGED 2006/08/31 12:42:37 dr 1.35.42.1: #i68919# delete view forwarder, patch by cmc


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [f1e5ec45c9f1ffa7c723de93c6cdcc62de7ec986]

INTEGRATION: CWS dr50 (1.45.42); FILE MERGED 2006/08/31 12:54:33 dr 1.45.42.1: #i68923# uninitialized member


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [479d6dc6195064f984d2bfbb0e9c60043375d1e6]

INTEGRATION: CWS dr50 (1.20.42); FILE MERGED 2006/09/05 17:58:46 nn 1.20.42.1: #i57915# handle empty default cell style name


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [9c9d55972d89a2906ad5805ec547c16a013d6f2b]

INTEGRATION: CWS dr50 (1.15.42); FILE MERGED 2006/09/12 11:43:28 dr 1.15.42.2: #i68483# fixed import of page styles 2006/08/31 12:28:53 dr 1.15.42.1: #i68483# 'int' is not 16 bit anymore...


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [e4ec738c6fdbd7d1a73485a2dd2338d212efbfaf]

INTEGRATION: CWS dr50 (1.5.108); FILE MERGED 2006/09/06 13:12:43 dr 1.5.108.2: #i45932# dump column records 2006/09/04 15:46:05 dr 1.5.108.1: #i54252# rework row height import, handle default row height


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [36e7845d81b3e11255aa739898c2ca500b19e967]

INTEGRATION: CWS dr50 (1.19.50); FILE MERGED 2006/09/05 08:36:28 dr 1.19.50.1: #i66297# do not skip attributes from default cell style


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [b0034fcf5df26d160a3fd11f416897f29e212e05]

INTEGRATION: CWS dr50 (1.4.50); FILE MERGED 2006/09/06 13:12:43 dr 1.4.50.2: #i45932# dump column records 2006/09/05 10:47:00 dr 1.4.50.1: #i59220# add tolerance of +-128 rows when exporting OOo1.x sheets (32000 row limit)


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [53c01ba3f3fe2455d708fd4aec085dc0ca7b6262]

INTEGRATION: CWS dr50 (1.22.50); FILE MERGED 2006/08/31 12:12:15 dr 1.22.50.1: #i68162# missing include


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [aa87f91d6202ac4626062e1a6b45100442b5f35d]

INTEGRATION: CWS dr50 (1.38.32); FILE MERGED 2006/09/04 16:10:56 dr 1.38.32.2: #i62300# read CELLMERGING records from BIFF5 2006/09/04 15:46:05 dr 1.38.32.1: #i54252# rework row height import, handle default row height


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [73bc30db23b898bbf6ed7214d53ba5c9c5f3e15d]

INTEGRATION: CWS dr50 (1.66.32); FILE MERGED 2006/09/04 16:10:55 dr 1.66.32.1: #i62300# read CELLMERGING records from BIFF5


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [5be8549847dfa77fb8111298d10e66c2acdcf709]

INTEGRATION: CWS dr50 (1.21.202); FILE MERGED 2006/09/05 14:58:00 dr 1.21.202.2: #i51490# broken files, more col/row handling 2006/09/04 15:46:05 dr 1.21.202.1: #i54252# rework row height import, handle default row height


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [2fa20c969b6a242dd2ba03a95fcfe0eb7c48712e]

INTEGRATION: CWS dr50 (1.5.42); FILE MERGED 2006/09/06 13:12:10 dr 1.5.42.1: #i45932# dump column records


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [00a1f98f595057394611355b8ea5999e2cc6eda3]

INTEGRATION: CWS dr50 (1.27.42); FILE MERGED 2006/08/31 11:52:13 dr 1.27.42.1: #i67251# use std::equal to compare memory


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [49a5e9492100790338d84bcd05736fb7d39d7c7c]

INTEGRATION: CWS dr50 (1.22.42); FILE MERGED 2006/09/05 08:36:34 dr 1.22.42.1: #i66297# do not skip attributes from default cell style


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [2ae5ec17be619db6170914296054f1ae6b6f8a38]

INTEGRATION: CWS dr50 (1.5.32); FILE MERGED 2006/09/06 13:11:54 dr 1.5.32.3: #i45932# dump column records 2006/09/05 14:57:53 dr 1.5.32.2: #i51490# broken files, more col/row handling 2006/09/05 10:46:54 dr 1.5.32.1: #i59220# add tolerance of +-128 rows when exporting OOo1.x sheets (32000 row limit)


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [b02fda02789ca9965e478d521d4f3886c7dbfa7d]

INTEGRATION: CWS dr50 (1.7.32); FILE MERGED 2006/09/06 13:11:54 dr 1.7.32.2: #i45932# dump column records 2006/09/05 10:46:54 dr 1.7.32.1: #i59220# add tolerance of +-128 rows when exporting OOo1.x sheets (32000 row limit)


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [a78b6584e70db16b130da735b84ff8ed2dadab48]

INTEGRATION: CWS dr50 (1.29.12); FILE MERGED 2006/09/05 08:36:34 dr 1.29.12.1: #i66297# do not skip attributes from default cell style


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [da05e3c96135a6e56135a80e06c2752957577f4c]

INTEGRATION: CWS dr50 (1.13.42); FILE MERGED 2006/09/11 10:03:26 dr 1.13.42.2: #i66297# little corrections 2006/09/05 10:46:54 dr 1.13.42.1: #i59220# add tolerance of +-128 rows when exporting OOo1.x sheets (32000 row limit)


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [8b8e2e3699dbbeb05214d4da2283928ab5214581]

INTEGRATION: CWS dr50 (1.61.32); FILE MERGED 2006/09/04 16:10:49 dr 1.61.32.1: #i62300# read CELLMERGING records from BIFF5


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [2ed3044ba97ae68b95c027faecf788d581abd173]

INTEGRATION: CWS dr50 (1.82.30); FILE MERGED 2006/09/05 14:57:52 dr 1.82.30.3: #i51490# broken files, more col/row handling 2006/09/04 16:10:49 dr 1.82.30.2: #i62300# read CELLMERGING records from BIFF5 2006/09/04 15:45:27 dr 1.82.30.1: #i54252# rework row height import, hamdle default row height


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [04a98a6639e4c1f13e76674fbdaee193aa1dce7c]

INTEGRATION: CWS dr50 (1.114.32); FILE MERGED 2006/09/05 14:57:52 dr 1.114.32.3: #i51490# broken files, more col/row handling 2006/09/04 16:10:49 dr 1.114.32.2: #i62300# read CELLMERGING records from BIFF5 2006/09/04 15:45:27 dr 1.114.32.1: #i54252# rework row height import, hamdle default row height


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [841f5cfde520582d835e79194980b97dfe789ef0]

INTEGRATION: CWS dr50 (1.41.32); FILE MERGED 2006/09/05 14:57:52 dr 1.41.32.1: #i51490# broken files, more col/row handling


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [8315882528ab9c60a36d427dec2a85708cf427d7]

INTEGRATION: CWS dr50 (1.30.42); FILE MERGED 2006/09/05 14:57:52 dr 1.30.42.2: #i51490# broken files, more col/row handling 2006/09/04 15:45:26 dr 1.30.42.1: #i54252# rework row height import, hamdle default row height


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [b32223208fe1dfc8151211afcd543c3f647bfe8b]

INTEGRATION: CWS dr50 (1.8.42); FILE MERGED 2006/08/30 12:39:37 nn 1.8.42.1: #i68338# handle intersections of different subtotal functions


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [b842111277ba9952b4c3b9521b1f06d43b45f42d]

INTEGRATION: CWS dr50 (1.73.32); FILE MERGED 2006/09/05 11:41:03 nn 1.73.32.1: #i68690# use the right sheets when looking for merged cells during paste


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [82dffdea8b624b7ff472590366b19f0b00688d60]

INTEGRATION: CWS dr50 (1.5.264); FILE MERGED 2006/09/08 20:37:07 er 1.5.264.1: #i63402# when dBase export fails due to characters that are not representable in the target text encoding, show message pointing to the cell in error


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [18e366b91c43a970c89a948e2a76111464aac178]

INTEGRATION: CWS dr50 (1.3.264); FILE MERGED 2006/09/04 10:55:06 nn 1.3.264.1: #i68672# save a few bytes on CellInfo


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [e2d7dd6a76694c31f630983b950d4b852690673b]

INTEGRATION: CWS dr50 (1.92.108); FILE MERGED 2006/09/05 11:40:46 nn 1.92.108.1: #i68690# use the right sheets when looking for merged cells during paste


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [9408624f5bedb6b06f9d33197dc6f1ce0c2b68fe]

INTEGRATION: CWS dr50 (1.42.12); FILE MERGED 2006/08/31 11:36:50 dr 1.42.12.1: #i32269# return error for 0^0 in function SERIESSUM


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [4e5d930a758359b4c4444f6f758c6cbff0c4c6c7]

INTEGRATION: CWS ause068 (1.8.156); FILE MERGED 2006/09/25 15:26:29 hjs 1.8.156.1: #i69536# + no longer required before echo command


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [1e7216bd6c17218f75045ec5d5f59e901fdf57f7]

INTEGRATION: CWS ause068 (1.7.156); FILE MERGED 2006/09/25 15:26:29 hjs 1.7.156.1: #i69536# + no longer required before echo command


2006-10-05  Kurt Zenker  <kz@openoffice.org>  [c6f82d0464ab8904c6da85bd313d93ca66dcfb57]

INTEGRATION: CWS ause068 (1.3.76); FILE MERGED 2006/09/25 15:21:41 hjs 1.3.76.1: #i69536# + no longer required before echo command


2006-09-28  Vladimir Glazounov  <vg@openoffice.org>  [9e1e3c6feb8a1215de3b7e857a3fb909ed56bf0d]

#i10000# library name generation moved to scabstdlg.cxx


2006-09-28  Vladimir Glazounov  <vg@openoffice.org>  [1cea5c806b28c693d2888dbfe0bb5f24bb79b1f2]

#i10000# corrected library name generation


2006-09-27  Vladimir Glazounov  <vg@openoffice.org>  [72d6acebe2cc56c0fe67963d8f11662eb0553f66]

INTEGRATION: CWS kendy11 (1.8.224); FILE MERGED 2006/07/12 09:40:49 kendy 1.8.224.1: #i66439# Improve exporting spreadsheets to HTML


2006-09-27  Vladimir Glazounov  <vg@openoffice.org>  [96d1731d398fb4cd8fed900b191f9f8f8465585b]

INTEGRATION: CWS kendy11 (1.30.222); FILE MERGED 2006/07/31 13:03:55 kendy 1.30.222.2: RESYNC: (1.30-1.31); FILE MERGED 2006/07/12 09:40:49 kendy 1.30.222.1: #i66439# Improve exporting spreadsheets to HTML


2006-09-27  Vladimir Glazounov  <vg@openoffice.org>  [a3801aee6d68e1c10bf9bcc6b8f6ea7bcc5f3dce]

INTEGRATION: CWS jam01 (1.4.4); FILE MERGED 2006/08/28 16:10:44 kaib 1.4.4.4: #i67378# Added cast to proper sal_Int32 2006/08/25 13:13:43 kendy 1.4.4.3: Fixed a small typo. 2006/08/25 13:01:29 kaib 1.4.4.2: #i67378# Fixed string handling to work cross platform 2006/07/25 17:16:05 kaib 1.4.4.1: #i67378# Tweaked Jamfiles and fixed some PCH issues


2006-09-27  Vladimir Glazounov  <vg@openoffice.org>  [731ef3fb8c6ca96237966ec859074044d3d2b42b]

INTEGRATION: CWS jam01 (1.2.6); FILE MERGED 2006/07/25 17:16:05 kaib 1.2.6.1: #i67378# Tweaked Jamfiles and fixed some PCH issues


2006-09-27  Vladimir Glazounov  <vg@openoffice.org>  [b51cf1b07cc6be4b33efd579f352cc78864bff76]

INTEGRATION: CWS jam01 (1.2.6); FILE MERGED 2006/07/25 17:16:04 kaib 1.2.6.1: #i67378# Tweaked Jamfiles and fixed some PCH issues


2006-09-27  Vladimir Glazounov  <vg@openoffice.org>  [7fd2a235f064abdfce68bd31a96f9d186171d04e]

INTEGRATION: CWS jam01 (1.2.4); FILE MERGED 2006/08/30 15:45:27 kaib 1.2.4.2: #i67378# Fixing case mismatches in pch file for unxlngi6 2006/07/25 17:16:04 kaib 1.2.4.1: #i67378# Tweaked Jamfiles and fixed some PCH issues


2006-09-27  Vladimir Glazounov  <vg@openoffice.org>  [c7fd198ebab8bae38a79a3af58ef859fc39b3b26]

INTEGRATION: CWS jam01 (1.1.2); FILE ADDED 2006/08/25 17:12:16 kaib 1.1.2.2: #i67378# Fixed 0D issues 2006/07/25 17:16:04 kaib 1.1.2.1: #i67378# Tweaked Jamfiles and fixed some PCH issues


2006-09-25  Vladimir Glazounov  <vg@openoffice.org>  [7ef3e40f7aef4d5ac34607090a1a84fe6c1f423c]

INTEGRATION: CWS obo05 (1.52.10); FILE MERGED 2006/08/25 11:38:43 obo 1.52.10.1: #i53611# type casting


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c0e3a324a87000bdb5fd8a2092fe206911f1615a]

INTEGRATION: CWS pchfix02 (1.1.1.1.190); FILE MERGED 2006/09/01 17:19:03 kaib 1.1.1.1.190.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [e2f9e804ee6c30f3013f91a2c03d13d615844342]

INTEGRATION: CWS pchfix02 (1.4.82); FILE MERGED 2006/09/01 17:19:03 kaib 1.4.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [b6bce1c6cd12333e282b9c10f1592d3bdb920809]

INTEGRATION: CWS pchfix02 (1.2.82); FILE MERGED 2006/09/01 17:19:03 kaib 1.2.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [e4e8f5e46d620c4ce160048d0effb8a0e0403996]

INTEGRATION: CWS pchfix02 (1.10.78); FILE MERGED 2006/09/01 17:19:02 kaib 1.10.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [cda0180af631c3fb7af752f6e577c317e12d7c0f]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:19:02 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [48ad4c480d80fe5860a0c800d541cf4bfb6c6f4e]

INTEGRATION: CWS pchfix02 (1.6.80); FILE MERGED 2006/09/01 17:19:02 kaib 1.6.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [e99c74bfbe6ec8433144ca5a75b314670b2eb32f]

INTEGRATION: CWS pchfix02 (1.35.78); FILE MERGED 2006/09/01 17:19:02 kaib 1.35.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0d0e66c0da5f8fe61cfe81e54ec33b20a69a311b]

INTEGRATION: CWS pchfix02 (1.22.80); FILE MERGED 2006/09/01 17:19:01 kaib 1.22.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [05f6a91ca7150cb11c4afd5aa234af79e68714f6]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:19:01 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [ac7bce77373d50f1a695531e17bfc24b45206812]

INTEGRATION: CWS pchfix02 (1.19.78); FILE MERGED 2006/09/01 17:19:01 kaib 1.19.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [fb1e10888122378c57d411557d168cf61cedffb3]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:19:01 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [bdb2dd3e49fc5ce3ad0451c918535b1b9cf2efc0]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:19:01 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0af8d221042cf20048eccb29669002b9fec9579f]

INTEGRATION: CWS pchfix02 (1.10.78); FILE MERGED 2006/09/01 17:19:01 kaib 1.10.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [2db87a9c44c0bb539130b99ca54e6ca9dd7737e2]

INTEGRATION: CWS pchfix02 (1.13.80); FILE MERGED 2006/09/01 17:19:01 kaib 1.13.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [2905d3eb4e8666ea7f3c471cbd07da5f48001e30]

INTEGRATION: CWS pchfix02 (1.4.36); FILE MERGED 2006/09/01 17:19:00 kaib 1.4.36.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [141ee8972332c34950faf59895cc63abc9df9aae]

INTEGRATION: CWS pchfix02 (1.2.78); FILE MERGED 2006/09/01 17:19:00 kaib 1.2.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [6ab53a19ae30fe0c07b8a7ccf468f57d141feb82]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:19:00 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0ef44724f9ac9a021486ddedbe924758ef97e343]

INTEGRATION: CWS pchfix02 (1.4.82); FILE MERGED 2006/09/01 17:19:00 kaib 1.4.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [053a56260d80793114a27c4e49569f945e1e1ef2]

INTEGRATION: CWS pchfix02 (1.3.190); FILE MERGED 2006/09/01 17:18:59 kaib 1.3.190.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [105956ea7a8fede6f02ca10c9ea4f6400f0a0a04]

INTEGRATION: CWS pchfix02 (1.33.78); FILE MERGED 2006/09/01 17:18:59 kaib 1.33.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [b8488ba77793136155b599f1afdc388025dfae45]

INTEGRATION: CWS pchfix02 (1.10.76); FILE MERGED 2006/09/01 17:18:59 kaib 1.10.76.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [af359b2ecf1a5ebdc16fcb5e36d696de4fbb2dc8]

INTEGRATION: CWS pchfix02 (1.33.190); FILE MERGED 2006/09/01 17:18:59 kaib 1.33.190.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [d18e54b8fb354d41a145d30bb664bc5dbc3e4951]

INTEGRATION: CWS pchfix02 (1.6.186); FILE MERGED 2006/09/01 17:18:58 kaib 1.6.186.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [6d0db06c039c69db609fb928e1478c94e534c0c6]

INTEGRATION: CWS pchfix02 (1.13.190); FILE MERGED 2006/09/01 17:18:58 kaib 1.13.190.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [f27dfa5a20785bb66bdcf04f83160668595af478]

INTEGRATION: CWS pchfix02 (1.2.190); FILE MERGED 2006/09/01 17:18:58 kaib 1.2.190.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [f5a6a2068b65fa1e63f230ce3b4c7cbf6b559e54]

INTEGRATION: CWS pchfix02 (1.15.190); FILE MERGED 2006/09/01 17:18:58 kaib 1.15.190.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [46cd7ae7fb9c91c05b458d9ccfd7bce411dcb983]

INTEGRATION: CWS pchfix02 (1.43.190); FILE MERGED 2006/09/01 17:18:58 kaib 1.43.190.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [365a20836e04e766f99c8876cb27b3af0cc0acc1]

INTEGRATION: CWS pchfix02 (1.6.80); FILE MERGED 2006/09/01 17:18:58 kaib 1.6.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [3b70ed4e1e6f555dc2091f646ca4f545b21d6d4b]

INTEGRATION: CWS pchfix02 (1.6.80); FILE MERGED 2006/09/01 17:18:57 kaib 1.6.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [03540beccd58a80b44ebb4f8121dad59bf4f51ef]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:57 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [926784cef930178c07653abfdbaeeab01ce76f9e]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:18:57 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [93db9648cbaffa61492bb0501f8aaedf3756b5b8]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:18:56 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [7eab019686d03f2475761268e4d4c09dbda31708]

INTEGRATION: CWS pchfix02 (1.9.80); FILE MERGED 2006/09/01 17:18:56 kaib 1.9.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [b4e57bae1870997c58cd8ccd98faa20c2b86ce99]

INTEGRATION: CWS pchfix02 (1.8.80); FILE MERGED 2006/09/01 17:18:56 kaib 1.8.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [544e028c060e813de9bb34277c4c401da41c665f]

INTEGRATION: CWS pchfix02 (1.2.82); FILE MERGED 2006/09/01 17:18:56 kaib 1.2.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [f184b90c8ca327170f31249dcda9dc8d0a3777d9]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:18:55 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0e280a5900ecd2c76bccccdc3294ef7ea3bed218]

INTEGRATION: CWS pchfix02 (1.3.82); FILE MERGED 2006/09/01 17:18:55 kaib 1.3.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [5cd1dfb1206fbdcb4db7381352270f8f6152bf4a]

INTEGRATION: CWS pchfix02 (1.5.82); FILE MERGED 2006/09/01 17:18:55 kaib 1.5.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0f87ac67a20b618ea88046bedc4a16220b30dd17]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:54 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [aafab089f750032dd250aea5c9d547102e7b5134]

INTEGRATION: CWS pchfix02 (1.8.80); FILE MERGED 2006/09/01 17:18:54 kaib 1.8.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [39db196cbe4bd1f279feec4bff9d587866aa3994]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:18:54 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [e70cda103e76dfc67060d2b67a8ba18f3cdd9e55]

INTEGRATION: CWS pchfix02 (1.4.82); FILE MERGED 2006/09/01 17:18:54 kaib 1.4.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [a0f8a4cbbe1b906f706e5620bbc06db83136ad00]

INTEGRATION: CWS pchfix02 (1.3.82); FILE MERGED 2006/09/01 17:18:54 kaib 1.3.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [cc4d513e4f011912e2508060a35d09cd1a4b715b]

INTEGRATION: CWS pchfix02 (1.2.82); FILE MERGED 2006/09/01 17:18:54 kaib 1.2.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [4c1bbfbe63767f93c35310cdf630081abf7aaa4d]

INTEGRATION: CWS pchfix02 (1.2.82); FILE MERGED 2006/09/01 17:18:53 kaib 1.2.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [626addf4545f28b4511137885cf4a887e5343bca]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:18:53 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [975b04873ac88cb06ed12fd6dca930bf7b309dc0]

INTEGRATION: CWS pchfix02 (1.3.82); FILE MERGED 2006/09/01 17:18:53 kaib 1.3.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [d574daa1aa169c2eda7363370b41d723c00f99b7]

INTEGRATION: CWS pchfix02 (1.5.82); FILE MERGED 2006/09/01 17:18:53 kaib 1.5.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [bff8c9fcea79a6a97497d54c5791e3847ef7d47f]

INTEGRATION: CWS pchfix02 (1.4.82); FILE MERGED 2006/09/01 17:18:53 kaib 1.4.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c91305b2c7b219e1f074264ec5e5e7bebd692496]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:53 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [7fca904cda74ffa18ba92a1b069bc44f542273f2]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:18:52 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [3e777844647a08089bdcc0ef929a3ad0030d9c54]

INTEGRATION: CWS pchfix02 (1.6.80); FILE MERGED 2006/09/01 17:18:52 kaib 1.6.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [391f8a228a76face6daad0ced9cf42c7ec1c49c3]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:52 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [09deb8e2b542b883a470f059eaa4dd5da9a79b84]

INTEGRATION: CWS pchfix02 (1.4.82); FILE MERGED 2006/09/01 17:18:52 kaib 1.4.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [b61f4efec35805a732182bf4e8fd26b69098a888]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:52 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [cf53c0f3cf982edcc9ff4efa702bbac09075bf3c]

INTEGRATION: CWS pchfix02 (1.6.80); FILE MERGED 2006/09/01 17:18:51 kaib 1.6.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [cdeddf9bd301adb32e699421939aab9a5d1abd2e]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:18:51 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [d20076bb659bff48aab2ae25122a3c51a54dac99]

INTEGRATION: CWS pchfix02 (1.2.82); FILE MERGED 2006/09/01 17:18:51 kaib 1.2.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c1e3b31df20c14e68ae37567fc1d3cbc80e0e362]

INTEGRATION: CWS pchfix02 (1.7.78); FILE MERGED 2006/09/01 17:18:51 kaib 1.7.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [05457d98d6d0e81e701cc677179a7e3a76d63212]

INTEGRATION: CWS pchfix02 (1.10.80); FILE MERGED 2006/09/01 17:18:51 kaib 1.10.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [d99d7d6bfb8422433acd3ce61f46fb60d4f9f646]

INTEGRATION: CWS pchfix02 (1.7.80); FILE MERGED 2006/09/01 17:18:51 kaib 1.7.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [b2ee9533f38165e2a7e9adff087906cf6d26ca3c]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:18:50 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [9a7a52d564d9306949cd8f7d8f601c69cd5e4a1d]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:49 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [7697026c63bf0e84f927bf592d5d3d246915b0f6]

INTEGRATION: CWS pchfix02 (1.6.80); FILE MERGED 2006/09/01 17:18:49 kaib 1.6.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [b04109a40e3307c0defbba2981bc19282b6bfb38]

INTEGRATION: CWS pchfix02 (1.7.80); FILE MERGED 2006/09/01 17:18:49 kaib 1.7.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0dfad39df5879656e259ea774e98cc765be1775d]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:48 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c7fe8df218d30cd0837cef1adc181e899f36037a]

INTEGRATION: CWS pchfix02 (1.12.80); FILE MERGED 2006/09/01 17:18:48 kaib 1.12.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [95246afc025f9d0727845040c03dca61be8519da]

INTEGRATION: CWS pchfix02 (1.7.80); FILE MERGED 2006/09/01 17:18:48 kaib 1.7.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [01b13096386228799299c8fdb9ac256c9416556a]

INTEGRATION: CWS pchfix02 (1.6.80); FILE MERGED 2006/09/01 17:18:48 kaib 1.6.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [f489569cc186003efbe0dfc0be71b2ed1eacf1ae]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:47 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [626d084d62cd14016db729f185a0680f49355e70]

INTEGRATION: CWS pchfix02 (1.13.80); FILE MERGED 2006/09/01 17:18:47 kaib 1.13.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [4973744c9d4f76e4652764f8a263fabf02710bf5]

INTEGRATION: CWS pchfix02 (1.14.80); FILE MERGED 2006/09/01 17:18:47 kaib 1.14.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [f52f0566aa7804ad71c74c8ca0c9b5642d7b0b57]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:18:47 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [6bc5a3227326812442538e7e937f972ee2342205]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:18:46 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [878f1c634c98b107b902e5232500dda4c701dd54]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:46 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [de91cc21b74f6dbd9212873491a03158785df5e9]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:46 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0b6a21854e46313273304349f46045a95a38524a]

INTEGRATION: CWS pchfix02 (1.8.80); FILE MERGED 2006/09/01 17:18:46 kaib 1.8.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [39226380c7c64706555454e75597b45dadcbb626]

INTEGRATION: CWS pchfix02 (1.2.82); FILE MERGED 2006/09/01 17:18:45 kaib 1.2.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [17bfd283a228013249b59c13e8fa4a7c8f4fc444]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:45 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [cc6e4364bb29f46076597421bc8d04e8ae7a7068]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:44 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [2443106279c706f367b69cc07674f167f533dd4c]

INTEGRATION: CWS pchfix02 (1.12.80); FILE MERGED 2006/09/01 17:18:44 kaib 1.12.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [9077f3ed7f3a91e02196b5d54dcf5908bce233e8]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:44 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [e3e0252fb440e544919ec01344a95df6c3e49546]

INTEGRATION: CWS pchfix02 (1.9.80); FILE MERGED 2006/09/01 17:18:44 kaib 1.9.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [05fd856d2b8084af660a4b2b61cbc993480eabbd]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:43 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [effd854318a558335056d7dffcb87e5a2066e63c]

INTEGRATION: CWS pchfix02 (1.12.80); FILE MERGED 2006/09/01 17:18:43 kaib 1.12.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [2f600e82a557486d349313743767b2e579164bdc]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:43 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0a58eb70b7c51fd6f59bc5c8b1cf15962bf61866]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:18:43 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [b2a96cfe829b23f23297396791a9cf0545d6903d]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:42 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [e1c041a145cf993097bbbed48c2719a5766ca36b]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:42 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c5b7f8365b4dea06ecb29bced58c537dd52739b6]

INTEGRATION: CWS pchfix02 (1.10.80); FILE MERGED 2006/09/01 17:18:42 kaib 1.10.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [14162cd205499aca300d5b6b3bc23a30957e619b]

INTEGRATION: CWS pchfix02 (1.8.80); FILE MERGED 2006/09/01 17:18:42 kaib 1.8.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [0ff3f09dd3eeaef528ba6353cdd2735f8e4d9339]

INTEGRATION: CWS pchfix02 (1.7.80); FILE MERGED 2006/09/01 17:18:41 kaib 1.7.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c456f5f1f95a4bf584386c9c214daf93fa6201b8]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:41 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c9d206e3cb3fdfd589b3804ffaef3511c3b4278f]

INTEGRATION: CWS pchfix02 (1.7.76); FILE MERGED 2006/09/01 17:18:40 kaib 1.7.76.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [79b2d2271470025adb189c2032bcbae1a5a4fcb7]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:40 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c0c97bbe524a85af4dba646923558cd3aff9100d]

INTEGRATION: CWS pchfix02 (1.2.82); FILE MERGED 2006/09/01 17:18:40 kaib 1.2.82.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [5222b0dd16e6ae30cb3cd3d407064ac1a4237e0c]

INTEGRATION: CWS pchfix02 (1.2.80); FILE MERGED 2006/09/01 17:18:40 kaib 1.2.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [edaf2fc2d384eeca3310c947353195625f59928d]

INTEGRATION: CWS pchfix02 (1.20.76); FILE MERGED 2006/09/01 17:18:39 kaib 1.20.76.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [83eaea4298e986908d01c91bc63a62ca9d84cb07]

INTEGRATION: CWS pchfix02 (1.7.80); FILE MERGED 2006/09/01 17:18:39 kaib 1.7.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [4230347c87c0ae09d19233cde1f281129b65240d]

INTEGRATION: CWS pchfix02 (1.25.80); FILE MERGED 2006/09/01 17:18:39 kaib 1.25.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [5132f8fdc0b5c0cd48f7977820334e10018730f1]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:18:39 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [ead81b531aa5a0120bc3f2922b8a3211d5fdcecd]

INTEGRATION: CWS pchfix02 (1.9.80); FILE MERGED 2006/09/01 17:18:39 kaib 1.9.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [f3eb8703f08b2b8abae760dbb21368bd9a61f72c]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:39 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [3d385edef3ca6e144ddbbbd164e07058e9db9992]

INTEGRATION: CWS pchfix02 (1.17.78); FILE MERGED 2006/09/01 17:18:39 kaib 1.17.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [7cd0e40dc5421f6bb7c18b817b9f42396e84d26a]

INTEGRATION: CWS pchfix02 (1.7.80); FILE MERGED 2006/09/01 17:18:38 kaib 1.7.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [f4d0ea566eda36ec209faf7b85285fbb74699fee]

INTEGRATION: CWS pchfix02 (1.13.80); FILE MERGED 2006/09/01 17:18:38 kaib 1.13.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [866b57702e8570f99d4ad2bc1744c27f7dc87fb9]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:38 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [9d0047333b627f3df463d4d8f2e8e21b57e99245]

INTEGRATION: CWS pchfix02 (1.11.80); FILE MERGED 2006/09/01 17:18:37 kaib 1.11.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [c775570339318052da839784db3f3175fb3c31bb]

INTEGRATION: CWS pchfix02 (1.8.80); FILE MERGED 2006/09/01 17:18:37 kaib 1.8.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [4e1f822c1dd9b7150e643c7e31bdab8ae0efc417]

INTEGRATION: CWS pchfix02 (1.7.80); FILE MERGED 2006/09/01 17:18:37 kaib 1.7.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [d9386a2085b72577ee4de401941ad1c2ac55765f]

INTEGRATION: CWS pchfix02 (1.7.78); FILE MERGED 2006/09/01 17:18:36 kaib 1.7.78.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [4f17698499382fc0381c71cc2955fc01ddee5133]

INTEGRATION: CWS pchfix02 (1.11.6); FILE MERGED 2006/09/01 17:18:36 kaib 1.11.6.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [ef6f67012077ea2178eb8075f781ccd9c3f46c25]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:18:36 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [4eaf52e7d58892d0eb42ce4bfe38eb2dbd836908]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:36 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [833313e6b572fd84f7474c0ff0b4588a91886dfe]

INTEGRATION: CWS pchfix02 (1.4.56); FILE MERGED 2006/09/01 17:18:35 kaib 1.4.56.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [402f8302f170924bf889e10d7a560d80deac8910]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:35 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [7eadf2a241de02c18d901630b9fbc8a1c83bf371]

INTEGRATION: CWS pchfix02 (1.5.80); FILE MERGED 2006/09/01 17:18:35 kaib 1.5.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [f290e6c8237e5506b88e6788fd9b74e926587f3f]

INTEGRATION: CWS pchfix02 (1.13.80); FILE MERGED 2006/09/01 17:18:35 kaib 1.13.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [d6c2f695068c98795933477f1413b5a73b17702b]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:34 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [69ec3831f132a806bd07f1cf651da7418dccee82]

INTEGRATION: CWS pchfix02 (1.10.36); FILE MERGED 2006/09/01 17:18:33 kaib 1.10.36.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [d182f3e8a917cca32f3cac965073f4615ec6a399]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:33 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [984e039e2e505ecb1b6bd095d5a6bd9d5dde2602]

INTEGRATION: CWS pchfix02 (1.4.80); FILE MERGED 2006/09/01 17:18:33 kaib 1.4.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [e5d22faf0514c6b425ebf19a4a3ff45a6ec93b26]

INTEGRATION: CWS pchfix02 (1.3.80); FILE MERGED 2006/09/01 17:18:32 kaib 1.3.80.1: #i68856# Added header markers and pch files


2006-09-17  Oliver Bolte  <obo@openoffice.org>  [1b40703ac28d94337e54e45e168bf7a534f071b9]

INTEGRATION: CWS pchfix02 (1.1.2); FILE ADDED 2006/09/01 17:18:32 kaib 1.1.2.1: #i68856# Added header markers and pch files


2006-09-15  Oliver Bolte  <obo@openoffice.org>  [d1c76e8d977cbd81ff18da4b48ddbf3c8a1a1150]

INTEGRATION: CWS ause066 (1.35.64); FILE MERGED 2006/08/31 13:46:48 hjs 1.35.64.1: #i69141# cleanup


2006-08-29  Ivo Hinkelmann  <ihi@openoffice.org>  [753ba99d069dd0bfebdfce80e4ae34df85743347]

INTEGRATION: CWS rt16 (1.34.26); FILE MERGED 2006/08/10 12:50:09 rt 1.34.26.1: #i68214# Obsolete svx headers removed.


2006-08-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [c4503e38e643de56954ad183ce804387af10bf65]

INTEGRATION: CWS calcmergedcells (1.50.16); FILE MERGED 2006/08/04 08:44:56 nn 1.50.16.1: #i68085# DrawStrings: pattern from cell info for hidden columns is null


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [5922dd8e3519de3c90ceba9a2e43be68bcf5e302]

INTEGRATION: CWS fwk42 (1.63.12); FILE MERGED 2006/08/01 18:05:39 mav 1.63.12.1: #139038# change the default value


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [e70913e0fbaed5530e3452e09b5b48e3b9935d3c]

INTEGRATION: CWS a11y204 (1.48.6); FILE MERGED 2006/08/02 09:56:17 tl 1.48.6.1: #i68067# evaluation of bDark for hi-contrast fixed


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [36da00c652d810577c05006bc8c65fc2a0ea3cf3]

INTEGRATION: CWS addinconfig (1.19.226); FILE MERGED 2006/07/26 13:41:35 nn 1.19.226.2: RESYNC: (1.19-1.20); FILE MERGED 2006/07/24 13:47:35 nn 1.19.226.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [8334b1f8cd1fa5cdc9438274abf2a6dd7a44aefd]

INTEGRATION: CWS addinconfig (1.12.224); FILE MERGED 2006/07/26 13:28:16 nn 1.12.224.2: RESYNC: (1.12-1.13); FILE MERGED 2006/07/24 13:47:20 nn 1.12.224.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [68cec89e5de992635eb448ba36a419c6f2bda28d]

INTEGRATION: CWS addinconfig (1.9.224); FILE MERGED 2006/07/26 13:27:59 nn 1.9.224.2: RESYNC: (1.9-1.10); FILE MERGED 2006/07/24 13:47:20 nn 1.9.224.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [73e1a4fa8fd75cfd961afc588889371f48c79c68]

INTEGRATION: CWS addinconfig (1.49.2); FILE MERGED 2006/07/26 13:11:26 nn 1.49.2.2: RESYNC: (1.49-1.50); FILE MERGED 2006/07/24 13:47:00 nn 1.49.2.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [7329fc7dc54d7d762ef010aefd599bf08b3f93f6]

INTEGRATION: CWS addinconfig (1.4.226); FILE MERGED 2006/07/26 12:38:02 nn 1.4.226.2: RESYNC: (1.4-1.5); FILE MERGED 2006/07/24 13:46:28 nn 1.4.226.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [d23e7a8636b8893fcd2d25d6c47e2548c9bdf2e3]

INTEGRATION: CWS addinconfig (1.5.226); FILE MERGED 2006/07/26 12:37:54 nn 1.5.226.2: RESYNC: (1.5-1.6); FILE MERGED 2006/07/24 13:46:28 nn 1.5.226.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [4522b9c9343591845a010dd00943d3f7cf1a6d08]

INTEGRATION: CWS addinconfig (1.16.2); FILE MERGED 2006/07/24 13:46:28 nn 1.16.2.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [bd303960bbbc49840098e9b23fa151e69fe0b321]

INTEGRATION: CWS addinconfig (1.17.94); FILE MERGED 2006/07/26 12:32:12 nn 1.17.94.2: RESYNC: (1.17-1.18); FILE MERGED 2006/07/24 13:46:27 nn 1.17.94.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [1d58699c07d6e20a24f556af28d6aac6f8073ed3]

INTEGRATION: CWS addinconfig (1.1.2); FILE ADDED 2006/07/24 13:46:27 nn 1.1.2.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [f486c8fa6d07c5b99a8d52c818e6cc66888ef774]

INTEGRATION: CWS addinconfig (1.45.74); FILE MERGED 2006/07/26 12:27:32 nn 1.45.74.2: RESYNC: (1.45-1.46); FILE MERGED 2006/07/24 13:46:45 nn 1.45.74.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [0540d70ca721b83cb4802b9e282500043611ce2c]

INTEGRATION: CWS addinconfig (1.19.186); FILE MERGED 2006/07/24 13:45:45 nn 1.19.186.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [0dd547fa98deb4c64ec0c6aaa5072946fff7f652]

INTEGRATION: CWS addinconfig (1.2.226); FILE MERGED 2006/07/24 13:45:45 nn 1.2.226.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [d3571cb40ba051b35333f247cd021d464d5190bd]

INTEGRATION: CWS addinconfig (1.45.90); FILE MERGED 2006/07/24 13:45:44 nn 1.45.90.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [b384f040f09d543e7d7c455053072c23f0ef956c]

INTEGRATION: CWS addinconfig (1.8.94); FILE MERGED 2006/07/24 13:45:44 nn 1.8.94.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [bbbdd2319bd8186c939716b4895e9b4eed2922f1]

INTEGRATION: CWS addinconfig (1.1.2); FILE ADDED 2006/07/24 13:45:44 nn 1.1.2.1: #i67723# read add-in function information from configuration


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [7ab4edaced52e4857855d422ce4a47731b69da82]

INTEGRATION: CWS calc38 (1.18.14); FILE MERGED 2006/07/25 17:38:30 er 1.18.14.1: #i51434# detect: SYLK ID RTD's FTD alternatives P,N,E


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [9ca31e9848d90fe9a90b25bebff11dfbd2d98c09]

INTEGRATION: CWS calc38 (1.20.14); FILE MERGED 2006/07/26 09:05:00 dr 1.20.14.1: #i67768# no charset in BIFF2-BIFF4 FONT records


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [a9c845183a44f0d8800c400d5e30027a4444f14e]

INTEGRATION: CWS calc38 (1.27.14); FILE MERGED 2006/07/26 09:04:50 dr 1.27.14.1: #i67768# no charset in BIFF2-BIFF4 FONT records


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [74e64b82f5d957b18d6d9bf2f88c53eacd1066c4]

INTEGRATION: CWS calc38 (1.7.236); FILE MERGED 2006/07/26 15:42:16 er 1.7.236.1: #i64576# ScUserList: for lists of day names take locale data's calendar's StartOfWeek into  account


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [fb1e521d13a23e99e88ff1439229a259f4eedc54]

INTEGRATION: CWS calc38 (1.38.80); FILE MERGED 2006/07/25 19:26:14 er 1.38.80.2: #i62850# ScIndex: access one element of a vector independent of col/row orientation 2006/07/21 15:21:08 er 1.38.80.1: #i66238# GetStVarParams: don't access a vector using an USHORT in a loop ... that never ends


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [d2bdeda4696579f0a65e81a13c2a49a21ae4449b]

INTEGRATION: CWS calc38 (1.61.14); FILE MERGED 2006/07/21 19:38:03 er 1.61.14.1: #i62754# UpdateReference: new listening and recalculation if a referenced range changes size


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [546453cf64c03a3c725f5331f2369fab8345d08f]

INTEGRATION: CWS calc38 (1.24.236); FILE MERGED 2006/07/21 19:38:03 er 1.24.236.1: #i62754# UpdateReference: new listening and recalculation if a referenced range changes size


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [8284fce8c2db6f4048189ae8f60f8aefcb1c36d9]

INTEGRATION: CWS calc38 (1.31.202); FILE MERGED 2006/07/26 20:47:59 er 1.31.202.1: #i59423# Interpret: iterations: restore running state also of non-dirty cells; if one cell of a circular dependency didn't converge, all don't.


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [10fc7e9485e29ba54e5329391d29942eb98c117c]

INTEGRATION: CWS calc38 (1.25.194); FILE MERGED 2006/07/21 19:38:02 er 1.25.194.1: #i62754# UpdateReference: new listening and recalculation if a referenced range changes size


2006-08-04  Ivo Hinkelmann  <ihi@openoffice.org>  [fe64ac563b94ee08236ce7395dd10f50462b8575]

INTEGRATION: CWS onlineupdate3 (1.25.76); FILE MERGED 2006/07/14 07:59:42 obr 1.25.76.1: #i66949# Moved help menu entry


2006-08-03  Ivo Hinkelmann  <ihi@openoffice.org>  [11308a67bfe9d2f7c46041c87de0cf5707610624]

INTEGRATION: CWS calchtmlcrash (1.28.14); FILE MERGED 2006/08/02 09:10:06 nn 1.28.14.1: #i67910# ER: use int32 in GetWidth, check MAX values in Colonize (cope better with broken documents)


2006-08-01  Ivo Hinkelmann  <ihi@openoffice.org>  [130f94b84186a7ee70f7810962173d7d8b3b79e3]

INTEGRATION: CWS pj55 (1.5.232); FILE MERGED 2006/07/24 22:33:21 pjanik 1.5.232.2: RESYNC: (1.5-1.6); FILE MERGED 2006/07/18 06:37:13 pjanik 1.5.232.1: #i67404#: Remove obsolete #pragma SEG_EOFMODULE.


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [23761c45f0eac596da6ca7351c89a524e965dcb4]

INTEGRATION: CWS aw035 (1.25.104); FILE MERGED 2006/07/13 15:04:11 aw 1.25.104.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [dea3004cda902c0bfe50d9d3a518ce3f614dde91]

INTEGRATION: CWS aw035 (1.10.72); FILE MERGED 2006/07/13 11:56:34 aw 1.10.72.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [a0b2197464fc3dbc0fcb0af2427de9b73442c379]

INTEGRATION: CWS aw035 (1.24.24); FILE MERGED 2006/07/13 15:04:14 aw 1.24.24.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [e0a5da4063a199ec43a586fdc61fac5b11d08e20]

INTEGRATION: CWS aw035 (1.11.218); FILE MERGED 2006/07/13 15:04:14 aw 1.11.218.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [3bc8cde6ce09eb4c00e9168b706fe0ea72125596]

INTEGRATION: CWS aw035 (1.28.70); FILE MERGED 2006/07/13 15:04:14 aw 1.28.70.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [2c6282319163b0c488117c92b8c0e1a7600d41ed]

INTEGRATION: CWS aw035 (1.8.228); FILE MERGED 2006/07/13 15:04:14 aw 1.8.228.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [a1c107a5d0e408417798ee44c4067f8e3eff9117]

INTEGRATION: CWS aw035 (1.39.72); FILE MERGED 2006/07/13 15:04:14 aw 1.39.72.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [aa1ff89c68549e0a28f5f29a0514cc01b54951cb]

INTEGRATION: CWS aw035 (1.22.148); FILE MERGED 2006/07/13 15:04:13 aw 1.22.148.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [668c551967a548041172377777c5f127789a370f]

INTEGRATION: CWS aw035 (1.7.224); FILE MERGED 2006/07/13 15:04:13 aw 1.7.224.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [89549dc69121425f89d9e0a7a4cdd90b615e98e3]

INTEGRATION: CWS aw035 (1.23.70); FILE MERGED 2006/07/13 15:04:13 aw 1.23.70.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [18174b2d962af3a488447419d0c6d241111f1483]

INTEGRATION: CWS aw035 (1.4.74); FILE MERGED 2006/07/13 15:04:12 aw 1.4.74.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [5997c551839c2b0df7ae341ac28072c992f346cb]

INTEGRATION: CWS aw035 (1.7.72); FILE MERGED 2006/07/13 15:04:12 aw 1.7.72.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [7c091876aee327cbb696a932f92efd4f0a6ceb55]

INTEGRATION: CWS aw035 (1.22.214); FILE MERGED 2006/07/13 15:04:12 aw 1.22.214.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [4dcf339fdc4ad5f0a19b3d9e57acccf965268690]

INTEGRATION: CWS aw035 (1.12.72); FILE MERGED 2006/07/13 15:04:12 aw 1.12.72.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [b4fd65bb7ef890508241d1b14e3b3f7e4fe06eb1]

INTEGRATION: CWS aw035 (1.16.212); FILE MERGED 2006/07/13 15:04:12 aw 1.16.212.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [b43d0027742b23cd791b3c342fe52d319c376fa7]

INTEGRATION: CWS aw035 (1.6.226); FILE MERGED 2006/07/13 15:04:12 aw 1.6.226.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [69abbf14c9142a136577ca1f72728d4b154b8c43]

INTEGRATION: CWS aw035 (1.9.224); FILE MERGED 2006/07/13 15:04:12 aw 1.9.224.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [fe88df2cb0ff96dab2a572a8d5a0e34bbb33f58d]

INTEGRATION: CWS aw035 (1.13.224); FILE MERGED 2006/07/13 15:04:11 aw 1.13.224.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [8176eb34eb119e3a37f18bfec81e4ba22e10a299]

INTEGRATION: CWS aw035 (1.5.226); FILE MERGED 2006/07/13 15:04:11 aw 1.5.226.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [11b142b7c55bb6d932ecb2a0e0b2bb2be9c7c517]

INTEGRATION: CWS aw035 (1.19.106); FILE MERGED 2006/07/13 15:04:11 aw 1.19.106.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [3bed8c9d40239aeb0e2f7c3f56dddd031fda27f4]

INTEGRATION: CWS aw035 (1.8.74); FILE MERGED 2006/07/13 15:04:11 aw 1.8.74.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [3c0df5105f5b9eb5e7b5e50dc0382421e704e2b1]

INTEGRATION: CWS aw035 (1.10.226); FILE MERGED 2006/07/13 15:04:10 aw 1.10.226.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [b9306fc1f1200d7945d0544d112c75af1d98408c]

INTEGRATION: CWS aw035 (1.29.24); FILE MERGED 2006/07/13 15:04:10 aw 1.29.24.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [831e0eb7bc35c45881414bfed4758c10df031524]

INTEGRATION: CWS calc37 (1.29.42); FILE MERGED 2006/07/10 14:26:00 dr 1.29.42.1: #i33126# remove cell merge selects merged area, patch by kendy


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [f999e342cda309974b9d1614043025d1f165010e]

INTEGRATION: CWS calc37 (1.23.50); FILE MERGED 2006/07/11 11:46:33 dr 1.23.50.1: #i60296# do not draw space characters


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [5bbf48f9216174929cd2f588b600e992c8262c3f]

INTEGRATION: CWS calc37 (1.37.36); FILE MERGED 2006/07/17 14:10:12 dr 1.37.36.1: #i67106# ignore STRING record


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [95ea7e84399dc6599bbb0ea632354828916e81dd]

INTEGRATION: CWS calc37 (1.65.36); FILE MERGED 2006/07/17 14:10:12 dr 1.65.36.1: #i67106# ignore STRING record


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [d47e6984b78a45804cc2dc54c2ef91f6065b955a]

INTEGRATION: CWS calc37 (1.4.4); FILE MERGED 2006/07/17 14:10:05 dr 1.4.4.1: #i67106# ignore STRING record


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [08a0d5991b41665551c4e06207c070010e2d549e]

INTEGRATION: CWS calc37 (1.5.4); FILE MERGED 2006/07/17 14:10:04 dr 1.5.4.1: #i67106# ignore STRING record


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [6f7f7384b4450abef8066d6bec568a74cb83691f]

INTEGRATION: CWS calc37 (1.11.200); FILE MERGED 2006/07/14 10:52:38 dr 1.11.200.2: RESYNC: (1.11-1.12); FILE MERGED 2006/07/10 11:42:22 dr 1.11.200.1: #i67180# correct number of page fields per row/col


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [3e185077d6ad58bb8c4374606d6fddff10d458f7]

INTEGRATION: CWS calc37 (1.59.4); FILE MERGED 2006/07/17 14:10:04 dr 1.59.4.2: #i67106# ignore STRING record 2006/07/17 12:06:04 dr 1.59.4.1: #i67106# read FORMULA records with different IDs


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [9de3c1d9a4c24a3db8e9efd730fcd2872b539bfe]

INTEGRATION: CWS calc37 (1.80.4); FILE MERGED 2006/07/17 14:10:03 dr 1.80.4.2: #i67106# ignore STRING record 2006/07/17 12:06:04 dr 1.80.4.1: #i67106# read FORMULA records with different IDs


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [215e9099102f624879f6d9d9c3090e31ee1db939]

INTEGRATION: CWS calc37 (1.112.4); FILE MERGED 2006/07/17 14:10:02 dr 1.112.4.1: #i67106# ignore STRING record


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [ef023732681fa072b63cce085bc1668d3f5bbdc4]

INTEGRATION: CWS calc37 (1.39.4); FILE MERGED 2006/07/17 14:10:02 dr 1.39.4.1: #i67106# ignore STRING record


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [e7dce415e9cdf391f2d626c991e1b32ce466629c]

INTEGRATION: CWS calc37 (1.71.78); FILE MERGED 2006/06/09 08:49:59 nn 1.71.78.1: #i65964# CopyFromClip: find merge overlap on all source sheets


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [c5570db105fc0222d2d53a8bee13acc3f33d4d05]

INTEGRATION: CWS rt15 (1.5.214); FILE MERGED 2006/07/03 10:12:42 rt 1.5.214.1: #i66824# segmentc.hxx is obsolete.


2006-07-25  Rüdiger Timm  <rt@openoffice.org>  [9cfd8737d52711506868488c45186d933fe825f6]

INTEGRATION: CWS rt15 (1.7.214); FILE MERGED 2006/07/03 10:12:42 rt 1.7.214.1: #i66824# segmentc.hxx is obsolete.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2389187b608a2b11ac0028c1e4ee0926e53f4a60]

INTEGRATION: CWS pchfix01 (1.11.184); FILE MERGED 2006/07/12 10:01:56 kaib 1.11.184.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [78a04ccca53b5330d33c613c3e0c86884862280e]

INTEGRATION: CWS pchfix01 (1.17.56); FILE MERGED 2006/07/12 10:01:55 kaib 1.17.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [00f0cd456145a502dae7a02addefc688a2c1f439]

INTEGRATION: CWS pchfix01 (1.20.186); FILE MERGED 2006/07/12 10:01:54 kaib 1.20.186.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [63fd9f92175e8a37622875c857b55d6a03d6936b]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:03:14 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [92045a41c175c7116d66a53aa00290539f39d550]

INTEGRATION: CWS pchfix01 (1.11.174); FILE MERGED 2006/07/12 10:03:14 kaib 1.11.174.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [58235e80ad38944318b689fc8fe307ae15e941f5]

INTEGRATION: CWS pchfix01 (1.32.62); FILE MERGED 2006/07/12 10:03:14 kaib 1.32.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [95777ff63a6f3e288fae9283119035c78c3148a2]

INTEGRATION: CWS pchfix01 (1.24.8); FILE MERGED 2006/07/12 10:03:14 kaib 1.24.8.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [332ba3c64a3f14ea838ccaced93dbebdc21204c0]

INTEGRATION: CWS pchfix01 (1.9.214); FILE MERGED 2006/07/12 10:03:14 kaib 1.9.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8b1604bcccab3fce0beecc9be47e2aa66071283a]

INTEGRATION: CWS pchfix01 (1.40.132); FILE MERGED 2006/07/12 10:03:13 kaib 1.40.132.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1047f9c1ddef2d330d551da56e2accd9d00ec5a5]

INTEGRATION: CWS pchfix01 (1.33.214); FILE MERGED 2006/07/12 10:03:13 kaib 1.33.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0f9b4cdad898cc64991a35461254bf46d3e36159]

INTEGRATION: CWS pchfix01 (1.31.214); FILE MERGED 2006/07/12 10:03:13 kaib 1.31.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [bd396ebee66b97e0fbdd34e69e1cf47e96e4539a]

INTEGRATION: CWS pchfix01 (1.29.62); FILE MERGED 2006/07/12 10:03:13 kaib 1.29.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2bf6bfb4f4d4cc9b4b47b8e53d6629d3a42aa088]

INTEGRATION: CWS pchfix01 (1.55.136); FILE MERGED 2006/07/12 10:03:13 kaib 1.55.136.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b1a1e3f810350a9de4baa199205a2e1f08a3adc8]

INTEGRATION: CWS pchfix01 (1.11.206); FILE MERGED 2006/07/12 10:03:13 kaib 1.11.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1cb2ccf0c0f9b4f7126be83bc8353f1558a22737]

INTEGRATION: CWS pchfix01 (1.9.212); FILE MERGED 2006/07/12 10:03:12 kaib 1.9.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6a12c7ed3a8cd126a25ef0a7a9db78c81c948011]

INTEGRATION: CWS pchfix01 (1.10.214); FILE MERGED 2006/07/12 10:03:12 kaib 1.10.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5c85c17c88e1713d3edb01319982ec84ccabbe16]

INTEGRATION: CWS pchfix01 (1.8.214); FILE MERGED 2006/07/12 10:03:12 kaib 1.8.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4e62653b1d4349f64a8b2f9a065acf8f480fffa8]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:03:12 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [68fe36e07e7511ce85b17917aefe12470d59aa2a]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:03:12 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [348b43dda5d51cae53c4b5a956a11bf6b84e5dde]

INTEGRATION: CWS pchfix01 (1.28.58); FILE MERGED 2006/07/12 10:03:12 kaib 1.28.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [37884ba1a07e322dd6dae35acb0969afaedb4289]

INTEGRATION: CWS pchfix01 (1.17.168); FILE MERGED 2006/07/12 10:03:11 kaib 1.17.168.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [16682db445f508f70f9a8eec7d8dea501e7d0d26]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:03:11 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d69e713e3a9402fc63cf795c5b78b40ffd28359d]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:03:11 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [05a7a04afe6041190198e69d03c67c222829e98d]

INTEGRATION: CWS pchfix01 (1.9.166); FILE MERGED 2006/07/12 10:03:11 kaib 1.9.166.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7a0a094520f5f4158e0826c7fd9ca97fc641f531]

INTEGRATION: CWS pchfix01 (1.58.56); FILE MERGED 2006/07/12 10:03:11 kaib 1.58.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ae3cd3cf0e9c3c12552c6191bb9875667df36880]

INTEGRATION: CWS pchfix01 (1.28.60); FILE MERGED 2006/07/12 10:03:11 kaib 1.28.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [41ef1dd4bf9b9697759916428cd5987cd0ea53bb]

INTEGRATION: CWS pchfix01 (1.21.182); FILE MERGED 2006/07/12 10:03:11 kaib 1.21.182.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a9057e35f33857c2f9f5e5562b0a4fbaed0f897d]

INTEGRATION: CWS pchfix01 (1.10.214); FILE MERGED 2006/07/12 10:03:10 kaib 1.10.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [08d56ee3273dc0ac3be312da5744ed657dcd6a8f]

INTEGRATION: CWS pchfix01 (1.17.214); FILE MERGED 2006/07/12 10:03:10 kaib 1.17.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d87ffeaad8d606e13e5033c717c1358e6f28e872]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:03:10 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [22b23d5436122d95365e8d867b99737b952a6456]

INTEGRATION: CWS pchfix01 (1.45.212); FILE MERGED 2006/07/12 10:03:10 kaib 1.45.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a2fa3569059c14e402b888dc179e5ad3d1be1b4c]

INTEGRATION: CWS pchfix01 (1.14.40); FILE MERGED 2006/07/12 10:03:10 kaib 1.14.40.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ca3bd587b0178442dbab23733e51393da9edcce9]

INTEGRATION: CWS pchfix01 (1.27.202); FILE MERGED 2006/07/12 10:03:10 kaib 1.27.202.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6084d6fca0ecc9b2ac606de928435a9cbdb66bed]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:03:09 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ed3a2a441584853c70506a9ab46a77637ef19e1d]

INTEGRATION: CWS pchfix01 (1.3.214); FILE MERGED 2006/07/12 10:03:09 kaib 1.3.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [def6640a8f642a7977ece3b7fef29b26ddc19895]

INTEGRATION: CWS pchfix01 (1.13.62); FILE MERGED 2006/07/12 10:03:09 kaib 1.13.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2f709878864cf1db7e827f340ca633f35024f193]

INTEGRATION: CWS pchfix01 (1.13.214); FILE MERGED 2006/07/12 10:03:09 kaib 1.13.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ed3c61d7ec7508bd0ba747c59a53e6c657ed82b6]

INTEGRATION: CWS pchfix01 (1.4.214); FILE MERGED 2006/07/12 10:03:09 kaib 1.4.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0de349d596bd17c5693c657143f1fe70e46660d7]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:03:09 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f5e9cbd24d508113401998e94389a7eec4421399]

INTEGRATION: CWS pchfix01 (1.15.216); FILE MERGED 2006/07/12 10:03:08 kaib 1.15.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1db78750f15b3ea6314a4331cc4ba1cd5bed765a]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:03:08 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [cd7ccc15d94659dfa0e44865b1e9231845836954]

INTEGRATION: CWS pchfix01 (1.6.60); FILE MERGED 2006/07/12 10:03:08 kaib 1.6.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8db09b81b19f9534667886cc2bc0a21bc6fc5294]

INTEGRATION: CWS pchfix01 (1.45.62); FILE MERGED 2006/07/12 10:03:08 kaib 1.45.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ab75f9b727f3160baf38abe8ed94b164ff952281]

INTEGRATION: CWS pchfix01 (1.5.212); FILE MERGED 2006/07/12 10:03:08 kaib 1.5.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [24a7587e99f27dbd33a9bde9009774a0484a9c26]

INTEGRATION: CWS pchfix01 (1.29.60); FILE MERGED 2006/07/12 10:03:08 kaib 1.29.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f3a8628013f2f887ce705d81f3a62af6e9737a5b]

INTEGRATION: CWS pchfix01 (1.13.216); FILE MERGED 2006/07/12 10:03:07 kaib 1.13.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0478bbb276d5c8d7bfd4b469fd1843936ba6e220]

INTEGRATION: CWS pchfix01 (1.27.114); FILE MERGED 2006/07/12 10:03:07 kaib 1.27.114.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [196feb887fb10d4267d18bfa6500fa44ef4ec9a0]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:03:07 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7be8daa6eabfab6ea804822590085758cdcffa2a]

INTEGRATION: CWS pchfix01 (1.3.214); FILE MERGED 2006/07/12 10:03:07 kaib 1.3.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9d3b29d15a807b07360b51063f80f6c6c33a2db1]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:03:07 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d94621b3903318a0ce7a6feb1d5cc95e00fd1559]

INTEGRATION: CWS pchfix01 (1.19.212); FILE MERGED 2006/07/12 10:03:07 kaib 1.19.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5bb011c24b069a833b6f8b15f655d1f604cbe838]

INTEGRATION: CWS pchfix01 (1.49.152); FILE MERGED 2006/07/12 10:03:06 kaib 1.49.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b2a615c538a32ff2ca1a1c8b7b5c1e067e0562e5]

INTEGRATION: CWS pchfix01 (1.28.214); FILE MERGED 2006/07/12 10:03:06 kaib 1.28.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [801b120b8d4bd00f971ad7ff9d3056756b02ad5e]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:03:06 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1f00e73bcc0fdd997f212b4fb5cf62f7679658f7]

INTEGRATION: CWS pchfix01 (1.12.206); FILE MERGED 2006/07/12 10:03:06 kaib 1.12.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d95fd43c323a6e97fac59df2e0e10e8739292c9f]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:03:06 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [02c5a57a09f586102146fc87c51426e6540f0a62]

INTEGRATION: CWS pchfix01 (1.3.214); FILE MERGED 2006/07/12 10:03:05 kaib 1.3.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [fdf884d460cb8402605826ecfc956db485428426]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:03:05 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [311f3b568de1bdb9dfa2c81b52cbf5c022615ab5]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:03:05 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8212ec2ba6f105aa18a64a599a8626c6eaa9589b]

INTEGRATION: CWS pchfix01 (1.17.214); FILE MERGED 2006/07/12 10:03:05 kaib 1.17.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [895be62bd5517bf0b3b334cbcd9d4b35c5b2e9aa]

INTEGRATION: CWS pchfix01 (1.15.214); FILE MERGED 2006/07/12 10:03:05 kaib 1.15.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [07ce114a3bb108b6be3b996ce5c8a205cc0091b3]

INTEGRATION: CWS pchfix01 (1.28.202); FILE MERGED 2006/07/12 10:03:05 kaib 1.28.202.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a8511d21869c40b1ed42eff472506cbebdea1198]

INTEGRATION: CWS pchfix01 (1.13.202); FILE MERGED 2006/07/12 10:03:05 kaib 1.13.202.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e3718c66c67fe8c57b663df304a124918e3d1cc4]

INTEGRATION: CWS pchfix01 (1.10.176); FILE MERGED 2006/07/12 10:03:04 kaib 1.10.176.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [fb285bd9141a4e86c42b63c0d6d1137f0a49f247]

INTEGRATION: CWS pchfix01 (1.75.38); FILE MERGED 2006/07/12 10:03:04 kaib 1.75.38.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5ddea5f8f8ec80326c6c73de8c9028e53bf1af32]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:03:04 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1cc8fe0aea5157dc55fe63e217dcc11386e8b78d]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:03:04 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [59817f70f35f585ec0a70252098f37ad069cfbb8]

INTEGRATION: CWS pchfix01 (1.31.42); FILE MERGED 2006/07/12 10:03:04 kaib 1.31.42.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [cc86689fbaa20ffb19e3e6ef43a4c9c567c92baf]

INTEGRATION: CWS pchfix01 (1.28.62); FILE MERGED 2006/07/12 10:03:03 kaib 1.28.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e11a23f18ad439cf0da996e1250175a6e6e6d2bb]

INTEGRATION: CWS pchfix01 (1.39.60); FILE MERGED 2006/07/12 10:03:03 kaib 1.39.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [08e3849439e109ceab30ea7324526a2d6d59c07a]

INTEGRATION: CWS pchfix01 (1.22.136); FILE MERGED 2006/07/12 10:03:03 kaib 1.22.136.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [da23a9f600e942a3a8da8098c1ba04cc297e6af6]

INTEGRATION: CWS pchfix01 (1.7.212); FILE MERGED 2006/07/12 10:03:03 kaib 1.7.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [db48314e5725a03455faaa19cb5560d222b94d7e]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:03:03 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [859be6f6578c601f74b5f86bc7a1be69be561f58]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:03:03 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c959c47a5d4d7dda2731e40a7badefae997f38de]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:03:02 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1ac7e4b218abd704d906b960c1895c04652670e2]

INTEGRATION: CWS pchfix01 (1.6.212); FILE MERGED 2006/07/12 10:03:02 kaib 1.6.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5fdc2817b7907597bee4fff586a56c79d213af59]

INTEGRATION: CWS pchfix01 (1.11.64); FILE MERGED 2006/07/12 10:03:02 kaib 1.11.64.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [cb183eab9f6a5df536be4e2816a8586d00ffbeed]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:03:02 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8af9777ed9bd21644e236c3e26855cd517ffc072]

INTEGRATION: CWS pchfix01 (1.11.216); FILE MERGED 2006/07/12 10:03:01 kaib 1.11.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [79edf944cb95f68c3ca150bef364125fa9da07aa]

INTEGRATION: CWS pchfix01 (1.13.214); FILE MERGED 2006/07/12 10:03:01 kaib 1.13.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [bbe6504448cb765a5fb51175b71a72402d830abb]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:03:01 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [162a78c46f1115e0f12bab3ae4f8dbc912f87e78]

INTEGRATION: CWS pchfix01 (1.18.62); FILE MERGED 2006/07/12 10:03:01 kaib 1.18.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d25bd4a840f80a0cfff3039130454682cbf0b1c4]

INTEGRATION: CWS pchfix01 (1.26.188); FILE MERGED 2006/07/12 10:03:00 kaib 1.26.188.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e25327d20594698411dcbfd52610ab18031610b2]

INTEGRATION: CWS pchfix01 (1.40.164); FILE MERGED 2006/07/12 10:03:00 kaib 1.40.164.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [de88aa1adfbcc832dbe06143d96dd5e0089411dd]

INTEGRATION: CWS pchfix01 (1.38.60); FILE MERGED 2006/07/12 10:03:00 kaib 1.38.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a53a0f8a23d06b972215e63db26e3f8f5b180214]

INTEGRATION: CWS pchfix01 (1.4.214); FILE MERGED 2006/07/12 10:03:00 kaib 1.4.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [fe1ac4408f45e95a6b5f5d11f3d4573b49abaeb0]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:03:00 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c83e41b45cefc847dc76befb971b56d49dfce1e4]

INTEGRATION: CWS pchfix01 (1.23.58); FILE MERGED 2006/07/12 10:02:59 kaib 1.23.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7419959b3945f111941701e7b7cd7715048c571b]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:59 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e90b4dc20db18fb165a64b2f069fe7dc5e851fce]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:59 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c723493a5b8fff174f8187e5abb3f030051fc30a]

INTEGRATION: CWS pchfix01 (1.21.60); FILE MERGED 2006/07/12 10:02:59 kaib 1.21.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c5f271d9c8c1b94c90d0682e5af07dfa593b1ffc]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:02:59 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [88053e921cb935436d78cdb5da5f6cab29cca146]

INTEGRATION: CWS pchfix01 (1.35.152); FILE MERGED 2006/07/12 10:02:59 kaib 1.35.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [96bde629d058a8afe83c540c8ba766d3ac080474]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:59 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ddf16e70355b1e99e41c31118867675648bd36a8]

INTEGRATION: CWS pchfix01 (1.15.96); FILE MERGED 2006/07/12 10:02:58 kaib 1.15.96.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8c5720de16b9a80d2976f62e68f11278129f27d2]

INTEGRATION: CWS pchfix01 (1.13.216); FILE MERGED 2006/07/12 10:02:58 kaib 1.13.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [21830a15450c81cc68811e8287c731a720b566e8]

INTEGRATION: CWS pchfix01 (1.17.138); FILE MERGED 2006/07/12 10:02:58 kaib 1.17.138.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b20e44bd1e295c3b4ab43cc5281c1c1921bfdc56]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:58 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [55d7f605f04e4966f10a9d72c1c0082ab080c8f7]

INTEGRATION: CWS pchfix01 (1.7.214); FILE MERGED 2006/07/12 10:02:58 kaib 1.7.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [474a908db8c708ac4a877aa45ab9a48d228ef1c2]

INTEGRATION: CWS pchfix01 (1.13.60); FILE MERGED 2006/07/12 10:02:58 kaib 1.13.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9cc919c3f31293a9926f2c4e8d8fc81283d5affb]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:02:57 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [57bd2e17c11b0a48bf82baa746e388611565d02f]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:57 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2e6c304d37f2eb941759daa04ab4f9806e2cdfe9]

INTEGRATION: CWS pchfix01 (1.13.214); FILE MERGED 2006/07/12 10:02:57 kaib 1.13.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [fae33a02a4e1cd930cf6c14c11d4bbea50b52113]

INTEGRATION: CWS pchfix01 (1.3.214); FILE MERGED 2006/07/12 10:02:57 kaib 1.3.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9f5c92da4de4684e7dfd1381e3c99edbd90459cd]

INTEGRATION: CWS pchfix01 (1.12.216); FILE MERGED 2006/07/12 10:02:57 kaib 1.12.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [88be1046584857f2faf7a9dff2c56c8db837c18d]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:02:57 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [87d4e4485d42d7d451499952207d55c7e4e42167]

INTEGRATION: CWS pchfix01 (1.13.214); FILE MERGED 2006/07/12 10:02:56 kaib 1.13.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d795e628d7f3a54008995ee2e01186495abe40a8]

INTEGRATION: CWS pchfix01 (1.22.214); FILE MERGED 2006/07/12 10:02:56 kaib 1.22.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4b2068d32de22a196517bb389e5e41355cbc28a1]

INTEGRATION: CWS pchfix01 (1.3.214); FILE MERGED 2006/07/12 10:02:56 kaib 1.3.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [76f28ac043fc058d9c8ae3c74d895e3937266493]

INTEGRATION: CWS pchfix01 (1.54.92); FILE MERGED 2006/07/12 10:02:56 kaib 1.54.92.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8b4f49ef19daf0f990e63e1b3023f937c35172e6]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:02:56 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [83f9612dd2a103eadd9fd83512b73e6c56af6aa8]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:56 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5890a5c431552932a24eab71ad4d840fa93d1942]

INTEGRATION: CWS pchfix01 (1.8.82); FILE MERGED 2006/07/12 10:02:56 kaib 1.8.82.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [cf42bdf0cd2a57bc7537a72946399e09f8cae7ec]

INTEGRATION: CWS pchfix01 (1.25.214); FILE MERGED 2006/07/12 10:02:55 kaib 1.25.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f8db0f9afdae86a9f8e24306b82083198f82e493]

INTEGRATION: CWS pchfix01 (1.16.152); FILE MERGED 2006/07/12 10:02:55 kaib 1.16.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [721af9c1662f8a94524304550738c0088d61d23b]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:02:55 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e8550ca6ca459bc6951274a0237f8dcf5de1405e]

INTEGRATION: CWS pchfix01 (1.5.84); FILE MERGED 2006/07/12 10:02:55 kaib 1.5.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [23afdee4f48b66802182621989fbb90a95f096b7]

INTEGRATION: CWS pchfix01 (1.22.214); FILE MERGED 2006/07/12 10:02:55 kaib 1.22.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [87ec4f1ac2f1de75945fb2ce6e67b44749a2d21c]

INTEGRATION: CWS pchfix01 (1.16.214); FILE MERGED 2006/07/12 10:02:55 kaib 1.16.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [073cc9a358eea2106a93334b291ce01027484151]

INTEGRATION: CWS pchfix01 (1.4.212); FILE MERGED 2006/07/12 10:02:55 kaib 1.4.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [60b42e8ee4d9ee16d86ef5e9cfd7586931135873]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:54 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4b1763e4711d795f853ecb93bdd69b929a4da969]

INTEGRATION: CWS pchfix01 (1.97.58); FILE MERGED 2006/07/12 10:02:54 kaib 1.97.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0811fa078cc2a78c57120ce08cbd40d3a82f7b37]

INTEGRATION: CWS pchfix01 (1.19.216); FILE MERGED 2006/07/12 10:02:54 kaib 1.19.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c59036b72a6141c70da1af025c93140380b484d6]

INTEGRATION: CWS pchfix01 (1.11.216); FILE MERGED 2006/07/12 10:02:54 kaib 1.11.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [eec6a734d8eb9e80a0f1d163900572b4e6113e45]

INTEGRATION: CWS pchfix01 (1.5.214); FILE MERGED 2006/07/12 10:02:54 kaib 1.5.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6d3c2b14f93a5da8a29c554c7a6827c12ff13575]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:53 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [88243ad6c56be5489bab751c83d05b343cb833ce]

INTEGRATION: CWS pchfix01 (1.13.150); FILE MERGED 2006/07/12 10:02:53 kaib 1.13.150.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7a2113921658b891062c3438b5fc8c853302b494]

INTEGRATION: CWS pchfix01 (1.5.214); FILE MERGED 2006/07/12 10:02:53 kaib 1.5.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [96a1d3b627bf24162ea1170b4df5e8fbc3739798]

INTEGRATION: CWS pchfix01 (1.4.154); FILE MERGED 2006/07/12 10:02:53 kaib 1.4.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1e7956caeef10f6d512df615e1f7e0e65c4861fe]

INTEGRATION: CWS pchfix01 (1.2.214); FILE MERGED 2006/07/12 10:02:53 kaib 1.2.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b69740f8aa17d9d57369fbdeba18cb1f01d221ce]

INTEGRATION: CWS pchfix01 (1.7.152); FILE MERGED 2006/07/12 10:02:53 kaib 1.7.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9caa0c7315f0ce572f83ce7326a8d992b131cfb4]

INTEGRATION: CWS pchfix01 (1.10.152); FILE MERGED 2006/07/12 10:02:52 kaib 1.10.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [95d8cb05f20ea7395cd929759c20c02227e1b520]

INTEGRATION: CWS pchfix01 (1.17.62); FILE MERGED 2006/07/12 10:02:52 kaib 1.17.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b92545db936dc3e4f4468642331d2ed7ba9a6f83]

INTEGRATION: CWS pchfix01 (1.8.152); FILE MERGED 2006/07/12 10:02:52 kaib 1.8.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a88f98997d8637fa7a8bcbac13d9c9bc6f79b95e]

INTEGRATION: CWS pchfix01 (1.21.152); FILE MERGED 2006/07/12 10:02:52 kaib 1.21.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [90213ea8338e0539a20713b4f2cc468cd6935f9b]

INTEGRATION: CWS pchfix01 (1.7.152); FILE MERGED 2006/07/12 10:02:52 kaib 1.7.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [cbb06f425badeb828e7936c3ec471dd07dfa5b5b]

INTEGRATION: CWS pchfix01 (1.3.214); FILE MERGED 2006/07/12 10:02:52 kaib 1.3.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [be36d575993fc9af3e45e540c031f253ae254798]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:51 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [fc00d6c1c2ec266d122a4dd327c0b6946a81a4f4]

INTEGRATION: CWS pchfix01 (1.5.204); FILE MERGED 2006/07/12 10:02:51 kaib 1.5.204.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [28681f7bc0eb003c9241f4860be1db4128d5776e]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:02:51 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [050bd8393592054b05e42932dc9a006e23274104]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:02:50 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7974d8e8be1bdd257e089f2225c3a9f7d08713bb]

INTEGRATION: CWS pchfix01 (1.14.214); FILE MERGED 2006/07/12 10:02:50 kaib 1.14.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c5c42674a4695bb746da4605f48ff04de5eccd1c]

INTEGRATION: CWS pchfix01 (1.8.214); FILE MERGED 2006/07/12 10:02:50 kaib 1.8.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [37cd26db7f119aba627a08beb4e6907583b5f8a8]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:02:50 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f3c63f51e5b495879284d7a2b7d59c4108a5e5ce]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:50 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d1b222f0689f8db7e4443b48ecdf39ded56c7db6]

INTEGRATION: CWS pchfix01 (1.12.214); FILE MERGED 2006/07/12 10:02:49 kaib 1.12.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [364150ad89b98d606b9a3be1f09f1d4a90790575]

INTEGRATION: CWS pchfix01 (1.14.10); FILE MERGED 2006/07/12 10:02:49 kaib 1.14.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [247fbc8965d15331f54e6210498133b74f231815]

INTEGRATION: CWS pchfix01 (1.7.214); FILE MERGED 2006/07/12 10:02:48 kaib 1.7.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ad5c953cf3745dfbe13cf06a65ed70d34c0cd8e2]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:48 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [502842ba6895ebd696d5642750f4c13a6774c82e]

INTEGRATION: CWS pchfix01 (1.14.216); FILE MERGED 2006/07/12 10:02:48 kaib 1.14.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5894ab6ba10b6fa325ceca12aa7902ba9344c743]

INTEGRATION: CWS pchfix01 (1.6.10); FILE MERGED 2006/07/12 10:02:48 kaib 1.6.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3f3e41f1c101885f99ae71725f8e1bf5bd90652c]

INTEGRATION: CWS pchfix01 (1.5.62); FILE MERGED 2006/07/12 10:02:48 kaib 1.5.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [aeae934fe024fc3715223059dc9a6c29bfd82fad]

INTEGRATION: CWS pchfix01 (1.19.62); FILE MERGED 2006/07/12 10:02:47 kaib 1.19.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [aa89ca4dfc94b07c0ef167e7975e8d58733c3f93]

INTEGRATION: CWS pchfix01 (1.3.214); FILE MERGED 2006/07/12 10:02:47 kaib 1.3.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1d8826586c76bce4118540d47b449cc8c1c0b228]

INTEGRATION: CWS pchfix01 (1.19.8); FILE MERGED 2006/07/12 10:02:47 kaib 1.19.8.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e5f495abd08765f12d59d3734817c9325c4dd53f]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:02:47 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7c0b93e15766cedcae69aa11d2abd22ec7f266b1]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:46 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [45083116cffd5f2786c931634ddce414dc3af037]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:46 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [945bb9fa74b2935d42042fbfc44bb5de7efd9b64]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:02:46 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7a806095ee56c319383b43d6e497d78755074796]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:46 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b7831432c7bfe528b5bb3cccf664f22ec8a9a203]

INTEGRATION: CWS pchfix01 (1.9.168); FILE MERGED 2006/07/12 10:02:45 kaib 1.9.168.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0132dbf2f03abd9a713a73f82aaa0079d1bd473a]

INTEGRATION: CWS pchfix01 (1.7.60); FILE MERGED 2006/07/12 10:02:45 kaib 1.7.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5f4a4d5361b24e7925496d325aa2ce8e08fbb5a5]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:45 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0ad4e0a744274569f49c07cb7e993b2399067370]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:45 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f1b02ca5fe754a0b4fb5f86964f7425e32b32871]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:45 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c11b3a751f9683f38d36a91d6839a06fd401160c]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:45 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ab160c3c922705be081064609c96e76ed6eb1376]

INTEGRATION: CWS pchfix01 (1.5.214); FILE MERGED 2006/07/12 10:02:45 kaib 1.5.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3841b53fb36b2564f2cdcceb06b3a4ffba460297]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:44 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5c107f2f9431c58b1cb75e1da3ba72d2dfb53eae]

INTEGRATION: CWS pchfix01 (1.12.188); FILE MERGED 2006/07/12 10:02:44 kaib 1.12.188.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [923b81d132704489604f9b16f628b162a2317f9c]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:44 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2c5c962e373103cc8a33108c49d46b87966fca21]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:02:44 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b9f8f4a1ab5fab076e94077ca219d58b25daa2ff]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:02:43 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [03e63f3b94bc7062bdc238ead8f3597e123c7965]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:43 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e98db0221e3ede1893d1fd5610f6731411c499e0]

INTEGRATION: CWS pchfix01 (1.6.168); FILE MERGED 2006/07/12 10:02:43 kaib 1.6.168.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b6f75d70d950b56d999fefc82626c46f1849749f]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:43 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [52c9d6106e3cc7a022ef77033e30d03fa24b2583]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:42 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7fdf887a5c3428eba2a624873b7bb0b0102c369e]

INTEGRATION: CWS pchfix01 (1.14.216); FILE MERGED 2006/07/12 10:02:42 kaib 1.14.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [516585efff2ddb34f937b674f3b9bb5435a3e8db]

INTEGRATION: CWS pchfix01 (1.16.214); FILE MERGED 2006/07/12 10:02:42 kaib 1.16.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7958a3b0a2295282a6fbe8ecdb83318081530165]

INTEGRATION: CWS pchfix01 (1.19.58); FILE MERGED 2006/07/12 10:02:42 kaib 1.19.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e4917323bbe25bee9104790c5a30311e25cdaa60]

INTEGRATION: CWS pchfix01 (1.7.10); FILE MERGED 2006/07/12 10:02:41 kaib 1.7.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ccfa2cbb82d7db2ae4136f1c1d472f14f8b2ddec]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:41 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0cb3cb007dfc168403e487ce20b1b159ae9b4a96]

INTEGRATION: CWS pchfix01 (1.6.10); FILE MERGED 2006/07/12 10:02:41 kaib 1.6.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [93b857103d87d9193d21901d67cba8eaac700ce0]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:02:41 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7a3e4cec8e08fd1757ae1717749246366d7ad4a7]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:41 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0b4a4787a83a2e675d679827662e8ca975acf8a9]

INTEGRATION: CWS pchfix01 (1.12.214); FILE MERGED 2006/07/12 10:02:41 kaib 1.12.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b0f2b83f3bde9b118c894f3130d48a48ecbc1b0d]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:40 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c8876a37855f53c9710a2acd453bc1c4e458de9e]

INTEGRATION: CWS pchfix01 (1.9.214); FILE MERGED 2006/07/12 10:02:40 kaib 1.9.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [db25bc967e1b67b7072a395c5ba19c4cc4e6065d]

INTEGRATION: CWS pchfix01 (1.5.62); FILE MERGED 2006/07/12 10:02:40 kaib 1.5.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [da410919109558413c7e18af9c78b936e15a5b12]

INTEGRATION: CWS pchfix01 (1.4.62); FILE MERGED 2006/07/12 10:02:40 kaib 1.4.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1fdae3cc2da6f090679bd480a48465ab4644b84f]

INTEGRATION: CWS pchfix01 (1.7.60); FILE MERGED 2006/07/12 10:02:40 kaib 1.7.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c88968f8f21ad57227c2c36915e7de882b7be1dd]

INTEGRATION: CWS pchfix01 (1.9.210); FILE MERGED 2006/07/12 10:02:39 kaib 1.9.210.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [40e3fa64ce9209654893fe370cd0c9cbb390b1c5]

INTEGRATION: CWS pchfix01 (1.4.212); FILE MERGED 2006/07/12 10:02:39 kaib 1.4.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d84964aecac5d978182e1675c171fbdeb720e82e]

INTEGRATION: CWS pchfix01 (1.22.202); FILE MERGED 2006/07/12 10:02:39 kaib 1.22.202.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4af637541bac0eb8cb229750078f1e319a17fab6]

INTEGRATION: CWS pchfix01 (1.8.212); FILE MERGED 2006/07/12 10:02:39 kaib 1.8.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4c4cd7884d9bd0d8e262a48ccdc5f62e71861505]

INTEGRATION: CWS pchfix01 (1.12.60); FILE MERGED 2006/07/12 10:02:39 kaib 1.12.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [56e3b183665fc7c519d6f597b506e5534afee137]

INTEGRATION: CWS pchfix01 (1.9.212); FILE MERGED 2006/07/12 10:02:39 kaib 1.9.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [75d3d2e9cd7203f0a8cb8a07e56f980a2c1cbd74]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:38 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9d9b89f2028b4fd38b379320ea3cb70374a3a9e6]

INTEGRATION: CWS pchfix01 (1.21.132); FILE MERGED 2006/07/12 10:02:38 kaib 1.21.132.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8b1560175f23fbd82f1dd713259a8fcecd4f122d]

INTEGRATION: CWS pchfix01 (1.7.212); FILE MERGED 2006/07/12 10:02:38 kaib 1.7.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0443495f876674f2b498d982c910dc0d8fedeafb]

INTEGRATION: CWS pchfix01 (1.16.202); FILE MERGED 2006/07/12 10:02:38 kaib 1.16.202.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5776c1c84ae4f6df4acc0ba12227a49d6e24733a]

INTEGRATION: CWS pchfix01 (1.6.212); FILE MERGED 2006/07/12 10:02:38 kaib 1.6.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4f9486add63a27bc72c223b87cdac5c808fdcce6]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:02:38 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7b3cdf5d02a0a73cc1bdb626d2d5b433078a6cf7]

INTEGRATION: CWS pchfix01 (1.9.212); FILE MERGED 2006/07/12 10:02:37 kaib 1.9.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c3eddfea92035ae260c5aa64e44dfdd42a011edd]

INTEGRATION: CWS pchfix01 (1.4.212); FILE MERGED 2006/07/12 10:02:37 kaib 1.4.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b4d09d3aee0ec1a784637b4fe80d096e98b97998]

INTEGRATION: CWS pchfix01 (1.8.214); FILE MERGED 2006/07/12 10:02:37 kaib 1.8.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [77a17ced3cad8f8742347f9dda01223d81c67522]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:02:37 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [57118bb18a3c90004f03f3ff622156cc90f80332]

INTEGRATION: CWS pchfix01 (1.13.212); FILE MERGED 2006/07/12 10:02:37 kaib 1.13.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0740436620b8e768565809251c4fa02aaf642f33]

INTEGRATION: CWS pchfix01 (1.11.216); FILE MERGED 2006/07/12 10:02:37 kaib 1.11.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ff202cf25d6f6794f5a50baefdb6bfce84ab1f81]

INTEGRATION: CWS pchfix01 (1.27.62); FILE MERGED 2006/07/12 10:02:37 kaib 1.27.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2230b8646493f748eb978c254cd3d9bce9fe83d1]

INTEGRATION: CWS pchfix01 (1.7.62); FILE MERGED 2006/07/12 10:02:36 kaib 1.7.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8a62bfd7d5f6532dc627c13365e29aab8d13e9f7]

INTEGRATION: CWS pchfix01 (1.25.94); FILE MERGED 2006/07/12 10:02:36 kaib 1.25.94.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a543d646bfad9de7444b8da8ae1f9fc92c21e487]

INTEGRATION: CWS pchfix01 (1.5.214); FILE MERGED 2006/07/12 10:02:36 kaib 1.5.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ba40dc6ddd51e6921aa02ad0a43e656942e2f83e]

INTEGRATION: CWS pchfix01 (1.19.94); FILE MERGED 2006/07/12 10:02:36 kaib 1.19.94.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [000e8b9d14f659ca17d4f006f45be25608993e1a]

INTEGRATION: CWS pchfix01 (1.8.62); FILE MERGED 2006/07/12 10:02:36 kaib 1.8.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [81b00137d0d00f37ae539d4c724dd3cf272fa355]

INTEGRATION: CWS pchfix01 (1.5.62); FILE MERGED 2006/07/12 10:02:36 kaib 1.5.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a84e168a6ecc65d01fa32c48df58b2c057ce6da5]

INTEGRATION: CWS pchfix01 (1.4.214); FILE MERGED 2006/07/12 10:02:35 kaib 1.4.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [faafa2bb7b20f5d51343098b3b3a9da878c85d69]

INTEGRATION: CWS pchfix01 (1.22.214); FILE MERGED 2006/07/12 10:02:35 kaib 1.22.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [92c05150e81decd014babcf1c3c98a3ce9e414fc]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:35 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [33cf01d843bf7d8487d5bdf36683af464d20856a]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:02:35 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [71decebac231161b77578dbd7e64b3b7623b3803]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:34 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a514d462b188b321da3483a69ce73108dea9169a]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:34 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [550c77346d40e040337601f6a96304c95ba5c659]

INTEGRATION: CWS pchfix01 (1.34.80); FILE MERGED 2006/07/12 10:02:34 kaib 1.34.80.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [26a9eb443d5cce3497e414140aaab0cdf94d6935]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:34 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a4e7d09a930056dc5ec46612233df16ab8e24dc9]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:33 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0c343ec3d09ad60f3b048babd563857976d2e0e9]

INTEGRATION: CWS pchfix01 (1.21.168); FILE MERGED 2006/07/12 10:02:33 kaib 1.21.168.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d0acce00ad0f172153296a438a36f5fd90003dd2]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:33 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [edef09f20cac52ce744898145536764f9e930684]

INTEGRATION: CWS pchfix01 (1.15.214); FILE MERGED 2006/07/12 10:02:33 kaib 1.15.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [96961d59ac0a4cac9e33569b96744ea74c5695be]

INTEGRATION: CWS pchfix01 (1.15.216); FILE MERGED 2006/07/12 10:02:32 kaib 1.15.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d0d401d6480cacf2c2430abe2e69333f7db1340b]

INTEGRATION: CWS pchfix01 (1.46.56); FILE MERGED 2006/07/12 10:02:32 kaib 1.46.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [43b4b8f7be9640ca98d6c1a9565bd139b2d3b4bf]

INTEGRATION: CWS pchfix01 (1.25.58); FILE MERGED 2006/07/12 10:02:32 kaib 1.25.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c4635f6183a8ad7d935b405df916579e9b403a0a]

INTEGRATION: CWS pchfix01 (1.18.58); FILE MERGED 2006/07/12 10:02:32 kaib 1.18.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [eccaef3d0d2d871fa5ce1aa0d3ed55e3786a8268]

INTEGRATION: CWS pchfix01 (1.86.58); FILE MERGED 2006/07/12 10:02:32 kaib 1.86.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5426df17ed8d7cef8d81b317ecca3a266d8c332e]

INTEGRATION: CWS pchfix01 (1.60.58); FILE MERGED 2006/07/12 10:02:31 kaib 1.60.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [bf0bc2236d5b10eaae9088810bc6873ba53ec2e6]

INTEGRATION: CWS pchfix01 (1.19.216); FILE MERGED 2006/07/12 10:02:31 kaib 1.19.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2e357525e57287d8ca51ff30b35536ebdd7fac42]

INTEGRATION: CWS pchfix01 (1.14.98); FILE MERGED 2006/07/12 10:02:31 kaib 1.14.98.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d2b8d37081c7bdad4c2953688f0d0598dc0fedfc]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:30 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7871f3d0bbbb78c293b6dc8360626328b60b49d0]

INTEGRATION: CWS pchfix01 (1.20.214); FILE MERGED 2006/07/12 10:02:30 kaib 1.20.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [92402f43b0d40560288c54b3bf9bc818b36475e5]

INTEGRATION: CWS pchfix01 (1.14.216); FILE MERGED 2006/07/12 10:02:30 kaib 1.14.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2cffd334281a628fefe65aadcd29cc3b586861df]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:02:30 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5172d3c2efac9a52deae203fcea20b9c17e1b6f0]

INTEGRATION: CWS pchfix01 (1.10.84); FILE MERGED 2006/07/12 10:02:29 kaib 1.10.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [13a811c8a60cf5bf5c5f8ed05250893ebad52490]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:29 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [20445a6a9df772815705b852d08abf5c0df61add]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:02:29 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1953f2633328e1de1a625355c4a84c03e5e9dfe8]

INTEGRATION: CWS pchfix01 (1.5.102); FILE MERGED 2006/07/12 10:02:28 kaib 1.5.102.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9ed3b67f0d654dbce7a7eb17f2272223fe31b143]

INTEGRATION: CWS pchfix01 (1.8.204); FILE MERGED 2006/07/12 10:02:28 kaib 1.8.204.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a24705a683ef590b805b996ef69726daf9f23415]

INTEGRATION: CWS pchfix01 (1.12.10); FILE MERGED 2006/07/12 10:02:28 kaib 1.12.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d6fa3011a6e06be693ac7331448a6afb03d17717]

INTEGRATION: CWS pchfix01 (1.22.154); FILE MERGED 2006/07/12 10:02:28 kaib 1.22.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [174bdc3d471c1a7e494524fe570bd5746e1b3232]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:02:28 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3f1e248f428767c358b9c1e75a8ad62c11835562]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:28 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b282a2746d55b31b2ed4c09d22fd4c0b164f5b15]

INTEGRATION: CWS pchfix01 (1.12.102); FILE MERGED 2006/07/12 10:02:27 kaib 1.12.102.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3111627d0410e495b7fa1493a7ebc8bcc4cad6ca]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:27 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7c511d2bfdf090226ae50111dd5a2d644beb2d86]

INTEGRATION: CWS pchfix01 (1.12.216); FILE MERGED 2006/07/12 10:02:27 kaib 1.12.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [754796951600ee435d168f91568eca2ed0cf0a5e]

INTEGRATION: CWS pchfix01 (1.17.188); FILE MERGED 2006/07/12 10:02:27 kaib 1.17.188.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [66f6232c980b803b9ca3fd5584961b6c1aadebef]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:27 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ed27e363547ce97f52bfcdd0a1c73e70a8056fa2]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:27 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4c830bb63bc77a09b50c0d8c1551e2ae98acbb38]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:02:27 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [442310933288e61202036870291df6fe01495236]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:26 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [09e2e6617c6547a1e927aea276807633b1ff97bc]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:02:26 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e65d5860e8d4c6e2cbfd0899c4ad0e81eb9e9c2f]

INTEGRATION: CWS pchfix01 (1.10.72); FILE MERGED 2006/07/12 10:02:26 kaib 1.10.72.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0dfa28e0e44818431224441cadf4a63ed063054b]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:26 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2b8c48c8b07c6e6cde002532ee628e36885ec932]

INTEGRATION: CWS pchfix01 (1.11.72); FILE MERGED 2006/07/12 10:02:26 kaib 1.11.72.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7542fb69bd139e1f520e301fc04d8c5ee7e5a608]

INTEGRATION: CWS pchfix01 (1.23.70); FILE MERGED 2006/07/12 10:02:25 kaib 1.23.70.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [906c72972461a0463ea4261757219a706d1fa942]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:02:25 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5904abee31e02420d7710602dfa9d754c57dfd65]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:02:25 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [baa1b4af0707eebba560328ce4893c897bb43701]

INTEGRATION: CWS pchfix01 (1.23.216); FILE MERGED 2006/07/12 10:02:25 kaib 1.23.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [af67a2a290f20add3acf8c2c3b9dc8c949bdb7e9]

INTEGRATION: CWS pchfix01 (1.8.214); FILE MERGED 2006/07/12 10:02:25 kaib 1.8.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a86bb73dedf7517e09f81b094f16cd1c1dc2ff5b]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:24 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5c4e4c7ec08b3370fa355e97bf506c5fee4232f0]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:24 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f93a53b525901fc18d335623a58cd14c3d1b09d2]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:02:23 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [287f8aa05a0c1a1ab06aeca9be98d3bf0100883c]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:23 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [885396b1b958e77d877b928eee33416248fc6944]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:02:23 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0744540e6fe1dfa1c14d61d3bf4690243a457985]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:02:23 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [efa601f05c75fa4acf1c039b36566401fd50ba16]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:22 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [16d2254ac4103b420a27020917d9c0bd0e96f1b0]

INTEGRATION: CWS pchfix01 (1.5.214); FILE MERGED 2006/07/12 10:02:22 kaib 1.5.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e873bf0f2f0e51bbdcae6522378b6f48644d0b35]

INTEGRATION: CWS pchfix01 (1.14.214); FILE MERGED 2006/07/12 10:02:22 kaib 1.14.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4599981a3878455af39a8eefc8243a59e0312572]

INTEGRATION: CWS pchfix01 (1.27.216); FILE MERGED 2006/07/12 10:02:22 kaib 1.27.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [65cb1cd0125f1d08c4d89e251b45d0d227222db3]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:02:21 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [17a19fa440b8f89f32d314da9ff180652e89725f]

INTEGRATION: CWS pchfix01 (1.10.214); FILE MERGED 2006/07/12 10:02:21 kaib 1.10.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1a20599de445ad8f5dccd5f8813ca5d090e1c6e2]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:02:21 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6350d444d03d30907c6514906eb39ea3acd9902e]

INTEGRATION: CWS pchfix01 (1.48.60); FILE MERGED 2006/07/12 10:02:21 kaib 1.48.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d1ca0def852b616ccd5e262126cc99468a537e52]

INTEGRATION: CWS pchfix01 (1.33.62); FILE MERGED 2006/07/12 10:02:20 kaib 1.33.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [abcde5a8c2e16ecd6b230ecaf4cbae3b8bce360e]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:20 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [49719485b77100b32379639553915b4aa99df49f]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:20 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [48911962d5b7269bc00941a1e4fad98298c1ff04]

INTEGRATION: CWS pchfix01 (1.46.62); FILE MERGED 2006/07/12 10:02:20 kaib 1.46.62.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2aaa688cc7b654ff506433214927b7b1bd5ce0fb]

INTEGRATION: CWS pchfix01 (1.64.60); FILE MERGED 2006/07/12 10:02:20 kaib 1.64.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f60052f32c2c6c2ce3c39bc0f00740786e59e3f7]

INTEGRATION: CWS pchfix01 (1.29.8); FILE MERGED 2006/07/12 10:02:19 kaib 1.29.8.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [07296197d33b64d8f44abcceb09645f4004b1729]

INTEGRATION: CWS pchfix01 (1.15.214); FILE MERGED 2006/07/12 10:02:19 kaib 1.15.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [926ba870b263d6807621e216c89ac392a858a244]

INTEGRATION: CWS pchfix01 (1.4.214); FILE MERGED 2006/07/12 10:02:19 kaib 1.4.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a25342ded22593ffcbd3478a57f5863c5bea6bea]

INTEGRATION: CWS pchfix01 (1.34.60); FILE MERGED 2006/07/12 10:02:19 kaib 1.34.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [72da76ff9d9bbb8d7b49ff40f14111ca39186cfc]

INTEGRATION: CWS pchfix01 (1.29.216); FILE MERGED 2006/07/12 10:02:18 kaib 1.29.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b2c69073496b479b91a688aa38360ae96b116100]

INTEGRATION: CWS pchfix01 (1.44.214); FILE MERGED 2006/07/12 10:02:18 kaib 1.44.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [502e57dab6bb03ff26d27c01956bf0eabcf3ed1a]

INTEGRATION: CWS pchfix01 (1.24.214); FILE MERGED 2006/07/12 10:02:18 kaib 1.24.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7c3e696fae6827dd2c118ba5c7fbd8c861be5b2e]

INTEGRATION: CWS pchfix01 (1.22.214); FILE MERGED 2006/07/12 10:02:18 kaib 1.22.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a1ad9e76408b1b34bc20d7370afaa62746680383]

INTEGRATION: CWS pchfix01 (1.17.152); FILE MERGED 2006/07/12 10:02:18 kaib 1.17.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a8366e289fa84256de763931b7efbff387beecd4]

INTEGRATION: CWS pchfix01 (1.16.214); FILE MERGED 2006/07/12 10:02:17 kaib 1.16.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [bb919ce9b066480b6922437bf4432a509164e964]

INTEGRATION: CWS pchfix01 (1.18.214); FILE MERGED 2006/07/12 10:02:17 kaib 1.18.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [22916ca94379a5da3c3b7765ec26f6b20a707fbb]

INTEGRATION: CWS pchfix01 (1.14.138); FILE MERGED 2006/07/12 10:02:17 kaib 1.14.138.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9d3ab1858f9c5c6cb2c5ce5b5011b6ccdcc3018c]

INTEGRATION: CWS pchfix01 (1.32.80); FILE MERGED 2006/07/12 10:02:17 kaib 1.32.80.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [900caab07f82badc0e4520bee6f9632f61382cec]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:17 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8908d2a38c7161cec31a59e4deb18df6e41e8cdc]

INTEGRATION: CWS pchfix01 (1.67.148); FILE MERGED 2006/07/12 10:02:16 kaib 1.67.148.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [10ca94b73a909bde607e72ed99e7937c957a9e74]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:02:16 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3c3231fd9609817a16b567e79aa5c337bfd14103]

INTEGRATION: CWS pchfix01 (1.18.84); FILE MERGED 2006/07/12 10:02:16 kaib 1.18.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0b376632c845e27f6296478c8fff789e64e1c2f5]

INTEGRATION: CWS pchfix01 (1.29.214); FILE MERGED 2006/07/12 10:02:15 kaib 1.29.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7f1aa989a05465cb8cecefa7d0eecbfd1d22fd8c]

INTEGRATION: CWS pchfix01 (1.16.216); FILE MERGED 2006/07/12 10:02:15 kaib 1.16.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [805b80f618ed43c15278aca7b2c632b1bb36205b]

INTEGRATION: CWS pchfix01 (1.28.84); FILE MERGED 2006/07/12 10:02:15 kaib 1.28.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [30924f5d2ac7d9206f175d0d9b68c955cc52d858]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:02:15 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c77d435fccdacb3cad883c82c325f82e293f45cb]

INTEGRATION: CWS pchfix01 (1.62.176); FILE MERGED 2006/07/12 10:02:14 kaib 1.62.176.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [03ea2911994aa2f98a2b4f031ce388e893651dbb]

INTEGRATION: CWS pchfix01 (1.36.204); FILE MERGED 2006/07/12 10:02:13 kaib 1.36.204.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [17f734b95389246aa481bfc2aa35a51650f51f86]

INTEGRATION: CWS pchfix01 (1.44.134); FILE MERGED 2006/07/12 10:02:13 kaib 1.44.134.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [aa3fe35db3936ae6e141e0b122cec15ce616aef6]

INTEGRATION: CWS pchfix01 (1.57.204); FILE MERGED 2006/07/12 10:02:13 kaib 1.57.204.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [19f9053d32a7501ba66c9406ba1d1e2ed731038d]

INTEGRATION: CWS pchfix01 (1.60.132); FILE MERGED 2006/07/12 10:02:12 kaib 1.60.132.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ed370adf2e36c8a28c29e338284fe52025a1d8c4]

INTEGRATION: CWS pchfix01 (1.14.214); FILE MERGED 2006/07/12 10:02:12 kaib 1.14.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [64c4ee945e077cdae0f0f8fb9e9e4bd529626c62]

INTEGRATION: CWS pchfix01 (1.11.214); FILE MERGED 2006/07/12 10:02:12 kaib 1.11.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4f829f23180fca168b63a8704df7f08daf63d994]

INTEGRATION: CWS pchfix01 (1.25.154); FILE MERGED 2006/07/12 10:02:12 kaib 1.25.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f68988b521735de386d914d0373bad77a5a8561f]

INTEGRATION: CWS pchfix01 (1.14.216); FILE MERGED 2006/07/12 10:02:11 kaib 1.14.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [49d11bdde68c63cc08884679c322b4aa417eff7b]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:02:11 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [18d736142a224b6753a32c1dbf9c341a2e9069c5]

INTEGRATION: CWS pchfix01 (1.123.70); FILE MERGED 2006/07/12 10:02:11 kaib 1.123.70.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5565fc0f31e7c09f811567e3d7d0baa182e0c7cf]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:02:11 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3c00742c29166b472c3351f89c14377cac94b47a]

INTEGRATION: CWS pchfix01 (1.13.214); FILE MERGED 2006/07/12 10:02:11 kaib 1.13.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4540811794e3886c597c4c5ba2aba2c3dd775f56]

INTEGRATION: CWS pchfix01 (1.199.134); FILE MERGED 2006/07/12 10:02:10 kaib 1.199.134.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7df3b8412f5f4497863f9c80c42647a64cb6025e]

INTEGRATION: CWS pchfix01 (1.27.214); FILE MERGED 2006/07/12 10:02:10 kaib 1.27.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e5120b9c641a312dd0f2c27b4e3e205e981e7e25]

INTEGRATION: CWS pchfix01 (1.22.186); FILE MERGED 2006/07/12 10:02:10 kaib 1.22.186.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [00e6196de1b411ed543469f59dc486f09632319c]

INTEGRATION: CWS pchfix01 (1.23.154); FILE MERGED 2006/07/12 10:02:10 kaib 1.23.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d791e9b817c0d61f312174d045efbdaf143b25ca]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:10 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2cff3636089ee506c8022dd8b784b28c38050c3e]

INTEGRATION: CWS pchfix01 (1.19.154); FILE MERGED 2006/07/12 10:02:10 kaib 1.19.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9dce51dda8eaca153f70bd4ccb1bd49d6cf23a04]

INTEGRATION: CWS pchfix01 (1.90.82); FILE MERGED 2006/07/12 10:02:09 kaib 1.90.82.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [87b9c3267d25bfe466e3e519e37bd1b1eb2f0f43]

INTEGRATION: CWS pchfix01 (1.27.134); FILE MERGED 2006/07/12 10:02:09 kaib 1.27.134.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d07a6d33c6cc5bdf2b7b5f5bf635a876d31a8086]

INTEGRATION: CWS pchfix01 (1.13.216); FILE MERGED 2006/07/12 10:02:09 kaib 1.13.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [35d35af573af337d5e2d6fb8432034c257ac8f28]

INTEGRATION: CWS pchfix01 (1.25.178); FILE MERGED 2006/07/12 10:02:09 kaib 1.25.178.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c65f4e9b1018c5f5628c255a8e676599d9f14ca8]

INTEGRATION: CWS pchfix01 (1.9.188); FILE MERGED 2006/07/12 10:02:09 kaib 1.9.188.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [26cb72a92fb204ba813096082cf8f331e5f8c242]

INTEGRATION: CWS pchfix01 (1.12.216); FILE MERGED 2006/07/12 10:02:08 kaib 1.12.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7f1663c37a22239fcad343791df61b749f0e4057]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:02:08 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [41ef53cf8df8146e95dd81657c14c369b8a585fc]

INTEGRATION: CWS pchfix01 (1.25.214); FILE MERGED 2006/07/12 10:02:08 kaib 1.25.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e7d8249c7405b0b7de1d996eab9aea0df856bc7a]

INTEGRATION: CWS pchfix01 (1.24.214); FILE MERGED 2006/07/12 10:02:08 kaib 1.24.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [bc1ceb539eb6990c9ac60b19e73ce3fd75aced6e]

INTEGRATION: CWS pchfix01 (1.13.216); FILE MERGED 2006/07/12 10:02:08 kaib 1.13.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f8756860142b26fe738f8a2f239fe2c17f5e97d3]

INTEGRATION: CWS pchfix01 (1.10.214); FILE MERGED 2006/07/12 10:02:08 kaib 1.10.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6adb225de0af831e9426cb1694860e310688ad85]

INTEGRATION: CWS pchfix01 (1.18.216); FILE MERGED 2006/07/12 10:02:07 kaib 1.18.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e45059da3a50cf8e5d09c32e3adcc9d87bb2aee3]

INTEGRATION: CWS pchfix01 (1.45.136); FILE MERGED 2006/07/12 10:02:07 kaib 1.45.136.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8e7993a7f9575c6e278db54055efabf54c0581dd]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:07 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8e3160875c8e697d163d88727d6f01d50b6ab470]

INTEGRATION: CWS pchfix01 (1.42.206); FILE MERGED 2006/07/12 10:02:07 kaib 1.42.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [797aa0e77054084c328c2006547e00f142cd5289]

INTEGRATION: CWS pchfix01 (1.19.214); FILE MERGED 2006/07/12 10:02:07 kaib 1.19.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9a7d142f43a1221733e9e2a5d40c86972298e4f6]

INTEGRATION: CWS pchfix01 (1.22.214); FILE MERGED 2006/07/12 10:02:07 kaib 1.22.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [35bf9c3f859bf400209ab03f118bcef9dbc33e57]

INTEGRATION: CWS pchfix01 (1.15.216); FILE MERGED 2006/07/12 10:02:06 kaib 1.15.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [57d0218f252c5531b2868f378bd56716b86f1217]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:06 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [150a01c6e8b083cb7af22379e4cd79e789a070a8]

INTEGRATION: CWS pchfix01 (1.12.214); FILE MERGED 2006/07/12 10:02:06 kaib 1.12.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [738c1fdb7bd3fd7573d3a16401895fc2af7d9fef]

INTEGRATION: CWS pchfix01 (1.23.214); FILE MERGED 2006/07/12 10:02:06 kaib 1.23.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [662d08dbf316c385a5f86a6798a3820a8d33d1f3]

INTEGRATION: CWS pchfix01 (1.7.214); FILE MERGED 2006/07/12 10:02:06 kaib 1.7.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [01bd86316f3b78bb1e89bd7e5669d6d77b8e0101]

INTEGRATION: CWS pchfix01 (1.11.216); FILE MERGED 2006/07/12 10:02:06 kaib 1.11.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8946db51a532887f425d78976c652fe6e1844844]

INTEGRATION: CWS pchfix01 (1.22.214); FILE MERGED 2006/07/12 10:02:05 kaib 1.22.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8219eafe51b3bd747fbb8a3df507257110c2092a]

INTEGRATION: CWS pchfix01 (1.26.214); FILE MERGED 2006/07/12 10:02:05 kaib 1.26.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [363cf3a0ac0805003083ba580b66242aa4793e6b]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:05 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4260258fa1ca3f8eff69698e5bc4b9050e828f7c]

INTEGRATION: CWS pchfix01 (1.13.216); FILE MERGED 2006/07/12 10:02:05 kaib 1.13.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8432255d3b40bba831f4d89d4cde052cc62dcfa8]

INTEGRATION: CWS pchfix01 (1.80.80); FILE MERGED 2006/07/12 10:02:05 kaib 1.80.80.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [99918e4a5b193d882d9b600e4d3c53193f296de8]

INTEGRATION: CWS pchfix01 (1.21.214); FILE MERGED 2006/07/12 10:02:04 kaib 1.21.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ef909bc045999054f6f79a12a9ece6bbf3a4c2e4]

INTEGRATION: CWS pchfix01 (1.17.206); FILE MERGED 2006/07/12 10:02:04 kaib 1.17.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a79a04a40b79cf54d2ebbb69c468ccfbe08fb57c]

INTEGRATION: CWS pchfix01 (1.28.82); FILE MERGED 2006/07/12 10:02:04 kaib 1.28.82.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [65939e0e09bb1b8bf9dbf6ab40183aaa60c64594]

INTEGRATION: CWS pchfix01 (1.22.216); FILE MERGED 2006/07/12 10:02:04 kaib 1.22.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [99925eab8e9580409a40080d02f3a4ea026386ce]

INTEGRATION: CWS pchfix01 (1.9.214); FILE MERGED 2006/07/12 10:02:04 kaib 1.9.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [18f6fa96d5e48579f9b2e0e22ee54c1e35a9cd95]

INTEGRATION: CWS pchfix01 (1.14.216); FILE MERGED 2006/07/12 10:02:03 kaib 1.14.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6438e2cd80a6d6a9c52878b2cdb4d39810cc2248]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:02:03 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [59944f51499e794b358794966c0df5c23396a4ee]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:03 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b78a5953283ec1ed9aed7fbf3a33e5dcb51e6a95]

INTEGRATION: CWS pchfix01 (1.5.214); FILE MERGED 2006/07/12 10:02:03 kaib 1.5.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2b13ab569228992b78d813641c3c4c0c6307dc30]

INTEGRATION: CWS pchfix01 (1.7.214); FILE MERGED 2006/07/12 10:02:03 kaib 1.7.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [34d3d4f60460e5707f2f0021ebfc164a5b6a388c]

INTEGRATION: CWS pchfix01 (1.14.84); FILE MERGED 2006/07/12 10:02:03 kaib 1.14.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ff41f1c19c4bc6028b5dbac9e530b7446060dd5e]

INTEGRATION: CWS pchfix01 (1.2.140); FILE MERGED 2006/07/12 10:02:02 kaib 1.2.140.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [742b98b6fdb0aaa329a61130f397e2501d7fb2e8]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:02:01 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [500bdc7284e72b64fbacf04562015ebdcb337d1f]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:01 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [698aae11d28474ad83a55a0331a89d6c634e2ea4]

INTEGRATION: CWS pchfix01 (1.12.136); FILE MERGED 2006/07/12 10:02:01 kaib 1.12.136.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8a748063cde359ff2a760c4549c2d0559f7a2aa5]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:01 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b4e3f75e3c169a20f36da4b34a6277b26eb33dfb]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:02:01 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2f5511afc8ead137b96ff6fa27188a5cc8ea582a]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:02:00 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3c796530c4cc7ea471a7f147cadce86620e69eb7]

INTEGRATION: CWS pchfix01 (1.10.214); FILE MERGED 2006/07/12 10:02:00 kaib 1.10.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [cf4e149f029f616d799697e4efc0fee86e4a8d70]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:02:00 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2abb1dcd332dce39ee16f9b075f4ac651ba29b39]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:02:00 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [31c3624ee5e99dcac220175a3ee679f1c189f480]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:02:00 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c1a8d0150f7d9344178a75ebc5a0b7e76241634a]

INTEGRATION: CWS pchfix01 (1.4.84); FILE MERGED 2006/07/12 10:01:59 kaib 1.4.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1daf820a9c3fe4c9246b2ccde2004efe79ee610b]

INTEGRATION: CWS pchfix01 (1.27.84); FILE MERGED 2006/07/12 10:01:59 kaib 1.27.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a27617b80890cbe4faf30f3348c36db17e04d161]

INTEGRATION: CWS pchfix01 (1.14.216); FILE MERGED 2006/07/12 10:01:59 kaib 1.14.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [dc67afa7d0f4a63f753c4ed0cd4206e6daf678ca]

INTEGRATION: CWS pchfix01 (1.12.214); FILE MERGED 2006/07/12 10:01:59 kaib 1.12.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [94d90c2b73c1e190ec4e44904092dc2665a5e186]

INTEGRATION: CWS pchfix01 (1.30.214); FILE MERGED 2006/07/12 10:01:58 kaib 1.30.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2d4f7dfd6f39bd691b2d2a47bf1c9ee7334c7142]

INTEGRATION: CWS pchfix01 (1.14.102); FILE MERGED 2006/07/12 10:01:58 kaib 1.14.102.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a13a66a133e057c8ce10dbb45350b5b72d7f6db6]

INTEGRATION: CWS pchfix01 (1.6.206); FILE MERGED 2006/07/12 10:01:58 kaib 1.6.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2852dc4dcadd55c92d3779887c0e908635e9c93d]

INTEGRATION: CWS pchfix01 (1.3.56); FILE MERGED 2006/07/12 10:01:58 kaib 1.3.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3fbafa090b2f8bc8cd6d1ceb8b686322e141ddb1]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:01:58 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [380a2658659dba8eb968a40bba2f4ed1faa3150d]

INTEGRATION: CWS pchfix01 (1.5.58); FILE MERGED 2006/07/12 10:01:57 kaib 1.5.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e3ec77f99f2e5ff4dccfc7e6630f98385fa5c29a]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:01:57 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7d3f5807a61383d93240c756b8a95ff9a4eca2b8]

INTEGRATION: CWS pchfix01 (1.26.70); FILE MERGED 2006/07/12 10:01:57 kaib 1.26.70.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9d9407c5fd1194eebdd430446436b4bf288550cd]

INTEGRATION: CWS pchfix01 (1.20.82); FILE MERGED 2006/07/12 10:01:57 kaib 1.20.82.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [523eff8c3bb346a7ead04fb76abd19292afaf507]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:01:57 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [61be8eaa24de74ad4d6aa88a4822a05766d6897f]

INTEGRATION: CWS pchfix01 (1.25.98); FILE MERGED 2006/07/12 10:01:57 kaib 1.25.98.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c6c08600cd3573a9b7cb403cfe5d96ef94c1493e]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:01:56 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e3c3d4defac43ebc3ff646ad436021450b3aaca9]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:01:56 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [73e36be7119767383f483fd20df0731df2a886c6]

INTEGRATION: CWS pchfix01 (1.17.152); FILE MERGED 2006/07/12 10:01:56 kaib 1.17.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [1cdd8314f33c566264a39a2026649a0f3f3f2b6d]

INTEGRATION: CWS pchfix01 (1.10.206); FILE MERGED 2006/07/12 10:01:56 kaib 1.10.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8b065c06fb48267db9940c8b9f0bec79aeeb42b6]

INTEGRATION: CWS pchfix01 (1.4.56); FILE MERGED 2006/07/12 10:01:56 kaib 1.4.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9eadaaa491eee6dafad9d5ba5ef13d4aa3fb3f1a]

INTEGRATION: CWS pchfix01 (1.4.206); FILE MERGED 2006/07/12 10:01:56 kaib 1.4.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b7fb336e5c9f9ec1fbe626c253036f1b66a55199]

INTEGRATION: CWS pchfix01 (1.4.206); FILE MERGED 2006/07/12 10:01:55 kaib 1.4.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [dc377b53687d297914b2cfb33f296b8a542a2d26]

INTEGRATION: CWS pchfix01 (1.5.102); FILE MERGED 2006/07/12 10:01:55 kaib 1.5.102.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3f1abe667594996a00f3811b268e0b3f54b4425b]

INTEGRATION: CWS pchfix01 (1.26.152); FILE MERGED 2006/07/12 10:01:55 kaib 1.26.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [927b34a8b09040fd2e1a9ad1781c9efc0107dcba]

INTEGRATION: CWS pchfix01 (1.18.98); FILE MERGED 2006/07/12 10:01:55 kaib 1.18.98.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [784e1fc931ba368ab30d7965e6184cb431772503]

INTEGRATION: CWS pchfix01 (1.10.206); FILE MERGED 2006/07/12 10:01:55 kaib 1.10.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e457ed7829ea32f12a36ce876d4d823f62934a99]

INTEGRATION: CWS pchfix01 (1.11.214); FILE MERGED 2006/07/12 10:01:55 kaib 1.11.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [eea3c6d7415a1ba5481e260783cf2d7caaefdcf1]

INTEGRATION: CWS pchfix01 (1.5.206); FILE MERGED 2006/07/12 10:01:54 kaib 1.5.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [abf6991fa12aae9bfef85793a38ed651dc18fc0b]

INTEGRATION: CWS pchfix01 (1.18.216); FILE MERGED 2006/07/12 10:01:54 kaib 1.18.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2e894972f7fc0ce13005f18c92b0342091cf440b]

INTEGRATION: CWS pchfix01 (1.22.152); FILE MERGED 2006/07/12 10:01:54 kaib 1.22.152.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f9167324dfb86c8b0dfabe9b7c214df1d99b9954]

INTEGRATION: CWS pchfix01 (1.44.10); FILE MERGED 2006/07/12 10:01:54 kaib 1.44.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [81efc2ff9fefcb6c6ef198b71473016e33cfa965]

INTEGRATION: CWS pchfix01 (1.7.10); FILE MERGED 2006/07/12 10:01:54 kaib 1.7.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [260ded89d1cfed804eb01fd5b0724817c221d6e7]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:53 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d0b91451755851eb61b64d411ac4864f586293ce]

INTEGRATION: CWS pchfix01 (1.11.56); FILE MERGED 2006/07/12 10:01:53 kaib 1.11.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4ffcfeca64774a396b94952e83aaceda298fc9cd]

INTEGRATION: CWS pchfix01 (1.23.56); FILE MERGED 2006/07/12 10:01:53 kaib 1.23.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b5ea74273287a1167bacfc7a1b365f7f44e1df95]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:01:53 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [507bb45eb41a75d63de5023be79cef1635c8e4f5]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:01:52 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3a9b7b6bf57e64ce16ed2b07313bb24fc8fb5770]

INTEGRATION: CWS pchfix01 (1.19.56); FILE MERGED 2006/07/12 10:01:52 kaib 1.19.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a27e5700524ebdb4cdc17d2b23a4376f987e4e41]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:01:52 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [434c5bd1b8a964229026f711bd2915aadaf24f69]

INTEGRATION: CWS pchfix01 (1.11.216); FILE MERGED 2006/07/12 10:01:52 kaib 1.11.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [36d6601bbb0585d8ef8b5c4a3e663242b5754ec9]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:01:52 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [aa4145475a6e515eba2a69d008496419f4d942ea]

INTEGRATION: CWS pchfix01 (1.6.186); FILE MERGED 2006/07/12 10:01:51 kaib 1.6.186.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [87a496940f60745d3b7fbf85c0e4a7f5f6f96565]

INTEGRATION: CWS pchfix01 (1.16.216); FILE MERGED 2006/07/12 10:01:51 kaib 1.16.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [25b5cef6bcfcef467d451ffb8a2210ecda850769]

INTEGRATION: CWS pchfix01 (1.24.214); FILE MERGED 2006/07/12 10:01:51 kaib 1.24.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d312d408084d9198f50fac227717d311707c6bcb]

INTEGRATION: CWS pchfix01 (1.10.56); FILE MERGED 2006/07/12 10:01:50 kaib 1.10.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ed578d4c6b909d77fe3654c5bed2e5a44a299459]

INTEGRATION: CWS pchfix01 (1.14.186); FILE MERGED 2006/07/12 10:01:50 kaib 1.14.186.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c244465f28cb2e8b516de1286ff1fe849ef35819]

INTEGRATION: CWS pchfix01 (1.15.216); FILE MERGED 2006/07/12 10:01:50 kaib 1.15.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5057f3d9ca2643226e16f35ed6ee70e678ead695]

INTEGRATION: CWS pchfix01 (1.10.154); FILE MERGED 2006/07/12 10:01:50 kaib 1.10.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [bd796312564c6d6d32ec3efff93f54fb0c59219d]

INTEGRATION: CWS pchfix01 (1.58.54); FILE MERGED 2006/07/12 10:01:50 kaib 1.58.54.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [90424bf2b243efe187d7306a24875b101f169bcd]

INTEGRATION: CWS pchfix01 (1.22.206); FILE MERGED 2006/07/12 10:01:50 kaib 1.22.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [627559eeb8b05f960dc45f29d4deeb0bb7646b89]

INTEGRATION: CWS pchfix01 (1.79.54); FILE MERGED 2006/07/12 10:01:50 kaib 1.79.54.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b98046ae2bf5d06401121d39be5e4072f9873058]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:01:49 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [39fa8b62fc61813b91fa3b32d87446498d9fbe7d]

INTEGRATION: CWS pchfix01 (1.13.216); FILE MERGED 2006/07/12 10:01:49 kaib 1.13.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4cd28221188b082d9f46cbc22a50bbc09fc93113]

INTEGRATION: CWS pchfix01 (1.27.76); FILE MERGED 2006/07/12 10:01:49 kaib 1.27.76.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b807ab8e3e833116a7b42d910b85e9e1d77d7a1f]

INTEGRATION: CWS pchfix01 (1.56.206); FILE MERGED 2006/07/12 10:01:49 kaib 1.56.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [eb5d4ca5ffb6b8e2849268ec9131f13118e62daa]

INTEGRATION: CWS pchfix01 (1.81.84); FILE MERGED 2006/07/12 10:01:49 kaib 1.81.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d04bac3e4b20da359e1395ff9d83f6f972f1fb00]

INTEGRATION: CWS pchfix01 (1.39.150); FILE MERGED 2006/07/12 10:01:49 kaib 1.39.150.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4d531bf73f1e96e143a383080e48d848f99c5c0b]

INTEGRATION: CWS pchfix01 (1.111.54); FILE MERGED 2006/07/12 10:01:49 kaib 1.111.54.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3fab0b0af21786dde8106e9284bbbd85f173891d]

INTEGRATION: CWS pchfix01 (1.38.186); FILE MERGED 2006/07/12 10:01:48 kaib 1.38.186.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2b453695f33c2eea967771a9afa6d5caf4b549a9]

INTEGRATION: CWS pchfix01 (1.38.150); FILE MERGED 2006/07/12 10:01:48 kaib 1.38.150.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b672f3ce37734e12c88e0b140c7b713563985717]

INTEGRATION: CWS pchfix01 (1.22.56); FILE MERGED 2006/07/12 10:01:48 kaib 1.22.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9a9837680476bbec78803127cca885a28a338e03]

INTEGRATION: CWS pchfix01 (1.63.10); FILE MERGED 2006/07/12 10:01:48 kaib 1.63.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e68ea01a50d4ae9666cf367d8de2285fa04388fb]

INTEGRATION: CWS pchfix01 (1.29.206); FILE MERGED 2006/07/12 10:01:48 kaib 1.29.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [33ea1eff50d296e4780fab0ddf209be9748ab97b]

INTEGRATION: CWS pchfix01 (1.85.70); FILE MERGED 2006/07/12 10:01:48 kaib 1.85.70.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0ca361605cd50108029642ee466d6be4bf1db164]

INTEGRATION: CWS pchfix01 (1.11.168); FILE MERGED 2006/07/12 10:01:47 kaib 1.11.168.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7b8378e6802055f8ee9be121b29f878e1e66e11c]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:01:47 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b5d724d65c5e2671eae17e2b8f865e3ef76195c1]

INTEGRATION: CWS pchfix01 (1.5.206); FILE MERGED 2006/07/12 10:01:47 kaib 1.5.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [70cbcedb53d202dc2ffa5422ffd8fec7d640e5f3]

INTEGRATION: CWS pchfix01 (1.4.214); FILE MERGED 2006/07/12 10:01:46 kaib 1.4.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [354547929cd95feb26a0b5de0c04c0e826d87515]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:01:46 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [47e232e0aa107b81bd65122c098d74b3cf1ade03]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:46 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f0e7e539affa5d85bb6d40ae3fa7692fccd757a2]

INTEGRATION: CWS pchfix01 (1.23.216); FILE MERGED 2006/07/12 10:01:46 kaib 1.23.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b5766929c8e386cfff8129e93f1e2ce868d53cee]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:01:46 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e2afee800660aec39beb44def13961511a589794]

INTEGRATION: CWS pchfix01 (1.11.216); FILE MERGED 2006/07/12 10:01:46 kaib 1.11.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [21f010d321256def7ef5b6ac7d7397c9ed2eab2c]

INTEGRATION: CWS pchfix01 (1.5.206); FILE MERGED 2006/07/12 10:01:45 kaib 1.5.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [071d79c8e67fb3835f342a975b7280611d8897b5]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:01:45 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [de25defa0d275f13ffaf2bbac5ec029f8c362fdb]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:01:45 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f67734fbca9f1c684a16bf1b69c45743222d434d]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:45 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [406084d76e0e420ccc2436740b4d7b17882eb4f2]

INTEGRATION: CWS pchfix01 (1.4.84); FILE MERGED 2006/07/12 10:01:45 kaib 1.4.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [115505ee980e31a61da2fc3a6b64c1c297347fb6]

INTEGRATION: CWS pchfix01 (1.5.214); FILE MERGED 2006/07/12 10:01:45 kaib 1.5.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7e48f8cd1c9ae527a08c1773550c103446835950]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:01:45 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [c84182ed4236170dc044dbe48413f42da01bc676]

INTEGRATION: CWS pchfix01 (1.18.96); FILE MERGED 2006/07/12 10:01:44 kaib 1.18.96.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5d1f0ecafe090c4ad5ab97567cae50454b63bfa2]

INTEGRATION: CWS pchfix01 (1.7.204); FILE MERGED 2006/07/12 10:01:44 kaib 1.7.204.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b7b7b208dbdf14b3500e13e78e6ef7dfca63e123]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:44 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a6c034f52ef907daa441d9670efbdfc441b16216]

INTEGRATION: CWS pchfix01 (1.3.214); FILE MERGED 2006/07/12 10:01:44 kaib 1.3.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [42e293647489ba33588a3ee0d859546f689db535]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:01:44 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2a76b6fa7398ffeda548a21132ecad573cccaa11]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:01:43 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [61b053d9d880ff2836324b7f123f88eff0c7017d]

INTEGRATION: CWS pchfix01 (1.19.134); FILE MERGED 2006/07/12 10:01:43 kaib 1.19.134.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0f48cb4b10b87b5a40cb56f3e784502aa20a8bc1]

INTEGRATION: CWS pchfix01 (1.40.164); FILE MERGED 2006/07/12 10:01:43 kaib 1.40.164.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8748d1975a175b27ed3fe1ea8dc8433882448d61]

INTEGRATION: CWS pchfix01 (1.16.186); FILE MERGED 2006/07/12 10:01:43 kaib 1.16.186.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [247046cc1cc97ca83b69191481bff154991dd52c]

INTEGRATION: CWS pchfix01 (1.27.150); FILE MERGED 2006/07/12 10:01:43 kaib 1.27.150.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [7d041cb46a0935fa4bdd26dcce74360e92cfbfbd]

INTEGRATION: CWS pchfix01 (1.38.58); FILE MERGED 2006/07/12 10:01:42 kaib 1.38.58.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [53c91bae9dd9240b782b36b85b9d21babd34df66]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:01:42 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e17fab475ad333cd4e5b75e823bd6a07c617f7a1]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:01:42 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5f24ae5ea9d5b37b35d6c0e6ba572e330323eba6]

INTEGRATION: CWS pchfix01 (1.4.214); FILE MERGED 2006/07/12 10:01:42 kaib 1.4.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0617fe7e7d9cc058ce8933d0b5e4796c798ce903]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:01:42 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f94f26c7a1c4608214e95eb9f9bdea01aec91e17]

INTEGRATION: CWS pchfix01 (1.28.96); FILE MERGED 2006/07/12 10:01:42 kaib 1.28.96.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [24a65b89512c76831aa649490f7846024c22b6bf]

INTEGRATION: CWS pchfix01 (1.5.214); FILE MERGED 2006/07/12 10:01:42 kaib 1.5.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a25907d8a80d93bca0bcb33da89bb1b8c502dda5]

INTEGRATION: CWS pchfix01 (1.22.8); FILE MERGED 2006/07/12 10:01:41 kaib 1.22.8.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0ff5fcb85aed70a5150a77c58000b16e51afd8eb]

INTEGRATION: CWS pchfix01 (1.5.206); FILE MERGED 2006/07/12 10:01:41 kaib 1.5.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3e69181afc4e69906c2091b13698d85eebc9383c]

INTEGRATION: CWS pchfix01 (1.13.166); FILE MERGED 2006/07/12 10:01:41 kaib 1.13.166.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2b3211cf3b52c7f288c2d4867040414e1ae5437e]

INTEGRATION: CWS pchfix01 (1.14.206); FILE MERGED 2006/07/12 10:01:41 kaib 1.14.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4ad3958a85650a0ae59dbf7bfb2a3a216f2f60a4]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:41 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [11efd7bc846ba0083b5a31ddbe8dfeeb49b3b363]

INTEGRATION: CWS pchfix01 (1.59.56); FILE MERGED 2006/07/12 10:01:41 kaib 1.59.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ef595a4aeead6ebeba873a9c682d6ed5dc00a25e]

INTEGRATION: CWS pchfix01 (1.11.216); FILE MERGED 2006/07/12 10:01:40 kaib 1.11.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [25b896be25c1675daaa3847f0ccf97060abbb8a3]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:40 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f177eb04d296b3790b8ee53ad794cf8906c82d7a]

INTEGRATION: CWS pchfix01 (1.23.214); FILE MERGED 2006/07/12 10:01:40 kaib 1.23.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [27550d0ceaf7413ddf8d0c8889d96c6861952be3]

INTEGRATION: CWS pchfix01 (1.7.214); FILE MERGED 2006/07/12 10:01:39 kaib 1.7.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6eae26e5b4c39cdab3819265d884d91f9bb6f164]

INTEGRATION: CWS pchfix01 (1.19.80); FILE MERGED 2006/07/12 10:01:39 kaib 1.19.80.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e2c0f27bab0f47cd54ad7c2a0a7f128138130537]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:39 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [0c4137b1352d9e1313d01ef4ab105f8feda23857]

INTEGRATION: CWS pchfix01 (1.9.214); FILE MERGED 2006/07/12 10:01:39 kaib 1.9.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [82a0e27f78e836c2b4306bf1bfb0b5edd5b3e58a]

INTEGRATION: CWS pchfix01 (1.18.216); FILE MERGED 2006/07/12 10:01:39 kaib 1.18.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [fec82a1166067d2249bc66dae9d9d879eba8de69]

INTEGRATION: CWS pchfix01 (1.6.84); FILE MERGED 2006/07/12 10:01:39 kaib 1.6.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [143875f871308c404c1153fd069b36760d126a24]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:01:38 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [728083b705a7878c8e51541e7c2a395122b771d2]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:38 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [9cd6e7e7022f4ba10a40bf7fae5eea32fef63ac1]

INTEGRATION: CWS pchfix01 (1.17.84); FILE MERGED 2006/07/12 10:01:38 kaib 1.17.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [11b15741d35d6b36713b4e24c526219b6f7af9e0]

INTEGRATION: CWS pchfix01 (1.17.80); FILE MERGED 2006/07/12 10:01:37 kaib 1.17.80.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6999c40b0a6319f11f942e7d7a7525a1782d1839]

INTEGRATION: CWS pchfix01 (1.6.212); FILE MERGED 2006/07/12 10:01:37 kaib 1.6.212.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [822c1bade7b1d4cfecfda204ec65cff5b4814007]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:01:37 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [535b7892264b04818f1327bf2132893ccafcbaaa]

INTEGRATION: CWS pchfix01 (1.11.96); FILE MERGED 2006/07/12 10:01:37 kaib 1.11.96.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4c4134145ceb5b8c7f31c0eff4e37e3c60cbfa80]

INTEGRATION: CWS pchfix01 (1.15.154); FILE MERGED 2006/07/12 10:01:36 kaib 1.15.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [50bbc14a2d924541d3cefc2314059297a0211b59]

INTEGRATION: CWS pchfix01 (1.24.84); FILE MERGED 2006/07/12 10:01:36 kaib 1.24.84.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ec44aa32a38345f74d0154141b676bab84974015]

INTEGRATION: CWS pchfix01 (1.34.206); FILE MERGED 2006/07/12 10:01:36 kaib 1.34.206.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d8ce5c14c85c880d32cbabdbe62870731c7a9986]

INTEGRATION: CWS pchfix01 (1.17.92); FILE MERGED 2006/07/12 10:01:36 kaib 1.17.92.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e2c58ecd75c4b8005a06630ff7a8adba73cde10d]

INTEGRATION: CWS pchfix01 (1.8.60); FILE MERGED 2006/07/12 10:01:36 kaib 1.8.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [46cdaf1afac9f4ccf6c4c5e5fd42c99a29529a2a]

INTEGRATION: CWS pchfix01 (1.12.136); FILE MERGED 2006/07/12 10:01:36 kaib 1.12.136.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3e660ddb71253b79e75b87cdb6abcd1debee59a8]

INTEGRATION: CWS pchfix01 (1.3.216); FILE MERGED 2006/07/12 10:01:36 kaib 1.3.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [11ee202b98520e2e5f9903982e4eef5f71e21392]

INTEGRATION: CWS pchfix01 (1.2.216); FILE MERGED 2006/07/12 10:01:35 kaib 1.2.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6932fba56fd6b70e90c6f4f38ae21915c208b101]

INTEGRATION: CWS pchfix01 (1.7.214); FILE MERGED 2006/07/12 10:01:35 kaib 1.7.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8b91cce7c4b8ada842f8682e1df944e4887147f8]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:01:35 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [444b40c395f139d4e892d77c0797f56586879908]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:01:35 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [090d5164328c49319f332dde30ade588fb72d9b0]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:01:35 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2f4a1dfd60d41572f86e2417ddf49fbdc60c868a]

INTEGRATION: CWS pchfix01 (1.30.60); FILE MERGED 2006/07/12 10:01:35 kaib 1.30.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [df41455ea2d51ef501e018223419a9ec796b8ab9]

INTEGRATION: CWS pchfix01 (1.4.216); FILE MERGED 2006/07/12 10:01:35 kaib 1.4.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [3278772acf9d7aa1ba170c41bd6f025bbd0570fc]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:01:34 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6284539b10a69f612a792a4c76bb6222518e3998]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:01:34 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e0b275163a09266f384d3b70a56c726e864b172e]

INTEGRATION: CWS pchfix01 (1.7.214); FILE MERGED 2006/07/12 10:01:34 kaib 1.7.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b67e6f79758e4660709602ac0e176c5db1f91863]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:01:34 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a0f2ba2f9a4648a649133774d7d7dca180d28fbf]

INTEGRATION: CWS pchfix01 (1.19.216); FILE MERGED 2006/07/12 10:01:34 kaib 1.19.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [6e6270efa146d5408b132a21171800cc63eefbff]

INTEGRATION: CWS pchfix01 (1.45.64); FILE MERGED 2006/07/12 10:01:34 kaib 1.45.64.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ba07f7581a9d19df69abefbec840a61005e25b01]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:01:33 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [860e4545e1fa53b3fd429267aca750708b8e8e47]

INTEGRATION: CWS pchfix01 (1.42.150); FILE MERGED 2006/07/12 10:01:33 kaib 1.42.150.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [80599be890731a01d3e2c97ba8dbe2610b5f7e5f]

INTEGRATION: CWS pchfix01 (1.8.10); FILE MERGED 2006/07/12 10:01:33 kaib 1.8.10.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [e58a439e99c69d8fb0a32374daa7ceb69edd8acc]

INTEGRATION: CWS pchfix01 (1.14.176); FILE MERGED 2006/07/12 10:01:33 kaib 1.14.176.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b77c84696ad02ceb5c3dadbea6698af63f26a069]

INTEGRATION: CWS pchfix01 (1.7.216); FILE MERGED 2006/07/12 10:01:33 kaib 1.7.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [02ccd6ccffc807a28cf1c39b63b3a3cadc7ea0fb]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:01:33 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [99695e905458c92558270c2305dc7aa9103cea8d]

INTEGRATION: CWS pchfix01 (1.7.168); FILE MERGED 2006/07/12 10:01:33 kaib 1.7.168.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [b7a4e5df553552570fb0220eb787d9a4225fcee4]

INTEGRATION: CWS pchfix01 (1.10.216); FILE MERGED 2006/07/12 10:01:32 kaib 1.10.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [39cb9a155238cd7c1fda7406da93763c9747f95c]

INTEGRATION: CWS pchfix01 (1.8.216); FILE MERGED 2006/07/12 10:01:32 kaib 1.8.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2e7b3e511094e4efc89ee5bc00afe44d174e6a4f]

INTEGRATION: CWS pchfix01 (1.11.216); FILE MERGED 2006/07/12 10:01:32 kaib 1.11.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [15e4310c1112e0e48d4f77a5395bf0336d7db030]

INTEGRATION: CWS pchfix01 (1.18.154); FILE MERGED 2006/07/12 10:01:32 kaib 1.18.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [34bae1bdd74e2820c90f59d1afbe86731c24a7c0]

INTEGRATION: CWS pchfix01 (1.5.216); FILE MERGED 2006/07/12 10:01:32 kaib 1.5.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d321e4cff98342eb843883275047b29acd12d659]

INTEGRATION: CWS pchfix01 (1.4.168); FILE MERGED 2006/07/12 10:01:32 kaib 1.4.168.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [cca45986bfbcebc200fca1f95a8073965f78ebb4]

INTEGRATION: CWS pchfix01 (1.71.96); FILE MERGED 2006/07/12 10:01:32 kaib 1.71.96.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [a75a67337b8e3b33c14e43546486f8cd20fd5acc]

INTEGRATION: CWS pchfix01 (1.33.8); FILE MERGED 2006/07/12 10:01:31 kaib 1.33.8.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [8b5d5c217fa0003dbf6169c0766038d788f0f883]

INTEGRATION: CWS pchfix01 (1.43.60); FILE MERGED 2006/07/12 10:01:31 kaib 1.43.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [58459eedebcc7475598614b34138f71e8936a87c]

INTEGRATION: CWS pchfix01 (1.9.216); FILE MERGED 2006/07/12 10:01:31 kaib 1.9.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d96461c65916a3e1ab96725bbd10a0fec17cc574]

INTEGRATION: CWS pchfix01 (1.12.216); FILE MERGED 2006/07/12 10:01:31 kaib 1.12.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [399006dbc1ca3395d6d8afcd735f880cd219ebca]

INTEGRATION: CWS pchfix01 (1.24.56); FILE MERGED 2006/07/12 10:01:31 kaib 1.24.56.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d1f602ea57edf8e1a2a43c02ae84e59b62b53e52]

INTEGRATION: CWS pchfix01 (1.14.216); FILE MERGED 2006/07/12 10:01:31 kaib 1.14.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [416396ada9f138a24aeabc62b2764134ca3ca7e3]

INTEGRATION: CWS pchfix01 (1.30.60); FILE MERGED 2006/07/12 10:01:30 kaib 1.30.60.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [404ab776d9ffcea849b75c3ebad5116a92ffdf22]

INTEGRATION: CWS pchfix01 (1.57.8); FILE MERGED 2006/07/12 10:01:30 kaib 1.57.8.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [fdef1942558bd1ca71e982265b6b10cc71a9d073]

INTEGRATION: CWS pchfix01 (1.21.216); FILE MERGED 2006/07/12 10:01:30 kaib 1.21.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [dc67d12edbaa945862dc1470c803cdef64055d11]

INTEGRATION: CWS pchfix01 (1.17.154); FILE MERGED 2006/07/12 10:01:30 kaib 1.17.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [cc6bb0306a21a6d2e528486194c79e854ddf5e3d]

INTEGRATION: CWS pchfix01 (1.6.216); FILE MERGED 2006/07/12 10:01:30 kaib 1.6.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [acd679ab60a11521f760f5115b30e4274c4cb5c9]

INTEGRATION: CWS pchfix01 (1.18.82); FILE MERGED 2006/07/12 10:01:29 kaib 1.18.82.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [308ed0cc324691a91d12488be6fa467883fcdeb7]

INTEGRATION: CWS pchfix01 (1.7.188); FILE MERGED 2006/07/12 10:01:29 kaib 1.7.188.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [bdec1c21a2c4dd89ff9d0bedc8346860e667575d]

INTEGRATION: CWS pchfix01 (1.19.166); FILE MERGED 2006/07/12 10:01:29 kaib 1.19.166.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [ee0991662944c840df75d6a0e8b8ae8672626a17]

INTEGRATION: CWS pchfix01 (1.25.216); FILE MERGED 2006/07/12 10:01:29 kaib 1.25.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [50b8dafe04977fe01860acc4807030ba9168e9a0]

INTEGRATION: CWS pchfix01 (1.19.154); FILE MERGED 2006/07/12 10:01:29 kaib 1.19.154.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [d20ced059d1127a81eb29813de4ca76d2b30d181]

INTEGRATION: CWS pchfix01 (1.24.216); FILE MERGED 2006/07/12 10:01:28 kaib 1.24.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [300cbde41bec3d4e4d00a9c832ba6a5ca4dea3fa]

INTEGRATION: CWS pchfix01 (1.31.182); FILE MERGED 2006/07/12 10:01:28 kaib 1.31.182.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5bab2a48559dfa9dc046f8386f29f80a602009c4]

INTEGRATION: CWS pchfix01 (1.6.214); FILE MERGED 2006/07/12 10:01:28 kaib 1.6.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [29344f2475b1779aa5bb599852944f40a9273dc7]

INTEGRATION: CWS pchfix01 (1.2.138); FILE MERGED 2006/07/12 10:01:28 kaib 1.2.138.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [5ba50fd1b16fe16dc422cc56b20f282a3ac30f1d]

INTEGRATION: CWS pchfix01 (1.11.214); FILE MERGED 2006/07/12 10:01:28 kaib 1.11.214.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [f8cf4b5a1a34aaecef0dea0139d35b0561108b37]

INTEGRATION: CWS pchfix01 (1.21.216); FILE MERGED 2006/07/12 10:01:28 kaib 1.21.216.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [2a071009df73fde45e29f1987b842650f127c9ce]

INTEGRATION: CWS pchfix01 (1.11.140); FILE MERGED 2006/07/12 10:01:27 kaib 1.11.140.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-21  Kurt Zenker  <kz@openoffice.org>  [4e1b8541cd11e16cdff781a8a1adc5e755d827a6]

INTEGRATION: CWS pchfix01 (1.1.2); FILE ADDED 2006/07/19 13:47:46 hjs 1.1.2.2: #i67080# first try on lineends 2006/07/12 10:01:27 kaib 1.1.2.1: #i67080# Converted cxx files in sc, added initial project level pch and stripped old PCH definitions.


2006-07-14  Oliver Bolte  <obo@openoffice.org>  [60f904b654f196b7f8b07238b1dac0aa40907b54]

INTEGRATION: CWS calcsavecrash_SRC680 (1.18.70); FILE MERGED 2006/05/23 15:03:38 nn 1.18.70.1: #i65690# initialize pCode if constructed with an empty string


2006-07-14  Oliver Bolte  <obo@openoffice.org>  [719f00c040bd9dff4b8702012b547e5a059cd0bb]

INTEGRATION: CWS tl21 (1.13.194); FILE MERGED 2006/05/30 10:45:55 tl 1.13.194.1: #i64079# use character-by-character as default for Hangul/Hanja conversion


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [f2fbf1f298d6a34430cabf06a6c48a16dc9ccf0b]

INTEGRATION: CWS vq33 (1.7.60); FILE MERGED 2006/06/24 02:56:10 vq 1.7.60.1: #i66531# Fix "Macro `LAST_MINOR' redefined after use" warnings.


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [fb6510b8f3e539a5f48d83219fe15d8c0f833a86]

INTEGRATION: CWS dr48 (1.31.174); FILE MERGED 2006/05/24 12:33:22 nn 1.31.174.1: #129384# keep a reference of clipboard object during PasteFromClip


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3ea0c6ad540008757d05c1939a92e28aff4277eb]

INTEGRATION: CWS dr48 (1.58.4); FILE MERGED 2006/05/31 14:22:25 nn 1.58.4.1: #i63931# reset bActiveMediaSh when activating different shell


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [b7e804e5cb3c1b261f5e86d8839916fe7b9fd631]

INTEGRATION: CWS dr48 (1.6.176); FILE MERGED 2006/05/10 14:42:38 nn 1.6.176.1: #i65047# check for paint from reschedule after InterpretVisible


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [028d2798589a022ba8d07fb9472dfd4256254bae]

INTEGRATION: CWS dr48 (1.28.162); FILE MERGED 2006/05/10 14:42:38 nn 1.28.162.1: #i65047# check for paint from reschedule after InterpretVisible


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [247e723925229bdca18677472890425eb8f847a5]

INTEGRATION: CWS dr48 (1.74.86); FILE MERGED 2006/06/02 10:27:45 nn 1.74.86.2: RESYNC: (1.74-1.75); FILE MERGED 2006/05/10 15:27:13 nn 1.74.86.1: #i57745# HideCursor: draw before setting the variable


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8fcac7d1199b5da5432239374a95e4c7dcce5695]

INTEGRATION: CWS dr48 (1.6.172); FILE MERGED 2006/05/23 16:50:05 nn 1.6.172.1: #133060# DoUpdateCharts: static member


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [f31226bbc5f57adfd30a9a736f094799b1df33d9]

INTEGRATION: CWS dr48 (1.2.176); FILE MERGED 2006/05/23 16:50:04 nn 1.2.176.1: #133060# DoUpdateCharts: static member


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [298a39cc2f7084fef7e6af00ae3051615a647f26]

INTEGRATION: CWS dr48 (1.40.124); FILE MERGED 2006/05/24 12:33:22 nn 1.40.124.1: #129384# keep a reference of clipboard object during PasteFromClip


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [87bf1b97f0939cf829eb3d905784f6bd0c63921e]

INTEGRATION: CWS dr48 (1.13.174); FILE MERGED 2006/05/11 13:19:28 nn 1.13.174.1: #i58574# put formula cell on separate sheet; some refactoring (patch from Noel)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [aea370829a58f2fa32336370a44de16110feaeeb]

INTEGRATION: CWS dr48 (1.21.110); FILE MERGED 2006/05/24 12:32:49 nn 1.21.110.1: #129384# keep a reference of clipboard object during PasteFromClip


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [1d063ac9155f345911a9cb70ee2d8134d5a9dc8a]

INTEGRATION: CWS dr48 (1.18.42); FILE MERGED 2006/06/01 13:58:27 nn 1.18.42.1: #i63148# IsValidReference for area links etc.


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [9f4341e02dbafaeadbcd52fdb57744455eb08257]

INTEGRATION: CWS dr48 (1.5.176); FILE MERGED 2006/05/23 16:49:41 nn 1.5.176.1: #133060# DoUpdateCharts: static member


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3f7794fb922f2ced4ca7fa07cb03880ca9d5b86e]

INTEGRATION: CWS dr48 (1.9.170); FILE MERGED 2006/05/10 10:38:03 nn 1.9.170.1: #i64441# don't rely on sheet information in ScDrawObjData from drawing objects


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [96711d904a5213d7babdf299cf8c4a7f15d0ac99]

INTEGRATION: CWS dr48 (1.16.162); FILE MERGED 2006/05/10 10:38:03 nn 1.16.162.1: #i64441# don't rely on sheet information in ScDrawObjData from drawing objects


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [32756255ae5a81012075e48305f91d2a76213db7]

INTEGRATION: CWS dr48 (1.25.44); FILE MERGED 2006/05/10 10:38:03 nn 1.25.44.1: #i64441# don't rely on sheet information in ScDrawObjData from drawing objects


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3ce62b04c33827215c6d41446f862ea594043962]

INTEGRATION: CWS dr48 (1.6.174); FILE MERGED 2006/06/01 13:57:58 nn 1.6.174.1: #i63148# IsValidReference for area links etc.


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [6a0cd27fdbadf65cea1653d768050b6e8acac3f9]

INTEGRATION: CWS dr48 (1.34.28); FILE MERGED 2006/05/10 17:47:45 nn 1.34.28.1: #131247# Dif2Doc: test for valid end position


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [ae2d9ff57646e79163ae6fba5a009468501de909]

INTEGRATION: CWS dr48 (1.20.174); FILE MERGED 2006/06/01 13:57:58 nn 1.20.174.1: #i63148# IsValidReference for area links etc.


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3f292d0f9c7cbb75320877e564ff1b783d69ee6c]

INTEGRATION: CWS dr48 (1.48.4); FILE MERGED 2006/05/23 16:50:31 nn 1.48.4.1: #133060# ModifyOptions: call static DoUpdateCharts if no view available


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [d99903672317735835ae833892114119bf024dfe]

INTEGRATION: CWS dr48 (1.46.6); FILE MERGED 2006/06/01 13:57:27 nn 1.46.6.1: #i63148# IsValidReference for area links etc.


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8f8630186db5cfc6902b5ad109e8509bacaf10f8]

INTEGRATION: CWS dr48 (1.199.88); FILE MERGED 2006/05/10 10:37:48 nn 1.199.88.1: #i64441# don't rely on sheet information in ScDrawObjData from drawing objects


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [f66bce31fe71106ffa1be82a16f3a3d5b453e528]

INTEGRATION: CWS dr48 (1.14.176); FILE MERGED 2006/05/11 16:38:00 nn 1.14.176.1: #i63929# base pointer is used to delete actions, needs virtual dtor (patch from Caolan)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [1a03d8de41d35c8b476eda22faaaa11f9e7739b2]

INTEGRATION: CWS dr48 (1.80.26); FILE MERGED 2006/05/22 16:34:59 dr 1.80.26.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 17:06:18 dr 1.80.26.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8b352eca9b61cc61ee6a255e88f9bbf08284b20a]

INTEGRATION: CWS dr48 (1.17.166); FILE MERGED 2006/05/22 16:34:59 dr 1.17.166.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [c102114578d5245989821af5a28ffd71850933af]

INTEGRATION: CWS dr48 (1.28.26); FILE MERGED 2006/05/22 16:34:59 dr 1.28.26.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 17:06:18 dr 1.28.26.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [1154b681bc9f786caa4b73d00a3a7717a9e5865a]

INTEGRATION: CWS dr48 (1.22.176); FILE MERGED 2006/05/22 16:34:59 dr 1.22.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3d72f639656e66fc4f48bf46a3631ab0c30c95ba]

INTEGRATION: CWS dr48 (1.18.2); FILE MERGED 2006/05/11 15:16:48 dr 1.18.2.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [05fe84a7513c41591d39ee7e4b5da5f8d99d2b88]

INTEGRATION: CWS dr48 (1.3.176); FILE MERGED 2006/05/10 17:01:24 dr 1.3.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [dfa6fe57f0838c383690367dd56a4040e0a11380]

INTEGRATION: CWS dr48 (1.3.176); FILE MERGED 2006/05/22 16:34:29 dr 1.3.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [9ff073067139f7bc44faf05517076dca7bbce490]

INTEGRATION: CWS dr48 (1.25.26); FILE MERGED 2006/05/11 15:16:47 dr 1.25.26.2: more backporting from CWS chart2mst3 2006/05/10 17:01:23 dr 1.25.26.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [ae733b00f103a2a2846dee72a185e08546ca2e28]

INTEGRATION: CWS dr48 (1.8.2); FILE MERGED 2006/05/10 17:01:23 dr 1.8.2.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8f545e6ee2ae8af3e8e096f7ca008558d6334382]

INTEGRATION: CWS dr48 (1.19.2); FILE MERGED 2006/05/11 15:16:46 dr 1.19.2.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [d03646ec7b94e952f642f1bd22a4f09c5a2cd433]

INTEGRATION: CWS dr48 (1.3.2); FILE MERGED 2006/05/11 10:30:17 dr 1.3.2.2: #i63105# use font encoding for cell text 2006/05/10 09:04:54 dr 1.3.2.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3993c7f2fa73eaacf79e6f49ec2d9b1ccae1ea71]

INTEGRATION: CWS dr48 (1.9.2); FILE MERGED 2006/05/11 15:16:46 dr 1.9.2.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [a302aef2b0900c2ede54c94e13ff2b612d1332ed]

INTEGRATION: CWS dr48 (1.5.2); FILE MERGED 2006/05/22 16:34:29 dr 1.5.2.4: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/18 12:56:37 dr 1.5.2.3: #i60067# use named gradients, bitmaps, and dashes for chart objects 2006/05/11 15:16:45 dr 1.5.2.2: more backporting from CWS chart2mst3 2006/05/10 09:04:54 dr 1.5.2.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [2e6bfac50da22adfa1f00332f4323ade4331cf74]

INTEGRATION: CWS dr48 (1.19.110); FILE MERGED 2006/05/11 15:16:44 dr 1.19.110.2: more backporting from CWS chart2mst3 2006/05/11 10:30:16 dr 1.19.110.1: #i63105# use font encoding for cell text


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [54dd00b1d60a40f7468a433c2228493395d00f7b]

INTEGRATION: CWS dr48 (1.1.4); FILE ADDED 2006/05/11 10:30:15 dr 1.1.4.2: #i63105# use font encoding for cell text 2006/05/10 17:01:23 dr 1.1.4.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [e3ca64285fea889c1ae734f760c2dd54b5890219]

INTEGRATION: CWS dr48 (1.10.176); FILE MERGED 2006/05/22 16:34:29 dr 1.10.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [cea7466e065bc7dc8ee6adc4f8e20610637480c4]

INTEGRATION: CWS dr48 (1.19.46); FILE MERGED 2006/05/10 17:01:23 dr 1.19.46.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [a3ae13d50276001b612f73cd68bc1d0b592facc7]

INTEGRATION: CWS dr48 (1.8.176); FILE MERGED 2006/05/11 15:16:43 dr 1.8.176.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [65e5e41f323d622bf0abd91f2e4f680f7b5f2de4]

INTEGRATION: CWS dr48 (1.12.176); FILE MERGED 2006/05/10 17:01:23 dr 1.12.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [9681a481cbf5ceee287c1614914552056e30d9a1]

INTEGRATION: CWS dr48 (1.15.176); FILE MERGED 2006/05/10 17:01:23 dr 1.15.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [ec45c693f1eb63cf794fd559ed6195dbcef98650]

INTEGRATION: CWS dr48 (1.1.4); FILE ADDED 2006/05/10 17:01:22 dr 1.1.4.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [37c004e09bf112ee1e6175eaa551803ee6f316ca]

INTEGRATION: CWS dr48 (1.21.48); FILE MERGED 2006/05/22 16:34:29 dr 1.21.48.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 15:16:42 dr 1.21.48.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [7cecf28f6db612f2f4ef1424e98217a95514b668]

INTEGRATION: CWS dr48 (1.11.176); FILE MERGED 2006/05/11 10:30:14 dr 1.11.176.1: #i63105# use font encoding for cell text


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [976cfc9ce577e4476eea0c890459f2ed421768e6]

INTEGRATION: CWS dr48 (1.4.166); FILE MERGED 2006/05/22 16:34:29 dr 1.4.166.3: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/18 12:56:36 dr 1.4.166.2: #i60067# use named gradients, bitmaps, and dashes for chart objects 2006/05/11 15:16:41 dr 1.4.166.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [5ca1496aeb28cd5f451d98588b4331e6eff706e1]

INTEGRATION: CWS dr48 (1.7.176); FILE MERGED 2006/05/22 16:34:28 dr 1.7.176.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 17:01:22 dr 1.7.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [4a18985aeaa72a0637c7e765c98cc1f11c828277]

INTEGRATION: CWS dr48 (1.7.174); FILE MERGED 2006/05/22 16:34:28 dr 1.7.174.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [a21bf8496bcd37ce516ea20844d52f26eae31507]

INTEGRATION: CWS dr48 (1.6.176); FILE MERGED 2006/05/22 16:34:28 dr 1.6.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [2a4c77fea2defed21594d0d3af084fed9edd1d37]

INTEGRATION: CWS dr48 (1.18.46); FILE MERGED 2006/05/10 17:01:22 dr 1.18.46.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8895ddf9858096a20da868c4374106a1907818f5]

INTEGRATION: CWS dr48 (1.10.176); FILE MERGED 2006/05/22 16:34:28 dr 1.10.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [93c28cdae9eabbe76c78f0fc933359161311bcd0]

INTEGRATION: CWS dr48 (1.8.176); FILE MERGED 2006/05/22 16:34:28 dr 1.8.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [2a4249fb79bd25cd03140e26941a2c377590e222]

INTEGRATION: CWS dr48 (1.6.146); FILE MERGED 2006/05/10 17:01:22 dr 1.6.146.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [93a6f0a431eeee26ca839c6770cbbce991567f67]

INTEGRATION: CWS dr48 (1.17.176); FILE MERGED 2006/05/22 16:34:28 dr 1.17.176.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/17 13:51:25 dr 1.17.176.1: #i63255# correct script type also for string formula results


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [9d4756cdaafc977f719fd3b8f4f6b86ecea1576b]

INTEGRATION: CWS dr48 (1.6.176); FILE MERGED 2006/05/10 17:01:22 dr 1.6.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [843edbb35417df334da0852abf19e98f685207cf]

INTEGRATION: CWS dr48 (1.12.176); FILE MERGED 2006/05/10 17:01:22 dr 1.12.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [9e5b0f86dd93c828d854ff4c0aaea68dba240d6c]

INTEGRATION: CWS dr48 (1.45.28); FILE MERGED 2006/05/22 16:34:27 dr 1.45.28.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [0e254e39f721b773d605b34c2d05affe0e615de5]

INTEGRATION: CWS dr48 (1.8.176); FILE MERGED 2006/05/22 16:34:27 dr 1.8.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3a827410f77de74088e06feae288c24ea1e35b94]

INTEGRATION: CWS dr48 (1.6.166); FILE MERGED 2006/05/22 16:34:27 dr 1.6.166.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [b663726404ec4351c0378ff981de65f532a0abfe]

INTEGRATION: CWS dr48 (1.7.176); FILE MERGED 2006/05/22 16:34:27 dr 1.7.176.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 17:01:21 dr 1.7.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [34f043712784a3a644c4f7b1b6d791de648943c5]

INTEGRATION: CWS dr48 (1.1.4); FILE ADDED 2006/05/10 09:04:54 dr 1.1.4.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [db30b881155c9f4c6a4fc1c5a1fdaf54b3f20e59]

INTEGRATION: CWS dr48 (1.3.2); FILE MERGED 2006/05/17 15:21:54 dr 1.3.2.2: unit converter and double values 2006/05/10 09:04:54 dr 1.3.2.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [51958a2a51c59854c9ceee9f8845ceeeb2f006a2]

INTEGRATION: CWS dr48 (1.7.176); FILE MERGED 2006/05/11 15:16:40 dr 1.7.176.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3a666f01b8c13f1396dd95dcfbd9a1799a7a3f0b]

INTEGRATION: CWS dr48 (1.47.176); FILE MERGED 2006/05/22 16:34:27 dr 1.47.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [7293327f5872ed70644c96bee5f004c08029afde]

INTEGRATION: CWS dr48 (1.15.166); FILE MERGED 2006/05/22 16:34:27 dr 1.15.166.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 17:01:21 dr 1.15.166.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8f6c3e3a483ad3deb6859193b9b8d79e05d55505]

INTEGRATION: CWS dr48 (1.19.176); FILE MERGED 2006/05/10 17:01:21 dr 1.19.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [0b77dcdd0b93c2a7ea3f98b88b6563bad062bd2f]

INTEGRATION: CWS dr48 (1.17.176); FILE MERGED 2006/05/22 16:34:26 dr 1.17.176.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 17:01:21 dr 1.17.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [a4d90d8bc453a956484c29d3ddb1fe90f5f09dc7]

INTEGRATION: CWS dr48 (1.4.46); FILE MERGED 2006/05/10 09:03:49 dr 1.4.46.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [fd1a094345ec50f7ccc7d210946b5152e373bfbc]

INTEGRATION: CWS dr48 (1.6.166); FILE MERGED 2006/05/22 16:34:45 dr 1.6.166.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [b92c09d0de4c9e22869e7abd30bf29de670527f5]

INTEGRATION: CWS dr48 (1.1.4); FILE ADDED 2006/06/14 11:35:59 dr 1.1.4.3: #i66214# dump OLE property set written by Lotus 2006/05/15 16:50:32 dr 1.1.4.2: #i65389# correct string len for unicode codepage 2006/05/10 09:03:49 dr 1.1.4.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [5775bb3e14911133b67c860dba81b7a0567cd395]

INTEGRATION: CWS dr48 (1.3.2); FILE MERGED 2006/05/17 15:22:29 dr 1.3.2.2: unit converter and double values 2006/05/10 09:03:49 dr 1.3.2.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [602df3db2051f8b993a6fb8ba4469b0d76ff8b7f]

INTEGRATION: CWS dr48 (1.5.176); FILE MERGED 2006/05/11 15:17:50 dr 1.5.176.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8fa268f6a5681b8eea6a7f0611abedcdf203098e]

INTEGRATION: CWS dr48 (1.20.26); FILE MERGED 2006/05/11 15:03:11 dr 1.20.26.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3eb070dbc7af716b30ccac263da51e23564afe83]

INTEGRATION: CWS dr48 (1.25.46); FILE MERGED 2006/05/11 15:03:10 dr 1.25.46.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [a2184770f108dd99af61f01d4b7564ac149efeaf]

INTEGRATION: CWS dr48 (1.17.110); FILE MERGED 2006/05/11 15:03:09 dr 1.17.110.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [161e7bdeb3774fe0754594529fa61a5cd5160e0e]

INTEGRATION: CWS dr48 (1.11.144); FILE MERGED 2006/05/10 16:59:35 dr 1.11.144.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [dd7cfacead7197e9898817604aa9a6003aaeccaa]

INTEGRATION: CWS dr48 (1.3.2); FILE MERGED 2006/05/11 15:03:08 dr 1.3.2.2: more backporting from CWS chart2mst3 2006/05/10 09:03:16 dr 1.3.2.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [01f11de0135bdfff2d49e431f445d36f823976cb]

INTEGRATION: CWS dr48 (1.4.2); FILE MERGED 2006/05/23 14:00:05 dr 1.4.2.5: correct size of record CHPROPERTIES 2006/05/22 16:33:56 dr 1.4.2.4: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 10:28:33 dr 1.4.2.3: #i63105# use font encoding for cell text 2006/05/10 16:59:35 dr 1.4.2.2: #i63105# backport changes from CWS chart2mst3 2006/05/10 09:03:16 dr 1.4.2.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [dd9039fa97e047286d46dd9ce6cf800528c218de]

INTEGRATION: CWS dr48 (1.4.166); FILE MERGED 2006/05/18 12:51:58 dr 1.4.166.2: #i60067# use named gradients, bitmaps, and dashes for chart objects 2006/05/11 15:03:07 dr 1.4.166.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [13d6532b7b54c215daf361a8de28c72deb71b8cf]

INTEGRATION: CWS dr48 (1.26.110); FILE MERGED 2006/05/22 16:33:55 dr 1.26.110.3: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 15:03:06 dr 1.26.110.2: more backporting from CWS chart2mst3 2006/05/11 10:28:32 dr 1.26.110.1: #i63105# use font encoding for cell text


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [69db7f00258ab8432b8fb912ca023684cea65899]

INTEGRATION: CWS dr48 (1.1.4); FILE ADDED 2006/05/22 16:33:55 dr 1.1.4.3: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 10:28:31 dr 1.1.4.2: #i63105# use font encoding for cell text 2006/05/10 16:59:35 dr 1.1.4.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [b801f8567577905aadddc4ed0ea8efce19ff9190]

INTEGRATION: CWS dr48 (1.17.2); FILE MERGED 2006/05/22 16:33:55 dr 1.17.2.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [f4bbbb4e1517eada4d9837ad218dea9ca59f3cca]

INTEGRATION: CWS dr48 (1.18.46); FILE MERGED 2006/05/10 16:59:35 dr 1.18.46.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [febbd6cd1eb0beb5bb5340fa569585df2f6ee397]

INTEGRATION: CWS dr48 (1.10.166); FILE MERGED 2006/05/22 16:33:55 dr 1.10.166.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 15:03:06 dr 1.10.166.1: more backporting from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [38725c53e44d32b115f8924210bab43d48ef66b9]

INTEGRATION: CWS dr48 (1.11.174); FILE MERGED 2006/05/22 16:33:55 dr 1.11.174.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 16:59:34 dr 1.11.174.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [76852c75995aadb4affc6895594aed6d80f2b4e5]

INTEGRATION: CWS dr48 (1.5.166); FILE MERGED 2006/05/10 16:59:34 dr 1.5.166.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [4c5b5b8e0db3a27b706d84afb9ed952e1e44ab63]

INTEGRATION: CWS dr48 (1.18.176); FILE MERGED 2006/05/22 16:33:55 dr 1.18.176.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 16:59:34 dr 1.18.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [16600ea01abf24a69a2ecfe6ac78f94251b89aa8]

INTEGRATION: CWS dr48 (1.22.110); FILE MERGED 2006/05/11 15:03:05 dr 1.22.110.3: more backporting from CWS chart2mst3 2006/05/11 10:28:30 dr 1.22.110.2: #i63105# use font encoding for cell text 2006/05/10 16:59:34 dr 1.22.110.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [2ec5f6f4022652489c65618048eb9088e47cb1bc]

INTEGRATION: CWS dr48 (1.1.4); FILE ADDED 2006/05/10 16:59:34 dr 1.1.4.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [5824c54e749855a4f8c809045ba03f9f2d157d89]

INTEGRATION: CWS dr48 (1.42.26); FILE MERGED 2006/05/22 16:33:54 dr 1.42.26.3: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 15:03:04 dr 1.42.26.2: more backporting from CWS chart2mst3 2006/05/10 16:59:34 dr 1.42.26.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [5a95213e3f206dc12418fc48dab0c630396de88b]

INTEGRATION: CWS dr48 (1.20.146); FILE MERGED 2006/05/22 16:33:54 dr 1.20.146.5: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 16:03:45 dr 1.20.146.4: #i64794# replace spaces in webquery names with underscores 2006/05/11 15:03:03 dr 1.20.146.3: more backporting from CWS chart2mst3 2006/05/11 10:28:29 dr 1.20.146.2: #i63105# use font encoding for cell text 2006/05/10 16:59:33 dr 1.20.146.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [48a7035b77856081db5c2aeee1261dd4faaa3c78]

INTEGRATION: CWS dr48 (1.6.48); FILE MERGED 2006/05/22 16:33:54 dr 1.6.48.4: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/18 12:51:57 dr 1.6.48.3: #i60067# use named gradients, bitmaps, and dashes for chart objects 2006/05/11 15:03:02 dr 1.6.48.2: more backporting from CWS chart2mst3 2006/05/10 16:59:33 dr 1.6.48.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [82ce52a2c4f21469e6d70ad693ece04c01cb94fc]

INTEGRATION: CWS dr48 (1.11.2); FILE MERGED 2006/05/22 16:33:54 dr 1.11.2.3: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/17 13:51:05 dr 1.11.2.2: #i63255# correct script type also for string formula results 2006/05/10 16:59:33 dr 1.11.2.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [a20f30b06c3af81cbdd7cc92a563f2541402fb60]

INTEGRATION: CWS dr48 (1.23.2); FILE MERGED 2006/05/22 16:33:53 dr 1.23.2.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [530e8619bf90dd80d9282d51987c405ffb769ccc]

INTEGRATION: CWS dr48 (1.8.176); FILE MERGED 2006/05/22 16:33:53 dr 1.8.176.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 16:59:33 dr 1.8.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [18e801be017c5fb45a8b32143cac6c57d4e6fa10]

INTEGRATION: CWS dr48 (1.7.176); FILE MERGED 2006/05/22 16:33:53 dr 1.7.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [fe9b546cea72fe220538bc0c66f06def22b01fe7]

INTEGRATION: CWS dr48 (1.5.176); FILE MERGED 2006/05/22 16:33:53 dr 1.5.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [82421f568e979919191c858653010c99f3dccdef]

INTEGRATION: CWS dr48 (1.11.176); FILE MERGED 2006/05/22 16:33:53 dr 1.11.176.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/16 14:59:32 dr 1.11.176.1: typo


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [e30f4710e32032d6a222b6110aa167f22ddd6cad]

INTEGRATION: CWS dr48 (1.10.176); FILE MERGED 2006/05/22 16:33:53 dr 1.10.176.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [2699ef75769409046c263635485ba427767c9d83]

INTEGRATION: CWS dr48 (1.6.146); FILE MERGED 2006/05/10 16:59:33 dr 1.6.146.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [10ea4ed585dd2e07d3dda5ec69f22f95eb592cec]

INTEGRATION: CWS dr48 (1.24.174); FILE MERGED 2006/05/22 16:33:52 dr 1.24.174.6: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/17 13:51:05 dr 1.24.174.5: #i63255# correct script type also for string formula results 2006/05/15 15:01:18 dr 1.24.174.4: #i63255# more simple 2006/05/12 14:16:49 dr 1.24.174.3: #i63255# use default script type instead of latin 2006/05/12 14:05:26 dr 1.24.174.2: #i63255# script type for leading weak characters 2006/05/10 09:14:23 dr 1.24.174.1: #i10000# typo in address conversion


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [94a9e988b5c475d7f51b029e25a53f8e742acb0f]

INTEGRATION: CWS dr48 (1.10.2); FILE MERGED 2006/05/10 16:59:32 dr 1.10.2.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [b48deabe48983ad9ca0ac8510656d331e12de87d]

INTEGRATION: CWS dr48 (1.14.146); FILE MERGED 2006/05/11 15:03:01 dr 1.14.146.2: more backporting from CWS chart2mst3 2006/05/10 16:59:32 dr 1.14.146.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [b4e20ed530896f9bdddcba3220cfcd413209d7e3]

INTEGRATION: CWS dr48 (1.15.176); FILE MERGED 2006/05/22 16:33:52 dr 1.15.176.3: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 15:03:00 dr 1.15.176.2: more backporting from CWS chart2mst3 2006/05/10 16:59:32 dr 1.15.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3633b65a895020495db0d6de5270eb6d38d83283]

INTEGRATION: CWS dr48 (1.58.2); FILE MERGED 2006/05/10 16:59:32 dr 1.58.2.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [074caffc16873789f1df1db281c86995ad812bdf]

INTEGRATION: CWS dr48 (1.35.46); FILE MERGED 2006/05/18 12:51:59 dr 1.35.46.2: #i60067# use named gradients, bitmaps, and dashes for chart objects 2006/05/10 16:59:32 dr 1.35.46.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8cdc88eb4cc8acb0d7f212aae20bb496d7b73d7a]

INTEGRATION: CWS dr48 (1.79.2); FILE MERGED 2006/05/22 16:33:52 dr 1.79.2.3: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/11 10:28:28 dr 1.79.2.2: #i63105# use font encoding for cell text 2006/05/10 16:59:31 dr 1.79.2.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [4e6742e016ab4a7151c244d99213d6bffbd47909]

INTEGRATION: CWS dr48 (1.6.176); FILE MERGED 2006/05/10 16:59:31 dr 1.6.176.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [0c19d4d8a2a5c8a03afd59f6e5edf9e10549593a]

INTEGRATION: CWS dr48 (1.56.166); FILE MERGED 2006/05/22 16:33:52 dr 1.56.166.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3947cabf34671a7ba1fc83e910bff1bced35e295]

INTEGRATION: CWS dr48 (1.81.28); FILE MERGED 2006/05/22 16:33:51 dr 1.81.28.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [0084487a44ecebd44717069343f173d37902fd67]

INTEGRATION: CWS dr48 (1.39.108); FILE MERGED 2006/05/22 16:33:51 dr 1.39.108.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [30427046eae120e99c1589493094eb0aa44a606a]

INTEGRATION: CWS dr48 (1.111.2); FILE MERGED 2006/05/22 16:33:51 dr 1.111.2.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 16:59:31 dr 1.111.2.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3b7d18044b56a1bc5a74adb4977b9aa55d345184]

INTEGRATION: CWS dr48 (1.38.146); FILE MERGED 2006/05/22 16:33:51 dr 1.38.146.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 16:59:31 dr 1.38.146.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [7e200516b148fa5b8ee80c2e727d665b460f46ed]

INTEGRATION: CWS dr48 (1.38.110); FILE MERGED 2006/05/22 16:33:51 dr 1.38.110.2: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32) 2006/05/10 16:59:31 dr 1.38.110.1: #i63105# backport changes from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [e15aecdb79b16bc5faddfa11992d716f8b4e7011]

INTEGRATION: CWS dr48 (1.22.2); FILE MERGED 2006/05/10 09:03:16 dr 1.22.2.1: dumper additions from CWS chart2mst3


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [2eb1af69463a2a92cfcd81fc20e75c0d85d0fd0a]

INTEGRATION: CWS dr48 (1.62.2); FILE MERGED 2006/05/22 16:33:50 dr 1.62.2.1: type correctness for stream related code in Excel filters (sal_Size vs. ULONG vs. sal_uInt32)


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [6cd23c48057cbc40698b09d055da95b1dd99fb83]

INTEGRATION: CWS dr48 (1.5.174); FILE MERGED 2006/06/01 13:56:58 nn 1.5.174.1: #i63148# IsValidReference for area links etc.


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [4e7e91e6b3d7579a7bea6503512962c43cb430a2]

INTEGRATION: CWS dr48 (1.18.44); FILE MERGED 2006/06/01 13:56:58 nn 1.18.44.1: #i63148# IsValidReference for area links etc.


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [3cbfccf1b14dd1d844a8f3da9945b77da0f7498e]

INTEGRATION: CWS dr48 (1.21.172); FILE MERGED 2006/05/10 10:37:29 nn 1.21.172.1: #i64441# don't rely on sheet information in ScDrawObjData from drawing objects


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [69727667bc8fa41692e4a53c918da50cc0cbdd13]

INTEGRATION: CWS dr48 (1.59.2); FILE MERGED 2006/05/12 20:24:34 er 1.59.2.1: #i58822# UpdateReference: replace SharedFormulas that wrapped when copied


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [d28cb37986680c21003e6cdacfc08f699bfcd815]

INTEGRATION: CWS dr48 (1.9.176); FILE MERGED 2006/05/16 14:13:55 nn 1.9.176.1: #i58049# #i57939# skip hidden columns in attribute handling


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [f0affaee2ed5f34034ab23639449276036886baf]

INTEGRATION: CWS dr48 (1.42.108); FILE MERGED 2006/05/10 10:37:11 nn 1.42.108.1: #i64441# don't rely on sheet information in ScDrawObjData from drawing objects


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [ac7da68ec2818ac763415747f3097f1a8d3714f7]

INTEGRATION: CWS dr48 (1.19.126); FILE MERGED 2006/05/11 14:14:34 nn 1.19.126.1: #i58574# CopyFromClip: call Resize even if IDF_FORMULA isn't set


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [6de61861470dfdf33b0104a87680ee1e65d56643]

INTEGRATION: CWS dr48 (1.10.42); FILE MERGED 2006/06/01 13:56:28 nn 1.10.42.1: #i63148# IsValidReference for area links etc.


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [9d4565bd63b01ada9c2fc4b37a204bcf1062f520]

INTEGRATION: CWS dr48 (1.17.108); FILE MERGED 2006/05/10 10:36:50 nn 1.17.108.1: #i64441# don't rely on sheet information in ScDrawObjData from drawing objects


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [e2b2afa59d478722b944ee444dbee01fe7f846b8]

INTEGRATION: CWS dr48 (1.9.176); FILE MERGED 2006/05/10 10:36:50 nn 1.9.176.1: #i64441# don't rely on sheet information in ScDrawObjData from drawing objects


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [ff98f5a661d73c4404ff03a6460a1777a1a8777d]

INTEGRATION: CWS dr47 (1.23.104); FILE MERGED 2006/03/10 14:05:08 dr 1.23.104.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [0d0c9959549f3dd643a393ffc38b90cabacae618]

INTEGRATION: CWS dr47 (1.17.46); FILE MERGED 2006/03/15 13:19:56 dr 1.17.46.1: #i62752# improved BIFF detection


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [1c19a697784646941209573980e54da0670e70c0]

INTEGRATION: CWS dr47 (1.86.64); FILE MERGED 2006/03/14 11:00:25 dr 1.86.64.2: #i49498# last changes 2006/03/10 14:05:05 dr 1.86.64.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [cc4f9eb7bc69074a4715f286590d7186c402a2d5]

INTEGRATION: CWS dr47 (1.63.122); FILE MERGED 2006/03/10 14:05:04 dr 1.63.122.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [863337bac158cf08aa225785f729ea0943aa6807]

INTEGRATION: CWS dr47 (1.44.32); FILE MERGED 2006/03/15 14:02:40 nn 1.44.32.1: #i56873# check if AutoStyles exists also here


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [68dc254f89a5fe7d5ea1ee383277adbfac28b2bc]

INTEGRATION: CWS dr47 (1.25.64); FILE MERGED 2006/03/16 10:44:53 nn 1.25.64.1: #i59328# detect invalid repeat values


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [4c5706fa8ad4c95097853b74973b891b11b10e25]

INTEGRATION: CWS dr47 (1.88.92); FILE MERGED 2006/05/08 13:53:27 dr 1.88.92.3: RESYNC: (1.89-1.90); FILE MERGED 2006/04/05 09:19:55 dr 1.88.92.2: RESYNC: (1.88-1.89); FILE MERGED 2006/03/16 10:44:52 nn 1.88.92.1: #i59328# detect invalid repeat values


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [af8707d034b3dd2b4fd5c16a63aa69d30f22cd40]

INTEGRATION: CWS dr47 (1.11.100); FILE MERGED 2006/03/10 14:05:02 dr 1.11.100.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [dc723a47289827708279d3a34de01390ae23bfff]

INTEGRATION: CWS dr47 (1.4.132); FILE MERGED 2006/03/14 15:27:44 dr 1.4.132.1: crash in recalc after inserting a row


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [c3c806198d160b8690311382c296f3f1f48cb389]

INTEGRATION: CWS dr47 (1.15.128); FILE MERGED 2006/03/13 16:15:42 dr 1.15.128.2: #i49498# last changes 2006/03/10 14:05:02 dr 1.15.128.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [7f50f50f2abdce5588789cbee9e4993947ce669a]

INTEGRATION: CWS dr47 (1.19.32); FILE MERGED 2006/05/30 18:16:43 nn 1.19.32.3: #i49498# corrected arg string for INFO 2006/03/13 16:15:41 dr 1.19.32.2: #i49498# last changes 2006/03/10 14:05:01 dr 1.19.32.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [c88857e5aed924d04022c2124d663cbcd397e5af]

INTEGRATION: CWS dr47 (1.40.76); FILE MERGED 2006/03/14 17:45:42 er 1.40.76.2: PopSingleRef: pass max to ValidTab, not count 2006/03/10 14:05:01 dr 1.40.76.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [b6e11c6eaaba9f083fc8f72f7dc7973d6c579219]

INTEGRATION: CWS dr47 (1.57.38); FILE MERGED 2006/04/05 09:18:57 dr 1.57.38.3: RESYNC: (1.57-1.58); FILE MERGED 2006/03/14 17:47:27 er 1.57.38.2: #i62238# UpdateInsertTab, UpdateDeleteTab: absolute positions aren't necessarily in sync with relative reference, sync before access 2006/03/10 14:05:00 dr 1.57.38.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [324c951ad176c233f55a8696b9d4e31d5c7c7e4d]

INTEGRATION: CWS dr47 (1.48.102); FILE MERGED 2006/03/10 14:05:00 dr 1.48.102.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [8e0dc621936c8ac5177386a5fa01cd2f3ffc9c44]

INTEGRATION: CWS dr47 (1.24.102); FILE MERGED 2006/03/10 14:04:59 dr 1.24.102.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [fe8578fcc9748b7335d69e18d2626743807999c2]

INTEGRATION: CWS dr47 (1.9.102); FILE MERGED 2006/03/10 14:04:59 dr 1.9.102.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [859deac6bad45a48bc0579b92c13ac1ae20a5364]

INTEGRATION: CWS dr47 (1.13.102); FILE MERGED 2006/03/10 14:04:59 dr 1.13.102.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [581c6036f84caf2e3487ad24e795f67f51080623]

INTEGRATION: CWS dr47 (1.13.132); FILE MERGED 2006/03/10 14:04:59 dr 1.13.132.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [68a07b1ff5d85f3ef1f0d2756dc332e765854b37]

INTEGRATION: CWS dr47 (1.11.102); FILE MERGED 2006/03/10 14:04:58 dr 1.11.102.1: #i49498# INFO function


2006-07-10  Oliver Bolte  <obo@openoffice.org>  [c70760f13d6f59a6b9318ac4d122a2714b567f42]

INTEGRATION: CWS calchtmlnumbers (1.14.68); FILE MERGED 2006/06/09 19:56:47 er 1.14.68.1: #i50670# optionally parse NumbersEnglishUS during HTML import instead of user's locale


2006-07-05  Kurt Zenker  <kz@openoffice.org>  [2262239fecbea0ee0c25671292a00021efba7a9d]

INTEGRATION: CWS ause058 (1.3.30); FILE MERGED 2006/06/19 15:47:04 hjs 1.3.30.1: #i63235# cleanup URD and more...


2006-06-29  Ivo Hinkelmann  <ihi@openoffice.org>  [12a523f2a1cea9bb191e4c230bd9e05cb85c0b96]

INTEGRATION: CWS ause036 (1.32.46); FILE MERGED 2006/05/24 16:53:13 hjs 1.32.46.3: RESYNC: (1.33-1.34); FILE MERGED 2006/02/27 18:21:24 hjs 1.32.46.2: RESYNC: (1.32-1.33); FILE MERGED 2005/11/15 15:20:14 hjs 1.32.46.1: #i50255# remove obsolete/wronge dependencies


2006-06-20  Jens-Heiner Rechtien  <hr@openoffice.org>  [9d6507bbb092880b7a2ad77d059c325c661dc051]

INTEGRATION: CWS calclosttext (1.56.42); FILE MERGED 2006/06/07 17:20:20 nn 1.56.42.1: #i66209# ensure update mode is set in CreateFieldEditEngine outside of loading


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [6052c492e21905e0a37a6017a2b94b45439ba534]

INTEGRATION: CWS warnings01 (1.4.12); FILE MERGED 2006/03/21 14:34:16 nn 1.4.12.2: #i53898# warning-free code 2005/11/11 16:07:47 pl 1.4.12.1: #i55991# removed warnings


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [d3ae6bcdd8ea34f353e475a56832d8899b612efe]

INTEGRATION: CWS warnings01 (1.10.12); FILE MERGED 2006/05/23 22:53:49 sb 1.10.12.3: RESYNC: (1.10-1.11); FILE MERGED 2005/11/11 16:07:47 pl 1.10.12.2: #i55991# removed warnings 2005/10/24 16:42:54 nn 1.10.12.1: #i53898# warning-free code


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [d507c93c04e8c3351f445d5348c1d889e5d25f22]

INTEGRATION: CWS warnings01 (1.17.12); FILE MERGED 2005/11/11 16:07:45 pl 1.17.12.1: #i55991# removed warnings


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [f734edacfd86e8d407a5e40497f70abdf49ce966]

INTEGRATION: CWS warnings01 (1.4.12); FILE MERGED 2005/11/11 16:07:45 pl 1.4.12.1: #i55991# removed warnings


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [df31516fc47ac168772366aad418d0f5035c3ce1]

INTEGRATION: CWS warnings01 (1.29.8); FILE MERGED 2006/03/21 14:34:16 nn 1.29.8.5: #i53898# warning-free code 2006/01/25 20:13:33 sb 1.29.8.4: RESYNC: (1.30-1.31); FILE MERGED 2005/11/11 16:07:45 pl 1.29.8.3: #i55991# removed warnings 2005/11/07 18:46:49 pl 1.29.8.2: RESYNC: (1.29-1.30); FILE MERGED 2005/10/24 16:42:31 nn 1.29.8.1: #i53898# warning-free code


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [315dc46fb4b2f6883ff291cc75f80c0b5be6a7ae]

INTEGRATION: CWS warnings01 (1.48.12); FILE MERGED 2006/04/07 19:40:41 sb 1.48.12.6: RESYNC: (1.50-1.51); FILE MERGED 2006/03/21 14:34:16 nn 1.48.12.5: #i53898# warning-free code 2006/01/25 20:13:26 sb 1.48.12.4: RESYNC: (1.49-1.50); FILE MERGED 2005/11/11 16:07:44 pl 1.48.12.3: #i55991# removed warnings 2005/11/07 18:46:37 pl 1.48.12.2: RESYNC: (1.48-1.49); FILE MERGED 2005/10/24 16:42:32 nn 1.48.12.1: #i53898# warning-free code


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [f2befddf3880ad5186036e28555abf55ca5fa364]

INTEGRATION: CWS warnings01 (1.39.12); FILE MERGED 2006/05/23 22:52:38 sb 1.39.12.5: RESYNC: (1.40-1.41); FILE MERGED 2006/03/21 14:34:15 nn 1.39.12.4: #i53898# warning-free code 2006/01/25 20:13:17 sb 1.39.12.3: RESYNC: (1.39-1.40); FILE MERGED 2005/11/11 16:07:44 pl 1.39.12.2: #i55991# removed warnings 2005/10/24 16:42:30 nn 1.39.12.1: #i53898# warning-free code


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f64340854beafcd14723591e36c14cd869d2546]

INTEGRATION: CWS warnings01 (1.23.98); FILE MERGED 2006/05/12 16:38:18 sb 1.23.98.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [ea101abc50721e51765feb2b41280dac57061a08]

INTEGRATION: CWS warnings01 (1.13.180); FILE MERGED 2006/05/12 16:38:17 sb 1.13.180.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [69590de69d58f74450825c67608be30087a40b9d]

INTEGRATION: CWS warnings01 (1.5.180); FILE MERGED 2006/05/12 16:38:17 sb 1.5.180.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [7028bf9f264701f6767ab9ba4cdf10d5b7e19ac5]

INTEGRATION: CWS warnings01 (1.18.50); FILE MERGED 2006/05/12 16:38:17 sb 1.18.50.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [4a15480c27a3087dd6b5fd4f32b9a0aacd6b9bf2]

INTEGRATION: CWS warnings01 (1.6.182); FILE MERGED 2006/05/12 16:38:16 sb 1.6.182.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [b354f3e47e9331c842b5b8bc2fb0febc736d2e6f]

INTEGRATION: CWS warnings01 (1.5.182); FILE MERGED 2006/06/15 14:58:40 nn 1.5.182.1: #i66422# remove fx button focus handler in dtor


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [6828087c6c69e09326b3e90ae420a45157b80e5f]

INTEGRATION: CWS warnings01 (1.11.182); FILE MERGED 2006/05/12 16:38:16 sb 1.11.182.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [3490e8cef88f7d9f5893df18797eb83fb38b4736]

INTEGRATION: CWS warnings01 (1.28.98); FILE MERGED 2006/05/12 16:38:16 sb 1.28.98.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [388c95a4c8e7360485a2c1ddd5f7cbbf61cd04e9]

INTEGRATION: CWS warnings01 (1.8.24); FILE MERGED 2006/05/23 20:39:05 sb 1.8.24.2: RESYNC: (1.8-1.9); FILE MERGED 2006/05/12 16:38:16 sb 1.8.24.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [cd8fa9d5f0b620b2013a5b43d63ca327888b6a03]

INTEGRATION: CWS warnings01 (1.42.52); FILE MERGED 2006/06/02 14:18:12 sb 1.42.52.1: #i53898# Made code compile on Windows.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [aed4ded0900f32ee193f907854a8ecf9094cfcd6]

INTEGRATION: CWS warnings01 (1.6.58); FILE MERGED 2006/06/02 14:18:11 sb 1.6.58.1: #i53898# Made code compile on Windows.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [2626820a2c3d8b10394cb4d7af0725636588375c]

INTEGRATION: CWS warnings01 (1.61.54); FILE MERGED 2006/05/23 20:35:31 sb 1.61.54.2: RESYNC: (1.61-1.62); FILE MERGED 2006/05/12 16:38:15 sb 1.61.54.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [9f18e5abc31dbd69f0e33cd09eb51a158fdbcbc6]

INTEGRATION: CWS warnings01 (1.21.178); FILE MERGED 2006/05/12 16:38:15 sb 1.21.178.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [b129d0ad5c6538c3bf87b6529173d6bc51c044a5]

INTEGRATION: CWS warnings01 (1.7.182); FILE MERGED 2006/05/12 16:38:15 sb 1.7.182.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [1ffc3db9259ad0ec75bfacbc7f6c1b3e479b821e]

INTEGRATION: CWS warnings01 (1.31.4); FILE MERGED 2006/05/23 20:33:10 sb 1.31.4.2: RESYNC: (1.31-1.32); FILE MERGED 2006/05/12 16:38:14 sb 1.31.4.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [d51c82918d22ce52549054e54ef572d429c2bc74]

INTEGRATION: CWS warnings01 (1.3.182); FILE MERGED 2006/05/12 16:38:14 sb 1.3.182.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.


2006-06-02  Vladimir Glazounov  <vg@openoffice.org>  [841c0949d1fe08d36448ccac3b8c0a1cdf753096]

INTEGRATION: CWS ause051 (1.42.42); FILE MERGED 2006/05/24 11:56:04 hjs 1.42.42.1: #i65393# added include


2006-05-24  Vladimir Glazounov  <vg@openoffice.org>  [120a4a817833bba902e3916633e4672ec643cba1]

INTEGRATION: CWS ause043 (1.11.20); FILE MERGED 2005/11/17 11:50:19 hjs 1.11.20.1: #i56702# added missing types


2006-05-24  Vladimir Glazounov  <vg@openoffice.org>  [d96eae9c1d1a383adea0aa1430fde2b964f471c9]

INTEGRATION: CWS ause043 (1.13.20); FILE MERGED 2005/11/17 11:50:02 hjs 1.13.20.1: #i56702# added missing types


2006-05-24  Vladimir Glazounov  <vg@openoffice.org>  [1842aec478271e9951a8057ceaca9b4ef7e74528]

INTEGRATION: CWS vq32 (1.8.192); FILE MERGED 2006/05/20 21:45:57 vq 1.8.192.1: #i65415# Use SDI1xxxx instead of SDIxxxx.


2006-05-16  Vladimir Glazounov  <vg@openoffice.org>  [f3e12915019a339793f8ff9f23d6b4f7da20bbf7]

INTEGRATION: CWS calcpagestyle (1.13.182); FILE MERGED 2006/05/12 14:19:00 nn 1.13.182.1: #i65326# have to call GetPrinter(TRUE) at the ViewShell if a printer is needed


2006-05-16  Vladimir Glazounov  <vg@openoffice.org>  [609b9cd581579e267bbf1929574cf3cb40afeffd]

INTEGRATION: CWS calcpagestyle (1.74.96); FILE MERGED 2006/05/12 14:19:00 nn 1.74.96.1: #i65326# have to call GetPrinter(TRUE) at the ViewShell if a printer is needed


2006-05-16  Vladimir Glazounov  <vg@openoffice.org>  [2324eb7914ab6a5f4f99d1fc05ee3e2faccbae65]

INTEGRATION: CWS calcpagestyle (1.30.16); FILE MERGED 2006/05/12 14:19:00 nn 1.30.16.1: #i65326# have to call GetPrinter(TRUE) at the ViewShell if a printer is needed


2006-05-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [005b31b829aaad7dab0f7ca7ecf3bcf5d73949c1]

INTEGRATION: CWS pb13 (1.18.170); FILE MERGED 2006/04/26 09:20:37 pb 1.18.170.1: fix: #i63803# use the new method RemoveEntry()


2006-05-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [efea4b48dda670b9d714a3b41abc485377eed3f5]

INTEGRATION: CWS calcchartcache (1.23.172); FILE MERGED 2006/05/05 14:52:03 er 1.23.172.1: #b6371919# FindChart: set modified if requested; and folks, please don't leave todo/later/maybe/future comments if you change something and don't fully understand the implications of the code you removed..


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [8714c89bdd30f1510be967c7b7b63d4f89d42115]

INTEGRATION: CWS calc36 (1.55.48); FILE MERGED 2006/04/05 16:32:18 nn 1.55.48.1: #i40174# SingleCellMode for range selection API


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [a09cfae4b01ce59966d170e32434c3517c97a113]

INTEGRATION: CWS calc36 (1.26.154); FILE MERGED 2006/04/11 15:50:29 nn 1.26.154.1: #i60603# check if argument items exist


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [1b1ace0c3e773e4e352fcf61960a968cbf660980]

INTEGRATION: CWS calc36 (1.5.154); FILE MERGED 2006/04/05 16:32:18 nn 1.5.154.1: #i40174# SingleCellMode for range selection API


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [74fa2c70d504916e17d53b210ba379e543c7303a]

INTEGRATION: CWS calc36 (1.22.152); FILE MERGED 2006/04/05 16:31:40 nn 1.22.152.1: #i40174# SingleCellMode for range selection API


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [d62f896e2d0f194087f98c31b25a391025f20a2b]

INTEGRATION: CWS calc36 (1.12.154); FILE MERGED 2006/04/06 09:22:52 nn 1.12.154.1: #i63513# new method SetNewRangeNames to avoid extra copy of ScRangeName


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [bf3b0b05a468bb1be763384bf711531fc851a3fb]

INTEGRATION: CWS calc36 (1.96.10); FILE MERGED 2006/04/21 16:45:18 nn 1.96.10.2: #i63878# setPropertyValues / setPropertyValuesTolerant: CellStyle must be handled first 2006/04/10 16:13:00 nn 1.96.10.1: #i63519# ScCellRangesObj: don't use USHORT to access ranges


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [5107a76937ff1f600c357083a2b60463c0fdb8e3]

INTEGRATION: CWS calc36 (1.6.156); FILE MERGED 2006/04/05 16:31:08 nn 1.6.156.1: #i40174# SingleCellMode for range selection API


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [b72422f270f08aec87ae1c773eeb1977bf947e27]

INTEGRATION: CWS calc36 (1.24.126); FILE MERGED 2006/04/05 16:30:10 nn 1.24.126.1: #i40174# SingleCellMode for range selection API


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [006762277e984b1bbf370fef16da3694c6d985d8]

INTEGRATION: CWS calc36 (1.3.156); FILE MERGED 2006/04/05 16:30:10 nn 1.3.156.1: #i40174# SingleCellMode for range selection API


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [a801bd95055a250edd28859628583bf874b42004]

INTEGRATION: CWS calc36 (1.12.156); FILE MERGED 2006/04/06 09:22:03 nn 1.12.156.1: #i63513# new method SetNewRangeNames to avoid extra copy of ScRangeName


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [40bec9195907051ddcd8ba2079ea5933d08dcc5f]

INTEGRATION: CWS calc36 (1.58.10); FILE MERGED 2006/04/06 09:22:36 nn 1.58.10.1: #i63513# new method SetNewRangeNames to avoid extra copy of ScRangeName


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [afc6dcee64e59960a59629eadc9f7e8e4155f642]

INTEGRATION: CWS calc36 (1.46.114); FILE MERGED 2006/04/11 15:51:03 nn 1.46.114.1: #i60603# don't set nCurRefDlgId if no dialog is created


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [ad3beef73e9cb187477784431ba3011cb8c67eb3]

INTEGRATION: CWS calc36 (1.4.156); FILE MERGED 2006/04/06 12:16:39 dr 1.4.156.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [ddc69ae20d9df720d2ecbe17ccb425fb92efe2e1]

INTEGRATION: CWS calc36 (1.17.156); FILE MERGED 2006/04/06 12:16:39 dr 1.17.156.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [3c5725d36f07fd8c9a3c032b021e854184a39908]

INTEGRATION: CWS calc36 (1.7.126); FILE MERGED 2006/04/06 12:16:38 dr 1.7.126.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [41ac193a127de17ddbf8ae82f7aedfb8d4868f9f]

INTEGRATION: CWS calc36 (1.18.90); FILE MERGED 2006/04/06 12:16:38 dr 1.18.90.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [f78ebae6d3d024e81ab7271398178e70db4335e3]

INTEGRATION: CWS calc36 (1.2.18); FILE MERGED 2006/04/06 12:16:38 dr 1.2.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [ad848244c562bd0bfd57a91b6e69de35ec6fd83f]

INTEGRATION: CWS calc36 (1.8.156); FILE MERGED 2006/04/06 12:16:38 dr 1.8.156.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [b00130970e451ed65573768f161b765c1bb7afbd]

INTEGRATION: CWS calc36 (1.26.146); FILE MERGED 2006/04/06 12:16:38 dr 1.26.146.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [078bcb77dc3d699562797ea49d8045629e5c2d09]

INTEGRATION: CWS calc36 (1.4.146); FILE MERGED 2006/04/06 12:16:37 dr 1.4.146.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [b7e72faeafd2d293981f66be3c07600590f5a783]

INTEGRATION: CWS calc36 (1.15.156); FILE MERGED 2006/04/06 12:16:37 dr 1.15.156.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [d4b6855b403ab5a24a975cfc4d88b54a132bb3c8]

INTEGRATION: CWS calc36 (1.36.18); FILE MERGED 2006/04/06 12:16:37 dr 1.36.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [571bc942499f38e664ba3787a4f3c427adfb89cf]

INTEGRATION: CWS calc36 (1.18.156); FILE MERGED 2006/04/06 12:16:37 dr 1.18.156.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [c80bbc02cb9dc540c83491064cb90f03d6e4fdae]

INTEGRATION: CWS calc36 (1.2.18); FILE MERGED 2006/04/06 12:16:37 dr 1.2.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [0ef810405905f4c160838f6ceb767c491d09f411]

INTEGRATION: CWS calc36 (1.64.18); FILE MERGED 2006/04/06 12:16:37 dr 1.64.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [f0cbd562f9c32ce484b313803b8a73256b1009a7]

INTEGRATION: CWS calc36 (1.2.18); FILE MERGED 2006/04/26 12:10:02 dr 1.2.18.2: #i10000# check validity of objects 2006/04/06 12:16:36 dr 1.2.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [13874e5b00506ded9a85f381cc908e8654056b95]

INTEGRATION: CWS calc36 (1.4.146); FILE MERGED 2006/04/06 12:16:36 dr 1.4.146.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [69ac3be7442a5a9f7d72c1f135ac84ca1a75d617]

INTEGRATION: CWS calc36 (1.2.18); FILE MERGED 2006/04/06 12:16:36 dr 1.2.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [cbff83625cfe5257a112de1123785901ae4ab57c]

INTEGRATION: CWS calc36 (1.2.18); FILE MERGED 2006/04/26 08:08:52 nn 1.2.18.2: build error 2006/04/06 12:16:36 dr 1.2.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [7aa1ab86160536d01a7cb0b7ad37f69c038b3c71]

INTEGRATION: CWS calc36 (1.15.18); FILE MERGED 2006/04/25 13:16:52 nn 1.15.18.2: RESYNC: (1.15-1.16); FILE MERGED 2006/04/06 12:16:35 dr 1.15.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [57381a079b9064bf03dd30c21132ef5d5fa3a53b]

INTEGRATION: CWS calc36 (1.10.146); FILE MERGED 2006/04/06 12:16:35 dr 1.10.146.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [e4bc71aca8b6b9eb3f2d363f018a6d26481b833b]

INTEGRATION: CWS calc36 (1.22.104); FILE MERGED 2006/04/06 12:16:35 dr 1.22.104.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [9ce33f8f9002a7d884e3385a7ec68685186b61d7]

INTEGRATION: CWS calc36 (1.18.18); FILE MERGED 2006/04/06 12:16:35 dr 1.18.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [20c5c269dd68276e4c251093e55ae6dbb373e649]

INTEGRATION: CWS calc36 (1.8.126); FILE MERGED 2006/04/25 13:16:34 nn 1.8.126.2: RESYNC: (1.8-1.9); FILE MERGED 2006/04/06 12:16:35 dr 1.8.126.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [f84cf84c4b8f228445e3dfaeb4168fb332962f3f]

INTEGRATION: CWS calc36 (1.57.18); FILE MERGED 2006/04/06 12:16:34 dr 1.57.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [feb80eff546cfb226a18adaa79a9432c440593b8]

INTEGRATION: CWS calc36 (1.78.18); FILE MERGED 2006/04/06 12:16:34 dr 1.78.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [f461c5ab9fdfd2c574ec658fb0b8840ea8e5e94f]

INTEGRATION: CWS calc36 (1.110.18); FILE MERGED 2006/04/06 12:16:34 dr 1.110.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [39aa86ba433f8edfc45919e407a78066e906e4aa]

INTEGRATION: CWS calc36 (1.21.18); FILE MERGED 2006/04/06 12:16:34 dr 1.21.18.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [8ca4b7bdd4b9e668d770027aa4b73c4b9e4c778a]

INTEGRATION: CWS calc36 (1.61.146); FILE MERGED 2006/04/06 12:16:33 dr 1.61.146.1: #i62752# #i63502# #i63591# moved changes from CWS dr47


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [e48fdffc4adb11007a9a543b78c20c24b13c4d4d]

INTEGRATION: CWS calc36 (1.37.104); FILE MERGED 2006/04/21 15:23:16 er 1.37.104.2: #i60708# ScType: empty cell is value (0) 2006/04/21 15:03:00 er 1.37.104.1: #i35483# ScValue: handle empty cells as zero, add matrix cases


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [96aca6ad2770d626dc360356c01cbb3eaef38cb4]

INTEGRATION: CWS calc36 (1.58.8); FILE MERGED 2006/04/13 11:24:10 er 1.58.8.1: #i62238# UpdateInsertTab, UpdateDeleteTab: absolute positions aren't necessarily in sync with relative reference, sync before access


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [c37a5ac0bb4d069fa54c8b7ba602be2cd6a7077c]

INTEGRATION: CWS calc36 (1.70.10); FILE MERGED 2006/04/05 16:29:08 nn 1.70.10.1: #i40174# SingleCellMode for range selection API


2006-05-05  Rüdiger Timm  <rt@openoffice.org>  [69d7bab1219b9f623119fbc2618a16576a6e1f33]

INTEGRATION: CWS calc36 (1.24.10); FILE MERGED 2006/04/10 16:12:27 nn 1.24.10.1: #i63519# ScCellRangesObj: don't use USHORT to access ranges


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [1a635e485c42741e303b5c5d81c44a9d26800468]

INTEGRATION: CWS perform07 (1.51.48); FILE MERGED 2006/03/28 18:19:29 mt 1.51.48.2: RESYNC: (1.51-1.55); FILE MERGED 2005/11/08 16:09:56 mt 1.51.48.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [099c9af9f4331528ba0ac8019af4ff7c2ee4fc39]

INTEGRATION: CWS perform07 (1.25.52); FILE MERGED 2006/03/28 18:19:11 mt 1.25.52.2: RESYNC: (1.25-1.27); FILE MERGED 2005/11/08 16:09:55 mt 1.25.52.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [53c2bbc7a8dd21b74f08a5bed4d1a3f35459e364]

INTEGRATION: CWS perform07 (1.20.52); FILE MERGED 2005/11/08 16:09:54 mt 1.20.52.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [0f7ec500a79ac5bf7ccf8da6ddc1959e78a2cacd]

INTEGRATION: CWS perform07 (1.35.52); FILE MERGED 2006/03/28 18:12:39 mt 1.35.52.2: RESYNC: (1.35-1.36); FILE MERGED 2005/11/08 16:09:53 mt 1.35.52.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [e49219203c65e2b9bdb86dc3b2b3facf76d6d797]

INTEGRATION: CWS perform07 (1.23.46); FILE MERGED 2005/12/01 11:44:41 mt 1.23.46.2: RESYNC: (1.23-1.24); FILE MERGED 2005/11/08 16:09:52 mt 1.23.46.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [1be8ba7156738e7a6fd8dda2ad7fb761748a38ad]

INTEGRATION: CWS perform07 (1.17.52); FILE MERGED 2005/11/08 16:09:52 mt 1.17.52.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [4d585267f20562c74e852abd2abcf947f4082b19]

INTEGRATION: CWS perform07 (1.81.48); FILE MERGED 2006/03/31 15:28:38 mt 1.81.48.3: RESYNC: (1.84-1.85); FILE MERGED 2006/03/28 18:11:02 mt 1.81.48.2: RESYNC: (1.81-1.84); FILE MERGED 2005/11/08 16:09:51 mt 1.81.48.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [10045d16bce6b78308013062b47795331f146c99]

INTEGRATION: CWS perform07 (1.31.52); FILE MERGED 2006/03/28 18:09:22 mt 1.31.52.2: RESYNC: (1.31-1.32); FILE MERGED 2005/11/08 16:09:50 mt 1.31.52.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [0f6b7122af2e106f201e70f195c4b91c9fadaabd]

INTEGRATION: CWS perform07 (1.7.52); FILE MERGED 2005/11/08 16:09:49 mt 1.7.52.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [77fb06f401c98bc5a12d3cb9406f0634fc5a8c19]

INTEGRATION: CWS perform07 (1.27.54); FILE MERGED 2006/03/31 15:27:14 mt 1.27.54.3: RESYNC: (1.28-1.29); FILE MERGED 2006/03/28 17:55:12 mt 1.27.54.2: RESYNC: (1.27-1.28); FILE MERGED 2005/10/31 10:37:00 mt 1.27.54.1: #i56788# removed unnecessary font method calls


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [8d91e5bccbe0072f887804bec70add267709cc28]

INTEGRATION: CWS perform07 (1.29.50); FILE MERGED 2006/03/31 15:26:58 mt 1.29.50.3: RESYNC: (1.30-1.31); FILE MERGED 2006/03/28 17:54:01 mt 1.29.50.2: RESYNC: (1.29-1.30); FILE MERGED 2005/11/08 16:09:48 mt 1.29.50.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [60aca1df25afb99c257b86ffd2acfae7641654cf]

INTEGRATION: CWS perform07 (1.40.38); FILE MERGED 2006/03/31 15:26:52 mt 1.40.38.3: RESYNC: (1.41-1.42); FILE MERGED 2006/03/28 17:53:54 mt 1.40.38.2: RESYNC: (1.40-1.41); FILE MERGED 2005/11/08 16:09:48 mt 1.40.38.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [22f5d0bfaa531fa552f0d3dba4af688a2ab77c25]

INTEGRATION: CWS perform07 (1.52.38); FILE MERGED 2006/03/31 15:26:45 mt 1.52.38.3: RESYNC: (1.54-1.55); FILE MERGED 2006/03/28 17:53:47 mt 1.52.38.2: RESYNC: (1.52-1.54); FILE MERGED 2005/11/08 16:09:47 mt 1.52.38.1: #i57182# No printer in startup...


2006-05-04  Rüdiger Timm  <rt@openoffice.org>  [9f94f06a8380e708f30e494f3c9fdc825184e80b]

INTEGRATION: CWS perform07 (1.88.38); FILE MERGED 2006/03/31 15:26:12 mt 1.88.38.3: RESYNC: (1.90-1.91); FILE MERGED 2006/03/29 05:21:24 mt 1.88.38.2: RESYNC: (1.88-1.90); FILE MERGED 2005/11/08 16:09:46 mt 1.88.38.1: #i57182# No printer in startup...


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [2bfd1fa207196f3b3f68f9ddec1abfa880daae67]

INTEGRATION: CWS sfxcleanup (1.31.72); FILE MERGED 2006/03/05 00:46:29 mba 1.31.72.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [71832e2075409c0f83217f51ad0a00c1ce4fdada]

INTEGRATION: CWS sfxcleanup (1.28.116); FILE MERGED 2006/03/05 00:45:40 mba 1.28.116.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [c2eaa9c4860db17e6cac5e1d0aa4bff834483b6b]

INTEGRATION: CWS sfxcleanup (1.27.30); FILE MERGED 2006/03/05 00:36:35 mba 1.27.30.2: #132394#: remove superfluous code 2006/02/27 08:18:48 mba 1.27.30.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [bd8dbfea57dd0b96121993091b319aa5ca602ee5]

INTEGRATION: CWS sfxcleanup (1.55.10); FILE MERGED 2006/03/05 00:44:16 mba 1.55.10.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [6ff6ac83c6ca18919a6c1a0fcbd89af12a663cbb]

INTEGRATION: CWS sfxcleanup (1.26.126); FILE MERGED 2006/03/05 00:43:37 mba 1.26.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [dbf2f532fbcdaf32427aa4ba11469e03aa1d4bf5]

INTEGRATION: CWS sfxcleanup (1.12.116); FILE MERGED 2006/03/05 00:42:27 mba 1.12.116.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [acf0e07a459e5ca25135952ce4619ae3de2661fd]

INTEGRATION: CWS sfxcleanup (1.44.32); FILE MERGED 2006/02/27 08:18:48 mba 1.44.32.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [d0e4795a6049a9bf84e34a3f581076eda96a861b]

INTEGRATION: CWS sfxcleanup (1.27.10); FILE MERGED 2006/03/05 00:41:12 mba 1.27.10.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [3fa71a3254023d1716ab71daf6b4b3ff8dbba693]

INTEGRATION: CWS sfxcleanup (1.29.126); FILE MERGED 2006/03/05 00:35:52 mba 1.29.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [c62c1df2dde9db59a5f6e1592f162668ebf266aa]

INTEGRATION: CWS sfxcleanup (1.27.54); FILE MERGED 2006/03/02 10:39:29 mba 1.27.54.2: #132394#: remove superfluous code 2006/03/02 09:26:21 mba 1.27.54.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [0b69536604317c05b0ee0d0e1b376f11cc97072d]

INTEGRATION: CWS sfxcleanup (1.38.124); FILE MERGED 2006/02/27 08:18:47 mba 1.38.124.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [de9e731d8c89c0b4d7e6c0117a5604063df2c706]

INTEGRATION: CWS sfxcleanup (1.10.128); FILE MERGED 2006/03/05 00:38:36 mba 1.10.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [7af6cc2862bf0b474725e7c2357905ba56975044]

INTEGRATION: CWS sfxcleanup (1.17.126); FILE MERGED 2006/03/05 00:37:42 mba 1.17.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [b0ea75350c495149c31da5d618b7e44183b6030c]

INTEGRATION: CWS sfxcleanup (1.37.84); FILE MERGED 2006/03/02 10:39:29 mba 1.37.84.2: #132394#: remove superfluous code 2006/03/02 09:26:21 mba 1.37.84.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [821a9888437a367373e65f87cc371ab9ac817294]

INTEGRATION: CWS sfxcleanup (1.16.54); FILE MERGED 2006/03/05 00:30:34 mba 1.16.54.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [c613148c4b29f962c45551919634d4359b78afc2]

INTEGRATION: CWS sfxcleanup (1.6.128); FILE MERGED 2006/03/02 14:24:14 mba 1.6.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [e1680c407310620c2829bc08f568db7d2aca942c]

INTEGRATION: CWS sfxcleanup (1.4.126); FILE MERGED 2006/03/05 00:27:37 mba 1.4.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [801f0f7199b4bb386eb3d2e7911f21ac5b360299]

INTEGRATION: CWS sfxcleanup (1.18.126); FILE MERGED 2006/03/05 00:26:32 mba 1.18.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [028d19d754cff0ab404fb667931e611b78f844d8]

INTEGRATION: CWS sfxcleanup (1.4.126); FILE MERGED 2006/03/02 10:39:28 mba 1.4.126.2: #132394#: remove superfluous code 2006/03/02 09:26:21 mba 1.4.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [f955a1402a99a0637712e24a9937e5c34c76b115]

INTEGRATION: CWS sfxcleanup (1.65.118); FILE MERGED 2006/04/28 13:25:04 mba 1.65.118.2: RESYNC: (1.65-1.66); FILE MERGED 2006/03/02 10:39:28 mba 1.65.118.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [3fd4fb99626588661fbb83ad32efbe3f14430dd4]

INTEGRATION: CWS sfxcleanup (1.3.126); FILE MERGED 2006/03/02 10:39:28 mba 1.3.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [1d708a6f184e591093597b7041d37689b8c77528]

INTEGRATION: CWS sfxcleanup (1.6.124); FILE MERGED 2006/03/02 10:39:28 mba 1.6.124.2: #132394#: remove superfluous code 2006/03/02 09:26:20 mba 1.6.124.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [2a44181149dbd2bedafc56855d9d772d8c412c18]

INTEGRATION: CWS sfxcleanup (1.11.124); FILE MERGED 2006/02/27 08:18:46 mba 1.11.124.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [787dfee9358bcb9377319f209a5e8894d19ba589]

INTEGRATION: CWS sfxcleanup (1.26.54); FILE MERGED 2006/03/02 10:39:28 mba 1.26.54.2: #132394#: remove superfluous code 2006/03/02 09:26:20 mba 1.26.54.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [2d2af5f3158c7c9dfd122feb9fdb06a7e6dea13f]

INTEGRATION: CWS sfxcleanup (1.25.118); FILE MERGED 2006/04/28 13:24:57 mba 1.25.118.2: RESYNC: (1.25-1.26); FILE MERGED 2006/03/02 10:39:27 mba 1.25.118.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [c8c0a002759655a25dddc634ddb915fab9e9032b]

INTEGRATION: CWS sfxcleanup (1.6.126); FILE MERGED 2006/03/02 10:39:27 mba 1.6.126.2: #132394#: remove superfluous code 2006/03/02 09:26:20 mba 1.6.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [e0a5ab7e2977aa4e48304d709cdfcf2ba9cd9f6b]

INTEGRATION: CWS sfxcleanup (1.7.124); FILE MERGED 2006/03/02 10:39:27 mba 1.7.124.2: #132394#: remove superfluous code 2006/03/02 09:26:20 mba 1.7.124.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [287ebb97ed472905e8da4360b398c0e1effb43d4]

INTEGRATION: CWS sfxcleanup (1.4.126); FILE MERGED 2006/03/02 09:26:20 mba 1.4.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [a67ae6bd26244dd0d98b7c8487fe2a79a37bf05b]

INTEGRATION: CWS sfxcleanup (1.45.94); FILE MERGED 2006/03/05 00:22:08 mba 1.45.94.2: #132394#: remove superfluous code 2006/02/27 08:18:46 mba 1.45.94.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [7775af014c4b1ee87f2b0bd83394d9a6c0019ec9]

INTEGRATION: CWS sfxcleanup (1.57.24); FILE MERGED 2006/04/28 13:24:24 mba 1.57.24.2: RESYNC: (1.57-1.58); FILE MERGED 2006/03/05 00:21:00 mba 1.57.24.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [b0afcdeff3416c458ea6dff92568c329b9dfd1bc]

INTEGRATION: CWS sfxcleanup (1.46.84); FILE MERGED 2006/03/05 00:13:14 mba 1.46.84.2: #132394#: remove superfluous code 2006/02/27 08:18:45 mba 1.46.84.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [493067d2ff984c8297a7246637864282093d0eac]

INTEGRATION: CWS sfxcleanup (1.32.116); FILE MERGED 2006/03/02 14:24:13 mba 1.32.116.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [66933146e949dc16449fc8c15f95ab5c598f6082]

INTEGRATION: CWS sfxcleanup (1.45.54); FILE MERGED 2006/03/05 00:14:52 mba 1.45.54.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [f007087d6a7ac2b58016c5213e82f666e8669a31]

INTEGRATION: CWS sfxcleanup (1.63.30); FILE MERGED 2006/03/05 00:14:07 mba 1.63.30.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [0efb9b3c304b20019284581d78d652ff608a9ba2]

INTEGRATION: CWS sfxcleanup (1.43.128); FILE MERGED 2006/04/28 13:17:32 mba 1.43.128.2: RESYNC: (1.43-1.44); FILE MERGED 2006/03/05 00:06:02 mba 1.43.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [3d3cf91796bfe0addddd4a1b9071fc1058298661]

INTEGRATION: CWS sfxcleanup (1.29.114); FILE MERGED 2006/03/05 00:05:20 mba 1.29.114.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [2311eb5e2c6048a2b924536086fa0f6c72802bcf]

INTEGRATION: CWS sfxcleanup (1.18.126); FILE MERGED 2006/03/02 09:26:09 mba 1.18.126.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [5e1d9e7a1676589baf648a9eeb7c6f6faafc4f7b]

INTEGRATION: CWS sfxcleanup (1.4.128); FILE MERGED 2006/03/02 09:26:09 mba 1.4.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [c68f6e37c8de54053592816473d52533d6c40e8e]

INTEGRATION: CWS sfxcleanup (1.3.128); FILE MERGED 2006/03/02 09:26:09 mba 1.3.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [5a303ced8c00951883142bcd7c5f4881dd0775e9]

INTEGRATION: CWS sfxcleanup (1.3.128); FILE MERGED 2006/03/02 09:26:08 mba 1.3.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [84651b40097717f9c0edee82e83f4a75613c557c]

INTEGRATION: CWS sfxcleanup (1.7.128); FILE MERGED 2006/03/02 09:26:08 mba 1.7.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [f733a9b8ff1a3a61f5fdb1de997c9d6c7d8b5446]

INTEGRATION: CWS sfxcleanup (1.12.128); FILE MERGED 2006/03/02 09:26:08 mba 1.12.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [370940c3f50aed5aa33a93c5eb41c4fe786c0351]

INTEGRATION: CWS sfxcleanup (1.9.86); FILE MERGED 2006/03/02 09:26:08 mba 1.9.86.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [5252b57d4bcfc5c2923db87f32c20337cb229a9a]

INTEGRATION: CWS sfxcleanup (1.13.128); FILE MERGED 2006/03/02 09:26:08 mba 1.13.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [9a71e2529ad9873784cf10b43b24b0daf948132f]

INTEGRATION: CWS sfxcleanup (1.15.128); FILE MERGED 2006/03/02 09:26:07 mba 1.15.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [725c8ccf85802b919e8a31d132d2d7db416a3be8]

INTEGRATION: CWS sfxcleanup (1.8.128); FILE MERGED 2006/03/02 09:26:07 mba 1.8.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [a202b386284dbb1d890bec9e34e5f4c856163d4b]

INTEGRATION: CWS sfxcleanup (1.3.128); FILE MERGED 2006/03/02 09:26:07 mba 1.3.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [fd150b380e2502cfdd099c288b200017c44ffec4]

INTEGRATION: CWS sfxcleanup (1.18.128); FILE MERGED 2006/03/02 09:26:07 mba 1.18.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [afe52520b03be27cd7fc278911a94d57dbc5c17a]

INTEGRATION: CWS sfxcleanup (1.7.86); FILE MERGED 2006/03/02 09:26:07 mba 1.7.86.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [8221e259020389bdae8cecd09c961b18703f6f5b]

INTEGRATION: CWS sfxcleanup (1.49.128); FILE MERGED 2006/03/02 10:40:13 mba 1.49.128.1: #132394#: remove superfluous code


2006-05-02  Rüdiger Timm  <rt@openoffice.org>  [3bb9d03f588b5af0402931f0a99967e2b6100586]

INTEGRATION: CWS sfxcleanup (1.2.128); FILE MERGED 2006/03/02 14:24:11 mba 1.2.128.1: #132394#: remove superfluous code


2006-04-26  Kurt Zenker  <kz@openoffice.org>  [8bf8b4a96d54eeccb1d400d4e49b69f59de53488]

INTEGRATION: CWS menucleanup (1.22.18); FILE MERGED 2006/04/13 15:21:52 kendy 1.22.18.2: RESYNC: (1.22-1.24); FILE MERGED 2006/04/11 17:32:12 kendy 1.22.18.1: #i64286# Remove menu:helpid and menu:label from menu *.xml


2006-04-20  Jens-Heiner Rechtien  <hr@openoffice.org>  [7a8b14e7ab82094617c808e96bcfc27edaa39ea0]

INTEGRATION: CWS pj53 (1.21.288); FILE MERGED 2006/04/13 15:07:08 pjanik 1.21.288.1: #i61798#: Rename create-bundle to macosx-create-bundle.


2006-04-20  Jens-Heiner Rechtien  <hr@openoffice.org>  [ab15b920c54f55f997761056656995b88bd4f3f7]

INTEGRATION: CWS numbers203 (1.90.116); FILE MERGED 2006/03/03 12:12:32 er 1.90.116.1: #i61657# new ::com::sun::star::i18n::Currency2.LegacyOnly


2006-04-20  Jens-Heiner Rechtien  <hr@openoffice.org>  [37f700802a503323ab3d361d11914e62b404e526]

INTEGRATION: CWS numbers203 (1.120.22); FILE MERGED 2006/04/05 15:52:06 er 1.120.22.3: #i61657# straighten out confusing things 2006/04/05 13:52:41 er 1.120.22.2: #i61657# change misleading variable name and correct parameter order 2006/03/03 12:12:31 er 1.120.22.1: #i61657# new ::com::sun::star::i18n::Currency2.LegacyOnly


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [bf8651c4ae8ee836318b4b0d95ca98c4fb124e9e]

INTEGRATION: CWS sixtyfour05 (1.6.150); FILE MERGED 2006/04/10 16:22:01 kendy 1.6.150.1: #i63758# Min()/Max() has to have both arguments of the same type


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [9c09ab2ec511909cca13d23ab7a8fd6515639dd7]

INTEGRATION: CWS sixtyfour05 (1.9.150); FILE MERGED 2006/04/10 16:22:01 kendy 1.9.150.1: #i63758# Min()/Max() has to have both arguments of the same type


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [c1fadd66b911b57ba273091d38651ca5af221795]

INTEGRATION: CWS sixtyfour05 (1.10.150); FILE MERGED 2006/04/10 16:22:00 kendy 1.10.150.1: #i63758# Min()/Max() has to have both arguments of the same type


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [c8f2c8d840ba1c1df94740b97c6e7bab929ce4d4]

INTEGRATION: CWS sixtyfour05 (1.22.148); FILE MERGED 2006/04/10 16:22:00 kendy 1.22.148.1: #i63758# Min()/Max() has to have both arguments of the same type


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [d6bab0c736caf51fa481b26915f11eb23d4900b4]

INTEGRATION: CWS sixtyfour05 (1.25.14); FILE MERGED 2006/03/29 13:47:19 kendy 1.25.14.1: #i62384# Fix SVBT32 <-> long conversion


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [89a64825bda84a95a154c9311a5e019b6c24e8b1]

INTEGRATION: CWS sixtyfour05 (1.2.12); FILE MERGED 2006/03/29 13:47:18 kendy 1.2.12.1: #i62384# Fix SVBT32 <-> long conversion


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [455259880b7045ed931505738cd8eca392764927]

INTEGRATION: CWS sixtyfour05 (1.15.12); FILE MERGED 2006/03/29 13:47:18 kendy 1.15.12.1: #i62384# Fix SVBT32 <-> long conversion


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [6065aef6d76f39642d04c7b053ca7c778aea6ac2]

INTEGRATION: CWS sixtyfour05 (1.8.120); FILE MERGED 2006/03/29 13:47:18 kendy 1.8.120.1: #i62384# Fix SVBT32 <-> long conversion


2006-04-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [5d006794eb9824b9019825711418d5203ec3704a]

INTEGRATION: CWS sixtyfour05 (1.84.14); FILE MERGED 2006/03/29 13:47:18 kendy 1.84.14.1: #i62384# Fix SVBT32 <-> long conversion


2006-04-10  Vladimir Glazounov  <vg@openoffice.org>  [e63fde7b2ce727f6317836e6bb8870afc513caa7]

#100000# isolang moved to MsLangId


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [a07b2f5bf0593e4ed20e911bbe6783d8d824b31e]

INTEGRATION: CWS internatiodel (1.32.84); FILE MERGED 2006/02/10 22:20:45 er 1.32.84.2: RESYNC: (1.32-1.33); FILE MERGED 2006/02/10 19:32:44 er 1.32.84.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [b17b075d720464479fff5201043016a8e310377d]

INTEGRATION: CWS internatiodel (1.7.94); FILE MERGED 2006/02/10 19:32:43 er 1.7.94.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [3f24d47a1e35eed89d44226e5c15b64a93dd63da]

INTEGRATION: CWS internatiodel (1.4.96); FILE MERGED 2006/02/10 19:32:43 er 1.4.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [ce69186edc2a70b3ba216e596bcb4b19cdd06ca8]

INTEGRATION: CWS internatiodel (1.26.96); FILE MERGED 2006/02/10 22:10:36 er 1.26.96.2: RESYNC: (1.26-1.27); FILE MERGED 2006/02/10 19:32:43 er 1.26.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [ca88c3a0a24d15b05583dec42e769ec86e479c9d]

INTEGRATION: CWS internatiodel (1.11.90); FILE MERGED 2006/02/10 19:32:43 er 1.11.90.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [c0b6f447638eb496bface45e741926606a48bf9a]

INTEGRATION: CWS internatiodel (1.31.134); FILE MERGED 2006/02/10 19:32:42 er 1.31.134.3: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang 2006/01/20 03:38:07 er 1.31.134.2: RESYNC: (1.31-1.33); FILE MERGED 2005/06/24 13:13:43 er 1.31.134.1: #i50205# get rid of class International


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [4c22eadb05d73dcd48c616b1ffd62b54e5e60dcd]

INTEGRATION: CWS internatiodel (1.9.96); FILE MERGED 2006/02/10 19:32:42 er 1.9.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [e99ef546075b2b1ba652e046d2c599c6a8b3e0c9]

INTEGRATION: CWS internatiodel (1.88.54); FILE MERGED 2006/02/10 19:32:41 er 1.88.54.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [c06c37cb26fe8da52f8a05b83ef21618e20b256b]

INTEGRATION: CWS internatiodel (1.23.96); FILE MERGED 2006/02/10 19:32:41 er 1.23.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [2c777cac06727b68dbbdc5e969a157652ade5e18]

INTEGRATION: CWS internatiodel (1.23.86); FILE MERGED 2006/02/10 19:32:41 er 1.23.86.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [97053ea0823b291b39a825465cc3285d7b3f37b4]

INTEGRATION: CWS internatiodel (1.8.94); FILE MERGED 2006/02/10 19:32:40 er 1.8.94.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [dd567cbe22f1eb053eb318c3e9eb9bb12bbc7a75]

INTEGRATION: CWS internatiodel (1.15.96); FILE MERGED 2006/02/10 21:54:12 er 1.15.96.2: RESYNC: (1.15-1.16); FILE MERGED 2006/02/10 19:32:40 er 1.15.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [113bbaa016f0316451affd8b301779cde1b03570]

INTEGRATION: CWS internatiodel (1.13.92); FILE MERGED 2006/02/10 19:32:40 er 1.13.92.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [06a48ce0d837a05104b9ef8d684bcfe1708f1c43]

INTEGRATION: CWS internatiodel (1.43.96); FILE MERGED 2006/02/10 19:32:39 er 1.43.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [c29f1f713c9ceaf4916ed19e15ed624b8222d5d5]

INTEGRATION: CWS internatiodel (1.4.96); FILE MERGED 2006/02/10 19:32:39 er 1.4.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [5b7906156122fcf200b61f503c22473ce4a16404]

INTEGRATION: CWS internatiodel (1.2.878); FILE MERGED 2006/01/19 23:32:45 er 1.2.878.2: RESYNC: (1.2-1.3); FILE MERGED 2005/06/24 13:13:43 er 1.2.878.1: #i50205# get rid of class International


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [119e1ab159b8dedcf696134b30483d2f791ea07f]

INTEGRATION: CWS internatiodel (1.44.42); FILE MERGED 2006/02/10 19:32:39 er 1.44.42.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [05048338ccd2b5eecb24e8392d5bda6961235f62]

INTEGRATION: CWS internatiodel (1.5.96); FILE MERGED 2006/02/10 19:32:38 er 1.5.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [344149ab9a77c0d9ed95861525a7140b98acce16]

INTEGRATION: CWS internatiodel (1.7.96); FILE MERGED 2006/02/10 19:32:38 er 1.7.96.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [c8cc60906d5ad610e4214bd83119bce7f18082bc]

INTEGRATION: CWS internatiodel (1.7.86); FILE MERGED 2006/02/10 19:32:38 er 1.7.86.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [ace58d300a5250e5a9eea086a218ea667ad734c4]

INTEGRATION: CWS internatiodel (1.6.86); FILE MERGED 2006/02/10 19:32:37 er 1.6.86.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [874f4430174017f0bddcc0d7db40446906636b9c]

INTEGRATION: CWS internatiodel (1.2.98); FILE MERGED 2006/02/10 19:31:45 er 1.2.98.3: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang 2006/01/20 00:20:29 er 1.2.98.2: RESYNC: (1.2-1.3); FILE MERGED 2005/06/24 13:12:17 er 1.2.98.1: #i50205# get rid of class International


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [7190aaf6c9cb5572bbfffe7f124834052140f74c]

INTEGRATION: CWS internatiodel (1.2.34); FILE MERGED 2006/02/10 19:31:45 er 1.2.34.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [d12a73de6d5aa06c273d6dee5bc665bd8523c721]

INTEGRATION: CWS internatiodel (1.6.34); FILE MERGED 2006/02/15 10:47:18 er 1.6.34.1: #i52115# libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [4bcc3b5d339bc524dd0bf7c85fd4846520fe3723]

INTEGRATION: CWS onlineupdate1 (1.21.12); FILE MERGED 2006/04/05 06:42:45 cd 1.21.12.1: #134045# Add menu item online update


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [89103d8b8b641782a8c0c2be420f9a58f71a8771]

INTEGRATION: CWS internatiodel (1.10.30); FILE MERGED 2006/02/10 19:28:37 er 1.10.30.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [dd91589c9e364c4b943b7dab8e5fe35b2a2658c4]

INTEGRATION: CWS internatiodel (1.39.26); FILE MERGED 2006/02/10 21:46:50 er 1.39.26.2: RESYNC: (1.39-1.40); FILE MERGED 2006/02/10 19:28:37 er 1.39.26.1: #i52115# move LangIDs and ISO conversion from tools to i18npool; introduce class MsLangId and libi18nisolang


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [7da78906d58a6353e72bf0c60feb53f1091d2285]

INTEGRATION: CWS fwk38 (1.22.8); FILE MERGED 2006/04/07 05:23:46 as 1.22.8.1: #i64067# new menu structure for SendDocAsEmail


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [9b15b89575c8ac3f082eeaebc3c876eead7e6a21]

INTEGRATION: CWS sixtyfour04 (1.32.50); FILE MERGED 2006/03/15 16:14:08 cmc 1.32.50.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [507d19b99f584b5371518f43ce78022ab3afa377]

INTEGRATION: CWS sixtyfour04 (1.17.142); FILE MERGED 2006/03/15 16:14:08 cmc 1.17.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [c678b9e86e516626ea9533e791e4b16a0d644ed2]

INTEGRATION: CWS sixtyfour04 (1.27.142); FILE MERGED 2006/03/15 16:14:08 cmc 1.27.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [f72d69260a2567cde5a024ba7ff89950cdadaba1]

INTEGRATION: CWS sixtyfour04 (1.79.126); FILE MERGED 2006/03/15 16:14:08 cmc 1.79.126.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [e642af2fe24356383884c88cc3ee11ac9e28d8a5]

INTEGRATION: CWS sixtyfour04 (1.27.142); FILE MERGED 2006/03/15 16:14:07 cmc 1.27.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [53e64bf2da5f658f9ca69328ccbcdeca90e3af00]

INTEGRATION: CWS sixtyfour04 (1.13.142); FILE MERGED 2006/03/15 16:14:07 cmc 1.13.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [2f2a1d0961438cc1b19ac1aa2445f03efa1bf509]

INTEGRATION: CWS sixtyfour04 (1.3.142); FILE MERGED 2006/03/15 16:14:07 cmc 1.3.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [fa7e3420f79e17794715b49d86a0724f3c9a3995]

INTEGRATION: CWS sixtyfour04 (1.44.132); FILE MERGED 2006/03/15 16:14:06 cmc 1.44.132.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [29609ceb98cd7c3d1c395056390a352d252f1d79]

INTEGRATION: CWS sixtyfour04 (1.6.142); FILE MERGED 2006/03/15 16:14:06 cmc 1.6.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [7e01d2418da22e9d36351c274c0b2cf1571b7cef]

INTEGRATION: CWS sixtyfour04 (1.13.132); FILE MERGED 2006/03/15 16:14:06 cmc 1.13.132.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [80c484724d680faaabb7d1391c09720ba9fa84ad]

INTEGRATION: CWS sixtyfour04 (1.26.132); FILE MERGED 2006/03/15 16:14:06 cmc 1.26.132.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [4f5411ad285f8bf772181206df28a846159c0f30]

INTEGRATION: CWS sixtyfour04 (1.18.112); FILE MERGED 2006/03/29 11:42:12 pjanik 1.18.112.2: RESYNC: (1.18-1.19); FILE MERGED 2006/03/15 16:14:05 cmc 1.18.112.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [de6bfc31f5f28f20d1c31fce47cab5604426e0d6]

INTEGRATION: CWS sixtyfour04 (1.40.48); FILE MERGED 2006/03/29 11:41:28 pjanik 1.40.48.2: RESYNC: (1.40-1.41); FILE MERGED 2006/03/15 16:14:05 cmc 1.40.48.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [1713cef9e3ae939311eadbc792b4d903a22f954b]

INTEGRATION: CWS sixtyfour04 (1.80.88); FILE MERGED 2006/03/15 16:14:05 cmc 1.80.88.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [4638f4c95fe998df780a79f0e86b38f08dd2cc07]

INTEGRATION: CWS sixtyfour04 (1.3.142); FILE MERGED 2006/03/15 16:14:05 cmc 1.3.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [08ab2a97733569e4706cffc574e84e0a9de6d6c5]

INTEGRATION: CWS sixtyfour04 (1.18.72); FILE MERGED 2006/03/15 11:02:08 cmc 1.18.72.1: #i62430# mismatch between set and get RowTranslation


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [2d29ce1ba70f87ebc120778c631fe443c5fba8aa]

INTEGRATION: CWS sixtyfour04 (1.5.142); FILE MERGED 2006/03/15 16:14:04 cmc 1.5.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [3411db324c45b63e242c25a6f48950c8512cc742]

INTEGRATION: CWS sixtyfour04 (1.16.86); FILE MERGED 2006/03/15 16:14:04 cmc 1.16.86.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [ab6e8f1071638c18e34f046476d13783b15a1caf]

INTEGRATION: CWS sixtyfour04 (1.23.74); FILE MERGED 2006/03/15 16:14:04 cmc 1.23.74.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [368dce4923eedec228c43f968bb655709a4cacab]

INTEGRATION: CWS sixtyfour04 (1.17.142); FILE MERGED 2006/03/15 16:14:04 cmc 1.17.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [954c54a63618d6ffa37c42389965226a975bd6a7]

INTEGRATION: CWS sixtyfour04 (1.10.132); FILE MERGED 2006/03/15 16:14:03 cmc 1.10.132.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [0fa42654b0be8b3e548b71aa677dc3a81bc1a9a5]

INTEGRATION: CWS sixtyfour04 (1.2.142); FILE MERGED 2006/03/15 16:14:03 cmc 1.2.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [4df37a2afee364fb56dbab7fda99166026c2e281]

INTEGRATION: CWS sixtyfour04 (1.8.142); FILE MERGED 2006/03/15 16:14:03 cmc 1.8.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [6b393a7557046838e8ec390e0a7cc34b65f6a220]

INTEGRATION: CWS sixtyfour04 (1.6.142); FILE MERGED 2006/03/15 16:14:03 cmc 1.6.142.1: #i63168# make sc 64bit happy


2006-04-07  Vladimir Glazounov  <vg@openoffice.org>  [d263e1f74b1f576e4ab27ed10c9af10ac1a06129]

INTEGRATION: CWS sixtyfour04 (1.8.110); FILE MERGED 2006/03/28 15:26:00 kendy 1.8.110.1: #i63489# Templatize the Max()/Min()/Abs() definitions.


2006-04-06  Vladimir Glazounov  <vg@openoffice.org>  [55a03fc0bcc19e4c7800c467de5d24c8ed6f8760]

INTEGRATION: CWS impress89 (1.25.138); FILE MERGED 2006/03/15 12:14:35 sj 1.25.138.1: #i63158# added patch: save thumbnails to MS format documents


2006-03-31  Vladimir Glazounov  <vg@openoffice.org>  [83aacdf69d6d56b4e89994d58f035fead66002da]

INTEGRATION: CWS long2int (1.10.46); FILE MERGED 2005/10/26 18:07:18 kendy 1.10.46.1: #i56715# Trivial long/ULONG -> sal_Int32/sal_uInt32 patches extracted from ooo64bit02 CWS.


2006-03-31  Vladimir Glazounov  <vg@openoffice.org>  [ba1f3c2d3f9d5de8682d0da74a54f2a3071c8ac9]

INTEGRATION: CWS long2int (1.25.46); FILE MERGED 2005/10/26 18:07:18 kendy 1.25.46.1: #i56715# Trivial long/ULONG -> sal_Int32/sal_uInt32 patches extracted from ooo64bit02 CWS.


2006-03-31  Vladimir Glazounov  <vg@openoffice.org>  [f8d84a30998441808ffd19f905b515b7e2c3a6c1]

INTEGRATION: CWS long2int (1.31.44); FILE MERGED 2005/10/26 18:07:18 kendy 1.31.44.1: #i56715# Trivial long/ULONG -> sal_Int32/sal_uInt32 patches extracted from ooo64bit02 CWS.


2006-03-31  Vladimir Glazounov  <vg@openoffice.org>  [61188897f09c421afaedb9837cf990f5b61a2f14]

INTEGRATION: CWS long2int (1.9.18); FILE MERGED 2005/10/26 18:07:12 kendy 1.9.18.1: #i56715# Trivial long/ULONG -> sal_Int32/sal_uInt32 patches extracted from ooo64bit02 CWS.


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [8a2d2f2c4c013d9cf4de39a89ecc6ebc97054487]

INTEGRATION: CWS swa11y203 (1.84.126); FILE MERGED 2006/03/15 10:50:13 nn 1.84.126.1: #i51351# allow renaming of any type of shapes


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [3b034bfce216d305eac1cda794b476cd146ca052]

INTEGRATION: CWS swa11y203 (1.17.130); FILE MERGED 2006/03/15 10:50:12 nn 1.17.130.1: #i51351# allow renaming of any type of shapes


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [a7cd60274a82bacb6ed5f639ba793fc9ed404469]

INTEGRATION: CWS swa11y203 (1.10.136); FILE MERGED 2006/03/15 10:50:12 nn 1.10.136.1: #i51351# allow renaming of any type of shapes


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [65ea8b74a0f1b27e50ea56f091830dcc0ca13538]

INTEGRATION: CWS swa11y203 (1.65.126); FILE MERGED 2006/03/15 10:50:11 nn 1.65.126.1: #i51351# allow renaming of any type of shapes


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [d87e11c91296e1ec5c9059d77a7792add8560d91]

INTEGRATION: CWS swa11y203 (1.25.126); FILE MERGED 2006/03/15 10:50:11 nn 1.25.126.1: #i51351# allow renaming of any type of shapes


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [211e326ce008f5d3574d834d714d5908a714121c]

INTEGRATION: CWS swa11y203 (1.24.132); FILE MERGED 2006/03/15 10:50:11 nn 1.24.132.1: #i51351# allow renaming of any type of shapes


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [4c07d93b2c4322445750f090efe428204dc35552]

INTEGRATION: CWS swa11y203 (1.18.122); FILE MERGED 2006/03/15 10:50:11 nn 1.18.122.1: #i51351# allow renaming of any type of shapes


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [137395ce67d714c0f624bf52b37037a2d9a6443b]

INTEGRATION: CWS calcperf02 (1.14.28); FILE MERGED 2006/02/10 16:28:00 nn 1.14.28.2: #i61908# cache queryAggregation results 2006/02/02 15:34:36 nn 1.14.28.1: #i61527# cache ScShapeObj's PropertySetInfo


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [6623ea4b9bc1f8937051b01387f52a3eaa13580f]

INTEGRATION: CWS calcperf02 (1.94.36); FILE MERGED 2006/03/13 13:48:24 nn 1.94.36.2: RESYNC: (1.94-1.95); FILE MERGED 2006/02/23 18:11:12 nn 1.94.36.1: #i62483# don't reset pMarkData in ForgetCurrentAttrs


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [9adfbcb4b1fbf6b9c5ed7b2bb3c812f7ff4f2986]

INTEGRATION: CWS calcperf02 (1.83.8); FILE MERGED 2006/03/01 13:05:29 nn 1.83.8.1: #i62677# don't create ScUnoGuard in ScXMLImport if called from ScDocShell::LoadXML


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [adee3ffdb3ebb15780293b78c95224e6b876c47e]

INTEGRATION: CWS calcperf02 (1.55.12); FILE MERGED 2006/03/13 13:46:14 nn 1.55.12.5: RESYNC: (1.56-1.57); FILE MERGED 2006/02/23 18:10:19 nn 1.55.12.4: #i62483# ApplyAttributes/ApplyStyle: skip IsSelectionEditable while loading 2006/02/06 18:02:05 nn 1.55.12.3: #i61702# when loading formatted text, don't restore the API object's EditEngine state 2006/02/01 15:27:07 nn 1.55.12.2: RESYNC: (1.55-1.56); FILE MERGED 2005/10/13 15:43:08 nn 1.55.12.1: #i55926# no unnecessary CompileNameFormula/CompileDBFormula calls during load


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [765811d85d892f80bfa17fbbe456d6adcb535547]

INTEGRATION: CWS calcperf02 (1.13.30); FILE MERGED 2005/10/13 15:43:12 nn 1.13.30.1: #i55926# no unnecessary CompileNameFormula/CompileDBFormula calls during load


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [ad2b88fc34af629fe8bc6f2db47cec11314fd465]

INTEGRATION: CWS calcperf02 (1.90.12); FILE MERGED 2006/03/01 13:05:52 nn 1.90.12.2: #i62677# don't create ScUnoGuard in ScXMLImport if called from ScDocShell::LoadXML 2006/02/22 17:22:42 nn 1.90.12.1: #i62435# initialize value cell's script type if default number format is latin-only


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [22e33eaaaaab8a7b09d04831f61d84bada71173d]

INTEGRATION: CWS calcperf02 (1.118.16); FILE MERGED 2006/03/13 13:44:52 nn 1.118.16.3: RESYNC: (1.118-1.120); FILE MERGED 2006/03/01 13:05:52 nn 1.118.16.2: #i62677# don't create ScUnoGuard in ScXMLImport if called from ScDocShell::LoadXML 2006/02/22 17:22:42 nn 1.118.16.1: #i62435# initialize value cell's script type if default number format is latin-only


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [8669ba29eeb8262801fbaa8f9fb38593d755b599]

INTEGRATION: CWS calcperf02 (1.87.12); FILE MERGED 2006/02/22 17:22:42 nn 1.87.12.4: #i62435# initialize value cell's script type if default number format is latin-only 2006/02/06 18:02:34 nn 1.87.12.3: #i61702# when loading formatted text, don't restore the API object's EditEngine state 2006/02/01 15:23:19 nn 1.87.12.2: RESYNC: (1.87-1.88); FILE MERGED 2005/10/14 18:07:56 nn 1.87.12.1: #i56027# correct determination of formatted text for ProgressBarIncrement


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [723374cd107510807448d562dd249b99a4704587]

INTEGRATION: CWS calcperf02 (1.17.30); FILE MERGED 2006/03/09 15:24:59 nn 1.17.30.1: #i62977# convert each named range's name to upper case only once


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [49bf414ab0158dec5120c74734df90a3d68a275c]

INTEGRATION: CWS calcperf02 (1.27.28); FILE MERGED 2006/02/28 14:52:59 nn 1.27.28.1: #i61702# ScEditAttrTester: get attributes with flag OnlyHard


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [757a40480f3c51ede1fb6b7a1b6d9463d54b30f9]

INTEGRATION: CWS calcperf02 (1.56.40); FILE MERGED 2006/03/13 13:43:32 nn 1.56.40.2: RESYNC: (1.56-1.57); FILE MERGED 2006/03/09 15:24:58 nn 1.56.40.1: #i62977# convert each named range's name to upper case only once


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [685faa44e9f9b1d85c38dbb4564061f15e541fd9]

INTEGRATION: CWS calcperf02 (1.10.28); FILE MERGED 2006/02/22 17:24:30 nn 1.10.28.1: #i62435# InvalidateTextWidth: reset script type only if number format was changed


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [d7ecefc081d77f86d7cdccd88afba8cfbcf28436]

INTEGRATION: CWS calcperf02 (1.15.18); FILE MERGED 2006/03/13 13:43:15 nn 1.15.18.2: RESYNC: (1.15-1.16); FILE MERGED 2006/03/09 18:44:24 nn 1.15.18.1: #i62977# cache sheet's upper case name


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [ae785d72e752319aef4909d72d776d0c553d047f]

INTEGRATION: CWS calcperf02 (1.28.40); FILE MERGED 2006/02/15 15:36:27 nn 1.28.40.1: #i62090# quicker comparison of item sets in ScPatternAttr


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [96934592ca6fc9d4b7264627aa63656272c05c4d]

INTEGRATION: CWS calcperf02 (1.68.40); FILE MERGED 2006/03/13 13:42:48 nn 1.68.40.2: RESYNC: (1.68-1.70); FILE MERGED 2006/03/09 18:44:24 nn 1.68.40.1: #i62977# cache sheet's upper case name


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [408fa099b714635a5d1221c72befd551511a3437]

INTEGRATION: CWS calcperf02 (1.29.26); FILE MERGED 2006/03/13 13:42:41 nn 1.29.26.2: RESYNC: (1.29-1.30); FILE MERGED 2006/03/01 13:04:32 nn 1.29.26.1: #i62677# don't create ScUnoGuard in ScXMLImport if called from ScDocShell::LoadXML


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [5d976224d6d751c5c894deb433380c02fc12885c]

INTEGRATION: CWS calcperf02 (1.41.40); FILE MERGED 2006/02/22 17:24:30 nn 1.41.40.1: #i62435# InvalidateTextWidth: reset script type only if number format was changed


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [51d4c48d71c93600b11e9596a8c5cb7684bb0cc7]

INTEGRATION: CWS calcperf02 (1.53.38); FILE MERGED 2006/03/13 13:42:24 nn 1.53.38.2: RESYNC: (1.53-1.54); FILE MERGED 2006/03/01 13:04:31 nn 1.53.38.1: #i62677# don't create ScUnoGuard in ScXMLImport if called from ScDocShell::LoadXML


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [db5f56f977e527ba86980ab0fa4f325951957084]

INTEGRATION: CWS calcperf02 (1.28.30); FILE MERGED 2006/03/13 13:41:59 nn 1.28.30.3: RESYNC: (1.28-1.29); FILE MERGED 2006/03/09 18:44:23 nn 1.28.30.2: #i62977# cache sheet's upper case name 2006/02/22 17:23:42 nn 1.28.30.1: #i62435# InvalidateTextWidth: reset script type only if number format was changed


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [bee18419e8c4dcc07b080476587250233698fb53]

INTEGRATION: CWS calcperf02 (1.8.30); FILE MERGED 2006/02/10 16:27:22 nn 1.8.30.2: #i61908# cache queryAggregation results 2006/02/02 15:34:14 nn 1.8.30.1: #i61527# cache ScShapeObj's PropertySetInfo


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [c630694a92d6930d274fc459c190341233a643f3]

INTEGRATION: CWS calcperf02 (1.9.28); FILE MERGED 2006/03/09 15:24:58 nn 1.9.28.1: #i62977# convert each named range's name to upper case only once


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [7eabf48532c7c55f6c128343c1eb7c5e7f64da98]

INTEGRATION: CWS calcperf02 (1.89.38); FILE MERGED 2006/03/13 13:42:07 nn 1.89.38.3: RESYNC: (1.89-1.90); FILE MERGED 2006/03/01 13:04:12 nn 1.89.38.2: #i62677# don't create ScUnoGuard in ScXMLImport if called from ScDocShell::LoadXML 2006/02/22 17:23:42 nn 1.89.38.1: #i62435# InvalidateTextWidth: reset script type only if number format was changed


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [7b964c432f8bffec992182abc3ed401a3a84dbc3]

INTEGRATION: CWS calcperf02 (1.23.14); FILE MERGED 2006/02/23 18:10:49 nn 1.23.14.1: #i62483# don't reset pMarkData in ForgetCurrentAttrs


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [f7378a65c1e85836723a8ef46b093e5fe2ee1e06]

INTEGRATION: CWS fwk36 (1.21.90); FILE MERGED 2006/03/16 09:48:12 cd 1.21.90.1: #i46895# Added property to ask for valid document signatures


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [262777cee55f033878da32c82dc9ca56d93fbb3e]

INTEGRATION: CWS fwk36 (1.53.40); FILE MERGED 2006/03/16 09:48:12 cd 1.53.40.1: #i46895# Added property to ask for valid document signatures


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [15a934bfbb1b9280b7da2b97dbeee03ca7046708]

INTEGRATION: CWS fwk36 (1.69.132); FILE MERGED 2006/03/16 09:48:10 cd 1.69.132.1: #i46895# Added property to ask for valid document signatures


2006-03-27  Oliver Bolte  <obo@openoffice.org>  [798d3e8f50bda094f0d9dab54ba9e282c0d86a09]

INTEGRATION: CWS sb48 (1.46.130); FILE MERGED 2006/03/15 11:04:47 sb 1.46.130.1: #i59269# Added terminating punctuation to error resource strings.


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [f7597b32707e35deb8a5589c2d92232b25be0a6c]

INTEGRATION: CWS dr46 (1.4.106); FILE MERGED 2006/02/16 13:06:20 er 1.4.106.1: #i4925# CSV export with option 'save as shown'


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [dd04e640d1015d4d06dd5adbaa01892d66c95afd]

INTEGRATION: CWS dr46 (1.11.106); FILE MERGED 2006/02/16 13:06:20 er 1.11.106.1: #i4925# CSV export with option 'save as shown'


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [43679268a468075f08386154020db910b04f69b1]

INTEGRATION: CWS dr46 (1.83.10); FILE MERGED 2006/02/22 17:18:05 er 1.83.10.2: #i4925# remove the 'enquote if leading zero' logic, interferes with plain zero and dates and times; would need inspection of the number format instead 2006/02/16 13:06:19 er 1.83.10.1: #i4925# CSV export with option 'save as shown'


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [4fd475fc608bab36b4c0fea9da49b0df0fa425f9]

INTEGRATION: CWS dr46 (1.4.106); FILE MERGED 2006/02/16 13:06:18 er 1.4.106.1: #i4925# CSV export with option 'save as shown'


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [4639518c39de05fb68dfef77f1c18e7b320aee51]

INTEGRATION: CWS dr46 (1.32.106); FILE MERGED 2006/02/16 13:06:17 er 1.32.106.1: #i4925# CSV export with option 'save as shown'


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [05314a0b4fe4bc75fadd7ac25ac39c21818cbab2]

INTEGRATION: CWS dr46 (1.5.106); FILE MERGED 2006/02/16 13:06:16 er 1.5.106.1: #i4925# CSV export with option 'save as shown'


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [c96920a2ace7bd3076900bf17205a95a87d0dfba]

INTEGRATION: CWS dr46 (1.11.106); FILE MERGED 2006/02/16 13:06:16 er 1.11.106.1: #i4925# CSV export with option 'save as shown'


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [8ed547be05af65e8234ce3191be0cf33a04af210]

INTEGRATION: CWS dr46 (1.23.106); FILE MERGED 2006/02/09 10:22:59 dr 1.23.106.1: dump VBA storage and userforms


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [f3d395032eedb2a2f9144add6438468f1f47a88d]

INTEGRATION: CWS dr46 (1.23.96); FILE MERGED 2006/02/16 12:57:15 dr 1.23.96.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [283710115c53a6a334f4d3120b9a262e5f0ed033]

INTEGRATION: CWS dr46 (1.1.2); FILE ADDED 2006/02/21 18:35:44 dr 1.1.2.3: more additions for dumper 2006/02/20 12:43:07 dr 1.1.2.2: handle CONTINUE records from Escher 2006/02/16 12:57:03 dr 1.1.2.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [8e5ee69a680b8b23307c4e4e200db83fdf39b9b3]

INTEGRATION: CWS dr46 (1.4.96); FILE MERGED 2006/02/20 16:23:41 dr 1.4.96.1: #i59590# ignore RTL flag in chart sheets


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [fdef1434b3d01298bac21ee5f9d8a70bb9feb434]

INTEGRATION: CWS dr46 (1.18.96); FILE MERGED 2006/02/16 12:57:14 dr 1.18.96.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [b9adb1d61847ab0ad36e1f4bfc80b5cd6dfaa8e8]

INTEGRATION: CWS dr46 (1.20.22); FILE MERGED 2006/02/17 11:12:28 dr 1.20.22.1: #i60510# ignore garbage in Escher stream


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [79f6bd9da19363625182bea673524a5562e5935d]

INTEGRATION: CWS dr46 (1.17.106); FILE MERGED 2006/02/16 12:57:14 dr 1.17.106.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [64a5387dfe9b5588d5ea6d7696c1c362127d7075]

INTEGRATION: CWS dr46 (1.35.22); FILE MERGED 2006/02/24 17:45:46 dr 1.35.22.2: #i10000# import of conditional formatting broken 2006/02/16 12:57:13 dr 1.35.22.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [f5ac6c3d92c9c4009314a891fe8a8f84840a59d7]

INTEGRATION: CWS dr46 (1.1.2); FILE ADDED 2006/02/21 18:35:44 dr 1.1.2.4: more additions for dumper 2006/02/20 19:19:56 dr 1.1.2.3: enable/disable dumper 2006/02/20 12:43:08 dr 1.1.2.2: handle CONTINUE records from Escher 2006/02/16 12:56:59 dr 1.1.2.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [39151888455f99a016c277b76ec5ebfa7b6d4f8a]

INTEGRATION: CWS dr46 (1.11.106); FILE MERGED 2006/02/16 12:57:09 dr 1.11.106.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [aaa4a6a0fcd66c3fb735707d029ee7cdad6c5358]

INTEGRATION: CWS dr46 (1.63.22); FILE MERGED 2006/02/24 17:45:46 dr 1.63.22.3: #i10000# import of conditional formatting broken 2006/02/17 11:12:27 dr 1.63.22.2: #i60510# ignore garbage in Escher stream 2006/02/16 12:57:04 dr 1.63.22.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [f13b5e8824854aba7de86ca3eecd9433f7f3cea2]

INTEGRATION: CWS dr46 (1.18.24); FILE MERGED 2006/02/09 10:22:59 dr 1.18.24.1: dump VBA storage and userforms


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [aeff3df0a2385a16b65a40d8f7f0a7fe325ed2bb]

INTEGRATION: CWS dr46 (1.3.106); FILE MERGED 2006/02/16 12:56:11 dr 1.3.106.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [b284f1b34659362b93b750650ae04eeb5b0cb3e6]

INTEGRATION: CWS dr46 (1.13.96); FILE MERGED 2006/02/16 12:56:10 dr 1.13.96.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [a8ca68ffe09535bfaec45632eb372cc2591286c8]

INTEGRATION: CWS dr46 (1.1.2); FILE ADDED 2006/02/21 18:35:55 dr 1.1.2.4: more additions for dumper 2006/02/20 19:19:44 dr 1.1.2.3: enable/disable dumper 2006/02/20 12:43:36 dr 1.1.2.2: handle CONTINUE records from Escher 2006/02/16 12:56:10 dr 1.1.2.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [edfbaba61dcbdb2fb84110da818949075495cfd4]

INTEGRATION: CWS dr46 (1.24.96); FILE MERGED 2006/02/09 10:49:10 dr 1.24.96.2: #i57790# compiler optimization problem 2006/02/09 10:22:47 dr 1.24.96.1: dump VBA storage and userforms


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [19fce377dd7075ea490b018daa731cb8cffd2e9d]

INTEGRATION: CWS dr46 (1.18.76); FILE MERGED 2006/02/21 18:29:58 dr 1.18.76.1: #i62053# initialize meOffset


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [6f0bf6c806f562e635c35212f187635fe06bd822]

INTEGRATION: CWS dr46 (1.24.96); FILE MERGED 2006/02/16 12:55:29 dr 1.24.96.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [02b80b284ffe17ceb5c3f73c57a37bc51adcaede]

INTEGRATION: CWS dr46 (1.1.2); FILE ADDED 2006/02/21 18:36:14 dr 1.1.2.3: more additions for dumper 2006/02/20 19:19:23 dr 1.1.2.2: enable/disable dumper 2006/02/16 12:55:22 dr 1.1.2.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [75b93d142585e920f11f81b205e13279411bc5cb]

INTEGRATION: CWS dr46 (1.1.2); FILE ADDED 2006/02/21 18:36:14 dr 1.1.2.4: more additions for dumper 2006/02/20 19:19:23 dr 1.1.2.3: enable/disable dumper 2006/02/20 12:42:51 dr 1.1.2.2: handle CONTINUE records from Escher 2006/02/16 12:55:21 dr 1.1.2.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [06442b8741f2eebf68153146e4a2bebd5d8b23fa]

INTEGRATION: CWS dr46 (1.4.96); FILE MERGED 2006/02/20 16:23:18 dr 1.4.96.2: #i59590# ignore RTL flag in chart sheets 2006/02/15 11:11:14 dr 1.4.96.1: #i62053# read BIFF2 WINDOW2


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [8a31ee09b30ad048a515342306d8de6a07a2d7a7]

INTEGRATION: CWS dr46 (1.14.96); FILE MERGED 2006/02/16 12:52:18 dr 1.14.96.1: #i62053# set stream error, if record header incomplete


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [ea95aac39cf3248d364556698a41de61890b1ae3]

INTEGRATION: CWS dr46 (1.17.96); FILE MERGED 2006/02/16 12:55:28 dr 1.17.96.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [666eb6b5902413159b14716745cdc64d0aaadd94]

INTEGRATION: CWS dr46 (1.39.22); FILE MERGED 2006/02/21 18:58:29 dr 1.39.22.4: RESYNC: (1.39-1.40); FILE MERGED 2006/02/20 15:47:41 dr 1.39.22.3: #i60510# handle empty escher stream 2006/02/20 12:41:57 dr 1.39.22.2: #i58780# do not check size of embedded group shapes 2006/02/17 11:11:00 dr 1.39.22.1: #i60510# ignore garbage in Escher stream


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [7c6a398d903a8113cde2ebbec02e6e402a629cf9]

INTEGRATION: CWS dr46 (1.5.96); FILE MERGED 2006/02/20 16:23:18 dr 1.5.96.1: #i59590# ignore RTL flag in chart sheets


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [52a3502a3c9bd8e5802d194a9d8a3cf42c8ae668]

INTEGRATION: CWS dr46 (1.17.106); FILE MERGED 2006/02/16 12:55:27 dr 1.17.106.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [3fd8ef9f28aed2dd22b4789f21a5dde1e1f3a371]

INTEGRATION: CWS dr46 (1.56.22); FILE MERGED 2006/02/21 18:10:16 dr 1.56.22.5: #i62053# create number formats if stream is broken 2006/02/20 16:23:18 dr 1.56.22.4: #i59590# ignore RTL flag in chart sheets 2006/02/17 11:10:59 dr 1.56.22.3: #i60510# ignore garbage in Escher stream 2006/02/15 12:21:19 dr 1.56.22.2: #i61980# always catch missing globals EOF 2006/02/15 11:11:12 dr 1.56.22.1: #i62053# read BIFF2 WINDOW2


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [7610faa4c4426d27a0ce5b97e16682534e1cb182]

INTEGRATION: CWS dr46 (1.34.106); FILE MERGED 2006/02/16 12:55:26 dr 1.34.106.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [d625065230daad4bc905f6cd699358b0100948b4]

INTEGRATION: CWS dr46 (1.77.22); FILE MERGED 2006/02/16 12:55:25 dr 1.77.22.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [53a6e82b3d52cb58975f58ea202e59554e1b7460]

INTEGRATION: CWS dr46 (1.25.106); FILE MERGED 2006/02/16 12:55:24 dr 1.25.106.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [bc0294073d88dcaed60643612fdd3e476d6fc9d0]

INTEGRATION: CWS dr46 (1.109.22); FILE MERGED 2006/02/17 11:10:57 dr 1.109.22.2: #i60510# ignore garbage in Escher stream 2006/02/16 12:55:23 dr 1.109.22.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [12249e599c4d67d765e0322500675c8fc5949a8c]

INTEGRATION: CWS dr46 (1.20.106); FILE MERGED 2006/02/21 18:36:13 dr 1.20.106.3: more additions for dumper 2006/02/20 19:26:51 dr 1.20.106.2: enable/disable dumper 2006/02/16 12:55:22 dr 1.20.106.1: new file dumper, remove unused member mrBookStrm from root data


2006-03-22  Oliver Bolte  <obo@openoffice.org>  [eb004b4010501c8ec5c690d3a099f2cdd9247e95]

INTEGRATION: CWS dr46 (1.82.22); FILE MERGED 2006/02/21 18:58:21 dr 1.82.22.4: RESYNC: (1.82-1.83); FILE MERGED 2006/02/20 19:19:23 dr 1.82.22.3: enable/disable dumper 2006/02/16 12:49:27 dr 1.82.22.2: dump Escher child anchor 2006/02/09 10:22:46 dr 1.82.22.1: dump VBA storage and userforms


2006-03-08  Rüdiger Timm  <rt@openoffice.org>  [9e4fdd822881aa831d60d374bf99750131727dc2]

INTEGRATION: CWS ause048 (1.2.40); FILE MERGED 2006/02/08 16:27:01 hjs 1.2.40.1: #i61266# DLLSUFFIX is obsolete. use DLLPOSTFIX instead


2006-03-07  Rüdiger Timm  <rt@openoffice.org>  [fbed51eac4b5f8e745fba69749d6aa6bd01332a5]

INTEGRATION: CWS os77 (1.26.128); FILE MERGED 2006/02/28 08:09:13 os 1.26.128.1: #i46976# close page preview on Escape


2006-02-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [b1abce232de45b602b20f27e830ecb84be00d4e5]

INTEGRATION: CWS calcnotify_SRC680 (1.53.10.1.2); FILE MERGED 2006/02/14 18:15:06 nn 1.53.10.1.2.1: #i62045# #i62046# register as listener for SfxApplication again


2006-02-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [4cf98d0de0dc4147bd1a261ca959241116fdfb5d]

INTEGRATION: CWS calcnotify_SRC680 (1.25.114.1.2); FILE MERGED 2006/02/14 18:15:06 nn 1.25.114.1.2.1: #i62045# #i62046# register as listener for SfxApplication again


2006-02-10  Rüdiger Timm  <rt@openoffice.org>  [bb564af4d6015690b025341b3132410b86cdf3d0]

INTEGRATION: CWS c0301 (1.53.2); FILE MERGED 2006/02/08 12:24:07 mba 1.53.2.1: #130815#: make code robust against hanging ViewShells


2006-02-10  Rüdiger Timm  <rt@openoffice.org>  [75de2b5f3ad251687fc9ced598b7bd058e7b15dd]

INTEGRATION: CWS c0301 (1.25.110); FILE MERGED 2006/02/08 12:24:06 mba 1.25.110.1: #130815#: make code robust against hanging ViewShells


2006-02-09  Rüdiger Timm  <rt@openoffice.org>  [0d8eba3d53e1e0027bbe103a7cbd38711f984749]

INTEGRATION: CWS rtfpp2 (1.93.24); FILE MERGED 2006/01/30 11:21:00 mba 1.93.24.2: RESYNC: (1.93-1.94); FILE MERGED 2006/01/05 10:43:10 nn 1.93.24.1: #129050# broadcast any change of the range address to modify listeners


2006-02-07  Rüdiger Timm  <rt@openoffice.org>  [84513b562c8d985a52656afb312b27d057e6e13c]

INTEGRATION: CWS fwk31 (1.73.40); FILE MERGED 2006/01/13 10:18:39 cd 1.73.40.2: #126086# Only context menu command with an active inplace object should leave the inplace mode! 2006/01/13 08:34:25 cd 1.73.40.1: #126086# Ignore mouse button down, if context menu is open and an inplace object is active. Otherwise we would crash as the context menu execute remains on the stack and later calls on dead objects


2006-02-06  Kurt Zenker  <kz@openoffice.org>  [763302bccfffb7ec583922ad64e20fb9a70e688c]

INTEGRATION: CWS pb11 (1.6.104); FILE MERGED 2006/02/02 10:30:56 pb 1.6.104.1: fix: #i48648# SvxRedlinTable now SvHeaderTabListBox


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [4d1b5c9eeed7a61811068b51d351c910f1ae704a]

INTEGRATION: CWS calc35 (1.118.2); FILE MERGED 2006/01/27 17:19:51 nn 1.118.2.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [1a15392c890e4587fd737b1d40a25884231b2848]

INTEGRATION: CWS calc35 (1.56.28); FILE MERGED 2006/01/27 17:19:31 nn 1.56.28.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [ecbb0b3674b703325b09b17913a4e38d04a8e926]

INTEGRATION: CWS calc35 (1.43.98); FILE MERGED 2006/01/27 17:19:52 nn 1.43.98.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [c6947aaa5072e768b68927503665782a39c59388]

INTEGRATION: CWS calc35 (1.26.98); FILE MERGED 2006/01/27 17:19:52 nn 1.26.98.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [c33ce8d203c3c2a638d2eae397fded1bbaa2a94d]

INTEGRATION: CWS calc35 (1.58.96); FILE MERGED 2006/01/27 17:19:51 nn 1.58.96.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [310169833f429e94ec0ec6bc1f2cb97ace50c7dc]

INTEGRATION: CWS calc35 (1.26.4); FILE MERGED 2006/01/27 17:19:50 nn 1.26.4.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [a445e71ecb5ad05c1b34ac7da63da9808521212e]

INTEGRATION: CWS calc35 (1.82.4); FILE MERGED 2006/01/31 17:04:25 dr 1.82.4.1: form controls


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [14b957c54bdf03ed31364492f5435b0e916b4f7e]

INTEGRATION: CWS calc35 (1.18.4); FILE MERGED 2006/01/31 12:55:59 nn 1.18.4.1: #i61216# RGetVariances: use PopMatrix to get the ScMatInv result


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [19d50e51f8dc783f7382dc1717f58f392350cf29]

INTEGRATION: CWS calc35 (1.15.4); FILE MERGED 2006/01/27 17:19:24 nn 1.15.4.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [ba07a2ab99c1389538aea8563242e6135db5e560]

INTEGRATION: CWS calc35 (1.68.28); FILE MERGED 2006/01/27 17:19:24 nn 1.68.28.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [1e37658f2f982cb0424cbf20f5d44ca732bd4dbc]

INTEGRATION: CWS calc35 (1.29.94); FILE MERGED 2006/01/27 17:19:25 nn 1.29.94.1: #i57869# background color in table styles, apply before content


2006-02-03  Kurt Zenker  <kz@openoffice.org>  [0ce16360784af577ebce52611c43e428f7daecdf]

INTEGRATION: CWS calc35 (1.28.98); FILE MERGED 2006/01/27 17:19:08 nn 1.28.98.1: #i57869# background color in table styles, apply before content


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [ba7764c585d162473eda2b838d11ed566c33f9ea]

INTEGRATION: CWS mav19 (1.22.44); FILE MERGED 2005/11/11 13:18:41 mav 1.22.44.1: #i57728# get replacement image from clipboard


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [570af4a13b9b21f127b70511b1dc91bc70e35382]

INTEGRATION: CWS mav19 (1.38.16); FILE MERGED 2005/11/17 18:46:32 mav 1.38.16.3: RESYNC: (1.38-1.39); FILE MERGED 2005/11/11 13:18:41 mav 1.38.16.2: #i57728# get replacement image from clipboard 2005/11/01 14:08:39 mav 1.38.16.1: #i57128# unload object after pasting


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [1f13cf36da1e5a26f4cc12cb92e9338b1cfe4754]

INTEGRATION: CWS mav19 (1.26.32); FILE MERGED 2005/11/01 16:25:56 mav 1.26.32.1: #i57138# use setting of object area after scaling setting


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [1e37c93cf2d18935af7bc614945f5c424267f4e3]

INTEGRATION: CWS mav19 (1.26.48); FILE MERGED 2005/11/11 13:18:40 mav 1.26.48.1: #i57728# get replacement image from clipboard


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [d6a9c6f8463e1d0cd46ed1403c07fd1d690d39fb]

INTEGRATION: CWS mav19 (1.20.42); FILE MERGED 2006/01/26 18:26:28 mav 1.20.42.1: #130736# switch floating frames, applets and plugins to running state when necessary


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [7e6041f73a6787e7437aa5cdefd7688920bad951]

INTEGRATION: CWS mav19 (1.27.44); FILE MERGED 2005/11/10 13:58:54 mav 1.27.44.1: #i50429# allow to copy nonpersistent objects


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [aed6eb781bb4fac54a2417c68b681cf9cf7b3b25]

INTEGRATION: CWS mav19 (1.38.32); FILE MERGED 2005/12/07 12:20:53 sj 1.38.32.1: #i52224# using correct visarea when importing ole objects


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [0c25968eb9ea417842453483efe52b933adeab59]

INTEGRATION: CWS swqbf49 (1.54.72); FILE MERGED 2005/12/22 09:14:02 od 1.54.72.1: #i49561# - add comment about consideration of the set offset at visible 	   area of EditView in the accessibility API.


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [fd35128dff5d334044374c97a8855f01eaeebf52]

INTEGRATION: CWS swqbf49 (1.31.82); FILE MERGED 2005/12/22 13:30:28 od 1.31.82.2: #i49561# improvement: 	 declare <ScEditObjectViewForwarder::mpEditView> as constant. 2005/12/22 09:11:10 od 1.31.82.1: #i49561# class <ScEditObjectViewForwarder> 	 - consider set offset of visible area of EditView in the methods 	   <LogicToPixel(..)> and <PixelToLogic(..)>. 	   Needed for <AccessibleTextHelper_Impl::UpdateVisibleChildren(..)> 	   to determine correct visibility of paragraphs in edit mode.


2006-02-01  Kurt Zenker  <kz@openoffice.org>  [a56673b978c1bb27c147fba2e01f547056f422bf]

INTEGRATION: CWS dr45 (1.13.100); FILE MERGED 2006/01/30 16:16:32 dr 1.13.100.2: #i10000# auto_ptr usage 2006/01/25 15:00:34 dr 1.13.100.1: #i54814# activate edit object for cell


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [e2803de86ac096fe4a9e8243aefa7b409b0a7545]

INTEGRATION: CWS dr44 (1.51.82); FILE MERGED 2006/01/23 15:11:54 dr 1.51.82.2: RESYNC: (1.51-1.52); FILE MERGED 2006/01/20 14:23:56 nn 1.51.82.1: #128314# PrepareClose: clean end of text edit


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [258c378d616d2d6078aa4775ea1d02ba13cad643]

INTEGRATION: CWS dr44 (1.43.84); FILE MERGED 2006/01/09 14:59:01 er 1.43.84.1: #i53558# AdjustPrintArea: Crop entire column of old row limit to real print area with some fuzzyness


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [d52717c827cb86e75547ab44b08289fccb69c17c]

INTEGRATION: CWS dr44 (1.21.86); FILE MERGED 2006/01/20 16:55:55 nn 1.21.86.1: #121612# SetMarkedOriginalSize: check if ObjRef is NULL


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [e43cb9947950f6bbfac62926bacd515c4031468b]

INTEGRATION: CWS dr44 (1.52.38); FILE MERGED 2006/01/20 17:42:20 nn 1.52.38.2: #i57867# import row background color as cell formats 2006/01/12 14:22:06 nn 1.52.38.1: #b6355215# no DoHardRecalc for doc options while loading XML


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [5d79fc773bec4e59a5669aff46745b76a86f62d3]

INTEGRATION: CWS dr44 (1.39.78); FILE MERGED 2006/01/18 13:09:18 nn 1.39.78.1: #i59445# removed obsolete string with wrong encoding


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [8c57a5e75cede2b97907422c38f8377f37a24136]

INTEGRATION: CWS dr44 (1.61.10); FILE MERGED 2006/01/23 13:51:01 dr 1.61.10.2: RESYNC: (1.61-1.62); FILE MERGED 2006/01/17 15:37:47 nn 1.61.10.1: #123169# don't modify pActiveViewSh in ShowRefFrame


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [263293b7eed96e187a98f5f0cf199c8b9e101369]

INTEGRATION: CWS dr44 (1.26.88); FILE MERGED 2006/01/20 17:47:23 nn 1.26.88.1: #i57867# import row background color as cell formats


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [723c54a7a2ef9108db6e6ee57caf373179b0b352]

INTEGRATION: CWS dr44 (1.58.86); FILE MERGED 2006/01/20 17:47:23 nn 1.58.86.1: #i57867# import row background color as cell formats


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [06958ede6054b07c815166a862596d6e192cc501]

INTEGRATION: CWS dr44 (1.117.76); FILE MERGED 2006/01/23 13:49:35 dr 1.117.76.2: RESYNC: (1.117-1.118); FILE MERGED 2006/01/20 17:47:24 nn 1.117.76.1: #i57867# import row background color as cell formats


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [3478a617f04fecf5c5a863c4a0f8d38e7525cafc]

INTEGRATION: CWS dr44 (1.81.78); FILE MERGED 2006/01/06 19:03:59 nn 1.81.78.1: #123981# set last column/row for detective operations, assert valid last row


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [959471fab90e866afc104431fa8456d3d2a2ca1b]

INTEGRATION: CWS dr44 (1.198.52); FILE MERGED 2006/01/20 14:25:43 nn 1.198.52.2: #i60851# SetLastColumn/SetLastRow for note caption objects 2006/01/06 19:03:48 nn 1.198.52.1: #123981# set last column/row for detective operations, assert valid last row


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [2819e2cc190e994ffcef2df78fdc14254ddf4c44]

INTEGRATION: CWS dr44 (1.44.86); FILE MERGED 2006/01/06 19:03:59 nn 1.44.86.1: #123981# set last column/row for detective operations, assert valid last row


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [f9062fa8b099a639b0b6e9da4d412e447a98cfaa]

INTEGRATION: CWS dr44 (1.11.86); FILE MERGED 2006/01/09 13:28:36 nn 1.11.86.1: #126338# check for valid format index


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [03c1e2fedb763a14ed253817a6b84910891d69c8]

INTEGRATION: CWS dr44 (1.56.12); FILE MERGED 2006/01/11 15:58:13 nn 1.56.12.1: #b6355215# cache string occurences for automatic label lookup during CompileXML


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [089ad678bd7ed4b0db62c5b67f3df02dacbf248e]

INTEGRATION: CWS dr44 (1.11.36); FILE MERGED 2006/01/23 12:48:20 nn 1.11.36.1: #i59408# no different default font size for Thai


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [5769486f7fc060e7aa9721b29576a3ae8f11f671]

INTEGRATION: CWS dr44 (1.19.88); FILE MERGED 2006/01/11 15:57:53 nn 1.19.88.1: #b6355215# cache string occurences for automatic label lookup during CompileXML


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [70062fb84c794a571d390d0d9a19b0ccc962957e]

INTEGRATION: CWS dr44 (1.68.12); FILE MERGED 2006/01/11 15:57:43 nn 1.68.12.1: #b6355215# cache string occurences for automatic label lookup during CompileXML


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [8034393ba88ec83a55fc753f49dc0b62cfacc8c2]

INTEGRATION: CWS dr44 (1.53.12); FILE MERGED 2006/01/11 15:57:46 nn 1.53.12.1: #b6355215# cache string occurences for automatic label lookup during CompileXML


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [a8574ac707e6fd89f928722750ce8e8567f320ba]

INTEGRATION: CWS dr44 (1.1.2); FILE ADDED 2006/01/11 15:57:51 nn 1.1.2.1: #b6355215# cache string occurences for automatic label lookup during CompileXML


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [8d23dd7821add645ec7331b2372cebdf18dd2601]

INTEGRATION: CWS dr44 (1.89.12); FILE MERGED 2006/01/11 15:56:56 nn 1.89.12.1: #b6355215# cache string occurences for automatic label lookup during CompileXML


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [d5e420112fd27a9f08675a45a05ab1ebb0a7088d]

INTEGRATION: CWS dr44 (1.1.2); FILE ADDED 2006/01/11 15:56:58 nn 1.1.2.1: #b6355215# cache string occurences for automatic label lookup during CompileXML


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [2db869e609f005c910065467b08adac86c014ef3]

INTEGRATION: CWS dr44 (1.1.1.1.1032); FILE MERGED 2006/01/09 19:05:31 er 1.1.1.1.1032.1: #i54546# get rid of duplicated strings not needed for translation anyway and generate a .c file containing at least the English strings


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [9a9483faf765b2b322c491b39564886f8820edcc]

INTEGRATION: CWS dr44 (1.20.86); FILE MERGED 2006/01/09 19:05:30 er 1.20.86.1: #i54546# get rid of duplicated strings not needed for translation anyway and generate a .c file containing at least the English strings


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [39d5644c7b0c85f75c5c506f5a146753c3629610]

INTEGRATION: CWS dr44 (1.1.1.1.1032); FILE MERGED 2006/01/09 19:05:30 er 1.1.1.1.1032.1: #i54546# get rid of duplicated strings not needed for translation anyway and generate a .c file containing at least the English strings


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [7204a4b965c87431b33505c2fa48748660771a50]

INTEGRATION: CWS dr44 (1.31.76); FILE MERGED 2006/01/23 13:29:20 dr 1.31.76.2: RESYNC: (1.31-1.32); FILE MERGED 2006/01/09 19:05:26 er 1.31.76.1: #i54546# get rid of duplicated strings not needed for translation anyway and generate a .c file containing at least the English strings


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [1dffadda9646c066e59098fedc8156645626ad6b]

INTEGRATION: CWS dr44 (1.1.1.1.1032); FILE MERGED 2006/01/09 19:05:25 er 1.1.1.1.1032.1: #i54546# get rid of duplicated strings not needed for translation anyway and generate a .c file containing at least the English strings


2006-01-31  Kurt Zenker  <kz@openoffice.org>  [a963cf504524ba0e6037e35570cf9b827fc1420e]

INTEGRATION: CWS dr44 (1.49.14); FILE MERGED 2006/01/23 13:18:10 dr 1.49.14.2: RESYNC: (1.49-1.50); FILE MERGED 2006/01/19 15:26:23 dr 1.49.14.1: #i57411# fixed/added: lbf, flb, uk_pt, yd2, Morgen, ar, acre, ha


2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [0c672be8097ca8cb3357f25b3b3bff3f5410be5b]

INTEGRATION: CWS qpro03 (1.29.88); FILE MERGED 2005/09/21 03:24:52 er 1.29.88.3: RESYNC: (1.30-1.31); FILE MERGED 2005/05/13 16:34:28 mmeeks 1.29.88.2: RESYNC: (1.29-1.30); FILE MERGED 2005/04/14 08:09:19 mnicel 1.29.88.1: Issue Number: 41688 QPro Filter implementation


2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [3611aa38829222e8bd0b902604fb06a24f867d19]

INTEGRATION: CWS qpro03 (1.14.8); FILE MERGED 2005/09/21 03:06:04 er 1.14.8.3: RESYNC: (1.14-1.15); FILE MERGED 2005/08/31 11:53:56 er 1.14.8.2: #i41688# filter is specific to Quattro Pro 6.0 2005/04/14 08:09:18 mnicel 1.14.8.1: Issue Number: 41688 QPro Filter implementation


2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [8c9cede23bb976e0aa9e4be57c0fa8e5f2785455]

INTEGRATION: CWS qpro03 (1.80.8); FILE MERGED 2005/10/17 18:56:39 er 1.80.8.5: #i41688# set row heights for beautification 2005/09/21 01:34:34 er 1.80.8.4: RESYNC: (1.80-1.81); FILE MERGED 2005/09/01 14:43:24 er 1.80.8.3: #i41688# filter is specific to Quattro Pro 6.0 2005/09/01 14:40:46 er 1.80.8.2: #i41688# filter is specific to Quattro Pro 6.0 2005/04/14 08:09:17 mnicel 1.80.8.1: Issue Number: 41688 QPro Filter implementation


2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [20be2ddbea26557d6ff0582b380a94c0261781f1]

INTEGRATION: CWS qpro03 (1.1.2); FILE ADDED 2005/10/17 18:25:26 er 1.1.2.5: #i41688# identifier mismatch in initialization; remove superfluous array of String init 2005/10/14 15:11:09 mmeeks 1.1.2.4: Issue i#41688#

Fix some silly bugs, init the QProStyle members, import font heights.
2005/09/21 13:23:48 er 1.1.2.3: change license header: remove SISSL
2005/06/13 11:13:13 mmeeks 1.1.2.2: Issue: #i41688
Submitted by: sshilpa
Approveed by: mmeeks

Fix a number of formula problems, remove some more cruft.
2005/05/13 16:47:50 mmeeks 1.1.2.1: Issue number: i#41688#
Submitted by: shilpa
Reviewed by:  mmeeks

More qpro cleanup.

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [1e082ea95653f7f801c471632955d81cb35ae8a6]

INTEGRATION: CWS qpro03 (1.1.4); FILE ADDED 2006/01/24 17:22:01 er 1.1.4.12: #i41688# set 3D flag on references to other sheets so it's visible in the formula and gets saved to ODF 2005/09/22 11:56:49 er 1.1.4.11: #i41688# on behalf of Shilpa: received patch removing the last 8 assertions when loading issue's NUMFUN.WB2 sample document 2005/09/21 13:23:46 er 1.1.4.10: change license header: remove SISSL 2005/09/20 19:56:07 er 1.1.4.9: #i41688# on behalf of Shilpa: received patch removing assertions when loading issue's formulat.wb2 sample document 2005/06/13 11:13:13 mmeeks 1.1.4.8: Issue: #i41688 Submitted by: sshilpa Approveed by: mmeeks

Fix a number of formula problems, remove some more cruft.
2005/05/27 14:10:19 mmeeks 1.1.4.7: Issue number: #i41688#
Submitted by: sshilpa
Reviewed by:  mmeeks
Added numbering to the functions table, fixed silly '=' vs '==' comparison
2005/05/26 09:45:03 er 1.1.4.6: #i41688# don't duplicate parentheses in case of ocNoName
2005/05/25 11:36:11 er 1.1.4.5: #i41688# some corrections from Shilpa
2005/05/24 10:44:02 er 1.1.4.4: #i41688# received from Shilpa: better mapping of unsupported/unknown function codes; cp1252 encoding
2005/05/20 12:38:46 mmeeks 1.1.4.3: Issue number: i#41688#
Submitted by: sshilpa
Reviewed by:  mmeeks

Misc. fixes for erAck.
2005/05/13 16:47:49 mmeeks 1.1.4.2: Issue number: i#41688#
Submitted by: shilpa
Reviewed by:  mmeeks

More qpro cleanup.
2005/04/14 08:09:16 mnicel 1.1.4.1: Issue Number: 41688
QPro Filter implementation

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [ecccbd8513081d26f32c3d557a3f08be311492ac]

INTEGRATION: CWS qpro03 (1.1.4); FILE ADDED 2006/01/24 17:22:00 er 1.1.4.9: #i41688# set 3D flag on references to other sheets so it's visible in the formula and gets saved to ODF 2005/10/18 11:20:36 er 1.1.4.8: #i41688# get rid of 'Sheet1' and rename it instead of inserting the very first sheet 2005/10/17 18:23:24 er 1.1.4.7: #i41688# delete new'ed; style: pointers start with 'p' 2005/10/14 15:11:09 mmeeks 1.1.4.6: Issue i#41688#

Fix some silly bugs, init the QProStyle members, import font heights.
2005/09/21 13:23:43 er 1.1.4.5: change license header: remove SISSL
2005/06/13 11:13:13 mmeeks 1.1.4.4: Issue: #i41688
Submitted by: sshilpa
Approveed by: mmeeks

Fix a number of formula problems, remove some more cruft.
2005/05/26 09:22:21 er 1.1.4.3: #i41688# operator delete mismatch
2005/05/13 16:47:49 mmeeks 1.1.4.2: Issue number: i#41688#
Submitted by: shilpa
Reviewed by:  mmeeks

More qpro cleanup.
2005/04/14 08:09:16 mnicel 1.1.4.1: Issue Number: 41688
QPro Filter implementation

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [3ae771ab6daa2bc660aa00f0905de61db1d5ef98]

INTEGRATION: CWS qpro03 (1.1.4); FILE ADDED 2005/09/21 13:23:43 er 1.1.4.5: change license header: remove SISSL 2005/09/01 12:19:16 er 1.1.4.4: broken header 2005/05/18 07:56:37 mmeeks 1.1.4.3: fix broken entry 2005/05/13 16:47:49 mmeeks 1.1.4.2: Issue number: i#41688# Submitted by: shilpa Reviewed by:  mmeeks

More qpro cleanup.
2005/04/14 08:09:16 mnicel 1.1.4.1: Issue Number: 41688
QPro Filter implementation

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [f2fce9a5a690f89c51570f34ed16b449ed60c3dd]

INTEGRATION: CWS qpro03 (1.1.2); FILE ADDED 2005/09/21 13:23:42 er 1.1.2.4: change license header: remove SISSL 2005/05/24 10:44:02 er 1.1.2.3: #i41688# received from Shilpa: better mapping of unsupported/unknown function codes; cp1252 encoding 2005/05/20 12:38:45 mmeeks 1.1.2.2: Issue number: i#41688# Submitted by: sshilpa Reviewed by:  mmeeks

Misc. fixes for erAck.
2005/05/13 16:47:48 mmeeks 1.1.2.1: Issue number: i#41688#
Submitted by: shilpa
Reviewed by:  mmeeks

More qpro cleanup.

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [8a9b41d11c3a4496dc539199309020f73c938cb8]

INTEGRATION: CWS qpro03 (1.1.2); FILE ADDED 2005/10/14 15:11:09 mmeeks 1.1.2.4: Issue i#41688#

Fix some silly bugs, init the QProStyle members, import font heights.
2005/09/21 13:23:41 er 1.1.2.3: change license header: remove SISSL
2005/06/13 11:13:12 mmeeks 1.1.2.2: Issue: #i41688
Submitted by: sshilpa
Approveed by: mmeeks

Fix a number of formula problems, remove some more cruft.
2005/05/13 16:47:48 mmeeks 1.1.2.1: Issue number: i#41688#
Submitted by: shilpa
Reviewed by:  mmeeks

More qpro cleanup.

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [8e8daeb8a20a1caa27d0e67cf657559bcc393460]

INTEGRATION: CWS qpro03 (1.1.4); FILE ADDED 2006/01/24 17:22:00 er 1.1.4.5: #i41688# set 3D flag on references to other sheets so it's visible in the formula and gets saved to ODF 2005/09/21 13:23:41 er 1.1.4.4: change license header: remove SISSL 2005/05/24 10:44:01 er 1.1.4.3: #i41688# received from Shilpa: better mapping of unsupported/unknown function codes; cp1252 encoding 2005/05/13 16:47:47 mmeeks 1.1.4.2: Issue number: i#41688# Submitted by: shilpa Reviewed by:  mmeeks

More qpro cleanup.
2005/04/14 08:09:15 mnicel 1.1.4.1: Issue Number: 41688
QPro Filter implementation

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [c1e15d9405e0557b780df2f87b4aec1ca3189d73]

INTEGRATION: CWS qpro03 (1.1.4); FILE ADDED 2005/10/14 15:11:08 mmeeks 1.1.4.5: Issue i#41688#

Fix some silly bugs, init the QProStyle members, import font heights.
2005/09/21 13:23:41 er 1.1.4.4: change license header: remove SISSL
2005/06/13 11:13:12 mmeeks 1.1.4.3: Issue: #i41688
Submitted by: sshilpa
Approveed by: mmeeks

Fix a number of formula problems, remove some more cruft.
2005/05/13 16:47:47 mmeeks 1.1.4.2: Issue number: i#41688#
Submitted by: shilpa
Reviewed by:  mmeeks

More qpro cleanup.
2005/04/14 08:09:15 mnicel 1.1.4.1: Issue Number: 41688
QPro Filter implementation

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [a0c44dedfc9d3264bd16dc9f6f54ea086f277a55]

INTEGRATION: CWS qpro03 (1.1.2); FILE ADDED 2005/09/21 13:23:39 er 1.1.2.2: change license header: remove SISSL 2005/05/13 16:47:47 mmeeks 1.1.2.1: Issue number: i#41688# Submitted by: shilpa Reviewed by:  mmeeks

More qpro cleanup.

2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [03cd0efef0e66d2a055ec220ed67a62b77d2f209]

INTEGRATION: CWS qpro03 (1.9.438); FILE MERGED 2005/09/20 23:47:53 er 1.9.438.2: RESYNC: (1.9-1.10); FILE MERGED 2005/04/14 08:09:14 mnicel 1.9.438.1: Issue Number: 41688 QPro Filter implementation


2006-01-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [10f44ead0b8aafe4140cfaa7fe67fca969ac78ad]

INTEGRATION: CWS qpro03 (1.5.98); FILE MERGED 2005/09/20 23:30:33 er 1.5.98.2: RESYNC: (1.5-1.6); FILE MERGED 2005/04/14 08:09:13 mnicel 1.5.98.1: Issue Number: 41688 QPro Filter implementation


2006-01-19  Oliver Bolte  <obo@openoffice.org>  [ec098a17ac532a7df1027ee96ec3ccc877e73115]

INTEGRATION: CWS gcc41 (1.66.76); FILE MERGED 2005/12/07 13:50:06 pmladek 1.66.76.1: #i58967# Removed extra qualification to fix build with gcc-4.1


2006-01-19  Oliver Bolte  <obo@openoffice.org>  [6a447f80f32fc813a1c3e6608205742e73194d2a]

INTEGRATION: CWS gcc41 (1.6.28); FILE MERGED 2005/12/07 13:17:02 pmladek 1.6.28.1: #i58967# Removed extra qualification to fix build with gcc-4.1


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [e6dae23e2a73fc78e947233bbd26893f10781af6]

INTEGRATION: CWS dr43 (1.51.36); FILE MERGED 2005/11/23 13:11:02 nn 1.51.36.1: #125841# call EnterHandler in PrepareClose


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [8b0873e8abbf5f17936087ef8fa71975a343e798]

INTEGRATION: CWS dr43 (1.48.2); FILE MERGED 2005/12/08 19:03:07 nn 1.48.2.1: #126115# handle zero text width in shrink to fit


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [430893f11326fd38e98bde3e5a16b11e9da103cd]

INTEGRATION: CWS dr43 (1.26.2); FILE MERGED 2005/12/01 11:29:21 nn 1.26.2.1: #122057# clear the clipboard listener link in dtor


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [037372cc0251bed21dff077c7fd17b27f6aa3321]

INTEGRATION: CWS dr43 (1.34.24); FILE MERGED 2005/11/23 17:15:21 nn 1.34.24.1: #i57619# diagonal borders and shrink to fit properties for the cell style


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [55d500c0705e368038c12ee5e84c173cf6dc88b7]

INTEGRATION: CWS dr43 (1.15.40); FILE MERGED 2005/12/06 19:26:30 nn 1.15.40.1: #i57375# access fields by name and repeat count instead of index


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [668737e46893368aae5e0e632ac30dd3e046440a]

INTEGRATION: CWS dr43 (1.12.24); FILE MERGED 2005/12/21 11:53:44 nn 1.12.24.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [9addcaba46d99f5dd420b0b1538cbfdb6bb80c87]

INTEGRATION: CWS dr43 (1.3.42); FILE MERGED 2005/12/21 11:53:45 nn 1.3.42.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [a09de44c3e8dce2927a29104048e7fecb33c02fd]

INTEGRATION: CWS dr43 (1.6.40); FILE MERGED 2005/12/21 11:53:42 nn 1.6.40.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [5779c7321e55e35814eacb600cad181a51283dbd]

INTEGRATION: CWS dr43 (1.9.40); FILE MERGED 2005/12/21 11:53:40 nn 1.9.40.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [f760ebe7cd182d8bcda0ef6e25ea2c984022f437]

INTEGRATION: CWS dr43 (1.15.40); FILE MERGED 2005/12/21 11:53:39 nn 1.15.40.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [78d456ec10e24cd816e3fc0ddfada74c095b37d6]

INTEGRATION: CWS dr43 (1.7.40); FILE MERGED 2005/12/21 11:53:37 nn 1.7.40.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [33953c12c5a78d2f4e09e73c3d9dcad147f99128]

INTEGRATION: CWS dr43 (1.20.20); FILE MERGED 2005/12/21 11:53:35 nn 1.20.20.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [b5baaea75c9a881897b1894b9c090907ff859d38]

INTEGRATION: CWS dr43 (1.6.40); FILE MERGED 2005/12/21 11:53:33 nn 1.6.40.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [f1f0d9e30c9bfd9702a678484d14a05e0d8faba6]

INTEGRATION: CWS dr43 (1.84.24); FILE MERGED 2005/12/13 15:18:08 er 1.84.24.3: #i54231# reverse description of RANK 3rd parameter 2005/11/17 13:04:08 dr 1.84.24.2: RESYNC: (1.84-1.85); FILE MERGED 2005/10/27 12:29:20 dr 1.84.24.1: #i53046# description of EVEN and ODD adjusted


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [b7a52e33ad07c659ed072b2ba1df6f5fac32ef2e]

INTEGRATION: CWS dr43 (1.2.42); FILE MERGED 2005/12/21 11:52:58 nn 1.2.42.1: #125875# ensure right draw page count after undo if there was no drawing layer before


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [9c59de3dcc2649eefbf7955a25bbfc4040d25c0c]

INTEGRATION: CWS dr43 (1.13.42); FILE MERGED 2005/11/23 13:09:27 nn 1.13.42.1: #125841# StopInputWinEngine public


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [64598ce2033abcc4eeb7c3bd6d220d20667e1c0d]

INTEGRATION: CWS dr43 (1.16.42); FILE MERGED 2005/11/15 15:56:37 dr 1.16.42.1: #111635# text paragraphs in preview are transient


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [205d0408b9b7d1ec81feedcb487bdb0f8a0bd5bf]

INTEGRATION: CWS dr43 (1.25.2); FILE MERGED 2005/12/01 11:29:43 nn 1.25.2.1: #122057# clear the clipboard listener link in dtor


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [2870ec23731f3715faf36f2227711fc64d8411d4]

INTEGRATION: CWS dr43 (1.21.22); FILE MERGED 2005/12/05 09:10:43 nn 1.21.22.1: #128113# handle focus on empty field


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [9a7d510ee977f71694b86f72621a776d31b9bd20]

INTEGRATION: CWS dr43 (1.44.2); FILE MERGED 2005/11/23 13:10:13 nn 1.44.2.1: #125841# call StopInputWinEngine after SetInputWindow( NULL )


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [37a74576352b3e2325d52c474c852cde365ea47f]

INTEGRATION: CWS dr43 (1.60.38); FILE MERGED 2006/01/04 16:41:34 dr 1.60.38.2: RESYNC: (1.60-1.61); FILE MERGED 2005/12/09 14:24:56 nn 1.60.38.1: #123344# reset pLastPattern in EnterHandler


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [94396d7065c3b7d77975979f001bc3267895e160]

INTEGRATION: CWS dr43 (1.16.40); FILE MERGED 2005/11/15 15:56:04 dr 1.16.40.1: #111635# text paragraphs in preview are transient


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [adae3a6b0950cf5dc4c39bbc8aab8f268c407fd7]

INTEGRATION: CWS dr43 (1.24.42); FILE MERGED 2005/12/02 14:53:59 nn 1.24.42.1: #i56873# check if AutoStyles exists


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [0ccc128eba9f372e33477368314fea9555b2636e]

INTEGRATION: CWS dr43 (1.117.22); FILE MERGED 2005/12/02 14:54:00 nn 1.117.22.1: #i56873# check if AutoStyles exists


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [48ebad07a42d2a89b42f755e5a9cff99725719ce]

INTEGRATION: CWS dr43 (1.22.10); FILE MERGED 2005/11/23 14:37:37 nn 1.22.10.1: #b6343997# GetCondition: always initialize type and operator


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [b4fbd0be8299045cbc8f48b302ce24a91d3be321]

INTEGRATION: CWS dr43 (1.18.42); FILE MERGED 2005/12/02 14:53:58 nn 1.18.42.1: #i56873# check if AutoStyles exists


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [415115ec198b329238d3a1373548c4b04aa75aef]

INTEGRATION: CWS dr43 (1.25.42); FILE MERGED 2005/12/02 14:53:59 nn 1.25.42.1: #i56873# check if AutoStyles exists


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [e40cbaf87fa8370c2a30a35f67336ebd61ad0d7f]

INTEGRATION: CWS dr43 (1.17.24); FILE MERGED 2005/10/25 10:25:23 dr 1.17.24.1: #i56383# crash when importing checkboxes


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [632bd66668706072f9c4c9d785d11d70baf85f9e]

INTEGRATION: CWS dr43 (1.18.42); FILE MERGED 2005/11/29 20:10:43 dr 1.18.42.1: #124240# handle incomplete book streams and invalid cell addresses


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [6681e547522e37f6068f0647742d0866de32be48]

INTEGRATION: CWS dr43 (1.19.24); FILE MERGED 2005/10/25 10:25:23 dr 1.19.24.1: #i56383# crash when importing checkboxes


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [cc70b12044dae12f5c720499f7010d4f9ce1de40]

INTEGRATION: CWS dr43 (1.34.42); FILE MERGED 2005/11/29 20:10:42 dr 1.34.42.1: #124240# handle incomplete book streams and invalid cell addresses


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [4363868114590adfcd2823a8ea73d6906672dc4c]

INTEGRATION: CWS dr43 (1.62.24); FILE MERGED 2005/11/17 09:57:17 dr 1.62.24.1: #i55192# first set row height and flags, then insert drawing objects


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [89a1b16b44c9394097ceb6b8ffb96fc595f2df43]

INTEGRATION: CWS dr43 (1.20.42); FILE MERGED 2005/11/29 20:10:42 dr 1.20.42.1: #124240# handle incomplete book streams and invalid cell addresses


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [2a294da5c7de60738dfbfa170155bfe1be1f5b8c]

INTEGRATION: CWS dr43 (1.17.24); FILE MERGED 2005/10/25 10:22:42 dr 1.17.24.1: additions for form controls


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [f28f20c9612a1466621267cd36bab0ec0c0ba5c2]

INTEGRATION: CWS dr43 (1.16.24); FILE MERGED 2005/10/25 10:25:00 dr 1.16.24.1: #i56383# crash when importing checkboxes


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [d579d74bcc44576a758b1768679c592f867ed774]

INTEGRATION: CWS dr43 (1.24.22); FILE MERGED 2006/01/04 16:41:15 dr 1.24.22.2: RESYNC: (1.24-1.25); FILE MERGED 2005/11/29 20:10:19 dr 1.24.22.1: #124240# handle incomplete book streams and invalid cell addresses


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [2f10ae84abe5f39cf968725429c4518d80d3e6d8]

INTEGRATION: CWS dr43 (1.21.24); FILE MERGED 2006/01/05 12:24:09 dr 1.21.24.3: #i10000# missing void 2005/12/08 12:49:14 dr 1.21.24.2: #i59080# encode all characters in an URL... 2005/12/05 14:16:03 dr 1.21.24.1: #126855# encode special characters in URLs


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [ccb16e2f0c6bf068d1a45a9bd9457a02946999b2]

INTEGRATION: CWS dr43 (1.38.24); FILE MERGED 2005/10/25 10:25:00 dr 1.38.24.1: #i56383# crash when importing checkboxes


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [caa45f5eca3001542d8c7fb8daf3c2043cdedb97]

INTEGRATION: CWS dr43 (1.9.22); FILE MERGED 2005/12/02 11:15:35 dr 1.9.22.1: #128011# many macro calls in formula


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [00f5d4080e86dc3f73fdb25eec6aa91cf5a1d1a1]

INTEGRATION: CWS dr43 (1.55.24); FILE MERGED 2005/11/29 20:10:18 dr 1.55.24.2: #124240# handle incomplete book streams and invalid cell addresses 2005/10/28 09:34:24 dr 1.55.24.1: #i56376# simulate missing EOF for workbook globals


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [39c81fc6a5ce7696b493a6f6033b5d0f00066deb]

INTEGRATION: CWS dr43 (1.76.24); FILE MERGED 2005/11/29 20:10:18 dr 1.76.24.2: #124240# handle incomplete book streams and invalid cell addresses 2005/11/17 09:57:03 dr 1.76.24.1: #i55192# first set row height and flags, then insert drawing objects


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [55af4350dbee9f2351f2e56f79af51123935e46f]

INTEGRATION: CWS dr43 (1.38.40); FILE MERGED 2005/11/17 09:57:03 dr 1.38.40.1: #i55192# first set row height and flags, then insert drawing objects


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [8b32f5c495977d5666d3c56a9fed42023daf4e43]

INTEGRATION: CWS dr43 (1.108.24); FILE MERGED 2005/11/29 20:10:18 dr 1.108.24.2: #124240# handle incomplete book streams and invalid cell addresses 2005/11/17 09:57:02 dr 1.108.24.1: #i55192# first set row height and flags, then insert drawing objects


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [d39a24da02ad56cd6bb5e73b8fbddbd16b1935ba]

INTEGRATION: CWS dr43 (1.36.22); FILE MERGED 2005/11/29 20:10:17 dr 1.36.22.3: #124240# handle incomplete book streams and invalid cell addresses 2005/11/17 12:49:33 dr 1.36.22.2: RESYNC: (1.36-1.37); FILE MERGED 2005/11/11 14:21:04 dr 1.36.22.1: #i44280# map LOG with 1 param to LOG10


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [f818cb45264be26d9aff4e9d6144b0aefa4c07e8]

INTEGRATION: CWS dr43 (1.80.22); FILE MERGED 2006/01/04 10:37:31 dr 1.80.22.3: loop in dumper 2005/11/17 12:49:08 dr 1.80.22.2: RESYNC: (1.80-1.81); FILE MERGED 2005/10/25 10:22:18 dr 1.80.22.1: additions for form controls


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [eb6f341e2018335cc15558ffae81746870deaac8]

INTEGRATION: CWS dr43 (1.17.24); FILE MERGED 2005/11/23 13:09:11 er 1.17.24.1: #i58177# ScMatDet: a singular matrix isn't an error..


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [1ec651753e223394696180fadb47b8315bb7cee6]

INTEGRATION: CWS dr43 (1.25.20); FILE MERGED 2006/01/04 16:39:34 dr 1.25.20.4: RESYNC: (1.25-1.26); FILE MERGED 2006/01/04 15:02:48 dr 1.25.20.3: #i59335# handle rounding errors and values between 0 and 1 correctly 2005/12/14 13:18:07 dr 1.25.20.2: #i59335# correct placement of the 'million' particle 2005/11/23 15:21:03 er 1.25.20.1: #i54529# ScMod: use approxSub()


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [97755a02aa474acafda574c102bd17177cecf54d]

INTEGRATION: CWS dr43 (1.16.38); FILE MERGED 2006/01/04 16:38:30 dr 1.16.38.2: RESYNC: (1.16-1.17); FILE MERGED 2006/01/02 17:50:33 nn 1.16.38.1: #122816# right type in ScChartPositionMap dtor


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [fa0ae26d1585f3830b36c783413388d65ca96e0d]

INTEGRATION: CWS dr43 (1.15.42); FILE MERGED 2006/01/03 17:27:37 nn 1.15.42.1: #i59984# Initialize: use XSingleComponentFactory


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [84ba652af663787f680d8e8ff036e79cbf5d8c8d]

INTEGRATION: CWS dr43 (1.14.24); FILE MERGED 2005/11/23 16:42:37 nn 1.14.24.1: #121767# FillAnalyse: null pointer check before calling GetCellType


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [e89ca5c05f3ae45ebf65b32831fbd3b64c28ab8d]

INTEGRATION: CWS dr43 (1.21.42); FILE MERGED 2006/01/04 16:38:00 dr 1.21.42.3: RESYNC: (1.21-1.22); FILE MERGED 2005/12/13 19:39:56 er 1.21.42.2: #i58354# CreateStarQuery: check for 4 columns width minimum 2005/12/09 18:01:41 nn 1.21.42.1: #124205# restore fix for i19390: treat notes like empty cells


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [2c5213d51f521fe904697e48b5f57c4a0c85ec86]

INTEGRATION: CWS dr43 (1.14.24); FILE MERGED 2005/12/21 11:55:02 nn 1.14.24.1: #125875# if no page was added, don't try to set its name/size


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [d20f02cb06a8080967a5dc10148a90679910bec9]

INTEGRATION: CWS dr43 (1.41.4); FILE MERGED 2005/12/21 11:55:02 nn 1.41.4.1: #125875# if no page was added, don't try to set its name/size


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [eaabedb34b941a7e3eae3fd0b985c5399a94fd2a]

INTEGRATION: CWS dr43 (1.17.24); FILE MERGED 2005/12/06 19:26:53 nn 1.17.24.1: #i57375# access fields by name and repeat count instead of index


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [bf15a0144876fb7e800e78524cf8d8960420e118]

INTEGRATION: CWS dr43 (1.15.42); FILE MERGED 2006/01/04 16:35:38 dr 1.15.42.2: RESYNC: (1.15-1.16); FILE MERGED 2005/11/22 18:37:57 er 1.15.42.1: #127775# BinarySearch: crash if cell in very first row==0 of LOOKUP range deleted (=> note cell as broadcaster present) and no match found => nMid underflow wrapped to max


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [f546a86e2222289ae5a7555f7fcfeb204ca25a33]

INTEGRATION: CWS dr43 (1.18.24); FILE MERGED 2005/12/08 13:31:59 nn 1.18.24.1: #121990# MoveTo: iterate backwards over aEntries


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [b2051a0d41cc83c97825b5425c24c53d230bd5be]

INTEGRATION: CWS dr43 (1.16.4); FILE MERGED 2005/12/21 11:55:14 nn 1.16.4.1: #125875# if no page was added, don't try to set its name/size


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [e4abda0b209521b55d93f3f46aecd0a2661fadc1]

INTEGRATION: CWS dr43 (1.8.42); FILE MERGED 2005/12/06 19:26:15 nn 1.8.42.1: #i57375# access fields by name and repeat count instead of index


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [4d876aa4c99e635f5ee1e6bd7748d54a8f195ba1]

INTEGRATION: CWS dr43 (1.30.10); FILE MERGED 2005/11/15 19:31:30 nn 1.30.10.1: #i55735# ERF/ERFC improved again (Kohei Yoshida)


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [8e0c772e8a107cdb52b60969b46fd06945325706]

INTEGRATION: CWS dr43 (1.49.6); FILE MERGED 2005/11/15 19:31:29 nn 1.49.6.1: #i55735# ERF/ERFC improved again (Kohei Yoshida)


2006-01-13  Rüdiger Timm  <rt@openoffice.org>  [940ede619467878b5640267496cba04986e60648]

INTEGRATION: CWS dr43 (1.39.18); FILE MERGED 2005/11/15 19:31:27 nn 1.39.18.1: #i55735# ERF/ERFC improved again (Kohei Yoshida)


2006-01-03  Kurt Zenker  <kz@openoffice.org>  [89f10d1c9bf23ea7fdf6cd349f3051bf791dd2d9]

INTEGRATION: CWS ivo13 (1.19.334); FILE MERGED 2005/12/10 15:28:28 ihi 1.19.334.2: RESYNC: (1.19-1.20); FILE MERGED 2005/09/21 17:07:16 ihi 1.19.334.1: #i54927# tranlations removed


2006-01-03  Kurt Zenker  <kz@openoffice.org>  [068875b77da4601d86f82d2ffbb97a100a83b082]

INTEGRATION: CWS ivo13 (1.29.334); FILE MERGED 2005/12/19 18:52:49 hjs 1.29.334.2: RESYNC: (1.29-1.31); FILE MERGED 2005/09/21 17:08:41 ihi 1.29.334.1: #i54927# tranlations removed


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [8b6a1c61bee3a571897b6ffb131b4bd603bee691]

INTEGRATION: CWS numberformat (1.29.26); FILE MERGED 2005/10/26 17:52:45 kendy 1.29.26.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [f3382cc301108bd9c46b4de7f97a096c082afe30]

INTEGRATION: CWS numberformat (1.16.44); FILE MERGED 2005/10/26 17:52:45 kendy 1.16.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [aa139d8dc2c50ae11139e1288d5313dc34f2a5ad]

INTEGRATION: CWS numberformat (1.8.42); FILE MERGED 2005/10/26 17:52:45 kendy 1.8.42.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [f3bb7cc2c67a6d14b76d7c8932616aeb245c9132]

INTEGRATION: CWS numberformat (1.39.42); FILE MERGED 2005/10/26 17:52:44 kendy 1.39.42.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [e0aec3b71dcc0b5302a2ba5adf92d8dfc200e373]

INTEGRATION: CWS numberformat (1.93.28); FILE MERGED 2005/10/26 17:52:43 kendy 1.93.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [cc896c9a1d51ef00d5024215e7f7cf91ece0d203]

INTEGRATION: CWS numberformat (1.8.44); FILE MERGED 2005/10/26 17:52:42 kendy 1.8.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [4ef155ed924df57036ed210a8a81d504fb40c081]

INTEGRATION: CWS numberformat (1.5.44); FILE MERGED 2005/10/26 17:52:42 kendy 1.5.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [35f506e774a71932ef4d6b336fb981a04c4b1a6d]

INTEGRATION: CWS numberformat (1.35.42); FILE MERGED 2005/10/26 17:52:41 kendy 1.35.42.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [c1168892536d5bc149f54821e8b6e03f9cfdd6c8]

INTEGRATION: CWS numberformat (1.32.40); FILE MERGED 2005/10/26 17:52:41 kendy 1.32.40.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [c6fd9b28ad7252942857f9810910ceb18dadef40]

INTEGRATION: CWS numberformat (1.20.28); FILE MERGED 2005/10/26 17:52:40 kendy 1.20.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [2db2731dc2a1614b9736553e80da12d73eb008e0]

INTEGRATION: CWS numberformat (1.81.38); FILE MERGED 2005/10/26 17:52:40 kendy 1.81.38.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [40b3ab15a3cef0841cfe9a797496118fb33e905c]

INTEGRATION: CWS numberformat (1.55.28); FILE MERGED 2005/10/26 17:52:33 kendy 1.55.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [d6dd46305577e4a40bf75c1d7eb2b85e8fb48c96]

INTEGRATION: CWS numberformat (1.60.40); FILE MERGED 2005/10/26 17:52:21 kendy 1.60.40.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [6c80c7ed7dd5b19bfb1079b7632b5858fd723a9f]

INTEGRATION: CWS numberformat (1.23.42); FILE MERGED 2005/10/26 17:51:56 kendy 1.23.42.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [4280ad95ef08c7d8ca362c4a86f6ffea6eff6b81]

INTEGRATION: CWS numberformat (1.20.26); FILE MERGED 2005/10/26 17:51:55 kendy 1.20.26.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [710e078ba9b36b2c74e2c76eec78d23c529fa10e]

INTEGRATION: CWS numberformat (1.79.44); FILE MERGED 2005/10/26 17:51:54 kendy 1.79.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [25e1aaaf1cae0765b510fcefc7184910105fca69]

INTEGRATION: CWS numberformat (1.10.44); FILE MERGED 2005/10/26 17:51:53 kendy 1.10.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [3f72a4260bc8a66874552a4e68a0811b02436b41]

INTEGRATION: CWS numberformat (1.38.40); FILE MERGED 2005/10/26 17:51:52 kendy 1.38.40.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [ac4394533816f5a21b6d8c2117025c7fc8dafd3f]

INTEGRATION: CWS numberformat (1.24.38); FILE MERGED 2005/10/26 17:51:52 kendy 1.24.38.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [42ed8fc0b51625fd9200811b0ef37fe5bc3afc62]

INTEGRATION: CWS numberformat (1.36.28); FILE MERGED 2005/10/26 17:51:51 kendy 1.36.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [ec92b00a3566e3c9f7c2aa428c81e6d1bee14a2c]

INTEGRATION: CWS numberformat (1.12.42); FILE MERGED 2005/10/26 17:51:50 kendy 1.12.42.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [6b52b8dcd9176ec2397030900e5781810afcb91f]

INTEGRATION: CWS numberformat (1.54.28); FILE MERGED 2005/10/26 17:51:49 kendy 1.54.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [c3093a58b54e7c80fc1144e252720292201b183a]

INTEGRATION: CWS numberformat (1.16.40); FILE MERGED 2005/10/26 17:51:49 kendy 1.16.40.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [8276ea139235da30d7c61ea885544439095a4880]

INTEGRATION: CWS numberformat (1.15.28); FILE MERGED 2005/10/26 17:51:48 kendy 1.15.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [49249d715b3a837fd02a28a00f9c4604fd1038f5]

INTEGRATION: CWS numberformat (1.21.44); FILE MERGED 2005/10/26 17:51:47 kendy 1.21.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [27819e60e868a1369879a179376cd4291d222f91]

INTEGRATION: CWS numberformat (1.27.44); FILE MERGED 2005/11/01 14:00:52 kendy 1.27.44.2: #i55546# Rename Svsal_uInt32Table and SvULONGTable to SvNumberFormatterIndexTable. 2005/10/26 17:51:47 kendy 1.27.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [3b60bdbfb0f115ca47208a65b36543b911322ae0]

INTEGRATION: CWS numberformat (1.6.44); FILE MERGED 2005/10/26 17:51:46 kendy 1.6.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [54a6753956ea320877ccee64c8ede667db4dd1e6]

INTEGRATION: CWS numberformat (1.3.44); FILE MERGED 2005/10/26 17:51:46 kendy 1.3.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [255655b00bdf973f43459474686814e6ab0f690a]

INTEGRATION: CWS numberformat (1.67.28); FILE MERGED 2005/11/01 14:00:51 kendy 1.67.28.2: #i55546# Rename Svsal_uInt32Table and SvULONGTable to SvNumberFormatterIndexTable. 2005/10/26 17:51:45 kendy 1.67.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [2f12cdff5a200bd268624c9b54380c61b46972a5]

INTEGRATION: CWS numberformat (1.40.28); FILE MERGED 2005/11/01 14:00:50 kendy 1.40.28.2: #i55546# Rename Svsal_uInt32Table and SvULONGTable to SvNumberFormatterIndexTable. 2005/10/26 17:51:44 kendy 1.40.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [4fae58bf7bb235cef7fd793546ae4c4942e86fdd]

INTEGRATION: CWS numberformat (1.52.28); FILE MERGED 2005/11/01 14:00:49 kendy 1.52.28.2: #i55546# Rename Svsal_uInt32Table and SvULONGTable to SvNumberFormatterIndexTable. 2005/10/26 17:51:44 kendy 1.52.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [c9c1f0c0d2a14fd153ba510d2fe5e6fc0edea483]

INTEGRATION: CWS numberformat (1.15.44); FILE MERGED 2005/10/26 17:51:43 kendy 1.15.44.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [ecdcca7300de5d78c31f70a2c9c18927a8fc2f66]

INTEGRATION: CWS numberformat (1.18.28); FILE MERGED 2005/10/26 17:51:43 kendy 1.18.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [aaf3888185f312aea8862b390d03e6b571fa293a]

INTEGRATION: CWS numberformat (1.88.28); FILE MERGED 2005/11/01 14:00:48 kendy 1.88.28.2: #i55546# Rename Svsal_uInt32Table and SvULONGTable to SvNumberFormatterIndexTable. 2005/10/26 17:51:42 kendy 1.88.28.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-12-14  Rüdiger Timm  <rt@openoffice.org>  [e6bf3cc8c05a4b8b9ff001e402ecedb981a306fd]

INTEGRATION: CWS numberformat (1.3.16); FILE MERGED 2005/10/26 17:51:36 kendy 1.3.16.1: #i55546# The ULONG -> sal_uInt32 patches related to NumberFormat extracted from ooo64bit02 CWS.


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [7ccb07e3539b0e342bf80405e8be7c4a17f94bd3]

INTEGRATION: CWS thaiissues (1.20.222); FILE MERGED 2005/10/11 15:35:43 dr 1.20.222.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [34b4e1c36f5454e1ab406812a9e9881250e0033e]

INTEGRATION: CWS thaiissues (1.10.18); FILE MERGED 2005/10/11 15:35:04 dr 1.10.18.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [0609cc3585397652b786e8c3ce4b1b0b6bf1ab4c]

INTEGRATION: CWS thaiissues (1.46.18); FILE MERGED 2005/10/25 10:03:48 fme 1.46.18.2: RESYNC: (1.46-1.47); FILE MERGED 2005/10/12 16:38:02 dr 1.46.18.1: #i42660# use edit engine to draw control chars


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [be31535e30e2ff06aed4333d368aa6d48ad1a0b8]

INTEGRATION: CWS thaiissues (1.72.26); FILE MERGED 2005/10/27 12:50:05 nn 1.72.26.1: #i55929# use script type from input language for font and font height when no text selected


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [617e316a76f390cadd8746c221d7f95130d61923]

INTEGRATION: CWS thaiissues (1.24.18); FILE MERGED 2005/10/27 12:50:07 nn 1.24.18.3: #i55929# use script type from input language for font and font height when no text selected 2005/10/12 16:38:00 dr 1.24.18.2: #i42660# use edit engine to draw control chars 2005/10/11 15:35:03 dr 1.24.18.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [bf62a761b6582ee80afac85465ef9ba7f13867a5]

INTEGRATION: CWS thaiissues (1.36.18); FILE MERGED 2005/10/11 15:35:03 dr 1.36.18.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [d336868951d08d1b7158806dabeb514e969861b6]

INTEGRATION: CWS thaiissues (1.10.20); FILE MERGED 2005/10/11 15:33:09 dr 1.10.20.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [bc004ea5c6afab38d589afb557a128c72d5913cf]

INTEGRATION: CWS thaiissues (1.24.18); FILE MERGED 2005/10/27 12:50:35 nn 1.24.18.2: #i55929# use script type from input language for font and font height when no text selected 2005/10/11 15:32:43 dr 1.24.18.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [b98fe2438f7658a90efb3ff2a9b05bfe75ce6d97]

INTEGRATION: CWS thaiissues (1.45.18); FILE MERGED 2005/10/12 16:35:46 dr 1.45.18.2: #i42660# use edit engine to draw control chars 2005/10/11 15:31:48 dr 1.45.18.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [e8ee827b68e337740be0a50bc2cab11d6d269964]

INTEGRATION: CWS thaiissues (1.43.18); FILE MERGED 2005/10/27 12:49:31 nn 1.43.18.1: #i55929# use script type from input language for font and font height when no text selected


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [cd05fe4936ea7c27e8e3fa69109291c4b2b24809]

INTEGRATION: CWS thaiissues (1.10.18); FILE MERGED 2005/10/11 12:10:58 nn 1.10.18.1: #i55300# CreateStandardStyles: for Thai, use a larger CTL font size


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [f21d1abc4d55b071223cb6a1d2626385a5a903e4]

INTEGRATION: CWS thaiissues (1.8.20); FILE MERGED 2005/10/11 15:30:58 dr 1.8.20.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [4077cd80d2a3bb83f1fe4317bc6c281af359d629]

INTEGRATION: CWS thaiissues (1.6.20); FILE MERGED 2005/10/11 15:30:58 dr 1.6.20.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [65f67dd8b3e4bdd79ccd0afb3a0a55f5bceb88ed]

INTEGRATION: CWS thaiissues (1.18.20); FILE MERGED 2005/10/11 15:30:15 dr 1.18.20.1: #i42660# new menu entries to insert control characters


2005-11-16  Oliver Bolte  <obo@openoffice.org>  [1626ab86e238d6aa8953e0af5db2486fac98c73b]

INTEGRATION: CWS thaiissues (1.43.20); FILE MERGED 2005/10/12 16:35:06 dr 1.43.20.1: #i42660# use edit engine to draw control chars


2005-11-10  Rüdiger Timm  <rt@openoffice.org>  [2fe790a394a140f2571210599a49b391003ecbf1]

INTEGRATION: CWS impress76 (1.51.54); FILE MERGED 2005/11/08 09:25:50 cl 1.51.54.1: #i56896# tunnel BuildId from meta.xml to ole objects


2005-11-10  Rüdiger Timm  <rt@openoffice.org>  [e33db6406c6c56a810e1c0b0f2faaed1c9e411cb]

INTEGRATION: CWS impress76 (1.61.8); FILE MERGED 2005/11/08 09:23:07 cl 1.61.8.1: #i56896# tunnel BuildId from meta.xml to ole objects


2005-11-10  Rüdiger Timm  <rt@openoffice.org>  [d966ede59c553763f3a11cc8946a45e639ba113a]

INTEGRATION: CWS impress76 (1.40.56); FILE MERGED 2005/11/08 10:56:28 cl 1.40.56.1: #i56896# tunnel BuildId from meta.xml to ole objects


2005-11-10  Rüdiger Timm  <rt@openoffice.org>  [f128ebef4a8056b2a341c066564e3f210919ca51]

INTEGRATION: CWS impress76 (1.15.56); FILE MERGED 2005/11/08 10:56:15 cl 1.15.56.1: #i56896# tunnel BuildId from meta.xml to ole objects


2005-11-10  Rüdiger Timm  <rt@openoffice.org>  [b8cab0c8eed361f2562c940524d6f6a43f2b6dfa]

INTEGRATION: CWS impress76 (1.21.58); FILE MERGED 2005/11/08 09:22:45 cl 1.21.58.1: #i56896# tunnel BuildId from meta.xml to ole objects


2005-11-07  Rüdiger Timm  <rt@openoffice.org>  [913988d7b41c48b3ca30e6a77aab6487919c016e]

INTEGRATION: CWS calc34 (1.9.56); FILE MERGED 2005/11/01 14:08:54 nn 1.9.56.1: #i55962# data layout field also can't be moved to page fields


2005-11-07  Rüdiger Timm  <rt@openoffice.org>  [ac7bac4fbdc12ef5108c732af51004e0483e03be]

INTEGRATION: CWS calc34 (1.54.40); FILE MERGED 2005/11/01 13:09:01 er 1.54.40.1: #i55769# en_US character classification for parseAnyToken during load


2005-11-07  Rüdiger Timm  <rt@openoffice.org>  [0c60d3356c0c649b4bc927e41bbd4eed8fc5ecb1]

INTEGRATION: CWS calc34 (1.13.40); FILE MERGED 2005/11/01 14:10:52 nn 1.13.40.1: #i55962# data layout dimension must be at columns or rows


2005-11-07  Rüdiger Timm  <rt@openoffice.org>  [556bfcba605c9e8886783013a9ec7dffe376a561]

INTEGRATION: CWS calc34 (1.24.56); FILE MERGED 2005/11/01 13:09:00 er 1.24.56.1: #i55769# en_US character classification for parseAnyToken during load


2005-11-02  Kurt Zenker  <kz@openoffice.org>  [3dd8676003561a5f251c1f2d337c578dd0617a7e]

INTEGRATION: CWS calc33 (1.24.48); FILE MERGED 2005/10/26 17:59:17 nn 1.24.48.1: #125326# don't access EditView when it isn't inserted into the EditEngine


2005-11-02  Kurt Zenker  <kz@openoffice.org>  [7ab793ad5258c3d50368d80805c6a8a778a39d3a]

INTEGRATION: CWS calc33 (1.21.50); FILE MERGED 2005/10/26 18:14:40 nn 1.21.50.1: #i56720# ignore all namespaces in formulas


2005-11-02  Kurt Zenker  <kz@openoffice.org>  [5aed9d1ec93e94d238425bd513921ba34bec7d5a]

INTEGRATION: CWS calc33 (1.87.34); FILE MERGED 2005/10/26 18:14:40 nn 1.87.34.1: #i56720# ignore all namespaces in formulas


2005-11-02  Kurt Zenker  <kz@openoffice.org>  [70ff7dad177338a043cb991a08db451a96758d22]

INTEGRATION: CWS calc33 (1.24.50); FILE MERGED 2005/10/26 18:14:41 nn 1.24.50.1: #i56720# ignore all namespaces in formulas


2005-10-27  Jens-Heiner Rechtien  <hr@openoffice.org>  [f34d52f650fa1dabeb37dd950a2303087e9d209c]

INTEGRATION: CWS emblock1 (1.56.120); FILE MERGED 2005/09/06 12:22:56 mav 1.56.120.1: #i51895# use status indicator from MediaDescriptor, if there is no do not create new one


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [cc32a861aded8a507786dcf775e4e21f0e2fc3b7]

INTEGRATION: CWS calc201fix (1.6.38); FILE MERGED 2005/10/18 19:50:54 er 1.6.38.1: #i56218# Remove: combine adjacent equal entries


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [158fb6e9b4b9cf205ecdd69746c7822f1f9362d0]

INTEGRATION: CWS ause039 (1.1.1.1.72); FILE MERGED 2005/10/13 17:54:26 hjs 1.1.1.1.72.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/09/29 16:24:42 hjs 1.1.1.1.72.1: #i55253# fix makefile


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [b5e792487c12d90344946486d71651fd783bf62d]

INTEGRATION: CWS dr42 (1.16.18); FILE MERGED 2005/10/05 10:32:30 nn 1.16.18.1: #i53407# allow empty name for member


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [03098c98be63df057a552f77dd4208fa487f0f4c]

INTEGRATION: CWS dr42 (1.21.18); FILE MERGED 2005/10/05 10:32:31 nn 1.21.18.1: #i53407# allow empty name for member


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [7908f7ecf7e216352ba8af687d2e692732d5168a]

INTEGRATION: CWS dr42 (1.8.18); FILE MERGED 2005/10/06 08:33:17 nn 1.8.18.1: #i53253# whitespace handling when XMLParaContext is used


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [7748bd72b13b215bfe8a4b9ca2a1ea162d98b1c8]

INTEGRATION: CWS dr42 (1.7.16); FILE MERGED 2005/10/05 14:43:52 dr 1.7.16.2: #b6332843# corrected array usage... 2005/10/05 12:53:42 dr 1.7.16.1: #b6332843# crash in token pool


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [c5c9e32d6bd61763cf20ee14b2aeb832f542bb22]

INTEGRATION: CWS dr42 (1.14.2); FILE MERGED 2005/10/11 18:21:19 nn 1.14.2.1: #i26836# new gaussinv implementation from psiplus (Martin Eitzenberger)


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [16b4f9daac9482c1915388bc57054edecbde177c]

INTEGRATION: CWS dr42 (1.5.146); FILE MERGED 2005/10/05 10:57:40 cn 1.5.146.1: #i55494# update of sc.sce and knownissues.xcl


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [73cdc272512ed1f959ea1aedc9e7153cbedcd119]

INTEGRATION: CWS dr42 (1.5.146); FILE MERGED 2005/10/21 11:18:35 sw 1.5.146.2: #i55494# 2005/10/05 10:57:41 cn 1.5.146.1: #i55494# update of sc.sce and knownissues.xcl


2005-10-25  Jens-Heiner Rechtien  <hr@openoffice.org>  [ba7e2e569c3252e710aab22dac5f8b5eb4f66ea0]

INTEGRATION: CWS dr42 (1.48.8); FILE MERGED 2005/10/07 10:39:20 dr 1.48.8.1: #i19991# ERF and ERFC, patch by Kohei Yoshida


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [1beb443f0c25dcec33761d9165141c032560da3c]

INTEGRATION: CWS dr41 (1.21.230); FILE MERGED 2005/10/05 02:03:17 dr 1.21.230.2: RESYNC: (1.21-1.22); FILE MERGED 2005/08/25 14:27:45 dr 1.21.230.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [edf69ed93a703fc2471737bff8d04022b8be8fd3]

INTEGRATION: CWS dr41 (1.27.316); FILE MERGED 2005/10/05 02:02:39 dr 1.27.316.2: RESYNC: (1.27-1.29); FILE MERGED 2005/09/16 17:51:17 nn 1.27.316.1: #i54480# handle merged cells in DeleteMulti


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [552c2cb40fb61f54034f5c1d042c9697075b2530]

INTEGRATION: CWS dr41 (1.19.222); FILE MERGED 2005/10/05 01:57:27 dr 1.19.222.2: RESYNC: (1.19-1.20); FILE MERGED 2005/08/24 10:25:07 nn 1.19.222.1: #i52871# compare custom shape type to see if same function was selected again


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [761c54d423a0922b22af2dbaed6fc1a763cf6372]

INTEGRATION: CWS dr41 (1.24.54); FILE MERGED 2005/10/05 01:41:31 dr 1.24.54.2: RESYNC: (1.24-1.25); FILE MERGED 2005/09/15 13:54:56 nn 1.24.54.1: i54201 FID_FILTER_OK: check if SCITEM_QUERYDATA item is there


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [a515738d26999c6aeb10a9e949bdcf362dfba6a6]

INTEGRATION: CWS dr41 (1.14.104); FILE MERGED 2005/10/05 01:37:55 dr 1.14.104.4: RESYNC: (1.14-1.15); FILE MERGED 2005/08/24 11:33:42 er 1.14.104.3: I'm an illiterate imbecile unable to program in C++ 2005/08/23 19:55:15 er 1.14.104.2: we do have a 16bit buffer, use it 2005/08/23 19:33:59 er 1.14.104.1: #i52850# lcl_MayBeAscii: if no BOM is present, consider all null bytes being on either even or uneven offsets a Unicode file, only mixed positioning doesn't match


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [5c2b59cd8faddcf9d1af8eaa99910a7e1d8eb64e]

INTEGRATION: CWS dr41 (1.17.134); FILE MERGED 2005/10/05 01:27:00 dr 1.17.134.2: RESYNC: (1.17-1.19); FILE MERGED 2005/09/16 18:01:31 nn 1.17.134.1: #i54480# handle merged cells in DeleteMulti


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [7db404d5d71c5bdc90f1648736788041be2bbcc5]

INTEGRATION: CWS dr41 (1.82.184); FILE MERGED 2005/10/05 01:22:11 dr 1.82.184.3: RESYNC: (1.82-1.84); FILE MERGED 2005/08/25 15:16:21 dr 1.82.184.2: #i42727# BAHTTEXT 2005/08/25 14:27:23 dr 1.82.184.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [1e103f717cca4b921aaa9fa4ebd5cbb1b2b23db0]

INTEGRATION: CWS dr41 (1.10.180); FILE MERGED 2005/10/05 01:03:15 dr 1.10.180.2: RESYNC: (1.10-1.11); FILE MERGED 2005/08/19 12:30:44 dr 1.10.180.1: #i53241# also replace HTML filter name if URL is entered in edit field


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [c9ac2e8b02755056b4bc3ba83ef4a913875c7617]

INTEGRATION: CWS dr41 (1.11.134); FILE MERGED 2005/10/05 00:55:54 dr 1.11.134.2: RESYNC: (1.11-1.12); FILE MERGED 2005/09/16 18:02:26 nn 1.11.134.1: #i54480# handle merged cells in DeleteMulti


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [9edc17adf3c257536f02452c56cbf5c8a4857a20]

INTEGRATION: CWS dr41 (1.21.134); FILE MERGED 2005/10/05 00:50:41 dr 1.21.134.2: RESYNC: (1.21-1.23); FILE MERGED 2005/08/24 10:24:48 nn 1.21.134.1: #i52871# compare custom shape type to see if same function was selected again


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [eb3e743f5be22ff4e9d32f6a269187d28a7a1422]

INTEGRATION: CWS dr41 (1.9.364); FILE MERGED 2005/10/05 00:39:39 dr 1.9.364.2: RESYNC: (1.9-1.10); FILE MERGED 2005/09/13 18:40:45 nn 1.9.364.1: #124828# update mnemonics and tab stop style bits in StateChanged/INITSHOW


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [a726f552b87939004861f5b080b1e38821624388]

INTEGRATION: CWS dr41 (1.11.440); FILE MERGED 2005/10/05 00:19:56 dr 1.11.440.2: RESYNC: (1.11-1.12); FILE MERGED 2005/09/13 18:40:43 nn 1.11.440.1: #124828# update mnemonics and tab stop style bits in StateChanged/INITSHOW


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [6912316db31887800109cbdb4af7f21f91d42d55]

INTEGRATION: CWS dr41 (1.43.88); FILE MERGED 2005/10/04 23:45:00 dr 1.43.88.2: RESYNC: (1.43-1.44); FILE MERGED 2005/09/29 17:13:59 nn 1.43.88.1: #b5091760# with a selected range, the page count for the sheets is different


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [fdd995d8461df052688f20e0176116efb74ebd84]

INTEGRATION: CWS dr41 (1.22.142); FILE MERGED 2005/10/04 23:44:45 dr 1.22.142.2: RESYNC: (1.22-1.23); FILE MERGED 2005/09/02 10:46:39 nn 1.22.142.1: #i54081# PostPaint: with locked paint, still broadcast PAINT_EXTRAS


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [17ce3cd75cb768d7b79a2b37a58038e8ba81ca7e]

INTEGRATION: CWS dr41 (1.19.164); FILE MERGED 2005/10/04 23:39:35 dr 1.19.164.2: RESYNC: (1.19-1.20); FILE MERGED 2005/09/13 18:41:04 nn 1.19.164.1: #124828# update mnemonics and tab stop style bits in StateChanged/INITSHOW


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [813b2b7d49f3f890636db6a5ab46ad4ca1d682fd]

INTEGRATION: CWS dr41 (1.15.246); FILE MERGED 2005/10/04 23:35:19 dr 1.15.246.2: RESYNC: (1.15-1.16); FILE MERGED 2005/09/13 18:41:03 nn 1.15.246.1: #124828# update mnemonics and tab stop style bits in StateChanged/INITSHOW


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [1289f84706e237b52a98b3414f7b5874e70fabf4]

INTEGRATION: CWS dr41 (1.194.40); FILE MERGED 2005/10/04 23:11:46 dr 1.194.40.2: RESYNC: (1.194-1.197); FILE MERGED 2005/09/29 14:44:58 nn 1.194.40.1: #i53940# merge error from calcuno01 caused duplicate callout shapes


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [9f37a6350e0b87c832bbd884808c89a729a86a9a]

INTEGRATION: CWS dr41 (1.4.244); FILE MERGED 2005/10/04 22:41:54 dr 1.4.244.2: RESYNC: (1.4-1.6); FILE MERGED 2005/08/25 14:26:50 dr 1.4.244.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [2b9584dd2687e132bc6514663c682d26c482ab33]

INTEGRATION: CWS dr41 (1.3.134); FILE MERGED 2005/10/04 22:35:30 dr 1.3.134.2: RESYNC: (1.3-1.5); FILE MERGED 2005/08/25 14:26:50 dr 1.3.134.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [d4377923ed181972fa8ef81a081e5ff7a5d9c553]

INTEGRATION: CWS dr41 (1.6.440); FILE MERGED 2005/10/04 22:32:49 dr 1.6.440.2: RESYNC: (1.6-1.7); FILE MERGED 2005/08/25 14:26:49 dr 1.6.440.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [af74a07a4450d50fdb57617b58fb807bb428569a]

INTEGRATION: CWS dr41 (1.16.102); FILE MERGED 2005/10/04 22:19:06 dr 1.16.102.4: RESYNC: (1.16-1.17); FILE MERGED 2005/09/20 17:52:06 er 1.16.102.3: #i53826# Thai T speciality 2005/08/26 14:18:38 dr 1.16.102.2: #i42727# more built-in formats 2005/08/26 00:35:20 dr 1.16.102.1: #i42727# biltin format table for Thai


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [785934f5c4db3ea09073d7ec67330b67685d7113]

INTEGRATION: CWS dr41 (1.8.134); FILE MERGED 2005/10/04 22:17:14 dr 1.8.134.2: RESYNC: (1.8-1.10); FILE MERGED 2005/08/25 14:25:00 dr 1.8.134.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [2f85d462702ff1fb1fe10c3df803e75ee664f1f5]

INTEGRATION: CWS dr41 (1.22.102); FILE MERGED 2005/10/04 22:16:12 dr 1.22.102.2: RESYNC: (1.22-1.23); FILE MERGED 2005/09/26 11:24:34 dr 1.22.102.1: #i55068# Thai is CTL


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [1160a759848aea18c7852acedb245abfe740ca0d]

INTEGRATION: CWS dr41 (1.17.102); FILE MERGED 2005/10/04 22:13:38 dr 1.17.102.2: RESYNC: (1.17-1.19); FILE MERGED 2005/09/22 10:58:05 dr 1.17.102.1: #i54261# don't insert hyperlinks into empty cells


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [e7f16fd43f446c917df2eef2410d57007ed9f822]

INTEGRATION: CWS dr41 (1.18.132); FILE MERGED 2005/10/04 22:12:45 dr 1.18.132.2: RESYNC: (1.18-1.20); FILE MERGED 2005/09/20 17:52:06 er 1.18.132.1: #i53826# Thai T speciality


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [b79b4787db42eac8083052fef84ad2e01a0bfefe]

INTEGRATION: CWS dr41 (1.3.134); FILE MERGED 2005/10/04 22:10:56 dr 1.3.134.2: RESYNC: (1.3-1.5); FILE MERGED 2005/08/25 14:25:00 dr 1.3.134.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [92982c55f0cfdcbafcfaa6556665a3bc1626726d]

INTEGRATION: CWS dr41 (1.5.134); FILE MERGED 2005/10/04 22:10:21 dr 1.5.134.2: RESYNC: (1.5-1.7); FILE MERGED 2005/08/25 14:24:59 dr 1.5.134.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [34064038aa0d9b5f19fd67491dccd77015d37685]

INTEGRATION: CWS dr41 (1.11.104); FILE MERGED 2005/10/04 22:10:10 dr 1.11.104.2: RESYNC: (1.11-1.13); FILE MERGED 2005/08/25 14:24:59 dr 1.11.104.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [875e720274b1c1cdfe085bc83b39bb3ca8b7347d]

INTEGRATION: CWS dr41 (1.6.356); FILE MERGED 2005/10/04 22:09:43 dr 1.6.356.2: RESYNC: (1.6-1.7); FILE MERGED 2005/08/25 14:24:59 dr 1.6.356.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [d46ae8c48bfc9fc81cbdbdd11790f2d18c8b7cb7]

INTEGRATION: CWS dr41 (1.35.46); FILE MERGED 2005/10/04 22:07:03 dr 1.35.46.2: RESYNC: (1.35-1.37); FILE MERGED 2005/09/28 08:42:21 dr 1.35.46.1: #i55144# internal references with/without sheet names


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [91c4d365202dc188d7219253f4b9549f547d8568]

INTEGRATION: CWS dr41 (1.34.134); FILE MERGED 2005/10/04 22:06:54 dr 1.34.134.3: RESYNC: (1.34-1.36); FILE MERGED 2005/09/28 08:42:20 dr 1.34.134.2: #i55144# internal references with/without sheet names 2005/08/25 14:24:58 dr 1.34.134.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [2fe40142e1af55cc48b643d6af31ec0c3c21d59a]

INTEGRATION: CWS dr41 (1.19.104); FILE MERGED 2005/08/19 13:29:48 dr 1.19.104.1: rec name


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [62bc0d5fcf8c3cd5cf94a230afc2d4da4eda7662]

INTEGRATION: CWS dr41 (1.78.104); FILE MERGED 2005/10/04 22:05:25 dr 1.78.104.3: RESYNC: (1.78-1.80); FILE MERGED 2005/08/25 13:37:12 dr 1.78.104.2: chart level counter for all BOFs 2005/08/11 14:30:25 dr 1.78.104.1: link in TXO


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [258d73d733d2cd49f24e9084981fe5078f361bd8]

INTEGRATION: CWS dr41 (1.37.88); FILE MERGED 2005/10/04 21:56:17 dr 1.37.88.2: RESYNC: (1.37-1.38); FILE MERGED 2005/08/25 14:15:19 dr 1.37.88.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [b870c24fc56f97421f68a2e09a14a4e001292074]

INTEGRATION: CWS dr41 (1.12.230); FILE MERGED 2005/10/04 21:56:05 dr 1.12.230.2: RESYNC: (1.12-1.14); FILE MERGED 2005/09/19 10:40:42 nn 1.12.230.1: #i47296# better implementation of HYPGEOMDIST (from Kohei Yoshida)


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [05524e7248cf371c881ca934c46f407fbd0310d2]

INTEGRATION: CWS dr41 (1.23.230); FILE MERGED 2005/10/04 21:55:55 dr 1.23.230.3: RESYNC: (1.23-1.24); FILE MERGED 2005/08/25 16:18:41 dr 1.23.230.2: #i42727# BAHTTEXT 2005/08/25 14:15:19 dr 1.23.230.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [c8738cb27d1de7b508b40d64c89feb91ac93072c]

INTEGRATION: CWS dr41 (1.45.422); FILE MERGED 2005/10/04 21:47:49 dr 1.45.422.2: RESYNC: (1.45-1.47); FILE MERGED 2005/08/25 14:13:34 dr 1.45.422.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [36916acd54620f6967634d0c7d9a4f9df7894da5]

INTEGRATION: CWS dr41 (1.21.78); FILE MERGED 2005/10/04 21:45:08 dr 1.21.78.2: RESYNC: (1.21-1.23); FILE MERGED 2005/08/25 14:13:00 dr 1.21.78.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [e49923e163281b99f6a9ce94f6ce3f3722d68c1d]

INTEGRATION: CWS dr41 (1.29.104); FILE MERGED 2005/10/04 21:28:19 dr 1.29.104.2: RESYNC: (1.29-1.30); FILE MERGED 2005/09/07 11:11:51 er 1.29.104.1: #i54276# include string results in iteration convergence tests


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [95e6de3108547a409dea1a7a361bef14e71ee69f]

INTEGRATION: CWS dr41 (1.7.422); FILE MERGED 2005/10/04 21:08:35 dr 1.7.422.2: RESYNC: (1.7-1.8); FILE MERGED 2005/08/25 14:12:34 dr 1.7.422.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [66e7f930d54fb932887443b6d15302e1b6f927d5]

INTEGRATION: CWS dr41 (1.2.118); FILE MERGED 2005/10/04 21:05:54 dr 1.2.118.2: RESYNC: (1.2-1.3); FILE MERGED 2005/09/07 11:11:50 er 1.2.118.1: #i54276# include string results in iteration convergence tests


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [5299a2bece1a759e751a423435c53dd3e9c873b6]

INTEGRATION: CWS dr41 (1.11.142); FILE MERGED 2005/10/04 21:01:12 dr 1.11.142.2: RESYNC: (1.11-1.12); FILE MERGED 2005/08/25 14:12:34 dr 1.11.142.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [a3af61fd20a3b0eb9e9f23a25b088db2f45acbc5]

INTEGRATION: CWS dr41 (1.9.142); FILE MERGED 2005/10/04 20:41:38 dr 1.9.142.2: RESYNC: (1.9-1.10); FILE MERGED 2005/08/25 14:12:33 dr 1.9.142.1: #i42727# BAHTTEXT


2005-10-21  Rüdiger Timm  <rt@openoffice.org>  [b6084cc62984337baa8502e618e3d44fc580bcef]

INTEGRATION: CWS dr41 (1.6.102); FILE MERGED 2005/10/04 20:35:40 dr 1.6.102.2: RESYNC: (1.6-1.7); FILE MERGED 2005/09/21 19:10:25 er 1.6.102.1: get rid of the confusing remainders of the SC_ROWLIMIT_TYPECONVERSION_NOCONVPASS block; and also of SC_ADDRESS_BITS_USED stuff now that binary file format is gone


2005-10-19  Rüdiger Timm  <rt@openoffice.org>  [0a984c2f7bb0d4a82dc6f5693637e3de211a4d7d]

INTEGRATION: CWS cov2src (1.38.32); FILE MERGED 2005/10/18 10:11:24 rt 1.38.32.1: #126234# Join MWS COV680 m4 into SRC680


2005-10-06  Kurt Zenker  <kz@openoffice.org>  [482410d1bd5ede44c51871cbae72628465300fe5]

INTEGRATION: CWS intptr (1.76.156); FILE MERGED 2005/09/13 14:51:10 kendy 1.76.156.1: #i54498# Introduce and use sal_IntPtr/sal_uIntPtr for ints where we have to store a pointer


2005-10-05  Kurt Zenker  <kz@openoffice.org>  [5c34b6eabb2fd40e1657536973223d969f01fa07]

INTEGRATION: CWS intptr (1.28.38); FILE MERGED 2005/09/13 14:50:28 kendy 1.28.38.1: #i54498# Introduce and use sal_IntPtr/sal_uIntPtr for ints where we have to store a pointer


2005-10-05  Kurt Zenker  <kz@openoffice.org>  [4a2db4cb496a4cd904bdc507a1bb7cd47855cd11]

INTEGRATION: CWS dxarray (1.46.2); FILE MERGED 2005/09/19 11:41:27 kendy 1.46.2.1: #i54697# "long *pDXArray" -> "sal_Int32 *pDXArray" patches extracted from ooo64bit02 to conform the declaration in VCL.


2005-10-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [2fbad8272e290894bed40c88237b67f73dd278ee]

#i10000#:#i52188#: fix merge conflict resolution


2005-09-30  Jens-Heiner Rechtien  <hr@openoffice.org>  [622e0bd1da69da3a94250cbf5b0344b7876f9564]

INTEGRATION: CWS fwk21 (1.56.104); FILE MERGED 2005/08/16 14:46:14 mba 1.56.104.1: #i51000#: set StreamRelPath only if medium contains one


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [176f2f2834772460c226b5117ddcf3b52163b811]

INTEGRATION: CWS cmcfixes19 (1.31.8); FILE MERGED 2005/09/22 11:57:00 cmc 1.31.8.1: #i54963# add dependancies for parallel build


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [427f5818af79d73c8569236614aa94be5cb12645]

INTEGRATION: CWS cmcfixes19 (1.6.12); FILE MERGED 2005/09/22 11:55:34 cmc 1.6.12.1: #i54708# add dependancies for parallel build


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [74600410a8d4b082d4a61d100d18ed0fc9a91f5d]

INTEGRATION: CWS cmcfixes19 (1.5.12); FILE MERGED 2005/09/22 11:55:33 cmc 1.5.12.1: #i54708# add dependancies for parallel build


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [b06ef3971009dda7497ba55ef311151e6044172c]

INTEGRATION: CWS dr37 (1.27.222); FILE MERGED 2005/07/28 08:43:28 nn 1.27.222.1: #i52120# prevent duplicate linked areas in the same cell


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [672389d4715406241d7c7140ea0e1de0f997832f]

INTEGRATION: CWS dr37 (1.26.46); FILE MERGED 2005/07/28 08:43:29 nn 1.26.46.2: #i52120# prevent duplicate linked areas in the same cell 2005/04/22 14:38:59 nn 1.26.46.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [d93a2b5d560e2459c16868ecfa61407b831142a0]

INTEGRATION: CWS dr37 (1.51.4); FILE MERGED 2005/04/19 14:52:14 dr 1.51.4.3: #i47435# set automatic grid color 2005/04/19 14:49:44 dr 1.51.4.2: #i47426# copy view options to document 2005/04/19 14:40:32 dr 1.51.4.1: #i46820# set pagebreak mode via SetPagebreak() function


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [93765ddf4e2b58f172c0b3d6c0972e94b2a23e40]

INTEGRATION: CWS dr37 (1.9.8); FILE MERGED 2005/07/19 10:11:25 nn 1.9.8.1: #i52073# deactivate ole inplace for sheet tab context menu


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [74357a65ade9abffba5356ef5bbbd19e7d4fd221]

INTEGRATION: CWS dr37 (1.24.8); FILE MERGED 2005/07/19 10:11:25 nn 1.24.8.1: #i52073# deactivate ole inplace for sheet tab context menu


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [29622c6658420eac1364805ebbeb21a96daafdc8]

INTEGRATION: CWS dr37 (1.25.34); FILE MERGED 2005/04/27 18:16:10 nn 1.25.34.1: #i46796# RepeatResize: call UpdateShow before UpdateFixX/UpdateFixY


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [4992ccfac69f23dd82ff581b39d6e6346af74ee6]

INTEGRATION: CWS dr37 (1.10.220); FILE MERGED 2005/07/19 10:11:25 nn 1.10.220.1: #i52073# deactivate ole inplace for sheet tab context menu


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [2e64fd78dc5452c815f66197e604beb021658efb]

INTEGRATION: CWS dr37 (1.10.2); FILE MERGED 2005/07/15 14:43:14 dr 1.10.2.1: #i51970# correct X position in mirrored sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [c18bc56b81c6cef8b44ef86f8b8b6a0ae200592e]

INTEGRATION: CWS dr37 (1.26.216); FILE MERGED 2005/05/12 09:39:11 nn 1.26.216.1: #i45033# VDev as text formatting reference for inplace editing with different zoom factors


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [6dbd045bfe6442ecfa2d57d622894c590f2bce8f]

INTEGRATION: CWS dr37 (1.11.260); FILE MERGED 2005/07/19 10:11:24 nn 1.11.260.1: #i52073# deactivate ole inplace for sheet tab context menu


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [fad9edab7d3890edd03bb522a371177a510ac12e]

INTEGRATION: CWS dr37 (1.68.16); FILE MERGED 2005/08/10 16:25:22 dr 1.68.16.2: RESYNC: (1.68-1.70); FILE MERGED 2005/07/26 17:46:26 nn 1.68.16.1: #i52307# ExecDataSelect: call CellContentChanged


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [8800080e0553e2a43fcac63e1ffe904a897a057a]

INTEGRATION: CWS dr37 (1.32.4); FILE MERGED 2005/04/21 10:37:20 sab 1.32.4.1: #i38317#; remove scalling items before set new


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [272d818a1910e37432a7af51b85b7ade9fc7b79d]

INTEGRATION: CWS dr37 (1.10.346); FILE MERGED 2005/04/22 14:38:43 nn 1.10.346.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a43e436d8e5e142f4d91306268ef0865c93e609b]

INTEGRATION: CWS dr37 (1.17.36); FILE MERGED 2005/07/28 08:43:51 nn 1.17.36.2: #i52120# prevent duplicate linked areas in the same cell 2005/07/04 13:30:41 nn 1.17.36.1: #i51445# handle merged cells extending from the deleted cells


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [44a3579824810bac40ab2ab1adb17b9767e313c4]

INTEGRATION: CWS dr37 (1.3.220); FILE MERGED 2005/04/22 14:38:43 nn 1.3.220.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [d38983503f853dabbd9e5cd36120fea9b4bf277a]

INTEGRATION: CWS dr37 (1.21.36); FILE MERGED 2005/07/19 10:11:04 nn 1.21.36.1: #i52073# deactivate ole inplace for sheet tab context menu


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [7775d789f216f52ae7bec86ff50eca056d3cc9af]

INTEGRATION: CWS dr37 (1.3.36); FILE MERGED 2005/05/12 15:20:07 dr 1.3.36.1: #i42981# do not close new note object when clicked on its border


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [7fbaa5fc8192c0d7aeaee95d0b1fb6e65e04e5bf]

INTEGRATION: CWS dr37 (1.2.346); FILE MERGED 2005/04/22 14:38:30 nn 1.2.346.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [b061a1b1d2c2e47f556a1211c6f423ea3dd46378]

INTEGRATION: CWS dr37 (1.20.34); FILE MERGED 2005/05/12 15:20:20 dr 1.20.34.1: #i42981# do not close new note object when clicked on its border


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [98d36f28db6f3967dd288d2a27300674bdd1b602]

INTEGRATION: CWS dr37 (1.14.36); FILE MERGED 2005/05/12 15:20:19 dr 1.14.36.1: #i42981# do not close new note object when clicked on its border


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [3667b24aba180853ec7ecf525bd07a761948ebb5]

INTEGRATION: CWS dr37 (1.16.66); FILE MERGED 2005/07/19 10:11:45 nn 1.16.66.1: #i52073# deactivate ole inplace for sheet tab context menu


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [e14667ee26bd8aaf7f982d9e25e55663d2662fe5]

INTEGRATION: CWS dr37 (1.18.18); FILE MERGED 2005/07/19 11:24:29 er 1.18.18.1: #i51680# DBaseExport also needs a decoded URI


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [0aa942bda921019f07bd538baae646201ec451c0]

INTEGRATION: CWS dr37 (1.53.18); FILE MERGED 2005/07/28 08:42:43 nn 1.53.18.4: #i52120# prevent duplicate linked areas in the same cell 2005/07/05 11:32:10 dr 1.53.18.3: #i10000# don't pass temporary as non-const reference 2005/07/04 13:30:09 nn 1.53.18.2: #i51445# handle merged cells extending from the deleted cells 2005/04/22 14:38:16 nn 1.53.18.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [78e90462836fa98e089b4920d697d64c852ee355]

INTEGRATION: CWS dr37 (1.6.202); FILE MERGED 2005/03/23 11:56:05 dr 1.6.202.1: #i41550# first update checkbox, then update preview


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [49f7661800aaf5828a2a985780aa8ecdbed69512]

INTEGRATION: CWS dr37 (1.55.8); FILE MERGED 2005/04/06 09:03:31 dr 1.55.8.2: RESYNC: (1.55-1.56); FILE MERGED 2005/03/24 17:38:50 nn 1.55.8.1: #i37799# StyleNames/StyleFamilies in aExportInfoMap


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff0c480e99838b26543c867bcb1a31e10132e30a]

INTEGRATION: CWS dr37 (1.54.4); FILE MERGED 2005/07/18 14:43:16 sab 1.54.4.2: #i52124#; don't add numberformat again and again 2005/05/10 13:43:12 sab 1.54.4.1: #i46996#; disable not needed properties


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [95f63df259dcd99de64fbe86b516def05b0a3d06]

INTEGRATION: CWS dr37 (1.87.4); FILE MERGED 2005/07/21 15:34:20 sab 1.87.4.1: #i52188#; set old note rectangle after UpdateRowHeights


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [0db45ca4e8bd92fd04c074be4f879cb9d48caf2d]

INTEGRATION: CWS dr37 (1.114.4); FILE MERGED 2005/07/21 15:34:19 sab 1.114.4.1: #i52188#; set old note rectangle after UpdateRowHeights


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [eb59640f6d08ac69bf140b879157cf373eed0081]

INTEGRATION: CWS dr37 (1.190.18); FILE MERGED 2005/07/04 13:57:31 dr 1.190.18.3: RESYNC: (1.193-1.194); FILE MERGED 2005/04/06 08:59:51 dr 1.190.18.2: RESYNC: (1.190-1.193); FILE MERGED 2005/04/01 15:36:53 sab 1.190.18.1: #i24932#; last changed row/column has to be different from the number given back is completly run through


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [bdb7e0c1e9b8e03c1ada8235952bae6d2eac595d]

INTEGRATION: CWS dr37 (1.83.4); FILE MERGED 2005/09/28 09:44:41 sab 1.83.4.2: RESYNC: (1.83-1.85); FILE MERGED 2005/07/21 15:34:19 sab 1.83.4.1: #i52188#; set old note rectangle after UpdateRowHeights


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [1673df52a6b7a32717f161b5bd58ba8dab30bcd8]

INTEGRATION: CWS dr37 (1.39.4); FILE MERGED 2005/07/20 13:30:24 sab 1.39.4.1: #i52120#; handle double linked ranges on one cell


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [68dcc7b0db00bf1646f238d9b2246abf0b013c85]

INTEGRATION: CWS dr37 (1.76.34); FILE MERGED 2005/08/09 16:30:18 dr 1.76.34.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ca0876f2095b29562682374ae2227b14391b1944]

INTEGRATION: CWS dr37 (1.15.36); FILE MERGED 2005/06/06 15:07:41 dr 1.15.36.1: #i48139# import/export doc option 'Calc as shown'


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [d5888ec64c6a7923495ce37158df06d8e450150d]

INTEGRATION: CWS dr37 (1.2.36); FILE MERGED 2005/08/10 14:41:14 dr 1.2.36.1: #i52955# set displayed sheet from WINDOW1 record


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [f07f0bab9b009345fe3ba7b379df239d1e9c8136]

INTEGRATION: CWS dr37 (1.21.4); FILE MERGED 2005/04/19 14:25:48 dr 1.21.4.1: #i46627# use default script type for blank cells


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [96e085a092c2a423bda87c33e758cbd1531899a8]

INTEGRATION: CWS dr37 (1.11.84); FILE MERGED 2005/08/09 16:29:56 dr 1.11.84.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [acd1a2a92bb42341ed662d11cc5269ca47d5e2f9]

INTEGRATION: CWS dr37 (1.4.150); FILE MERGED 2005/04/19 14:47:17 dr 1.4.150.1: #i47228# svExternal/ocMacro tokens can be macro calls or missing defined names


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a6796acdeb7d9f9ec54d4c990ad8ef470ab7b36e]

INTEGRATION: CWS dr37 (1.15.4); FILE MERGED 2005/08/09 16:29:56 dr 1.15.4.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a22432ce8402ef5eafc81f69f084993491a380b8]

INTEGRATION: CWS dr37 (1.24.36); FILE MERGED 2005/08/09 16:29:55 dr 1.24.36.2: #i47246# drawing layer import reworked 2005/07/20 15:41:42 dr 1.24.36.1: dump workspace files


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [925155249fad44dbcd166a2d4d790a1c68563095]

INTEGRATION: CWS dr37 (1.2.4); FILE MERGED 2005/08/09 16:29:55 dr 1.2.4.3: #i47246# drawing layer import reworked 2005/07/06 15:43:46 dr 1.2.4.2: #i51639# attach data point formats after loading all series 2005/05/13 16:17:14 dr 1.2.4.1: #i49241# import pie-to-pie and pie-to-bar as pie chart


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [c604c65fcb653e941d84503176b440a9723be8d5]

INTEGRATION: CWS dr37 (1.16.4); FILE MERGED 2005/08/10 14:41:13 dr 1.16.4.1: #i52955# set displayed sheet from WINDOW1 record


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [152a0151f7e3b70670d2cc8ac1890be384f0721d]

INTEGRATION: CWS dr37 (1.2.84); FILE MERGED 2005/06/23 11:48:25 dr 1.2.84.1: #i38718# find module for macros without module name


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc67bbf55287161639798dd019d485dacb24c20d]

INTEGRATION: CWS dr37 (1.17.4); FILE MERGED 2005/08/09 16:29:55 dr 1.17.4.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [40aec93ad1bc29cb378b43f480b68ad04dac9678]

INTEGRATION: CWS dr37 (1.2.4); FILE MERGED 2005/08/09 16:29:54 dr 1.2.4.7: #i47246# drawing layer import reworked 2005/08/08 16:08:51 dr 1.2.4.6: #i49218# delay loading of point labels 2005/07/11 16:31:32 dr 1.2.4.5: #i49218# load legend from primary or secondary axes set 2005/07/08 14:28:20 dr 1.2.4.4: #i51639# last changes 2005/07/08 07:28:26 dr 1.2.4.3: #i51639# create default series formatting if missing in file 2005/07/06 15:43:45 dr 1.2.4.2: #i51639# attach data point formats after loading all series 2005/04/19 13:56:08 dr 1.2.4.1: #i47745# support for invisible plot frame


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [6d435e051ab95df32418556d9ff941fc80ecd3df]

INTEGRATION: CWS dr37 (1.3.36); FILE MERGED 2005/04/19 14:47:16 dr 1.3.36.1: #i47228# svExternal/ocMacro tokens can be macro calls or missing defined names


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [55e5e43eec95ee9764dac2ff058f611968621089]

INTEGRATION: CWS dr37 (1.42.36); FILE MERGED 2005/08/09 16:29:54 dr 1.42.36.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [74a2c8a7f60f411e5a958e5d755a63912dfb9841]

INTEGRATION: CWS dr37 (1.9.150); FILE MERGED 2005/06/07 18:52:33 dr 1.9.150.1: #i50248# speed up shared formula import (by jodygoldberg)


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [1ef2e7aceeb3247e029c84ccb97f8c59cd146f1e]

INTEGRATION: CWS dr37 (1.11.88); FILE MERGED 2005/08/05 13:22:10 er 1.11.88.1: #i52266# a single table doesn't need a large pixel tolerance


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a9431693aa5255525404a088f1c7d31131e18103]

INTEGRATION: CWS dr37 (1.4.222); FILE MERGED 2005/08/09 16:29:54 dr 1.4.222.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [3a90879807b05936d1d0b7cde174e3f94fce6aaf]

INTEGRATION: CWS dr37 (1.60.4); FILE MERGED 2005/06/06 15:07:18 dr 1.60.4.1: #i48139# import/export doc option 'Calc as shown'


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [320fbce17d3883a0a922ca988ed0aee9e6e7cde4]

INTEGRATION: CWS dr37 (1.13.36); FILE MERGED 2005/06/20 13:12:40 dr 1.13.36.1: #i48496# convert cell:cell to single range


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [fdb2bf55b3fe863a41734741104ec25c5b5d8164]

INTEGRATION: CWS dr37 (1.4.88); FILE MERGED 2005/08/05 13:20:16 er 1.4.88.1: get rid of warnings: order of initalization


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [3df1e8164f49e7a8f02457a0315c2fdab64deaf6]

INTEGRATION: CWS dr37 (1.15.108); FILE MERGED 2005/08/09 16:29:53 dr 1.15.108.2: #i47246# drawing layer import reworked 2005/07/20 15:41:42 dr 1.15.108.1: dump workspace files


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [3a3d2902cd385a96fae9a6722c555b207e750458]

INTEGRATION: CWS dr37 (1.24.34); FILE MERGED 2005/08/05 13:22:08 er 1.24.34.1: #i52266# a single table doesn't need a large pixel tolerance


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a4cb87f665c28783f7fbf7af76205f6877ecd10a]

INTEGRATION: CWS dr37 (1.11.196); FILE MERGED 2005/05/10 16:42:01 dr 1.11.196.2: #i48491# convert to valid sheet names 2005/05/10 16:29:37 dr 1.11.196.1: #i48491# convert to valid sheet names


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [f0664f7ea75e3725d4ee2ddb509d87d125034ab7]

INTEGRATION: CWS dr37 (1.4.222); FILE MERGED 2005/08/09 16:30:08 dr 1.4.222.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [9f0f621cb4b41be22879db80faa004dcd0bd7121]

INTEGRATION: CWS dr37 (1.2.36); FILE MERGED 2005/08/10 14:41:42 dr 1.2.36.1: #i52955# set displayed sheet from WINDOW1 record


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [8f341108bd39a076fda4ef21e590f08d22f07628]

INTEGRATION: CWS dr37 (1.22.4); FILE MERGED 2005/06/17 10:02:35 dr 1.22.4.1: #i50253# import/export error codes


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [01d172138f8710c36ec98c9b413305112f522873]

INTEGRATION: CWS dr37 (1.21.36); FILE MERGED 2005/06/14 13:50:52 dr 1.21.36.2: #i48717# do not return character width 0 2005/04/19 14:25:47 dr 1.21.36.1: #i46627# use default script type for blank cells


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [89df4d3eb602716ff39dbb4312b0d2682289b5fe]

INTEGRATION: CWS dr37 (1.14.4); FILE MERGED 2005/08/09 16:29:40 dr 1.14.4.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ce1a61f823ff72aa8ba8ea80512b27398fe3f0da]

INTEGRATION: CWS dr37 (1.8.36); FILE MERGED 2005/04/19 14:47:16 dr 1.8.36.1: #i47228# svExternal/ocMacro tokens can be macro calls or missing defined names


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [c03c414563b98fec1cf050b38b238ddd5f810331]

INTEGRATION: CWS dr37 (1.8.4); FILE MERGED 2005/08/09 16:29:40 dr 1.8.4.2: #i47246# drawing layer import reworked 2005/06/23 11:48:40 dr 1.8.4.1: #i38718# find module for macros without module name


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [83dcc0eb4b09bc8a9c698bf41bc76d44ce3828c5]

INTEGRATION: CWS dr37 (1.2.4); FILE MERGED 2005/07/06 15:43:31 dr 1.2.4.1: #i51639# attach data point formats after loading all series


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [cb19014b20185577096a307873329354ca4ba774]

INTEGRATION: CWS dr37 (1.2.36); FILE MERGED 2005/08/09 16:29:39 dr 1.2.36.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8164ed7837f89ef5db4876e9adb8e3b3cc77224]

INTEGRATION: CWS dr37 (1.2.36); FILE MERGED 2005/08/10 14:41:41 dr 1.2.36.2: #i52955# set displayed sheet from WINDOW1 record 2005/08/09 16:29:39 dr 1.2.36.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [52923e897562f2033594ff2e2dcb88df338f9ce7]

INTEGRATION: CWS dr37 (1.12.4); FILE MERGED 2005/08/09 16:29:38 dr 1.12.4.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [5e0d0408072c87a36f434af9164eabe033c09545]

INTEGRATION: CWS dr37 (1.15.36); FILE MERGED 2005/08/10 14:41:41 dr 1.15.36.1: #i52955# set displayed sheet from WINDOW1 record


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [d643bff4240cf853fa325022fabb7f621fb33164]

INTEGRATION: CWS dr37 (1.8.36); FILE MERGED 2005/08/09 16:29:38 dr 1.8.36.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [8e02ac4d16882d0e41fcb5662d090bc4584627b2]

INTEGRATION: CWS dr37 (1.3.36); FILE MERGED 2005/07/19 10:18:15 dr 1.3.36.3: #i52060# do not ignore names of sheet macros 2005/06/23 11:48:40 dr 1.3.36.2: #i38718# find module for macros without module name 2005/03/23 13:28:52 dr 1.3.36.1: #i44019# BIFF5: correct name appendix for local names


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a41a5e7d55aec9184d9b83528f0254b34cb6f1d0]

INTEGRATION: CWS dr37 (1.19.4); FILE MERGED 2005/07/12 15:28:29 dr 1.19.4.1: #122185# remove wrong assertions


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [bbab9cc369fd843a36121291c6e9acd4d2b5c3e0]

INTEGRATION: CWS dr37 (1.35.4); FILE MERGED 2005/09/20 16:22:20 dr 1.35.4.8: #i54221# stop reading control name at NUL char 2005/08/11 08:31:10 dr 1.35.4.7: #i10000# 2005/08/10 16:22:15 dr 1.35.4.6: RESYNC: (1.35-1.36); FILE MERGED 2005/08/10 12:24:58 dr 1.35.4.5: #i47246# drawing layer import reworked 2005/08/10 10:19:38 dr 1.35.4.4: #i47246# drawing layer import reworked - don't use empty charts 2005/08/09 16:29:37 dr 1.35.4.3: #i47246# drawing layer import reworked 2005/06/23 12:03:11 dr 1.35.4.2: #i38718# remove unneeded include 2005/06/23 11:48:40 dr 1.35.4.1: #i38718# find module for macros without module name


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [b4838489f9301232a384b36ef6b315e4f501046e]

INTEGRATION: CWS dr37 (1.17.4); FILE MERGED 2005/08/09 16:29:37 dr 1.17.4.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [2033de51ba2b8f585adcd5e89935320a718ddeaf]

INTEGRATION: CWS dr37 (1.2.4); FILE MERGED 2005/08/09 16:29:36 dr 1.2.4.11: #i47246# drawing layer import reworked 2005/08/08 16:08:32 dr 1.2.4.10: #i49218# delay loading of point labels 2005/07/14 15:51:10 dr 1.2.4.9: #i49218# comments 2005/07/11 16:31:01 dr 1.2.4.8: #i49218# load legend from primary or secondary axes set 2005/07/08 14:28:12 dr 1.2.4.7: #i51639# last changes 2005/07/08 07:28:16 dr 1.2.4.6: #i51639# create default series formatting if missing in file 2005/07/06 15:43:31 dr 1.2.4.5: #i51639# attach data point formats after loading all series 2005/06/27 16:31:04 dr 1.2.4.4: #i51270# attached label types: missing 'value only' in pie charts 2005/05/13 16:15:44 dr 1.2.4.3: #i49241# import pie-to-pie and pie-to-bar as pie chart 2005/04/26 16:54:59 dr 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2005/04/19 13:56:08 dr 1.2.4.1: #i47745# support for invisible plot frame


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [7aee564c66425680b2c82d8442008fdeffaaa14b]

INTEGRATION: CWS dr37 (1.8.4); FILE MERGED 2005/07/12 14:53:56 dr 1.8.4.3: #i48185# assertion removed 2005/04/21 10:57:14 dr 1.8.4.2: #i46627# 2005/04/19 14:25:47 dr 1.8.4.1: #i46627# use default script type for blank cells


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [30369841d80f1463429104aa1d631224c173e9ee]

INTEGRATION: CWS dr37 (1.18.34); FILE MERGED 2005/05/10 14:19:27 dr 1.18.34.1: #i46627# use default script type for blank cells


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [4abc80de2d7545eabbe5c26e746f8c9353d13470]

INTEGRATION: CWS dr37 (1.3.36); FILE MERGED 2005/04/19 14:47:16 dr 1.3.36.1: #i47228# svExternal/ocMacro tokens can be macro calls or missing defined names


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [6c8a9329719529aa6314ff1d06fb744155b72df4]

INTEGRATION: CWS dr37 (1.5.36); FILE MERGED 2005/07/25 12:18:21 dr 1.5.36.5: #i52444# handle empty error cells 2005/06/17 12:13:23 dr 1.5.36.4: #i50253# add spaces before token 2005/06/17 10:02:35 dr 1.5.36.3: #i50253# import/export error codes 2005/04/19 14:47:15 dr 1.5.36.2: #i47228# svExternal/ocMacro tokens can be macro calls or missing defined names 2005/03/23 16:14:43 dr 1.5.36.1: #i44907# do not delete formula if ocStop token follows


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [2e0c9f77e7ee8011a1da5b45b8ab2b25420163f1]

INTEGRATION: CWS dr37 (1.11.4); FILE MERGED 2005/08/09 16:29:36 dr 1.11.4.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [2884722d3fa3de569bceef5a5799ae4f2eb3eb58]

INTEGRATION: CWS dr37 (1.53.4); FILE MERGED 2005/08/09 16:29:36 dr 1.53.4.2: #i47246# drawing layer import reworked 2005/06/06 15:06:50 dr 1.53.4.1: #i48139# import/export doc option 'Calc as shown'


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff0a3f7d56dc382d730e8e8000d90b9ea050c0d9]

INTEGRATION: CWS dr37 (1.20.36); FILE MERGED 2005/06/07 18:52:25 dr 1.20.36.1: #i50248# speed up shared formula import (by jodygoldberg)


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [c8e88b6b2e379ae88a2875b55669331dd0de5f21]

INTEGRATION: CWS dr37 (1.74.4); FILE MERGED 2005/08/10 14:41:41 dr 1.74.4.2: #i52955# set displayed sheet from WINDOW1 record 2005/08/09 16:29:35 dr 1.74.4.1: #i47246# drawing layer import reworked


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [9f2da47a41b9c675ac8bed449f359b2cf8319913]

INTEGRATION: CWS dr37 (1.54.4); FILE MERGED 2005/08/10 11:56:25 dr 1.54.4.1: #i53062# endless loop with outline in row 65536


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [d79b3103d8b15d6c84bf2046298dbc66645474ff]

INTEGRATION: CWS dr37 (1.106.4); FILE MERGED 2005/08/09 16:29:35 dr 1.106.4.2: #i47246# drawing layer import reworked 2005/06/06 15:06:50 dr 1.106.4.1: #i48139# import/export doc option 'Calc as shown'


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [d8461c2cef235bda4ea24ad2475e78303c1c4560]

INTEGRATION: CWS dr37 (1.34.36); FILE MERGED 2005/06/20 13:12:30 dr 1.34.36.3: #i48496# convert cell:cell to single range 2005/06/17 10:02:34 dr 1.34.36.2: #i50253# import/export error codes 2005/05/20 12:14:25 dr 1.34.36.1: #122885# skip invalid sheet references


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [2a19d9723ba2ee43d0bc94027a816f0c862ffb30]

INTEGRATION: CWS dr37 (1.34.36); FILE MERGED 2005/06/20 13:18:34 dr 1.34.36.3: #i48496# comment 2005/06/20 13:12:29 dr 1.34.36.2: #i48496# convert cell:cell to single range 2005/06/17 10:02:34 dr 1.34.36.1: #i50253# import/export error codes


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [f829002c333cfabedf0d0ad39ae2a28bc22de23c]

INTEGRATION: CWS dr37 (1.59.36); FILE MERGED 2005/06/06 15:06:49 dr 1.59.36.1: #i48139# import/export doc option 'Calc as shown'


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [aa5a1b40c9c7391b79d605776ed6a464109ecde5]

INTEGRATION: CWS dr37 (1.27.4); FILE MERGED 2005/04/19 14:53:26 dr 1.27.4.1: #i47438# hide remaining rows in sheet


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [fb8c23fc9aaf9b5ee14178e47568b62d0f57833e]

INTEGRATION: CWS dr37 (1.78.4); FILE MERGED 2005/08/10 14:41:40 dr 1.78.4.7: #i52955# set displayed sheet from WINDOW1 record 2005/08/09 16:29:34 dr 1.78.4.6: #i47246# drawing layer import reworked 2005/07/26 12:49:06 dr 1.78.4.5: dump MsofbtSp 2005/07/20 15:42:12 dr 1.78.4.4: dump workspace files 2005/04/18 15:46:43 dr 1.78.4.3: trend lines 2005/04/13 09:08:12 dr 1.78.4.2: error bars 2005/04/08 14:02:13 dr 1.78.4.1: #i46839# INT8!=sal_Int8 for unx* (signed char vs. char) but equal for wnt* (signed char both), patch by mmeeks


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [9ac5ee9e6a612b4b0650fbd0f1a091cb4ef9c2c0]

INTEGRATION: CWS dr37 (1.3.346); FILE MERGED 2005/07/15 10:15:11 er 1.3.346.1: #i51309# update absolute (and only absolute) references of shared formulas also if mixed relative/absolute


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [b72f83782edc2473ca634b67d532a8a0cdccb627]

INTEGRATION: CWS dr37 (1.5.346); FILE MERGED 2005/04/22 14:37:56 nn 1.5.346.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [2daa58b9c4d3ca63dee14cf5e3b212344879efab]

INTEGRATION: CWS dr37 (1.15.4); FILE MERGED 2005/05/31 18:48:31 er 1.15.4.2: #i50145# correct use of obtaining error code values of ScMatrix 2005/05/03 12:15:03 er 1.15.4.1: #i31574# proper LUP decomposition according to 'Introduction to Algorithms' by Cormen, Leiserson, Rivest, Stein.


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ae1ac7614b561d31716baacc2979b0a018b9f304]

INTEGRATION: CWS dr37 (1.12.136); FILE MERGED 2005/07/20 15:20:22 er 1.12.136.1: #i26022# ScPoissonDist: use a different numerical approach; patch contributed by Kohei Yoshida <kohei@ooo>


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [18767ec81e6166f660a01a0e12959f0f55e86bc9]

INTEGRATION: CWS dr37 (1.34.4); FILE MERGED 2005/08/08 12:38:09 er 1.34.4.2: #i52584# ScIfJump: don't override number format with NUMBERFORMAT_UNDEFINED in paths 2005/05/26 13:20:47 er 1.34.4.1: #i49906# ScRow, ScColumn: create matrix if in matrix and no parameter given


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [6fe634847dc9c3dc2c65e1782522633e49a1fde6]

INTEGRATION: CWS dr37 (1.3.346); FILE MERGED 2005/04/22 14:37:56 nn 1.3.346.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [48294809a38135bb556a3d52c89c32e6c1053d90]

INTEGRATION: CWS dr37 (1.12.84); FILE MERGED 2005/04/22 14:37:56 nn 1.12.84.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [4515442b368dec04aaa21e781a9d4cfeebe2c9bf]

INTEGRATION: CWS dr37 (1.52.136); FILE MERGED 2005/07/15 10:15:10 er 1.52.136.1: #i51309# update absolute (and only absolute) references of shared formulas also if mixed relative/absolute


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [8cd864321fae25636d6f3ad4657f780e7bd7714d]

INTEGRATION: CWS dr37 (1.2.346); FILE MERGED 2005/07/15 10:15:10 er 1.2.346.1: #i51309# update absolute (and only absolute) references of shared formulas also if mixed relative/absolute


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [6d726b2db553c3ae09629494d1fbf22b9b283cc3]

INTEGRATION: CWS dr37 (1.20.4); FILE MERGED 2005/05/18 11:15:39 dr 1.20.4.2: RESYNC: (1.20-1.21); FILE MERGED 2005/05/03 12:22:51 er 1.20.4.1: #i31574# local LUP decomposition


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [bfc7ac2b874993796579d3790fca32821d2d936d]

INTEGRATION: CWS dr37 (1.13.8); FILE MERGED 2005/07/15 16:36:24 er 1.13.8.1: #i51862# implement and call UpdateReference and UpdateMoveTab for ScValidationDataList and entries


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [c5970ac77052421ad8b4d3dbb30f549c4023abd8]

INTEGRATION: CWS dr37 (1.11.150); FILE MERGED 2005/04/27 18:19:38 nn 1.11.150.1: #i48009# calculate value for lcl_ValueString outside of if-statement


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [46d2078910a962b4bbcd96296a94a76584b5402a]

INTEGRATION: CWS dr37 (1.32.4); FILE MERGED 2005/07/04 13:31:04 nn 1.32.4.1: #i51445# handle merged cells extending from the deleted cells


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [21e34ab5416bb6fba336d069497365cac60d8f0d]

INTEGRATION: CWS dr37 (1.12.4); FILE MERGED 2005/06/07 12:29:53 dr 1.12.4.1: #i49783# initialize vars


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [685a5a15c096e30226f8a9743bad6c04aa5fc976]

INTEGRATION: CWS dr37 (1.11.68); FILE MERGED 2005/07/28 12:30:40 nn 1.11.68.1: #i52547# don't use the incomplete date hierarchy implementation


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a9995676d90e1b6a6b19f0728df62620b1990a3e]

INTEGRATION: CWS dr37 (1.15.68); FILE MERGED 2005/04/22 14:37:34 nn 1.15.68.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [6251a82de935a4ddc312b0f5ba35c8d4019a71b3]

INTEGRATION: CWS dr37 (1.64.44); FILE MERGED 2005/07/15 16:36:24 er 1.64.44.6: #i51862# implement and call UpdateReference and UpdateMoveTab for ScValidationDataList and entries 2005/05/10 16:41:43 dr 1.64.44.5: #i48491# convert to valid sheet names 2005/05/10 16:29:12 dr 1.64.44.4: #i48491# convert to valid sheet names 2005/04/22 14:37:34 nn 1.64.44.3: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets 2005/04/06 08:36:43 dr 1.64.44.2: RESYNC: (1.64-1.65); FILE MERGED 2005/04/01 15:36:22 sab 1.64.44.1: #i24932#; last changed row/column has to be different from the number given back is completly run through


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [190583cfe907f295b12892f3eaf162ea340198bd]

INTEGRATION: CWS dr37 (1.38.108); FILE MERGED 2005/07/28 08:42:59 nn 1.38.108.3: #i52120# prevent duplicate linked areas in the same cell 2005/05/03 16:11:55 nn 1.38.108.2: #i48433# ContinueOnlineSpelling: set bInsertingFromOtherDoc flag 2005/04/22 14:37:33 nn 1.38.108.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [831c9643de497fe2d8e0354929a8df966a03a12c]

INTEGRATION: CWS dr37 (1.27.36); FILE MERGED 2005/07/15 16:36:23 er 1.27.36.1: #i51862# implement and call UpdateReference and UpdateMoveTab for ScValidationDataList and entries


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [5bb849ddd45cd50cec40c7b562cbb3e97f610a79]

INTEGRATION: CWS dr37 (1.50.18); FILE MERGED 2005/07/15 16:36:23 er 1.50.18.1: #i51862# implement and call UpdateReference and UpdateMoveTab for ScValidationDataList and entries


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [26ee7670318de5ac13f12ef20365556e88b786b2]

INTEGRATION: CWS dr37 (1.16.88); FILE MERGED 2005/07/26 16:35:54 nn 1.16.88.1: #i52342# CloneCell: create notes with destination document


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec17fd72eb4d58e55fab63e1a1cf608d4a20a841]

INTEGRATION: CWS dr37 (1.16.4); FILE MERGED 2005/04/27 18:20:39 nn 1.16.4.1: #i48051# UpdateInsertTab: also update pAttrArray


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [54319e866a2d56430552fe3529387bb68d61e032]

INTEGRATION: CWS dr37 (1.8.18); FILE MERGED 2005/07/15 16:36:23 er 1.8.18.1: #i51862# implement and call UpdateReference and UpdateMoveTab for ScValidationDataList and entries


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [205bbe86b1bd81592164633e6741e313795667e3]

INTEGRATION: CWS dr37 (1.5.18); FILE MERGED 2005/05/31 18:48:30 er 1.5.18.1: #i50145# correct use of obtaining error code values of ScMatrix


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [84b76fa00daec4daccfe3069ed4eab95ab21802d]

INTEGRATION: CWS dr37 (1.3.346); FILE MERGED 2005/04/22 14:37:08 nn 1.3.346.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [deab3736ce0addb5b2b9c82409e9e06168b7c79f]

INTEGRATION: CWS dr37 (1.9.68); FILE MERGED 2005/04/22 14:37:07 nn 1.9.68.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec2a9dd24da736f8c526340eb7c2ac0ad5d1ef3f]

INTEGRATION: CWS dr37 (1.86.18); FILE MERGED 2005/05/10 16:28:47 dr 1.86.18.2: #i48491# convert to valid sheet names 2005/04/22 14:37:07 nn 1.86.18.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [b7fe3649f7fa773d0a9c9fe5bfce7bbfcc434d3b]

INTEGRATION: CWS dr37 (1.3.346); FILE MERGED 2005/04/22 14:37:07 nn 1.3.346.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [3958fdb4b95484ea3c72680796ccc76f6b06f9cc]

INTEGRATION: CWS dr37 (1.8.84); FILE MERGED 2005/04/22 14:37:06 nn 1.8.84.1: #i8180# remove db ranges/linked areas/labels/datapilot on deleted sheets


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [03685820e9974afb1691d72c7755d37e7c20802e]

INTEGRATION: CWS fwk20 (1.30.116); FILE MERGED 2005/08/31 09:09:34 cd 1.30.116.1: #i53949# Added SFX_CHILDWIN_FORCEDOCK to mark non-floatable child windows


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [d5117dbd0ce7cdc278226f926715529e681ae2a2]

INTEGRATION: CWS encup (1.33.350); FILE MERGED 2005/04/29 16:05:58 ihi 1.33.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [c50a4a04526a900f91fe40f3b4a9d124d9e9e04a]

INTEGRATION: CWS encup (1.72.156); FILE MERGED 2005/04/29 16:05:54 ihi 1.72.156.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [8ed6bfe8fd7dcc5a16a24800d97b8d324d0ee323]

INTEGRATION: CWS encup (1.26.350); FILE MERGED 2005/04/29 16:05:54 ihi 1.26.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [75fc14c58eba20f2f01284faa39dd91da4f09d9a]

INTEGRATION: CWS encup (1.37.350); FILE MERGED 2005/04/29 16:05:53 ihi 1.37.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [13d88ed364d22b8c7afb9dc202d7fdb17ecaee84]

INTEGRATION: CWS encup (1.26.28); FILE MERGED 2005/04/29 16:05:53 ihi 1.26.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [e526f9b7b5878433bf15ccee25a06355d4581bd0]

INTEGRATION: CWS encup (1.20.350); FILE MERGED 2005/04/29 16:05:52 ihi 1.20.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [27c709eb900048768b22e1b0387de89c04b8bba8]

INTEGRATION: CWS encup (1.82.70); FILE MERGED 2005/04/29 16:05:52 ihi 1.82.70.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [682d70f1404564f451f5fe13038f2c69d7b4f79a]

INTEGRATION: CWS encup (1.82.112); FILE MERGED 2005/04/29 16:05:47 ihi 1.82.112.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [8e3d1157f30603e5814e21d7e9635c45255d640c]

INTEGRATION: CWS encup (1.44.270); FILE MERGED 2005/04/29 16:05:46 ihi 1.44.270.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [bc5b4c72c4c9ce8602d75c16bbdecb6407ce4060]

INTEGRATION: CWS encup (1.52.350); FILE MERGED 2005/04/29 16:05:46 ihi 1.52.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [dd8ffd3b4c04c0135f19bb47c79f9d06ed2bf746]

INTEGRATION: CWS encup (1.61.62); FILE MERGED 2005/04/29 16:05:45 ihi 1.61.62.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [706f62bc1e319b0edd15428f0b7d47a85c45fb25]

INTEGRATION: CWS encup (1.33.350); FILE MERGED 2005/04/29 16:05:44 ihi 1.33.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [6fd697fcd05718c1b4d76fc50dbad63e020a3940]

INTEGRATION: CWS encup (1.32.28); FILE MERGED 2005/04/29 16:05:44 ihi 1.32.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [608ae5492fcbe70baec5c9cb27549c77b48c0542]

INTEGRATION: CWS encup (1.69.350); FILE MERGED 2005/04/29 16:05:43 ihi 1.69.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [3919835d53eb39dfc6d391aa534dbaa9950b9471]

INTEGRATION: CWS encup (1.31.350); FILE MERGED 2005/04/29 16:05:42 ihi 1.31.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [8d2b146e967c724b467b5cc8992d4b400c0de51f]

INTEGRATION: CWS encup (1.61.108); FILE MERGED 2005/04/29 16:05:41 ihi 1.61.108.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [a9b550996c8817eab03fdb6b6d6fe970927fe6bd]

INTEGRATION: CWS encup (1.54.28); FILE MERGED 2005/04/29 16:05:40 ihi 1.54.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [45cd388c777a15cd895088a61f4afba8f6432b45]

INTEGRATION: CWS encup (1.42.28); FILE MERGED 2005/04/29 16:05:40 ihi 1.42.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [819da4b1de1c2ece23e847ddfc3aaf222e75c95c]

INTEGRATION: CWS encup (1.41.28); FILE MERGED 2005/04/29 16:05:40 ihi 1.41.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [502d1ad29acaf3614452c6173b851b5ea57e06c1]

INTEGRATION: CWS encup (1.28.28); FILE MERGED 2005/04/29 16:05:39 ihi 1.28.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [ef694d5e2c8da8533601a471833fbaba7a4cbf42]

INTEGRATION: CWS encup (1.40.350); FILE MERGED 2005/04/29 16:05:38 ihi 1.40.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [12a78fe6fd52e262e50a83a8dc4893e9632cc4b7]

INTEGRATION: CWS encup (1.52.350); FILE MERGED 2005/04/29 16:05:38 ihi 1.52.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [f66d25a3be111c738312c1a0510c7b2446b86ecd]

INTEGRATION: CWS encup (1.50.28); FILE MERGED 2005/04/29 16:05:37 ihi 1.50.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [9330c68a6f4b0570f41c803953bf05636db9154d]

INTEGRATION: CWS encup (1.42.108); FILE MERGED 2005/04/29 16:05:37 ihi 1.42.108.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [3f5d92b46cea6fbafe361670bd9a09b91da657da]

INTEGRATION: CWS encup (1.41.350); FILE MERGED 2005/08/06 00:08:30 ihi 1.41.350.2: RESYNC: (1.41-1.42); FILE MERGED 2005/04/29 16:05:36 ihi 1.41.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [6d038a0990db53a7e0e9760e829229ccbf525f31]

INTEGRATION: CWS encup (1.27.350); FILE MERGED 2005/04/29 16:05:35 ihi 1.27.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [a6e32e1176c3a009b101f3eceebc909a24b698c2]

INTEGRATION: CWS encup (1.32.108); FILE MERGED 2005/04/29 16:05:35 ihi 1.32.108.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [30f1e93f4b57569f7b7440967f71da3e012f086e]

INTEGRATION: CWS encup (1.29.28); FILE MERGED 2005/04/29 16:05:35 ihi 1.29.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [e5cbb99da5130fd7375d2521cc4818fefd21eab2]

INTEGRATION: CWS encup (1.31.28); FILE MERGED 2005/04/29 16:05:34 ihi 1.31.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [9dc3e960e56068d2ab6177a99c05586e5f826bc7]

INTEGRATION: CWS encup (1.26.28); FILE MERGED 2005/04/29 16:05:34 ihi 1.26.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [3346292ee46064f1fa0bc0ab6b6988174d4c1af8]

INTEGRATION: CWS encup (1.45.28); FILE MERGED 2005/04/29 16:05:33 ihi 1.45.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [737ce70fb51f8e3748dd43725339eef0fca8e7a2]

INTEGRATION: CWS encup (1.31.28); FILE MERGED 2005/04/29 16:05:33 ihi 1.31.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [c08960a41370c4311f6ed2de85649841db4077c6]

INTEGRATION: CWS encup (1.63.270); FILE MERGED 2005/04/29 16:05:32 ihi 1.63.270.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [77b359e2420053e89c25be6b0107309274a8f864]

INTEGRATION: CWS encup (1.23.70); FILE MERGED 2005/04/29 16:05:31 ihi 1.23.70.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [43015e1a83900b55ccb2f3804a1c920bf6a85b7f]

INTEGRATION: CWS encup (1.41.350); FILE MERGED 2005/04/29 16:05:30 ihi 1.41.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [d6a30bec79d17f0fddf8d3ea73fbbf1836af42ad]

INTEGRATION: CWS encup (1.40.108); FILE MERGED 2005/04/29 16:05:30 ihi 1.40.108.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [af91970a199c7d14a293eeb6fac02f147e9ad74d]

INTEGRATION: CWS encup (1.35.292); FILE MERGED 2005/04/29 16:05:30 ihi 1.35.292.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [5d429e47c0b8dd3a8814039d3a893502853b3089]

INTEGRATION: CWS encup (1.56.28); FILE MERGED 2005/04/29 16:05:29 ihi 1.56.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [2647b4a08ada27097676a6c631565e00f3468246]

INTEGRATION: CWS encup (1.34.350); FILE MERGED 2005/04/29 16:05:29 ihi 1.34.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4b7821da3fff7d4d89ae1b8dc3fa377b26671c99]

INTEGRATION: CWS encup (1.35.28); FILE MERGED 2005/04/29 16:05:28 ihi 1.35.28.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [b1021c23a356e281c2499c452854d47df6f1e56f]

INTEGRATION: CWS encup (1.45.350); FILE MERGED 2005/04/29 16:05:27 ihi 1.45.350.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [5ddd2805aea1d47b9267cdefe58c62295b730152]

INTEGRATION: CWS encup (1.29.348); FILE MERGED 2005/04/29 16:05:27 ihi 1.29.348.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [0a65e5a5a689971434222e770f4ec9c639cd4937]

INTEGRATION: CWS encup (1.2.52); FILE MERGED 2005/04/29 16:03:49 ihi 1.2.52.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [5cc34c8a574d9c7c97f20f750267143850da30e6]

INTEGRATION: CWS encup (1.3.52); FILE MERGED 2005/04/29 16:03:49 ihi 1.3.52.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [dda93996d06b57d04d176214f4d53ab5ad3175cf]

INTEGRATION: CWS encup (1.2.50); FILE MERGED 2005/04/29 16:03:49 ihi 1.2.50.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [3c9af53281c9eb07266cfd4f39492f388b1ea577]

INTEGRATION: CWS encup (1.3.32); FILE MERGED 2005/04/29 16:03:49 ihi 1.3.32.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [cdf7ac89975fcf8b99dbae7517a59f676091da85]

INTEGRATION: CWS encup (1.4.50); FILE MERGED 2005/04/29 16:03:48 ihi 1.4.50.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [b381cb5c3dc25503012b3bff98bd16933a896361]

INTEGRATION: CWS encup (1.3.50); FILE MERGED 2005/04/29 16:03:48 ihi 1.3.50.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [e94c24bb4c94295b133f101b6c188affd60b4663]

INTEGRATION: CWS encup (1.2.50); FILE MERGED 2005/04/29 16:03:47 ihi 1.2.50.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [f3c723a0a484caedc9567fc9e6450a9876c9a04f]

INTEGRATION: CWS calcsoli (1.11.252); FILE MERGED 2005/08/26 10:44:43 nn 1.11.252.1: #i53728# workaround for solaris/x86 compiler problem


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [ffaae9dcd542f6a0c27ffc15e2643491da3754cb]

INTEGRATION: CWS calcperf01 (1.90.54); FILE MERGED 2005/07/26 14:00:41 sab 1.90.54.2: RESYNC: (1.90-1.91); FILE MERGED 2005/06/03 13:20:18 sab 1.90.54.1: #i50282#; make GetInputString and GetOutputString static, so I can use them in XML filter


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [b8263a1f4203f1e8bdc7ffd9c7b9d3870931c207]

INTEGRATION: CWS calcperf01 (1.34.54); FILE MERGED 2005/06/23 15:19:27 sab 1.34.54.1: #i50282#; call Progressbar more seldom


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [99dc5e416548a41963a67ea0d34ae6b432c27a7a]

INTEGRATION: CWS calcperf01 (1.87.56); FILE MERGED 2005/06/23 15:19:26 sab 1.87.56.1: #i50282#; call Progressbar more seldom


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4ea3e8e96f5b118c643680d354110ec5c524a95d]

INTEGRATION: CWS calcperf01 (1.114.54); FILE MERGED 2005/06/23 15:19:26 sab 1.114.54.1: #i50282#; call Progressbar more seldom


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [189bd272d9f96a0389d3073f39fa6227080cbc42]

INTEGRATION: CWS calcperf01 (1.79.56); FILE MERGED 2005/06/23 15:19:26 sab 1.79.56.2: #i50282#; call Progressbar more seldom 2005/06/03 13:20:50 sab 1.79.56.1: #i50282#; use Core instead of API


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [30476ed5391d42c73b6980364881a15bdd254c17]

INTEGRATION: CWS calcperf01 (1.193.52); FILE MERGED 2005/07/26 13:54:33 sab 1.193.52.3: RESYNC: (1.193-1.194); FILE MERGED 2005/06/23 15:19:25 sab 1.193.52.2: #i50282#; call Progressbar more seldom 2005/06/03 13:20:49 sab 1.193.52.1: #i50282#; use Core instead of API


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [c2874b6d82100186d96cb70da7b20c8f457535a1]

INTEGRATION: CWS calcperf01 (1.21.56); FILE MERGED 2005/06/03 13:20:48 sab 1.21.56.1: #i50282#; use Core instead of API


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [b052f67ac4b1d1fe11fa79f571b36cea26ad2b13]

INTEGRATION: CWS calcperf01 (1.83.56); FILE MERGED 2005/06/23 15:19:25 sab 1.83.56.2: #i50282#; call Progressbar more seldom 2005/06/03 13:20:48 sab 1.83.56.1: #i50282#; use Core instead of API


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [b8e044d65f182e26da9ba81e40fe6eb0974b0859]

INTEGRATION: CWS calcperf01 (1.28.56); FILE MERGED 2005/06/03 13:20:47 sab 1.28.56.1: #i50282#; use Core instead of API


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [77aeb86231844b026fad2150f4a67ce2b69199ac]

INTEGRATION: CWS calcperf01 (1.39.56); FILE MERGED 2005/06/03 13:20:46 sab 1.39.56.1: #i50282#; use Core instead of API


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [cc0c478892586f551638ba8d60a92d1831a4f375]

INTEGRATION: CWS calcperf01 (1.21.56); FILE MERGED 2005/06/03 13:20:01 sab 1.21.56.1: #i50282#; make GetInputString and GetOutputString static, so I can use them in XML filter


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [5df5890e66f4988bdade10d89e3e7f992c6fb8af]

INTEGRATION: CWS autocurrency (1.3.252); FILE MERGED 2005/05/17 14:46:18 er 1.3.252.1: #i40902# use SvNumberFormatter::GetIndexPuttingAndConverting; convert legacy 'automatic' currency formats to new fixed currency formats


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [6e07d73287e6cca0a10325eb4c4efe7526a3029f]

INTEGRATION: CWS encup (1.22.42); FILE MERGED 2005/04/29 15:52:37 ihi 1.22.42.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [b9876ad26e503c0fda6a145e2cc413f9dd96dc3e]

INTEGRATION: CWS encup (1.25.42); FILE MERGED 2005/04/29 15:52:36 ihi 1.25.42.1: #i40603# German strings now UTF8 encoded


2005-09-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [16eb5a111fa39c7a835bf7056015ef8f00710619]

INTEGRATION: CWS encup (1.64.32); FILE MERGED 2005/04/29 15:52:33 ihi 1.64.32.1: #i40603# German strings now UTF8 encoded


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [78c41694a1ea2a9f3905f3c50040f4a8e8036412]

INTEGRATION: CWS ooo19126 (1.1.1.1.238); FILE MERGED 2005/09/05 17:00:26 rt 1.1.1.1.238.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c9c8e268c6516d32fc57934c1312a0256f8d515e]

INTEGRATION: CWS ooo19126 (1.10.96); FILE MERGED 2005/09/05 17:00:26 rt 1.10.96.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [294e704880fd7fb183b0c5baaff6cbc7119f1f07]

INTEGRATION: CWS ooo19126 (1.22.64); FILE MERGED 2005/09/05 17:00:24 rt 1.22.64.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b3fe552b1072c6c5bf1871efc26545f272c7a0b9]

INTEGRATION: CWS ooo19126 (1.3.216); FILE MERGED 2005/09/05 17:00:23 rt 1.3.216.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f846d56df9033d1f1531d02b54f85304eae70c94]

INTEGRATION: CWS ooo19126 (1.1.216); FILE MERGED 2005/09/05 17:00:23 rt 1.1.216.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5eb1d768b2b5a9bed914cd2507c079da1147ded1]

INTEGRATION: CWS ooo19126 (1.9.64); FILE MERGED 2005/09/05 17:00:23 rt 1.9.64.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [312cb187a1e9f5664f2cb27cac0fcf45ede0851b]

INTEGRATION: CWS ooo19126 (1.4.216); FILE MERGED 2005/09/05 17:00:23 rt 1.4.216.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4327933341704a584ab24de1d0f2fecd78c69318]

INTEGRATION: CWS ooo19126 (1.12.96); FILE MERGED 2005/09/05 17:00:21 rt 1.12.96.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4c7c3272f4c9c2a2596caa5290c4b39185c71cb4]

INTEGRATION: CWS ooo19126 (1.16.64); FILE MERGED 2005/09/05 17:00:07 rt 1.16.64.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c1bf290c9c5eb6afbbd760a67adc32ed77340214]

INTEGRATION: CWS ooo19126 (1.2.156); FILE MERGED 2005/09/05 17:00:07 rt 1.2.156.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7eb90f151507794c369bafded30a34e585e7892c]

INTEGRATION: CWS ooo19126 (1.3.88); FILE MERGED 2005/09/05 17:00:07 rt 1.3.88.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [01626244ebd6ae9e59b88ec60f3d8579e5704d0b]

INTEGRATION: CWS ooo19126 (1.28.34); FILE MERGED 2005/09/05 17:00:06 rt 1.28.34.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cf778a5399dd76d446494ccb048c0527627088aa]

INTEGRATION: CWS ooo19126 (1.47.26); FILE MERGED 2005/09/05 17:00:06 rt 1.47.26.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [18bd76c33921b8292b8936010dd74e953f1366c6]

INTEGRATION: CWS ooo19126 (1.6.172); FILE MERGED 2005/09/05 17:00:06 rt 1.6.172.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bd88b85d6a00b72b74110a59321e88212c7e4cb3]

INTEGRATION: CWS ooo19126 (1.11.64); FILE MERGED 2005/09/05 17:00:05 rt 1.11.64.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [736f3c7b3ca5a33814442c8cce864119d7808eff]

INTEGRATION: CWS ooo19126 (1.25.64); FILE MERGED 2005/09/05 17:00:05 rt 1.25.64.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6ca2c7afacd0cead35018fd1968e807d649095f9]

INTEGRATION: CWS ooo19126 (1.2.220); FILE MERGED 2005/09/05 17:00:04 rt 1.2.220.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5f6e06c9a35e8f6018780ed3433e601054bd6a3c]

INTEGRATION: CWS ooo19126 (1.64.54); FILE MERGED 2005/09/05 17:00:00 rt 1.64.54.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d8864a7d2671d10d8702fea8ce334a667fee3f3e]

INTEGRATION: CWS ooo19126 (1.14.64); FILE MERGED 2005/09/05 17:00:00 rt 1.14.64.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [24202f7adf71ab9ecf1f1682afab08463f5bddd7]

INTEGRATION: CWS ooo19126 (1.4.216); FILE MERGED 2005/09/05 17:00:00 rt 1.4.216.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2399ed6fa631e11a70340d543e386131dc3e06e6]

INTEGRATION: CWS ooo19126 (1.38.48); FILE MERGED 2005/09/05 16:59:59 rt 1.38.48.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [35cd47b33963558f73996c583dc42d47065700ac]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:57 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [aad3efbe98103718301a8af6f4e6faff66f89fd4]

INTEGRATION: CWS ooo19126 (1.2.154); FILE MERGED 2005/09/05 15:09:57 rt 1.2.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [251b699db00dcfc403286974868912c75e845561]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:56 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7c3cd8e08161baa03a8f1f39c913376d03c39ab9]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:55 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e80a2195ee2b03dd2c0a6723981d6ec6a5078ff5]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:54 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [28162b70694dd578cc9d7256dd38bfe52706eabb]

INTEGRATION: CWS ooo19126 (1.4.274); FILE MERGED 2005/09/05 15:09:53 rt 1.4.274.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8696cd3f876f3598fd255b536ecab85441fe33b0]

INTEGRATION: CWS ooo19126 (1.30.98); FILE MERGED 2005/09/05 15:09:52 rt 1.30.98.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eb5ab95ccd75534049143b68484334fd6fc46c72]

INTEGRATION: CWS ooo19126 (1.21.242); FILE MERGED 2005/09/05 15:09:52 rt 1.21.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4d1ce224a94efe2c3081b88932b8853334b0b4c1]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:51 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4e0dea6a9087b521f59ba2217c824e94d63cbc77]

INTEGRATION: CWS ooo19126 (1.9.328); FILE MERGED 2005/09/05 15:09:51 rt 1.9.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5c2322080f92a88c86ee7c83cb1223f55e4e3326]

INTEGRATION: CWS ooo19126 (1.27.328); FILE MERGED 2005/09/05 15:09:51 rt 1.27.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1856d855f204bfec2517bf44511ac297db8950a5]

INTEGRATION: CWS ooo19126 (1.21.122); FILE MERGED 2005/09/05 15:09:50 rt 1.21.122.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3a2f31bb991621c96f2ed20381dc27109b80e490]

INTEGRATION: CWS ooo19126 (1.8.146); FILE MERGED 2005/09/05 15:09:50 rt 1.8.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1d318e246aea29d308185cf6ce0004b7923a4e26]

INTEGRATION: CWS ooo19126 (1.37.42); FILE MERGED 2005/09/05 15:09:50 rt 1.37.42.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5bb8c7295cfd88a38f6e704221d2c50d5892014e]

INTEGRATION: CWS ooo19126 (1.32.116); FILE MERGED 2005/09/05 15:09:49 rt 1.32.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d3db2cab66b2e2ef1ba8cf24d666bfaea0036f3a]

INTEGRATION: CWS ooo19126 (1.30.44); FILE MERGED 2005/09/05 15:09:49 rt 1.30.44.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1cd2a7fc7f57c448779c65fd6809a0683407cab2]

INTEGRATION: CWS ooo19126 (1.26.154); FILE MERGED 2005/09/05 15:09:49 rt 1.26.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [014f1f0093f703ad1ba0fecc757ae33838293205]

INTEGRATION: CWS ooo19126 (1.52.88); FILE MERGED 2005/09/05 15:09:48 rt 1.52.88.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0faf356bc8c7ad1545a6659023d4acfefef5abb3]

INTEGRATION: CWS ooo19126 (1.9.104); FILE MERGED 2005/09/05 15:09:48 rt 1.9.104.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [402fa627d97c836482432ccd2fd09266e980f6e5]

INTEGRATION: CWS ooo19126 (1.8.194); FILE MERGED 2005/09/05 15:09:48 rt 1.8.194.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c18a723d952884bd148cd44da4258a3ac40ced60]

INTEGRATION: CWS ooo19126 (1.9.392); FILE MERGED 2005/09/05 15:09:47 rt 1.9.392.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [edf426ceeaeaa0daf6638e8b9b286af6a50253a4]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:09:47 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1743cb3c8f6e41a8ab5c06445d5e814e7e4a81c2]

INTEGRATION: CWS ooo19126 (1.3.326); FILE MERGED 2005/09/05 15:09:47 rt 1.3.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c24f7c77f75f5a3c19b9de4c2371d47e345357a3]

INTEGRATION: CWS ooo19126 (1.8.328); FILE MERGED 2005/09/05 15:09:46 rt 1.8.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [39f25817d7243a793a4186273604fab8bcf87b8a]

INTEGRATION: CWS ooo19126 (1.24.122); FILE MERGED 2005/09/05 15:09:46 rt 1.24.122.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d5b3b949e79d7529890d0153d173ff7d88793d96]

INTEGRATION: CWS ooo19126 (1.15.174); FILE MERGED 2005/09/05 15:09:46 rt 1.15.174.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e750640b047b83c1180b6155b0fc652273d167db]

INTEGRATION: CWS ooo19126 (1.7.354); FILE MERGED 2005/09/05 15:09:46 rt 1.7.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [990d4f5c8dc7c75c7aad5a1903c6b7d7fe7edf47]

INTEGRATION: CWS ooo19126 (1.3.326); FILE MERGED 2005/09/05 15:09:45 rt 1.3.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9547a0aa101a6d27782fd2990549f03316f2bdc7]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:09:45 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b2d2bdc6ae91a5b37767276dac2f5860c588eeba]

INTEGRATION: CWS ooo19126 (1.50.142); FILE MERGED 2005/09/05 15:09:44 rt 1.50.142.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bc140357d48717b29191fbff9a1e17229d0a45da]

INTEGRATION: CWS ooo19126 (1.25.326); FILE MERGED 2005/09/05 15:09:44 rt 1.25.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [db190a92600daebd13ba24ec2db69b31cbcf2e7b]

INTEGRATION: CWS ooo19126 (1.19.234); FILE MERGED 2005/09/05 15:09:44 rt 1.19.234.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9733f606694146a5c4514b28348f8baad47c3039]

INTEGRATION: CWS ooo19126 (1.9.326); FILE MERGED 2005/09/05 15:09:43 rt 1.9.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b2a170e95823b6c7d6688ca76411b4287d700de8]

INTEGRATION: CWS ooo19126 (1.16.190); FILE MERGED 2005/09/05 15:09:43 rt 1.16.190.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0faf4cc27020e1d2d1f10c23e5d2bc0cd742265b]

INTEGRATION: CWS ooo19126 (1.5.328); FILE MERGED 2005/09/05 15:09:43 rt 1.5.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dc25a0fa71f3d99f90a2efc8bebad91c65f6ef51]

INTEGRATION: CWS ooo19126 (1.44.306); FILE MERGED 2005/09/05 15:09:42 rt 1.44.306.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d3beb83f743f9edd1a2dd6e12de7b664386fd7fa]

INTEGRATION: CWS ooo19126 (1.12.326); FILE MERGED 2005/09/05 15:09:42 rt 1.12.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b087ae60e3c5dd522464e63725f9c51f15340c0a]

INTEGRATION: CWS ooo19126 (1.25.142); FILE MERGED 2005/09/05 15:09:41 rt 1.25.142.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [54ae21403d64140e04dca2386238a0161fd96877]

INTEGRATION: CWS ooo19126 (1.3.536); FILE MERGED 2005/09/05 15:09:41 rt 1.3.536.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2a8c240709fd7b034d20f5a1c3f1054060facc4f]

INTEGRATION: CWS ooo19126 (1.2.918); FILE MERGED 2005/09/05 15:09:41 rt 1.2.918.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [711ee67f2436d69be2b4c91583c5de0f5b3cf4c8]

INTEGRATION: CWS ooo19126 (1.10.326); FILE MERGED 2005/09/05 15:09:40 rt 1.10.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [331896edcbed5619df69fbe4fde40dc12168ad4a]

INTEGRATION: CWS ooo19126 (1.12.146); FILE MERGED 2005/09/05 15:09:40 rt 1.12.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7e2316463c601b0e31501d731e61a878994567cf]

INTEGRATION: CWS ooo19126 (1.3.146); FILE MERGED 2005/09/05 15:09:40 rt 1.3.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9c8730f5360967e6e1ca241e2056a6d81e5b766c]

INTEGRATION: CWS ooo19126 (1.2.328); FILE MERGED 2005/09/05 15:09:40 rt 1.2.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5e0a6e3ed9087f9e3fac72eab276dd2517785d57]

INTEGRATION: CWS ooo19126 (1.14.328); FILE MERGED 2005/09/05 15:09:39 rt 1.14.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c8a340ac78383d7f8c8ab9947de6a8f2f9e4d8f1]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:09:39 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [158ad3c492e01fd95d80b1947f72a0e9b7ef788e]

INTEGRATION: CWS ooo19126 (1.4.294); FILE MERGED 2005/09/05 15:09:39 rt 1.4.294.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5aa4a74028fd531e7e2edf0cb861c8966700f610]

INTEGRATION: CWS ooo19126 (1.42.54); FILE MERGED 2005/09/05 15:09:38 rt 1.42.54.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [127743e9fe54f7add80f4e09ec88fb1fa9b38882]

INTEGRATION: CWS ooo19126 (1.4.564); FILE MERGED 2005/09/05 15:09:38 rt 1.4.564.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2a23814ea5bec44190c404e349c0d982367e98b5]

INTEGRATION: CWS ooo19126 (1.24.146); FILE MERGED 2005/09/05 15:09:38 rt 1.24.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4c62cad2c91080961a316be3cff008443a0d93ed]

INTEGRATION: CWS ooo19126 (1.12.274); FILE MERGED 2005/09/05 15:09:37 rt 1.12.274.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [62f9c881c1b7a3833667c4125e8ad6eac63d7c63]

INTEGRATION: CWS ooo19126 (1.25.324); FILE MERGED 2005/09/05 15:09:37 rt 1.25.324.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6532e4e72f121ccbe25c512326fdf2dafa12f6c5]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:09:37 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f62ea045b3f23bcebc3a822ed29aec56bddef676]

INTEGRATION: CWS ooo19126 (1.2.920); FILE MERGED 2005/09/05 15:09:36 rt 1.2.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [61f28ae52ec7ca39a378ef4c7280d9784b3f38f5]

INTEGRATION: CWS ooo19126 (1.3.274); FILE MERGED 2005/09/05 15:09:36 rt 1.3.274.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ec74561569348ef4ef27b13537acb2eac1dc0a54]

INTEGRATION: CWS ooo19126 (1.18.102); FILE MERGED 2005/09/05 15:09:36 rt 1.18.102.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3eb006c350ebf19853b11712d4397304c222f14d]

INTEGRATION: CWS ooo19126 (1.45.128); FILE MERGED 2005/09/05 15:09:35 rt 1.45.128.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cea4bfd05754a59ec80ef73676cdcefb2c8d448d]

INTEGRATION: CWS ooo19126 (1.27.326); FILE MERGED 2005/09/05 15:09:35 rt 1.27.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f59e10d69dfbd3d8edc12f745c8c49ed5a659aff]

INTEGRATION: CWS ooo19126 (1.4.798); FILE MERGED 2005/09/05 15:09:34 rt 1.4.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e6ef4f15cd3979d0c7e44094b91c8f589a364ee1]

INTEGRATION: CWS ooo19126 (1.10.98); FILE MERGED 2005/09/05 15:09:34 rt 1.10.98.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cb586ccd7019e11dd0f517d2df55ce53aecd0fc1]

INTEGRATION: CWS ooo19126 (1.7.256); FILE MERGED 2005/09/05 15:09:34 rt 1.7.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3fcd530f649f22b62a65a6bcc9f8a725fdf1e819]

INTEGRATION: CWS ooo19126 (1.13.114); FILE MERGED 2005/09/05 15:09:33 rt 1.13.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [58a2a2c64ac11802715ccfd457587c9f7212f57e]

INTEGRATION: CWS ooo19126 (1.2.536); FILE MERGED 2005/09/05 15:09:33 rt 1.2.536.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f10cdfb7357f1656dbad6933fedad240ad55476c]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:33 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9951b299811706f771d4834b77c694a20eb3e713]

INTEGRATION: CWS ooo19126 (1.2.920); FILE MERGED 2005/09/05 15:09:32 rt 1.2.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d01bd365f2bfff3412833007de41e62105a009e0]

INTEGRATION: CWS ooo19126 (1.16.452); FILE MERGED 2005/09/05 15:09:32 rt 1.16.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7ee2b7a1cd1ecd81a9f81aaa5d3880850c56fa49]

INTEGRATION: CWS ooo19126 (1.14.326); FILE MERGED 2005/09/05 15:09:32 rt 1.14.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [728e3f8429a6fd44c5ec56ccb6e384a1bd3d8711]

INTEGRATION: CWS ooo19126 (1.26.322); FILE MERGED 2005/09/05 15:09:31 rt 1.26.322.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0b642d670341e21e21b39ec9a7aa425bcc0a7d50]

INTEGRATION: CWS ooo19126 (1.11.366); FILE MERGED 2005/09/05 15:09:31 rt 1.11.366.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fe73b14f0c9388735ef7d0d40cf6ae8649edbbc4]

INTEGRATION: CWS ooo19126 (1.8.242); FILE MERGED 2005/09/05 15:09:30 rt 1.8.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [51ef48965af71698f1dde5e3211183a203eec69f]

INTEGRATION: CWS ooo19126 (1.70.40); FILE MERGED 2005/09/05 15:09:30 rt 1.70.40.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2cc1af05a85545a52936a85fd8d638ca923c4c5c]

INTEGRATION: CWS ooo19126 (1.2.536); FILE MERGED 2005/09/05 15:09:29 rt 1.2.536.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e7b8884df331782e0ac47106511a8cfc2966938f]

INTEGRATION: CWS ooo19126 (1.3.926); FILE MERGED 2005/09/05 15:09:29 rt 1.3.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [896c0222ddf9e4e8078210429dac76a49fcb8104]

INTEGRATION: CWS ooo19126 (1.28.326); FILE MERGED 2005/09/05 15:09:28 rt 1.28.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [49b23c0fdd10880fd21b8309e9ad4085099a65cc]

INTEGRATION: CWS ooo19126 (1.23.154); FILE MERGED 2005/09/05 15:09:28 rt 1.23.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0a36b3dd6b121b6be8cb5737f131f5d3f75df61f]

INTEGRATION: CWS ooo19126 (1.37.144); FILE MERGED 2005/09/05 15:09:28 rt 1.37.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5295f2ce00fee7e47a586ef10bf3f9ed52054fe4]

INTEGRATION: CWS ooo19126 (1.20.124); FILE MERGED 2005/09/05 15:09:27 rt 1.20.124.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fc387dd7e3232ab3cb08ff51b41b250b24ec3fef]

INTEGRATION: CWS ooo19126 (1.6.234); FILE MERGED 2005/09/05 15:09:27 rt 1.6.234.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [29d78095e51d4e616656b9d7ffe6cb326a211649]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:27 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7cd5b4f6439346f172f898fbfd5fa396e8fbece8]

INTEGRATION: CWS ooo19126 (1.5.346); FILE MERGED 2005/09/05 15:09:26 rt 1.5.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [012dcbe5a5a89b3158c6b2951318f909bf322f8d]

INTEGRATION: CWS ooo19126 (1.2.918); FILE MERGED 2005/09/05 15:09:26 rt 1.2.918.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [38e168741fd80f8f3bf481ea2bfaeb933164d50b]

INTEGRATION: CWS ooo19126 (1.5.256); FILE MERGED 2005/09/05 15:09:26 rt 1.5.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d07ddf61343f3bd0c5415746d7e958e366c662d6]

INTEGRATION: CWS ooo19126 (1.9.116); FILE MERGED 2005/09/05 15:09:25 rt 1.9.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ada9cfa3ec6791181dafefcfaa0f3783d6301526]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:25 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8dc5253e02700bef36b9c415ba8ea8585a14720c]

INTEGRATION: CWS ooo19126 (1.10.328); FILE MERGED 2005/09/05 15:09:25 rt 1.10.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [969a7ffb9a2f0f8488595f588415d4a9c5424a35]

INTEGRATION: CWS ooo19126 (1.12.346); FILE MERGED 2005/09/05 15:09:24 rt 1.12.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [223951a8a21e8f03381801d9170993e0e3e37921]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:09:24 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3c99cbf42b7399daf63595fc57316070be34f9c6]

INTEGRATION: CWS ooo19126 (1.16.326); FILE MERGED 2005/09/05 15:09:24 rt 1.16.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [17abd34c5a53648babf8b97bf72d498d068e4505]

INTEGRATION: CWS ooo19126 (1.24.66); FILE MERGED 2005/09/05 15:09:23 rt 1.24.66.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5dbae7423096f0c308ea2f2b15b5f56d02f051aa]

INTEGRATION: CWS ooo19126 (1.38.102); FILE MERGED 2005/09/05 15:09:22 rt 1.38.102.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0a187e1d3b2b51aa24018cc0c46b81d2a41c1b77]

INTEGRATION: CWS ooo19126 (1.35.44); FILE MERGED 2005/09/05 15:09:22 rt 1.35.44.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6c27fa23d82c7dbe5bc2e6a7e628db174cc7ec00]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:09:21 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eb3d55085d42cfc0cb04d54e53ad99ebda6809a0]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:09:04 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [43a70c1d11da973e68efb126e5f95e425890f2bf]

INTEGRATION: CWS ooo19126 (1.21.114); FILE MERGED 2005/09/05 15:09:04 rt 1.21.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [54fed449f0f7cf76b066e2b9cd149162d4442840]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:09:03 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [87871ff062974e8b50059bb0d80e6bac28519b63]

INTEGRATION: CWS ooo19126 (1.6.520); FILE MERGED 2005/09/05 15:09:03 rt 1.6.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7e0e1eda94b69d90240555182fa435d1404d227c]

INTEGRATION: CWS ooo19126 (1.19.116); FILE MERGED 2005/09/05 15:09:03 rt 1.19.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6e1c20803f9a6f881e58a041a800f22b8675fd61]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:09:02 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [aed3dd345ba0311d72b023c0317ea5def05382d3]

INTEGRATION: CWS ooo19126 (1.32.116); FILE MERGED 2005/09/05 15:09:02 rt 1.32.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [41ba25e26b692cb3cfaa1271084fc070f042f3c1]

INTEGRATION: CWS ooo19126 (1.3.116); FILE MERGED 2005/09/05 15:09:01 rt 1.3.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ca6a60e30815d702da93b61011c359a72b8fdcd5]

INTEGRATION: CWS ooo19126 (1.13.116); FILE MERGED 2005/09/05 15:09:01 rt 1.13.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9f663d6f2d000ab28be4d8cdbca5c5bb62003358]

INTEGRATION: CWS ooo19126 (1.12.116); FILE MERGED 2005/09/05 15:09:00 rt 1.12.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [28f0d0fda1e9573a83b9c15b9d2e301e74755ffe]

INTEGRATION: CWS ooo19126 (1.2.586); FILE MERGED 2005/09/05 15:09:00 rt 1.2.586.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3a129717ab7008b7f8801db43d6710e986f1c175]

INTEGRATION: CWS ooo19126 (1.14.116); FILE MERGED 2005/09/05 15:08:59 rt 1.14.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cb871a8d0ae511bcb177bf499eb3d702e880cdc3]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:08:59 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f24b33fa5e3d8b3fce49da2c9226de364d625114]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:08:58 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f21023099ded47cb6fe1a00cd205dd332a6fa5f0]

INTEGRATION: CWS ooo19126 (1.6.116); FILE MERGED 2005/09/05 15:08:58 rt 1.6.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [36112f3ee88dec3caf6529d4aed088662a12e20b]

INTEGRATION: CWS ooo19126 (1.11.116); FILE MERGED 2005/09/05 15:08:58 rt 1.11.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4187f57b0493daacad0ad8fd9a8c9af5ba85f65d]

INTEGRATION: CWS ooo19126 (1.9.116); FILE MERGED 2005/09/05 15:08:58 rt 1.9.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [aa36094ce0d99cedb1c6691a187f7f04946d3dad]

INTEGRATION: CWS ooo19126 (1.16.354); FILE MERGED 2005/09/05 15:08:57 rt 1.16.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [60a62ec69f0fde41ce7427bff91df066e5ef9e33]

INTEGRATION: CWS ooo19126 (1.3.116); FILE MERGED 2005/09/05 15:08:57 rt 1.3.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2b5e0c3ac0a904f2c1e97dde925c4c1e7fb7c49e]

INTEGRATION: CWS ooo19126 (1.12.116); FILE MERGED 2005/09/05 15:08:56 rt 1.12.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cc11db2cf5b6e76d7fb29eb68b1e718d4bd2a647]

INTEGRATION: CWS ooo19126 (1.2.920); FILE MERGED 2005/09/05 15:08:56 rt 1.2.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a6fb6595c1dce89169a07aa7a186df8126b2969f]

INTEGRATION: CWS ooo19126 (1.11.116); FILE MERGED 2005/09/05 15:08:55 rt 1.11.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [09a3ba0cbc286e21c70a1f0cb20b02de1e4a4483]

INTEGRATION: CWS ooo19126 (1.8.116); FILE MERGED 2005/09/05 15:08:55 rt 1.8.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f11d49749621c79e44aaa4890c6356d10a75e981]

INTEGRATION: CWS ooo19126 (1.12.116); FILE MERGED 2005/09/05 15:08:55 rt 1.12.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dec35b5f51070c3ae7f8771954c3ceb01dde87a8]

INTEGRATION: CWS ooo19126 (1.21.116); FILE MERGED 2005/09/05 15:08:54 rt 1.21.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dbd5d8d9134e3c983224cf7b33a75f256951175b]

INTEGRATION: CWS ooo19126 (1.2.920); FILE MERGED 2005/09/05 15:08:54 rt 1.2.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5bf446667f2259fd03b060261e4168dc0108e39d]

INTEGRATION: CWS ooo19126 (1.50.110); FILE MERGED 2005/09/05 15:08:54 rt 1.50.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [da769eb5e11cc94e3302d6da719a29bc4532224c]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:08:53 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9525e342ac2c06083cb66b7f858ad6d58a2dbe9a]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:08:52 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3d3ea44066a0455b839e38f69f83172a900400a2]

INTEGRATION: CWS ooo19126 (1.6.116); FILE MERGED 2005/09/05 15:08:52 rt 1.6.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [88ff7235a2b75fa2adfbee9e8c5ae6b68e0c0bff]

INTEGRATION: CWS ooo19126 (1.24.116); FILE MERGED 2005/09/05 15:08:51 rt 1.24.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ebb3058c4ac4c107345de22ab57ab46a642887a4]

INTEGRATION: CWS ooo19126 (1.14.116); FILE MERGED 2005/09/05 15:08:51 rt 1.14.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8c923abbf16772e3812f5e295a22e6bfc9e5971e]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:08:51 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [798c05c02738fd7636fbcade684cadd93a3f7e63]

INTEGRATION: CWS ooo19126 (1.3.116); FILE MERGED 2005/09/05 15:08:50 rt 1.3.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a4f27c3fb12ec8b5a726fcbad1263af196a73793]

INTEGRATION: CWS ooo19126 (1.21.116); FILE MERGED 2005/09/05 15:08:50 rt 1.21.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e56014268bcdc1e9a26ad89515e3795e2ff97fea]

INTEGRATION: CWS ooo19126 (1.15.116); FILE MERGED 2005/09/05 15:08:50 rt 1.15.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a9156e3934848049b8253a6ec486f280dd8ec2c6]

INTEGRATION: CWS ooo19126 (1.3.450); FILE MERGED 2005/09/05 15:08:49 rt 1.3.450.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a3278166e1acb3a8c8245f1b07a320a39fee6f65]

INTEGRATION: CWS ooo19126 (1.3.490); FILE MERGED 2005/09/05 15:08:49 rt 1.3.490.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [afc86d6dc25a82f09fd0ceeac920c5e46a559476]

INTEGRATION: CWS ooo19126 (1.6.116); FILE MERGED 2005/09/05 15:08:49 rt 1.6.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c8aa064295fe4d925b3dd58275f95951af7b6f8a]

INTEGRATION: CWS ooo19126 (1.91.42); FILE MERGED 2005/09/05 15:08:48 rt 1.91.42.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1557243e27f40d95fe4a77fdabadf402b1508e52]

INTEGRATION: CWS ooo19126 (1.3.490); FILE MERGED 2005/09/05 15:08:47 rt 1.3.490.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [66f63dc4471f7c82e0f5b4eb047a052fd31f1342]

INTEGRATION: CWS ooo19126 (1.6.116); FILE MERGED 2005/09/05 15:08:47 rt 1.6.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d6401f5f693ba33b9f17eebed2781bb327ee27b6]

INTEGRATION: CWS ooo19126 (1.18.116); FILE MERGED 2005/09/05 15:08:46 rt 1.18.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cdc48a73e26128915eed58f97d5d8ef0d93d36ff]

INTEGRATION: CWS ooo19126 (1.10.116); FILE MERGED 2005/09/05 15:08:46 rt 1.10.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a8ea3c94fd4e5c0ed3ff5aba6aa7f0f036d42a28]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:08:46 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c5bffdd1a9c1ad7a70dbb6fbc1fa0ece19c606c0]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:08:45 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bec419dd29261cbe1bb821a372d97f13b87045fc]

INTEGRATION: CWS ooo19126 (1.10.452); FILE MERGED 2005/09/05 15:08:45 rt 1.10.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e5d55af1b665738d106051b75e52bac56eced54a]

INTEGRATION: CWS ooo19126 (1.4.328); FILE MERGED 2005/09/05 15:08:44 rt 1.4.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3142cd03dc3c8c6a93b1214836626fe5caf3ad91]

INTEGRATION: CWS ooo19126 (1.2.930); FILE MERGED 2005/09/05 15:08:44 rt 1.2.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2b82f33b6ba1484102a8278f9d0d277fcc6c9937]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:08:44 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3697f8e493a7e728c448b249fb417ab8bc40a5d7]

INTEGRATION: CWS ooo19126 (1.5.376); FILE MERGED 2005/09/05 15:08:43 rt 1.5.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6005a4e340fe23a63083dc159756d560745150de]

INTEGRATION: CWS ooo19126 (1.8.146); FILE MERGED 2005/09/05 15:08:43 rt 1.8.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eef8bb9bf659eb42539ade08941b98665d2cfa74]

INTEGRATION: CWS ooo19126 (1.14.146); FILE MERGED 2005/09/05 15:08:43 rt 1.14.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fcc9ebd79e9f1740558cc4354b78fd215dcd8a13]

INTEGRATION: CWS ooo19126 (1.6.328); FILE MERGED 2005/09/05 15:08:42 rt 1.6.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [07bbe82dc5c2b10e963c46db0ed1a5ac4da77273]

INTEGRATION: CWS ooo19126 (1.17.146); FILE MERGED 2005/09/05 15:08:42 rt 1.17.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a0980c7fa5343bfc5ba3d9d3df83333650dd4743]

INTEGRATION: CWS ooo19126 (1.5.376); FILE MERGED 2005/09/05 15:08:41 rt 1.5.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7bee181bc9822eecac93e083179333b5303c580f]

INTEGRATION: CWS ooo19126 (1.2.920); FILE MERGED 2005/09/05 15:08:41 rt 1.2.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ca544abc36781c023b8da87c5fff45ca531e2e2f]

INTEGRATION: CWS ooo19126 (1.2.940); FILE MERGED 2005/09/05 15:08:41 rt 1.2.940.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9f9f296acb6058228783b1f42bad2496aae9d97f]

INTEGRATION: CWS ooo19126 (1.2.940); FILE MERGED 2005/09/05 15:08:40 rt 1.2.940.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [85395053d575b3b751895f008e7a4fb84f355d71]

INTEGRATION: CWS ooo19126 (1.3.326); FILE MERGED 2005/09/05 15:08:40 rt 1.3.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [de1292449ab4a3996599ca9ed22beb46110365a9]

INTEGRATION: CWS ooo19126 (1.33.434); FILE MERGED 2005/09/05 15:08:39 rt 1.33.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9a71e5e1cfb90f7f298ef8c0e8703acbdcf9e835]

INTEGRATION: CWS ooo19126 (1.8.346); FILE MERGED 2005/09/05 15:08:39 rt 1.8.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bd416e2a698eb3ba3c2891d080bb4965176f177e]

INTEGRATION: CWS ooo19126 (1.24.434); FILE MERGED 2005/09/05 15:08:38 rt 1.24.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4d48b36c96b0ab66e858c92ec1bb125c42c2d4ad]

INTEGRATION: CWS ooo19126 (1.4.456); FILE MERGED 2005/09/05 15:08:38 rt 1.4.456.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [437e3fb54de66f6fe0d8c2b4c7c6234560156bd6]

INTEGRATION: CWS ooo19126 (1.72.240); FILE MERGED 2005/09/05 15:08:37 rt 1.72.240.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f6734766cda9fd5d5887ab6349d95a8b68e66ce3]

INTEGRATION: CWS ooo19126 (1.26.434); FILE MERGED 2005/09/05 15:08:36 rt 1.26.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [80fe2e3be010ce3e696e50e1506984ef2bc84833]

INTEGRATION: CWS ooo19126 (1.25.118); FILE MERGED 2005/09/05 15:08:36 rt 1.25.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d7ec8e7ba437a93d564e92dfdf6e145147f50251]

INTEGRATION: CWS ooo19126 (1.37.434); FILE MERGED 2005/09/05 15:08:35 rt 1.37.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9c81e56a642021b2efa604929fd8cbdd7c31c7e8]

INTEGRATION: CWS ooo19126 (1.26.118); FILE MERGED 2005/09/05 15:08:35 rt 1.26.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b1ac5598eed1af39f661eac8b588994c2b61cdf6]

INTEGRATION: CWS ooo19126 (1.19.118); FILE MERGED 2005/09/05 15:08:34 rt 1.19.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2df102ae7457055fb11f1e6b96acd34f8ffd8cad]

INTEGRATION: CWS ooo19126 (1.20.434); FILE MERGED 2005/09/05 15:08:34 rt 1.20.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [83d6954e273d679c8b561c60a20b96b82565cb58]

INTEGRATION: CWS ooo19126 (1.82.154); FILE MERGED 2005/09/05 15:08:33 rt 1.82.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [779f1ebb93024e3dc3f5f040488827a072c77019]

INTEGRATION: CWS ooo19126 (1.82.196); FILE MERGED 2005/09/05 15:08:28 rt 1.82.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e1ea72f4469cbcfd3de5196f05d4657c81643efc]

INTEGRATION: CWS ooo19126 (1.44.354); FILE MERGED 2005/09/05 15:08:26 rt 1.44.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [185d08d3a8eb9d07d8eb7fa6e560e8580acee2de]

INTEGRATION: CWS ooo19126 (1.23.220); FILE MERGED 2005/09/05 15:08:26 rt 1.23.220.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0a7cfa56c7a9266f1d3812fe0ffde32df1d4ed7c]

INTEGRATION: CWS ooo19126 (1.2.434); FILE MERGED 2005/09/05 15:08:26 rt 1.2.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e99aee29d9a9c08f5c86602f2712a9fc7a22ca26]

INTEGRATION: CWS ooo19126 (1.52.434); FILE MERGED 2005/09/05 15:08:25 rt 1.52.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9346f719f5c42f547831664e2d8cc0cedbb2e6d5]

INTEGRATION: CWS ooo19126 (1.61.146); FILE MERGED 2005/09/05 15:08:24 rt 1.61.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [87a793b339124c226ef75da5370915c20d5a30af]

INTEGRATION: CWS ooo19126 (1.33.434); FILE MERGED 2005/09/05 15:08:24 rt 1.33.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2d6ac01dde9ea0eed6eba07b9f216c3c4fd39464]

INTEGRATION: CWS ooo19126 (1.32.118); FILE MERGED 2005/09/05 15:08:23 rt 1.32.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2a11f2524ff398ece743fc8f59da52870cca4f0d]

INTEGRATION: CWS ooo19126 (1.69.434); FILE MERGED 2005/09/05 15:08:22 rt 1.69.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [22e1f4d2d09aa166d27fb32b1d53613b64ad05b4]

INTEGRATION: CWS ooo19126 (1.5.220); FILE MERGED 2005/09/05 15:08:19 rt 1.5.220.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [de204d55b19577b0cf352a56c1aea9fbf15a019f]

INTEGRATION: CWS ooo19126 (1.31.434); FILE MERGED 2005/09/05 15:06:58 rt 1.31.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6e545af2c02391b7a1db16e138970b32665780cc]

INTEGRATION: CWS ooo19126 (1.61.192); FILE MERGED 2005/09/05 15:06:57 rt 1.61.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8cce26cae957e1147a82e4ca679919bc28903eb5]

INTEGRATION: CWS ooo19126 (1.54.118); FILE MERGED 2005/09/05 15:06:56 rt 1.54.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [df8b127f8d573f1141ec68b37ef1c83abc62eb1c]

INTEGRATION: CWS ooo19126 (1.42.118); FILE MERGED 2005/09/05 15:06:56 rt 1.42.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9dc8672a4671534f8d62d77525ee8b1d1d032645]

INTEGRATION: CWS ooo19126 (1.41.118); FILE MERGED 2005/09/05 15:06:55 rt 1.41.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a0d03836b5c51ba11e8fd17740af8d47b512dc98]

INTEGRATION: CWS ooo19126 (1.28.118); FILE MERGED 2005/09/05 15:06:55 rt 1.28.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f16284e7f54440c69e538a1c4b2c173da543c59f]

INTEGRATION: CWS ooo19126 (1.40.434); FILE MERGED 2005/09/05 15:06:54 rt 1.40.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6bf4858ce3b0736a0d0ddea9f7e604c2ac110329]

INTEGRATION: CWS ooo19126 (1.52.434); FILE MERGED 2005/09/05 15:06:54 rt 1.52.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [26fb31cf02a5e9a0856a5a2fff57c787a6656cc1]

INTEGRATION: CWS ooo19126 (1.7.346); FILE MERGED 2005/09/05 15:06:52 rt 1.7.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [84c033444887f21452efb588986b14a0e559a448]

INTEGRATION: CWS ooo19126 (1.13.460); FILE MERGED 2005/09/05 15:06:52 rt 1.13.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5c0ff48d0fc949a6dd96ab525fa01370410b35e0]

INTEGRATION: CWS ooo19126 (1.22.434); FILE MERGED 2005/09/05 15:06:51 rt 1.22.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cbe2537cc00612f1600237f68d2a8722146a35c5]

INTEGRATION: CWS ooo19126 (1.7.346); FILE MERGED 2005/09/05 15:06:51 rt 1.7.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [80fc53c1c8ab9e00f7078404d8961703c1e6869a]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:06:51 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0a1ef9e7ed354c564c25d646ca9a5129a816757e]

INTEGRATION: CWS ooo19126 (1.50.118); FILE MERGED 2005/09/05 15:06:50 rt 1.50.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8f9e6ce534e756be945e7f910c6fcf5df0a712fc]

INTEGRATION: CWS ooo19126 (1.6.508); FILE MERGED 2005/09/05 15:06:50 rt 1.6.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f04a674fedfede7edd5f3d19e74e94585db3703d]

INTEGRATION: CWS ooo19126 (1.3.460); FILE MERGED 2005/09/05 15:06:50 rt 1.3.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1147189ce9a44b9a50d420fcf42f014c5de19fc9]

INTEGRATION: CWS ooo19126 (1.42.192); FILE MERGED 2005/09/05 15:06:48 rt 1.42.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dd96912bbd1f1465db4da7107c9d8171d517196d]

INTEGRATION: CWS ooo19126 (1.4.376); FILE MERGED 2005/09/05 15:06:48 rt 1.4.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a69bd97be920267b3c0af41c355c96cb9f6a9140]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:48 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [988c77f61820aef9746469d06a534a3fd7c0422e]

INTEGRATION: CWS ooo19126 (1.11.236); FILE MERGED 2005/09/05 15:06:48 rt 1.11.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f68bfacd4dff874974292af03c2639c76d435d39]

INTEGRATION: CWS ooo19126 (1.12.346); FILE MERGED 2005/09/05 15:06:47 rt 1.12.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dce6dc73a423e93017f24c35b3135c09a2fffd1f]

INTEGRATION: CWS ooo19126 (1.6.346); FILE MERGED 2005/09/05 15:06:47 rt 1.6.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e048ff9ca72992b3c52521f4202897bde74e2118]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:46 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a36113958685928e18a32d858078993cb90daf92]

INTEGRATION: CWS ooo19126 (1.13.346); FILE MERGED 2005/09/05 15:06:46 rt 1.13.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [73b0a0cc5830e7588bedce82909435867458bb0c]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:06:45 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [163aeca8f77ed891e474478ccf063308f224431f]

INTEGRATION: CWS ooo19126 (1.3.928); FILE MERGED 2005/09/05 15:06:45 rt 1.3.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [98382180f718fb35c260c5a363a43aa4bfdc3629]

INTEGRATION: CWS ooo19126 (1.3.508); FILE MERGED 2005/09/05 15:06:45 rt 1.3.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2cad3b28279c6610b7dfc5ddb5f666b749537fb2]

INTEGRATION: CWS ooo19126 (1.42.44); FILE MERGED 2005/09/05 15:06:44 rt 1.42.44.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [54ec33b67d26eda3d24120679c768825f993fec6]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:06:44 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8d78140442c4bd57eba8ea790593719be4018c0f]

INTEGRATION: CWS ooo19126 (1.17.124); FILE MERGED 2005/09/05 15:06:44 rt 1.17.124.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cfbbd747f87e1c26a7a0240d77fbdf0ba3cd9512]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:06:43 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e995654130e0751d858db2f8667588afefd1c45b]

INTEGRATION: CWS ooo19126 (1.3.456); FILE MERGED 2005/09/05 15:06:43 rt 1.3.456.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5e1628c79b1cf82b585b5b4fc613a08e6779ee8b]

INTEGRATION: CWS ooo19126 (1.16.324); FILE MERGED 2005/09/05 15:06:42 rt 1.16.324.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f0f7568a6170a81fe540e11ddf1f06e1fde9fbb9]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:06:41 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6631829373d7d3f79f9620d51a849361a0e69a57]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:06:41 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ca5ebb65a2f89ed558c8b1fff1174d003e91c267]

INTEGRATION: CWS ooo19126 (1.3.900); FILE MERGED 2005/09/05 15:06:39 rt 1.3.900.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7db79cc576bd02856e0bcf6609011ef5993526a6]

INTEGRATION: CWS ooo19126 (1.6.346); FILE MERGED 2005/09/05 15:06:39 rt 1.6.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3807e98914d113a60569b89e2960f6d889a836eb]

INTEGRATION: CWS ooo19126 (1.3.552); FILE MERGED 2005/09/05 15:06:39 rt 1.3.552.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c44110d07dd3b68dbc2b211c51667a3035d7dff4]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:06:38 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [696d82c81f7fdace7e8e404998ce4d9cb78b9276]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:06:38 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [62f00d5227f219d95fa51aaa3ad79834578d809f]

INTEGRATION: CWS ooo19126 (1.7.534); FILE MERGED 2005/09/05 15:06:38 rt 1.7.534.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6ad60206b4e9fea6f2c35543ec78fcaeb3264c61]

INTEGRATION: CWS ooo19126 (1.5.920); FILE MERGED 2005/09/05 15:06:38 rt 1.5.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5a4dd9c424d6d00dd3901693096ef30b51b96364]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:37 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c034942f16cb0bab9857e0596fd8f98cc3d3bb8c]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:06:37 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8d6cdd9e7a49343ec7c2e44173b37dff7027d549]

INTEGRATION: CWS ooo19126 (1.6.460); FILE MERGED 2005/09/05 15:06:36 rt 1.6.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f3524f5b2f90617d2bf12a7cae195c1a9fb83482]

INTEGRATION: CWS ooo19126 (1.2.346); FILE MERGED 2005/09/05 15:06:36 rt 1.2.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c1eff6df8dae438bc000c862fa5af129b641a354]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:36 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [391b8957d3910917d99a3335c2fc9d4aeffbcca1]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:06:35 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bbb1deb98c6c3bb004a7526713642ccd23eb6a8b]

INTEGRATION: CWS ooo19126 (1.6.460); FILE MERGED 2005/09/05 15:06:35 rt 1.6.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [63ac9ec4bbd90e2a3c8f357eb49025729ee0bcc3]

INTEGRATION: CWS ooo19126 (1.27.434); FILE MERGED 2005/09/05 15:06:33 rt 1.27.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1f967c0255e035a29cc6a031169c5d0d4b6e55cf]

INTEGRATION: CWS ooo19126 (1.10.192); FILE MERGED 2005/09/05 15:06:33 rt 1.10.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2f29f951339ca2e4a309d8030a0466e317f25761]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:32 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [57328d094c7378e1d85db63fdd1f092d874d4218]

INTEGRATION: CWS ooo19126 (1.32.192); FILE MERGED 2005/09/05 15:06:32 rt 1.32.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [89c7e9c757177f84cd3fc3df99adce4b6ec552fb]

INTEGRATION: CWS ooo19126 (1.9.346); FILE MERGED 2005/09/05 15:06:32 rt 1.9.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [549533b0f698797e2a86421599d5066bfe427980]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:06:31 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [52183ed44f082b6914315198a2f42a5ef1afc915]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:31 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [692eaeca2200f195b1776f9b339351b7bd044e91]

INTEGRATION: CWS ooo19126 (1.29.118); FILE MERGED 2005/09/05 15:06:31 rt 1.29.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d6be3f05a4495a8f1a91e4cff3782ef1537fc700]

INTEGRATION: CWS ooo19126 (1.8.798); FILE MERGED 2005/09/05 15:06:30 rt 1.8.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [131fdccd35ea5f7acd46d83869ffc3ccc929cf4c]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:30 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ddd65778b95a5d96e2ba3ee647b523db8f493133]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:06:30 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [588eb919959edf57fcabfebaa5c115fb9a518fa1]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:29 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [38d83342312f46edb0d6eefe966901088e5f0ee1]

INTEGRATION: CWS ooo19126 (1.6.154); FILE MERGED 2005/09/05 15:06:29 rt 1.6.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a0ef575fa6dbcd980c5a029efa833cab834f9773]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:06:28 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d0747e41c0a22b876f421ac7477554d2eaac7fcf]

INTEGRATION: CWS ooo19126 (1.13.368); FILE MERGED 2005/09/05 15:06:28 rt 1.13.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [14fe6093e3b949b85aeb50003eadcb36757b5bd1]

INTEGRATION: CWS ooo19126 (1.15.118); FILE MERGED 2005/09/05 15:06:27 rt 1.15.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [748992fecd6f69fe4c4cabee39b5e0d5b74cd541]

INTEGRATION: CWS ooo19126 (1.31.118); FILE MERGED 2005/09/05 15:06:27 rt 1.31.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a9ce53dabc38be7ddcd6f2380cb9beb375faf1e0]

INTEGRATION: CWS ooo19126 (1.17.326); FILE MERGED 2005/09/05 15:06:27 rt 1.17.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9e9905b6cff4a074b9764d4747fab3d879d594a7]

INTEGRATION: CWS ooo19126 (1.1.906); FILE MERGED 2005/09/05 15:06:07 rt 1.1.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [22035f00191b2eebf86e5ed87268750b4b785d94]

INTEGRATION: CWS ooo19126 (1.9.146); FILE MERGED 2005/09/05 15:06:07 rt 1.9.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4c509230dec88d27659ee1b188304d7987905bc4]

INTEGRATION: CWS ooo19126 (1.25.146); FILE MERGED 2005/09/05 15:06:06 rt 1.25.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [317383d47c89bd7b136b0d2cd98ca4aec944b432]

INTEGRATION: CWS ooo19126 (1.18.144); FILE MERGED 2005/09/05 15:06:06 rt 1.18.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4fa49fe7814b22e59e1e82c6bd5ae5b3ca3ca457]

INTEGRATION: CWS ooo19126 (1.3.600); FILE MERGED 2005/09/05 15:06:06 rt 1.3.600.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a7acd68ef6403052150cb8ab5b11c63f82e7c08a]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:06:05 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9ac8686e40c7668223ead11f2de822ad0440e3b6]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:06:05 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1c401da352bdbcaf986b7feb4bd8628d99ec68fa]

INTEGRATION: CWS ooo19126 (1.3.328); FILE MERGED 2005/09/05 15:06:05 rt 1.3.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fab2839b23de1916b103f20c33cb3dfe978f1993]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:06:04 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [18dc208239883c074ca12d80968e5ffe98ac7bf6]

INTEGRATION: CWS ooo19126 (1.6.376); FILE MERGED 2005/09/05 15:06:04 rt 1.6.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0895ebad44a7ff9a9c45bb6248b4e532afa4caa4]

INTEGRATION: CWS ooo19126 (1.3.328); FILE MERGED 2005/09/05 15:06:03 rt 1.3.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [81a5cd3ccdfc558db298bc1975f0e579ec1265cf]

INTEGRATION: CWS ooo19126 (1.11.146); FILE MERGED 2005/09/05 15:06:03 rt 1.11.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [75547907ab73be5ba2fa0610cb989b468cc9f6ba]

INTEGRATION: CWS ooo19126 (1.4.376); FILE MERGED 2005/09/05 15:06:02 rt 1.4.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [34680fa91318bac532b59bee2af09983e9b64fc4]

INTEGRATION: CWS ooo19126 (1.5.346); FILE MERGED 2005/09/05 15:06:02 rt 1.5.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2f66fd1c750afd96a4d3fd64de4c6cd2522136ae]

INTEGRATION: CWS ooo19126 (1.10.102); FILE MERGED 2005/09/05 15:06:02 rt 1.10.102.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f9370d5907fe990a60abeebeaedf8c7ab0f76053]

INTEGRATION: CWS ooo19126 (1.13.326); FILE MERGED 2005/09/05 15:06:02 rt 1.13.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [466ccd45338b4107c53833a72336fa504d27439a]

INTEGRATION: CWS ooo19126 (1.6.904); FILE MERGED 2005/09/05 15:06:01 rt 1.6.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4339861ec89cfb159f2c6cc37369346a06cea9e7]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:06:01 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [820fb1791c9682c6ed778e287a23d5b51a9e2f25]

INTEGRATION: CWS ooo19126 (1.5.508); FILE MERGED 2005/09/05 15:06:00 rt 1.5.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8e366db4667e5977b4de01a652436ed1dcd41e36]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:06:00 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [90a63c7c04d11135e8bbb8b6d9f6251d55e7417f]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:06:00 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f4cd40d9c87b87d9f200ee54817bd2226ad41367]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:06:00 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f48f0dced33ab187bec3b2aa9492f23feaf90713]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:59 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [312e62f52b3513ad933c9c4a766d912cfe29909f]

INTEGRATION: CWS ooo19126 (1.10.346); FILE MERGED 2005/09/05 15:05:59 rt 1.10.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [40ef3f65ea1cbb0211b6a7664e80f941278bc737]

INTEGRATION: CWS ooo19126 (1.2.798); FILE MERGED 2005/09/05 15:05:59 rt 1.2.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fb8636d6877a2efa725fbaffbd8a92610da65a27]

INTEGRATION: CWS ooo19126 (1.6.368); FILE MERGED 2005/09/05 15:05:59 rt 1.6.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9da988c7c9b75a63e8904dc8eb28239f87fc3814]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:58 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8c59336b022f6ca9103dea70e082b682684e7703]

INTEGRATION: CWS ooo19126 (1.3.188); FILE MERGED 2005/09/05 15:05:58 rt 1.3.188.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eafc04ce42719e3b33759eca18553c686bcc2a94]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:57 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [28a9518c7e8577a62a79dd2131922000063a859c]

INTEGRATION: CWS ooo19126 (1.21.146); FILE MERGED 2005/09/05 15:05:57 rt 1.21.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [af64bc4b3305e7006ff35fb5d3132ebad3611ca4]

INTEGRATION: CWS ooo19126 (1.18.146); FILE MERGED 2005/09/05 15:05:57 rt 1.18.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9e870819bb5281528bb7666cbd4cd0180f0489f1]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:56 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3515a70b9e3f201af3539f8bbef924ffcf594ea3]

INTEGRATION: CWS ooo19126 (1.3.904); FILE MERGED 2005/09/05 15:05:56 rt 1.3.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [588943d346a1f47405f7d7336f4a7259073bcdda]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:05:55 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0202fbda360198caafcee679ae78a51a87d8b693]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:55 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e26f7037332e2ba20ed382069f927dd8494581ea]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:05:55 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [052cd041997291b9836a19ad94770b90ba58710f]

INTEGRATION: CWS ooo19126 (1.2.460); FILE MERGED 2005/09/05 15:05:54 rt 1.2.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7c7dff3933f581144b207be4d0d6873487b9ff74]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:54 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b62a35afacd1979edaaff8269d6ee22167722a1a]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:05:53 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d1e2696f5f523b8dd1e4d9cf6d00e7025635cc18]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:53 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [50942cde3c5c4b0a732b6cafbc50d6f039f40eb0]

INTEGRATION: CWS ooo19126 (1.3.938); FILE MERGED 2005/09/05 15:05:53 rt 1.3.938.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0e3d5e1cde38e9b9c8a01701e7bf460656692819]

INTEGRATION: CWS ooo19126 (1.4.520); FILE MERGED 2005/09/05 15:05:52 rt 1.4.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7aa8749a08341a3aac9ed7c65cec3df1456dd854]

INTEGRATION: CWS ooo19126 (1.2.904); FILE MERGED 2005/09/05 15:05:52 rt 1.2.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5025cbd37b1bf046cfacd3e0c7f0187899a05d47]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:05:52 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3f873e284e3dc552a30bd3548cdc57a2f038e11c]

INTEGRATION: CWS ooo19126 (1.8.146); FILE MERGED 2005/09/05 15:05:51 rt 1.8.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6e5f198c0d24c6b95dad8872319b5643847d69c7]

INTEGRATION: CWS ooo19126 (1.2.328); FILE MERGED 2005/09/05 15:05:51 rt 1.2.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c56037b86e5c0087408e1d3f0eeebc61e4f2265a]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:51 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6d0baa44b1e3261689ed2d452432c85c73fb0e00]

INTEGRATION: CWS ooo19126 (1.3.928); FILE MERGED 2005/09/05 15:05:50 rt 1.3.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8413b3e084d90ebb598b37415a930e08b744a017]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:05:50 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ce00abaa09aa478a5aca1d67882c4b54f27d9d63]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:50 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cede2e59499244b013fc03776e4b8d8e4673f30c]

INTEGRATION: CWS ooo19126 (1.2.930); FILE MERGED 2005/09/05 15:05:49 rt 1.2.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a36c3a1d46397371bbafba794b7138bbe50db995]

INTEGRATION: CWS ooo19126 (1.2.940); FILE MERGED 2005/09/05 15:05:49 rt 1.2.940.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [498889fbf158dbf901eb24ee36d940698c4d092b]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:49 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fd6e9a034824b8fcdfda4b69701b1bf697481b6d]

INTEGRATION: CWS ooo19126 (1.3.898); FILE MERGED 2005/09/05 15:05:48 rt 1.3.898.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e242098a10a81cab70bc2bd8521e88e09c174a9f]

INTEGRATION: CWS ooo19126 (1.4.326); FILE MERGED 2005/09/05 15:05:48 rt 1.4.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [69920e6709e332b834bf142e9b357845a0d77780]

INTEGRATION: CWS ooo19126 (1.1.920); FILE MERGED 2005/09/05 15:05:48 rt 1.1.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0d5b35bf3ecde7361233370ec1d544e7b68b52bb]

INTEGRATION: CWS ooo19126 (1.2.328); FILE MERGED 2005/09/05 15:05:47 rt 1.2.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ac450fe2aea45e64c98fc66bcd2100c783052073]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:05:47 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [29e87532b9a093cb97b57ce712c97e832ac2cdd3]

INTEGRATION: CWS ooo19126 (1.4.376); FILE MERGED 2005/09/05 15:05:47 rt 1.4.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b1421a99b521c6ace4f36b5267bca2980590c701]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:05:46 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [52ec5d1de0c9887da5996748cc8244fb6369e563]

INTEGRATION: CWS ooo19126 (1.3.450); FILE MERGED 2005/09/05 15:05:46 rt 1.3.450.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [830c7b457157984c51e33566d23ca7e58105ee8f]

INTEGRATION: CWS ooo19126 (1.4.308); FILE MERGED 2005/09/05 15:05:46 rt 1.4.308.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6e227ecf35fb56de19b4be1cdf2df67af834eb45]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:05:45 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a31191448d562d54b422ecf010a4f7bf9206069f]

INTEGRATION: CWS ooo19126 (1.3.508); FILE MERGED 2005/09/05 15:05:45 rt 1.3.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [934a654045cebd9b3ecc574491c21ec46ca6dda5]

INTEGRATION: CWS ooo19126 (1.2.940); FILE MERGED 2005/09/05 15:05:45 rt 1.2.940.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d4820424fe15bd0218b4bb038ce00ff8b1fecc46]

INTEGRATION: CWS ooo19126 (1.2.940); FILE MERGED 2005/09/05 15:05:44 rt 1.2.940.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [63318ed898f13422801f589e2c0c12c3520cb132]

INTEGRATION: CWS ooo19126 (1.3.460); FILE MERGED 2005/09/05 15:05:44 rt 1.3.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f4f69870e1c1758602cf20da69fedd93252720a6]

INTEGRATION: CWS ooo19126 (1.9.376); FILE MERGED 2005/09/05 15:05:44 rt 1.9.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b51c31fc31108130e8252d40e01caefe45e67616]

INTEGRATION: CWS ooo19126 (1.5.376); FILE MERGED 2005/09/05 15:05:43 rt 1.5.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1521e89dade1cadb3562fed2ab0645fb6a095fe6]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:43 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c08bcb280cfc03b0cc83b908ba48012c36a885d6]

INTEGRATION: CWS ooo19126 (1.11.452); FILE MERGED 2005/09/05 15:05:43 rt 1.11.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0326d815f0d56714ced4303355529a0ffb4ebfa7]

INTEGRATION: CWS ooo19126 (1.7.146); FILE MERGED 2005/09/05 15:05:43 rt 1.7.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b664cb008c85c98d6b95fe7955f8c21c051e91ad]

INTEGRATION: CWS ooo19126 (1.10.274); FILE MERGED 2005/09/05 15:05:42 rt 1.10.274.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [113d69f4cea1af4872b7c959355ed309a2e1da7b]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:05:42 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [86b411506a49434452146a413830a5735ecf60aa]

INTEGRATION: CWS ooo19126 (1.2.346); FILE MERGED 2005/09/05 15:05:41 rt 1.2.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e031d3e414c31465c60b3de601cc29243cf012a8]

INTEGRATION: CWS ooo19126 (1.2.926); FILE MERGED 2005/09/05 15:05:41 rt 1.2.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3b979c8eafa0ce293e83c360b6a8aca78f7dc994]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:05:41 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0114b5a4d1126d5c3232deac079eb54c6f1d9e7c]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:41 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a658c9e8026bfbc028f233794ba874ed050bf5a6]

INTEGRATION: CWS ooo19126 (1.3.274); FILE MERGED 2005/09/05 15:05:40 rt 1.3.274.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6224552bbaa83aba462c4a45c6e3b1bbddf25b8a]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:05:40 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [10238925ba7b5af9719ece1651cd6db33a90d6db]

INTEGRATION: CWS ooo19126 (1.2.520); FILE MERGED 2005/09/05 15:05:40 rt 1.2.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7ee3e3d1828de52db337196505d913419b299f90]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:05:39 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [531a1d3e026f2312001e558ebea79a4bdd496836]

INTEGRATION: CWS ooo19126 (1.15.326); FILE MERGED 2005/09/05 15:05:39 rt 1.15.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0b9cd7b30dc8db534eeaef9231fb98cb38fcd4ed]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:39 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3c071635cfd4f9a52bd885961841adf0ee042a8f]

INTEGRATION: CWS ooo19126 (1.7.904); FILE MERGED 2005/09/05 15:05:38 rt 1.7.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c54ef8760c4ee231baa3952d4367bce3a36dcec1]

INTEGRATION: CWS ooo19126 (1.2.932); FILE MERGED 2005/09/05 15:05:38 rt 1.2.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e71316f8ab5103578ca3a9ca6e4a7ce7e65c2f1f]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:38 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2f04eb8df5f279fff6a2b7660ccd0fbe3df81d26]

INTEGRATION: CWS ooo19126 (1.8.368); FILE MERGED 2005/09/05 15:05:37 rt 1.8.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8548105dff15f6efa4040437d824bb2d25d3d3cf]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:05:37 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0aa1e81155cae3657d5291281e3b810183516e53]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:37 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eed434ad12060d7a7272f4f71928215366eaf281]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:05:37 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ed70f20f65f2509b297671f79101b869e1761c82]

INTEGRATION: CWS ooo19126 (1.2.898); FILE MERGED 2005/09/05 15:05:36 rt 1.2.898.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [32a99eac2c42faebe200a05b369cf35d35b8dac4]

INTEGRATION: CWS ooo19126 (1.10.368); FILE MERGED 2005/09/05 15:05:36 rt 1.10.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2c8e025a7d94cd7a073576d0f1c56f99191120b3]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:36 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0f01c6c59136329c07252afd2327afc72ce3f821]

INTEGRATION: CWS ooo19126 (1.2.460); FILE MERGED 2005/09/05 15:05:35 rt 1.2.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [99e8ae360826e421311b14ef0a70e65e394dbdf5]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:05:35 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5e441f5e45f68ac02f9b08fc7bf74322d1c16c2d]

INTEGRATION: CWS ooo19126 (1.3.930); FILE MERGED 2005/09/05 15:05:35 rt 1.3.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [10fa51e0fa1b8f7a904bfa815e40f696fbc2ce7f]

INTEGRATION: CWS ooo19126 (1.3.460); FILE MERGED 2005/09/05 15:05:35 rt 1.3.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e233a819a2cfe78f419feed52a9eb96fc8fade7f]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:05:34 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fd32e2baeb9e6aa949b413a4ea34174554d6ae47]

INTEGRATION: CWS ooo19126 (1.2.898); FILE MERGED 2005/09/05 15:05:34 rt 1.2.898.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d85063e76c649a74cb22c9c5df2f645b515f50c7]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:34 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [664a26d0ff2eab7ea385ce1e376a1051ff447a8f]

INTEGRATION: CWS ooo19126 (1.9.154); FILE MERGED 2005/09/05 15:05:33 rt 1.9.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8c2c8a55655bbda8a4ef2bbee1de5b6e0b312bd8]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:05:33 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9c20791d03227208b492b8aca41ed7a5895fb728]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:33 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dc6e25253ad27a9171f0c122320504c1cdfc8a4e]

INTEGRATION: CWS ooo19126 (1.1.932); FILE MERGED 2005/09/05 15:05:33 rt 1.1.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [552cc0bd20eeea56896156c2d319d585dcd7dd03]

INTEGRATION: CWS ooo19126 (1.3.326); FILE MERGED 2005/09/05 15:05:32 rt 1.3.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d5856fd536581a9aa8edf66690283942245634af]

INTEGRATION: CWS ooo19126 (1.1.930); FILE MERGED 2005/09/05 15:05:32 rt 1.1.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [42787ecea1321a3fe2f2da2d56cb3d66fbad139e]

INTEGRATION: CWS ooo19126 (1.2.930); FILE MERGED 2005/09/05 15:05:32 rt 1.2.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [24bedb3746b49502609a3d75d175ef3a08c7ede2]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:32 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [513df0476a766ebaa64ff261a7666d98fd8c67d6]

INTEGRATION: CWS ooo19126 (1.5.326); FILE MERGED 2005/09/05 15:05:31 rt 1.5.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [44eb3101c504f7d9e33bcd8c91e94264221c8887]

INTEGRATION: CWS ooo19126 (1.3.578); FILE MERGED 2005/09/05 15:05:31 rt 1.3.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9fb0c894548e1909e5966d68b2fa819bec659018]

INTEGRATION: CWS ooo19126 (1.4.460); FILE MERGED 2005/09/05 15:05:31 rt 1.4.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [340427483934f71c4136d8cdb91b2a6215aa908c]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:31 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c6776c4e6181348ab703b4420a18a371f8c33b94]

INTEGRATION: CWS ooo19126 (1.14.428); FILE MERGED 2005/09/05 15:05:30 rt 1.14.428.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [787059ce998e20e8e6822f755561c08088fddb21]

INTEGRATION: CWS ooo19126 (1.12.452); FILE MERGED 2005/09/05 15:05:30 rt 1.12.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [943fdcdcdef1640c55a47660ba0283070b569eb9]

INTEGRATION: CWS ooo19126 (1.10.196); FILE MERGED 2005/09/05 15:05:30 rt 1.10.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c651bfca2bf43625e0a2ec74e57deb26554a3301]

INTEGRATION: CWS ooo19126 (1.10.346); FILE MERGED 2005/09/05 15:05:30 rt 1.10.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cbc10cad77a478b53539aa519ad7737fae473c96]

INTEGRATION: CWS ooo19126 (1.3.450); FILE MERGED 2005/09/05 15:05:29 rt 1.3.450.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e6b6e73077cfdc39e6513fae82b8c5c43cac1f96]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:29 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cf6d11d0d83f1306518e35ca7962fb153d03cf50]

INTEGRATION: CWS ooo19126 (1.4.920); FILE MERGED 2005/09/05 15:05:29 rt 1.4.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f100882a644ace215afb8177ce06d11c23a4f584]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:29 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6f4d6ecf098fd9c4dcf0b6bc61ca03708860740b]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:28 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [faba69c25a471a843c54c17fd5dcc3e6574aefdc]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:05:28 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [280713009d6f6ef9a632e9576d29e86c54486601]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:28 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6d458298bec995af2ef3f93cd9935e474e878f4c]

INTEGRATION: CWS ooo19126 (1.20.128); FILE MERGED 2005/09/05 15:05:27 rt 1.20.128.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [325cf2b7040215b90049088a13a2b22760247db1]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:27 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a8a4613e8f8614a07a5515a9d512d0bcae30a712]

INTEGRATION: CWS ooo19126 (1.3.938); FILE MERGED 2005/09/05 15:05:27 rt 1.3.938.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [34e8c8bbac04606c8c8ca2a3d7b293f89584b919]

INTEGRATION: CWS ooo19126 (1.5.256); FILE MERGED 2005/09/05 15:05:26 rt 1.5.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [622659b081d615f3f1edb6768c9ede2bc863dd85]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:05:26 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2a27c421ba758d71f1e49df820942e37c0b7c7ee]

INTEGRATION: CWS ooo19126 (1.4.242); FILE MERGED 2005/09/05 15:05:26 rt 1.4.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2285e25fca38547ac44d2bcde97e7b51c5c8a7b1]

INTEGRATION: CWS ooo19126 (1.3.208); FILE MERGED 2005/09/05 15:05:26 rt 1.3.208.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b115527ee06ed126ca672af3ae07cb9ae31c2e97]

INTEGRATION: CWS ooo19126 (1.2.520); FILE MERGED 2005/09/05 15:05:25 rt 1.2.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [58a5fe831294fc3fd94828d970151141c2aa2a94]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:25 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [469c77a0a8765b3d16bdf4b692617d661b755e9a]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:05:25 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e3e836b51cbd9c5494d61277cc852298db8a4c71]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:24 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fb28016526e06f06c7f277584c6cc07122e009ea]

INTEGRATION: CWS ooo19126 (1.3.146); FILE MERGED 2005/09/05 15:05:24 rt 1.3.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [07be291a6de0f72b86d8c0247b6450a82dc46a63]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:05:24 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c35e669edeb240f360e266cbf5f0f650a557cdc0]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:05:23 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e8fd7eec1e911b499d99dfd4f9488f65fd22b375]

INTEGRATION: CWS ooo19126 (1.3.242); FILE MERGED 2005/09/05 15:05:23 rt 1.3.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [36224672d45138fa063e3b82538c15e5cdc2d309]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:05:22 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4b7f099b7546520bc3cbe2f9826f6cab2d0479a6]

INTEGRATION: CWS ooo19126 (1.3.520); FILE MERGED 2005/09/05 15:05:22 rt 1.3.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e91ee741c899781ed5cf7ea17e62aacde93eb294]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:22 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c08c5c3b9f69dbbaf0584f36c35d6eca13bb32d0]

INTEGRATION: CWS ooo19126 (1.3.368); FILE MERGED 2005/09/05 15:05:22 rt 1.3.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bce425195e4219241f49bb7a55b22e36f29dc3e3]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:21 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [da76d082e491025d7d02e25d67fe207834abaab5]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:05:21 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6a4d4052dd64dc9865fea55cd8744c57231ae22a]

INTEGRATION: CWS ooo19126 (1.3.460); FILE MERGED 2005/09/05 15:05:21 rt 1.3.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c1f6c03e4f81dcd471cb3a5d906cb0755fa1f63a]

INTEGRATION: CWS ooo19126 (1.11.452); FILE MERGED 2005/09/05 15:05:20 rt 1.11.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d5d72ad76b4218a37c7b42b80e7c90db5eaa89d7]

INTEGRATION: CWS ooo19126 (1.2.346); FILE MERGED 2005/09/05 15:05:20 rt 1.2.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2bd99058ae63aca94d775b03dba4b114a6cf0fe5]

INTEGRATION: CWS ooo19126 (1.5.926); FILE MERGED 2005/09/05 15:05:20 rt 1.5.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [93408690f4788e273d86cde4c6f8962b5ecbe7ed]

INTEGRATION: CWS ooo19126 (1.2.368); FILE MERGED 2005/09/05 15:05:19 rt 1.2.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [59582f576c7580ffe292eb65b96a2bcdba4d3d1a]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:05:19 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c221bd9a1d81eb2db20847de477babe9e329b2f3]

INTEGRATION: CWS ooo19126 (1.3.520); FILE MERGED 2005/09/05 15:05:19 rt 1.3.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7722fc27a4521bc4320dd5a6f5774d1f95d0e09e]

INTEGRATION: CWS ooo19126 (1.11.326); FILE MERGED 2005/09/05 15:05:19 rt 1.11.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6f88709e886a1751f8d276fd2c7d94a21a15001c]

INTEGRATION: CWS ooo19126 (1.4.926); FILE MERGED 2005/09/05 15:05:18 rt 1.4.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eb89b3ce78949744940305d46bd2e787f211b558]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:18 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [235ec82a5174b5263038640abe6117c75ce46443]

INTEGRATION: CWS ooo19126 (1.7.144); FILE MERGED 2005/09/05 15:05:18 rt 1.7.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [62c632116d7cb4d1581f7d86fb54b44b8d0611ee]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:05:17 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dc080c2e3051bec30001d905be60b9f9144c9aec]

INTEGRATION: CWS ooo19126 (1.5.368); FILE MERGED 2005/09/05 15:05:17 rt 1.5.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b0598db49ddfc1512c8f8a61922af8ef29cdb1e7]

INTEGRATION: CWS ooo19126 (1.2.368); FILE MERGED 2005/09/05 15:05:17 rt 1.2.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b385bcd39717d907c36ae3006d501814949e3d1b]

INTEGRATION: CWS ooo19126 (1.34.196); FILE MERGED 2005/09/05 15:05:17 rt 1.34.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [14ccfe9b97bf0cc62f4ab55b00347e3954535002]

INTEGRATION: CWS ooo19126 (1.11.130); FILE MERGED 2005/09/05 15:05:16 rt 1.11.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [71b4272ffa6e51b35e47d57cfce0763cdfade8d1]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:16 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6e6d28f5a21367a8809ab53cba5aab9853a3f43e]

INTEGRATION: CWS ooo19126 (1.2.930); FILE MERGED 2005/09/05 15:05:15 rt 1.2.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d36aed8ac911dd11223a5eb6eceaea2c12b39002]

INTEGRATION: CWS ooo19126 (1.4.368); FILE MERGED 2005/09/05 15:05:15 rt 1.4.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6ef531d65286261378c0bb0181bb3c13312a5737]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:05:15 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3ae067abf2de73f77630631695227ce56d7f5785]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:14 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [de7c06b18ccda6b7f18c1ac2a30f4242cab239ed]

INTEGRATION: CWS ooo19126 (1.5.344); FILE MERGED 2005/09/05 15:05:14 rt 1.5.344.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [87faaaf09c204031ab42173ba04db38e4e832b4b]

INTEGRATION: CWS ooo19126 (1.2.904); FILE MERGED 2005/09/05 15:05:13 rt 1.2.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [42fae267d9762422398c68c39e25569486a3bb39]

INTEGRATION: CWS ooo19126 (1.5.346); FILE MERGED 2005/09/05 15:05:13 rt 1.5.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [30748a890fba2085d17b23e1b0477d87326df536]

INTEGRATION: CWS ooo19126 (1.10.346); FILE MERGED 2005/09/05 15:05:13 rt 1.10.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a9af2d3cd34884df65d4eab35214eb36389a37ea]

INTEGRATION: CWS ooo19126 (1.12.346); FILE MERGED 2005/09/05 15:05:12 rt 1.12.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a1c689b7163fc80a26355ac1e19e150273d6a98d]

INTEGRATION: CWS ooo19126 (1.3.906); FILE MERGED 2005/09/05 15:05:12 rt 1.3.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2ce730f94c35556fd21d4d20d1ff2fd35ae933ef]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:11 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [538c9fa9644fa8e0dcd2ef0f61a5eecef040ab9f]

INTEGRATION: CWS ooo19126 (1.3.460); FILE MERGED 2005/09/05 15:05:11 rt 1.3.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [48c322054d3b9b42fa10a9b676e2f974bdd7dc12]

INTEGRATION: CWS ooo19126 (1.9.452); FILE MERGED 2005/09/05 15:05:11 rt 1.9.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c78c3715d0c5fe027891aa33a833cefa43b8250f]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:05:10 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f5e8e5c29e2e628d19562304ef8037f9606351a0]

INTEGRATION: CWS ooo19126 (1.3.906); FILE MERGED 2005/09/05 15:05:10 rt 1.3.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b3dbd289baa5d598f3f60627d3921562c0555b34]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:05:10 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a8e5485540c8b7e6d5e15539b3f2c2558c55ed56]

INTEGRATION: CWS ooo19126 (1.2.326); FILE MERGED 2005/09/05 15:05:09 rt 1.2.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3e9bd95d599b8f5168cf33c15188a403d58b9d24]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:09 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7b17f8ce879fdbb10ca8a8d3e573c91ca57b4cad]

INTEGRATION: CWS ooo19126 (1.5.926); FILE MERGED 2005/09/05 15:05:08 rt 1.5.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [30c1060bf0119c46a10ea7f315e542de91668654]

INTEGRATION: CWS ooo19126 (1.3.552); FILE MERGED 2005/09/05 15:05:08 rt 1.3.552.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [464ced5e277fc900b9e96820a611204cb9190df0]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:07 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a1bfec0d1772ada31d81135ca7f9e81628f6d380]

INTEGRATION: CWS ooo19126 (1.7.346); FILE MERGED 2005/09/05 15:05:07 rt 1.7.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [814c6b9112d2456a68bc1f8e8a8a337cc2676b4d]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:06 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [decacc65e5eb15c8289a91d243a9cab3875634ec]

INTEGRATION: CWS ooo19126 (1.4.930); FILE MERGED 2005/09/05 15:05:06 rt 1.4.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [890182c978e7cc4718c8a65ce7cd0807e8074ddd]

INTEGRATION: CWS ooo19126 (1.9.308); FILE MERGED 2005/09/05 15:05:05 rt 1.9.308.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fedb553ecb63de1571dbcc139b4a371a2dea65b7]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:05:05 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [900cbad75141ca58dd13462d7bea9c45d1bdfb0c]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:05:05 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6ff9614d6dc1125236c550a017ececcff91b30f9]

INTEGRATION: CWS ooo19126 (1.7.906); FILE MERGED 2005/09/05 15:05:04 rt 1.7.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ca541ab35d9c0b1742139fabee608315226e0d04]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:05:04 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c7901652e9e0139cd489f7c5be6cf6fed3cf47d5]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:05:04 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cdc15d28558003bc5e651cfb5df214ec9f3ca531]

INTEGRATION: CWS ooo19126 (1.2.526); FILE MERGED 2005/09/05 15:05:03 rt 1.2.526.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cf7da8b8075770a61090269a77370669acec0d52]

INTEGRATION: CWS ooo19126 (1.2.908); FILE MERGED 2005/09/05 15:05:03 rt 1.2.908.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [52286fa6dfd672117ebe27c8a00d3e9d2229ca50]

INTEGRATION: CWS ooo19126 (1.15.368); FILE MERGED 2005/09/05 15:05:02 rt 1.15.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [37178eef5ce39fd78763ae1360e72f5370703110]

INTEGRATION: CWS ooo19126 (1.21.154); FILE MERGED 2005/09/05 15:05:02 rt 1.21.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [aec702fcd88195d215c7694541c22b1976d5531b]

INTEGRATION: CWS ooo19126 (1.26.154); FILE MERGED 2005/09/05 15:05:02 rt 1.26.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [890ad7ce27ca817dcc20d4ec37cba8cd53bd66c5]

INTEGRATION: CWS ooo19126 (1.7.774); FILE MERGED 2005/09/05 15:05:01 rt 1.7.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d289f96ab5e7ac4f9eab4760a9341305dbfd4982]

INTEGRATION: CWS ooo19126 (1.10.452); FILE MERGED 2005/09/05 15:05:01 rt 1.10.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a3a5d412268095ce6078ba79677a0e431cfa2e70]

INTEGRATION: CWS ooo19126 (1.8.774); FILE MERGED 2005/09/05 15:05:01 rt 1.8.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7e8fdba84e5172c21c411139f874882e4d93ce73]

INTEGRATION: CWS ooo19126 (1.5.774); FILE MERGED 2005/09/05 15:05:00 rt 1.5.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [54bb9ceb142a61b5f0097eb040d4a3d108d3eb51]

INTEGRATION: CWS ooo19126 (1.7.774); FILE MERGED 2005/09/05 15:05:00 rt 1.7.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [033723a8f5bd37e71d3740bc8a9145e93af3252f]

INTEGRATION: CWS ooo19126 (1.9.774); FILE MERGED 2005/09/05 15:05:00 rt 1.9.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c567ded70c8c030445992783923747fda20d65f7]

INTEGRATION: CWS ooo19126 (1.2.774); FILE MERGED 2005/09/05 15:04:59 rt 1.2.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b0b31967810286c878c11734ac9388eb82049f5c]

INTEGRATION: CWS ooo19126 (1.24.452); FILE MERGED 2005/09/05 15:04:59 rt 1.24.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d093556278fbe73210b3df67ae5984baae3adbc0]

INTEGRATION: CWS ooo19126 (1.3.774); FILE MERGED 2005/09/05 15:04:58 rt 1.3.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ec8934b835006d785d96fb9207f1c4453accbe3f]

INTEGRATION: CWS ooo19126 (1.12.154); FILE MERGED 2005/09/05 15:04:58 rt 1.12.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [39e405b580411da3f36decd7ba5393f8fc74c922]

INTEGRATION: CWS ooo19126 (1.20.774); FILE MERGED 2005/09/05 15:04:57 rt 1.20.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4038b1d251e58ef7730a9f8f5dce34dbf29807fa]

INTEGRATION: CWS ooo19126 (1.10.452); FILE MERGED 2005/09/05 15:04:57 rt 1.10.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ae9cce0eb64a53e1e2a264912a63144c72eb3fcd]

INTEGRATION: CWS ooo19126 (1.13.774); FILE MERGED 2005/09/05 15:04:57 rt 1.13.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fb0e621ae10ba6b327e1168003b807edd57c5ba8]

INTEGRATION: CWS ooo19126 (1.8.900); FILE MERGED 2005/09/05 15:04:56 rt 1.8.900.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [120cc15112bfd019dd38fe9cebbe73a904d501ad]

INTEGRATION: CWS ooo19126 (1.5.520); FILE MERGED 2005/09/05 15:04:55 rt 1.5.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a6238adc1e6d82fd8559e241ab7d58f81b91264a]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:04:55 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5aeae1f1a583b5f4bf3be72a98a7ed13d9ed2071]

INTEGRATION: CWS ooo19126 (1.26.118); FILE MERGED 2005/09/05 15:04:54 rt 1.26.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6a8c206b58f2164a950322916450ecc8ab4927ad]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:04:54 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f5aff42ae62ddfdba871ffb87b062afbc53518ed]

INTEGRATION: CWS ooo19126 (1.4.520); FILE MERGED 2005/09/05 15:04:54 rt 1.4.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9b405d6e17c3e8557202ecc783a8225cc88cdeb2]

INTEGRATION: CWS ooo19126 (1.2.598); FILE MERGED 2005/09/05 15:04:54 rt 1.2.598.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [688cdcd2ef30f2bc074dc3cf7530a775428787c7]

INTEGRATION: CWS ooo19126 (1.5.208); FILE MERGED 2005/09/05 15:04:52 rt 1.5.208.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1c96e9c438109a49afee495a33f7a9d42b685bae]

INTEGRATION: CWS ooo19126 (1.2.520); FILE MERGED 2005/09/05 15:04:51 rt 1.2.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f9c86d7026deaebd088fc7557856282fe3432c16]

INTEGRATION: CWS ooo19126 (1.11.452); FILE MERGED 2005/09/05 15:04:51 rt 1.11.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c5e5043210c017cd95a459f703112a5db0e9d7b8]

INTEGRATION: CWS ooo19126 (1.45.118); FILE MERGED 2005/09/05 15:04:50 rt 1.45.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7512551e0a52beb973720504e87c7ce3f1d6e4c5]

INTEGRATION: CWS ooo19126 (1.2.904); FILE MERGED 2005/09/05 15:04:50 rt 1.2.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8fbf432d4c0bf0110b7c83d43a4a35d7ad98af8e]

INTEGRATION: CWS ooo19126 (1.3.578); FILE MERGED 2005/09/05 15:04:50 rt 1.3.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3bc834e03cc27fb2d7dece4911e2c5998d5b476d]

INTEGRATION: CWS ooo19126 (1.31.118); FILE MERGED 2005/09/05 15:04:50 rt 1.31.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [011eb9df1744966b431c53ac3cc8f6e510fa6e98]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:04:49 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7f3ae54dfdbbcfd14222fa1bba190bb41db84400]

INTEGRATION: CWS ooo19126 (1.8.456); FILE MERGED 2005/09/05 15:04:49 rt 1.8.456.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2e758c67fe4f5af5c6af911eef90de444215c499]

INTEGRATION: CWS ooo19126 (1.3.536); FILE MERGED 2005/09/05 15:04:48 rt 1.3.536.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [77323c0d90aaaba468ea460e4e9d6e5aa3fb2598]

INTEGRATION: CWS ooo19126 (1.63.354); FILE MERGED 2005/09/05 15:04:47 rt 1.63.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b7fbef8da7b7cc0eba37dfbf6a6ef3ee09920e5c]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:04:47 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7454974daa166842d7d51b2a50c6177ecc6387db]

INTEGRATION: CWS ooo19126 (1.7.176); FILE MERGED 2005/09/05 15:04:47 rt 1.7.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [19ac6d5ce1c2458354d194b679cf4195c1f26342]

INTEGRATION: CWS ooo19126 (1.5.392); FILE MERGED 2005/09/05 15:04:45 rt 1.5.392.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cdfa6fcbbeb211c5dfcb7a63a9a91e577b1e49e0]

INTEGRATION: CWS ooo19126 (1.8.144); FILE MERGED 2005/09/05 15:04:45 rt 1.8.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bb48441d62ffddf7fcbccd01019c94162742dd19]

INTEGRATION: CWS ooo19126 (1.3.798); FILE MERGED 2005/09/05 15:04:45 rt 1.3.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d0500dcd430567739a92fae5d4d0c22128072ea0]

INTEGRATION: CWS ooo19126 (1.20.144); FILE MERGED 2005/09/05 15:04:45 rt 1.20.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ec5d3e95f7268971df01077caa7bbdaad39b6de9]

INTEGRATION: CWS ooo19126 (1.7.146); FILE MERGED 2005/09/05 15:04:44 rt 1.7.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7399db22d8101fecd2161b56ce36868747266928]

INTEGRATION: CWS ooo19126 (1.10.214); FILE MERGED 2005/09/05 15:04:44 rt 1.10.214.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [72b4540836b9b920ffd00067a3eacd5189a3a19c]

INTEGRATION: CWS ooo19126 (1.8.240); FILE MERGED 2005/09/05 15:04:44 rt 1.8.240.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [76e5d6a0fc9c63c35b9b509ac1d3dd73901bedeb]

INTEGRATION: CWS ooo19126 (1.4.904); FILE MERGED 2005/09/05 15:04:44 rt 1.4.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cc2bff8beb1951a51e0efb55056337dedb8a10c1]

INTEGRATION: CWS ooo19126 (1.19.120); FILE MERGED 2005/09/05 15:04:43 rt 1.19.120.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [53d2b0d3489e2a74d76edd5d7ba9877147d76a20]

INTEGRATION: CWS ooo19126 (1.6.234); FILE MERGED 2005/09/05 15:04:43 rt 1.6.234.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4218a0732019466d38186b292cf42a2d5f0da38c]

INTEGRATION: CWS ooo19126 (1.14.146); FILE MERGED 2005/09/05 15:04:43 rt 1.14.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4831becf0c201cbbbee7b557c0de4853bd6dbbd7]

INTEGRATION: CWS ooo19126 (1.5.904); FILE MERGED 2005/09/05 15:04:42 rt 1.5.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1a7fb5d9dada08ea996dd69fd401bcb814fe3c61]

INTEGRATION: CWS ooo19126 (1.5.394); FILE MERGED 2005/09/05 15:04:42 rt 1.5.394.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e3f6b132ec9716612fa452debcd5e3b0aee73f3a]

INTEGRATION: CWS ooo19126 (1.8.394); FILE MERGED 2005/09/05 15:04:42 rt 1.8.394.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fa3e9ec2063bb48d73cd3ccd0a97185600415728]

INTEGRATION: CWS ooo19126 (1.3.904); FILE MERGED 2005/09/05 15:04:41 rt 1.3.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6a643186ec69243adc8dad45c8e6dc20d76adf47]

INTEGRATION: CWS ooo19126 (1.7.114); FILE MERGED 2005/09/05 15:04:41 rt 1.7.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e90de9c4ff43d43c64dfebdedfa20a4b13b6e40f]

INTEGRATION: CWS ooo19126 (1.5.564); FILE MERGED 2005/09/05 15:04:41 rt 1.5.564.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [54b572f068cb62556b819b768cbdfa6972e29c0d]

INTEGRATION: CWS ooo19126 (1.12.324); FILE MERGED 2005/09/05 15:04:41 rt 1.12.324.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cf2ad1ff5d42d8b1667646eadf94a93c74c38ddf]

INTEGRATION: CWS ooo19126 (1.10.326); FILE MERGED 2005/09/05 15:04:40 rt 1.10.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cec596e936b840571bec959c9eb0eaee33d59243]

INTEGRATION: CWS ooo19126 (1.23.242); FILE MERGED 2005/09/05 15:04:40 rt 1.23.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3c301877007e357021c4023aedd9ecfcd806ec7c]

INTEGRATION: CWS ooo19126 (1.23.154); FILE MERGED 2005/09/05 15:04:39 rt 1.23.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [30b364f7b6508bd020784c3a504cacb8adc7ecc4]

INTEGRATION: CWS ooo19126 (1.5.154); FILE MERGED 2005/09/05 15:04:39 rt 1.5.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4311ad647f783a59695b30ec67364eadb56ffd31]

INTEGRATION: CWS ooo19126 (1.23.114); FILE MERGED 2005/09/05 15:04:39 rt 1.23.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4161adde0777b175321976b657d748d5c2a182ab]

INTEGRATION: CWS ooo19126 (1.4.394); FILE MERGED 2005/09/05 15:04:38 rt 1.4.394.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3a66bac87b2490cbeb887f37938ce0cedfe335dd]

INTEGRATION: CWS ooo19126 (1.16.174); FILE MERGED 2005/09/05 15:04:38 rt 1.16.174.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c31018434f5701cce95eabfe5112c8f8b39083ab]

INTEGRATION: CWS ooo19126 (1.6.328); FILE MERGED 2005/09/05 15:04:38 rt 1.6.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0416fd99ab0ae2efc5f36715c3c142fbebde8b2f]

INTEGRATION: CWS ooo19126 (1.3.536); FILE MERGED 2005/09/05 15:04:37 rt 1.3.536.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [50c5f1a510b77c8c76fda7184139125eb0a7c131]

INTEGRATION: CWS ooo19126 (1.26.434); FILE MERGED 2005/09/05 15:04:37 rt 1.26.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [62df000e7e91b35dc40bc2b1e146c1e0616e06c9]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:04:37 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cdda3fe5528f9ba93d69e14a53fd7e22fdc6bcad]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:04:36 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [db996733765fb11b634e5f1323a1c069a185df7a]

INTEGRATION: CWS ooo19126 (1.21.146); FILE MERGED 2005/09/05 15:04:36 rt 1.21.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1c5aae11f59e9159ee61b6ce56ff64d828a714a4]

INTEGRATION: CWS ooo19126 (1.3.752); FILE MERGED 2005/09/05 15:04:36 rt 1.3.752.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5de0f29896393cd369d06dd1d55a0085c13bcb53]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:04:36 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d87a5ce59d5b96ebeeab1c4b64af8a8ac387f1d3]

INTEGRATION: CWS ooo19126 (1.2.926); FILE MERGED 2005/09/05 15:04:35 rt 1.2.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fc23952ccefc6e728344d84ae38c2531069fd843]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:04:35 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f80f003cb86e90c9be0b719f340d757e27f859af]

INTEGRATION: CWS ooo19126 (1.6.460); FILE MERGED 2005/09/05 15:04:34 rt 1.6.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2d67a5a71884bc788cd95a1616ad1cc90665238b]

INTEGRATION: CWS ooo19126 (1.31.194); FILE MERGED 2005/09/05 15:04:34 rt 1.31.194.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b4a4a69f28f3d778f92140145bbfdfac2056d5c7]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:04:33 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7318e6488c17da3a37bf8b25e30056f6d14c50d1]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:04:33 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [806b5eb9bbf1fce31a14c07729f31978f0a09d96]

INTEGRATION: CWS ooo19126 (1.18.128); FILE MERGED 2005/09/05 15:04:33 rt 1.18.128.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7525cc67fb242b5ed7ef02dcff6ab598458f1de5]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:04:32 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d0f9fb14e6f169a76ec5f33aa6b2f79a9f104d69]

INTEGRATION: CWS ooo19126 (1.14.326); FILE MERGED 2005/09/05 15:04:32 rt 1.14.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [17b9f787a2a0c51621a325c747cf81da66b44b50]

INTEGRATION: CWS ooo19126 (1.14.328); FILE MERGED 2005/09/05 15:04:32 rt 1.14.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b19e90cfcb3a5933bddfc406f7eb16dfac8b9274]

INTEGRATION: CWS ooo19126 (1.43.100); FILE MERGED 2005/09/05 15:04:31 rt 1.43.100.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c29e5422155d8d7ef7e7ea35ae3c467a78f41a95]

INTEGRATION: CWS ooo19126 (1.22.154); FILE MERGED 2005/09/05 15:04:31 rt 1.22.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4d4f8e5ee55a6855b9486750b8558a22e7015bb1]

INTEGRATION: CWS ooo19126 (1.16.326); FILE MERGED 2005/09/05 15:04:30 rt 1.16.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d2a4020ab644965e051eebba1faba1297fcb0310]

INTEGRATION: CWS ooo19126 (1.80.114); FILE MERGED 2005/09/05 15:04:30 rt 1.80.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5866cb32d9b78cf18a1b28a6f8ce43fb16aff1e5]

INTEGRATION: CWS ooo19126 (1.53.128); FILE MERGED 2005/09/05 15:04:29 rt 1.53.128.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4eb4974238d03aeb75b5662992cd7c7b2eee1078]

INTEGRATION: CWS ooo19126 (1.18.326); FILE MERGED 2005/09/05 15:04:29 rt 1.18.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d156964172344618ff293d45d5ef06bd4672b83b]

INTEGRATION: CWS ooo19126 (1.12.376); FILE MERGED 2005/09/05 15:04:28 rt 1.12.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [60e90551a6669ba86d1660c0b08983b1a74d06f7]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:04:28 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dc1b020266be8c33e9396a23b0d1f1e7aa9301c8]

INTEGRATION: CWS ooo19126 (1.19.326); FILE MERGED 2005/09/05 15:04:28 rt 1.19.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3d02af407c183631609a01345e5576ef443bb601]

INTEGRATION: CWS ooo19126 (1.41.434); FILE MERGED 2005/09/05 15:04:27 rt 1.41.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3de1d6e5d67b417d8814de194c516866030f5ced]

INTEGRATION: CWS ooo19126 (1.13.346); FILE MERGED 2005/09/05 15:04:27 rt 1.13.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [76beb41386d7242e75f777810edefb8a87e4a7de]

INTEGRATION: CWS ooo19126 (1.7.346); FILE MERGED 2005/09/05 15:04:26 rt 1.7.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b84ba7bdea145c787b1e0cf4ed3457bbc8ccb252]

INTEGRATION: CWS ooo19126 (1.8.346); FILE MERGED 2005/09/05 15:04:26 rt 1.8.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4743635709d253a67f8595c6294b0c186b9b7d77]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:04:26 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [214071257875892855c4ff4bf591cd186a5c3350]

INTEGRATION: CWS ooo19126 (1.9.376); FILE MERGED 2005/09/05 15:04:25 rt 1.9.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [33f4cb8f0416eefa95882d168b09fe76bc75c4ab]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:04:25 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d8e5f754fa5e515bf275a0f2b61b62e5ed1fb55e]

INTEGRATION: CWS ooo19126 (1.6.308); FILE MERGED 2005/09/05 15:04:25 rt 1.6.308.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c489553427af6dc38a79f004b3f68de63bb3948e]

INTEGRATION: CWS ooo19126 (1.40.192); FILE MERGED 2005/09/05 15:04:24 rt 1.40.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b295c8ed06317b8ef98535ba2f4212b3b728f4d6]

INTEGRATION: CWS ooo19126 (1.3.508); FILE MERGED 2005/09/05 15:04:24 rt 1.3.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e653f815ea176a72267153161a855baad8ba44b3]

INTEGRATION: CWS ooo19126 (1.10.346); FILE MERGED 2005/09/05 15:04:24 rt 1.10.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3a6f23bd5ce77821341158f2d8126e7d47af7f3b]

INTEGRATION: CWS ooo19126 (1.19.176); FILE MERGED 2005/09/05 15:04:23 rt 1.19.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5a4e89ce14008bb729f909d162fb762de27db399]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:04:23 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [86ee1636f52698002c2290299c5548d7933d8968]

INTEGRATION: CWS ooo19126 (1.35.376); FILE MERGED 2005/09/05 15:04:23 rt 1.35.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4304b0c8d3ce8d743bb8ffcd365ba9b770cc01c3]

INTEGRATION: CWS ooo19126 (1.4.376); FILE MERGED 2005/09/05 15:04:22 rt 1.4.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1e97145b5e70f022fb9f18553acc488f72d5dd23]

INTEGRATION: CWS ooo19126 (1.8.176); FILE MERGED 2005/09/05 15:04:22 rt 1.8.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2b18ba904999132209aae6b10ac55a06e30a9726]

INTEGRATION: CWS ooo19126 (1.56.118); FILE MERGED 2005/09/05 15:04:22 rt 1.56.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d649dd71877208f6ad423d4fa4a834764bcd4765]

INTEGRATION: CWS ooo19126 (1.6.376); FILE MERGED 2005/09/05 15:04:21 rt 1.6.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6f3a3a0ec18e22a41a9df1b052169f20a63ca73c]

INTEGRATION: CWS ooo19126 (1.6.346); FILE MERGED 2005/09/05 15:04:21 rt 1.6.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b73704c8de62e6c7467a51bfc4aece805f5d7fd3]

INTEGRATION: CWS ooo19126 (1.7.456); FILE MERGED 2005/09/05 15:04:21 rt 1.7.456.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5075ec043e11ab8c84948c9331c9ce2222c2fdef]

INTEGRATION: CWS ooo19126 (1.7.328); FILE MERGED 2005/09/05 15:04:21 rt 1.7.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f6c2eaef26a6e81d24c30362bf67b1ff8d905752]

INTEGRATION: CWS ooo19126 (1.31.434); FILE MERGED 2005/09/05 15:04:17 rt 1.31.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bb482e6f297b8d740dfe29f642aa13b5f80dcad9]

INTEGRATION: CWS ooo19126 (1.4.904); FILE MERGED 2005/09/05 15:04:17 rt 1.4.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e2ef3975c8662417199f8ced3220221ec47d990c]

INTEGRATION: CWS ooo19126 (1.10.460); FILE MERGED 2005/09/05 15:04:17 rt 1.10.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [21b6d91b6beb8c031033f8f9c13c71f2420a0938]

INTEGRATION: CWS ooo19126 (1.3.920); FILE MERGED 2005/09/05 15:04:17 rt 1.3.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [768d96b13beae4d4653519c8fd2ab09de33d2ce5]

INTEGRATION: CWS ooo19126 (1.11.376); FILE MERGED 2005/09/05 15:04:16 rt 1.11.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [604cdca2a107c41a6c0f5cab121a2e6e26466878]

INTEGRATION: CWS ooo19126 (1.15.258); FILE MERGED 2005/09/05 15:04:16 rt 1.15.258.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9cafd5667211e7cc5e1808e4d560136a0ed980d5]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:04:16 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [64da4bbe9f33dc1d403e0362a7a86cb498b5e1f4]

INTEGRATION: CWS ooo19126 (1.2.368); FILE MERGED 2005/09/05 15:04:15 rt 1.2.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [007f9b57f5ae0359ef2146e27db8b8d516323a76]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:04:15 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1e98b9c4305580289b74ab961ba6e2a4ae4faf7e]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:04:15 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [79ca9f92dcbfe24bcf93b494843bd70fda4685f8]

INTEGRATION: CWS ooo19126 (1.34.434); FILE MERGED 2005/09/05 15:04:14 rt 1.34.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fe908b94ffe3a54d5c37f849cf80010ee4840a94]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:04:14 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [784a176a4d5fee45fdd5a2108acd9e06dc961f71]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:04:13 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7e852a838a76bf3c1e20109147a4f4bda3e1b633]

INTEGRATION: CWS ooo19126 (1.8.346); FILE MERGED 2005/09/05 15:04:13 rt 1.8.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [10f247f3f8cea662f0f1feb503a337e24192fc8c]

INTEGRATION: CWS ooo19126 (1.8.344); FILE MERGED 2005/09/05 15:04:12 rt 1.8.344.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bcdff435efc2b42a3d3a351c2d871e807ba9c782]

INTEGRATION: CWS ooo19126 (1.2.904); FILE MERGED 2005/09/05 15:04:12 rt 1.2.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [72a7e95342b82e812d9ad90bccc11c105798bd35]

INTEGRATION: CWS ooo19126 (1.9.798); FILE MERGED 2005/09/05 15:04:11 rt 1.9.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9d794e7b120596502a0166cafa985596ea9a2d3c]

INTEGRATION: CWS ooo19126 (1.21.306); FILE MERGED 2005/09/05 15:04:11 rt 1.21.306.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7367aa56791975f70fcd89b5413f3848625217ed]

INTEGRATION: CWS ooo19126 (1.7.434); FILE MERGED 2005/09/05 15:04:10 rt 1.7.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c861d10be201a292445102d096769b0ea2e3fd47]

INTEGRATION: CWS ooo19126 (1.35.118); FILE MERGED 2005/09/05 15:04:10 rt 1.35.118.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [745f3ce8d61ef504d5eecccfbf43ee0c0f0d5a1c]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:04:10 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ccf87406a9546ed27dc1ad4ca3948aa47f92c06c]

INTEGRATION: CWS ooo19126 (1.8.452); FILE MERGED 2005/09/05 15:04:09 rt 1.8.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d6cabe1cfc4060abefbb73113a5e825abc117976]

INTEGRATION: CWS ooo19126 (1.32.434); FILE MERGED 2005/09/05 15:04:09 rt 1.32.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [50f97f3e940fdeff81635fe1492d95b960f8bf07]

INTEGRATION: CWS ooo19126 (1.3.904); FILE MERGED 2005/09/05 15:04:09 rt 1.3.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1b3ca3c8d42b0c9eb8ffd550a34d56395e6b462e]

INTEGRATION: CWS ooo19126 (1.22.308); FILE MERGED 2005/09/05 15:04:08 rt 1.22.308.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d866bb6c4c08b7234da5d391ba30f406e18ccc7e]

INTEGRATION: CWS ooo19126 (1.7.188); FILE MERGED 2005/09/05 15:04:08 rt 1.7.188.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d51aef92e3a35005cac5815f3e0a06a0b0e1d869]

INTEGRATION: CWS ooo19126 (1.4.578); FILE MERGED 2005/09/05 15:04:07 rt 1.4.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2062a2979dc1df443f7a98db1bf3c4165dff3475]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:04:07 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0343dc6f223fda479376208584c59fdf454b73a8]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:04:07 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3c742361fcfb826706b1a037d4ba85c2b8784510]

INTEGRATION: CWS ooo19126 (1.4.130); FILE MERGED 2005/09/05 15:04:06 rt 1.4.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b7960b5b3004faa7d5dbeb8cca1509a57e2a5c33]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:04:06 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [53feded83037cdc47f717dad0010721e883c4fc7]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:04:05 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ae2c8b9be6c733e50158ba9d0704f595fbf5e82a]

INTEGRATION: CWS ooo19126 (1.7.66); FILE MERGED 2005/09/05 15:04:05 rt 1.7.66.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [62b7972d0d1858fef369dc138d63d106b99e1b86]

INTEGRATION: CWS ooo19126 (1.7.346); FILE MERGED 2005/09/05 15:04:05 rt 1.7.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d0f94aa63b121584f74060f08e66c05e6c758d55]

INTEGRATION: CWS ooo19126 (1.2.460); FILE MERGED 2005/09/05 15:04:04 rt 1.2.460.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [642f02408b4a4dc01079a5a45520eef1c7ba70bc]

INTEGRATION: CWS ooo19126 (1.5.906); FILE MERGED 2005/09/05 15:04:04 rt 1.5.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1ab01174e78d518cff28cdf08894d6f96f31caac]

INTEGRATION: CWS ooo19126 (1.8.346); FILE MERGED 2005/09/05 15:04:03 rt 1.8.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b832a219d24c7ce6781bbd18ca8b4bf3d4cae9cd]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:04:03 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a2396f81a29360dd5f5d808b76a506c0b03bb043]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:04:02 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7014aca475a602de944017e28e2835d697e5a74d]

INTEGRATION: CWS ooo19126 (1.13.354); FILE MERGED 2005/09/05 15:04:02 rt 1.13.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0a94d5dffb0652fa049f8a85a08822bb11cd3a77]

INTEGRATION: CWS ooo19126 (1.26.130); FILE MERGED 2005/09/05 15:04:01 rt 1.26.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [719a49e471bd01aec61b9a87844478efba4bf22d]

INTEGRATION: CWS ooo19126 (1.3.578); FILE MERGED 2005/09/05 15:04:01 rt 1.3.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c92b8398ce57d404b5fe6c2aedd047ebc35a6bca]

INTEGRATION: CWS ooo19126 (1.9.326); FILE MERGED 2005/09/05 15:04:01 rt 1.9.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [58e2c517ec5188bdade2eaa243b23bab5e0bc234]

INTEGRATION: CWS ooo19126 (1.9.394); FILE MERGED 2005/09/05 15:04:00 rt 1.9.394.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [acb795a14dc484d866b25e125ef4c4e42e67f754]

INTEGRATION: CWS ooo19126 (1.44.104); FILE MERGED 2005/09/05 15:04:00 rt 1.44.104.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [92348eec9aa8f9a25c65193fbb650416f2af968d]

INTEGRATION: CWS ooo19126 (1.30.114); FILE MERGED 2005/09/05 15:04:00 rt 1.30.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6e67adb0c13a8dec28f181ac7e316f58d0f9ce83]

INTEGRATION: CWS ooo19126 (1.2.920); FILE MERGED 2005/09/05 15:03:59 rt 1.2.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f14752801310472e5bd2efee81374e69dd826d67]

INTEGRATION: CWS ooo19126 (1.2.798); FILE MERGED 2005/09/05 15:03:59 rt 1.2.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1227f289973cbd6117f79a84aaa95e6d1cee8c3a]

INTEGRATION: CWS ooo19126 (1.14.124); FILE MERGED 2005/09/05 15:03:59 rt 1.14.124.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7869c411a6e12429b1831fb504fc3d5fde2d7ead]

INTEGRATION: CWS ooo19126 (1.1.932); FILE MERGED 2005/09/05 15:03:58 rt 1.1.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f9d8ff326806149923bb82ead1b491f95770191b]

INTEGRATION: CWS ooo19126 (1.42.242); FILE MERGED 2005/09/05 15:03:58 rt 1.42.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [79ed03e575649bd5a21c64f35bd8e53d90a4f392]

INTEGRATION: CWS ooo19126 (1.59.152); FILE MERGED 2005/09/05 15:03:58 rt 1.59.152.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6b4a10fc10324caca43fbd69720c67dbcb4478d9]

INTEGRATION: CWS ooo19126 (1.26.164); FILE MERGED 2005/09/05 15:03:57 rt 1.26.164.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [86139c8519873fc9fddc23104d5b9cc92ec1cdac]

INTEGRATION: CWS ooo19126 (1.14.122); FILE MERGED 2005/09/05 15:03:57 rt 1.14.122.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ade7bf2f5e5a57fff80cd7d8b766704e528d6f5d]

INTEGRATION: CWS ooo19126 (1.15.904); FILE MERGED 2005/09/05 15:03:56 rt 1.15.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [378405fc7940438953771f6a0a4110cee3deab75]

INTEGRATION: CWS ooo19126 (1.3.782); FILE MERGED 2005/09/05 15:03:56 rt 1.3.782.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9b34ce82fe18f7c1e4f0d0296f9b32f912fb8b68]

INTEGRATION: CWS ooo19126 (1.30.452); FILE MERGED 2005/09/05 15:03:56 rt 1.30.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cd7052e1d7985337b69579a6374ee8b15f7e58f4]

INTEGRATION: CWS ooo19126 (1.28.452); FILE MERGED 2005/09/05 15:03:55 rt 1.28.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eaa807ced9cde80e74092db54feddffa75d08060]

INTEGRATION: CWS ooo19126 (1.43.452); FILE MERGED 2005/09/05 15:03:55 rt 1.43.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6e477894e39db51f59cf6dcdea9120f62febe14c]

INTEGRATION: CWS ooo19126 (1.23.452); FILE MERGED 2005/09/05 15:03:55 rt 1.23.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e27a3397b8f1b9ba462d8770067ef7bcd20422e8]

INTEGRATION: CWS ooo19126 (1.21.774); FILE MERGED 2005/09/05 15:03:54 rt 1.21.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [21a53a4eda0e9ec515d6bbe7ea31e044f9f69f14]

INTEGRATION: CWS ooo19126 (1.15.774); FILE MERGED 2005/09/05 15:03:54 rt 1.15.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ba05edd268ddb8f6df40ffc964bb2317986c1eb9]

INTEGRATION: CWS ooo19126 (1.17.774); FILE MERGED 2005/09/05 15:03:54 rt 1.17.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b6256b92014254eefbb7e5b2314891357a347f66]

INTEGRATION: CWS ooo19126 (1.12.552); FILE MERGED 2005/09/05 15:03:53 rt 1.12.552.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [29e7e7bc09fd560938e9e8b0d997a1d16f06bb7b]

INTEGRATION: CWS ooo19126 (1.30.326); FILE MERGED 2005/09/05 15:03:53 rt 1.30.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0c42951b975e5f0993697ae8e658724ac4822a0f]

INTEGRATION: CWS ooo19126 (1.2.774); FILE MERGED 2005/09/05 15:03:53 rt 1.2.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [49e82bf24299ff95be03515984ae78e394255c3d]

INTEGRATION: CWS ooo19126 (1.65.328); FILE MERGED 2005/09/05 15:03:52 rt 1.65.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4118d263f9ccad6135ca5c6a78b63200478e6373]

INTEGRATION: CWS ooo19126 (1.9.258); FILE MERGED 2005/09/05 15:03:52 rt 1.9.258.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d9f2b6ca25fed2a84102ba040b4694bc7eb62911]

INTEGRATION: CWS ooo19126 (1.16.344); FILE MERGED 2005/09/05 15:03:51 rt 1.16.344.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ec62f0af9ab99edac6b51101d25834d26e1dcee5]

INTEGRATION: CWS ooo19126 (1.28.774); FILE MERGED 2005/09/05 15:03:51 rt 1.28.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ee681d32249395e054f56c74a9119780a6966f18]

INTEGRATION: CWS ooo19126 (1.15.774); FILE MERGED 2005/09/05 15:03:50 rt 1.15.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0ecc4722f83dd836d16045d686f5f60d3eff8278]

INTEGRATION: CWS ooo19126 (1.26.452); FILE MERGED 2005/09/05 15:03:50 rt 1.26.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [89ffa289bb691f8285774e37c643876e181af98c]

INTEGRATION: CWS ooo19126 (1.5.774); FILE MERGED 2005/09/05 15:03:50 rt 1.5.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4b418b5ee0a671f84e59eb3a0a6f4f2afa252fe4]

INTEGRATION: CWS ooo19126 (1.56.114); FILE MERGED 2005/09/05 15:03:46 rt 1.56.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b227219807af6183f565f04760e95608335fe5c2]

INTEGRATION: CWS ooo19126 (1.9.146); FILE MERGED 2005/09/05 15:03:46 rt 1.9.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3617e409690084ae8d407dbc0014e729015cc0d2]

INTEGRATION: CWS ooo19126 (1.34.114); FILE MERGED 2005/09/05 15:03:46 rt 1.34.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1bd0fd67c2f8aa55b73d1a1ef15cbc8059e1f7e3]

INTEGRATION: CWS ooo19126 (1.27.116); FILE MERGED 2005/09/05 15:03:45 rt 1.27.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [67af24cbe3908f79409e2647017885c2258100b2]

INTEGRATION: CWS ooo19126 (1.42.92); FILE MERGED 2005/09/05 15:03:45 rt 1.42.92.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fc4b17ad065baa6255ba82ad16e4330e00a54c2e]

INTEGRATION: CWS ooo19126 (1.23.38); FILE MERGED 2005/09/05 15:03:45 rt 1.23.38.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [15949dbf9cd63ab79442e4da184eadfadaa1e565]

INTEGRATION: CWS ooo19126 (1.55.38); FILE MERGED 2005/09/05 15:03:45 rt 1.55.38.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a05a4c1b2a4a5468b6af62a7987d28017947a7bc]

INTEGRATION: CWS ooo19126 (1.25.368); FILE MERGED 2005/09/05 15:03:44 rt 1.25.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [001719acee4bcc41b6b71ff854aeb877a4956629]

INTEGRATION: CWS ooo19126 (1.57.114); FILE MERGED 2005/09/05 15:03:44 rt 1.57.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [03dbc6e286c6f18d06f91625f06a1e59094bc5a5]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:03:44 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f54b2d9427ecfb7b65d30e81bfc8bb5da1681c09]

INTEGRATION: CWS ooo19126 (1.13.114); FILE MERGED 2005/09/05 15:03:43 rt 1.13.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c6eb7d93ca1ee9d80ef83279361a9aa9b37b3468]

INTEGRATION: CWS ooo19126 (1.4.506); FILE MERGED 2005/09/05 15:03:43 rt 1.4.506.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ae118003d3581afe1b3de05c322f80d3bc11b6f6]

INTEGRATION: CWS ooo19126 (1.10.114); FILE MERGED 2005/09/05 15:03:43 rt 1.10.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [94478fc8256e70e85e76ccb5f1c0cad1e9c92615]

INTEGRATION: CWS ooo19126 (1.6.904); FILE MERGED 2005/09/05 15:03:42 rt 1.6.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [26a30288c05ac6da502390f6366d17539c562dcd]

INTEGRATION: CWS ooo19126 (1.23.116); FILE MERGED 2005/09/05 15:03:41 rt 1.23.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eb44d12ee79989bb7922eeeb249c33349359ceb1]

INTEGRATION: CWS ooo19126 (1.3.600); FILE MERGED 2005/09/05 15:03:41 rt 1.3.600.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9f8a463e43e905e968f7a547172fac473034aada]

INTEGRATION: CWS ooo19126 (1.13.116); FILE MERGED 2005/09/05 15:03:41 rt 1.13.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [73dee4d0ccd63760e18c4385f76aa3501ae39f1a]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:03:40 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e7379b4e7f0b4579dee73f522343c94e0423c667]

INTEGRATION: CWS ooo19126 (1.9.116); FILE MERGED 2005/09/05 15:03:40 rt 1.9.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [215602be2360ceba80b15be7caa5a5f8bc7eaac5]

INTEGRATION: CWS ooo19126 (1.87.116); FILE MERGED 2005/09/05 15:03:40 rt 1.87.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bf61b49a7e1361fdb2e18c9a952e550896316ff8]

INTEGRATION: CWS ooo19126 (1.114.114); FILE MERGED 2005/09/05 15:03:39 rt 1.114.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5f7d4338ab35708aa5fec7c1bad53b3d0246cd28]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:03:39 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [92becb82cf46a2b1ff33a8a7285e129f20717940]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:03:38 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ca16b44abd44a2bac52f6bf3cdb293e88be89d9b]

INTEGRATION: CWS ooo19126 (1.12.114); FILE MERGED 2005/09/05 15:03:38 rt 1.12.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e6aba2be4b6299f4ecc4baa38f257ca6d2831825]

INTEGRATION: CWS ooo19126 (1.79.116); FILE MERGED 2005/09/05 15:03:38 rt 1.79.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d362e3e58118f51a15b40ff1311de9c7e338616b]

INTEGRATION: CWS ooo19126 (1.194.52); FILE MERGED 2005/09/05 15:03:37 rt 1.194.52.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f0b337505b6f962a26d5a2bcb63bbf9be6ff6602]

INTEGRATION: CWS ooo19126 (1.10.116); FILE MERGED 2005/09/05 15:03:36 rt 1.10.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0398771227f7f7f507b7f03913ff05e442c124e3]

INTEGRATION: CWS ooo19126 (1.26.100); FILE MERGED 2005/09/05 15:03:36 rt 1.26.100.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [187fcd9969af2f100107a4cfaeb5700ce20c6c86]

INTEGRATION: CWS ooo19126 (1.15.116); FILE MERGED 2005/09/05 15:03:35 rt 1.15.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9ae8e35a0e3884358f379a2f2385816c0abfd311]

INTEGRATION: CWS ooo19126 (1.20.114); FILE MERGED 2005/09/05 15:03:35 rt 1.20.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7d080c957dd5823ae5c38dbac63c6efccd8bb825]

INTEGRATION: CWS ooo19126 (1.6.926); FILE MERGED 2005/09/05 15:03:34 rt 1.6.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ad9780245bb450ea2281feca020548968b80ca48]

INTEGRATION: CWS ooo19126 (1.20.98); FILE MERGED 2005/09/05 15:03:34 rt 1.20.98.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e6312168f7ac220c2e9cf8f59971424e7b1d59a0]

INTEGRATION: CWS ooo19126 (1.4.932); FILE MERGED 2005/09/05 15:03:34 rt 1.4.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [24b75f71e3646bcde4708fafbb5e31a5bd33160f]

INTEGRATION: CWS ooo19126 (1.6.116); FILE MERGED 2005/09/05 15:03:34 rt 1.6.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6be19ad9c7e01a986513563426929f0fbb6aec40]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:03:33 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7b10c57249007cfd9a9e7bab9211cbb54cf1f860]

INTEGRATION: CWS ooo19126 (1.17.116); FILE MERGED 2005/09/05 15:03:33 rt 1.17.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ec341ccc0abac4e69f2de27ee78f414bb74ad49d]

INTEGRATION: CWS ooo19126 (1.21.116); FILE MERGED 2005/09/05 15:03:33 rt 1.21.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d031369a8683b7acef07a605d65875f5dae79935]

INTEGRATION: CWS ooo19126 (1.83.116); FILE MERGED 2005/09/05 15:03:32 rt 1.83.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bd02ca771b7e6700c161795f28923e61b484401f]

INTEGRATION: CWS ooo19126 (1.6.480); FILE MERGED 2005/09/05 15:03:32 rt 1.6.480.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [df88cdc4d58a68b17ab0562ba857c432bd373890]

INTEGRATION: CWS ooo19126 (1.24.116); FILE MERGED 2005/09/05 15:03:32 rt 1.24.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6b224efde2e23d2905464e7c254ac3e0b57edabb]

INTEGRATION: CWS ooo19126 (1.6.326); FILE MERGED 2005/09/05 15:03:32 rt 1.6.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [00777f48d078da0f13c60c7514997e113840fe2d]

INTEGRATION: CWS ooo19126 (1.12.116); FILE MERGED 2005/09/05 15:03:32 rt 1.12.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [db4434ba8fc6e335a7613f7160ce71715c2fc267]

INTEGRATION: CWS ooo19126 (1.31.328); FILE MERGED 2005/09/05 15:03:31 rt 1.31.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a22689152bf5d3d010fb2c1d182fa71a361b6e04]

INTEGRATION: CWS ooo19126 (1.8.920); FILE MERGED 2005/09/05 15:03:31 rt 1.8.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [69a0fc448d76676cab42681ec7f4c2ec2e14d530]

INTEGRATION: CWS ooo19126 (1.23.116); FILE MERGED 2005/09/05 15:03:31 rt 1.23.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8bef3048391f96272a8280e6025476566fbdd09d]

INTEGRATION: CWS ooo19126 (1.8.116); FILE MERGED 2005/09/05 15:03:31 rt 1.8.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ae63cd4a8f55c63661571b690b4c2a0fb80a11b8]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:03:30 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [12586462d123c4c8158aa54584fd6d34c7d99f1c]

INTEGRATION: CWS ooo19126 (1.3.930); FILE MERGED 2005/09/05 15:03:30 rt 1.3.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [61313409df9609634f78d040ebdd7c7b8a916a8a]

INTEGRATION: CWS ooo19126 (1.11.116); FILE MERGED 2005/09/05 15:03:30 rt 1.11.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2b4a0d0570096e39c5602c17b9af5315704ea1b8]

INTEGRATION: CWS ooo19126 (1.2.932); FILE MERGED 2005/09/05 15:03:29 rt 1.2.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b3f272a606bb78838533157c5eb6e626babe0b2a]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:03:29 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c6e0af1dbeaff57df2b8d16a4c744775a64865a7]

INTEGRATION: CWS ooo19126 (1.10.900); FILE MERGED 2005/09/05 15:03:29 rt 1.10.900.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3b6a298ce203c8ee57726ad690df6ac2faecb96b]

INTEGRATION: CWS ooo19126 (1.24.114); FILE MERGED 2005/09/05 15:03:29 rt 1.24.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dca610aa1c8822cb1ace813b0797e7f48f1238d0]

INTEGRATION: CWS ooo19126 (1.9.326); FILE MERGED 2005/09/05 15:03:28 rt 1.9.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5c0e1b64fe0f932255f70a2da4071ff7842e367f]

INTEGRATION: CWS ooo19126 (1.23.114); FILE MERGED 2005/09/05 15:03:28 rt 1.23.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5bb0cf0edcee825014810f828154b35ccb5bb256]

INTEGRATION: CWS ooo19126 (1.5.920); FILE MERGED 2005/09/05 15:03:28 rt 1.5.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a14e2d0c414a7a0bca2e933abe267638d0562276]

INTEGRATION: CWS ooo19126 (1.12.116); FILE MERGED 2005/09/05 15:03:27 rt 1.12.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c8e1ac326c2046f5befc244cb5e0a057ac3b061f]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:03:27 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d47eb59e6060be36b8aec29b8b5f853d85d6395e]

INTEGRATION: CWS ooo19126 (1.9.116); FILE MERGED 2005/09/05 15:03:27 rt 1.9.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [15cfba51ba233d261a28941ad6bb9cb49b880fff]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:03:27 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0e5b2496054d22fdb23d28a74a0b20ba7f407c26]

INTEGRATION: CWS ooo19126 (1.17.116); FILE MERGED 2005/09/05 15:03:26 rt 1.17.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f5883db6142c6a23d46e6831eb25316b5cf6ce2f]

INTEGRATION: CWS ooo19126 (1.25.98); FILE MERGED 2005/09/05 15:03:26 rt 1.25.98.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2151dca64662c407a0c0d3f36a78667e91f96647]

INTEGRATION: CWS ooo19126 (1.43.96); FILE MERGED 2005/09/05 15:03:26 rt 1.43.96.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d47e524395d74bad4b6d99cac39ff5b23551af07]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:03:25 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1f31b756a7d45595759ef05c0f931ec7694f7c13]

INTEGRATION: CWS ooo19126 (1.6.116); FILE MERGED 2005/09/05 15:03:25 rt 1.6.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1a48d6b2501c3e5e0cb0d26938874ac24f2b7f04]

INTEGRATION: CWS ooo19126 (1.28.116); FILE MERGED 2005/09/05 15:03:25 rt 1.28.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f5ad0a1f9d7e0da97ab98d830c6f1def90a253dc]

INTEGRATION: CWS ooo19126 (1.39.116); FILE MERGED 2005/09/05 15:03:24 rt 1.39.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [36d6c542ddf1336fb88c83a2275abeee77864a2d]

INTEGRATION: CWS ooo19126 (1.1.940); FILE MERGED 2005/09/05 15:03:24 rt 1.1.940.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1e3e12fa2fa1a336496c544c34ddfb6b1f131c9c]

INTEGRATION: CWS ooo19126 (1.18.114); FILE MERGED 2005/09/05 15:03:24 rt 1.18.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fc3abacaf6d6d967549d53b78407a3d3fa822f97]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:03:24 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [99af146d53c90bbd51179ecfa9cbf725f241fcbb]

INTEGRATION: CWS ooo19126 (1.21.46); FILE MERGED 2005/09/05 15:03:23 rt 1.21.46.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f221d36d42ebcc454c93a241c126f1d9234dd298]

INTEGRATION: CWS ooo19126 (1.4.104); FILE MERGED 2005/09/05 15:03:23 rt 1.4.104.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0664c03a4c7e5d93fdff99553f25c62c207ec436]

INTEGRATION: CWS ooo19126 (1.14.116); FILE MERGED 2005/09/05 15:03:23 rt 1.14.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4707065c764397b920dfd9a3ef9aff4a352ff27d]

INTEGRATION: CWS ooo19126 (1.2.116); FILE MERGED 2005/09/05 15:03:22 rt 1.2.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [02c55804a82edc764692306a8607e0d8d78812b6]

INTEGRATION: CWS ooo19126 (1.1.904); FILE MERGED 2005/09/05 15:03:22 rt 1.1.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ca5b1f093ca72ca8b1b3c41c6cf43ff8306763b5]

INTEGRATION: CWS ooo19126 (1.9.116); FILE MERGED 2005/09/05 15:03:22 rt 1.9.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6099476900117aca7c87fdce71d3e7f3f5a0a5a0]

INTEGRATION: CWS ooo19126 (1.11.114); FILE MERGED 2005/09/05 15:03:21 rt 1.11.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [69e96877031c3b958d666f886dcf5894be81beb6]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:03:21 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [63e89b0d4373eabf3f24237e98a54d3716e79dcf]

INTEGRATION: CWS ooo19126 (1.14.116); FILE MERGED 2005/09/05 15:03:21 rt 1.14.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1561759aafd40c6096d497bdf75b35fd0aff8179]

INTEGRATION: CWS ooo19126 (1.12.932); FILE MERGED 2005/09/05 15:03:21 rt 1.12.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [42e3b1cf3b06cfb9961ed5817bfcad1e448cb132]

INTEGRATION: CWS ooo19126 (1.22.114); FILE MERGED 2005/09/05 15:03:20 rt 1.22.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [24201e6a8e3e109c8dca0ae5e987eb0421b9198f]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:03:20 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e269f7be1b19c297e5c24a6e7360b10114ee1419]

INTEGRATION: CWS ooo19126 (1.6.114); FILE MERGED 2005/09/05 15:03:20 rt 1.6.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c1eb1b70123f33bca715cdd3aad61b81591dd94a]

INTEGRATION: CWS ooo19126 (1.8.116); FILE MERGED 2005/09/05 15:03:20 rt 1.8.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [536a3f672d999abd98dbd6d036f2108ae740fbb6]

INTEGRATION: CWS ooo19126 (1.10.116); FILE MERGED 2005/09/05 15:03:19 rt 1.10.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [19836b2567669ba5c6cf363bda1464191b96c131]

INTEGRATION: CWS ooo19126 (1.13.116); FILE MERGED 2005/09/05 15:03:19 rt 1.13.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d1e2f54564ebd810158c1f5619d6c394d96354a7]

INTEGRATION: CWS ooo19126 (1.21.114); FILE MERGED 2005/09/05 15:03:19 rt 1.21.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [284ea1f095e2c7c6e0a937b9c3fafe4ee53c4ac4]

INTEGRATION: CWS ooo19126 (1.14.104); FILE MERGED 2005/09/05 15:03:18 rt 1.14.104.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [488ab761620e9435f54055b1cc8771ff873516e6]

INTEGRATION: CWS ooo19126 (1.25.114); FILE MERGED 2005/09/05 15:03:18 rt 1.25.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [da11db36a8cb3433cb14039e41b275ce681d3ab8]

INTEGRATION: CWS ooo19126 (1.5.920); FILE MERGED 2005/09/05 15:03:18 rt 1.5.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [be18c421f544f9f4f7bf2ed0f6a2deacad3207c8]

INTEGRATION: CWS ooo19126 (1.6.116); FILE MERGED 2005/09/05 15:03:17 rt 1.6.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2dc1769b2a9037cc94759df8550abcfa0f955cf3]

INTEGRATION: CWS ooo19126 (1.12.116); FILE MERGED 2005/09/05 15:03:17 rt 1.12.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1a71ca2348581ad4bf6feae1c60ebf09ce9fd323]

INTEGRATION: CWS ooo19126 (1.76.144); FILE MERGED 2005/09/05 15:03:16 rt 1.76.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6bb3ac4c468f7ef019567b41e67ad2ea0a7ed271]

INTEGRATION: CWS ooo19126 (1.20.116); FILE MERGED 2005/09/05 15:03:16 rt 1.20.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8f2ebc0ddfe20b8abca4df4ac654068d0fbad772]

INTEGRATION: CWS ooo19126 (1.15.146); FILE MERGED 2005/09/05 15:03:15 rt 1.15.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [217ab69fe348dc27a12dd0f7d533a2e6da22995a]

INTEGRATION: CWS ooo19126 (1.13.328); FILE MERGED 2005/09/05 15:03:15 rt 1.13.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [71bac3f31880ddd69443c9d6bd99eef977e25883]

INTEGRATION: CWS ooo19126 (1.26.144); FILE MERGED 2005/09/05 15:03:15 rt 1.26.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6d68a0aa5e17fa65d4f5ac66ee5e1a00b6421a9e]

INTEGRATION: CWS ooo19126 (1.21.146); FILE MERGED 2005/09/05 15:03:14 rt 1.21.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7f1b36e47698d29bbfda5c2d1e3323107e8506ae]

INTEGRATION: CWS ooo19126 (1.8.234); FILE MERGED 2005/09/05 15:03:14 rt 1.8.234.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [36c4c831aa254ea3dcae593f478535e096e46db6]

INTEGRATION: CWS ooo19126 (1.13.328); FILE MERGED 2005/09/05 15:03:13 rt 1.13.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bf1de4e02ec98431d4a8e0ee2424e384a8f39093]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:03:13 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b1c92b60e6fb282e2d7d976b612a4d5121ea7d6e]

INTEGRATION: CWS ooo19126 (1.5.114); FILE MERGED 2005/09/05 15:03:13 rt 1.5.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [64ba305e545c9319d6a1c1631b6d235470b68688]

INTEGRATION: CWS ooo19126 (1.2.196); FILE MERGED 2005/09/05 15:03:12 rt 1.2.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9e7f0ace76519b0d640f791b3e27eb35f81c1a85]

INTEGRATION: CWS ooo19126 (1.4.146); FILE MERGED 2005/09/05 15:03:12 rt 1.4.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ffde44d6b2ed30bc9f53f83548384f890ff4b6fa]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:03:12 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [03f53e0c7a072929141f3f853ed8bc22192f6668]

INTEGRATION: CWS ooo19126 (1.6.346); FILE MERGED 2005/09/05 15:03:11 rt 1.6.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7791d6aaef0588cdb34474b7fd2a054e75d1d2cd]

INTEGRATION: CWS ooo19126 (1.12.196); FILE MERGED 2005/09/05 15:03:11 rt 1.12.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [30c1a025ac6991d25eeeaf1baeaf8afdb4cf2bf1]

INTEGRATION: CWS ooo19126 (1.9.220); FILE MERGED 2005/09/05 15:03:09 rt 1.9.220.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eccea77b8c8ce87c92328ca0944a7204a56e89f2]

INTEGRATION: CWS ooo19126 (1.2.236); FILE MERGED 2005/09/05 15:03:09 rt 1.2.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ece6c8a04937e2876da4e5095d7127c339e21ddb]

INTEGRATION: CWS ooo19126 (1.10.154); FILE MERGED 2005/09/05 15:03:09 rt 1.10.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [931bca49cba9a22ba538542a58eeec7e698be080]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:03:08 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [982a40f20342ef19a20a0d14bdd743ae8fc45eb7]

INTEGRATION: CWS ooo19126 (1.6.146); FILE MERGED 2005/09/05 15:03:07 rt 1.6.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1bc0a6476cd810e807e0bed964d2d41ff171a8ad]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:03:07 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [82b1af8abd12c99ca551ef95a88cfca1e837e4df]

INTEGRATION: CWS ooo19126 (1.9.146); FILE MERGED 2005/09/05 15:03:07 rt 1.9.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c0b12a7c73675970886e9f6e9b2dff252f866ca7]

INTEGRATION: CWS ooo19126 (1.9.236); FILE MERGED 2005/09/05 15:03:06 rt 1.9.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4789923bee40a30724a45eb576788f8ae81f2e2d]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:03:06 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [41e0a4d1d49aabc9efa191a5b053e4e5f9508efe]

INTEGRATION: CWS ooo19126 (1.5.144); FILE MERGED 2005/09/05 15:03:06 rt 1.5.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e421fcf47d703c41ead0e496f30f838678ecb520]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:03:05 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7bcc6b8d1ca5e664d86c8a5cd4480432c0163115]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:03:05 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [04cb2e1843368d6bee01d89ee49084080840ff8f]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:03:03 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fe303eeb8324495bd55ae3ec1cb662f0fc9f2edc]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:03:03 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [44edaa4ce2da411374941426ccb944c83402f897]

INTEGRATION: CWS ooo19126 (1.22.116); FILE MERGED 2005/09/05 15:03:03 rt 1.22.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ce52712f6a416b055738c69bcf0ebe50b6517e4c]

INTEGRATION: CWS ooo19126 (1.3.256); FILE MERGED 2005/09/05 15:03:03 rt 1.3.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4c168f6c299f614c89c484661483284f4403b694]

INTEGRATION: CWS ooo19126 (1.16.116); FILE MERGED 2005/09/05 15:03:02 rt 1.16.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [84e234b6c08e4e091eda946f66e7f14e84ec4191]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:03:02 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [44d6d9294529b83ef6cbecf72c7ce98afcb36409]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:03:02 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [02cc991dc94df94dd1ec8dd4fd4b59013fc4aa63]

INTEGRATION: CWS ooo19126 (1.21.116); FILE MERGED 2005/09/05 15:03:01 rt 1.21.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [050fa5e5b98988e0e25ca9c7f107c7eac45c2847]

INTEGRATION: CWS ooo19126 (1.7.146); FILE MERGED 2005/09/05 15:03:01 rt 1.7.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c6da1405af8758f1b8c6288272446acf184a26d1]

INTEGRATION: CWS ooo19126 (1.4.328); FILE MERGED 2005/09/05 15:03:01 rt 1.4.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dba8c5b564ddbdd893749340018cbf749598c9b4]

INTEGRATION: CWS ooo19126 (1.11.192); FILE MERGED 2005/09/05 15:03:00 rt 1.11.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3895d44e01b8e547cf1d1f58defdca94a9993fa2]

INTEGRATION: CWS ooo19126 (1.2.192); FILE MERGED 2005/09/05 15:03:00 rt 1.2.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0b5e91d38d2a3aa26d3bab1c31ec181ff9c56d78]

INTEGRATION: CWS ooo19126 (1.6.192); FILE MERGED 2005/09/05 15:03:00 rt 1.6.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [72ab82b67eb9492f3da0eaa8041f036255d93ea3]

INTEGRATION: CWS ooo19126 (1.4.256); FILE MERGED 2005/09/05 15:02:59 rt 1.4.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [54cf976d68970f6bd9f0cf4d6a6e85ca11eba6ec]

INTEGRATION: CWS ooo19126 (1.15.116); FILE MERGED 2005/09/05 15:02:59 rt 1.15.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4642b16999225d387394d03edfdc3e0ae07b188e]

INTEGRATION: CWS ooo19126 (1.7.176); FILE MERGED 2005/09/05 15:02:59 rt 1.7.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e3efa1c55ff2b285ace9f353e176f1702b2ccfc0]

INTEGRATION: CWS ooo19126 (1.24.146); FILE MERGED 2005/09/05 15:02:59 rt 1.24.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3dcff4cf9632b7c6aad476fc04cc3edeac9ec5c7]

INTEGRATION: CWS ooo19126 (1.2.116); FILE MERGED 2005/09/05 15:02:58 rt 1.2.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2f1564ab3e6cfcd9b3dab3aaf3e658b2e938ca62]

INTEGRATION: CWS ooo19126 (1.3.116); FILE MERGED 2005/09/05 15:02:58 rt 1.3.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [18cf972b93ab38cef7c5f883cc0905ebc31141d0]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:02:58 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f8393bf6f2b495145424c4afa731fb8c0c0f926b]

INTEGRATION: CWS ooo19126 (1.17.116); FILE MERGED 2005/09/05 15:02:58 rt 1.17.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [29a2f1e1107efa25e00504863cef96f52d01ce52]

INTEGRATION: CWS ooo19126 (1.9.116); FILE MERGED 2005/09/05 15:02:57 rt 1.9.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [428954f49f805ba61c391d896db63942ef11729e]

INTEGRATION: CWS ooo19126 (1.16.116); FILE MERGED 2005/09/05 15:02:57 rt 1.16.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d803640b273f3d499da8fdb405bd4e1f212f0c21]

INTEGRATION: CWS ooo19126 (1.7.146); FILE MERGED 2005/09/05 15:02:57 rt 1.7.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4ef3cdf172cf51d1ca2299e7192002a7f4b31d8e]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:02:56 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c07e74c17f4a19cc3a0c3557f3634b7e62238a40]

INTEGRATION: CWS ooo19126 (1.2.192); FILE MERGED 2005/09/05 15:02:56 rt 1.2.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [31c29d0b234ecd0bd1b92430bb890601985068cb]

INTEGRATION: CWS ooo19126 (1.11.192); FILE MERGED 2005/09/05 15:02:56 rt 1.11.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [af6b9fded0add511cf5a832cf3f4412c9226925e]

INTEGRATION: CWS ooo19126 (1.14.116); FILE MERGED 2005/09/05 15:02:55 rt 1.14.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3df40358446b98583cbfdb0cb3a5fb14a07488d1]

INTEGRATION: CWS ooo19126 (1.17.116); FILE MERGED 2005/09/05 15:02:55 rt 1.17.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b398c3233711105cc2272fb4d3153e491d537f33]

INTEGRATION: CWS ooo19126 (1.10.116); FILE MERGED 2005/09/05 15:02:55 rt 1.10.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2a2f052baef7a779ad47389f9d06986f48ecdaf5]

INTEGRATION: CWS ooo19126 (1.2.116); FILE MERGED 2005/09/05 15:02:54 rt 1.2.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fe01c72e0907175d16147dfbf58783c8e225d85f]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:02:54 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [54039a2d99ebb1c83e4003c35c95cbc31eecd72c]

INTEGRATION: CWS ooo19126 (1.6.146); FILE MERGED 2005/09/05 15:02:54 rt 1.6.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c93bde5aed0d7179274d99064bb79cb44f0f8cc2]

INTEGRATION: CWS ooo19126 (1.14.146); FILE MERGED 2005/09/05 15:02:54 rt 1.14.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [17ec37e23b23725aa12d5b03650ce3e1d592c329]

INTEGRATION: CWS ooo19126 (1.6.146); FILE MERGED 2005/09/05 15:02:53 rt 1.6.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4b23629f716a382a24d3f9cfe68287c8ce6f7a12]

INTEGRATION: CWS ooo19126 (1.5.354); FILE MERGED 2005/09/05 15:02:53 rt 1.5.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4b5d9be8735bdacfbc96b38d04abb0350e052a5f]

INTEGRATION: CWS ooo19126 (1.16.116); FILE MERGED 2005/09/05 15:02:52 rt 1.16.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7b118696d162fec395cf5ed30aaddbc7643f409c]

INTEGRATION: CWS ooo19126 (1.9.116); FILE MERGED 2005/09/05 15:02:52 rt 1.9.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [727843926894ac6bb16a71124fe855ac03e70275]

INTEGRATION: CWS ooo19126 (1.7.146); FILE MERGED 2005/09/05 15:02:52 rt 1.7.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bb8982b837e6d59c1ed611fc5ea8ae6a174de8b1]

INTEGRATION: CWS ooo19126 (1.3.328); FILE MERGED 2005/09/05 15:02:52 rt 1.3.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [63d1b4e7d1f1d296989a11c01cce79e6da2f3cef]

INTEGRATION: CWS ooo19126 (1.3.146); FILE MERGED 2005/09/05 15:02:51 rt 1.3.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [086741d225d64f7bbfcd2d7c83d93e935df5baed]

INTEGRATION: CWS ooo19126 (1.11.146); FILE MERGED 2005/09/05 15:02:51 rt 1.11.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [567891e7957289a34b100cb51302ce25a86c4d31]

INTEGRATION: CWS ooo19126 (1.16.116); FILE MERGED 2005/09/05 15:02:51 rt 1.16.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8a1aae7854376bca1c0784931b89a96974649d0e]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:02:50 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [18ab07651222dd556eb8946c37f8af63dee1fe02]

INTEGRATION: CWS ooo19126 (1.5.192); FILE MERGED 2005/09/05 15:02:50 rt 1.5.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d1c8fa11c3fff9982ed289e2361e13b91b137939]

INTEGRATION: CWS ooo19126 (1.11.146); FILE MERGED 2005/09/05 15:02:50 rt 1.11.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a746fcfc8496ff2903d85fc3ecfed48f414fb387]

INTEGRATION: CWS ooo19126 (1.42.146); FILE MERGED 2005/09/05 15:02:49 rt 1.42.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8155ef6ce7c1270d629f676dc0347371398f1d55]

INTEGRATION: CWS ooo19126 (1.10.116); FILE MERGED 2005/09/05 15:02:49 rt 1.10.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [888416c0601ea4ed37d8faf31d13048867ce7c99]

INTEGRATION: CWS ooo19126 (1.7.154); FILE MERGED 2005/09/05 15:02:49 rt 1.7.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [966293dcad8a8ada1ffe2af6b3c3157b5711ee59]

INTEGRATION: CWS ooo19126 (1.3.236); FILE MERGED 2005/09/05 15:02:49 rt 1.3.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [840dc0546dc252d5ccbadd901763919cb6f70e39]

INTEGRATION: CWS ooo19126 (1.6.452); FILE MERGED 2005/09/05 15:02:48 rt 1.6.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d8451e293c848ae84afe16b8303b4b54b240002a]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:02:48 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f686ae708a753d81b121297a73aa92248d1de7c4]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:02:48 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5b371141dd1d18b0b0d0be45384d937556a7932c]

INTEGRATION: CWS ooo19126 (1.5.154); FILE MERGED 2005/09/05 15:02:47 rt 1.5.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [34813834e317ccc624090dad7c7a984def655005]

INTEGRATION: CWS ooo19126 (1.3.196); FILE MERGED 2005/09/05 15:02:47 rt 1.3.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8e9c458369510b3f261734fb74e11409143fa1ba]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:02:47 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c608ce42fe82067bd598d3f7b6fe32bcb24c05d1]

INTEGRATION: CWS ooo19126 (1.41.116); FILE MERGED 2005/09/05 15:02:47 rt 1.41.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [70733f955f44e794af1219286ec99cc26e62e1c5]

INTEGRATION: CWS ooo19126 (1.3.116); FILE MERGED 2005/09/05 15:02:46 rt 1.3.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2342e27acb6db6887164c19de8c0976dd9c04054]

INTEGRATION: CWS ooo19126 (1.2.236); FILE MERGED 2005/09/05 15:02:46 rt 1.2.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [af7d9859b79f23e2b141f9de4c5f8aeea4e1428c]

INTEGRATION: CWS ooo19126 (1.9.256); FILE MERGED 2005/09/05 15:02:45 rt 1.9.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6e3cc8f1631bd1f5f7f970a2afaa6e5b4284055d]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:02:45 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [41748c84d9bb39fe6b8fa25bd04174d201e3d348]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:02:45 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [927abfa29c63e074d2f20561b89475727cf96315]

INTEGRATION: CWS ooo19126 (1.6.452); FILE MERGED 2005/09/05 15:02:44 rt 1.6.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2853ff8ceeb4b9e4d1d7e83297aca8093c9d881d]

INTEGRATION: CWS ooo19126 (1.3.236); FILE MERGED 2005/09/05 15:02:44 rt 1.3.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4ce316f667e0660d67576308d828630f8a57b385]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:02:44 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c42cf7de7724177dd4c1052d0f63588f658e2161]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:02:44 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7b114b2e5c62ff96c99d9fb5542ae0bccc7d1b79]

INTEGRATION: CWS ooo19126 (1.33.116); FILE MERGED 2005/09/05 15:02:43 rt 1.33.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [69b8b0cc54ac3c34de2cb0f4ad96f4a4f2246fe0]

INTEGRATION: CWS ooo19126 (1.11.196); FILE MERGED 2005/09/05 15:02:43 rt 1.11.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [51ddf645b805c1a44afca09717166ccf0a0037e0]

INTEGRATION: CWS ooo19126 (1.7.196); FILE MERGED 2005/09/05 15:02:43 rt 1.7.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c6a15208fbdf3375b2b12a5795ff8e0070f4d0d1]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:02:43 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cda98da8f892a6b3cd368fbe8a949a788936d4fe]

INTEGRATION: CWS ooo19126 (1.17.116); FILE MERGED 2005/09/05 15:02:42 rt 1.17.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c2f8e7eaf39d14c608443defb52fefda2f0f21a6]

INTEGRATION: CWS ooo19126 (1.4.328); FILE MERGED 2005/09/05 15:02:42 rt 1.4.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7d6a9508d0238acd968279125981a80dd107d0e2]

INTEGRATION: CWS ooo19126 (1.6.236); FILE MERGED 2005/09/05 15:02:42 rt 1.6.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [812d999eabce46ef0544b136013f691ee9985e02]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:02:41 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eebd171a22458fbe18a7310a339b35ee2e98542a]

INTEGRATION: CWS ooo19126 (1.7.552); FILE MERGED 2005/09/05 15:02:41 rt 1.7.552.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e501c14770457b6348eb0923ce1a543c7ac3a4a7]

INTEGRATION: CWS ooo19126 (1.6.116); FILE MERGED 2005/09/05 15:02:41 rt 1.6.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4a217211a59810826d8fc13f62c5aa2f908e7532]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:02:40 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [993bc6beba20261ae8a65d65719c4bc241c13856]

INTEGRATION: CWS ooo19126 (1.10.302); FILE MERGED 2005/09/05 15:02:40 rt 1.10.302.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8f786958fdb91c398c5695b6146ffae53521d040]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:02:40 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6d4dd72d8414f1c5a5240b4663a706f29da250d2]

INTEGRATION: CWS ooo19126 (1.46.146); FILE MERGED 2005/09/05 15:02:39 rt 1.46.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5ebc9566a0e1ebae4442b0819f63f8c8a42cbb50]

INTEGRATION: CWS ooo19126 (1.60.116); FILE MERGED 2005/09/05 15:02:39 rt 1.60.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c838e6c9d163f658c50f6751edbd2133fc802c1c]

INTEGRATION: CWS ooo19126 (1.13.146); FILE MERGED 2005/09/05 15:02:39 rt 1.13.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1ba1fd76ee45c4fb9c2e4500532254a39097eb39]

INTEGRATION: CWS ooo19126 (1.16.146); FILE MERGED 2005/09/05 15:02:39 rt 1.16.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6ff1a739f88ceae0f019501e745ef207d400b4e3]

INTEGRATION: CWS ooo19126 (1.46.146); FILE MERGED 2005/09/05 15:02:38 rt 1.46.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0c3033c7f05e6f26a04bccb821dab05cbe50d8ee]

INTEGRATION: CWS ooo19126 (1.4.196); FILE MERGED 2005/09/05 15:02:38 rt 1.4.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dbe93f614b07aa01782e6a7bda1d44293e014491]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:02:38 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [449b8626c2460bfd8ad3fc7c8becc6c5becb9618]

INTEGRATION: CWS ooo19126 (1.2.236); FILE MERGED 2005/09/05 15:02:37 rt 1.2.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7bec58a3fcb8eb6e26a91f12b5ce12488a783b1e]

INTEGRATION: CWS ooo19126 (1.19.116); FILE MERGED 2005/09/05 15:02:37 rt 1.19.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1d31a83f8ddc759eebd9322628f4465a263156f2]

INTEGRATION: CWS ooo19126 (1.15.216); FILE MERGED 2005/09/05 15:02:37 rt 1.15.216.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e69ca8cd41887416b5f3d2b3e5b296a56e3aa8d3]

INTEGRATION: CWS ooo19126 (1.18.146); FILE MERGED 2005/09/05 15:02:37 rt 1.18.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [60b035c9ed6e928e43744005bd26014aaf415f68]

INTEGRATION: CWS ooo19126 (1.16.146); FILE MERGED 2005/09/05 15:02:36 rt 1.16.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1a9f09f78c46df571007bd567b22eaf1d50fd22a]

INTEGRATION: CWS ooo19126 (1.2.328); FILE MERGED 2005/09/05 15:02:36 rt 1.2.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7cd6d750810bcccc8f73d67e6b0077a675fcb857]

INTEGRATION: CWS ooo19126 (1.24.144); FILE MERGED 2005/09/05 15:02:35 rt 1.24.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [76a2005501057493ac8f0e6c9729da16ccad86d0]

INTEGRATION: CWS ooo19126 (1.13.196); FILE MERGED 2005/09/05 15:02:35 rt 1.13.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6639d64f7a76c3160e5c0f86a16c4477918f3935]

INTEGRATION: CWS ooo19126 (1.11.146); FILE MERGED 2005/09/05 15:02:34 rt 1.11.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a21b0690dcb764cf117f277ef0dfc308e0de88f0]

INTEGRATION: CWS ooo19126 (1.29.146); FILE MERGED 2005/09/05 15:02:34 rt 1.29.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [74387a72f36ae968e9d20e3139d1ec80f07c9575]

INTEGRATION: CWS ooo19126 (1.2.798); FILE MERGED 2005/09/05 15:02:34 rt 1.2.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7c4b215f0a056fbe5a3513a473f9ba4cc4e97f4d]

INTEGRATION: CWS ooo19126 (1.11.302); FILE MERGED 2005/09/05 15:02:34 rt 1.11.302.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c35e82661003aa58f4d10d4cb6372a7e42591137]

INTEGRATION: CWS ooo19126 (1.4.328); FILE MERGED 2005/09/05 15:02:33 rt 1.4.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d6bbdf391f5763770ea852855139c959a6dea9b1]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:02:33 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f1d1d9a49e685d0e2c101d9395779814231a13d2]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:02:32 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b97a8b1207f78cc1d4ba575268256cc7cc92e15f]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:02:32 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d222b25ba5d09ed51e882aabe6410da251cfd464]

INTEGRATION: CWS ooo19126 (1.22.116); FILE MERGED 2005/09/05 15:02:32 rt 1.22.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [80c08b39f3c4884e8e92393d6c4648d23f28122f]

INTEGRATION: CWS ooo19126 (1.16.114); FILE MERGED 2005/09/05 15:02:31 rt 1.16.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [21dd9798d2d1bf53971c5f9633604968b88d5a0a]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:02:31 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [53da9b9a2d8dde5e7f32133cbfdcc66d985dbb5e]

INTEGRATION: CWS ooo19126 (1.22.58); FILE MERGED 2005/09/05 15:02:31 rt 1.22.58.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ff4b0795ffb9eadd235020df5eebf830c7844354]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:02:30 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a62447b7eb682e0a9bd4774e196f90c480b6ba59]

INTEGRATION: CWS ooo19126 (1.5.328); FILE MERGED 2005/09/05 15:02:30 rt 1.5.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [aefdd714d24685bce07e103285b24eb88ea90db7]

INTEGRATION: CWS ooo19126 (1.14.116); FILE MERGED 2005/09/05 15:02:29 rt 1.14.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1eafe46f6d3e6348c1c7a33613dcf88165e38107]

INTEGRATION: CWS ooo19126 (1.8.146); FILE MERGED 2005/09/05 15:02:29 rt 1.8.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2531aa314a235c78792fca7d5f249225e9506b3c]

INTEGRATION: CWS ooo19126 (1.8.116); FILE MERGED 2005/09/05 15:02:29 rt 1.8.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0855997f5670af051d672843e52b41685809ca66]

INTEGRATION: CWS ooo19126 (1.2.116); FILE MERGED 2005/09/05 15:02:29 rt 1.2.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cca03bfab47b02fea7587016bd076d615e9fc5f5]

INTEGRATION: CWS ooo19126 (1.2.146); FILE MERGED 2005/09/05 15:02:28 rt 1.2.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e8398b9f742dbb021e0d1f481381166847716ccb]

INTEGRATION: CWS ooo19126 (1.22.114); FILE MERGED 2005/09/05 15:02:28 rt 1.22.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a3ba23f1d9a0f8c31b2902894bbc9e745048eac8]

INTEGRATION: CWS ooo19126 (1.12.116); FILE MERGED 2005/09/05 15:02:27 rt 1.12.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [908e5832678f56ef5ee09a0c66c3e99aa9957854]

INTEGRATION: CWS ooo19126 (1.15.146); FILE MERGED 2005/09/05 15:02:27 rt 1.15.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [02510efc1a00d505cfdbd39d2380ec9d6b8e21f3]

INTEGRATION: CWS ooo19126 (1.8.146); FILE MERGED 2005/09/05 15:02:26 rt 1.8.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3577c476d99f96376d6ad4634dfaa9c68e03ba9e]

INTEGRATION: CWS ooo19126 (1.10.116); FILE MERGED 2005/09/05 15:02:26 rt 1.10.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [96733d0f96200b1057192de3a61ccb3e50a27dd9]

INTEGRATION: CWS ooo19126 (1.3.146); FILE MERGED 2005/09/05 15:02:26 rt 1.3.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a029dd81e66d6c31ae0ede10731c33b6acce5b7e]

INTEGRATION: CWS ooo19126 (1.17.146); FILE MERGED 2005/09/05 15:02:26 rt 1.17.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7a9c62a099c6df3366164c1adbc1d1f16f4bac24]

INTEGRATION: CWS ooo19126 (1.19.116); FILE MERGED 2005/09/05 15:02:25 rt 1.19.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2c28e3e1e2f2a1dfab7b420dcbdcad050a5342a5]

INTEGRATION: CWS ooo19126 (1.36.42); FILE MERGED 2005/09/05 15:02:25 rt 1.36.42.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bc01ada41d8fd960d13f1e7c332a83ecfd470ede]

INTEGRATION: CWS ooo19126 (1.17.114); FILE MERGED 2005/09/05 15:02:24 rt 1.17.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [97e4bca108e772744fd80cf31d4816fccfa0b579]

INTEGRATION: CWS ooo19126 (1.3.96); FILE MERGED 2005/09/05 15:02:24 rt 1.3.96.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [935e2e0e2de3ccb94538cabd5c0ba04381dd6e48]

INTEGRATION: CWS ooo19126 (1.3.116); FILE MERGED 2005/09/05 15:02:24 rt 1.3.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bf7f1d481ba1145013bb015df7a0b9463c5ce70f]

INTEGRATION: CWS ooo19126 (1.8.116); FILE MERGED 2005/09/05 15:02:23 rt 1.8.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d8a0667b09945c428a9e90e3c88f785d4d8ebca9]

INTEGRATION: CWS ooo19126 (1.18.144); FILE MERGED 2005/09/05 15:02:23 rt 1.18.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3cf4bd4e5052b36fc63ed6d6be2d704a08fd0c4f]

INTEGRATION: CWS ooo19126 (1.7.144); FILE MERGED 2005/09/05 15:02:22 rt 1.7.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e3dbcf801c8945be9691dd0c30af0081711d0845]

INTEGRATION: CWS ooo19126 (1.6.146); FILE MERGED 2005/09/05 15:02:22 rt 1.6.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [65246d9f66d0ec88617ef11f06bf1866d8d88412]

INTEGRATION: CWS ooo19126 (1.16.146); FILE MERGED 2005/09/05 15:02:22 rt 1.16.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e4005b89b5a92017eb6528187e93885b053d52f9]

INTEGRATION: CWS ooo19126 (1.4.192); FILE MERGED 2005/09/05 15:02:22 rt 1.4.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eeb8bd7bc371a55c946b9d74afd7f5ed520a7061]

INTEGRATION: CWS ooo19126 (1.10.116); FILE MERGED 2005/09/05 15:02:21 rt 1.10.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [29060a0e70bec173f75b57295c8588f7d13a9477]

INTEGRATION: CWS ooo19126 (1.9.146); FILE MERGED 2005/09/05 15:02:21 rt 1.9.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [478bac5b3163d664e8b84d8b8973d8b6882c25b7]

INTEGRATION: CWS ooo19126 (1.3.146); FILE MERGED 2005/09/05 15:02:21 rt 1.3.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5c722fae32dfbc6107399015d3461a58c1f9ca61]

INTEGRATION: CWS ooo19126 (1.15.146); FILE MERGED 2005/09/05 15:02:20 rt 1.15.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [558467a97525b262e1cd326f814e3a3e66cb52ca]

INTEGRATION: CWS ooo19126 (1.23.116); FILE MERGED 2005/09/05 15:02:20 rt 1.23.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [91b9435b47e024c8d88f69e074265c092fc02a9e]

INTEGRATION: CWS ooo19126 (1.5.146); FILE MERGED 2005/09/05 15:02:20 rt 1.5.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0bb2ed073e3e84059744cf15dbe696fda84611c2]

INTEGRATION: CWS ooo19126 (1.11.116); FILE MERGED 2005/09/05 15:02:19 rt 1.11.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d602335f6d28677440f835ac8f0cc2f9e98a4dfd]

INTEGRATION: CWS ooo19126 (1.14.144); FILE MERGED 2005/09/05 15:02:19 rt 1.14.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1d9e11f448dedf2acbea99e35933eac71964e1b1]

INTEGRATION: CWS ooo19126 (1.6.368); FILE MERGED 2005/09/05 15:02:19 rt 1.6.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9697eb1bb1141cb581295eeb26f7968d3c41892e]

INTEGRATION: CWS ooo19126 (1.53.116); FILE MERGED 2005/09/05 15:02:18 rt 1.53.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fda35ad1436d598c1cd729e58a24cf994532ff6c]

INTEGRATION: CWS ooo19126 (1.20.146); FILE MERGED 2005/09/05 15:02:18 rt 1.20.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [809d82952dae0890de7e6aa0ebcf6c16ca4cb5d1]

INTEGRATION: CWS ooo19126 (1.33.116); FILE MERGED 2005/09/05 15:02:17 rt 1.33.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [16956f313916c01606ce8df0d24384025d0a6d2b]

INTEGRATION: CWS ooo19126 (1.74.116); FILE MERGED 2005/09/05 15:02:17 rt 1.74.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [63aad00af84d95c0ee17cde4ca64d7a89d709215]

INTEGRATION: CWS ooo19126 (1.5.434); FILE MERGED 2005/09/05 15:02:17 rt 1.5.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4fc20d597037056e5e34a9541769ab244378ab68]

INTEGRATION: CWS ooo19126 (1.12.146); FILE MERGED 2005/09/05 15:02:16 rt 1.12.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2f061468a8bcc212f2e3be7931907d2c27e1c9a5]

INTEGRATION: CWS ooo19126 (1.24.146); FILE MERGED 2005/09/05 15:02:16 rt 1.24.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eac09da3b76c3a8c42b4d03eb272b054445be2e9]

INTEGRATION: CWS ooo19126 (1.54.116); FILE MERGED 2005/09/05 15:02:16 rt 1.54.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [18465202a346d8c1460d7242b560cad616e474ac]

INTEGRATION: CWS ooo19126 (1.78.144); FILE MERGED 2005/09/05 15:02:15 rt 1.78.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ff30d6ee2a0da7c6445be2e69bf255973459a579]

INTEGRATION: CWS ooo19126 (1.37.114); FILE MERGED 2005/09/05 15:02:15 rt 1.37.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2e30e9e471c1f5abfb4395fdfd0078594933b4ec]

INTEGRATION: CWS ooo19126 (1.106.116); FILE MERGED 2005/09/05 15:02:15 rt 1.106.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9e62004a570c69054ff7dc4fe3bfb7aeba1f1d5d]

INTEGRATION: CWS ooo19126 (1.35.58); FILE MERGED 2005/09/05 15:02:14 rt 1.35.58.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cdccb8bd6b7cd23c3a339ecc365137a59a4d9454]

INTEGRATION: CWS ooo19126 (1.34.146); FILE MERGED 2005/09/05 15:02:14 rt 1.34.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [899ed296351b4c5cfdd7e6289a0ab9d61174893f]

INTEGRATION: CWS ooo19126 (1.19.146); FILE MERGED 2005/09/05 15:02:14 rt 1.19.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [477fceeb69ad8cdc6ed3de80bc00f0cde115861e]

INTEGRATION: CWS ooo19126 (1.59.146); FILE MERGED 2005/09/05 15:02:13 rt 1.59.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b893467cb1fd79fa0ef6ab5716cd4e5a032edce5]

INTEGRATION: CWS ooo19126 (1.27.116); FILE MERGED 2005/09/05 15:02:13 rt 1.27.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [166a1d5294859a4e9c5e00abfb33d6301d6e36d5]

INTEGRATION: CWS ooo19126 (1.78.116); FILE MERGED 2005/09/05 15:02:12 rt 1.78.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [607157c9f2e26cb17f12fd6778a9e8d9d712be81]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:02:11 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [85e0f47d71b1c0374ecfa1885d2670839eccab6e]

INTEGRATION: CWS ooo19126 (1.9.114); FILE MERGED 2005/09/05 15:02:11 rt 1.9.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9f3336c44697b997cb8b6ccc8c5c4752c6dea97c]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:02:11 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [66e70e2f4fe38905e38f7d1f4bdcc8655e1e92ec]

INTEGRATION: CWS ooo19126 (1.3.328); FILE MERGED 2005/09/05 15:02:10 rt 1.3.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b87c75bcb818da68226b7aa81121fc310c61d45c]

INTEGRATION: CWS ooo19126 (1.3.930); FILE MERGED 2005/09/05 15:02:10 rt 1.3.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e167507252a97f88f5211951f02ec3de30e1c150]

INTEGRATION: CWS ooo19126 (1.6.898); FILE MERGED 2005/09/05 15:02:10 rt 1.6.898.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [33bcb19032063736901c745c890c0168cf36a8e5]

INTEGRATION: CWS ooo19126 (1.3.920); FILE MERGED 2005/09/05 15:02:09 rt 1.3.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8d8909c006787fdff372e6d53c64dcc5ac1faf54]

INTEGRATION: CWS ooo19126 (1.22.116); FILE MERGED 2005/09/05 15:02:09 rt 1.22.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3b1f83466950c77d04554e9377fb2485254aab87]

INTEGRATION: CWS ooo19126 (1.4.518); FILE MERGED 2005/09/05 15:02:09 rt 1.4.518.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [774341701fe77cf31078b840849709bce8671f90]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:02:09 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e3ed36e3ab52897225112f352c3fed0c77afca30]

INTEGRATION: CWS ooo19126 (1.10.130); FILE MERGED 2005/09/05 15:02:08 rt 1.10.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f4fc75df65cb955fcbaa085bf1ab8829b9059a89]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:02:08 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b0134cca0435b32ec28c3465c83b22739ac06fc4]

INTEGRATION: CWS ooo19126 (1.1.930); FILE MERGED 2005/09/05 15:02:08 rt 1.1.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [94c7ee7465270cd3347ef12bb9e58dfb41e7dd96]

INTEGRATION: CWS ooo19126 (1.2.938); FILE MERGED 2005/09/05 15:02:08 rt 1.2.938.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0e4a6889cccce3caf98a9cb23a6dd895af10407c]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:02:07 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c7ca80915f7a8f10ce4491ad83219969e1ce9e69]

INTEGRATION: CWS ooo19126 (1.2.798); FILE MERGED 2005/09/05 15:02:07 rt 1.2.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5c45788ced38aa19ea58440801e63b9d38084435]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:02:07 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [35fe7dde1819b344797488cfbeb7a7a3d58c5e25]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:02:07 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3a0f524ee63c13889010a8e79290f04375a698a3]

INTEGRATION: CWS ooo19126 (1.16.192); FILE MERGED 2005/09/05 15:02:07 rt 1.16.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0a056e68d7022a3f85f9e92f59efe5df2bb34995]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:02:06 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0bc533df9394dedcfd32f47fa0271b9566b07fe5]

INTEGRATION: CWS ooo19126 (1.3.920); FILE MERGED 2005/09/05 15:02:06 rt 1.3.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [10d547bce4234c362257653e36a38083536cc4bd]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:02:06 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ca3504ff92dbd6222ea3fc1310488ff1f09dd663]

INTEGRATION: CWS ooo19126 (1.2.928); FILE MERGED 2005/09/05 15:02:06 rt 1.2.928.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1f40b49a22727ae9ff13c4425fe87ca1ec5d9987]

INTEGRATION: CWS ooo19126 (1.3.294); FILE MERGED 2005/09/05 15:02:05 rt 1.3.294.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c6726bac555282a1366acb731da105c0819275d9]

INTEGRATION: CWS ooo19126 (1.4.926); FILE MERGED 2005/09/05 15:02:05 rt 1.4.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b5cd591d5357feada9790c93924e2c5a666522ab]

INTEGRATION: CWS ooo19126 (1.2.938); FILE MERGED 2005/09/05 15:02:05 rt 1.2.938.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8047c589d9b2841291287a49f4d1e61478095662]

INTEGRATION: CWS ooo19126 (1.14.240); FILE MERGED 2005/09/05 15:02:05 rt 1.14.240.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [222ff090024a912eb5cd3e27385756a2a221c10a]

INTEGRATION: CWS ooo19126 (1.2.936); FILE MERGED 2005/09/05 15:02:05 rt 1.2.936.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0784d67a6cdff6c63b98701bafda850ee66c895f]

INTEGRATION: CWS ooo19126 (1.15.116); FILE MERGED 2005/09/05 15:02:04 rt 1.15.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a47fb07b5959d0680e358d800d2f48378fe8a6b3]

INTEGRATION: CWS ooo19126 (1.37.100); FILE MERGED 2005/09/05 15:02:04 rt 1.37.100.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4e402ef6da5f8a156ad57ddb87d3c53936214203]

INTEGRATION: CWS ooo19126 (1.12.242); FILE MERGED 2005/09/05 15:02:04 rt 1.12.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9454a0d77896f41a57949b0457bb2da80dbfd5e6]

INTEGRATION: CWS ooo19126 (1.23.242); FILE MERGED 2005/09/05 15:02:03 rt 1.23.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [20fbab584aa4cd408e1446986984f3ff7e7efa3c]

INTEGRATION: CWS ooo19126 (1.34.114); FILE MERGED 2005/09/05 15:02:03 rt 1.34.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [27a70880e65b15cadc8296da2d942d0a4910e490]

INTEGRATION: CWS ooo19126 (1.5.774); FILE MERGED 2005/09/05 15:02:03 rt 1.5.774.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [791279bb3258e2de62da2b7fec4bef0890bac48c]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:02:02 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ea64016978132ac5bf2f16d84b58d40dddd57b9e]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:02:02 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9bf1c0789048bc32fc4ccd9be602f473152ba21f]

INTEGRATION: CWS ooo19126 (1.2.256); FILE MERGED 2005/09/05 15:02:02 rt 1.2.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3d325b838016e7f58b6c82ad0480fd3d2b7bbb5f]

INTEGRATION: CWS ooo19126 (1.26.130); FILE MERGED 2005/09/05 15:02:02 rt 1.26.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8fedf1dd17eeb1e8cd8f8750f0f892f1248cb5b8]

INTEGRATION: CWS ooo19126 (1.4.930); FILE MERGED 2005/09/05 15:02:02 rt 1.4.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9c91ab328ce3653aff1573975cf549ba4c2dd0ef]

INTEGRATION: CWS ooo19126 (1.20.146); FILE MERGED 2005/09/05 15:02:01 rt 1.20.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b9edc9da08b189576775f68d0ccb098dae35b3e6]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:02:01 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2dc3d414e204c0058093e96e0b0adf5d33f1820f]

INTEGRATION: CWS ooo19126 (1.11.326); FILE MERGED 2005/09/05 15:02:01 rt 1.11.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [695af27292901c49cc40126918cdef2ae9618dab]

INTEGRATION: CWS ooo19126 (1.12.192); FILE MERGED 2005/09/05 15:02:01 rt 1.12.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [969dce5ea4996691888204660f6a320f3fe7c69b]

INTEGRATION: CWS ooo19126 (1.52.242); FILE MERGED 2005/09/05 15:02:00 rt 1.52.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [32614c1acbcf56aef3546d83a8c2cb4de96ac124]

INTEGRATION: CWS ooo19126 (1.10.452); FILE MERGED 2005/09/05 15:02:00 rt 1.10.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cbb7a6e5a82d6140bdf75c223e74c16b5360693a]

INTEGRATION: CWS ooo19126 (1.3.798); FILE MERGED 2005/09/05 15:01:59 rt 1.3.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ab072f8a10a98a1112f356e98b6ab4e205f93d54]

INTEGRATION: CWS ooo19126 (1.22.176); FILE MERGED 2005/09/05 15:01:59 rt 1.22.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [39c950bf491fe8ae0836969cdb91449e837b68aa]

INTEGRATION: CWS ooo19126 (1.6.452); FILE MERGED 2005/09/05 15:01:59 rt 1.6.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [605dd5d373a3314321d18bb9de782af4a1867a36]

INTEGRATION: CWS ooo19126 (1.15.44); FILE MERGED 2005/09/05 15:01:58 rt 1.15.44.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3dc3c4cb03210a40d2bbdcb6ba04f1a43dddd10a]

INTEGRATION: CWS ooo19126 (1.3.130); FILE MERGED 2005/09/05 15:01:58 rt 1.3.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1c9b84165e32678ed709f043e7192f320b3cef3b]

INTEGRATION: CWS ooo19126 (1.8.926); FILE MERGED 2005/09/05 15:01:58 rt 1.8.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6aec1e3fe7e394324aef45b985cbe75feb0136d5]

INTEGRATION: CWS ooo19126 (1.17.328); FILE MERGED 2005/09/05 15:01:57 rt 1.17.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f2f287d601f6dfbd69ace98bc9af7826e7ff2604]

INTEGRATION: CWS ooo19126 (1.4.906); FILE MERGED 2005/09/05 15:01:57 rt 1.4.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4b873654401c4880ccf394406f5c8c8233d9cbf8]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:01:57 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [930ef0a066d6abc256dcf20ecad273c62c158905]

INTEGRATION: CWS ooo19126 (1.3.116); FILE MERGED 2005/09/05 15:01:56 rt 1.3.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fafcd7ea450712c34d16b4fe99e4cd4e401bceb5]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:01:56 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9844a599c1d2e856c52819fb61efbdcf20f20c0d]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:01:56 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [002d071211f829bd73d8f37d20f18d6f52c08e68]

INTEGRATION: CWS ooo19126 (1.14.452); FILE MERGED 2005/09/05 15:01:55 rt 1.14.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ff22500d68182d692cdc4730f7f9e0fbfdc021b5]

INTEGRATION: CWS ooo19126 (1.3.220); FILE MERGED 2005/09/05 15:01:55 rt 1.3.220.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8b29b3827544fdd4cb01dcc32d2b706f4446c4b7]

INTEGRATION: CWS ooo19126 (1.45.434); FILE MERGED 2005/09/05 15:01:50 rt 1.45.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [884370978fd343a000226e1fe7b4504138b40853]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:01:49 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d66e7e69d34ad0a8aa669c7080a35e5e2e8a89af]

INTEGRATION: CWS ooo19126 (1.1.938); FILE MERGED 2005/09/05 15:01:49 rt 1.1.938.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a7988ed35a772c60d48668ed8c1416cf43e326d6]

INTEGRATION: CWS ooo19126 (1.3.926); FILE MERGED 2005/09/05 15:01:49 rt 1.3.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3b2655d9b3e5a6a64115e50facb3eefea1a95c51]

INTEGRATION: CWS ooo19126 (1.2.520); FILE MERGED 2005/09/05 15:01:48 rt 1.2.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [49127638b05f27ce536e2e160b7eee4a7078f239]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:01:48 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d612d4e353bd55aab13d7f525ca4b215bbd68d08]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:01:48 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [88f8bfa09b7989854a8c2dca850ab239e5b00388]

INTEGRATION: CWS ooo19126 (1.21.90); FILE MERGED 2005/09/05 15:01:48 rt 1.21.90.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [01f20e6d53f2a96c6ba76665bc5159dca9b11780]

INTEGRATION: CWS ooo19126 (1.8.326); FILE MERGED 2005/09/05 15:01:48 rt 1.8.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4cbcb38d57def8a07c8a8a04e41c29a29faa919b]

INTEGRATION: CWS ooo19126 (1.12.104); FILE MERGED 2005/09/05 15:01:47 rt 1.12.104.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9fc07c24c5eb7c856cffef7847e98e5f009340a0]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:01:47 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fd63202f1cfec28a2365bc8542c01170886f4f6b]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:01:47 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [26eea79851573b52706b1365792650fcb65a3871]

INTEGRATION: CWS ooo19126 (1.2.906); FILE MERGED 2005/09/05 15:01:46 rt 1.2.906.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2ccdffc54016d36ee928b0b8d7ea21892e771586]

INTEGRATION: CWS ooo19126 (1.13.102); FILE MERGED 2005/09/05 15:01:46 rt 1.13.102.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0f064516ede1a7e7340df38c8ee1a85338b50045]

INTEGRATION: CWS ooo19126 (1.5.194); FILE MERGED 2005/09/05 15:01:46 rt 1.5.194.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [280f906c85060137a8411362f8f3d2c46a1e1cb4]

INTEGRATION: CWS ooo19126 (1.8.328); FILE MERGED 2005/09/05 15:01:45 rt 1.8.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0532e76ec5bbf9a64d4f07b1130c895d8ee44809]

INTEGRATION: CWS ooo19126 (1.9.116); FILE MERGED 2005/09/05 15:01:45 rt 1.9.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8ecaa9f47a9ff5e746143faf6af07db4b1a1c9bf]

INTEGRATION: CWS ooo19126 (1.11.256); FILE MERGED 2005/09/05 15:01:45 rt 1.11.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6b29174f037d4d4d267c14dcc99d9a4c03c79bad]

INTEGRATION: CWS ooo19126 (1.20.240); FILE MERGED 2005/09/05 15:01:45 rt 1.20.240.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1d31f74e4ca76ebff3cff3b9c63872f0227cc7fd]

INTEGRATION: CWS ooo19126 (1.32.116); FILE MERGED 2005/09/05 15:01:44 rt 1.32.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e09ce6608d096d2bafacf91972f3d874fac08ed1]

INTEGRATION: CWS ooo19126 (1.12.114); FILE MERGED 2005/09/05 15:01:44 rt 1.12.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [456255ab9a734b3317e7a920374ae7ea78137896]

INTEGRATION: CWS ooo19126 (1.6.508); FILE MERGED 2005/09/05 15:01:44 rt 1.6.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [555f52d55db52c3048b8610347e227fd8970c682]

INTEGRATION: CWS ooo19126 (1.9.216); FILE MERGED 2005/09/05 15:01:43 rt 1.9.216.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2c31e914a5212dc6efed641554bea5bf92e5f2c2]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:01:43 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [123fe5c35162cad85bf679cfc2641ea748301bae]

INTEGRATION: CWS ooo19126 (1.1.934); FILE MERGED 2005/09/05 15:01:43 rt 1.1.934.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [656436add2dd61934a47f6e5eb95564b1019125a]

INTEGRATION: CWS ooo19126 (1.6.192); FILE MERGED 2005/09/05 15:01:43 rt 1.6.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0b3bcefff8edb9fb5207c420b504e34973447241]

INTEGRATION: CWS ooo19126 (1.4.926); FILE MERGED 2005/09/05 15:01:43 rt 1.4.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [46cc9edd7f6207ea9a6a5ab3db8f99e8cefc01b9]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:01:42 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0109ab8d831f5c193b6660e276f830a14a615895]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:01:42 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2de6d0922cf9724243fc6c48e5610c5e1d0e0f2e]

INTEGRATION: CWS ooo19126 (1.26.216); FILE MERGED 2005/09/05 15:01:42 rt 1.26.216.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1898bcbf38774e6feec0de425834d7a78eeb4dab]

INTEGRATION: CWS ooo19126 (1.3.508); FILE MERGED 2005/09/05 15:01:42 rt 1.3.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d00ffd9c167cb7328c7965b04689b89c4a998139]

INTEGRATION: CWS ooo19126 (1.5.346); FILE MERGED 2005/09/05 15:01:41 rt 1.5.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bb4102d4b9883b54aa66ef39a1fe55b9dd338d52]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:01:41 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [180bb1e93fddb1990049425a78954024fb5bc25b]

INTEGRATION: CWS ooo19126 (1.6.452); FILE MERGED 2005/09/05 15:01:41 rt 1.6.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6a5af94410e85a256e17b00fd4f5d87da6b0b18f]

INTEGRATION: CWS ooo19126 (1.18.144); FILE MERGED 2005/09/05 15:01:40 rt 1.18.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f3a9f8a00e6c80ee1d54b38e88cee77fe3ddb5d2]

INTEGRATION: CWS ooo19126 (1.8.926); FILE MERGED 2005/09/05 15:01:40 rt 1.8.926.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a1b8e51b04d235d04b28d7c33f8a1b3af94a5544]

INTEGRATION: CWS ooo19126 (1.18.242); FILE MERGED 2005/09/05 15:01:40 rt 1.18.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [88d9f33fe815edbfb7442e1ff57883f0d40668ee]

INTEGRATION: CWS ooo19126 (1.42.154); FILE MERGED 2005/09/05 15:01:40 rt 1.42.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [02607be00c0a2661def903e84dbadaec13c32811]

INTEGRATION: CWS ooo19126 (1.8.346); FILE MERGED 2005/09/05 15:01:39 rt 1.8.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [df77acab3ba722b031723037ff7c4476a09ca5ca]

INTEGRATION: CWS ooo19126 (1.39.122); FILE MERGED 2005/09/05 15:01:39 rt 1.39.122.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [97ee98b04f00dcec0aac4daaba5cbf6f3b3207b1]

INTEGRATION: CWS ooo19126 (1.6.898); FILE MERGED 2005/09/05 15:01:39 rt 1.6.898.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9580bb8ceaddb76c262e1b40032cd6155c46c54c]

INTEGRATION: CWS ooo19126 (1.11.176); FILE MERGED 2005/09/05 15:01:38 rt 1.11.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5341ca64e2d4269d0d506cd49baefc8ff1dce3af]

INTEGRATION: CWS ooo19126 (1.6.368); FILE MERGED 2005/09/05 15:01:38 rt 1.6.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3b8fad67abba97b2675cac80d2c4319350f9e41e]

INTEGRATION: CWS ooo19126 (1.8.368); FILE MERGED 2005/09/05 15:01:37 rt 1.8.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [682061b3f1461bac9bec401ec9bed9ce0ebd4a9b]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:01:37 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4eca67fc35d2d9aac643a9fb762932f0dc2049b2]

INTEGRATION: CWS ooo19126 (1.9.154); FILE MERGED 2005/09/05 15:01:37 rt 1.9.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [953e9adcd4b19cc47220ab2a08ec1e46a8c2f9f9]

INTEGRATION: CWS ooo19126 (1.7.368); FILE MERGED 2005/09/05 15:01:36 rt 1.7.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fe07fe7556b10efa081316f6cce8fdd04f3b2f9b]

INTEGRATION: CWS ooo19126 (1.10.328); FILE MERGED 2005/09/05 15:01:36 rt 1.10.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [50b1ef1c14f589ffce93ae7a67c670e213ea6638]

INTEGRATION: CWS ooo19126 (1.15.176); FILE MERGED 2005/09/05 15:01:36 rt 1.15.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4a8db94b8b3a74a7551dd449b0e9f7e4bc3af2c9]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:01:36 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4b5c8651ec171bc3af380bab33c69ccff9db4884]

INTEGRATION: CWS ooo19126 (1.2.368); FILE MERGED 2005/09/05 15:01:35 rt 1.2.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [110c9dfd3e5082b3a620eba220196a987b1d958a]

INTEGRATION: CWS ooo19126 (1.65.112); FILE MERGED 2005/09/05 15:01:35 rt 1.65.112.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1b78b845139b59d6b6b04ff3e00a1ec57f284a99]

INTEGRATION: CWS ooo19126 (1.28.214); FILE MERGED 2005/09/05 15:01:34 rt 1.28.214.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c62f3680bbb262a3b88ae489058c7016886095e1]

INTEGRATION: CWS ooo19126 (1.38.216); FILE MERGED 2005/09/05 15:01:34 rt 1.38.216.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f6da76316a6788e6a6fa12935d3f318157bb346f]

INTEGRATION: CWS ooo19126 (1.8.130); FILE MERGED 2005/09/05 15:01:34 rt 1.8.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a6b264f76c9206bbc8e5bbf91b228253d18a9ab0]

INTEGRATION: CWS ooo19126 (1.11.452); FILE MERGED 2005/09/05 15:01:34 rt 1.11.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4c681d283335bb39cb4fd343e56ccd06a7fb1384]

INTEGRATION: CWS ooo19126 (1.22.116); FILE MERGED 2005/09/05 15:01:33 rt 1.22.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e785b69d6fc5af3ecc5d2b35cbcd7097c6e533dd]

INTEGRATION: CWS ooo19126 (1.13.452); FILE MERGED 2005/09/05 15:01:33 rt 1.13.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [863dda267eedfb131dfb402389b9f5a5ea2d35c4]

INTEGRATION: CWS ooo19126 (1.27.144); FILE MERGED 2005/09/05 15:01:33 rt 1.27.144.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f7ae658f1c8984118c075002376a50ba9a1dc3bb]

INTEGRATION: CWS ooo19126 (1.50.126); FILE MERGED 2005/09/05 15:01:32 rt 1.50.126.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [55592a72e62c9999e0f52564a39de1c6db2866a2]

INTEGRATION: CWS ooo19126 (1.20.368); FILE MERGED 2005/09/05 15:01:32 rt 1.20.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8728c8d3f6b1bbb7c36d5ef3c37a9e86b60556db]

INTEGRATION: CWS ooo19126 (1.14.96); FILE MERGED 2005/09/05 15:01:32 rt 1.14.96.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [394fbb382199adc39972cdfcbad99372c6f18b8a]

INTEGRATION: CWS ooo19126 (1.5.154); FILE MERGED 2005/09/05 15:01:31 rt 1.5.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9a676217765d2ae225eeba8c514be3b73d9fe62b]

INTEGRATION: CWS ooo19126 (1.16.256); FILE MERGED 2005/09/05 15:01:31 rt 1.16.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2f9fe8195eb09cb350fb4245b3683f5d2b7d690a]

INTEGRATION: CWS ooo19126 (1.5.116); FILE MERGED 2005/09/05 15:01:31 rt 1.5.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ca7ec78e1eed3cc6ee5023abad16739a2c37b44d]

INTEGRATION: CWS ooo19126 (1.16.196); FILE MERGED 2005/09/05 15:01:30 rt 1.16.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3116f10d501d3d3824d2bc762e93b8e9877969c3]

INTEGRATION: CWS ooo19126 (1.24.58); FILE MERGED 2005/09/05 15:01:30 rt 1.24.58.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [36bda5dc21a9a8603ce21dec300cdd8ab88fc05c]

INTEGRATION: CWS ooo19126 (1.16.116); FILE MERGED 2005/09/05 15:01:30 rt 1.16.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8d54efa821e6966315db23c47cf0c6ef5c567fe8]

INTEGRATION: CWS ooo19126 (1.23.242); FILE MERGED 2005/09/05 15:01:29 rt 1.23.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [26c9e42345793016731c9c6da59b53963acc908f]

INTEGRATION: CWS ooo19126 (1.29.116); FILE MERGED 2005/09/05 15:01:29 rt 1.29.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fe31c6ab08b657828c97ec7360a0426f60a37182]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:01:29 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0c80784a4e058f8fbea017ba02325983aa5c76bf]

INTEGRATION: CWS ooo19126 (1.10.104); FILE MERGED 2005/09/05 15:01:28 rt 1.10.104.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [09ac736b424e5d86babafe9ad982c80913d5e267]

INTEGRATION: CWS ooo19126 (1.20.116); FILE MERGED 2005/09/05 15:01:28 rt 1.20.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2e7e09e44ee47595e2402b4ca16a884e6bd30455]

INTEGRATION: CWS ooo19126 (1.17.242); FILE MERGED 2005/09/05 15:01:28 rt 1.17.242.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [39d84ba205f5251905b2732187c175e236ff57ec]

INTEGRATION: CWS ooo19126 (1.2.578); FILE MERGED 2005/09/05 15:01:27 rt 1.2.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [689ffa56108f88233edf3e9ffb68e5627ff511c3]

INTEGRATION: CWS ooo19126 (1.8.354); FILE MERGED 2005/09/05 15:01:27 rt 1.8.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3c9ebac78d0fcc9ad983d3dc6c2c2fad57b5bbbf]

INTEGRATION: CWS ooo19126 (1.3.536); FILE MERGED 2005/09/05 15:01:27 rt 1.3.536.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4a5974a12fb3634538f081b1971b89ae7cda0a8a]

INTEGRATION: CWS ooo19126 (1.30.366); FILE MERGED 2005/09/05 15:01:27 rt 1.30.366.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bd76a8df875cad374e794143eae7c834a6be547d]

INTEGRATION: CWS ooo19126 (1.4.578); FILE MERGED 2005/09/05 15:01:26 rt 1.4.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bfefd9e78c3959a21d4878ea11cb6752d93938f8]

INTEGRATION: CWS ooo19126 (1.3.578); FILE MERGED 2005/09/05 15:01:26 rt 1.3.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eb32954a791c27ae8429a3e83461966d8bbb55bb]

INTEGRATION: CWS ooo19126 (1.2.578); FILE MERGED 2005/09/05 15:01:26 rt 1.2.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5bbe024693af82bc9d1fc0f920a432142254e799]

INTEGRATION: CWS ooo19126 (1.2.578); FILE MERGED 2005/09/05 15:01:25 rt 1.2.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cd5d8aac919f3fce82b5c889bfb5a03b091b1ade]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:01:25 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d699be05a923c59d0d45eac3d3be944feab31018]

INTEGRATION: CWS ooo19126 (1.7.188); FILE MERGED 2005/09/05 15:01:25 rt 1.7.188.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [381f3bad3f1d35636b40e495eb504674b74bf39e]

INTEGRATION: CWS ooo19126 (1.6.308); FILE MERGED 2005/09/05 15:01:23 rt 1.6.308.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [41051483fcf3fce12d5486487668a51149b0b863]

INTEGRATION: CWS ooo19126 (1.11.368); FILE MERGED 2005/09/05 15:01:23 rt 1.11.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1c2bc87eb2bb98ce138ec8aaa79b662e85f13d9c]

INTEGRATION: CWS ooo19126 (1.7.578); FILE MERGED 2005/09/05 15:01:23 rt 1.7.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0ba7c6216db66b42832fbb3bb5409499874d35e3]

INTEGRATION: CWS ooo19126 (1.12.368); FILE MERGED 2005/09/05 15:01:22 rt 1.12.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [af05a2c9a799ede8eae7a60547ffacefe484d65b]

INTEGRATION: CWS ooo19126 (1.2.578); FILE MERGED 2005/09/05 15:01:22 rt 1.2.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f5d66ebd950a8fb73e55c362b25ec1bd704d939c]

INTEGRATION: CWS ooo19126 (1.14.116); FILE MERGED 2005/09/05 15:01:22 rt 1.14.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7a8e944692bbeaab41906307e49d5ad50af45f9c]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:01:22 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3ccba2d3dff011c99fd3f300c5564f58a8661334]

INTEGRATION: CWS ooo19126 (1.2.578); FILE MERGED 2005/09/05 15:01:21 rt 1.2.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6c15583f3f0c49e61a2b10e592f1cff393fa401d]

INTEGRATION: CWS ooo19126 (1.17.328); FILE MERGED 2005/09/05 15:01:21 rt 1.17.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [89c2ac882a0f6539acfd0f7ac07faad73558a75a]

INTEGRATION: CWS ooo19126 (1.5.578); FILE MERGED 2005/09/05 15:01:21 rt 1.5.578.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ac4e2af51569440f4e236615f4e5d27155a69969]

INTEGRATION: CWS ooo19126 (1.4.116); FILE MERGED 2005/09/05 15:01:20 rt 1.4.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ad4c3fa9a962a5e6e6630afeea64a395b37fda53]

INTEGRATION: CWS ooo19126 (1.3.376); FILE MERGED 2005/09/05 15:01:20 rt 1.3.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [77d119437129d0b18b434837ee006a646a201026]

INTEGRATION: CWS ooo19126 (1.2.534); FILE MERGED 2005/09/05 15:01:19 rt 1.2.534.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [63ae4eea2fed0e95fc381748817f97e445577771]

INTEGRATION: CWS ooo19126 (1.3.376); FILE MERGED 2005/09/05 15:01:19 rt 1.3.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [57eb3e819b77339d305e1196963da8233ed9cbaf]

INTEGRATION: CWS ooo19126 (1.2.484); FILE MERGED 2005/09/05 15:01:18 rt 1.2.484.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [aff98809a8814b692a2b5f438a0946e78270e4b1]

INTEGRATION: CWS ooo19126 (1.3.376); FILE MERGED 2005/09/05 15:01:18 rt 1.3.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [86c57b5cbc57a2355cd1ecd5b73b1cc1bac90fea]

INTEGRATION: CWS ooo19126 (1.2.484); FILE MERGED 2005/09/05 15:01:17 rt 1.2.484.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5f5f1d14bb891f6b23ea589b956769c48384d08d]

INTEGRATION: CWS ooo19126 (1.3.376); FILE MERGED 2005/09/05 15:01:17 rt 1.3.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2dfda117eab726e0598194b7978d736b878f6c7f]

INTEGRATION: CWS ooo19126 (1.3.376); FILE MERGED 2005/09/05 15:01:16 rt 1.3.376.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [be8f97e102fd1fc756202de7dee2a6178b15cbe5]

INTEGRATION: CWS ooo19126 (1.3.328); FILE MERGED 2005/09/05 15:01:07 rt 1.3.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9e69b147ee1b113f8840e2e6c4df9cc3a36e9e9d]

INTEGRATION: CWS ooo19126 (1.14.174); FILE MERGED 2005/09/05 15:01:07 rt 1.14.174.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [717ef6b21b2a1d78eef7f206ab69e2983335dc23]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:01:06 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ff11cdaa5098978cab00b6eb87b05cab38103562]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:01:06 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c4cc99639ebb7450f4a635a11ebe495d955c5806]

INTEGRATION: CWS ooo19126 (1.7.508); FILE MERGED 2005/09/05 15:01:06 rt 1.7.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7402ffb08c0890003f163895a017c25027f3322f]

INTEGRATION: CWS ooo19126 (1.6.346); FILE MERGED 2005/09/05 15:01:06 rt 1.6.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [565da5b3a12beb39ba75257bb51cffcfa4b35895]

INTEGRATION: CWS ooo19126 (1.8.130); FILE MERGED 2005/09/05 15:01:06 rt 1.8.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [13e76d2dbd288357d1ed8dd501b449f7e70894d6]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:01:05 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [abbdbb313c6d6fb505024516ff1e8656cb214cd5]

INTEGRATION: CWS ooo19126 (1.4.194); FILE MERGED 2005/09/05 15:01:05 rt 1.4.194.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2abdbfbedf1a02cda16ccd206d0c811ac3cc5098]

INTEGRATION: CWS ooo19126 (1.6.508); FILE MERGED 2005/09/05 15:01:05 rt 1.6.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [647a33883c0828b0a0bc3a586ad3cfca4cd17e60]

INTEGRATION: CWS ooo19126 (1.68.114); FILE MERGED 2005/09/05 15:01:04 rt 1.68.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2d2a87bc69d3a79d3b486c5d7c4d89fbe97b4884]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:01:04 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f90efc43e4b45b4ab5ceaa7defb3f61230dee12a]

INTEGRATION: CWS ooo19126 (1.2.942); FILE MERGED 2005/09/05 15:01:04 rt 1.2.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [240024f8b2c976c920450d0864ecf741953e96db]

INTEGRATION: CWS ooo19126 (1.5.332); FILE MERGED 2005/09/05 15:01:03 rt 1.5.332.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cfba7f136cca6f2d4ed863d995dae1dd7f9c3aab]

INTEGRATION: CWS ooo19126 (1.11.92); FILE MERGED 2005/09/05 15:01:03 rt 1.11.92.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [49f43527eda9037334055e1505d68aa9ac090652]

INTEGRATION: CWS ooo19126 (1.13.452); FILE MERGED 2005/09/05 15:01:03 rt 1.13.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2fbd4d68864790f684f723a703dd8557389f94d1]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:01:02 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ffc23b3f5f897b1769fad070822a0a893cf76851]

INTEGRATION: CWS ooo19126 (1.5.452); FILE MERGED 2005/09/05 15:01:02 rt 1.5.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f49c12acd651188f0df2d35ae2f0ff355d50e924]

INTEGRATION: CWS ooo19126 (1.13.192); FILE MERGED 2005/09/05 15:01:02 rt 1.13.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b1bc91b014e57359415bd3c95a4a6e0425114e84]

INTEGRATION: CWS ooo19126 (1.27.116); FILE MERGED 2005/09/05 15:01:02 rt 1.27.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [16cd09a2341ce9bdf4b08dbd119838e1bfe40f3b]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:01:02 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b2b79bffe0cf1fa92729ed3844cf344c5dfacc8c]

INTEGRATION: CWS ooo19126 (1.4.924); FILE MERGED 2005/09/05 15:01:01 rt 1.4.924.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [574667cb7ac3913e02b9cd18a7613b1354fe5869]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:01:01 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c70a7aaf4ea048d082821f370fb0c6efc3680297]

INTEGRATION: CWS ooo19126 (1.2.898); FILE MERGED 2005/09/05 15:01:01 rt 1.2.898.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [18edf254301897d8bbaec4185c9cf6056972662c]

INTEGRATION: CWS ooo19126 (1.2.924); FILE MERGED 2005/09/05 15:01:01 rt 1.2.924.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bef1b994f9c0f3cd117f757909cb92791eb4ddd7]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:01:00 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f6cd73c1cd60c72652ac3c049d356e3cebfe9715]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:01:00 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a67512576f262e6accde99509147b95b15d310fa]

INTEGRATION: CWS ooo19126 (1.2.354); FILE MERGED 2005/09/05 15:01:00 rt 1.2.354.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [99e4c0cf48964021548705186997c6f76eb7cf54]

INTEGRATION: CWS ooo19126 (1.7.452); FILE MERGED 2005/09/05 15:01:00 rt 1.7.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [db0a7890d3c19cd159a5ac637ca05e2bd993162d]

INTEGRATION: CWS ooo19126 (1.11.104); FILE MERGED 2005/09/05 15:00:59 rt 1.11.104.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0d7350b5f26e53e7fe4f3deda7e823d7fbc8be58]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:59 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5994bcdd670844a6f5b6ecd79701b98ebeede2a5]

INTEGRATION: CWS ooo19126 (1.2.346); FILE MERGED 2005/09/05 15:00:58 rt 1.2.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [70b46dea84bb0cc294ca23ee813256d3c107f8ef]

INTEGRATION: CWS ooo19126 (1.17.326); FILE MERGED 2005/09/05 15:00:58 rt 1.17.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7ea0cd5998e999c2a0ff32fc371fa6c4ecab5c0d]

INTEGRATION: CWS ooo19126 (1.5.130); FILE MERGED 2005/09/05 15:00:58 rt 1.5.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [53d5aae469a9bf2a87ca64934433f68549c90925]

INTEGRATION: CWS ooo19126 (1.9.368); FILE MERGED 2005/09/05 15:00:57 rt 1.9.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [05447f483b3880004426b450adf265b035ecc9da]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:00:57 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7de952e09a67932d80f71beb97cdf30daf326859]

INTEGRATION: CWS ooo19126 (1.7.434); FILE MERGED 2005/09/05 15:00:57 rt 1.7.434.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e586b0313c3e5f44789b3fe39d71185f741677c2]

INTEGRATION: CWS ooo19126 (1.11.146); FILE MERGED 2005/09/05 15:00:56 rt 1.11.146.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1fdad669cd1f9ac10fabd98a114af0c95bbc4be6]

INTEGRATION: CWS ooo19126 (1.4.898); FILE MERGED 2005/09/05 15:00:56 rt 1.4.898.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [798b9ba23d3328c027dc96fb00cdbf83d5f8bfa5]

INTEGRATION: CWS ooo19126 (1.3.586); FILE MERGED 2005/09/05 15:00:56 rt 1.3.586.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [099e7c4a0107bc40233d34711cdf239fd74357f8]

INTEGRATION: CWS ooo19126 (1.6.366); FILE MERGED 2005/09/05 15:00:56 rt 1.6.366.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2632558ddef7c8d039dfce403652bbea11b6c935]

INTEGRATION: CWS ooo19126 (1.48.154); FILE MERGED 2005/09/05 15:00:56 rt 1.48.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9b74a486b6cb611dd94a98a970cc129319da8ce9]

INTEGRATION: CWS ooo19126 (1.2.196); FILE MERGED 2005/09/05 15:00:55 rt 1.2.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [51e6c4c08c6f0474783ab79ca276f6aeb9ff23f0]

INTEGRATION: CWS ooo19126 (1.2.930); FILE MERGED 2005/09/05 15:00:55 rt 1.2.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [233faac6f0cf39450a9cd4c3ef4ce975a24f84fc]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:55 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4f91aeb3b2b47e4acc9c6c17c2b2f7577c6fdbea]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:00:55 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5dbbe7419c1ca82961c089416a14dfd403c94659]

INTEGRATION: CWS ooo19126 (1.2.130); FILE MERGED 2005/09/05 15:00:55 rt 1.2.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [97a6deef7f3a1187b97a1055558a2d4ca29c84a8]

INTEGRATION: CWS ooo19126 (1.5.346); FILE MERGED 2005/09/05 15:00:54 rt 1.5.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [021ae4da4c6af6947f262469c633fa10aa8a9923]

INTEGRATION: CWS ooo19126 (1.3.930); FILE MERGED 2005/09/05 15:00:54 rt 1.3.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1c340c6d8100011789fc8eac795b145897b6fcc3]

INTEGRATION: CWS ooo19126 (1.8.192); FILE MERGED 2005/09/05 15:00:54 rt 1.8.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0cbef5eaad4ae09833c2b2a3e10e1710c34da062]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:54 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c0826d74d2af5f4fe1ba90b8896cfe7ed68491f9]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:54 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ec3a66341b4e11b65ffa61fceb3a2ff5f09ce035]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:53 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fbd097c022ec240e45f2515229c53edc14a585ce]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:00:53 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [02620d9e9f0ca00375381abbf01b3d206a0f507d]

INTEGRATION: CWS ooo19126 (1.5.192); FILE MERGED 2005/09/05 15:00:53 rt 1.5.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a1408ea4b50320cf842a8e2ef7fe3280ae36e667]

INTEGRATION: CWS ooo19126 (1.6.176); FILE MERGED 2005/09/05 15:00:53 rt 1.6.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a1e3838819dec78aa41ee7b1090c0e8e7e91ff1a]

INTEGRATION: CWS ooo19126 (1.11.346); FILE MERGED 2005/09/05 15:00:53 rt 1.11.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b12eeb871d1800f826d5373bc90bf8773322e387]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:00:52 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5dbb1e30fc4a6266ab4e230c39639dd607e95560]

INTEGRATION: CWS ooo19126 (1.3.898); FILE MERGED 2005/09/05 15:00:52 rt 1.3.898.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eac5e0edd4b36f27506b7153c57d43e81ade03fe]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:52 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9cbefed0a1997ff40d7331803d1475bf4d6d20a3]

INTEGRATION: CWS ooo19126 (1.1.940); FILE MERGED 2005/09/05 15:00:52 rt 1.1.940.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9281dc1b9f811c2853589930902c76d1cf7acf6d]

INTEGRATION: CWS ooo19126 (1.1.942); FILE MERGED 2005/09/05 15:00:52 rt 1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [04b5e60db1c799e5fac65cfc69f714c7832a4a4b]

INTEGRATION: CWS ooo19126 (1.11.154); FILE MERGED 2005/09/05 15:00:51 rt 1.11.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9c02b5c1b55ee42c1d4566ac62b98e9c7dd21223]

INTEGRATION: CWS ooo19126 (1.4.346); FILE MERGED 2005/09/05 15:00:51 rt 1.4.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4446559987a5cd64927061a6fe6e508dae28d81a]

INTEGRATION: CWS ooo19126 (1.3.192); FILE MERGED 2005/09/05 15:00:51 rt 1.3.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6b5f878ab145ac01ba12fdef2cb46d775c885116]

INTEGRATION: CWS ooo19126 (1.2.938); FILE MERGED 2005/09/05 15:00:51 rt 1.2.938.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d23269edb5b39cd06ba26320cb9628bb50a78ab3]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:50 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1a06c63b2268adcf956af415135ca498bcd13aab]

INTEGRATION: CWS ooo19126 (1.1.936); FILE MERGED 2005/09/05 15:00:50 rt 1.1.936.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e63ff568489b2a3eb2333d41de2a1d6ff499d9f6]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:00:50 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [57485a779e3b8c6211828a5754368ee8318b2f61]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:00:50 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f48dc0b26018b55a4dad83c7abc3d83321210ae7]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:49 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [36f85563e77bc8ec3f6bd562eb290419c31af056]

INTEGRATION: CWS ooo19126 (1.3.930); FILE MERGED 2005/09/05 15:00:49 rt 1.3.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [43ffdeb1d0fea8282a9e809d770ad2cdced35270]

INTEGRATION: CWS ooo19126 (1.3.92); FILE MERGED 2005/09/05 15:00:49 rt 1.3.92.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e42720b26278a78fc17fe0da57abc04e5e99be94]

INTEGRATION: CWS ooo19126 (1.3.904); FILE MERGED 2005/09/05 15:00:49 rt 1.3.904.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [86a72a12445b487a0f5deb566848d8da746e3faf]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:49 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2f899213347aee720cc9b00d431bbaae3b14a6c9]

INTEGRATION: CWS ooo19126 (1.4.196); FILE MERGED 2005/09/05 15:00:48 rt 1.4.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4f2bd83781e94388d2353076b9a1eae0ac4fb6ef]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:48 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [debde014813e6ceed2864d10ff4cf9bbfd550099]

INTEGRATION: CWS ooo19126 (1.12.328); FILE MERGED 2005/09/05 15:00:48 rt 1.12.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a81f592e5b5f2d18998389c379d9390b55aa3d9b]

INTEGRATION: CWS ooo19126 (1.42.192); FILE MERGED 2005/09/05 15:00:48 rt 1.42.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e87a4a5f64c1e36a4428a3821eca32d2f481a017]

INTEGRATION: CWS ooo19126 (1.3.942); FILE MERGED 2005/09/05 15:00:48 rt 1.3.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8ca67d3fc7293abfef934f8b6c1b9c6e0128e2d7]

INTEGRATION: CWS ooo19126 (1.1.932); FILE MERGED 2005/09/05 15:00:47 rt 1.1.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a918d0408343797514bf0aa5a9883f124e7ce517]

INTEGRATION: CWS ooo19126 (1.6.256); FILE MERGED 2005/09/05 15:00:47 rt 1.6.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eb602eb8a4f6ac9be4542a011a9847e7905cee5e]

INTEGRATION: CWS ooo19126 (1.1.908); FILE MERGED 2005/09/05 15:00:47 rt 1.1.908.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [af2e6ee6a64275ca21522be15f3bc00e9c1b5933]

INTEGRATION: CWS ooo19126 (1.2.256); FILE MERGED 2005/09/05 15:00:47 rt 1.2.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ff76785a6db7b7e77ff8f3d3207da0079029d7a1]

INTEGRATION: CWS ooo19126 (1.5.196); FILE MERGED 2005/09/05 15:00:47 rt 1.5.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e85554f41ac1ac2d77af79ec9d460686cb33f5ac]

INTEGRATION: CWS ooo19126 (1.2.368); FILE MERGED 2005/09/05 15:00:46 rt 1.2.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [63093971e1631f52bba6417b65dab8a2f7797d9a]

INTEGRATION: CWS ooo19126 (1.6.452); FILE MERGED 2005/09/05 15:00:46 rt 1.6.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b6193208258edff9664db014e6126053066a61b3]

INTEGRATION: CWS ooo19126 (1.2.520); FILE MERGED 2005/09/05 15:00:46 rt 1.2.520.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6977624eb3c07215221585aa0299121a82a1a6cf]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:46 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [62ddd69287228a4060a665f73ad532a7a613af32]

INTEGRATION: CWS ooo19126 (1.4.196); FILE MERGED 2005/09/05 15:00:46 rt 1.4.196.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [292dff9c64e9e5309fcffe31aa76677344948b12]

INTEGRATION: CWS ooo19126 (1.9.130); FILE MERGED 2005/09/05 15:00:46 rt 1.9.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d5d96ef05cb78ee601c2f023f867dc54dd4e9de9]

INTEGRATION: CWS ooo19126 (1.15.192); FILE MERGED 2005/09/05 15:00:45 rt 1.15.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [617922c28e7b8200926bf104e7ba362431f6f7d9]

INTEGRATION: CWS ooo19126 (1.14.236); FILE MERGED 2005/09/05 15:00:45 rt 1.14.236.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d79ac63a8ab5f1808708bd378117a45565cf03a1]

INTEGRATION: CWS ooo19126 (1.2.920); FILE MERGED 2005/09/05 15:00:45 rt 1.2.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [40e4632ae84c8552b622992fd0f09e53f69596ea]

INTEGRATION: CWS ooo19126 (1.2.932); FILE MERGED 2005/09/05 15:00:45 rt 1.2.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [60eed6ec432c1c717906028f7b318ac843141ad3]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:45 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [931289c00a5dd4d7a44869ea469a2a358c434b00]

INTEGRATION: CWS ooo19126 (1.6.176); FILE MERGED 2005/09/05 15:00:44 rt 1.6.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bda4bedd8f1baba30aec7e15ceea7c3c788fc2a0]

INTEGRATION: CWS ooo19126 (1.4.368); FILE MERGED 2005/09/05 15:00:44 rt 1.4.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [58e3173f76c4325ebd2819bdbcccef1a486aaab4]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:44 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5d0c83c79f8f27dcca0e36bfe94d06c7edc594cd]

INTEGRATION: CWS ooo19126 (1.2.942); FILE MERGED 2005/09/05 15:00:43 rt 1.2.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8d2ecefef0ddd7e165b4b3cd0cb9f5a15bcbf2fe]

INTEGRATION: CWS ooo19126 (1.7.346); FILE MERGED 2005/09/05 15:00:43 rt 1.7.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c6b44c2187d3c45fbc2a844570cd87d541dae434]

INTEGRATION: CWS ooo19126 (1.6.328); FILE MERGED 2005/09/05 15:00:43 rt 1.6.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7dda466e7bee430cd8e62d4f48abbc8c8a7c2e41]

INTEGRATION: CWS ooo19126 (1.9.176); FILE MERGED 2005/09/05 15:00:42 rt 1.9.176.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [341b698e35fc8b3bb6a5eb81517dcb1def0399e5]

INTEGRATION: CWS ooo19126 (1.3.116); FILE MERGED 2005/09/05 15:00:42 rt 1.3.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [17e49e8f967758e8e794e1da89141d8d5a63cef0]

INTEGRATION: CWS ooo19126 (1.2.368); FILE MERGED 2005/09/05 15:00:42 rt 1.2.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a5de410f4ba6d9b067905e95608cede8ddf53d08]

INTEGRATION: CWS ooo19126 (1.20.114); FILE MERGED 2005/09/05 15:00:42 rt 1.20.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7531f6a898692abb6520b200bd95ba8622c8b5f4]

INTEGRATION: CWS ooo19126 (1.86.126); FILE MERGED 2005/09/05 15:00:41 rt 1.86.126.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [48ef4586e85f298c6d90bd9c5c9f3073fbb7f7cf]

INTEGRATION: CWS ooo19126 (1.8.368); FILE MERGED 2005/09/05 15:00:41 rt 1.8.368.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5a7d3daee978a6820f346376208249f803cd2d83]

INTEGRATION: CWS ooo19126 (1.5.346); FILE MERGED 2005/09/05 15:00:41 rt 1.5.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2ee8416e1c2b38c2e069fd42ef7af4075472e23a]

INTEGRATION: CWS ooo19126 (1.5.328); FILE MERGED 2005/09/05 15:00:41 rt 1.5.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0d91dbc4d4668aa5318754ae61737b57f1011f52]

INTEGRATION: CWS ooo19126 (1.3.902); FILE MERGED 2005/09/05 15:00:40 rt 1.3.902.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e99cba5d5aad1de08efda552e57a37fedd4c6d9a]

INTEGRATION: CWS ooo19126 (1.8.328); FILE MERGED 2005/09/05 15:00:40 rt 1.8.328.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f7a338df99fa2eebdd916572b599c4a0a98d2644]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:40 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7c135a5743bc0d97bec292af25a4d71fd65bb9c2]

INTEGRATION: CWS ooo19126 (1.1.934); FILE MERGED 2005/09/05 15:00:40 rt 1.1.934.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [af76fd6a129390f995c347d8691f2d0780be7512]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:00:39 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f3ded428d66feb6c373d66094b0b7ef17d80a600]

INTEGRATION: CWS ooo19126 (1.8.192); FILE MERGED 2005/09/05 15:00:39 rt 1.8.192.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [93220709f4f5a2fbcccac3b7d5ae4950518ca2d4]

INTEGRATION: CWS ooo19126 (1.5.508); FILE MERGED 2005/09/05 15:00:38 rt 1.5.508.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [def07852418c36fad5c76112a071b6ab87295032]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:00:38 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6b9310c524c20c24ae6c50640f29f48ce2409e94]

INTEGRATION: CWS ooo19126 (1.3.920); FILE MERGED 2005/09/05 15:00:38 rt 1.3.920.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cc9cd5de0ebb0b65ea12ae3c9e9f6954d4b25da1]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:00:38 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [978bb8c4dc548aa6a2028e2bb96e4f2205e12621]

INTEGRATION: CWS ooo19126 (1.2.452); FILE MERGED 2005/09/05 15:00:37 rt 1.2.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a0b9d6e9bbd6de84632a56dd3280cb0cb48698d3]

INTEGRATION: CWS ooo19126 (1.2.932); FILE MERGED 2005/09/05 15:00:37 rt 1.2.932.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fe5e01c6e664943caa116b1531ee5406ad96392f]

INTEGRATION: CWS ooo19126 (1.7.130); FILE MERGED 2005/09/05 15:00:37 rt 1.7.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [194b83f814cf110df703fcaa24936717f281e365]

INTEGRATION: CWS ooo19126 (1.4.294); FILE MERGED 2005/09/05 15:00:37 rt 1.4.294.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [61d06a8e98cf22442d99724add157938aae5675b]

INTEGRATION: CWS ooo19126 (1.23.256); FILE MERGED 2005/09/05 15:00:37 rt 1.23.256.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [55718e45d57139d4f452586a6e65e79cc459ffe6]

INTEGRATION: CWS ooo19126 (1.9.154); FILE MERGED 2005/09/05 15:00:36 rt 1.9.154.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [78b0ff04d22ebe83da7986e79676c976d24c7ff7]

INTEGRATION: CWS ooo19126 (1.15.116); FILE MERGED 2005/09/05 15:00:36 rt 1.15.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [522cba3a533bd9f1b729782628f34935fde292e3]

INTEGRATION: CWS ooo19126 (1.3.346); FILE MERGED 2005/09/05 15:00:36 rt 1.3.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d3a3ae04ea240529132a38e125c8b924b8950460]

INTEGRATION: CWS ooo19126 (1.3.798); FILE MERGED 2005/09/05 15:00:36 rt 1.3.798.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7542e1548bd8b57be80a384444179bce75f22d34]

INTEGRATION: CWS ooo19126 (1.25.130); FILE MERGED 2005/09/05 15:00:35 rt 1.25.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1dff43dffbb7bce5a91e227fc0084b4f613bb200]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:35 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [974592d1bbb04c0f74e5a84f79da0b360d1a50b7]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:00:35 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a9e82d376bd6bc08fda122917677757370da0892]

INTEGRATION: CWS ooo19126 (1.4.450); FILE MERGED 2005/09/05 15:00:35 rt 1.4.450.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6f639f06ffd8741bb957f01e142b0d25a88e9e82]

INTEGRATION: CWS ooo19126 (1.2.526); FILE MERGED 2005/09/05 15:00:34 rt 1.2.526.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8cda70b09123c75d48635cdff47cc56ccd502980]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:34 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [83f9d03527b9b162d9c033bac75c7ec172038779]

INTEGRATION: CWS ooo19126 (1.21.116); FILE MERGED 2005/09/05 15:00:34 rt 1.21.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [15a1c98c3a5a67c5d3f2c999b274c16dfed27331]

INTEGRATION: CWS ooo19126 (1.18.130); FILE MERGED 2005/09/05 15:00:34 rt 1.18.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9c064fc28483a81424f025ade09bf87d1f0e644c]

INTEGRATION: CWS ooo19126 (1.4.452); FILE MERGED 2005/09/05 15:00:33 rt 1.4.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [da121b6f452dc7c50242715b1a14c7044d8fd39e]

INTEGRATION: CWS ooo19126 (1.3.130); FILE MERGED 2005/09/05 15:00:33 rt 1.3.130.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [827d01b22c33423e30740aa3bc774edd27ce44fa]

INTEGRATION: CWS ooo19126 (1.6.346); FILE MERGED 2005/09/05 15:00:33 rt 1.6.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a1c1836d27b9d222e69aa2b0b048c915a4c1834e]

INTEGRATION: CWS ooo19126 (1.6.104); FILE MERGED 2005/09/05 15:00:32 rt 1.6.104.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8c7b859c502010c4718ba343f234816a061e928a]

INTEGRATION: CWS ooo19126 (1.7.116); FILE MERGED 2005/09/05 15:00:32 rt 1.7.116.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b145fc6b7eabea14e4beb6f5894d2cea0bee9067]

INTEGRATION: CWS ooo19126 (1.7.326); FILE MERGED 2005/09/05 15:00:32 rt 1.7.326.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5e8c8a74fe3c1cced734b3e22364e66eb26c052c]

INTEGRATION: CWS ooo19126 (1.5.346); FILE MERGED 2005/09/05 15:00:32 rt 1.5.346.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [eeaffeae8ad624143be2fb765db3b7d98c69ff01]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:32 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cfb719c19fa12d18699b4bd93362a965ee7df574]

INTEGRATION: CWS ooo19126 (1.1.1.1.942); FILE MERGED 2005/09/05 15:00:31 rt 1.1.1.1.942.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [577c71f67dd5bc8d055730fb615ceb5160adea14]

INTEGRATION: CWS ooo19126 (1.3.452); FILE MERGED 2005/09/05 15:00:31 rt 1.3.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8c4230875ef2f40f1af2d18c1e02d9769dd8ea3d]

INTEGRATION: CWS ooo19126 (1.6.114); FILE MERGED 2005/09/05 15:00:31 rt 1.6.114.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [540d94d664868228910751de137b9ab2b3a7beb1]

INTEGRATION: CWS ooo19126 (1.6.452); FILE MERGED 2005/09/05 15:00:31 rt 1.6.452.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c6a4efb35fafa36acdd927335f2247f573220cfb]

INTEGRATION: CWS ooo19126 (1.4.930); FILE MERGED 2005/09/05 15:00:31 rt 1.4.930.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c221fc4a3002d15a448379a8324ff915ae6deae2]

INTEGRATION: CWS ooo19126 (1.3.92); FILE MERGED 2005/09/05 15:00:30 rt 1.3.92.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cc301eba08e929b4750d9662415f2b21edc12e93]

INTEGRATION: CWS ooo19126 (1.19.432); FILE MERGED 2005/09/05 15:00:29 rt 1.19.432.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f70235556fd535fbb1f86ec596107201d8d3bd26]

INTEGRATION: CWS ooo19126 (1.5.780); FILE MERGED 2005/09/05 15:00:29 rt 1.5.780.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [507487b8d234de38d97ec8dbe47366eae298e4d2]

INTEGRATION: CWS ooo19126 (1.1.1.1.940); FILE MERGED 2005/09/05 15:00:28 rt 1.1.1.1.940.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9fa1d569ef60f94179058f6d82d3352ae1f79a86]

INTEGRATION: CWS ooo19126 (1.4.796); FILE MERGED 2005/09/05 15:00:27 rt 1.4.796.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9d606a10b52eb854a173caa753d9507ffaae3e42]

INTEGRATION: CWS ooo19126 (1.29.432); FILE MERGED 2005/09/05 15:00:26 rt 1.29.432.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cd7be4bd82bd971652771ef1578cdbadeb55d231]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:58 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b85de734cf13a21abba20f6ee9a863f9d089ce9c]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:58 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f20af54225427cce0374075f17d211bd047c113f]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:57 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4beac4df5d3dd73d0d78cc4f3fa4282745747e5d]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:56 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cccad4cf02efe3effddf06a68d65bc4a68eb9129]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:55 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c5b84bcb41305c5ae849b1e3d1a548f985fd69b4]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:54 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2c1afb1583f4ea60d67f5c01884be26f81a032fc]

INTEGRATION: CWS ooo19126 (1.7.110); FILE MERGED 2005/09/05 18:43:54 rt 1.7.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4cda04a844500775b8e919e3bdbfa8fea8aa74fc]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:43:53 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7191c1a5e8e7ecc17f7b36491dbc5a0d83396147]

INTEGRATION: CWS ooo19126 (1.9.108); FILE MERGED 2005/09/05 18:43:53 rt 1.9.108.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ff40420b9c6a79b22fa8d0dae87860950b9bb507]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:53 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [265b16665fc84f0209292edeb5dc1da83cf4e011]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:53 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8f97f1ea3b59f247df4f5abf7db603c9f9eb8c95]

INTEGRATION: CWS ooo19126 (1.13.110); FILE MERGED 2005/09/05 18:43:53 rt 1.13.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [389e0b61be280ce6c1028029ce8a20e7ba6fad65]

INTEGRATION: CWS ooo19126 (1.34.110); FILE MERGED 2005/09/05 18:43:52 rt 1.34.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0e293e91da474f817c9da698078603fd88f0f148]

INTEGRATION: CWS ooo19126 (1.21.110); FILE MERGED 2005/09/05 18:43:52 rt 1.21.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8ded2b289c866af2d8bd92f87561530c83bfac4b]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:52 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0e44bbe26a717bd757fe050bb667898c624a438f]

INTEGRATION: CWS ooo19126 (1.18.110); FILE MERGED 2005/09/05 18:43:52 rt 1.18.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8ddd11818f1029c407a8ef765cf3e37762f5cfd4]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:52 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [62b06204c7df7dcdfc704cf569cb3e4885fccff8]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:51 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1d82b9b5d322a7c5890c37ac3e14d61da8184f5e]

INTEGRATION: CWS ooo19126 (1.9.110); FILE MERGED 2005/09/05 18:43:51 rt 1.9.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [87d744171df15bc42f7c31684d8a9d9450125e42]

INTEGRATION: CWS ooo19126 (1.12.110); FILE MERGED 2005/09/05 18:43:51 rt 1.12.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c5d60813c2d2d435187b282dbae0de82f77cfd3e]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:51 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7d715dd07f82560ae05d721501a02cd8e20fdbd6]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:50 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [94da5e14b0a376b54e5fab0fa93de3430e54ff34]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:50 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [865f055dceabd2b243688743160e8318e0e1e8c5]

INTEGRATION: CWS ooo19126 (1.32.110); FILE MERGED 2005/09/05 18:43:49 rt 1.32.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [83a92a9948526c8ee60e6f39c50c408e163ad52f]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:49 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1926e89296e68da1d734760dcf1138208953fb8d]

INTEGRATION: CWS ooo19126 (1.16.110); FILE MERGED 2005/09/05 18:43:49 rt 1.16.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5822c994c147317a11e1db6521bdbd2b65b21693]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:49 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6a08801878750838da9a42ca2680d4965496cf90]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:48 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [94a65eb6f57dbeed23970b1da355ae1685b87e2b]

INTEGRATION: CWS ooo19126 (1.13.110); FILE MERGED 2005/09/05 18:43:48 rt 1.13.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [30cf8fe0c1c32a80cd1378dcc0529c2be6860f85]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:48 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9ccf3f36c8b0c0fa7f0fd7ac87b69b53b283e2ed]

INTEGRATION: CWS ooo19126 (1.10.110); FILE MERGED 2005/09/05 18:43:48 rt 1.10.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [40376d07eb3e3e7528fc0be19cceaa0a9e2c7532]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:48 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8ec175c8d1e6d7f5de2d0303a77cbcd799965a74]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:47 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c7ac480fc690f426bc542c8499438b6ff642cd45]

INTEGRATION: CWS ooo19126 (1.7.110); FILE MERGED 2005/09/05 18:43:47 rt 1.7.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [43a0f03f1a6dc235ec9070073839616e6567a212]

INTEGRATION: CWS ooo19126 (1.10.110); FILE MERGED 2005/09/05 18:43:47 rt 1.10.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [975c20a957077124cb9f7c5a31fa1fa1941625af]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:47 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c68a32549162dfa0a2ea16de39407f230a917f8e]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:46 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1df7456d468059549d3db072c80328c355899178]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:45 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1f9cabf88fdc6f2ab60e9931aac2bbf3e3dfac83]

INTEGRATION: CWS ooo19126 (1.9.110); FILE MERGED 2005/09/05 18:43:44 rt 1.9.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2229587bbbf814ec25e30b975134df7ce3e0c6bd]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:44 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3a888e7fd7a4ead332c81deca29731504f34b20b]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:43 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2f6a8c36ebd607a40cd1f4b2ac2aee4779ef47c2]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:43 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dc9612587290d10ad038eb8d651c591449c9e32c]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:41 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [09cc40beaab4715e178bcb20848892b5825dab2a]

INTEGRATION: CWS ooo19126 (1.5.106); FILE MERGED 2005/09/05 18:43:41 rt 1.5.106.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [07b0666bdd3e4aa922d0d4aa50ed505035925fda]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:41 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [df1254c29e92181ce0752e46589a0263c3599481]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:41 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [29e5633ba9857d6a0a6f7ba03bdd06d52830d413]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:40 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2d7570e12189d9add265267954a1bcec1728c46a]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:40 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fb3309befe5bf9f0c48c7c26467183dc973b36dd]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:40 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d4042393ee68aefc72189dee9a0c3e3eda6d2d6d]

INTEGRATION: CWS ooo19126 (1.4.106); FILE MERGED 2005/09/05 18:43:39 rt 1.4.106.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [efd803e368b5f323037a5b9148b4abd81f9790bd]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:39 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f42b866d5a2e6037666e57bf3db9db7d211d875d]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:39 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [41f01b51faeb620b8a9cf38bbe1da0ba448553cf]

INTEGRATION: CWS ooo19126 (1.8.110); FILE MERGED 2005/09/05 18:43:38 rt 1.8.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [14e6d7860392df6515458d67122f80722e7ea5f1]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:38 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fab677bed002fecd94ade8c8773dd23372edeb11]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:38 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [849860cc4f88214bf193906791696a635a8a59a5]

INTEGRATION: CWS ooo19126 (1.7.108); FILE MERGED 2005/09/05 18:43:38 rt 1.7.108.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [34dc7168ec327044736de05d01d3bb59399fef7a]

INTEGRATION: CWS ooo19126 (1.4.88); FILE MERGED 2005/09/05 18:43:37 rt 1.4.88.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d281807d5728f7437243150bd94600651f1c511f]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:37 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [05c46d3cb3a02f3a42e91f816901f6d42b287096]

INTEGRATION: CWS ooo19126 (1.17.110); FILE MERGED 2005/09/05 18:43:36 rt 1.17.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [83d7f47a74638d5a5af5adfc68d13751f2f2adab]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:36 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [68aeb368b2bd938a6a71bbd775913da9731bf10c]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:36 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [14be50d71e3ff5d513df7af68f8fbf269f84ebd8]

INTEGRATION: CWS ooo19126 (1.2.90); FILE MERGED 2005/09/05 18:43:35 rt 1.2.90.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2634a329748a20e2944681e14b8298f023d3e858]

INTEGRATION: CWS ooo19126 (1.4.84); FILE MERGED 2005/09/05 18:43:35 rt 1.4.84.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [80f636f924231071881564b15efa2836a142f692]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:35 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [323a8b6c055072d98958010dd61dbe40e65e3139]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:34 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [538ad2bc09d5240eef7dfbc664da971f1773b826]

INTEGRATION: CWS ooo19126 (1.7.106); FILE MERGED 2005/09/05 18:43:34 rt 1.7.106.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0089cdb2836ea5a5528fe242532b4d4b704d1b75]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:34 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [9a198fa94a8f41259888634ca56bd3db02543967]

INTEGRATION: CWS ooo19126 (1.3.108); FILE MERGED 2005/09/05 18:43:34 rt 1.3.108.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a42661f4a10222b429b176abc64bb20d8cd84793]

INTEGRATION: CWS ooo19126 (1.2.84); FILE MERGED 2005/09/05 18:43:33 rt 1.2.84.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [57c71bd7e3d1a4577ece0e016262509dae3740a5]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:33 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [541b1bedbc7352fc048ca8d41ff7b0c6f2d85557]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:33 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [f7561a232573871305ad811f1a94cbe37329c9f9]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:32 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [752cd9055272c19c267da16fd802019088969dc8]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:32 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [221a666af8df419c12a4933874549cb75a1cfe09]

INTEGRATION: CWS ooo19126 (1.4.108); FILE MERGED 2005/09/05 18:43:32 rt 1.4.108.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bd9fcbea9b6121229e793cf2dfe70d6e67b5d474]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:32 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [689b7807d72a327c989e6600b60bfa5b35411de0]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:31 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fe899904f1a5235559f8f23143eed73362220a67]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:31 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5da420b1ecc3f44a9d1503fc2b89f439fdf6170d]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:31 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [50ec7b50a47104fe5a41ecec964b937ff745fc66]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:30 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c2cd2e1729082c0263fdee296ef2e2dd0c5eefe1]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:30 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [e925d26def8f9c7e55cb74aad38401b7faf9c399]

INTEGRATION: CWS ooo19126 (1.3.108); FILE MERGED 2005/09/05 18:43:30 rt 1.3.108.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a1a8eff3b30f1113a3e63c0eecde1d521d78ddee]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:30 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [df6ca3449e16564ab7e01dc54cb2d57a5a417a48]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:29 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6ca8fcc675ea4783f0de53cf7f15db2a81c5884f]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:29 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0256a5b4f3a1acc8d99671642255f05eb9690432]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:29 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [70c78395e51e70d2dadfa58c8c8d520a3efa41b6]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:43:28 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [13e5eb2f7d4b8677c30c21263a21dca0f11ef26b]

INTEGRATION: CWS ooo19126 (1.9.110); FILE MERGED 2005/09/05 18:43:28 rt 1.9.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [4a744795afb248112f6ab642ce9fa05511d8856d]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:28 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fef866ffdb083c0cc68b507fba393dd645555d71]

INTEGRATION: CWS ooo19126 (1.7.22); FILE MERGED 2005/09/05 18:43:26 rt 1.7.22.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a2e8105f7dbd9a37b5733bb5a187fb254d55010e]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:25 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [05e6d5a17f67c4e493569492573e61b0cc27df03]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:25 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [11808f6ad8766f898ed1a5674811723ef5d7bf20]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:25 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [51c963ec3bd91b0c54db349ab45cff7ff550d648]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:25 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [18ca8fc6711c4d6d0f3ad45b61f2477d7f27f848]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:24 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5a1929399291216154ab81674e0ee9b31198616d]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:43:24 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [dc9e4236b5fef5c60207327b748f91aac11fff87]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:24 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2adfc00a18382a7a72620a5453c50c2141919c0c]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:23 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c515bc565cf43ab12ba92f54fe3ad924ee957e33]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:23 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5ec0bfd939d1689dd2d8eff094da81c3f99c42e2]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:23 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b55078f542a9815070181abe513720d6787a94d7]

INTEGRATION: CWS ooo19126 (1.9.110); FILE MERGED 2005/09/05 18:43:22 rt 1.9.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [53d2392cb59201f7dede37dae6fb61542fdb2a7b]

INTEGRATION: CWS ooo19126 (1.11.110); FILE MERGED 2005/09/05 18:43:22 rt 1.11.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3f971dd5154b72617a4ce7037dd639697a630de7]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:22 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [6a737fdd8b726bf9296088d3976d85d2e85593e1]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:43:22 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2486771159e71ecac01bbed027efbfb634d5e9e6]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:21 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [102e1df3e153145bd2069e691dff556046c6c588]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:21 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [ba26f0155d18e0dba60b3e71510b731780063eb0]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:21 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [1cdea87713d4fa3e3cef00c9ca562e8721f5ae6b]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:43:20 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [5704035daec653b94430ae039f1f35f0917e4276]

INTEGRATION: CWS ooo19126 (1.12.80); FILE MERGED 2005/09/05 18:43:20 rt 1.12.80.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [54c185e209d2420dec7c67893ad1fdaf9f76b793]

INTEGRATION: CWS ooo19126 (1.13.58); FILE MERGED 2005/09/05 18:43:20 rt 1.13.58.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [95936deb15602f778b7cd24e5874d9a6e0c9c847]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:20 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [639abdbc3a8762bbd9c6310b39dc32edf12a27c5]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:19 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7e9d8421ccfd97329e64d5475883ed1292ebb79b]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:19 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [7a89931bbfb7343ff9c386f1f71a1c3ec9b2dc2f]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:19 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3eaa12c43ea21c57534495185bb91f29aab4111b]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:18 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [3e2dd3340b33afa9856378cbb28c3332d9f591a8]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:18 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [a02bf7bb1b1c34259539c342df5799dd1369a09b]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:18 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [fa09f341c027ca6fd456fbb2d641b54ed1f7fe9d]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:17 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [b7fdff0358f2ecd5ac34891c365d434f75874675]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:16 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [d42616f985b2385d4f4732c1a413281702f908c9]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:16 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [0957d4c01f29296d12f500c682ce718a0de2dc5a]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:15 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [8e7debc6488cbd49c0f202368578b6159ca89875]

INTEGRATION: CWS ooo19126 (1.7.110); FILE MERGED 2005/09/05 18:43:15 rt 1.7.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [95c1af45051342babf45f6dbd706fa42a15b329a]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:14 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [bbded7482b86a4492d4a6a646e2d9f5843f18c22]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:13 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [065245e8d334f0780437c8be23b0e97fb169d7c9]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:12 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [246703b961f603158b7cdaaa0fdb5d14baa4b098]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:11 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [c437858476d939d1f4423ec2d266a0e043b053ae]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:43:11 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [749c5f9a478deee5f23d0cad909e4ca1f63f35cf]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:11 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [2d5a282d869190fc55fc92550430e9d1b8ae0ba9]

INTEGRATION: CWS ooo19126 (1.11.110); FILE MERGED 2005/09/05 18:43:10 rt 1.11.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [aed0e0c87ee4bb33a703e4a78f210de1712179b9]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:10 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [cfbdadf8b6a228cc5d5be80e9b44dbb777ea10b2]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:43:09 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-08  Rüdiger Timm  <rt@openoffice.org>  [321bb78b871e3684a545422131e975208be306ad]

INTEGRATION: CWS ooo19126 (1.8.110); FILE MERGED 2005/09/05 18:43:09 rt 1.8.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [f776b49b1f66b25238a89d2f6b1eebc88d4fcb1d]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:08 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [ef7149e437cefaaf519d229aead17536b12536e7]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:07 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [3a506876063c50bbcf6d82e3993bfc4a1b5dca08]

INTEGRATION: CWS ooo19126 (1.11.110); FILE MERGED 2005/09/05 18:43:06 rt 1.11.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2b148e3300f8641532de879ae378e0a8bae02ddd]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:05 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [60f1c65f329eb8ff2a0ed7a174122e748738525f]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:05 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [a2999b66ad1c63f35fa134d8c83d778db38615be]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:05 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [bd4a63f903cfb687435b2ae327ef43a40ed78962]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:43:04 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2063b44843fdd91faea1438b8115ddd9ea4546bf]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:04 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [96c4d263459fd2beb9a490c1c43f52af0dc253db]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:04 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [d64e9634391cfec5c6f3c01da0a34ad23131df80]

INTEGRATION: CWS ooo19126 (1.9.110); FILE MERGED 2005/09/05 18:43:04 rt 1.9.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [7a5671887fe5806f8f09c6c42b6e822f14610d0b]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:03 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [98661d6e46d54f48153352518e05ac11797c068a]

INTEGRATION: CWS ooo19126 (1.5.88); FILE MERGED 2005/09/05 18:43:03 rt 1.5.88.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [57b1089b5711a4fa6108970abff5d255b00b3008]

INTEGRATION: CWS ooo19126 (1.7.88); FILE MERGED 2005/09/05 18:43:03 rt 1.7.88.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [dba66912d2b83f8675f099963e2c69268f124dcd]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:02 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2d855262e468ed9f0a5fe1d7406a390abd718fde]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:43:01 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [a667c6dcf47d69daf53a532b384908d876c14b9e]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:43:01 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [aa4ac6b6889add2fcc4a56185d241900839f6e6f]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:43:00 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [bb1da5c50371e1946ba60bea2fc8caae552b50a0]

INTEGRATION: CWS ooo19126 (1.8.110); FILE MERGED 2005/09/05 18:43:00 rt 1.8.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [8b9e3c768c5e50c864bdeffeecaaa23d533b7c3a]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:43:00 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [3acd84099d6cebd5b30635b0b5c59615cb733535]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:59 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [489a450d3e4869930d496d46ab2edb72b166c86c]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:42:58 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [9aa59be636e308bfe35edca3b60bb50162cba450]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:58 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [8e633b4263aff3f01f0b987509daba7f72398eb3]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:57 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [8cfb31b5f3cfb9866eeb503cfbaf26c9f287c09f]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:56 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [60449e68fd6110394c3698a2b014f203a4b93e44]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:56 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [f9f4f2bbd2d1742c7f60562c58bea95264de7852]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:55 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [77b329499a69b054eaa93d1aed1fd7e16b876dae]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:55 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [330967cc5c8511a33975ac92cdfe75ce35660877]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:42:55 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [3b638826f879515c42c8e94f7cbf38bf41192dc6]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:54 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [4fc4ffd68e93af7d51adff778847c1ac01eb4d78]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:54 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [bd90b36983c31531ce0aeae354b65b4832dfcc6d]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:42:54 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [1b39e6b0a9952f96809d04584f4ba80581da8145]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:53 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [9c4feb7bc099f6a3cd375f2b5b901f16dcfa08ac]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:53 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2c45eb274c5193fa014b3f533ea984f0ebe40038]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:52 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [9c3cf84a62c75f82b11839357c247f6051a12916]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:52 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [9a398f3b63b1b5f7e31d7da8972fbb1edb8ff4d6]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:42:51 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [5337729a2e7bf3e54f431f905c64c439669a9fb9]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:51 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [56692d367457b1f3caccc5c41950b6867fb06fe7]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:51 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [fd6a262621af97b2455631898bca0de748542e7e]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:42:51 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [f818fbdb3e41c1c123e448ad73af08010acd254d]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:50 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [e29b62076e54f4cc44effe1ee147716263d04778]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:50 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [c9c973a5b9d2ee9d795e7198526e5e5846ee9e46]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:49 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [6fec60005455e9c3bfa61f6f61fd6571ed8159aa]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:49 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [a60b8e60d683a7ae88122c7761e33cdd7ef40704]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:49 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [3bba04184ebb5d2432cecea55e7d4299b0ddc7bb]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:49 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [419b481fecf06bb9221ff5ef6c202513f9c85e31]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:48 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [186c6d84b910b78bfc16e26d7fb31800bb7ac04b]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:42:48 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [be2f14f949933a8c62e9b08054abd9bd364a3ada]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:48 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [11014bfa0b50e4f80dd699f520c9dcb23260aefa]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:48 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [a58677f4510c870ab74d595ecb14c76788d1ef97]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:42:45 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [60b7867ad8cd4a65ca1f5a1b6e33d55050551042]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:45 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [a902710e6fc4543dfb61c0250f0396a1f843e8ae]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:42:45 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [58ca48d57b0a6937a5c4f516943c70b0a9f995e3]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:44 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [84347e453824204cf0fec2856fe63495d5f93735]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:44 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [8385f139b1da562f9e4727333692ddb46c459982]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:44 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [ebb1dbe712ee7202bb638e8b28b45a28b656f3a3]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:43 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [17cf8fb7b68f7ce1e2ddbc2abaa9c6388ae54c48]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:43 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [61dc9ceb7a25ba9873ec2cb37949cd08864aad98]

INTEGRATION: CWS ooo19126 (1.19.50); FILE MERGED 2005/09/05 18:42:43 rt 1.19.50.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [41924494a2015ba4cb7e848f70297e812188e442]

INTEGRATION: CWS ooo19126 (1.6.108); FILE MERGED 2005/09/05 18:42:43 rt 1.6.108.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [df956549af9b96d5fc08b4a2a2feb3f3d79c3f2c]

INTEGRATION: CWS ooo19126 (1.24.110); FILE MERGED 2005/09/05 18:42:42 rt 1.24.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [9308305e3cab3585b78e063d5f8617f67ecde4fc]

INTEGRATION: CWS ooo19126 (1.4.108); FILE MERGED 2005/09/05 18:42:42 rt 1.4.108.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [779c6c09f85b9d6f4dfefc89fb2fdadc4d764a5c]

INTEGRATION: CWS ooo19126 (1.8.110); FILE MERGED 2005/09/05 18:42:42 rt 1.8.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [e3eb59bc1543b3ef22cfaadfeedbdb58685adda5]

INTEGRATION: CWS ooo19126 (1.2.88); FILE MERGED 2005/09/05 18:42:42 rt 1.2.88.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [ae2d4bc763580de9adbd1879beda3a0dc08f7261]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:42:42 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [5b96d1bf71764579fac63bae92c3811b57da057c]

INTEGRATION: CWS ooo19126 (1.16.70); FILE MERGED 2005/09/05 18:42:41 rt 1.16.70.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [60d5cb9ad55d5e38ba5b93b758fae31d9eb80247]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:42:41 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [5bd7f42d5b92d83ee25054e82190c0e370ef5146]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:41 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [fc1e63164c5e5a9480299c5e6837b94abdbdd597]

INTEGRATION: CWS ooo19126 (1.12.110); FILE MERGED 2005/09/05 18:42:40 rt 1.12.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [85312fe889fdb2ccf0b22d18cf286968ce3191f7]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:40 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [ba9c33dbd5db6f3173d7c778eed1da65fe6536b0]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:42:40 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [6aafd1008a3d2cd7cdbd1e12fa31bd3849316c50]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:39 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [7be83cefd1eff9c31910bd6048d500bfda8fab12]

INTEGRATION: CWS ooo19126 (1.10.110); FILE MERGED 2005/09/05 18:42:39 rt 1.10.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [f5db0b430e8e1432d0299c798d2f97faef1f91f9]

INTEGRATION: CWS ooo19126 (1.7.110); FILE MERGED 2005/09/05 18:42:39 rt 1.7.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [07ee9d4b30e5250cf0498c0848126015e72642c8]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:38 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [8cab7ec74ccc095564aadf22f42625ad17224dfb]

INTEGRATION: CWS ooo19126 (1.10.110); FILE MERGED 2005/09/05 18:42:38 rt 1.10.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [45816bdc0beb2271df57632ef9dfb47c9ccc2c38]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:37 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [fe23fcff66cca39225cf565dda14803473368c46]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:42:37 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [08e602927aed197f34a632771143fd93dfc3a18a]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:37 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [dd8f9908c51b845c1e26519b0871a583bd5ae44e]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:36 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [f2e6d6fd7c4d1f06acbd423b5c0554f1c1c0d00f]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:36 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2aabdcc2d929e900df3bc9684108a98914844bfc]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:42:36 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [78724bc39cf0f6e43a177f07287a59fab598dbba]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:42:35 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [c7dfb51cc032c9d6884ee0f9dbe4b809acfc0fe6]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:42:35 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [be9e391501eabf2dd27bc18ee8a2caacc1e94e4f]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:35 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [84a879d6995d62b34ade4225c28f09fc8957aa7d]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:42:34 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [be452323d1a46e91b960cd98781db62da432b938]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:42:34 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [db25f7f76b0f3e6f626e78b9b6bc6bf4c4b9c89c]

INTEGRATION: CWS ooo19126 (1.4.110); FILE MERGED 2005/09/05 18:42:33 rt 1.4.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [e078924e39bf83c5bd456fb204dc40799e750e32]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:33 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [025c016c39b01b0e77f70245564ff6f3f1820ff2]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:33 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [ada00d33bde569da59ceacc44cd4c8532d26727d]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:33 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [e7aa99fe9157a7f0523d92d79dcbc0e8766680b5]

INTEGRATION: CWS ooo19126 (1.6.72); FILE MERGED 2005/09/05 18:42:33 rt 1.6.72.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2fd1be45ff87ccca22e4170a4d968b28bdcb7bf2]

INTEGRATION: CWS ooo19126 (1.7.110); FILE MERGED 2005/09/05 18:42:32 rt 1.7.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [9b36eb0251535e5e641fb8d28a55c5dbbdbb8c3a]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:32 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [f6f727ccbfdc33e1f33680741817834d7035d8fd]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:32 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [1b44cd167d436ee8713cc6b38a07776faf62c6c6]

INTEGRATION: CWS ooo19126 (1.5.110); FILE MERGED 2005/09/05 18:42:31 rt 1.5.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [cd56a8d06cba3f94467b74153f519ee691ca4500]

INTEGRATION: CWS ooo19126 (1.6.110); FILE MERGED 2005/09/05 18:42:31 rt 1.6.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [71c99e474b67274281ce3fb95d5e88ed1c7c69d1]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:31 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [46fdb58ebff2c47efc43c71a8c485c8763b4b3fd]

INTEGRATION: CWS ooo19126 (1.9.70); FILE MERGED 2005/09/05 18:42:30 rt 1.9.70.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [448fced2fc0d64ab857337cb8853ccd231cf5098]

INTEGRATION: CWS ooo19126 (1.4.58); FILE MERGED 2005/09/05 18:42:30 rt 1.4.58.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [c4dc7c4491dbf76c29d2fc02368bdc5b5ad379f1]

INTEGRATION: CWS ooo19126 (1.5.58); FILE MERGED 2005/09/05 18:42:29 rt 1.5.58.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2b79e6eb20ee429c854a37debb0c8cb8ae6c6964]

INTEGRATION: CWS ooo19126 (1.4.58); FILE MERGED 2005/09/05 18:42:29 rt 1.4.58.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [edc955608a097fd0e07dcded0cd8fbd8049346fa]

INTEGRATION: CWS ooo19126 (1.2.78); FILE MERGED 2005/09/05 18:42:29 rt 1.2.78.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [f9b1523372c74ea75b4899d6a39eeab6a5e115cb]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:29 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [dfc5dc589a611d3d8945e0f934a4444dd7e46f4f]

INTEGRATION: CWS ooo19126 (1.3.78); FILE MERGED 2005/09/05 18:42:28 rt 1.3.78.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [e38b4f4ea8f443484859694ab44113fcec601fc7]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:28 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [ea1e2139c1c7b2709e5c7a2de9173eac4f8af999]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:27 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [6e823b8b773646f9b54a71c141df321e4f2c8239]

INTEGRATION: CWS ooo19126 (1.2.76); FILE MERGED 2005/09/05 18:42:27 rt 1.2.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [811b5f7055d86d1c817f1441e8a2cb3e3d097e48]

INTEGRATION: CWS ooo19126 (1.2.78); FILE MERGED 2005/09/05 18:42:27 rt 1.2.78.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [8a131929e486732561e99522e82b2285652a0ca1]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:26 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [0cf057aafb9df42222708ca78aa628e0a62aadb1]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:26 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [99b19f4cce57db637e209274f698629b8a49c181]

INTEGRATION: CWS ooo19126 (1.3.58); FILE MERGED 2005/09/05 18:42:26 rt 1.3.58.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [89b5787a9c1a0fb81f3d0ac971edef2604e133a9]

INTEGRATION: CWS ooo19126 (1.5.58); FILE MERGED 2005/09/05 18:42:26 rt 1.5.58.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [58bcc48bbbbfb3f28a6d6f9355c6f50899882b6e]

INTEGRATION: CWS ooo19126 (1.4.58); FILE MERGED 2005/09/05 18:42:25 rt 1.4.58.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [38d7c71e9920e67f9eb0575a2232b5f57bd35e67]

INTEGRATION: CWS ooo19126 (1.2.44); FILE MERGED 2005/09/05 18:42:25 rt 1.2.44.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [425dbc68fb9bff4d9af605b5d335c9b982bd5929]

INTEGRATION: CWS ooo19126 (1.8.22); FILE MERGED 2005/09/05 18:42:25 rt 1.8.22.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [16c77c8e8913139aab38ba89a738e2e52d59e380]

INTEGRATION: CWS ooo19126 (1.4.76); FILE MERGED 2005/09/05 18:42:21 rt 1.4.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [96d46be0a90c736a92229a64e0fc9b6d319ee5dd]

INTEGRATION: CWS ooo19126 (1.12.88); FILE MERGED 2005/09/05 18:42:21 rt 1.12.88.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [83acdbc175fbff9536d92144d4039be4dc1a35c7]

INTEGRATION: CWS ooo19126 (1.2.76); FILE MERGED 2005/09/05 18:42:20 rt 1.2.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [8d6e3acce7eb48c7486cefb51e05e6c5b48e25c2]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:20 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [a896d1dedaddb0dec4900e29291cf32fe1fda1cb]

INTEGRATION: CWS ooo19126 (1.2.108); FILE MERGED 2005/09/05 18:42:20 rt 1.2.108.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [15744070da0120e16950fe550930188d06ea1768]

INTEGRATION: CWS ooo19126 (1.2.76); FILE MERGED 2005/09/05 18:42:19 rt 1.2.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [71eeba8240e010c57484a097a8f10599e0ad664e]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:19 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [c22a993130c6f36e2f5bf59b8801da60d9d5696c]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:19 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2b78647809d746825a2736cc15edebddbb5928c0]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:18 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [7e7e4890320cc24ddfcbca659ac5309d35314159]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:18 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [d313715b210e8fbc8d8cc6e0458e55f3c0248f7f]

INTEGRATION: CWS ooo19126 (1.3.76); FILE MERGED 2005/09/05 18:42:18 rt 1.3.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [684508e38d29523ee999e508eb90c925971f26aa]

INTEGRATION: CWS ooo19126 (1.2.108); FILE MERGED 2005/09/05 18:42:18 rt 1.2.108.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [aa484f4cc173191c581b2c5e78b279dbbc132330]

INTEGRATION: CWS ooo19126 (1.2.76); FILE MERGED 2005/09/05 18:42:18 rt 1.2.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [a3d1b7197c4bcc3eff237c4f8c50655a14bb6893]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:17 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [427f5250c57648591ffab6b8e2aea4625346955e]

INTEGRATION: CWS ooo19126 (1.8.58); FILE MERGED 2005/09/05 18:42:17 rt 1.8.58.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [bda126ce437d8995a8b8c4e529ff5452251e46e3]

INTEGRATION: CWS ooo19126 (1.2.78); FILE MERGED 2005/09/05 18:42:17 rt 1.2.78.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2cafd84d1aca4ddbf1c64529b04ed0b1d313a7d5]

INTEGRATION: CWS ooo19126 (1.2.76); FILE MERGED 2005/09/05 18:42:16 rt 1.2.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [ad7c9852472ba9ee8aaba616393cbc91e4ff9cc1]

INTEGRATION: CWS ooo19126 (1.3.76); FILE MERGED 2005/09/05 18:42:16 rt 1.3.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [7bb010081f8afb2f6d46cea6fecb3076b606f629]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:16 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [a84900092b77dddcdbc759d19d5a8b2fb14eeee1]

INTEGRATION: CWS ooo19126 (1.1.1.1.110); FILE MERGED 2005/09/05 18:42:15 rt 1.1.1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2aa7543c6c4fbf6a9b5a6d3d74ac2767637ec724]

INTEGRATION: CWS ooo19126 (1.2.76); FILE MERGED 2005/09/05 18:42:15 rt 1.2.76.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [e3d1e55b2f73bc1621cb31a29cd4c16ce1db4ec5]

INTEGRATION: CWS ooo19126 (1.1.110); FILE MERGED 2005/09/05 18:42:14 rt 1.1.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [af27abcb8954377d05f5c13346df7d0a28b5d126]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:14 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [c552c2bbc69a1255c55a2972e155478fd76860d5]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:13 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [57964615828cecbba750708ba9281b8da8a23e4f]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:42:13 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [6b72a6c936612694b975132cec2ac8ae0cb37fbe]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:42:12 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [e1cee2b4b86a09f5774597d7f59f3cbeb0249389]

INTEGRATION: CWS ooo19126 (1.5.86); FILE MERGED 2005/09/05 18:42:11 rt 1.5.86.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [2ae98d8217ebff63544a63e60f2b5522f77c768c]

INTEGRATION: CWS ooo19126 (1.2.68); FILE MERGED 2005/09/05 18:42:10 rt 1.2.68.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [3000b6f11adc1e6d2d9a9f9523f3fbdfb3f6583e]

INTEGRATION: CWS ooo19126 (1.3.110); FILE MERGED 2005/09/05 18:41:52 rt 1.3.110.1: #i54170# Change license header: remove SISSL


2005-09-07  Rüdiger Timm  <rt@openoffice.org>  [cd3859175a20226908db703fe40874b763d7842f]

INTEGRATION: CWS ooo19126 (1.2.110); FILE MERGED 2005/09/05 18:41:52 rt 1.2.110.1: #i54170# Change license header: remove SISSL


2005-09-05  Oliver Bolte  <obo@openoffice.org>  [b2dee7b0b10699c4026a1956347004cd91146943]

INTEGRATION: CWS impress67 (1.56.112); FILE MERGED 2005/08/29 07:32:55 cl 1.56.112.1: #i42959# added property BuildId


2005-08-30  Rüdiger Timm  <rt@openoffice.org>  [9be51111ffa99a5bcfcf5cb07e1ccf907e9c45a1]

INTEGRATION: CWS cmcfixes15 (1.9.530); FILE MERGED 2005/08/24 17:12:27 cmc 1.9.530.1: #i53701# add BOOST buildtype


2005-07-18  Oliver Bolte  <obo@openoffice.org>  [a91a74c49c11c37385c521d147bee15c2b54b008]

INTEGRATION: CWS doubleprop (1.22.94); FILE MERGED 2005/07/15 11:29:39 sab 1.22.94.1: #i46996#; remove duplicate properties


2005-07-18  Oliver Bolte  <obo@openoffice.org>  [cf83e647f485543e584b29f9a22cf581dbf58833]

INTEGRATION: CWS doubleprop (1.54.94); FILE MERGED 2005/07/15 11:29:39 sab 1.54.94.1: #i46996#; remove duplicate properties


2005-07-12  Kurt Zenker  <kz@openoffice.org>  [72313b2494f547b9b1e7243cd1a8fedad25da0ce]

INTEGRATION: CWS fwk16 (1.68.72); FILE MERGED 2005/06/09 15:09:06 cd 1.68.72.1: #i47814# Call Window base class to support mouse click handlers


2005-07-12  Kurt Zenker  <kz@openoffice.org>  [25507bc5585397e0abc181e5ea81a4a86eb63865]

INTEGRATION: CWS mtl10n (1.41.402); FILE MERGED 2005/07/05 12:30:02 ihi 1.41.402.1: moved define block


2005-07-12  Kurt Zenker  <kz@openoffice.org>  [af43a8d42f7c9675f4975c19359630772d01e5f7]

INTEGRATION: CWS mav18 (1.36.46); FILE MERGED 2005/06/01 14:18:13 mav 1.36.46.1: #i49460# add handling for EMBEDDED_OBJ format


2005-07-12  Kurt Zenker  <kz@openoffice.org>  [a433fbfbbb9ff0c9145d4397922c1d0a87a960a8]

INTEGRATION: CWS mav18 (1.29.262); FILE MERGED 2005/06/01 14:18:12 mav 1.29.262.1: #i49460# add handling for EMBEDDED_OBJ format


2005-07-12  Kurt Zenker  <kz@openoffice.org>  [7f58be2bfb9ec0c99c151f80bdfd51915dfdf2c9]

INTEGRATION: CWS mav18 (1.68.62); FILE MERGED 2005/06/01 14:18:11 mav 1.68.62.1: #i49460# add handling for EMBEDDED_OBJ format


2005-07-12  Kurt Zenker  <kz@openoffice.org>  [1c9c9e3a165fbd52c17a3e081e1a45a73a970335]

INTEGRATION: CWS mav18 (1.34.112); FILE MERGED 2005/06/01 14:18:10 mav 1.34.112.1: #i49460# add handling for EMBEDDED_OBJ format


2005-07-12  Kurt Zenker  <kz@openoffice.org>  [580cda70fcd6d29ecd33e9a75948c199288a6066]

INTEGRATION: CWS mav18 (1.35.50); FILE MERGED 2005/06/06 07:24:42 mav 1.35.50.1: #i49369# the object is already in the storage, but not in the container


2005-07-08  Oliver Bolte  <obo@openoffice.org>  [107879bcc0530a5a7858eecee215d0e8d02f69c1]

INTEGRATION: CWS sch11 (1.14.82); FILE MERGED 2005/07/06 15:20:48 bm 1.14.82.1: #i51643# if the table number in the chart range address is -1 use the table name


2005-07-07  Oliver Bolte  <obo@openoffice.org>  [b97c4774b7a467ccedbf48edcc603d80f89edba6]

INTEGRATION: CWS lostformating (1.90.78); FILE MERGED 2005/07/04 09:48:46 sab 1.90.78.1: #i51292#; use temp object


2005-07-05  Oliver Bolte  <obo@openoffice.org>  [1cc1f46d4fcfb439c4a00699b8ff1af9990bc8e1]

INTEGRATION: CWS lostgrouping (1.20.76); FILE MERGED 2005/06/29 22:33:29 sab 1.20.76.1: #i51366#; create Element in special block


2005-06-28  Kurt Zenker  <kz@openoffice.org>  [7854172578c29be45f823ca4c086f15ddd35fad7]

INTEGRATION: CWS calc32 (1.41.284); FILE MERGED 2005/06/23 16:01:28 nn 1.41.284.1: #i47547# PrintArea: don't continue with negative size


2005-06-28  Kurt Zenker  <kz@openoffice.org>  [816a36a7a9eb7ad473a1e4a4c870989ab3461943]

INTEGRATION: CWS calc32 (1.21.104); FILE MERGED 2005/06/23 13:10:15 dr 1.21.104.1: #i48717# do not return character width 0


2005-06-28  Kurt Zenker  <kz@openoffice.org>  [8cea9dc843a77a5da438ab727312df8d089efbab]

INTEGRATION: CWS calc32 (1.34.104); FILE MERGED 2005/06/23 13:34:54 dr 1.34.104.1: #122885# skip invalid sheet references


2005-06-28  Kurt Zenker  <kz@openoffice.org>  [a832b8fd369c5b676da95046d2f89ed8772b355d]

INTEGRATION: CWS calc32 (1.23.104); FILE MERGED 2005/06/23 16:00:33 nn 1.23.104.1: #i50706# changed some forgotten USHORT loops to SCSIZE


2005-06-24  Rüdiger Timm  <rt@openoffice.org>  [3e2cb70e51d72a2dafa2a7520e548a4e260df08c]

INTEGRATION: CWS lostnotes (1.193.44); FILE MERGED 2005/05/31 17:19:04 sab 1.193.44.1: #i49958#; find all notes in the unsorted collection


2005-06-24  Rüdiger Timm  <rt@openoffice.org>  [7570ffc4ca5486c519bf66a197ad1b0512a66da4]

INTEGRATION: CWS ooo20l10n (1.1.2); FILE ADDED 2005/06/10 12:56:20 ihi 1.1.2.1: #i50411# en-GB accl.


2005-06-21  Rüdiger Timm  <rt@openoffice.org>  [3e5f6c7034a9fb661fdafcc1798c9d8c4294e831]

INTEGRATION: CWS optionalbase (1.23.56); FILE MERGED 2005/06/20 13:36:44 fs 1.23.56.2: #i46898# 2005/06/16 07:45:16 fs 1.23.56.1: #i46898# no data source browser if no Base is installed


2005-06-15  Oliver Bolte  <obo@openoffice.org>  [152c41b1b45b59b865d3cbae962bea584d1c743e]

INTEGRATION: CWS buildfixes01 (1.6.74); FILE MERGED 2005/06/07 13:46:37 thb 1.6.74.1: #i50426# Took template nesting mods in again (otherwise, won't build on gcc3.0.x)


2005-06-15  Oliver Bolte  <obo@openoffice.org>  [eb2cc069823fdc38790e70fa8a0d1274f99aab8d]

INTEGRATION: CWS buildfixes01 (1.7.22); FILE MERGED 2005/06/07 13:46:36 thb 1.7.22.1: #i50426# Took template nesting mods in again (otherwise, won't build on gcc3.0.x)


2005-06-14  Oliver Bolte  <obo@openoffice.org>  [cd46b6cef5584718c5b6497c96aa62129f5fb7a4]

INTEGRATION: CWS gcc4fwdecl (1.6.304); FILE MERGED 2005/06/01 17:07:28 pmladek 1.6.304.1: #i50068# Fixed forward declarations for gcc4 in sc


2005-05-13  Rüdiger Timm  <rt@openoffice.org>  [c4a06ef74a6950c9765d81246b81a5b8fd14fb43]

INTEGRATION: CWS dr39 (1.51.30); FILE MERGED 2005/05/03 12:10:40 dr 1.51.30.1: #i46820# set pagebreak mode via SetPagebreakMode()


2005-05-13  Rüdiger Timm  <rt@openoffice.org>  [85f225846bb5752f5a9b3dc8f53a180955ae35cf]

INTEGRATION: CWS dr39 (1.41.30); FILE MERGED 2005/05/10 13:59:33 sab 1.41.30.1: #i48793#; set array formulas before protection


2005-05-13  Rüdiger Timm  <rt@openoffice.org>  [8613b8f36d11a5474c0a5c341268003affa61a61]

INTEGRATION: CWS dr39 (1.20.30); FILE MERGED 2005/05/10 14:09:22 er 1.20.30.1: #i48967# Interpreter's TokenMatrixMap: no dangling map for reallocated pointers


2005-05-13  Rüdiger Timm  <rt@openoffice.org>  [7c133098f9b9a412d39c9b503a6feb5a309fc8ba]

INTEGRATION: CWS dr39 (1.10.30); FILE MERGED 2005/05/10 14:09:19 er 1.10.30.1: #i48967# Interpreter's TokenMatrixMap: no dangling map for reallocated pointers


2005-05-13  Rüdiger Timm  <rt@openoffice.org>  [cb1a4a1d53efc2035c96c81ebf4c5fe7718e0635]

INTEGRATION: CWS dr39 (1.2.442); FILE MERGED 2005/05/10 14:09:19 er 1.2.442.1: #i48967# Interpreter's TokenMatrixMap: no dangling map for reallocated pointers


2005-05-06  Oliver Bolte  <obo@openoffice.org>  [20c4c0e1564d0e599715f41392de8212d5a78da4]

INTEGRATION: CWS ause027 (1.2.808); FILE MERGED 2005/04/28 13:01:26 hjs 1.2.808.1: #i48362# ignore errorcode 12


2005-04-22  Oliver Bolte  <obo@openoffice.org>  [fe4a5d4da3af98fd20ff07bc916fc325109082df]

INTEGRATION: CWS dr38 (1.9.282); FILE MERGED 2005/04/21 08:39:55 dr 1.9.282.1: #i47855# loop when outlines are removed from sheet


2005-04-22  Oliver Bolte  <obo@openoffice.org>  [1fc7333caa6c734656ae870b1ff4121ac1952ba2]

INTEGRATION: CWS dr38 (1.2.22); FILE MERGED 2005/04/20 19:18:05 dr 1.2.22.2: #i47826# handle missing series formatting 2005/04/20 18:45:43 dr 1.2.22.1: #i47826# handle missing series formatting


2005-04-22  Oliver Bolte  <obo@openoffice.org>  [120b2176790707144ec3c259f8701a571656d40c]

INTEGRATION: CWS validationfix (1.19.20); FILE MERGED 2005/04/18 09:00:56 nn 1.19.20.1: #i47525# distinguish between macro-name and script-url for macros in validation


2005-04-22  Oliver Bolte  <obo@openoffice.org>  [0c39128e029a891f41e44d3977844eba76f6c6f1]

INTEGRATION: CWS validationfix (1.24.20); FILE MERGED 2005/04/18 09:00:54 nn 1.24.20.1: #i47525# distinguish between macro-name and script-url for macros in validation


2005-04-22  Oliver Bolte  <obo@openoffice.org>  [a7b5b828f66e41faee578442c9358e2a11d4d4d0]

INTEGRATION: CWS validationfix (1.42.20); FILE MERGED 2005/04/18 09:00:55 nn 1.42.20.1: #i47525# distinguish between macro-name and script-url for macros in validation


2005-04-20  Oliver Bolte  <obo@openoffice.org>  [a57204b8fa846fa2997782627952a01140ae0a81]

INTEGRATION: CWS scmatchfix (1.13.18); FILE MERGED 2005/04/15 14:19:27 er 1.13.18.1: #i46950# BinarySearch: keep it simple, stupid


2005-04-18  Oliver Bolte  <obo@openoffice.org>  [9cc72cf055e3427e467860b43a9ccb2dcb3f2404]

INTEGRATION: CWS sabbug01 (1.25.16); FILE MERGED 2005/04/12 12:00:37 sab 1.25.16.1: #i47222#; handle unnamed database ranges


2005-04-15  Oliver Bolte  <obo@openoffice.org>  [103ac8fa4fd892aebb5ad7fa3938541aeaf60ffa]

#i45006#, #i10000# Removed obsolete svmem.lib.


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [408c560a96fb3a42d1133c410c1eb6a79a6040f2]

INTEGRATION: CWS visibility03 (1.8.212); FILE MERGED 2005/03/26 16:31:50 mhu 1.8.212.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [e6f086e635bc5431cae83774e7f269b873ace0b1]

INTEGRATION: CWS visibility03 (1.16.140); FILE MERGED 2005/03/26 16:31:50 mhu 1.16.140.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [3e465329f00308edae5e53a96fcc877e9f05074b]

INTEGRATION: CWS visibility03 (1.22.212); FILE MERGED 2005/03/26 16:31:49 mhu 1.22.212.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [3e4b652eb5021181c3293e762fc7e8f58b0895d5]

INTEGRATION: CWS visibility03 (1.37.38); FILE MERGED 2005/03/26 16:31:49 mhu 1.37.38.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [487fafe22855e3f69b8746bccf6b8ba7d7a083d5]

INTEGRATION: CWS visibility03 (1.9.66); FILE MERGED 2005/04/04 11:39:24 mhu 1.9.66.2: #i45006# Removed obsolete include. 2005/03/26 16:31:49 mhu 1.9.66.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [f3a1f0dc5a9896135782e52fb407a3c0cbf98656]

INTEGRATION: CWS visibility03 (1.42.20); FILE MERGED 2005/03/26 16:31:48 mhu 1.42.20.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [d1b53f5d064ff9d448fdd199408c1eb206775990]

INTEGRATION: CWS visibility03 (1.3.816); FILE MERGED 2005/03/07 18:48:46 mhu 1.3.816.1: #i40092# Added missing forward declaration.


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [dd7fca9b91204aabb99373f3bb6932d2892fa69b]

INTEGRATION: CWS visibility03 (1.13.798); FILE MERGED 2005/03/07 18:48:46 mhu 1.13.798.1: #i40092# Added missing forward declaration.


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [2db59d10568761ffd985722f7709ce1dd2c89960]

INTEGRATION: CWS visibility03 (1.35.20); FILE MERGED 2005/04/06 16:52:29 mhu 1.35.20.2: RESYNC: (1.35-1.36); FILE MERGED 2005/03/26 16:31:48 mhu 1.35.20.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [5aec4ce3bac4f6bf7a6415c74c7ec6646f2551f2]

INTEGRATION: CWS visibility03 (1.11.66); FILE MERGED 2005/04/04 11:39:23 mhu 1.11.66.2: #i45006# Removed obsolete include. 2005/03/26 16:31:47 mhu 1.11.66.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [b8d7367eb4615c3203d1b0ecbd94c1db0c075280]

INTEGRATION: CWS visibility03 (1.12.338); FILE MERGED 2005/03/26 16:31:47 mhu 1.12.338.1: #i45006# subst includes svtools/sbx with basic/sbx


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [37b46c0af6394e3a0b1249386b2487bce593443e]

INTEGRATION: CWS visibility03 (1.9.30); FILE MERGED 2005/04/04 11:39:22 mhu 1.9.30.1: #i45006# Removed obsolete include.


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [aa33b777be5e85255774f0523eac29c4b84ce53c]

INTEGRATION: CWS visibility03 (1.10.394); FILE MERGED 2005/03/07 18:48:45 mhu 1.10.394.1: #i40092# Added missing forward declaration.


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [11f92bb2423e4f7a3c6578fe5001290cb9172fbc]

INTEGRATION: CWS visibility03 (1.5.232); FILE MERGED 2005/04/04 11:39:21 mhu 1.5.232.1: #i45006# Removed obsolete include.


2005-04-13  Oliver Bolte  <obo@openoffice.org>  [817a9cf5b6731c6d374441181c6a9cd8bf3e4748]

INTEGRATION: CWS visibility03 (1.46.10); FILE MERGED 2005/03/02 13:11:25 mhu 1.46.10.1: #i40092# Fixed string ctor (char literal) usage.


2005-04-12  Oliver Bolte  <obo@openoffice.org>  [7b72f787ecd0c6366749de5fee640e206ad5dc25]

INTEGRATION: CWS calchelpcrash (1.43.230); FILE MERGED 2005/04/08 14:10:31 nn 1.43.230.1: #i46999# current view frame can be null in GetChildWinFromAnyView


2005-04-06  Jens-Heiner Rechtien  <hr@openoffice.org>  [76b51089a7b40e221371dc2f169a75769dc1c42e]

INTEGRATION: CWS calchc (1.16.154); FILE MERGED 2005/04/01 13:03:10 nn 1.16.154.1: #i46362# DrawSelectiveObjects: set DrawMode and Outliner flags


2005-04-04  Rüdiger Timm  <rt@openoffice.org>  [980bb4d30533d12f752b362d5323677635817c0a]

INTEGRATION: CWS gccfour (1.11.26); FILE MERGED 2005/03/18 14:10:45 cmc 1.11.26.2: RESYNC: (1.11-1.12); FILE MERGED 2005/03/14 12:40:46 cmc 1.11.26.1: #i44718# add boost using file to exceptions


2005-03-30  Rüdiger Timm  <rt@openoffice.org>  [50b160c062ed99607b9b8ce0a992c21de726bdf8]

INTEGRATION: CWS calcstopper (1.191.6); FILE MERGED 2005/03/29 12:14:59 nn 1.191.6.1: #i44288# initialize pAttrList (ranges string is empty on invalid tab references in chart)


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [9bccbd3c47587af50c300bbb62ad3ce968b57d70]

INTEGRATION: CWS sj17 (1.1.2); FILE ADDED 2005/03/09 17:16:14 sj 1.1.2.1: #i37687# fixed status update for master/slave commands


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d8a5364bcad8f286f0bc934d418496c6bd464ceb]

INTEGRATION: CWS sj17 (1.3.118); FILE MERGED 2005/03/09 17:15:50 sj 1.3.118.1: #i37687# fixed status update for master/slave commands


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [7f833af3748eb10a3bb302baf34e106adb598f3f]

INTEGRATION: CWS sj17 (1.6.78); FILE MERGED 2005/03/03 13:41:06 sj 1.6.78.1: #i42992# customshape text should be center aligned


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [df22859f4ede7cb88ed1792377b75794343e4fce]

INTEGRATION: CWS sj17 (1.22.74); FILE MERGED 2005/03/09 17:14:38 sj 1.22.74.1: #i37687# fixed status update for master/slave commands


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [937d7108c8cf13dbbb8ca1b0527542ddd269a656]

INTEGRATION: CWS sj17 (1.29.118); FILE MERGED 2005/03/09 17:13:56 sj 1.29.118.1: #i37687# fixed status update for master/slave commands


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [f00a2a724f5ace9b61062bdd6f5ec64ff136fad3]

INTEGRATION: CWS sj17 (1.13.192); FILE MERGED 2005/03/09 17:13:19 sj 1.13.192.1: #i37687# fixed status update for master/slave commands


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [55d86a31b6909e648c1453758cbd28155c009fef]

INTEGRATION: CWS dr34 (1.32.14); FILE MERGED 2005/03/16 11:31:47 dr 1.32.14.7: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/14 14:57:40 dr 1.32.14.6: #i44077# set size for new Excel OLE objects 2005/03/11 16:34:29 dr 1.32.14.5: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:07:15 dr 1.32.14.4: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 20:04:32 dr 1.32.14.3: RESYNC: (1.32-1.33); FILE MERGED 2005/02/24 19:00:26 dr 1.32.14.2: #i42572# chart import changes 2005/02/21 16:28:55 dr 1.32.14.1: #119281# preparations for better chart import


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [a54a5579a07fcaf8ca95e084a7c2e40ffe7d27b5]

INTEGRATION: CWS dr34 (1.30.46); FILE MERGED 2005/03/11 16:34:28 dr 1.30.46.5: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:07:14 dr 1.30.46.4: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 20:01:45 dr 1.30.46.3: RESYNC: (1.30-1.31); FILE MERGED 2005/02/24 19:00:25 dr 1.30.46.2: #i42572# chart import changes 2005/02/21 16:28:54 dr 1.30.46.1: #119281# preparations for better chart import


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [9681046ecd6a9f9ac8afc12c091e507acad9febc]

INTEGRATION: CWS dr34 (1.17.192); FILE MERGED 2005/03/22 14:14:40 dr 1.17.192.3: changed record name 2005/03/11 16:34:26 dr 1.17.192.2: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/04 16:22:14 dr 1.17.192.1: #i29271# chart records


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d9d2505691dbf469606e2db8b68f00d2de26115c]

INTEGRATION: CWS dr34 (1.34.2); FILE MERGED 2005/03/14 14:59:25 dr 1.34.2.2: #i44077# set size for new Excel OLE objects 2005/03/11 16:12:38 nn 1.34.2.1: #i43716# allocate Medium for DoLoad on heap


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [a03d699722f096d45a256a35d5f63f97b8c0c28e]

INTEGRATION: CWS dr34 (1.50.2); FILE MERGED 2005/03/14 14:59:25 dr 1.50.2.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [69aefd96cf35b73f93097f6881b5b080577971f9]

INTEGRATION: CWS dr34 (1.12.16); FILE MERGED 2005/03/11 16:14:56 er 1.12.16.1: #i44499# don't read beyond bounds of filter pattern


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [9aa1af36a03d2edd331fbce6ba46735508c8c552]

INTEGRATION: CWS dr34 (1.78.2); FILE MERGED 2005/02/25 13:51:35 dr 1.78.2.2: #i42858# do not warn multiple times 2005/02/25 12:41:41 dr 1.78.2.1: #i42858# do not warn multiple times


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [b5ca29f64bf7e9eee570135e183dced91ffbc8a5]

INTEGRATION: CWS dr34 (1.19.2); FILE MERGED 2005/03/14 14:58:56 dr 1.19.2.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [ec698b6d40c8f892619777ad590e6b3a95273e19]

INTEGRATION: CWS dr34 (1.4.52); FILE MERGED 2005/03/11 12:57:04 nn 1.4.52.1: #i41181# handle multiple paragraphs in a table cell from Writer (patch from bluedwarf)


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [11008791cfcd6037d7a41bbce026f9281638665b]

INTEGRATION: CWS dr34 (1.6.192); FILE MERGED 2005/03/11 16:40:57 dr 1.6.192.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [17c3f31568c37caf6a2c4eaf8003f0429d58eeb6]

INTEGRATION: CWS dr34 (1.21.2); FILE MERGED 2005/03/11 16:40:56 dr 1.21.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [206abde12bb55411117bb0bf00a62c63f0d13963]

INTEGRATION: CWS dr34 (1.15.72); FILE MERGED 2005/03/03 20:08:19 dr 1.15.72.2: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 19:01:08 dr 1.15.72.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [43641d055ef22d02eebe6279ad70151a62591670]

INTEGRATION: CWS dr34 (1.20.2); FILE MERGED 2005/03/14 14:58:41 dr 1.20.2.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [f49215fc18d374a8bc48c26f62c6c4e1c9ed939d]

INTEGRATION: CWS dr34 (1.14.2); FILE MERGED 2005/03/14 14:58:41 dr 1.14.2.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [b69f49883d4eacc3f27905c0a6e3d9e217cc8f9c]

INTEGRATION: CWS dr34 (1.1.2); FILE ADDED 2005/03/18 11:23:33 dr 1.1.2.7: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 12:59:35 dr 1.1.2.6: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 11:32:10 dr 1.1.2.5: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/11 16:40:56 dr 1.1.2.4: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:08:19 dr 1.1.2.3: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 19:01:08 dr 1.1.2.2: #i42572# chart import changes 2005/02/21 16:31:43 dr 1.1.2.1: #119281# preparations for better chart import


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [e2c1579fdd553f513f0711450779380ee00cda73]

INTEGRATION: CWS dr34 (1.8.192); FILE MERGED 2005/02/24 19:01:08 dr 1.8.192.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [c88d3a9682a67a43268346ce1c408b27feae08f4]

INTEGRATION: CWS dr34 (1.14.46); FILE MERGED 2005/02/24 20:13:16 dr 1.14.46.2: RESYNC: (1.14-1.15); FILE MERGED 2005/02/24 19:01:07 dr 1.14.46.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [53f38781564f3a657ac119b73366bf48e17c2c5d]

INTEGRATION: CWS dr34 (1.4.2); FILE MERGED 2005/03/11 16:40:56 dr 1.4.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d507f3b8a20b17490c5a0d6611ff4d900e54fe51]

INTEGRATION: CWS dr34 (1.12.4); FILE MERGED 2005/02/24 20:12:49 dr 1.12.4.2: RESYNC: (1.12-1.13); FILE MERGED 2005/02/24 19:01:07 dr 1.12.4.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [669bf76423375b048fd90239870b4abec1a07f78]

INTEGRATION: CWS dr34 (1.16.2); FILE MERGED 2005/03/16 11:32:10 dr 1.16.2.4: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/14 14:58:40 dr 1.16.2.3: #i44077# set size for new Excel OLE objects 2005/03/11 16:40:56 dr 1.16.2.2: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:08:19 dr 1.16.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [1a6665edc6f3d3666edddfd7c74433c02e715bf0]

INTEGRATION: CWS dr34 (1.1.2); FILE ADDED 2005/03/18 11:23:33 dr 1.1.2.9: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 18:37:01 dr 1.1.2.8: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 12:59:34 dr 1.1.2.7: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 11:32:10 dr 1.1.2.6: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/13 15:01:44 dr 1.1.2.5: #i10000# gcc adjustments 2005/03/11 16:55:51 dr 1.1.2.4: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/11 16:40:55 dr 1.1.2.3: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:08:18 dr 1.1.2.2: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 19:01:07 dr 1.1.2.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [ab3e66b17a4df04ed6966854a3f99e72aa6bce51]

INTEGRATION: CWS dr34 (1.14.46); FILE MERGED 2005/02/24 20:11:47 dr 1.14.46.3: RESYNC: (1.14-1.15); FILE MERGED 2005/02/11 14:52:17 dr 1.14.46.2: removed xerecord.hxx <-> xeroot.hxx dependency 2005/02/11 09:32:58 dr 1.14.46.1: removed xerecord.hxx <-> xeroot.hxx dependency


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [128365197b312f8ac0ea1060e7d9028b6665cad2]

INTEGRATION: CWS dr34 (1.7.46); FILE MERGED 2005/02/24 20:11:40 dr 1.7.46.2: RESYNC: (1.7-1.8); FILE MERGED 2005/02/11 09:32:58 dr 1.7.46.1: removed xerecord.hxx <-> xeroot.hxx dependency


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [a65270603974f54234489ea9958f91043daf01fe]

INTEGRATION: CWS dr34 (1.15.2); FILE MERGED 2005/03/04 15:16:52 dr 1.15.2.1: #i41210# select script type according to cell type


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [def5ff356acb5be65faef32b735c89be16d12e08]

INTEGRATION: CWS dr34 (1.4.2); FILE MERGED 2005/03/14 14:58:40 dr 1.4.2.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [8fdd09fa998415647d1715b4029be2a1a505426c]

INTEGRATION: CWS dr34 (1.9.2); FILE MERGED 2005/03/14 14:58:40 dr 1.9.2.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [491e44152b98e96255127d53cc4605d86da6c6e1]

INTEGRATION: CWS dr34 (1.40.2); FILE MERGED 2005/03/11 16:40:55 dr 1.40.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d2113b59987d05dd4d4c43e17fec4a666c34f6bf]

INTEGRATION: CWS dr34 (1.2.316); FILE MERGED 2005/03/17 16:21:14 dr 1.2.316.1: #i45209# rename classes with name already used somewhere


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [a065a2f612fe5301d0c05a80292e5ac99880c40a]

INTEGRATION: CWS dr34 (1.32.2); FILE MERGED 2005/03/17 16:21:14 dr 1.32.2.2: #i45209# rename classes with name already used somewhere 2005/03/11 16:40:55 dr 1.32.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [b172b8c1830b2e4ae87a80d8825394d0ccd31434]

INTEGRATION: CWS dr34 (1.16.2); FILE MERGED 2005/03/11 16:40:55 dr 1.16.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [217934c019f2f2cdb66b7825b187cda87d962627]

INTEGRATION: CWS dr34 (1.5.218); FILE MERGED 2005/03/11 16:40:54 dr 1.5.218.3: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:08:18 dr 1.5.218.2: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 19:01:07 dr 1.5.218.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [5634d7c807a7312632f6fba75a8426a6fadbf71e]

INTEGRATION: CWS dr34 (1.59.2); FILE MERGED 2005/03/11 16:40:54 dr 1.59.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [9ed6d2075891facb91d550248b98e6cd521d8851]

INTEGRATION: CWS dr34 (1.18.2); FILE MERGED 2005/03/17 16:21:14 dr 1.18.2.1: #i45209# rename classes with name already used somewhere


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [937c07fc973be1626d4b9e9890c27e93f8dee323]

INTEGRATION: CWS dr34 (1.3.218); FILE MERGED 2005/03/11 16:34:43 dr 1.3.218.3: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:07:32 dr 1.3.218.2: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 19:01:33 dr 1.3.218.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [aaf8734ec66d62d44cc76a0f26344e64f03a18e1]

INTEGRATION: CWS dr34 (1.6.192); FILE MERGED 2005/03/11 16:34:31 dr 1.6.192.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [db1f9f2909d388b45dfaa9894a2f62a6f2997fad]

INTEGRATION: CWS dr34 (1.21.2); FILE MERGED 2005/03/11 16:34:30 dr 1.21.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [cf6124eef3478d52c618bb71927cbd9d5db30278]

INTEGRATION: CWS dr34 (1.14.70); FILE MERGED 2005/03/03 20:07:16 dr 1.14.70.3: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 20:06:46 dr 1.14.70.2: RESYNC: (1.14-1.15); FILE MERGED 2005/02/24 19:00:27 dr 1.14.70.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [598c04eb724811f60b8e6f02e76a6f1d9efcf77e]

INTEGRATION: CWS dr34 (1.13.46); FILE MERGED 2005/03/03 20:07:15 dr 1.13.46.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [bd876d831435d9b84035571f4aec1e84400478ae]

INTEGRATION: CWS dr34 (1.7.46); FILE MERGED 2005/03/14 14:57:40 dr 1.7.46.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [42bc144f1739485a7b66ce485080282ae30d4047]

INTEGRATION: CWS dr34 (1.1.2); FILE ADDED 2005/03/18 11:23:14 dr 1.1.2.6: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 11:31:48 dr 1.1.2.5: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/11 16:34:30 dr 1.1.2.4: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:07:15 dr 1.1.2.3: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 19:00:27 dr 1.1.2.2: #i42572# chart import changes 2005/02/21 16:28:51 dr 1.1.2.1: #119281# preparations for better chart import


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [13d63bcc759a7e7910fbb05b81f8bc1073a32ae2]

INTEGRATION: CWS dr34 (1.10.166); FILE MERGED 2005/03/07 15:39:11 dr 1.10.166.3: #i44031# handle BIFF generated by 'Turbo Cash' 2005/02/24 20:05:40 dr 1.10.166.2: RESYNC: (1.10-1.11); FILE MERGED 2005/02/24 19:00:26 dr 1.10.166.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [62b99d0b5f7e75c12d92942c9c15d4ce5b60b1f3]

INTEGRATION: CWS dr34 (1.9.2); FILE MERGED 2005/03/11 16:34:30 dr 1.9.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d79fd869e8bfee02510308e9e60c8e68cd6a090e]

INTEGRATION: CWS dr34 (1.17.72); FILE MERGED 2005/02/24 20:04:41 dr 1.17.72.2: RESYNC: (1.17-1.18); FILE MERGED 2005/02/24 19:00:26 dr 1.17.72.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [7fa31afc867bbc8b6ab4ec1b7c47506521a09b28]

INTEGRATION: CWS dr34 (1.1.2); FILE ADDED 2005/03/18 11:23:13 dr 1.1.2.8: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 18:36:49 dr 1.1.2.7: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 12:59:15 dr 1.1.2.6: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/16 11:31:47 dr 1.1.2.5: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/11 16:34:29 dr 1.1.2.4: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:07:15 dr 1.1.2.3: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 23:59:25 dr 1.1.2.2: #i10000# build problems after resync 2005/02/24 19:00:26 dr 1.1.2.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [4caf728a60918109f706919d4bb62905b0efb4ae]

INTEGRATION: CWS dr34 (1.2.2); FILE MERGED 2005/02/28 07:43:23 dr 1.2.2.2: #i43553# GCC 3.3 parse error 2005/02/28 07:36:42 dr 1.2.2.1: #i43553# GCC 3.3 parse error


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [1627efde3532ad1709b982a886110505614690ce]

INTEGRATION: CWS dr34 (1.6.2); FILE MERGED 2005/03/04 15:16:43 dr 1.6.2.1: #i41210# select script type according to cell type


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [9e7d872efea088a0e30f0ec4f9b8927903c3cc65]

INTEGRATION: CWS dr34 (1.21.2); FILE MERGED 2005/03/04 15:16:42 dr 1.21.2.1: #i41210# select script type according to cell type


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [1609737244509f6f9d93a28f52385e0d0452eae3]

INTEGRATION: CWS dr34 (1.10.2); FILE MERGED 2005/03/03 20:07:14 dr 1.10.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [30542cfcf13caa525ea8f70a3dce4f0631c55c13]

INTEGRATION: CWS dr34 (1.51.4); FILE MERGED 2005/03/11 16:34:28 dr 1.51.4.4: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/03 20:07:14 dr 1.51.4.3: #42572# #119281# #i29271# #i5359# chart import improvements 2005/02/24 20:02:01 dr 1.51.4.2: RESYNC: (1.51-1.52); FILE MERGED 2005/02/24 19:00:25 dr 1.51.4.1: #i42572# chart import changes


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [136ac9bbfa5b2fafd9e7058d2064344796d32342]

INTEGRATION: CWS dr34 (1.73.2); FILE MERGED 2005/03/21 11:13:21 dr 1.73.2.4: #i44077# object manager only in BIFF8 2005/03/17 16:20:51 dr 1.73.2.3: #i45209# rename classes with name already used somewhere 2005/03/14 14:57:40 dr 1.73.2.2: #i44077# set size for new Excel OLE objects 2005/03/11 16:34:27 dr 1.73.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [b2eb853dcc0aa7500cff63acec0011183e9fcae7]

INTEGRATION: CWS dr34 (1.53.2); FILE MERGED 2005/03/17 16:20:51 dr 1.53.2.2: #i45209# rename classes with name already used somewhere 2005/03/11 16:34:27 dr 1.53.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [172a9bb64a0a85f6482e048e9b21f7509b7482b1]

INTEGRATION: CWS dr34 (1.36.2); FILE MERGED 2005/03/11 16:34:27 dr 1.36.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [2bc354bdb21849938d7e716f2b03b83f8843d3a5]

INTEGRATION: CWS dr34 (1.105.2); FILE MERGED 2005/03/14 14:57:39 dr 1.105.2.2: #i44077# set size for new Excel OLE objects 2005/03/11 16:34:26 dr 1.105.2.1: #42572# #119281# #i29271# #i5359# chart import improvements


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [775063a8471273f22e5d55c5f60eae9cb62127a8]

INTEGRATION: CWS dr34 (1.26.2); FILE MERGED 2005/03/17 16:20:51 dr 1.26.2.1: #i45209# rename classes with name already used somewhere


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [2a7fe0a7a60a8d965565dc855fad36975bc63665]

INTEGRATION: CWS dr34 (1.75.72); FILE MERGED 2005/03/16 11:31:46 dr 1.75.72.7: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/11 16:34:26 dr 1.75.72.6: #42572# #119281# #i29271# #i5359# chart import improvements 2005/03/04 16:22:13 dr 1.75.72.5: #i29271# chart records 2005/02/24 19:59:33 dr 1.75.72.4: RESYNC: (1.76-1.77); FILE MERGED 2005/02/24 19:00:24 dr 1.75.72.3: #i42572# chart import changes 2005/02/21 16:51:48 dr 1.75.72.2: RESYNC: (1.75-1.76); FILE MERGED 2005/02/16 09:40:21 dr 1.75.72.1: source type for bubbles in bubble charts


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [9b3d2f781db0218001381546b381abbf5742c13a]

INTEGRATION: CWS dr34 (1.8.2); FILE MERGED 2005/03/11 16:13:47 er 1.8.2.1: #i44499# GetNextTopic: check for null pointer from ScanIntVal; ScanIntVal: eat leading whitespace


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [ce9f80bec14e2f30f6a72cd40e4e06d8707ae36c]

INTEGRATION: CWS dr34 (1.21.196); FILE MERGED 2005/03/08 14:50:29 er 1.21.196.1: implement dtor and free memory


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [6d721c4c2df3da637415a8243c11805be5675d8e]

INTEGRATION: CWS dr34 (1.13.4); FILE MERGED 2005/03/11 17:42:17 dr 1.13.4.2: RESYNC: (1.13-1.14); FILE MERGED 2005/03/08 14:59:54 er 1.13.4.1: #118812# performance of conditional array calculation, cache jumps and results


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [7f184c213120e85653879428128432c2bfaa0b6a]

INTEGRATION: CWS dr34 (1.34.4); FILE MERGED 2005/03/11 17:42:07 dr 1.34.4.2: RESYNC: (1.34-1.35); FILE MERGED 2005/03/08 14:59:53 er 1.34.4.1: #118812# performance of conditional array calculation, cache jumps and results


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [c8cfb1260a9eabb9ba4666570ef12976d61c5df4]

INTEGRATION: CWS dr34 (1.33.16); FILE MERGED 2005/03/09 17:09:14 er 1.33.16.4: #i44492# ScCountIf: an empty string is a real search criteria 2005/03/08 14:59:52 er 1.33.16.3: #118812# performance of conditional array calculation, cache jumps and results 2005/03/01 13:46:11 er 1.33.16.2: #i43714# ScLookup: ScQueryParam.bByRow=false if lookup in row 2005/02/22 14:05:58 er 1.33.16.1: #i43121# DBIterator: ifMAX of -MAXDOUBLE; also add default case to some switches to get rid of gcc -Wall warnings


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d51865fd0f2f73237650d35c0f4f47f8d7d1a60d]

INTEGRATION: CWS dr34 (1.13.208); FILE MERGED 2005/03/08 18:10:43 er 1.13.208.1: #i44370# #i44495# invalid start row/col if all hidden


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [4448045ba43c23a9c34a746e4c038383ea7f8a99]

INTEGRATION: CWS dr34 (1.2.316); FILE MERGED 2005/03/14 14:56:20 dr 1.2.316.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [e5307c0008eeb94b8a550454455fefff4bb168c2]

INTEGRATION: CWS dr34 (1.19.4); FILE MERGED 2005/03/08 14:59:51 er 1.19.4.1: #118812# performance of conditional array calculation, cache jumps and results


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [1d0ebdfce5d4e7ed6a793079a333f92e1e63c03d]

INTEGRATION: CWS dr34 (1.8.158); FILE MERGED 2005/02/28 16:45:46 er 1.8.158.1: #118690# UpdatePageBreaks: despite the fact that since m81 in case of the bug document the method is only called for the first sheet, speed the loop up by using ScCompressedArrayIterator


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [8ed7bab212fe1d4cee81345d750010d3ec78764d]

INTEGRATION: CWS dr34 (1.31.192); FILE MERGED 2005/03/10 11:41:34 nn 1.31.192.1: #i44697# detect equal ScPatternAttr pointers across MergePatternArea calls


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [44eef6455c15bf334e43ff22636b24f01e9b8209]

INTEGRATION: CWS dr34 (1.64.4); FILE MERGED 2005/03/10 11:41:35 nn 1.64.4.1: #i44697# detect equal ScPatternAttr pointers across MergePatternArea calls


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [e1a4b15f3bf936048f5008f504ddfd97eed14ef2]

INTEGRATION: CWS dr34 (1.12.102); FILE MERGED 2005/03/01 14:25:48 er 1.12.102.1: BinarySearch: if first string is to be ignored, ignore only if it doesn't match the query (found when testing #i43714#, 'aa' lead to n/a instead of 'AA')


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [7552789a3a05b266e148631d3af016f519d2e725]

INTEGRATION: CWS dr34 (1.4.158); FILE MERGED 2005/02/28 17:15:18 er 1.4.158.1: #i42904# InitLimits: break if condition isn't met


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [41eb8554a87fa43a4a877774f8ae818953f1e49b]

INTEGRATION: CWS dr34 (1.15.2); FILE MERGED 2005/03/10 11:41:34 nn 1.15.2.1: #i44697# detect equal ScPatternAttr pointers across MergePatternArea calls


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [9d6e7c6a855cc9845ee184f1b5fbefb2e93ab3ba]

INTEGRATION: CWS dr34 (1.28.2); FILE MERGED 2005/03/14 15:53:08 er 1.28.2.1: #i44115# InterpretTail: no convergence in initial round of iterations


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [592106f1da926550c0310cfc135735bb364e055a]

INTEGRATION: CWS dr34 (1.19.2); FILE MERGED 2005/03/10 11:41:33 nn 1.19.2.1: #i44697# detect equal ScPatternAttr pointers across MergePatternArea calls


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [5e8116ec9e25c0a1a1eb9eb6c608e221aa756bb5]

INTEGRATION: CWS dr34 (1.8.384); FILE MERGED 2005/03/11 17:40:17 dr 1.8.384.2: RESYNC: (1.8-1.9); FILE MERGED 2005/03/08 14:51:07 er 1.8.384.1: implement dtor and free memory


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [76cff2b2a005ffdf7dde5b7b06874bb4b05cc227]

INTEGRATION: CWS dr34 (1.26.192); FILE MERGED 2005/03/10 11:41:13 nn 1.26.192.1: #i44697# detect equal ScPatternAttr pointers across MergePatternArea calls


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [87be00ce4222b7ddb456121cc46275f8ba9104dc]

INTEGRATION: CWS dr34 (1.14.2); FILE MERGED 2005/03/10 11:41:13 nn 1.14.2.1: #i44697# detect equal ScPatternAttr pointers across MergePatternArea calls


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [956780e6df8d6de884f010c839aa1e127eb99409]

INTEGRATION: CWS dr34 (1.6.2); FILE MERGED 2005/03/10 11:41:13 nn 1.6.2.1: #i44697# detect equal ScPatternAttr pointers across MergePatternArea calls


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [99fc5a413d8898565913553b25f64071cdb383bd]

INTEGRATION: CWS dr34 (1.5.2); FILE MERGED 2005/03/14 14:56:08 dr 1.5.2.1: #i44077# set size for new Excel OLE objects


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [c05137ae82dd9ce07d7a052cc36859d9ffeba26a]

INTEGRATION: CWS groupingapi (1.1.2); FILE ADDED 2004/09/09 09:33:07 sab 1.1.2.1: #i33817#; add grouping API


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [04629ffe44978fcc90da2b63e6d309db753b463b]

INTEGRATION: CWS groupingapi (1.1.2); FILE ADDED 2004/09/09 09:32:56 sab 1.1.2.1: #i33817#; add grouping API


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d8b497716f64ea7d4270f5c8aa4f91ec068c73c3]

INTEGRATION: CWS groupingapi (1.1.2); FILE ADDED 2004/09/09 09:32:44 sab 1.1.2.1: #i33817#; add grouping API


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [3d21e8b14dcf16e85d8834c5a36a8e93e2edb11d]

INTEGRATION: CWS groupingapi (1.8.6); FILE MERGED 2005/03/11 18:47:23 sab 1.8.6.1: #i33817#; add Groupingapi


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [95995f1bfbae7985d4be49263b0843206499146e]

INTEGRATION: CWS groupingapi (1.12.24); FILE MERGED 2005/03/24 15:03:26 sab 1.12.24.7: #i33817#; add group to groups 2005/03/24 11:03:43 sab 1.12.24.6: #i39212#; default values for ShowDetails and IsVisible 2005/03/23 17:44:02 sab 1.12.24.5: #i39212#,#i33817#; default values for ShowDetails and IsVisible; use MemberList of Source 2005/03/11 18:47:22 sab 1.12.24.4: #i33817#; add Groupingapi 2004/12/21 12:30:24 sab 1.12.24.3: #i33817#, #i39212# 2004/09/08 17:01:22 sab 1.12.24.2: #i31477#; add additional properties 2004/09/03 18:04:13 sab 1.12.24.1: #i33817#; add grouping API


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [1318c5cd0e53e11ecf8ae49f01336286b6ee8a9f]

INTEGRATION: CWS groupingapi (1.3.14); FILE MERGED 2005/03/11 18:47:21 sab 1.3.14.1: #i33817#; add Groupingapi


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d5dfaa41d91d3a2a33861aa13a6073b7610ff40a]

INTEGRATION: CWS groupingapi (1.76.6); FILE MERGED 2005/03/11 20:49:45 sab 1.76.6.3: RESYNC: (1.84-1.85); FILE MERGED 2005/01/06 13:57:05 sab 1.76.6.2: RESYNC: (1.76-1.84); FILE MERGED 2004/09/03 18:03:59 sab 1.76.6.1: #i33817#; specification of data pilot grouping changed


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [601ce0941f852276bb62f3d68205a95c2382ba6b]

INTEGRATION: CWS groupingapi (1.100.6); FILE MERGED 2005/03/11 20:49:38 sab 1.100.6.4: RESYNC: (1.111-1.112); FILE MERGED 2005/01/06 13:56:55 sab 1.100.6.3: RESYNC: (1.101-1.111); FILE MERGED 2004/09/06 11:15:36 sab 1.100.6.2: RESYNC: (1.100-1.101); FILE MERGED 2004/09/03 18:03:59 sab 1.100.6.1: #i33817#; specification of data pilot grouping changed


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [eb27c5246508665f19baff30b1629eed40b24c2a]

INTEGRATION: CWS groupingapi (1.13.6); FILE MERGED 2004/09/03 18:03:58 sab 1.13.6.1: #i33817#; specification of data pilot grouping changed


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [b2bd2fdeac57202e44b3a99941a1d8673a1b082c]

INTEGRATION: CWS groupingapi (1.16.6); FILE MERGED 2005/03/11 18:47:20 sab 1.16.6.3: #i33817#; add Groupingapi 2005/01/06 13:55:59 sab 1.16.6.2: RESYNC: (1.16-1.18); FILE MERGED 2004/09/03 18:03:58 sab 1.16.6.1: #i33817#; specification of data pilot grouping changed


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [232fd10a48240bd8abfeb1b2cef9ba92e4c29068]

INTEGRATION: CWS groupingapi (1.6.6); FILE MERGED 2004/09/03 18:03:58 sab 1.6.6.1: #i33817#; specification of data pilot grouping changed


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [b61d92a65dd0d28057a9d289265e7ed0f6edbde5]

INTEGRATION: CWS groupingapi (1.15.6); FILE MERGED 2005/03/11 20:48:32 sab 1.15.6.4: RESYNC: (1.17-1.18); FILE MERGED 2005/03/11 18:47:20 sab 1.15.6.3: #i33817#; add Groupingapi 2005/01/06 13:53:08 sab 1.15.6.2: RESYNC: (1.15-1.17); FILE MERGED 2004/09/03 18:03:58 sab 1.15.6.1: #i33817#; specification of data pilot grouping changed


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [b4ecd0e1c5ff66958eecc52569d961b8771387c9]

INTEGRATION: CWS groupingapi (1.5.146); FILE MERGED 2005/03/11 20:37:30 sab 1.5.146.2: RESYNC: (1.5-1.6); FILE MERGED 2005/03/11 18:47:19 sab 1.5.146.1: #i33817#; add Groupingapi


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d0cfe612a2ca16549d6fbf473981d77a3fe3d38a]

INTEGRATION: CWS groupingapi (1.8.24); FILE MERGED 2005/03/11 20:34:14 sab 1.8.24.2: RESYNC: (1.8-1.9); FILE MERGED 2005/03/11 18:47:19 sab 1.8.24.1: #i33817#; add Groupingapi


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [146a00112e5261de951d0888d8349f7419f00850]

INTEGRATION: CWS groupingapi (1.2.6); FILE MERGED 2005/03/11 20:26:28 sab 1.2.6.2: RESYNC: (1.2-1.3); FILE MERGED 2005/03/11 18:47:18 sab 1.2.6.1: #i33817#; add Groupingapi


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [a1b10c838e34dfc0c9697b47e4a709aec5b74e4f]

INTEGRATION: CWS groupingapi (1.3.170); FILE MERGED 2004/09/09 14:26:27 sw 1.3.170.1: adjusted parameters


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [20682db5722312c89baccc575adb6682df432df5]

INTEGRATION: CWS groupingapi (1.65.6); FILE MERGED 2005/01/06 12:06:51 sab 1.65.6.4: RESYNC: (1.65-1.67); FILE MERGED 2004/12/21 12:29:30 sab 1.65.6.3: #i33817#, #i39212# 2004/09/08 17:01:05 sab 1.65.6.2: #i31477#; add additional properties 2004/09/03 18:03:27 sab 1.65.6.1: #i33817#; add grouping API


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [9cdc578c5acd1ebb59b51f2aa11ca3ee4ee51243]

INTEGRATION: CWS groupingapi (1.2.6); FILE MERGED 2005/03/11 18:46:59 sab 1.2.6.1: #i33817#; add Groupingapi


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [7adaaa3d810f3d6e183fc0ffc301ff17e73911e3]

INTEGRATION: CWS groupingapi (1.6.112); FILE MERGED 2005/03/11 18:46:59 sab 1.6.112.4: #i33817#; add Groupingapi 2004/12/21 12:29:30 sab 1.6.112.3: #i33817#, #i39212# 2004/09/08 17:01:05 sab 1.6.112.2: #i31477#; add additional properties 2004/09/03 18:03:27 sab 1.6.112.1: #i33817#; add grouping API


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [5f5ae0074fe3f09a574e7b7c15aea001e6640799]

INTEGRATION: CWS calc31 (1.4.238); FILE MERGED 2005/03/21 17:47:02 dr 1.4.238.1: #i44772# headers and footers disappear after Excel import


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [c6d43e1504ec9eef4a3d600bb5e634ed36b3d0c3]

INTEGRATION: CWS calc31 (1.2.34); FILE MERGED 2005/03/22 10:49:32 dr 1.2.34.1: #110921# import/export of formatted hyperlinks


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [4258f245e14b81e0469fdf5569e841d555e73e63]

INTEGRATION: CWS calc31 (1.16.34); FILE MERGED 2005/03/22 10:49:32 dr 1.16.34.1: #110921# import/export of formatted hyperlinks


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [a18e2a5757b5933627909c7b7fedb6b222ff341e]

INTEGRATION: CWS calc31 (1.9.82); FILE MERGED 2005/03/22 10:49:31 dr 1.9.82.1: #110921# import/export of formatted hyperlinks


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [fadd1fc20c3a8b995c293026a59c64befe5ab2fa]

INTEGRATION: CWS calc31 (1.21.32); FILE MERGED 2005/03/22 10:49:14 dr 1.21.32.1: #110921# import/export of formatted hyperlinks


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [d3fe055a330f0878a4482ef11202651d2d3ed6dc]

INTEGRATION: CWS calc31 (1.16.32); FILE MERGED 2005/03/22 10:49:14 dr 1.16.32.1: #110921# import/export of formatted hyperlinks


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [85d296bdc9ed5b8cf6d2f69271ccb65c77975013]

INTEGRATION: CWS calc31 (1.6.34); FILE MERGED 2005/03/18 13:32:35 dr 1.6.34.1: #120156# repeated merged blank cells


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [a586daaa661b8966e8460693f2dc2cae901cf2ed]

INTEGRATION: CWS calc31 (1.21.34); FILE MERGED 2005/03/22 10:49:14 dr 1.21.34.1: #110921# import/export of formatted hyperlinks


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [19b1a8ecb29e91c154b6f16939329caf78f76d74]

INTEGRATION: CWS calc31 (1.17.220); FILE MERGED 2005/03/22 14:11:47 dr 1.17.220.1: record 0x0033 PRINTSIZE


2005-03-29  Rüdiger Timm  <rt@openoffice.org>  [4c3256672449ef05a986a5ab086ed538b17d1e4f]

INTEGRATION: CWS calc31 (1.11.32); FILE MERGED 2005/03/18 13:58:06 nn 1.11.32.1: #i45388# SetOptimalHeight: correct handling of CR_MANUALSIZE flag


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [fba0ec0ab6fd6b8c3e0750f564e0fefe9fe56e9a]

INTEGRATION: CWS fwkfinal2 (1.21.216); FILE MERGED 2005/03/16 07:48:57 mav 1.21.216.1: #i43660# changing of the chart should not switch document into modified state


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [1bfe25dd98f912fdb8034395cc97dbbb6e5e1ce3]

INTEGRATION: CWS calcuno01 (1.171.10); FILE MERGED 2005/03/16 19:00:42 nn 1.171.10.12: #120346# after erase, the vector's end iterator is invalid 2005/03/04 16:23:53 sab 1.171.10.11: RESYNC: (1.188-1.189); FILE MERGED 2005/02/22 13:14:43 sab 1.171.10.10: RESYNC: (1.187-1.188); FILE MERGED 2005/01/27 17:16:59 sab 1.171.10.9: RESYNC: (1.185-1.187); FILE MERGED 2005/01/06 12:34:59 sab 1.171.10.8: RESYNC: (1.180-1.185); FILE MERGED 2004/10/15 11:11:46 sab 1.171.10.7: solve merge conflicts 2004/10/13 12:44:41 sab 1.171.10.6: RESYNC: (1.175-1.180); FILE MERGED 2004/06/07 14:23:50 sab 1.171.10.5: RESYNC: (1.174-1.175); FILE MERGED 2004/03/26 09:32:13 dr 1.171.10.4: #100000# for scope 2004/03/24 10:52:31 dr 1.171.10.3: RESYNC: (1.172-1.173); FILE MERGED 2004/02/13 21:37:18 sab 1.171.10.2: RESYNC: (1.171-1.172); FILE MERGED 2004/01/05 11:54:09 sab 1.171.10.1: #i22706#; improve API using; use new cellflag to get edit cells faster


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [67c799b9b898995e86b2a919b9c0e5ac76dbf024]

INTEGRATION: CWS calcuno01 (1.37.76); FILE MERGED 2005/01/06 12:33:50 sab 1.37.76.4: RESYNC: (1.39-1.40); FILE MERGED 2004/10/15 11:11:46 sab 1.37.76.3: solve merge conflicts 2004/10/13 12:41:58 sab 1.37.76.2: RESYNC: (1.37-1.39); FILE MERGED 2004/01/05 11:55:48 sab 1.37.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [4a6c10391717ac1bee4e8fcd9983ead6eea9c6bc]

INTEGRATION: CWS calcuno01 (1.1.2); FILE ADDED 2004/01/15 10:31:59 sab 1.1.2.1: #i23114#; module description of UniqueCellFormats


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [8be365bdf53d60585ade3927c006c7359bb85509]

INTEGRATION: CWS calcuno01 (1.1.2); FILE ADDED 2004/01/15 10:29:56 sab 1.1.2.1: module description of the UniqueCellFormats


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [33d74ecf49236be76622899f632ddaf1bb3ca99e]

INTEGRATION: CWS calcuno01 (1.16.304); FILE MERGED 2004/10/13 13:50:50 sab 1.16.304.3: RESYNC: (1.17-1.20); FILE MERGED 2004/03/24 10:39:09 dr 1.16.304.2: RESYNC: (1.16-1.17); FILE MERGED 2004/01/05 11:53:13 sab 1.16.304.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [7b0eb1b331db5afa6ae2da6bf864be84fc669335]

INTEGRATION: CWS calcuno01 (1.18.304); FILE MERGED 2004/01/05 11:53:10 sab 1.18.304.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [f8703f1bda01b8237e41c9bbf35bfd4e01a5c1e7]

INTEGRATION: CWS calcuno01 (1.3.308); FILE MERGED 2004/06/07 14:41:29 sab 1.3.308.2: RESYNC: (1.3-1.4); FILE MERGED 2004/01/05 11:53:07 sab 1.3.308.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [2ed4ceaa44576374a02e880f59f2c89cce85dba7]

INTEGRATION: CWS calcuno01 (1.26.306); FILE MERGED 2004/10/13 13:50:41 sab 1.26.306.3: RESYNC: (1.29-1.31); FILE MERGED 2004/03/24 10:38:43 dr 1.26.306.2: RESYNC: (1.26-1.29); FILE MERGED 2004/01/05 11:53:05 sab 1.26.306.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [c1d130f47780a43c627a0d48b63521ab383c89ab]

INTEGRATION: CWS calcuno01 (1.2.204); FILE MERGED 2004/01/05 11:53:01 sab 1.2.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [86c6fef5455c07a67875056333b49c636d7a7767]

INTEGRATION: CWS calcuno01 (1.10.20); FILE MERGED 2004/10/13 13:50:32 sab 1.10.20.4: RESYNC: (1.11-1.12); FILE MERGED 2004/06/04 11:38:50 sab 1.10.20.3: #i22706#; support states of new shape properties anchor, horipos and vertpos 2004/02/13 21:23:22 sab 1.10.20.2: RESYNC: (1.10-1.11); FILE MERGED 2004/01/05 11:52:59 sab 1.10.20.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [6e01ebcdca1c26c446b323eb36ecb8895417a812]

INTEGRATION: CWS calcuno01 (1.9.40); FILE MERGED 2004/03/24 10:38:30 dr 1.9.40.3: RESYNC: (1.10-1.11); FILE MERGED 2004/02/13 21:23:14 sab 1.9.40.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/05 11:52:56 sab 1.9.40.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [22e4de0153a83215fb3928945e74c6a3e5726ddd]

INTEGRATION: CWS calcuno01 (1.2.60); FILE MERGED 2005/02/22 13:18:27 sab 1.2.60.6: RESYNC: (1.11-1.12); FILE MERGED 2005/01/27 17:24:50 sab 1.2.60.5: RESYNC: (1.8-1.11); FILE MERGED 2005/01/06 12:48:38 sab 1.2.60.4: RESYNC: (1.5-1.8); FILE MERGED 2004/10/13 13:50:23 sab 1.2.60.3: RESYNC: (1.3-1.5); FILE MERGED 2004/02/13 21:23:04 sab 1.2.60.2: RESYNC: (1.2-1.3); FILE MERGED 2004/01/05 11:52:53 sab 1.2.60.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [d666607360c9de5840f74c3df28138e30f5de983]

INTEGRATION: CWS calcuno01 (1.3.304); FILE MERGED 2004/01/05 11:52:51 sab 1.3.304.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [8c3b47800e1df762f8cdafa4adc5f3cd1f21ac86]

INTEGRATION: CWS calcuno01 (1.3.336); FILE MERGED 2004/01/05 11:52:49 sab 1.3.336.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [d5bf156569883a195760362883bb41a2ef048c8a]

INTEGRATION: CWS calcuno01 (1.2.340); FILE MERGED 2005/01/27 17:24:40 sab 1.2.340.3: RESYNC: (1.4-1.5); FILE MERGED 2004/10/13 13:50:16 sab 1.2.340.2: RESYNC: (1.2-1.4); FILE MERGED 2004/01/05 11:52:47 sab 1.2.340.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [0e82871e3ddf26fb8fe8e2efa3f3c021ad47b62b]

INTEGRATION: CWS calcuno01 (1.8.180); FILE MERGED 2004/10/13 13:50:08 sab 1.8.180.3: RESYNC: (1.9-1.10); FILE MERGED 2004/06/07 14:41:21 sab 1.8.180.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/05 11:52:46 sab 1.8.180.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [02046d8582dd858d39ad895d36b7bc08413e7ae5]

INTEGRATION: CWS calcuno01 (1.8.304); FILE MERGED 2004/01/05 11:52:46 sab 1.8.304.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [29fc7ebcfd9ea44f3fd26376fad38c22aaa824a4]

INTEGRATION: CWS calcuno01 (1.2.44); FILE MERGED 2004/01/05 11:52:45 sab 1.2.44.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [22e1fa7f017974be499285f6931897c541b61542]

INTEGRATION: CWS calcuno01 (1.8.306); FILE MERGED 2004/10/13 13:49:46 sab 1.8.306.3: RESYNC: (1.9-1.11); FILE MERGED 2004/03/24 10:38:21 dr 1.8.306.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/05 11:52:43 sab 1.8.306.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [f0d4fc56a192d93ea51c434ac9a06d80dfe0eb7e]

INTEGRATION: CWS calcuno01 (1.9.58); FILE MERGED 2004/10/13 13:49:36 sab 1.9.58.3: RESYNC: (1.10-1.11); FILE MERGED 2004/03/24 10:38:12 dr 1.9.58.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/05 11:52:41 sab 1.9.58.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [e8a3ce773bbc9d02fd355acbea25810874ba8f38]

INTEGRATION: CWS calcuno01 (1.8.76); FILE MERGED 2005/01/06 12:48:28 sab 1.8.76.3: RESYNC: (1.9-1.10); FILE MERGED 2004/10/13 13:49:28 sab 1.8.76.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/05 11:52:40 sab 1.8.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [9abc801b99867c7a8ce386af9881d1590832a101]

INTEGRATION: CWS calcuno01 (1.5.60); FILE MERGED 2004/10/13 13:49:19 sab 1.5.60.3: RESYNC: (1.6-1.7); FILE MERGED 2004/06/07 14:41:13 sab 1.5.60.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/05 11:52:39 sab 1.5.60.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [4707a21990fc50ba48fcde8cfae165a5dc82dbf3]

INTEGRATION: CWS calcuno01 (1.11.204); FILE MERGED 2004/01/05 11:52:36 sab 1.11.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [235a9286241839350c96ac1a45727cb97d381a15]

INTEGRATION: CWS calcuno01 (1.18.312); FILE MERGED 2005/01/27 17:24:31 sab 1.18.312.3: RESYNC: (1.19-1.20); FILE MERGED 2004/10/13 13:49:11 sab 1.18.312.2: RESYNC: (1.18-1.19); FILE MERGED 2004/01/05 11:52:35 sab 1.18.312.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [bc7224c991f9ffce2c88a5cf3e36810296d513ae]

INTEGRATION: CWS calcuno01 (1.37.38); FILE MERGED 2005/03/04 14:00:52 sab 1.37.38.8: #i22706#; don't use USHORT 2005/01/06 12:48:15 sab 1.37.38.7: RESYNC: (1.47-1.49); FILE MERGED 2004/10/13 13:49:02 sab 1.37.38.6: RESYNC: (1.42-1.47); FILE MERGED 2004/04/29 06:44:42 sab 1.37.38.5: RESYNC: (1.41-1.42); FILE MERGED 2004/03/24 10:38:03 dr 1.37.38.4: RESYNC: (1.40-1.41); FILE MERGED 2004/02/13 21:22:45 sab 1.37.38.3: RESYNC: (1.38-1.40); FILE MERGED 2004/01/05 18:33:52 sab 1.37.38.2: RESYNC: (1.37-1.38); FILE MERGED 2004/01/05 11:52:32 sab 1.37.38.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [94362e78c329cd7072eaac7ae131c461f0be8a7f]

INTEGRATION: CWS calcuno01 (1.3.308); FILE MERGED 2004/10/13 13:48:54 sab 1.3.308.2: RESYNC: (1.3-1.4); FILE MERGED 2004/01/05 11:52:29 sab 1.3.308.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [6b6e10f2815cc71bd8c5e64acec38f0ed213d385]

INTEGRATION: CWS calcuno01 (1.2.60); FILE MERGED 2004/10/13 13:48:46 sab 1.2.60.2: RESYNC: (1.2-1.3); FILE MERGED 2004/01/05 11:52:28 sab 1.2.60.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [bdbffa81b1064f568eee8d3cfc214489e0437cd4]

INTEGRATION: CWS calcuno01 (1.5.204); FILE MERGED 2004/01/05 11:52:28 sab 1.5.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [cd3759140bd4901ce84d71c46fecb9a97e4a3a09]

INTEGRATION: CWS calcuno01 (1.18.204); FILE MERGED 2004/10/13 13:48:37 sab 1.18.204.5: RESYNC: (1.21-1.23); FILE MERGED 2004/04/29 06:44:34 sab 1.18.204.4: RESYNC: (1.20-1.21); FILE MERGED 2004/03/24 10:37:54 dr 1.18.204.3: RESYNC: (1.19-1.20); FILE MERGED 2004/01/05 18:33:27 sab 1.18.204.2: RESYNC: (1.18-1.19); FILE MERGED 2004/01/05 11:52:24 sab 1.18.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [ce2f803b1a2c83a69717dc4781badda1d2f092ae]

INTEGRATION: CWS calcuno01 (1.8.306); FILE MERGED 2004/10/15 11:11:49 sab 1.8.306.4: solve merge conflicts 2004/10/13 13:48:28 sab 1.8.306.3: RESYNC: (1.9-1.12); FILE MERGED 2004/04/29 06:44:27 sab 1.8.306.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/05 11:52:24 sab 1.8.306.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [3fb1d4bf07f32dcef80527d5263ee17caeda7b43]

INTEGRATION: CWS calcuno01 (1.5.304); FILE MERGED 2004/10/13 13:48:20 sab 1.5.304.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/05 11:52:23 sab 1.5.304.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [5c2d7d208baaa906b3edd6784d68bb882c102c13]

INTEGRATION: CWS calcuno01 (1.2.346); FILE MERGED 2004/01/05 11:52:20 sab 1.2.346.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [51c9efc98174a25c88e576a51161d947f06848c4]

INTEGRATION: CWS calcuno01 (1.18.70); FILE MERGED 2004/10/13 13:48:12 sab 1.18.70.2: RESYNC: (1.18-1.20); FILE MERGED 2004/01/05 11:52:19 sab 1.18.70.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [ac840dd542b54c13029c493c54e0cdeb37af180c]

INTEGRATION: CWS calcuno01 (1.11.60); FILE MERGED 2005/01/06 12:48:06 sab 1.11.60.3: RESYNC: (1.13-1.14); FILE MERGED 2004/10/13 13:48:03 sab 1.11.60.2: RESYNC: (1.11-1.13); FILE MERGED 2004/01/05 11:52:17 sab 1.11.60.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [7587a301355623c3790c07be3a1fc18bb8ebff89]

INTEGRATION: CWS calcuno01 (1.4.22); FILE MERGED 2004/04/29 06:44:04 sab 1.4.22.2: RESYNC: (1.4-1.5); FILE MERGED 2004/01/05 11:52:15 sab 1.4.22.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [41bc8b99978218b1a27690dc0930b68399840030]

INTEGRATION: CWS calcuno01 (1.79.8); FILE MERGED 2005/01/06 12:47:58 sab 1.79.8.9: RESYNC: (1.87-1.89); FILE MERGED 2004/10/13 13:47:43 sab 1.79.8.8: RESYNC: (1.83-1.87); FILE MERGED 2004/06/04 11:38:09 sab 1.79.8.7: #i22706#; handle read only properties 2004/04/28 14:55:36 sab 1.79.8.6: #i22706#; return the names 2004/03/24 10:37:43 dr 1.79.8.5: RESYNC: (1.80-1.83); FILE MERGED 2004/02/13 21:22:23 sab 1.79.8.4: RESYNC: (1.79-1.80); FILE MERGED 2004/02/12 17:19:29 sab 1.79.8.3: #i22706#; add getDirectPropertyValuesTolerant 2004/01/14 17:20:01 sab 1.79.8.2: #i23114#; increment count after getting object 2004/01/05 11:50:49 sab 1.79.8.1: #i22706#; improve API using; add new cellflag


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [052dc002e613db1391e1fd4fccbb4ad24cb2ebd2]

INTEGRATION: CWS calcuno01 (1.4.22); FILE MERGED 2004/04/29 06:43:46 sab 1.4.22.2: RESYNC: (1.4-1.5); FILE MERGED 2004/01/05 11:52:11 sab 1.4.22.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [fc0f92311564e8e938b595426ba0ebcba1d8c616]

INTEGRATION: CWS calcuno01 (1.15.60); FILE MERGED 2004/10/15 11:11:48 sab 1.15.60.3: solve merge conflicts 2004/10/13 13:47:33 sab 1.15.60.2: RESYNC: (1.15-1.17); FILE MERGED 2004/01/05 11:52:07 sab 1.15.60.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [ac760c8ec0d7e21d5a9e57f0a16a32d49c7febdd]

INTEGRATION: CWS calcuno01 (1.8.60); FILE MERGED 2004/10/13 13:47:25 sab 1.8.60.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/05 11:52:04 sab 1.8.60.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [7183617fd056c85be4a040715c522458ba8e61b8]

INTEGRATION: CWS calcuno01 (1.2.44); FILE MERGED 2004/10/13 13:47:16 sab 1.2.44.2: RESYNC: (1.2-1.3); FILE MERGED 2004/01/05 11:52:00 sab 1.2.44.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [08e252eb5a8b9df8e04b5700ced32f1f353297c7]

INTEGRATION: CWS calcuno01 (1.63.58); FILE MERGED 2005/03/04 16:25:16 sab 1.63.58.8: RESYNC: (1.77-1.78); FILE MERGED 2005/01/27 17:18:27 sab 1.63.58.7: RESYNC: (1.76-1.77); FILE MERGED 2005/01/06 12:39:00 sab 1.63.58.6: RESYNC: (1.74-1.76); FILE MERGED 2004/10/13 13:00:11 sab 1.63.58.5: RESYNC: (1.67-1.74); FILE MERGED 2004/06/07 14:29:06 sab 1.63.58.4: RESYNC: (1.66-1.67); FILE MERGED 2004/03/24 10:48:11 dr 1.63.58.3: RESYNC: (1.65-1.66); FILE MERGED 2004/02/13 21:33:40 sab 1.63.58.2: RESYNC: (1.63-1.65); FILE MERGED 2004/01/05 12:16:47 sab 1.63.58.1: #i22706#; DisableIdl on loading and saving xml


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [f3d0b6aaad3977dd0c2e43c4f7fb4f16b65babc4]

INTEGRATION: CWS calcuno01 (1.49.204); FILE MERGED 2005/01/27 17:17:19 sab 1.49.204.5: RESYNC: (1.53-1.54); FILE MERGED 2005/01/06 12:36:26 sab 1.49.204.4: RESYNC: (1.52-1.53); FILE MERGED 2004/10/15 11:11:48 sab 1.49.204.3: solve merge conflicts 2004/10/13 12:46:43 sab 1.49.204.2: RESYNC: (1.49-1.52); FILE MERGED 2004/01/05 11:57:32 sab 1.49.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [e3414b9f22a28745ea1b3e7d56a60488945d16da]

INTEGRATION: CWS calcuno01 (1.30.10); FILE MERGED 2005/03/04 16:24:51 sab 1.30.10.6: RESYNC: (1.32-1.33); FILE MERGED 2005/01/06 12:36:17 sab 1.30.10.5: RESYNC: (1.31-1.32); FILE MERGED 2004/10/13 12:46:34 sab 1.30.10.4: RESYNC: (1.30-1.31); FILE MERGED 2004/03/26 09:32:13 dr 1.30.10.3: #100000# for scope 2004/01/07 14:05:35 sab 1.30.10.2: #i22706#; fix linux compiler problems 2004/01/05 11:57:30 sab 1.30.10.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [fe647e92ecbd3da3f221596501405b24729291f1]

INTEGRATION: CWS calcuno01 (1.23.10); FILE MERGED 2005/01/06 12:36:08 sab 1.23.10.4: RESYNC: (1.25-1.26); FILE MERGED 2004/10/13 12:46:24 sab 1.23.10.3: RESYNC: (1.24-1.25); FILE MERGED 2004/01/05 18:56:03 sab 1.23.10.2: RESYNC: (1.23-1.24); FILE MERGED 2004/01/05 11:57:28 sab 1.23.10.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [2bdf5bcc693f7e5b0f16dde2132b976751f1b31f]

INTEGRATION: CWS calcuno01 (1.35.10); FILE MERGED 2005/03/10 09:50:11 sab 1.35.10.7: #i22706#; solve merge problems 2005/03/04 16:24:39 sab 1.35.10.6: RESYNC: (1.39-1.40); FILE MERGED 2005/01/06 12:35:59 sab 1.35.10.5: RESYNC: (1.37-1.39); FILE MERGED 2004/10/13 12:46:15 sab 1.35.10.4: RESYNC: (1.36-1.37); FILE MERGED 2004/02/13 21:37:43 sab 1.35.10.3: RESYNC: (1.35-1.36); FILE MERGED 2004/01/07 14:05:33 sab 1.35.10.2: #i22706#; fix linux compiler problems 2004/01/05 11:57:25 sab 1.35.10.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [c9b441810b8b3abf9339bff387afd3ff071efbb2]

INTEGRATION: CWS calcuno01 (1.21.326); FILE MERGED 2004/01/05 11:57:23 sab 1.21.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [25578fc765c26696d7373a97153d61c7a04c10d6]

INTEGRATION: CWS calcuno01 (1.44.10); FILE MERGED 2005/03/14 15:12:49 nn 1.44.10.6: #i44996# merge error 2005/01/06 12:35:50 sab 1.44.10.5: RESYNC: (1.50-1.53); FILE MERGED 2004/10/15 11:11:47 sab 1.44.10.4: solve merge conflicts 2004/10/13 12:46:07 sab 1.44.10.3: RESYNC: (1.45-1.50); FILE MERGED 2004/03/26 09:32:13 dr 1.44.10.2: #100000# for scope 2004/01/05 11:57:21 sab 1.44.10.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [0ccfaaba8be0c37c46db50817e249ce7a2860990]

INTEGRATION: CWS calcuno01 (1.47.82); FILE MERGED 2005/01/27 17:17:09 sab 1.47.82.6: RESYNC: (1.55-1.56); FILE MERGED 2005/01/06 12:35:42 sab 1.47.82.5: RESYNC: (1.53-1.55); FILE MERGED 2004/10/15 11:11:47 sab 1.47.82.4: solve merge conflicts 2004/10/13 12:45:46 sab 1.47.82.3: RESYNC: (1.49-1.53); FILE MERGED 2004/02/13 21:37:35 sab 1.47.82.2: RESYNC: (1.47-1.48); FILE MERGED 2004/01/05 11:57:17 sab 1.47.82.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [b44b4bbea91358eaeb8f4094ddbd0c0a9ddbdc68]

INTEGRATION: CWS calcuno01 (1.4.338); FILE MERGED 2004/01/05 11:57:13 sab 1.4.338.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [353eda58154c9127280a275aa7b05d0ec97285dd]

INTEGRATION: CWS calcuno01 (1.12.332); FILE MERGED 2004/01/05 11:57:11 sab 1.12.332.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [69c056e882ad4d7ac6aa330f2ccd9d5c304d77b9]

INTEGRATION: CWS calcuno01 (1.7.326); FILE MERGED 2004/10/13 12:45:36 sab 1.7.326.3: RESYNC: (1.8-1.9); FILE MERGED 2004/03/24 10:52:58 dr 1.7.326.2: RESYNC: (1.7-1.8); FILE MERGED 2004/01/05 11:57:06 sab 1.7.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [028637aa3fcb6c4d1371cbc21ce7c96d8e5f83c9]

INTEGRATION: CWS calcuno01 (1.21.310); FILE MERGED 2004/10/13 12:45:28 sab 1.21.310.2: RESYNC: (1.21-1.22); FILE MERGED 2004/01/05 11:57:04 sab 1.21.310.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [904e77864305df3133eeae88ec5fb3e2374877f9]

INTEGRATION: CWS calcuno01 (1.12.76); FILE MERGED 2004/01/05 11:57:04 sab 1.12.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [16b0ac6d10095b8f11f7f8dc01d3daa3a873052b]

INTEGRATION: CWS calcuno01 (1.3.340); FILE MERGED 2004/01/05 11:57:03 sab 1.3.340.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [435f0a8841cedf731eefd4a9b977ff0636350f5a]

INTEGRATION: CWS calcuno01 (1.7.326); FILE MERGED 2005/01/06 12:35:33 sab 1.7.326.2: RESYNC: (1.7-1.8); FILE MERGED 2004/01/05 11:57:01 sab 1.7.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [12212ccb97a8fb1bcdb5bcb255fe88c6baebfd14]

INTEGRATION: CWS calcuno01 (1.67.10); FILE MERGED 2005/03/04 16:24:28 sab 1.67.10.8: RESYNC: (1.84-1.85); FILE MERGED 2005/01/06 12:35:25 sab 1.67.10.7: RESYNC: (1.77-1.84); FILE MERGED 2004/10/13 12:45:19 sab 1.67.10.6: RESYNC: (1.71-1.77); FILE MERGED 2004/06/07 14:24:24 sab 1.67.10.5: RESYNC: (1.70-1.71); FILE MERGED 2004/04/29 06:40:13 sab 1.67.10.4: RESYNC: (1.69-1.70); FILE MERGED 2004/03/24 10:52:50 dr 1.67.10.3: RESYNC: (1.68-1.69); FILE MERGED 2004/02/13 21:37:26 sab 1.67.10.2: RESYNC: (1.67-1.68); FILE MERGED 2004/01/05 11:57:00 sab 1.67.10.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [4cb6e5491ca21fb6fcc8cb2d12893b2474002ec9]

INTEGRATION: CWS calcuno01 (1.90.10); FILE MERGED 2005/03/04 16:24:16 sab 1.90.10.7: RESYNC: (1.111-1.112); FILE MERGED 2005/01/06 12:35:16 sab 1.90.10.6: RESYNC: (1.103-1.111); FILE MERGED 2004/10/13 12:45:09 sab 1.90.10.5: RESYNC: (1.93-1.103); FILE MERGED 2004/06/07 14:24:15 sab 1.90.10.4: RESYNC: (1.92-1.93); FILE MERGED 2004/04/29 06:40:05 sab 1.90.10.3: RESYNC: (1.91-1.92); FILE MERGED 2004/03/24 10:52:41 dr 1.90.10.2: RESYNC: (1.90-1.91); FILE MERGED 2004/01/05 11:56:59 sab 1.90.10.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [90235347c285c75ee86eb0675a0ec63b4d3b133c]

INTEGRATION: CWS calcuno01 (1.6.312); FILE MERGED 2004/01/05 11:56:58 sab 1.6.312.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [0b3081cffcd2f4008e25a11db2c8541916d5c192]

INTEGRATION: CWS calcuno01 (1.4.316); FILE MERGED 2004/01/05 11:56:57 sab 1.4.316.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [df9083d48aae7d1038ce60e0bf17ea796203293d]

INTEGRATION: CWS calcuno01 (1.10.306); FILE MERGED 2004/10/13 12:44:59 sab 1.10.306.2: RESYNC: (1.10-1.11); FILE MERGED 2004/01/05 11:56:57 sab 1.10.306.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [e50ab9b2dce156968ea25172c42bb8f849233994]

INTEGRATION: CWS calcuno01 (1.73.204); FILE MERGED 2005/03/04 16:24:05 sab 1.73.204.5: RESYNC: (1.77-1.78); FILE MERGED 2005/01/06 12:35:07 sab 1.73.204.4: RESYNC: (1.76-1.77); FILE MERGED 2004/10/13 12:44:50 sab 1.73.204.3: RESYNC: (1.74-1.76); FILE MERGED 2004/06/07 14:23:58 sab 1.73.204.2: RESYNC: (1.73-1.74); FILE MERGED 2004/01/05 11:56:56 sab 1.73.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [da02510bff4b16568f15bc1e1d9f9accc945fb2d]

INTEGRATION: CWS calcuno01 (1.7.312); FILE MERGED 2005/01/06 12:34:50 sab 1.7.312.3: RESYNC: (1.8-1.9); FILE MERGED 2004/10/13 12:44:32 sab 1.7.312.2: RESYNC: (1.7-1.8); FILE MERGED 2004/01/05 11:56:53 sab 1.7.312.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [9616572c8e018b5bdad65f668d26c66583c3d83d]

INTEGRATION: CWS calcuno01 (1.20.204); FILE MERGED 2005/01/06 12:34:42 sab 1.20.204.4: RESYNC: (1.23-1.24); FILE MERGED 2004/10/13 12:44:24 sab 1.20.204.3: RESYNC: (1.21-1.23); FILE MERGED 2004/03/24 10:52:21 dr 1.20.204.2: RESYNC: (1.20-1.21); FILE MERGED 2004/01/05 11:56:52 sab 1.20.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [e016eb15fa582ed5f01b8b46e67ae17fd1e3f472]

INTEGRATION: CWS calcuno01 (1.9.316); FILE MERGED 2004/10/13 12:44:15 sab 1.9.316.3: RESYNC: (1.10-1.13); FILE MERGED 2004/04/29 06:39:49 sab 1.9.316.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/05 11:56:50 sab 1.9.316.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [66f96ea007b3c156f1302140643efb3a08e374a1]

INTEGRATION: CWS calcuno01 (1.12.326); FILE MERGED 2005/01/06 12:34:33 sab 1.12.326.4: RESYNC: (1.16-1.18); FILE MERGED 2004/10/13 12:44:07 sab 1.12.326.3: RESYNC: (1.13-1.16); FILE MERGED 2004/04/29 06:39:41 sab 1.12.326.2: RESYNC: (1.12-1.13); FILE MERGED 2004/01/05 11:56:48 sab 1.12.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [2fab36178c15a284732187d6a0cae79f7ba5d50f]

INTEGRATION: CWS calcuno01 (1.14.76); FILE MERGED 2005/01/06 12:34:24 sab 1.14.76.3: RESYNC: (1.15-1.17); FILE MERGED 2004/10/13 12:43:58 sab 1.14.76.2: RESYNC: (1.14-1.15); FILE MERGED 2004/01/05 11:56:45 sab 1.14.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [902ea7f2354cabd990099777efd37f0096e5f825]

INTEGRATION: CWS calcuno01 (1.5.332); FILE MERGED 2004/01/05 11:56:45 sab 1.5.332.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [ac7545f2f5593c82af92e76c38bff7b03854a2a5]

INTEGRATION: CWS calcuno01 (1.6.336); FILE MERGED 2004/01/05 11:56:43 sab 1.6.336.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [505c607b9088f6dd9d0be7935507c8b3fc08ae39]

INTEGRATION: CWS calcuno01 (1.15.326); FILE MERGED 2004/10/13 12:43:49 sab 1.15.326.2: RESYNC: (1.15-1.16); FILE MERGED 2004/01/05 11:56:40 sab 1.15.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [e14db0d603779c176888918a55be2aef86a5d4e7]

INTEGRATION: CWS calcuno01 (1.19.306); FILE MERGED 2004/10/15 11:11:46 sab 1.19.306.3: solve merge conflicts 2004/10/13 12:43:41 sab 1.19.306.2: RESYNC: (1.19-1.20); FILE MERGED 2004/01/05 11:56:37 sab 1.19.306.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [fa5900fadd03d9854690a4eef92ae8c2f6f0f343]

INTEGRATION: CWS calcuno01 (1.75.76); FILE MERGED 2005/02/22 13:14:34 sab 1.75.76.6: RESYNC: (1.80-1.81); FILE MERGED 2005/02/04 16:14:32 sab 1.75.76.5: #i22706#; solve merge conflicts 2005/01/27 17:16:49 sab 1.75.76.4: RESYNC: (1.79-1.80); FILE MERGED 2005/01/06 12:34:16 sab 1.75.76.3: RESYNC: (1.78-1.79); FILE MERGED 2004/10/13 12:43:33 sab 1.75.76.2: RESYNC: (1.75-1.78); FILE MERGED 2004/01/05 11:56:34 sab 1.75.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [84259c21342729707cbb01555213adad4f6d3440]

INTEGRATION: CWS calcuno01 (1.20.304); FILE MERGED 2005/01/06 12:34:06 sab 1.20.304.4: RESYNC: (1.22-1.23); FILE MERGED 2004/04/29 06:39:27 sab 1.20.304.3: RESYNC: (1.21-1.22); FILE MERGED 2004/02/13 21:37:09 sab 1.20.304.2: RESYNC: (1.20-1.21); FILE MERGED 2004/01/05 11:56:30 sab 1.20.304.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [400403a6e7c2e5aa34a80477dfd643cf31e5604f]

INTEGRATION: CWS calcuno01 (1.8.322); FILE MERGED 2005/01/06 12:33:58 sab 1.8.322.3: RESYNC: (1.10-1.11); FILE MERGED 2004/10/13 12:43:15 sab 1.8.322.2: RESYNC: (1.8-1.10); FILE MERGED 2004/01/05 11:56:25 sab 1.8.322.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [a9ebe463b8c99271c576728338e482a27b887a13]

INTEGRATION: CWS calcuno01 (1.18.326); FILE MERGED 2004/10/13 12:43:07 sab 1.18.326.3: RESYNC: (1.19-1.21); FILE MERGED 2004/03/24 10:52:11 dr 1.18.326.2: RESYNC: (1.18-1.19); FILE MERGED 2004/01/05 11:56:22 sab 1.18.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [185c9e49b0d23150466c3986acb63d1d102496ef]

INTEGRATION: CWS calcuno01 (1.7.326); FILE MERGED 2004/01/05 11:56:21 sab 1.7.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [393d319ff4486768d739340f7ceaaa8082a790e2]

INTEGRATION: CWS calcuno01 (1.6.324); FILE MERGED 2004/01/05 11:56:17 sab 1.6.324.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [560168ae3d2d8a3d416160c5e82b2cad85c5d8ca]

INTEGRATION: CWS calcuno01 (1.8.326); FILE MERGED 2004/10/13 12:42:59 sab 1.8.326.3: RESYNC: (1.9-1.10); FILE MERGED 2004/03/24 10:52:00 dr 1.8.326.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/05 11:56:15 sab 1.8.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [84bfcf02f0c21122be7379948a61ad70bd389549]

INTEGRATION: CWS calcuno01 (1.3.338); FILE MERGED 2004/01/05 11:56:13 sab 1.3.338.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [ad915dfd87b039436f5c6f8d52dedc000819e68b]

INTEGRATION: CWS calcuno01 (1.21.304); FILE MERGED 2004/10/13 12:42:50 sab 1.21.304.4: RESYNC: (1.22-1.23); FILE MERGED 2004/02/17 09:58:06 sab 1.21.304.3: #i22706#; fix problems on merge 2004/02/13 21:37:01 sab 1.21.304.2: RESYNC: (1.21-1.22); FILE MERGED 2004/01/05 11:56:11 sab 1.21.304.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [dfc895ab1e2ddc2d7be05d0292a266a306469089]

INTEGRATION: CWS calcuno01 (1.21.312); FILE MERGED 2004/10/13 12:42:33 sab 1.21.312.2: RESYNC: (1.21-1.22); FILE MERGED 2004/01/05 11:56:06 sab 1.21.312.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [c05136eaab3dae1b7917807f6425bfc04dbeda46]

INTEGRATION: CWS calcuno01 (1.11.204); FILE MERGED 2004/01/05 11:56:03 sab 1.11.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [e82be0d3a1eabe5ec41351dae05ada7e87ddd7e6]

INTEGRATION: CWS calcuno01 (1.4.334); FILE MERGED 2004/01/05 11:56:01 sab 1.4.334.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [e6deb0a6a5d90617673ec61dd3d4b61041f99a4b]

INTEGRATION: CWS calcuno01 (1.8.326); FILE MERGED 2004/01/07 13:48:13 sab 1.8.326.2: #i24109#; need a temp object of XTextCursor 2004/01/05 11:55:59 sab 1.8.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [5d822c824f2f6c9888ee4901d51aea35359e97d9]

INTEGRATION: CWS calcuno01 (1.15.76); FILE MERGED 2004/10/13 12:42:15 sab 1.15.76.2: RESYNC: (1.15-1.16); FILE MERGED 2004/01/05 11:55:56 sab 1.15.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [1a0472aa848705eaed93c761a1d00805ff0ebed5]

INTEGRATION: CWS calcuno01 (1.21.76); FILE MERGED 2004/10/13 12:42:07 sab 1.21.76.2: RESYNC: (1.21-1.23); FILE MERGED 2004/01/05 11:55:52 sab 1.21.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [913bbd3d05d911a033c85570996c5a4794eaa37e]

INTEGRATION: CWS calcuno01 (1.5.332); FILE MERGED 2004/10/13 12:41:49 sab 1.5.332.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/05 11:55:44 sab 1.5.332.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [eb7f406585b892d39e1e12ad3ff29fc6346bcb06]

INTEGRATION: CWS calcuno01 (1.4.332); FILE MERGED 2004/10/13 12:41:40 sab 1.4.332.2: RESYNC: (1.4-1.5); FILE MERGED 2004/01/05 11:55:40 sab 1.4.332.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [bf143959521ef7b948ee16e13724764565c96126]

INTEGRATION: CWS calcuno01 (1.25.76); FILE MERGED 2004/10/13 12:41:31 sab 1.25.76.2: RESYNC: (1.25-1.27); FILE MERGED 2004/01/05 11:55:38 sab 1.25.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [55e05b262bb1f65f340cfa96e68159469ef44fc7]

INTEGRATION: CWS calcuno01 (1.36.76); FILE MERGED 2004/10/13 12:41:22 sab 1.36.76.3: RESYNC: (1.36-1.38); FILE MERGED 2004/02/12 17:17:21 sab 1.36.76.2: #i22706#; set start value for ValidationIndex 2004/01/05 11:55:34 sab 1.36.76.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [e0c8ea7577119045f30ab9d66e74ce90b70de0ec]

INTEGRATION: CWS calcuno01 (1.14.10); FILE MERGED 2004/10/13 12:41:13 sab 1.14.10.5: RESYNC: (1.16-1.17); FILE MERGED 2004/04/29 06:39:18 sab 1.14.10.4: RESYNC: (1.15-1.16); FILE MERGED 2004/03/26 09:32:12 dr 1.14.10.3: #100000# for scope 2004/03/24 10:51:47 dr 1.14.10.2: RESYNC: (1.14-1.15); FILE MERGED 2004/01/05 11:55:31 sab 1.14.10.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [f2044eac6bdadaff33ee473135a11b337e52f30c]

INTEGRATION: CWS calcuno01 (1.10.10); FILE MERGED 2005/02/22 13:14:24 sab 1.10.10.6: RESYNC: (1.17-1.18); FILE MERGED 2005/01/06 12:33:41 sab 1.10.10.5: RESYNC: (1.15-1.17); FILE MERGED 2004/10/13 12:40:53 sab 1.10.10.4: RESYNC: (1.11-1.15); FILE MERGED 2004/04/29 06:39:10 sab 1.10.10.3: RESYNC: (1.10-1.11); FILE MERGED 2004/03/26 09:32:12 dr 1.10.10.2: #100000# for scope 2004/01/05 11:55:28 sab 1.10.10.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [d4dcb99b32c5de11ab657a7734637ca81ebc6fef]

INTEGRATION: CWS calcuno01 (1.8.326); FILE MERGED 2005/01/06 12:33:33 sab 1.8.326.4: RESYNC: (1.11-1.13); FILE MERGED 2004/10/13 12:40:44 sab 1.8.326.3: RESYNC: (1.9-1.11); FILE MERGED 2004/03/24 10:51:38 dr 1.8.326.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/05 11:55:26 sab 1.8.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [367a3a08590860dafe9f7890b19dc73b3b8dbb76]

INTEGRATION: CWS calcuno01 (1.1.310); FILE MERGED 2004/01/05 11:55:24 sab 1.1.310.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [2435bd605eb15d9482201098a2bb0a16e8bf21e3]

INTEGRATION: CWS calcuno01 (1.8.318); FILE MERGED 2004/01/05 11:55:20 sab 1.8.318.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [90b6c6ad5e9e86362018a2aaf23c6ab551f68fc3]

INTEGRATION: CWS calcuno01 (1.10.312); FILE MERGED 2004/01/05 11:55:18 sab 1.10.312.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [217c2a31256c8cc12fbc14ab79d8dd0fc7a91c44]

INTEGRATION: CWS calcuno01 (1.6.338); FILE MERGED 2004/01/05 11:55:14 sab 1.6.338.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [d80275da60348de8bef7f6ad36526ccb85092bb6]

INTEGRATION: CWS calcuno01 (1.10.326); FILE MERGED 2004/10/13 12:40:35 sab 1.10.326.3: RESYNC: (1.11-1.13); FILE MERGED 2004/03/24 10:51:01 dr 1.10.326.2: RESYNC: (1.10-1.11); FILE MERGED 2004/01/05 11:55:11 sab 1.10.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [3772a30082f393de2c16765084da19d4099a7b67]

INTEGRATION: CWS calcuno01 (1.20.204); FILE MERGED 2004/10/13 12:40:27 sab 1.20.204.2: RESYNC: (1.20-1.21); FILE MERGED 2004/01/05 11:55:07 sab 1.20.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [a411fe00d69ac956911b1ca0bf7a9ac8f299b64c]

INTEGRATION: CWS calcuno01 (1.3.340); FILE MERGED 2004/10/13 12:40:15 sab 1.3.340.2: RESYNC: (1.3-1.4); FILE MERGED 2004/01/05 11:55:04 sab 1.3.340.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [c0d440108a2b29de1948d6c03c154b8c6bdcd30e]

INTEGRATION: CWS calcuno01 (1.5.324); FILE MERGED 2004/01/05 11:55:00 sab 1.5.324.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [f3f54a99ac162dc747d335e0993607893af86cdc]

INTEGRATION: CWS calcuno01 (1.7.312); FILE MERGED 2004/01/05 11:54:57 sab 1.7.312.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [665785d80171c3f27690978a425e90773be7c5da]

INTEGRATION: CWS calcuno01 (1.9.306); FILE MERGED 2004/01/05 11:54:55 sab 1.9.306.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [c2436ba0317e866290d106f32e82d40ff98ea78d]

INTEGRATION: CWS calcuno01 (1.9.326); FILE MERGED 2004/10/13 12:40:06 sab 1.9.326.3: RESYNC: (1.10-1.12); FILE MERGED 2004/03/24 10:51:29 dr 1.9.326.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/05 11:54:53 sab 1.9.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [373a87cd2f4787a64b8eda99e7523964f3dcec60]

INTEGRATION: CWS calcuno01 (1.16.204); FILE MERGED 2005/02/22 13:14:12 sab 1.16.204.5: RESYNC: (1.19-1.20); FILE MERGED 2004/10/15 11:11:45 sab 1.16.204.4: solve merge conflicts 2004/10/13 12:39:58 sab 1.16.204.3: RESYNC: (1.17-1.19); FILE MERGED 2004/03/24 10:51:20 dr 1.16.204.2: RESYNC: (1.16-1.17); FILE MERGED 2004/01/05 11:54:50 sab 1.16.204.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [f075f7fb9827552cd6f23144c6366b4a13bbd2a8]

INTEGRATION: CWS calcuno01 (1.20.326); FILE MERGED 2004/10/13 12:39:38 sab 1.20.326.3: RESYNC: (1.21-1.23); FILE MERGED 2004/03/24 10:51:11 dr 1.20.326.2: RESYNC: (1.20-1.21); FILE MERGED 2004/01/05 11:54:46 sab 1.20.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [afbe6cd6e30e1f0e0f4a3eb93f7c10f0a96bc17b]

INTEGRATION: CWS calcuno01 (1.5.326); FILE MERGED 2004/01/05 11:54:43 sab 1.5.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [f7e0dca3243d5171ba9e1d089c1af5695c41cc56]

INTEGRATION: CWS calcuno01 (1.5.334); FILE MERGED 2004/01/05 11:54:40 sab 1.5.334.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [1c7423b3a8755aa90d7b1e731a79278ec0499a13]

INTEGRATION: CWS calcuno01 (1.11.326); FILE MERGED 2004/01/05 11:54:39 sab 1.11.326.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [23c7c2771eec73573aff61d9ed89b7a0c5122220]

INTEGRATION: CWS calcuno01 (1.4.26); FILE MERGED 2005/03/14 13:08:52 sw 1.4.26.1: #i23114#


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [4ac2f3148fdfa2b63e6a70d3c791b7ed96eb2b82]

INTEGRATION: CWS calcuno01 (1.4.26); FILE MERGED 2005/03/14 13:08:19 sw 1.4.26.1: #i23114#


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [6cf558c753aa23ba29e629c1fec6fada65d7c50f]

INTEGRATION: CWS calcuno01 (1.5.148); FILE MERGED 2004/10/13 11:35:31 sab 1.5.148.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/05 11:48:04 sab 1.5.148.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [14844596bb702891657c5fff993ce3b3f95ab06d]

INTEGRATION: CWS calcuno01 (1.19.34); FILE MERGED 2005/03/04 14:00:30 sab 1.19.34.1: #i22706#; don't use USHORT


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [258fd4611aa3d436a3e70254c5426e2b80136598]

INTEGRATION: CWS calcuno01 (1.18.38); FILE MERGED 2004/10/13 11:27:10 sab 1.18.38.4: RESYNC: (1.19-1.20); FILE MERGED 2004/03/24 11:18:21 dr 1.18.38.3: RESYNC: (1.18-1.19); FILE MERGED 2004/02/12 17:19:43 sab 1.18.38.2: #i22706#; add getDirectPropertyValuesTolerant 2004/01/05 11:48:01 sab 1.18.38.1: #i22706#; improve API using


2005-03-23  Vladimir Glazounov  <vg@openoffice.org>  [893a2b857776f9f260aa574ee29ea51305c0db50]

INTEGRATION: CWS jmf5 (1.29.134); FILE MERGED 2005/03/08 13:02:47 ka 1.29.134.3: RESYNC: (1.30-1.31); FILE MERGED 2005/01/24 15:53:06 ka 1.29.134.2: RESYNC: (1.29-1.30); FILE MERGED 2004/12/20 15:33:29 ka 1.29.134.1: #i37245#: added support for dropped media URL's


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [42de6d98a4214e60544455cf0908e6083cf6393d]

INTEGRATION: CWS fwkpostbeta1 (1.2.196); FILE MERGED 2005/01/27 13:43:04 cd 1.2.196.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [b9873fd28881a7d0ed82a05adbeeed1a35ff31b0]

INTEGRATION: CWS fwkpostbeta1 (1.5.74); FILE MERGED 2005/01/27 13:43:04 cd 1.5.74.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [52abebac3d5905b467d8c15d9303aaf44fc99c14]

INTEGRATION: CWS fwkpostbeta1 (1.4.22); FILE MERGED 2005/01/27 13:43:04 cd 1.4.22.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [360f3ad294e3d0004ac921eccb1b56289a3681c6]

INTEGRATION: CWS fwkpostbeta1 (1.2.150); FILE MERGED 2005/03/03 13:37:14 jl 1.2.150.2: RESYNC: (1.2-1.3); FILE MERGED 2005/01/27 13:43:04 cd 1.2.150.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [f88d8fabfaa701db7cb34809b7b7de450bddab84]

INTEGRATION: CWS fwkpostbeta1 (1.2.150); FILE MERGED 2005/03/03 13:37:06 jl 1.2.150.2: RESYNC: (1.2-1.3); FILE MERGED 2005/01/27 13:43:04 cd 1.2.150.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [f98f52f6c25f4455ece08672728389cd478ce921]

INTEGRATION: CWS fwkpostbeta1 (1.6.66); FILE MERGED 2005/01/27 13:43:03 cd 1.6.66.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [d4a801e156bfffadda17f15b39a58a1e8a93be8c]

INTEGRATION: CWS fwkpostbeta1 (1.3.74); FILE MERGED 2005/01/27 13:43:03 cd 1.3.74.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [551f9c8c098c18b2fe13552ea936140baf668eef]

INTEGRATION: CWS fwkpostbeta1 (1.2.170); FILE MERGED 2005/01/27 13:43:03 cd 1.2.170.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [59b1dbb3f6e4a2fe99b1aa6d6fceb8d2379aa6ae]

INTEGRATION: CWS fwkpostbeta1 (1.2.270); FILE MERGED 2005/01/27 13:43:02 cd 1.2.270.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [a746d9cd81b268656b77c0c59927d321a415d8e8]

INTEGRATION: CWS fwkpostbeta1 (1.3.74); FILE MERGED 2005/01/27 13:43:02 cd 1.3.74.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [93650a99a1e36c96891d5528aae773b96192f358]

INTEGRATION: CWS fwkpostbeta1 (1.2.150); FILE MERGED 2005/01/27 13:43:02 cd 1.2.150.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [72215910ba22409c140038297bb93a8bab581c7c]

INTEGRATION: CWS fwkpostbeta1 (1.2.270); FILE MERGED 2005/01/27 13:43:01 cd 1.2.270.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [2b1f25c1ed8f04faa2e282057be668d05a29efb7]

INTEGRATION: CWS fwkpostbeta1 (1.2.170); FILE MERGED 2005/01/27 13:43:01 cd 1.2.170.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [93cf7ae34b5326e97c1195e064b1f9228c1f1a05]

INTEGRATION: CWS fwkpostbeta1 (1.4.74); FILE MERGED 2005/01/27 13:43:00 cd 1.4.74.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [d122190363ac830f7eebf03f725a5acc97d10172]

INTEGRATION: CWS fwkpostbeta1 (1.5.22); FILE MERGED 2005/01/27 13:43:00 cd 1.5.22.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [e92af9ee26aff9b1bf21c1feda31f5ca66f2dece]

INTEGRATION: CWS fwkpostbeta1 (1.2.150); FILE MERGED 2005/03/03 13:36:57 jl 1.2.150.2: RESYNC: (1.2-1.3); FILE MERGED 2005/01/27 13:43:00 cd 1.2.150.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [962bcbd6c97f5a66553b1a101834f26449019f6e]

INTEGRATION: CWS fwkpostbeta1 (1.3.74); FILE MERGED 2005/01/27 13:43:00 cd 1.3.74.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [f03101fe588a2d74e2c544c470ea1e1263bed3e9]

INTEGRATION: CWS fwkpostbeta1 (1.2.150); FILE MERGED 2005/01/27 13:43:00 cd 1.2.150.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [cf9550bc081becbc99448dfe84d068f1850788d1]

INTEGRATION: CWS fwkpostbeta1 (1.2.150); FILE MERGED 2005/01/27 13:42:59 cd 1.2.150.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [eb0604511c448490aaf040ccfd5aada6850ce2fa]

INTEGRATION: CWS fwkpostbeta1 (1.2.150); FILE MERGED 2005/03/03 13:36:44 jl 1.2.150.2: RESYNC: (1.2-1.3); FILE MERGED 2005/01/27 13:42:59 cd 1.2.150.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [a6b04e5ec318d0197f79b4d76b08ef9463b755a1]

INTEGRATION: CWS fwkpostbeta1 (1.2.150); FILE MERGED 2005/03/03 13:36:35 jl 1.2.150.2: RESYNC: (1.2-1.3); FILE MERGED 2005/01/27 13:42:59 cd 1.2.150.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-21  Kurt Zenker  <kz@openoffice.org>  [84171c0a368f640941992e4410bdb30a26836435]

INTEGRATION: CWS fwkpostbeta1 (1.2.80); FILE MERGED 2005/03/03 13:36:26 jl 1.2.80.2: RESYNC: (1.2-1.3); FILE MERGED 2005/01/27 13:42:59 cd 1.2.80.1: #i41417# Removed obsolete entry 'toolbar:text' for default toolbar definitions


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [73b55b1403a4bbeb7e15a89759509511b856cdab]

INTEGRATION: CWS xmlperf02 (1.188.10); FILE MERGED 2005/02/01 15:36:58 fs 1.188.10.1: #119224# XFormsSupplier extended by XFormsSupplier2, which allows for *cheaply* asking whether a draw page currently has forms


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [b9a21ad221bf2b1bec578d8aa4c39d98fb85e103]

INTEGRATION: CWS uicleanup (1.24.54); FILE MERGED 2005/02/22 09:29:49 dv 1.24.54.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [9bf451a4b163da2e195c0b06a6a9f922f81ca7f0]

INTEGRATION: CWS uicleanup (1.25.306); FILE MERGED 2005/02/22 09:29:49 dv 1.25.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [1177634191eb948f373a8672e459d84692104718]

INTEGRATION: CWS uicleanup (1.18.306); FILE MERGED 2005/02/22 09:29:49 dv 1.18.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [91eeaada1850ca71d493ab0a07ef567c0ac93108]

INTEGRATION: CWS uicleanup (1.31.306); FILE MERGED 2005/02/22 09:29:48 dv 1.31.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [782ea10a2ac7dbca36d1bb96ce7eee421c85870c]

INTEGRATION: CWS uicleanup (1.53.306); FILE MERGED 2005/02/22 09:29:48 dv 1.53.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [c9bcf472e044131b43594409d4c02a196456c78b]

INTEGRATION: CWS uicleanup (1.41.306); FILE MERGED 2005/02/22 09:29:48 dv 1.41.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [f2df265d556e43c8fe1775e6113fad1ca2acf33f]

INTEGRATION: CWS uicleanup (1.40.306); FILE MERGED 2005/02/22 09:29:48 dv 1.40.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [c7d3e073b9b0896f70798ac11d83dad337b93a2a]

INTEGRATION: CWS uicleanup (1.27.306); FILE MERGED 2005/02/22 09:29:47 dv 1.27.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [a3086dfb61cf9af2d25360db8992c8a157a3dcbe]

INTEGRATION: CWS uicleanup (1.49.306); FILE MERGED 2005/02/22 09:29:46 dv 1.49.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [ceba056404fe5ea3a8131568252cf4a3cfb269de]

INTEGRATION: CWS uicleanup (1.28.306); FILE MERGED 2005/02/22 09:29:45 dv 1.28.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [5beb6d355c3c29d766800c30a19112d29c354def]

INTEGRATION: CWS uicleanup (1.14.198); FILE MERGED 2005/02/22 09:29:45 dv 1.14.198.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [5c6f9c4afd75d63cd8a0480b3cf316d780e7c06b]

INTEGRATION: CWS uicleanup (1.30.306); FILE MERGED 2005/02/22 09:29:45 dv 1.30.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [4674ee51852ae7c257b78de2989e4afaea374573]

INTEGRATION: CWS uicleanup (1.25.306); FILE MERGED 2005/02/22 09:29:44 dv 1.25.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [c20fe304a508ceff8c1899ef43daaac43a3a1294]

INTEGRATION: CWS uicleanup (1.44.306); FILE MERGED 2005/02/22 09:29:44 dv 1.44.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [4cf7bf1836d6e19cc131ee4f15474fe4a187bdff]

INTEGRATION: CWS uicleanup (1.30.306); FILE MERGED 2005/02/22 09:29:44 dv 1.30.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [2cd1d289e634476d19e2a184d729159f8cdc7858]

INTEGRATION: CWS uicleanup (1.55.248); FILE MERGED 2005/02/22 09:29:43 dv 1.55.248.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-18  Kurt Zenker  <kz@openoffice.org>  [8aa09ac6a69d275b5caefe1251b043578ee24e36]

INTEGRATION: CWS uicleanup (1.34.306); FILE MERGED 2005/02/22 09:29:43 dv 1.34.306.1: #116586# Changed ImageButton sizes for better themeing support


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [46a0e1e25d0034a9bc81abb5a87f463fd213e5f8]

INTEGRATION: CWS mav17 (1.20.42); FILE MERGED 2005/02/28 11:00:07 mav 1.20.42.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [31b5cf13e55d9cda888b0627f068f75ade4e4003]

INTEGRATION: CWS mav17 (1.33.66); FILE MERGED 2005/03/02 18:54:53 mav 1.33.66.2: RESYNC: (1.33-1.34); FILE MERGED 2005/02/24 15:44:13 mav 1.33.66.1: #i41699# creation of an object from clipboard


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [288290d4611547af5063d17546402144c46ed886]

INTEGRATION: CWS mav17 (1.23.42); FILE MERGED 2005/02/28 11:00:07 mav 1.23.42.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [18c3464d568e3012a030cd8aef7213c83590b812]

INTEGRATION: CWS mav17 (1.10.204); FILE MERGED 2005/03/02 18:53:16 mav 1.10.204.3: RESYNC: (1.10-1.11); FILE MERGED 2005/02/28 11:00:06 mav 1.10.204.2: #i42398# handle impossibility to get visual area 2005/02/24 15:44:13 mav 1.10.204.1: #i41699# creation of an object from clipboard


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [8e3575b1be2245ada1e2324c2097f52dd0691e1d]

INTEGRATION: CWS mav17 (1.19.42); FILE MERGED 2005/02/28 11:00:06 mav 1.19.42.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [f924fbccc8c945f954186aa23de70ca7092154ea]

INTEGRATION: CWS mav17 (1.18.42); FILE MERGED 2005/02/28 11:00:06 mav 1.18.42.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [07750e5081430b929f0021202833f66b71ac9e21]

INTEGRATION: CWS mav17 (1.13.202); FILE MERGED 2005/02/28 11:00:05 mav 1.13.202.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [a4e948b8f0f4a25b8d6bdcfa837e320084023a8d]

INTEGRATION: CWS mav17 (1.13.42); FILE MERGED 2005/02/28 11:00:05 mav 1.13.42.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [77599f4a8950f9a4eaccfd916ab7e94a8cf8d410]

INTEGRATION: CWS mav17 (1.54.64); FILE MERGED 2005/03/01 09:19:34 mav 1.54.64.1: #i23531# improve document repairing


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [114012695d0d7701b5d1551be4e09212653338bd]

INTEGRATION: CWS mav17 (1.32.40); FILE MERGED 2005/03/02 18:31:27 mav 1.32.40.2: RESYNC: (1.32-1.33); FILE MERGED 2005/02/28 11:00:04 mav 1.32.40.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [6dca19f6e33b9615013fc038007b8e967c8ff026]

INTEGRATION: CWS mav17 (1.30.60); FILE MERGED 2005/03/02 18:28:31 mav 1.30.60.2: RESYNC: (1.30-1.31); FILE MERGED 2005/02/28 11:00:03 mav 1.30.60.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [3dc3da9459d601895d457d06f4faad9e51cbf0ab]

INTEGRATION: CWS mav17 (1.38.42); FILE MERGED 2005/02/28 11:00:03 mav 1.38.42.1: #i42398# handle impossibility to get visual area


2005-03-15  Oliver Bolte  <obo@openoffice.org>  [cefd2c8727c14a9db447e89c049e795bc9f093e6]

INTEGRATION: CWS toolbars4 (1.16.100); FILE MERGED 2005/02/16 14:41:38 cd 1.16.100.1: #i39612# Changed toolbox item style to TIB_DROPDOWNONLY


2005-03-14  Rüdiger Timm  <rt@openoffice.org>  [2b2f056988103550a23a351688dfc15f5d1912dc]

#i10000# Remove unnecessary 'mkdir' with wrong syntax.


2005-03-10  Vladimir Glazounov  <vg@openoffice.org>  [b25cca2bb729bc17950bab13b5f53c75613bb273]

INTEGRATION: CWS dba24 (1.1.2); FILE ADDED 2005/02/21 15:46:59 fs 1.1.2.1: #i37338#


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [b1ae5b572d550e9f7d61b6c9e0cb787c6348e429]

INTEGRATION: CWS calc30 (1.44.130); FILE MERGED 2005/02/18 16:06:49 nn 1.44.130.1: #i43091# rest of merged cell: get cell from document


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [e05e68a8561abb2c85cd0ee42fcacee8f2de8c46]

INTEGRATION: CWS calc30 (1.67.92); FILE MERGED 2005/02/16 09:35:05 nn 1.67.92.1: #i41690# don't get confused by MouseButtonUp from Reschedule in MouseButtonDown


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [ada03d2da7376fbe78140f63b44ad0738d63f70b]

INTEGRATION: CWS calc30 (1.19.94); FILE MERGED 2005/02/16 09:34:41 nn 1.19.94.1: #i41690# don't get confused by MouseButtonUp from Reschedule in MouseButtonDown


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [734c63e95f1c2c7567678fc6fb5daa9e691283b1]

INTEGRATION: CWS calc30 (1.10.186); FILE MERGED 2005/02/14 16:40:27 nn 1.10.186.1: #i42764# ScEditAttrTester: compare items to cell attributes, not pool defaults


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [aee03c4e762460010819cd1e6e3be34eb0d1a82c]

INTEGRATION: CWS calc30 (1.41.88); FILE MERGED 2005/02/10 14:01:44 nn 1.41.88.1: #105584# print empty page if necessary between copies


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [f33bb2692dc985b11063cd9383938762d6c95de8]

INTEGRATION: CWS calc30 (1.52.186); FILE MERGED 2005/02/14 16:40:45 nn 1.52.186.1: #i42764# ScEditAttrTester: compare items to cell attributes, not pool defaults


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [a824c5cb53e530cc1ad969f61f5a260beb7a6538]

INTEGRATION: CWS calc30 (1.3.754); FILE MERGED 2005/02/18 15:40:54 nn 1.3.754.1: #i43092# test for empty size


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [8326a1b0e1f31d07e4e66daee588beb9c8a0e65a]

INTEGRATION: CWS calc30 (1.24.46); FILE MERGED 2005/02/21 18:39:22 sab 1.24.46.2: RESYNC: (1.24-1.25); FILE MERGED 2005/02/14 16:25:48 nn 1.24.46.1: #i42666# copy doc options to clipboard/OLE object


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [9d8d5d7a8e99e8373d02480dd2f4517762fd3753]

INTEGRATION: CWS calc30 (1.188.18); FILE MERGED 2005/02/18 11:34:31 sab 1.188.18.1: #119760#; don't cache all


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [89052e7b939b4dcd65e07ca7bf4febc7aa0d384c]

INTEGRATION: CWS calc30 (1.17.88); FILE MERGED 2005/02/18 11:34:31 sab 1.17.88.1: #119760#; don't cache all


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [cc18625ad3ee48589d0d5854b7e815527197fbf7]

INTEGRATION: CWS calc30 (1.81.4); FILE MERGED 2005/02/18 11:34:30 sab 1.81.4.1: #119760#; don't cache all


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [a0a73243603e2062316557af5609ce9ee9903c40]

INTEGRATION: CWS calc30 (1.21.250); FILE MERGED 2005/02/18 11:34:30 sab 1.21.250.1: #119760#; don't cache all


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [89d4a0b339ba402b257c536e24f5677c3ec3e8e6]

INTEGRATION: CWS calc30 (1.40.94); FILE MERGED 2005/02/18 11:34:30 sab 1.40.94.1: #119760#; don't cache all


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [6f66476f888a66fa7bfddcc716de2bf6bef185d0]

INTEGRATION: CWS calc30 (1.23.250); FILE MERGED 2005/02/18 11:34:29 sab 1.23.250.1: #119760#; don't cache all


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [34969891db8e1e0952957df7d840b68066ce593d]

INTEGRATION: CWS calc30 (1.25.186); FILE MERGED 2005/02/14 16:40:06 nn 1.25.186.1: #i42764# ScEditAttrTester: compare items to cell attributes, not pool defaults


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [e1ff8d5013d954ba5ee0a0321644279aa7c534ad]

INTEGRATION: CWS calc30 (1.47.96); FILE MERGED 2005/02/21 18:36:01 sab 1.47.96.2: RESYNC: (1.47-1.48); FILE MERGED 2005/02/14 16:26:14 nn 1.47.96.1: #i42666# copy doc options to clipboard/OLE object


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [92c209f99be7d1712462266eacd24aab923e18bc]

INTEGRATION: CWS calc30 (1.8.186); FILE MERGED 2005/02/14 16:39:46 nn 1.8.186.1: #i42764# ScEditAttrTester: compare items to cell attributes, not pool defaults


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [d95c473b751ff75fee3a714ada9bb6a819474af1]

INTEGRATION: CWS calcer (1.17.222); FILE MERGED 2004/12/29 14:01:22 er 1.17.222.1: #i39585# '0' is a digit ...


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [8d20b6046ff0927ab95c9b133efc4653c3dbe9bc]

INTEGRATION: CWS calcer (1.9.52); FILE MERGED 2004/11/23 20:18:20 er 1.9.52.2: #i36541# #i37631# generic GetString with EmptyPath and setting error at interpreter 2004/11/16 18:25:34 er 1.9.52.1: #i36541# generic ScMatrix::GetString() also for numerical values


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [1d5b5c95deffd18add127e32d7a0f1837acd80b2]

INTEGRATION: CWS calcer (1.12.52); FILE MERGED 2005/02/21 17:40:01 er 1.12.52.2: RESYNC: (1.12-1.13); FILE MERGED 2004/11/16 18:34:18 er 1.12.52.1: #i36541# ScAmpersand, MatConcat: strings of numerical matrix values


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [d0bdbb02c119cd04c6c35744945e17974bdf4d09]

INTEGRATION: CWS calcer (1.31.52); FILE MERGED 2005/02/21 17:39:32 er 1.31.52.3: RESYNC: (1.31-1.34); FILE MERGED 2005/02/18 18:52:25 er 1.31.52.2: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations 2004/11/23 20:15:20 er 1.31.52.1: #i37631# GetString: from matrix also if number warnings cleanup


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [2416d198124028b9a084b03ea847efe99ddb4ac2]

INTEGRATION: CWS calcer (1.2.290); FILE MERGED 2005/02/21 13:30:47 er 1.2.290.1: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations; remove superfluous errInterpOverflow handling, Err527 is dead


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [8c726f941fe29fb6864dc98d4a65ecc812435402]

INTEGRATION: CWS calcer (1.7.222); FILE MERGED 2005/02/21 13:30:46 er 1.7.222.1: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations; remove superfluous errInterpOverflow handling, Err527 is dead


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [741b0f517f0dab99bdbc45bbf052e602ab52d192]

INTEGRATION: CWS calcer (1.46.8); FILE MERGED 2005/02/21 17:31:38 er 1.46.8.2: RESYNC: (1.46-1.48); FILE MERGED 2005/02/18 18:52:25 er 1.46.8.1: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [19933c3c9e1b6d4838ba1a1a2cf404ad88c45cbf]

INTEGRATION: CWS calcer (1.25.28); FILE MERGED 2005/02/21 17:29:13 er 1.25.28.3: RESYNC: (1.25-1.27); FILE MERGED 2005/02/21 13:30:45 er 1.25.28.2: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations; remove superfluous errInterpOverflow handling, Err527 is dead 2005/02/18 18:52:25 er 1.25.28.1: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [e74c0a555e472117a095b73f3dd4bf6a6b970be4]

INTEGRATION: CWS calcer (1.7.222); FILE MERGED 2004/12/01 13:40:55 er 1.7.222.1: make dtors virtual


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [1e1ee7f51083b8746a5499063fef0863fd423167]

INTEGRATION: CWS calcer (1.8.290); FILE MERGED 2004/11/16 14:23:14 er 1.8.290.1: initialization order (gcc warning)


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [ab214664d7314e1d8d0dd22b65f8ae271ae2e12a]

INTEGRATION: CWS calcer (1.4.52); FILE MERGED 2004/11/16 18:24:38 er 1.4.52.1: #i36541# generic ScMatrix::GetString() also for numerical values


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [3a9014974c68482fec9e416ddf1c34794fc74b2b]

INTEGRATION: CWS calcer (1.1.2); FILE ADDED 2005/02/18 18:52:24 er 1.1.2.1: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [15e94d698820d754bf71586616178dcba01eaa84]

INTEGRATION: CWS calcer (1.84.8); FILE MERGED 2005/02/21 15:18:28 er 1.84.8.2: RESYNC: (1.84-1.85); FILE MERGED 2005/02/18 18:52:24 er 1.84.8.1: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [beab1427b382abc4ff41eeadad315d49e8f647c1]

INTEGRATION: CWS calcer (1.5.222); FILE MERGED 2005/02/21 15:18:01 er 1.5.222.2: RESYNC: (1.5-1.6); FILE MERGED 2004/12/01 13:40:55 er 1.5.222.1: make dtors virtual


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [7ed831a61eb9702106ca0a3e57afce78b499befc]

INTEGRATION: CWS calcer (1.23.138); FILE MERGED 2005/02/21 15:17:29 er 1.23.138.2: RESYNC: (1.23-1.24); FILE MERGED 2005/02/18 18:49:06 er 1.23.138.1: initialization order


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [0b9d348105981f790e22eec7aed1c1bbaae56f1b]

INTEGRATION: CWS calcer (1.16.30); FILE MERGED 2005/02/21 15:17:20 er 1.16.30.3: RESYNC: (1.16-1.17); FILE MERGED 2005/02/18 18:52:23 er 1.16.30.2: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations 2004/11/16 14:20:32 er 1.16.30.1: initialization order (gcc warning)


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [be5703826b2de1b02421290463e582232d66bd40]

INTEGRATION: CWS calcer (1.2.222); FILE MERGED 2005/02/18 18:48:39 er 1.2.222.1: initialization order


2005-03-08  Vladimir Glazounov  <vg@openoffice.org>  [9c8229bec61fe62707568eaaf06b8ec4a02a86e6]

INTEGRATION: CWS calcer (1.4.116); FILE MERGED 2005/02/10 19:02:40 er 1.4.116.2: #i39928# MACOSX Min/Max ambiguity 2004/12/07 10:55:06 er 1.4.116.1: oops, ouch, aua, weia ...


2005-02-24  Vladimir Glazounov  <vg@openoffice.org>  [b4955b7159b498ebb2c1a01b075c3490a53a7295]

INTEGRATION: CWS tbe18 (1.1.2); FILE ADDED 2005/02/10 16:28:07 tbe 1.1.2.1: #i37061# Localized shortcuts are broken


2005-02-24  Vladimir Glazounov  <vg@openoffice.org>  [7cc6e48e3e52c871d6714aad6fec065ed125d3ba]

INTEGRATION: CWS tbe18 (1.1.2); FILE ADDED 2005/02/15 15:28:00 tbe 1.1.2.2: #i37061# Localized shortcuts are broken 2005/02/10 16:27:52 tbe 1.1.2.1: #i37061# Localized shortcuts are broken


2005-02-24  Vladimir Glazounov  <vg@openoffice.org>  [614282884ea4aac842a50eb99b881405550a751b]

INTEGRATION: CWS tbe18 (1.1.2); FILE ADDED 2005/02/10 16:27:26 tbe 1.1.2.1: #i37061# Localized shortcuts are broken


2005-02-24  Vladimir Glazounov  <vg@openoffice.org>  [43fad6306a12a96f47036f26fe7ac74bc38e4188]

INTEGRATION: CWS tbe18 (1.19.164); FILE MERGED 2005/02/10 16:25:55 tbe 1.19.164.1: #i37061# Localized shortcuts are broken


2005-02-24  Vladimir Glazounov  <vg@openoffice.org>  [c4c09b1457ee0dbfe78b5253a85289bcb3d7a4fc]

INTEGRATION: CWS cmcfixes2 (1.4.92); FILE MERGED 2005/02/14 09:35:59 cmc 1.4.92.1: #i42421# stl/map -> map


2005-02-24  Vladimir Glazounov  <vg@openoffice.org>  [c8560d62f6272c4a8006103c08b571e202c23f26]

INTEGRATION: CWS cmcfixes2 (1.17.38); FILE MERGED 2005/02/10 10:43:45 cmc 1.17.38.1: #i42401# linux sparc NOOPTFILES changes


2005-02-24  Vladimir Glazounov  <vg@openoffice.org>  [619faf81962a41c9b64d518443985509176b4c07]

INTEGRATION: CWS cmcfixes2 (1.2.228); FILE MERGED 2005/02/14 09:35:36 cmc 1.2.228.1: #i42421# iterators != pointers


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [2c2b89ccb37690a5fa0ecc9a5e081767033e2838]

INTEGRATION: CWS calc29 (1.7.168); FILE MERGED 2005/02/11 09:40:53 jmarmion 1.7.168.1: #i33764# - support resize and edit for new notes.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [28ccc4369d0ce31e88484028913f2c5c7a842357]

INTEGRATION: CWS calc29 (1.47.90); FILE MERGED 2005/02/11 11:11:07 nn 1.47.90.2: RESYNC: (1.47-1.48); FILE MERGED 2005/01/26 14:04:36 nn 1.47.90.1: #i41135# user data sequence instead of string for tab view settings in preview


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d445d3be941bd85c54b05066d1c3c3e14b7a3be2]

INTEGRATION: CWS calc29 (1.23.166); FILE MERGED 2005/01/26 14:04:37 nn 1.23.166.1: #i41135# user data sequence instead of string for tab view settings in preview


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [f3beabf38398b9c065669dde4576b57b4e580e60]

INTEGRATION: CWS calc29 (1.36.16); FILE MERGED 2005/02/01 19:44:24 nn 1.36.16.1: #i36896# overload DoConnect, call ConnectObject


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c4bf026c57cfed4ccb84617d046604a43b324112]

INTEGRATION: CWS calc29 (1.7.168); FILE MERGED 2005/02/11 09:40:22 jmarmion 1.7.168.1: #i33764# - support resize and edit for new notes - limit repaint area.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [469a751e9ac3c9dec58ebf65bea4048e7e34f19d]

INTEGRATION: CWS calc29 (1.15.168); FILE MERGED 2005/02/02 19:03:45 nn 1.15.168.1: #i41538# ScUndoPaste: call ExtendMerge


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [9d5ca3b446e59e8ac235be45dd0379a189b51533]

INTEGRATION: CWS calc29 (1.20.148); FILE MERGED 2005/01/26 14:03:59 nn 1.20.148.1: #i41135# user data sequence instead of string for tab view settings in preview


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [bb74cd21f324749ffb32587f93b4c8c8750f8654]

INTEGRATION: CWS calc29 (1.6.292); FILE MERGED 2005/01/26 14:04:00 nn 1.6.292.1: #i41135# user data sequence instead of string for tab view settings in preview


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [460b961c08cf4d2bbeef1d148b90657d2528db14]

INTEGRATION: CWS calc29 (1.1.1.1.774); FILE MERGED 2005/02/11 09:37:39 jmarmion 1.1.1.1.774.1: #i33764# - support resize and edit for new notes.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [f9fdab47ab3a4c5d20e9185617ff9963f9ef8288]

INTEGRATION: CWS calc29 (1.2.738); FILE MERGED 2005/02/11 09:37:38 jmarmion 1.2.738.1: #i33764# - support resize and edit for new notes.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [9f5104b231adc8577ba68234b0ae949ffa1cb73c]

INTEGRATION: CWS calc29 (1.6.90); FILE MERGED 2005/02/01 19:43:58 nn 1.6.90.1: #i36896# overload DoConnect, call ConnectObject


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [0202a8c67cdbad6402c895661f66461f61c2e852]

INTEGRATION: CWS calc29 (1.7.22); FILE MERGED 2005/02/11 09:39:16 jmarmion 1.7.22.1: #i33764# - support resize and edit for new notes.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [f62f73116b1f9d1c06487ad1aeb0b5ae3bd30cfc]

INTEGRATION: CWS calc29 (1.19.46); FILE MERGED 2005/02/11 09:39:15 jmarmion 1.19.46.1: #i33764# - support resize and edit for new notes.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [6f9c889174c8ee75e4e4e6527071070410c8b103]

INTEGRATION: CWS calc29 (1.6.168); FILE MERGED 2005/02/11 09:39:15 jmarmion 1.6.168.1: #i33764# - support resize and edit for new notes.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [e063b696b9310e241357f848514bb15940a136a6]

INTEGRATION: CWS calc29 (1.13.78); FILE MERGED 2005/02/11 09:39:15 jmarmion 1.13.78.1: #i33764# - support resize and edit for new notes.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [db7260a9b5ef3c507435ffe272d31d8c9b344483]

INTEGRATION: CWS calc29 (1.8.402); FILE MERGED 2005/02/10 10:55:02 sab 1.8.402.1: #i40797#; make print ranges work


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [16fbe7602bab3696afa77d5ecf6a826c23e46cc0]

INTEGRATION: CWS calc29 (1.32.90); FILE MERGED 2005/02/10 10:55:02 sab 1.32.90.1: #i40797#; make print ranges work


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d8eb2a443dab552f343a1274a853a0a1a87bb951]

INTEGRATION: CWS calc29 (1.39.90); FILE MERGED 2005/02/04 16:11:32 sab 1.39.90.1: #i42039#; allow more characters in sheet names


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [5967ac4ee49efafa8e881c8f48544b2b6fa3b873]

INTEGRATION: CWS calc29 (1.84.42); FILE MERGED 2005/02/10 10:55:02 sab 1.84.42.1: #i40797#; make print ranges work


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [301fd36f88e781d7c5a41f82003724a68e80e2c1]

INTEGRATION: CWS calc29 (1.111.42); FILE MERGED 2005/02/10 10:55:01 sab 1.111.42.1: #i40797#; make print ranges work


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d8df466b89cd0fab0fa80cf99ce0bf93fa476617]

INTEGRATION: CWS calc29 (1.77.70); FILE MERGED 2005/02/04 11:15:21 sab 1.77.70.1: #119254#; solve repaint problems of hidden notes


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [9437961e7d2380315f34564dcd9171b09b5780c9]

INTEGRATION: CWS calc29 (1.187.14); FILE MERGED 2005/02/11 11:08:46 nn 1.187.14.2: RESYNC: (1.187-1.188); FILE MERGED 2005/02/04 11:15:20 sab 1.187.14.1: #119254#; solve repaint problems of hidden notes


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c82f1a2584fa43ae3e20b21736c28230649559f2]

INTEGRATION: CWS calc29 (1.19.22); FILE MERGED 2005/02/11 09:41:21 jmarmion 1.19.22.1: #i33764# - support resize and edit for new notes.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [50cba682be0dc5e92b50c6e1b4f28cf4b527a151]

INTEGRATION: CWS calc29 (1.10.184); FILE MERGED 2005/01/28 18:48:38 nn 1.10.184.1: #i30830# skip large formatted areas below data in GetPrintArea


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [7d20f762ca4e4f7e6cf449a115a4050af32a2bed]

INTEGRATION: CWS calc29 (1.22.168); FILE MERGED 2005/01/28 18:48:37 nn 1.22.168.1: #i30830# skip large formatted areas below data in GetPrintArea


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d281298aacfd4e7da563b850375a5ef8c876cf91]

INTEGRATION: CWS calc29 (1.14.22); FILE MERGED 2005/02/04 15:57:39 nn 1.14.22.1: #i41847# TestInsertRow: cells can't be moved more than MAXROW rows


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d0fce7c81020a471b9c20a32fd78468295301cac]

INTEGRATION: CWS calc29 (1.18.168); FILE MERGED 2005/01/28 18:48:37 nn 1.18.168.1: #i30830# skip large formatted areas below data in GetPrintArea


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [87ebba465ed3e838634331df21cc07163bdbed0f]

INTEGRATION: CWS calc29 (1.13.168); FILE MERGED 2005/01/28 18:48:06 nn 1.13.168.1: #i30830# skip large formatted areas below data in GetPrintArea


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [914fcf9e740fa8cbc2b5799cda9f21520a930caf]

INTEGRATION: CWS calc29 (1.5.292); FILE MERGED 2005/01/28 18:48:06 nn 1.5.292.1: #i30830# skip large formatted areas below data in GetPrintArea


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [b719aa0b2ddce32d3db93ce6eebbd4d49921b02e]

INTEGRATION: CWS dr32 (1.33.8); FILE MERGED 2005/01/31 14:09:22 dr 1.33.8.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [8e5358cfe271bc5887060409d811d27fa39ba020]

INTEGRATION: CWS dr32 (1.29.146); FILE MERGED 2005/01/18 12:26:23 dr 1.29.146.2: RESYNC: (1.29-1.30); FILE MERGED 2005/01/12 10:46:25 dr 1.29.146.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d5a3928cc6d7059a352a38d8c03d664b95b1bd6b]

INTEGRATION: CWS dr32 (1.49.126); FILE MERGED 2005/02/02 14:13:13 dr 1.49.126.2: #b6219324# #i23079# #i27871# #i35812# #i37725# import/export of view settings 2005/01/31 14:09:22 dr 1.49.126.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [e98155e8b3e3c7f7fe1cd8f0852502e2cefc67e0]

INTEGRATION: CWS dr32 (1.47.68); FILE MERGED 2005/01/31 18:07:12 dr 1.47.68.2: RESYNC: (1.47-1.48); FILE MERGED 2005/01/31 14:09:21 dr 1.47.68.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [f2c7228dad3169f4014a76039a9cd0dd307a1b49]

INTEGRATION: CWS dr32 (1.24.54); FILE MERGED 2005/01/31 14:09:20 dr 1.24.54.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [896428b6370c6ca480ddb95475bae5533c242df3]

INTEGRATION: CWS dr32 (1.11.146); FILE MERGED 2005/01/12 10:46:25 dr 1.11.146.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [20864cbe86407ed8e87ad11bf8f31ad1d96ef38c]

INTEGRATION: CWS dr32 (1.2.148); FILE MERGED 2005/01/12 10:46:25 dr 1.2.148.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [de96b618bb64909ecf3336c6897673b2850c4d5e]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/01/31 14:09:20 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [0b6dfe9d5f5a99d7c9a1892bca455c8103bb5dd2]

INTEGRATION: CWS dr32 (1.10.148); FILE MERGED 2005/01/31 14:09:18 dr 1.10.148.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [8b068d522a7f783b5386d34d1d8e6bc79ede1785]

INTEGRATION: CWS dr32 (1.36.146); FILE MERGED 2005/01/12 10:46:24 dr 1.36.146.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [9ff6cca58806680cd13d48f031577ab2f47ef928]

INTEGRATION: CWS dr32 (1.13.146); FILE MERGED 2005/01/12 10:45:56 dr 1.13.146.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c540c3b5fc11c5a174235324748c62720d17cfc3]

INTEGRATION: CWS dr32 (1.60.112); FILE MERGED 2005/01/19 14:30:38 dr 1.60.112.1: #i40854# not enough space for pt-BR fixedtext


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c520e4b528eab733fb193fcd8fe9d3c528ce7d81]

INTEGRATION: CWS dr32 (1.8.148); FILE MERGED 2005/01/12 10:41:01 dr 1.8.148.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [da416d6461e0325f81c0ed3fa3d359e867b8ebb3]

INTEGRATION: CWS dr32 (1.24.56); FILE MERGED 2005/01/12 10:41:01 dr 1.24.56.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [8efcb0689186cf68419038772abe8893d47e6562]

INTEGRATION: CWS dr32 (1.17.126); FILE MERGED 2005/01/31 14:09:03 dr 1.17.126.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d0f0191eb147175b2dcd77b9eb2ad3da6381b160]

INTEGRATION: CWS dr32 (1.10.196); FILE MERGED 2005/01/12 10:41:00 dr 1.10.196.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [099a117233603e6aa946de1c4a3dd8fef093a178]

INTEGRATION: CWS dr32 (1.17.56); FILE MERGED 2005/01/31 14:09:03 dr 1.17.56.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [9466aa3aa98c0c95f1fd7e7e0abc81cef4910a88]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/01/12 10:41:00 dr 1.1.2.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [7a80347990ad856bbd6ada0c0b911b460882038d]

INTEGRATION: CWS dr32 (1.7.148); FILE MERGED 2005/01/12 10:41:00 dr 1.7.148.1: #i34769# conversion parameter handling; restore cursor after conversion


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [715216b99ea768e630b8b6b091945152d6fab9fc]

INTEGRATION: CWS dr32 (1.20.2); FILE MERGED 2005/01/31 14:08:50 dr 1.20.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [de58843ba3d69721ae5f0ea10596d93f44842aef]

INTEGRATION: CWS dr32 (1.77.8); FILE MERGED 2005/01/31 14:08:49 dr 1.77.8.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [eb0228ddaeda459f0d99309c9609e0aeccb0d1b9]

INTEGRATION: CWS dr32 (1.75.2); FILE MERGED 2005/01/31 14:08:34 dr 1.75.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:03:42 dr 1.75.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c78c6debd8e0c719c31498b445a5628f9a3f33eb]

INTEGRATION: CWS dr32 (1.18.126); FILE MERGED 2005/01/20 13:41:40 dr 1.18.126.1: #i40570# removed more RootData stuff


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [b11f5907037f697bd09af615a66a1e14c9743f56]

INTEGRATION: CWS dr32 (1.13.148); FILE MERGED 2005/01/31 14:08:34 dr 1.13.148.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [2ea0014ad4a8ad953455eb334097783a5c1530a0]

INTEGRATION: CWS dr32 (1.25.70); FILE MERGED 2005/01/20 13:41:40 dr 1.25.70.1: #i40570# removed more RootData stuff


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [f16921431ab6704dbfedb11d0976eca9ea0ad53b]

INTEGRATION: CWS dr32 (1.20.2); FILE MERGED 2005/01/31 14:08:33 dr 1.20.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 13:41:40 dr 1.20.2.1: #i40570# removed more RootData stuff


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [71a280deadedea7d66d3b6f3a43da2dbb0c8a26f]

INTEGRATION: CWS dr32 (1.3.272); FILE MERGED 2005/01/13 14:28:59 dr 1.3.272.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [4844ad94a4fc664ca02dd76ac77df9f2c29b8a47]

INTEGRATION: CWS dr32 (1.5.50); FILE MERGED 2005/01/13 14:28:37 dr 1.5.50.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [12f5c8524331ebe87ca3b78172f8ac4506f7d173]

INTEGRATION: CWS dr32 (1.8.50); FILE MERGED 2005/01/31 14:08:23 dr 1.8.50.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/13 14:28:37 dr 1.8.50.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [b128fa40b81b01ca27e3017fb285f94927974af9]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/02/02 14:14:23 dr 1.1.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:07:42 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [2f8eb7442bde208d437236a8b3bc48ee11b81cce]

INTEGRATION: CWS dr32 (1.19.2); FILE MERGED 2005/02/02 14:14:23 dr 1.19.2.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:07:42 dr 1.19.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:03:07 dr 1.19.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [01b872cd20351931ec49d2e36649548e343e73fa]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/01/19 15:03:07 dr 1.1.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [299f06b212032dbe129cb0e48b209bff32a2792a]

INTEGRATION: CWS dr32 (1.19.2); FILE MERGED 2005/02/02 14:14:22 dr 1.19.2.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:07:42 dr 1.19.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 14:24:50 dr 1.19.2.1: #i40570# removed RootData::bWriteVBAStorage


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [ca183f34bf8fbc0d4f918adba1af7a34c6507590]

INTEGRATION: CWS dr32 (1.6.148); FILE MERGED 2005/02/02 14:14:22 dr 1.6.148.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [3b6e549dacbb10592ea2344fc04717269615158a]

INTEGRATION: CWS dr32 (1.13.2); FILE MERGED 2005/01/20 11:42:40 dr 1.13.2.1: #i39025# add autoload property


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c0db73efd741e6da6c2257a479550120e944ac7f]

INTEGRATION: CWS dr32 (1.21.120); FILE MERGED 2005/01/31 14:07:41 dr 1.21.120.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:03:06 dr 1.21.120.3: #i40570# removed/changed constants and enums 2005/01/18 12:15:41 dr 1.21.120.2: RESYNC: (1.21-1.22); FILE MERGED 2005/01/14 13:34:12 dr 1.21.120.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [afee9ef17a97cd21b8766dcb0f048038f46faf92]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/02/02 20:17:52 dr 1.1.2.3: #i10000# merge conflicts 2005/02/02 14:14:22 dr 1.1.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:07:41 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [adcf58340955ddaf7b3b1c9bd6cc094cc4de1a5e]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/01/31 14:07:41 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [a64b77cac703c6b2ef7374cb3d9e7ed336047056]

INTEGRATION: CWS dr32 (1.15.2); FILE MERGED 2005/01/31 14:07:40 dr 1.15.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:03:06 dr 1.15.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [a7ca2f5f4a94a02483e6e592fe0468616604ede9]

INTEGRATION: CWS dr32 (1.14.2); FILE MERGED 2005/02/02 14:14:22 dr 1.14.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:07:39 dr 1.14.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [ec81337159329d33205665e27278a1d463379bed]

INTEGRATION: CWS dr32 (1.3.148); FILE MERGED 2005/01/31 14:07:39 dr 1.3.148.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [2988d297587a1cc31e740eb6cd29cd730d3d6c2d]

INTEGRATION: CWS dr32 (1.11.2); FILE MERGED 2005/02/04 14:03:08 dr 1.11.2.3: #i37725# add missing documentation 2005/02/02 14:14:21 dr 1.11.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/19 15:03:05 dr 1.11.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [88507e9807dbd28624603d4b2daecb1f78d341fe]

INTEGRATION: CWS dr32 (1.15.2); FILE MERGED 2005/02/04 11:55:46 jmarmion 1.15.2.1: #119010# allow imported connector areas to have a zero width or height.


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d4caae9da4231ed6ecd623fd499c08698a97f7ad]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/02/02 14:14:21 dr 1.1.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:07:39 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [64cec437cde73f3f98f7686e7e5bd8314d91fbbd]

INTEGRATION: CWS dr32 (1.5.2); FILE MERGED 2005/02/02 14:14:21 dr 1.5.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [42e9ece4e319da685b806f7e251e6538083f41f6]

INTEGRATION: CWS dr32 (1.13.2); FILE MERGED 2005/01/19 15:03:05 dr 1.13.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [df21b5db9e84c3ebdf8517786290294752d08000]

INTEGRATION: CWS dr32 (1.5.2); FILE MERGED 2005/01/19 15:03:04 dr 1.5.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [9039ba94e81ea22e3ba4c756ec4b4cc77c928605]

INTEGRATION: CWS dr32 (1.14.2); FILE MERGED 2005/02/02 14:14:21 dr 1.14.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:07:38 dr 1.14.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [851f4397c01e17d11bc9d473ad443c5d5531ef44]

INTEGRATION: CWS dr32 (1.7.2); FILE MERGED 2005/02/03 12:05:32 dr 1.7.2.1: #i40570# remove RootData::aStandard, changed ref handling


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [8d1a68e7a5ad622d8d388dbcd27205ae7167a38b]

INTEGRATION: CWS dr32 (1.6.2); FILE MERGED 2005/02/02 14:14:21 dr 1.6.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [551e4e46e99015ce2aac59158bdd78432192e518]

INTEGRATION: CWS dr32 (1.2.2); FILE MERGED 2005/02/02 14:14:20 dr 1.2.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [3031a07d482f0ee6149cd8d2907e5d938c53353e]

INTEGRATION: CWS dr32 (1.10.2); FILE MERGED 2005/01/31 14:07:37 dr 1.10.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:03:04 dr 1.10.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [9684f7de628eba3722f9b073540717e80554d314]

INTEGRATION: CWS dr32 (1.14.2); FILE MERGED 2005/02/04 14:03:08 dr 1.14.2.2: #i37725# add missing documentation 2005/02/02 14:14:20 dr 1.14.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [5eddb5f8565196dacfb37831d301bbe96c60bc6d]

INTEGRATION: CWS dr32 (1.3.2); FILE MERGED 2005/02/02 14:14:20 dr 1.3.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [17cc26650d5a1396f36a3a670900904a3b9f6078]

INTEGRATION: CWS dr32 (1.9.2); FILE MERGED 2005/02/02 14:14:20 dr 1.9.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [1385e3d273c42e96ea9f5484e8c716dd97157cb8]

INTEGRATION: CWS dr32 (1.41.2); FILE MERGED 2005/01/31 14:07:37 dr 1.41.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [fdfca68beec10d90966d0f31c52cd1c9d80539d6]

INTEGRATION: CWS dr32 (1.8.148); FILE MERGED 2005/01/20 13:41:17 dr 1.8.148.1: #i40570# removed more RootData stuff


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [da97f537e58b454551fe0f1b156a2b1606619ad3]

INTEGRATION: CWS dr32 (1.38.70); FILE MERGED 2005/02/03 12:05:32 dr 1.38.70.6: #i40570# remove RootData::aStandard, changed ref handling 2005/01/20 14:24:50 dr 1.38.70.5: #i40570# removed RootData::bWriteVBAStorage 2005/01/20 13:41:17 dr 1.38.70.4: #i40570# removed more RootData stuff 2005/01/18 12:10:34 dr 1.38.70.3: RESYNC: (1.38-1.39); FILE MERGED 2005/01/17 16:44:55 dr 1.38.70.2: #i40570# removed RootData::pCharset and RootData::bCellCut 2005/01/14 13:34:12 dr 1.38.70.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [714fc1f1e3dabf54cdd4cd6c6c58a66dc2601133]

INTEGRATION: CWS dr32 (1.30.2); FILE MERGED 2005/01/31 14:07:37 dr 1.30.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [0dca65d3ec201fd7cd7cee38570db55538c45b9e]

INTEGRATION: CWS dr32 (1.15.120); FILE MERGED 2005/02/03 12:05:31 dr 1.15.120.1: #i40570# remove RootData::aStandard, changed ref handling


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [609ab650ddcbb5ac5ad6e447a3bd97443c221bb3]

INTEGRATION: CWS dr32 (1.44.70); FILE MERGED 2005/01/31 14:07:37 dr 1.44.70.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/18 12:09:46 dr 1.44.70.2: RESYNC: (1.44-1.45); FILE MERGED 2005/01/13 14:27:19 dr 1.44.70.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [ec95abcae42fd72742c15970eb231351c33e24f8]

INTEGRATION: CWS dr32 (1.57.120); FILE MERGED 2005/01/18 12:09:20 dr 1.57.120.2: RESYNC: (1.57-1.58); FILE MERGED 2005/01/13 14:27:19 dr 1.57.120.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [7c57e4058c9cdd030d71902eeb49ce4083214e56]

INTEGRATION: CWS dr32 (1.12.70); FILE MERGED 2005/01/20 13:41:17 dr 1.12.70.1: #i40570# removed more RootData stuff


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [64f2b83d9a5416d0face2f25c37434379bf33bf3]

INTEGRATION: CWS dr32 (1.15.2); FILE MERGED 2005/01/31 14:07:36 dr 1.15.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [9437855023c6aeacb07ebcbd93137dfea227048d]

INTEGRATION: CWS dr32 (1.45.148); FILE MERGED 2005/01/19 15:03:04 dr 1.45.148.2: #i40570# removed/changed constants and enums 2005/01/13 14:27:18 dr 1.45.148.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [51b79dcae242fdda00e9f5b442f31c33c5a7a471]

INTEGRATION: CWS dr32 (1.17.272); FILE MERGED 2005/01/31 14:07:36 dr 1.17.272.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 13:41:17 dr 1.17.272.1: #i40570# removed more RootData stuff


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [fa505079fc7f28a592a3f04cb0be6b89a9a897f9]

INTEGRATION: CWS dr32 (1.17.70); FILE MERGED 2005/01/20 13:41:17 dr 1.17.70.2: #i40570# removed more RootData stuff 2005/01/13 14:27:18 dr 1.17.70.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [51196034e8e852a9b31058dfa8e2225555427248]

INTEGRATION: CWS dr32 (1.15.2); FILE MERGED 2005/01/20 13:41:16 dr 1.15.2.1: #i40570# removed more RootData stuff


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c8ec6976ecd77a990623860919e0e802f6e84e34]

INTEGRATION: CWS dr32 (1.22.68); FILE MERGED 2005/01/18 12:08:15 dr 1.22.68.2: RESYNC: (1.22-1.23); FILE MERGED 2005/01/13 14:28:17 dr 1.22.68.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [d0a44f123216b19a8bdfdfc36c6155fa6b4db375]

INTEGRATION: CWS dr32 (1.9.144); FILE MERGED 2005/01/18 12:07:49 dr 1.9.144.2: RESYNC: (1.9-1.10); FILE MERGED 2005/01/13 14:28:17 dr 1.9.144.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [fbf3cf7e87a099a8cb149bc28544c713984f1afb]

INTEGRATION: CWS dr32 (1.27.28); FILE MERGED 2005/01/18 12:07:38 dr 1.27.28.2: RESYNC: (1.27-1.28); FILE MERGED 2005/01/13 14:28:17 dr 1.27.28.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [94071f9bb656da9fc0c88b73a153ef0ff5a7fb94]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/02/02 14:14:56 dr 1.1.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:54 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [cbc402e7709505e11b56cae0e4e7d0365c083303]

INTEGRATION: CWS dr32 (1.19.2); FILE MERGED 2005/02/02 16:39:02 dr 1.19.2.3: #i37725# import of color: remove transparence 2005/02/02 14:14:55 dr 1.19.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:53 dr 1.19.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [4284f79b4dddd8e20cce80c4caa3bc2ac15c6d51]

INTEGRATION: CWS dr32 (1.14.20); FILE MERGED 2005/02/04 11:43:15 dr 1.14.20.4: #i36782# fix removed 2005/02/03 15:48:48 dr 1.14.20.3: #i36782# use 'pragma setlocale' to handle UTF-8 strings 2005/01/19 15:00:15 dr 1.14.20.2: #i40570# removed/changed constants and enums 2005/01/14 13:32:14 dr 1.14.20.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [feef8d7d14fef10407273dc041556c44fc7be920]

INTEGRATION: CWS dr32 (1.20.70); FILE MERGED 2005/02/02 14:14:55 dr 1.20.70.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:53 dr 1.20.70.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 14:24:27 dr 1.20.70.3: #i40570# removed RootData::bWriteVBAStorage 2005/01/19 15:00:14 dr 1.20.70.2: #i40570# removed/changed constants and enums 2005/01/14 13:32:13 dr 1.20.70.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [eb2a09fca1ade42dca89504067c5cccf4b169555]

INTEGRATION: CWS dr32 (1.5.148); FILE MERGED 2005/02/02 14:14:55 dr 1.5.148.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [e6184f80478d3fb3fff52ccd72266417c14af107]

INTEGRATION: CWS dr32 (1.7.2); FILE MERGED 2005/01/19 15:00:14 dr 1.7.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [f7b28993c88b34fd9ab86d6d447acbf1c82de898]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/02/02 20:18:07 dr 1.1.2.3: #i10000# merge conflicts 2005/02/02 14:14:55 dr 1.1.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:52 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [e5acafb074fa6a82665e50067db81ee88dc4dafb]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/02/02 14:14:55 dr 1.1.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:52 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [66b287eb12fc14367fe71215bc6c3357249b2184]

INTEGRATION: CWS dr32 (1.20.20); FILE MERGED 2005/02/02 20:34:33 dr 1.20.20.4: #i10000# warning 2005/01/31 14:00:51 dr 1.20.20.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:13 dr 1.20.20.2: #i40570# removed/changed constants and enums 2005/01/14 13:32:13 dr 1.20.20.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [163f24bd240b88fbe74b2ebbe11b86600c780ee0]

INTEGRATION: CWS dr32 (1.10.120); FILE MERGED 2005/01/19 15:00:12 dr 1.10.120.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [703b33f9dcc8430f9eb778fb2c5fe56b20608cdc]

INTEGRATION: CWS dr32 (1.14.2); FILE MERGED 2005/02/02 14:14:54 dr 1.14.2.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:51 dr 1.14.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:12 dr 1.14.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [db7ac9f364840c97f84d8d5305ab85e686a96a18]

INTEGRATION: CWS dr32 (1.7.146); FILE MERGED 2005/02/02 14:14:54 dr 1.7.146.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:51 dr 1.7.146.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [b6048cb9b9e643105b233ac2b05036f52195a405]

INTEGRATION: CWS dr32 (1.8.148); FILE MERGED 2005/01/31 14:00:50 dr 1.8.148.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:12 dr 1.8.148.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [09868578990a3bbc27f9354329315bf217888f7b]

INTEGRATION: CWS dr32 (1.2.2); FILE MERGED 2005/01/31 14:00:50 dr 1.2.2.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:11 dr 1.2.2.2: #i40570# removed/changed constants and enums 2005/01/18 16:34:33 dr 1.2.2.1: #i10000# merge errors


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [242e5629ef83463e692de15a63458358eaaa0ce1]

INTEGRATION: CWS dr32 (1.15.148); FILE MERGED 2005/02/02 14:14:54 dr 1.15.148.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:50 dr 1.15.148.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:11 dr 1.15.148.3: #i40570# removed/changed constants and enums 2005/01/18 12:05:58 dr 1.15.148.2: RESYNC: (1.15-1.16); FILE MERGED 2005/01/14 13:32:13 dr 1.15.148.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [880481c0e7db7d593e4b4021558d32c8e60114d7]

INTEGRATION: CWS dr32 (1.17.20); FILE MERGED 2005/02/02 14:14:54 dr 1.17.20.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/19 15:00:11 dr 1.17.20.2: #i40570# removed/changed constants and enums 2005/01/14 13:32:12 dr 1.17.20.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [465f4c77b1d9ffec9c05ab04f144e747c534a2e0]

INTEGRATION: CWS dr32 (1.28.16); FILE MERGED 2005/02/04 11:56:44 jmarmion 1.28.16.6: #119010# allow imported connector areas to have a zero width or height. 2005/02/03 15:54:45 dr 1.28.16.5: #i40279# checkboxes/optionbuttons are centered vertically 2005/02/02 19:01:42 dr 1.28.16.4: RESYNC: (1.31-1.32); FILE MERGED 2005/01/31 14:00:49 dr 1.28.16.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/18 12:05:46 dr 1.28.16.2: RESYNC: (1.28-1.31); FILE MERGED 2005/01/07 14:18:00 dr 1.28.16.1: #i40126# SetPersistName() for OLE objects not needed anymore


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c17ca3520909e8653f388aa567ee9d972706d9ba]

INTEGRATION: CWS dr32 (1.14.18); FILE MERGED 2005/02/02 14:14:54 dr 1.14.18.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:48 dr 1.14.18.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:10 dr 1.14.18.3: #i40570# removed/changed constants and enums 2005/01/18 12:05:32 dr 1.14.18.2: RESYNC: (1.14-1.15); FILE MERGED 2005/01/14 13:32:12 dr 1.14.18.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [61f46b55512c854b99e4efa63583702c2f06409b]

INTEGRATION: CWS dr32 (1.1.2); FILE ADDED 2005/02/02 14:14:53 dr 1.1.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:48 dr 1.1.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [2696a4362e67dd8f537938ad9818f8874e2631b3]

INTEGRATION: CWS dr32 (1.4.70); FILE MERGED 2005/02/03 12:05:57 dr 1.4.70.6: #i40570# remove RootData::aStandard, changed ref handling 2005/02/02 14:14:53 dr 1.4.70.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:46 dr 1.4.70.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:10 dr 1.4.70.3: #i40570# removed/changed constants and enums 2005/01/18 12:05:19 dr 1.4.70.2: RESYNC: (1.4-1.5); FILE MERGED 2005/01/14 13:32:12 dr 1.4.70.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [e7157742087b5fd198ea9492e714bb486aa17c11]

INTEGRATION: CWS dr32 (1.16.18); FILE MERGED 2005/02/03 12:05:56 dr 1.16.18.5: #i40570# remove RootData::aStandard, changed ref handling 2005/01/31 14:00:46 dr 1.16.18.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:09 dr 1.16.18.3: #i40570# removed/changed constants and enums 2005/01/18 12:05:06 dr 1.16.18.2: RESYNC: (1.16-1.17); FILE MERGED 2005/01/14 13:32:11 dr 1.16.18.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [452ec8f965a101c1c34eb0e70f4db6eb84f4b3ea]

INTEGRATION: CWS dr32 (1.6.2); FILE MERGED 2005/01/19 15:00:09 dr 1.6.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [2f136a8eea93c781471bd0d5440fa877fe934057]

INTEGRATION: CWS dr32 (1.5.148); FILE MERGED 2005/01/19 15:00:08 dr 1.5.148.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [56e34f7e814ca70a2f3a4b5e7caecc033af970ec]

INTEGRATION: CWS dr32 (1.15.2); FILE MERGED 2005/02/02 14:14:53 dr 1.15.2.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:45 dr 1.15.2.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:08 dr 1.15.2.2: #i40570# removed/changed constants and enums 2005/01/18 16:34:33 dr 1.15.2.1: #i10000# merge errors


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [ebf9cdc0e5a687f1ca2a81bc8ee96c4a0190dd4a]

INTEGRATION: CWS dr32 (1.8.2); FILE MERGED 2005/02/03 12:05:56 dr 1.8.2.3: #i40570# remove RootData::aStandard, changed ref handling 2005/02/02 14:14:52 dr 1.8.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:45 dr 1.8.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [3ff6a72a72189da723a3a5b94322de26eb2bbafd]

INTEGRATION: CWS dr32 (1.8.148); FILE MERGED 2005/01/19 15:00:08 dr 1.8.148.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [0ba88c4b5d418d1e864bf6d34fa92332d7c6e320]

INTEGRATION: CWS dr32 (1.2.2); FILE MERGED 2005/02/02 14:14:52 dr 1.2.2.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:44 dr 1.2.2.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:07 dr 1.2.2.2: #i40570# removed/changed constants and enums 2005/01/18 16:34:33 dr 1.2.2.1: #i10000# merge errors


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [2388deee2d7c30cb8abaee27c94a9a508b6023ee]

INTEGRATION: CWS dr32 (1.14.2); FILE MERGED 2005/02/03 12:05:55 dr 1.14.2.4: #i40570# remove RootData::aStandard, changed ref handling 2005/01/31 14:00:44 dr 1.14.2.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:07 dr 1.14.2.2: #i40570# removed/changed constants and enums 2005/01/18 16:34:32 dr 1.14.2.1: #i10000# merge errors


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [1e852a756daedd6238abe7ece3357f5b66b2712c]

INTEGRATION: CWS dr32 (1.19.112); FILE MERGED 2005/02/02 14:14:52 dr 1.19.112.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/19 15:00:06 dr 1.19.112.3: #i40570# removed/changed constants and enums 2005/01/18 12:02:59 dr 1.19.112.2: RESYNC: (1.19-1.20); FILE MERGED 2005/01/14 13:32:11 dr 1.19.112.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [c47ccfdcfaf9666fd16186fd80683feff2c36f3f]

INTEGRATION: CWS dr32 (1.3.18); FILE MERGED 2005/02/02 14:14:52 dr 1.3.18.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/19 15:00:05 dr 1.3.18.3: #i40570# removed/changed constants and enums 2005/01/18 12:02:45 dr 1.3.18.2: RESYNC: (1.3-1.4); FILE MERGED 2005/01/14 13:32:10 dr 1.3.18.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [00b7d9dc9555e1145ec4defd8af440a019826b7e]

INTEGRATION: CWS dr32 (1.7.68); FILE MERGED 2005/01/31 14:00:44 dr 1.7.68.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:05 dr 1.7.68.3: #i40570# removed/changed constants and enums 2005/01/18 12:02:33 dr 1.7.68.2: RESYNC: (1.7-1.9); FILE MERGED 2005/01/14 13:32:10 dr 1.7.68.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [b11056eecbe513d0c01a4bfe59ba080161754791]

INTEGRATION: CWS dr32 (1.12.2); FILE MERGED 2005/02/02 19:01:30 dr 1.12.2.4: RESYNC: (1.12-1.13); FILE MERGED 2005/02/02 14:14:51 dr 1.12.2.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:43 dr 1.12.2.2: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:04 dr 1.12.2.1: #i40570# removed/changed constants and enums


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [42cf6bb51f4b0e5fbe4df759d95ca5f357d2826f]

INTEGRATION: CWS dr32 (1.49.120); FILE MERGED 2005/02/02 14:14:51 dr 1.49.120.6: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:43 dr 1.49.120.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 13:38:37 dr 1.49.120.4: #i40570# removed more RootData stuff 2005/01/19 15:00:03 dr 1.49.120.3: #i40570# removed/changed constants and enums 2005/01/18 11:59:53 dr 1.49.120.2: RESYNC: (1.49-1.50); FILE MERGED 2005/01/14 13:32:09 dr 1.49.120.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [553386bbe3300d4ac6dcc02ced7c5b2be6cc22f2]

INTEGRATION: CWS dr32 (1.19.70); FILE MERGED 2005/01/31 14:00:43 dr 1.19.70.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 13:38:36 dr 1.19.70.2: #i40570# removed more RootData stuff 2005/01/13 14:23:32 dr 1.19.70.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [85d4985c4d56dd7fb50b8633546b4cbd27839d5c]

INTEGRATION: CWS dr32 (1.30.2); FILE MERGED 2005/01/31 14:00:42 dr 1.30.2.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [4c087e77fd4da2cc2b0277ee7ff58a916139694e]

INTEGRATION: CWS dr32 (1.70.18); FILE MERGED 2005/02/03 12:05:55 dr 1.70.18.9: #i40570# remove RootData::aStandard, changed ref handling 2005/02/02 14:14:51 dr 1.70.18.8: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:42 dr 1.70.18.7: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 13:38:36 dr 1.70.18.6: #i40570# removed more RootData stuff 2005/01/19 15:00:03 dr 1.70.18.5: #i40570# removed/changed constants and enums 2005/01/18 12:01:48 dr 1.70.18.4: RESYNC: (1.70-1.71); FILE MERGED 2005/01/17 16:44:37 dr 1.70.18.3: #i40570# removed RootData::pCharset and RootData::bCellCut 2005/01/14 13:32:09 dr 1.70.18.2: #i40570# remove RootData::eHauptDateiTyp, xlBiff7 2005/01/13 14:23:31 dr 1.70.18.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [bd71dd7dbd7f08c3d35fb6c837a3a945bfdd2c43]

INTEGRATION: CWS dr32 (1.11.372); FILE MERGED 2005/01/13 14:23:31 dr 1.11.372.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [48156c0761c3e52d3527fd601fd1898a2fbb9a97]

INTEGRATION: CWS dr32 (1.22.70); FILE MERGED 2005/02/02 14:14:50 dr 1.22.70.8: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:42 dr 1.22.70.7: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 14:24:27 dr 1.22.70.6: #i40570# removed RootData::bWriteVBAStorage 2005/01/20 13:38:36 dr 1.22.70.5: #i40570# removed more RootData stuff 2005/01/19 15:00:02 dr 1.22.70.4: #i40570# removed/changed constants and enums 2005/01/18 12:01:36 dr 1.22.70.3: RESYNC: (1.22-1.23); FILE MERGED 2005/01/17 16:44:37 dr 1.22.70.2: #i40570# removed RootData::pCharset and RootData::bCellCut 2005/01/14 13:32:09 dr 1.22.70.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [843e3ec970ca653d1336aa9447a45f68c3de9955]

INTEGRATION: CWS dr32 (1.51.70); FILE MERGED 2005/01/31 14:00:41 dr 1.51.70.6: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 14:24:27 dr 1.51.70.5: #i40570# removed RootData::bWriteVBAStorage 2005/01/20 13:38:35 dr 1.51.70.4: #i40570# removed more RootData stuff 2005/01/18 12:01:22 dr 1.51.70.3: RESYNC: (1.51-1.52); FILE MERGED 2005/01/17 16:44:36 dr 1.51.70.2: #i40570# removed RootData::pCharset and RootData::bCellCut 2005/01/14 13:32:08 dr 1.51.70.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [984254191d489dc847246fb3ffd9556d60d292ce]

INTEGRATION: CWS dr32 (1.76.70); FILE MERGED 2005/01/31 14:00:41 dr 1.76.70.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:01 dr 1.76.70.4: #i40570# removed/changed constants and enums 2005/01/18 12:01:11 dr 1.76.70.3: RESYNC: (1.76-1.77); FILE MERGED 2005/01/17 16:44:36 dr 1.76.70.2: #i40570# removed RootData::pCharset and RootData::bCellCut 2005/01/13 14:23:31 dr 1.76.70.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [37ad68366d59ef30b364f71f6c0f7eacac00a812]

INTEGRATION: CWS dr32 (1.35.146); FILE MERGED 2005/01/19 15:00:01 dr 1.35.146.2: #i40570# removed/changed constants and enums 2005/01/14 13:32:08 dr 1.35.146.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [cac4dd1ec82cd18d4adbb717acecbbf798bd6873]

INTEGRATION: CWS dr32 (1.103.18); FILE MERGED 2005/02/02 14:14:50 dr 1.103.18.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:41 dr 1.103.18.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 13:38:35 dr 1.103.18.3: #i40570# removed more RootData stuff 2005/01/18 12:00:58 dr 1.103.18.2: RESYNC: (1.103-1.104); FILE MERGED 2005/01/13 14:23:30 dr 1.103.18.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [a1d2d2d4bfd385524623864f7bd5157ccd1ba94c]

INTEGRATION: CWS dr32 (1.32.70); FILE MERGED 2005/02/02 14:14:50 dr 1.32.70.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:41 dr 1.32.70.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/18 12:00:48 dr 1.32.70.2: RESYNC: (1.32-1.33); FILE MERGED 2005/01/13 14:23:30 dr 1.32.70.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [073b9ecd610d99bd31b95c35864427708bac3ecf]

INTEGRATION: CWS dr32 (1.32.18); FILE MERGED 2005/01/31 14:00:40 dr 1.32.18.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/19 15:00:00 dr 1.32.18.4: #i40570# removed/changed constants and enums 2005/01/18 12:00:38 dr 1.32.18.3: RESYNC: (1.32-1.33); FILE MERGED 2005/01/14 13:32:08 dr 1.32.18.2: #i40570# remove RootData::eHauptDateiTyp, xlBiff7 2005/01/13 14:23:29 dr 1.32.18.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [3bbc6cc71532fb6792c0517f26520a4f5db34221]

INTEGRATION: CWS dr32 (1.18.70); FILE MERGED 2005/01/19 15:00:00 dr 1.18.70.2: #i40570# removed/changed constants and enums 2005/01/14 13:32:08 dr 1.18.70.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [bad3e00590bc231e6002f98874b73d24c771e639]

INTEGRATION: CWS dr32 (1.56.70); FILE MERGED 2005/01/31 14:00:40 dr 1.56.70.6: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 14:24:26 dr 1.56.70.5: #i40570# removed RootData::bWriteVBAStorage 2005/01/20 13:38:35 dr 1.56.70.4: #i40570# removed more RootData stuff 2005/01/19 14:59:59 dr 1.56.70.3: #i40570# removed/changed constants and enums 2005/01/18 12:00:27 dr 1.56.70.2: RESYNC: (1.56-1.57); FILE MERGED 2005/01/14 13:32:07 dr 1.56.70.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [baca3b0635911f429b5025aa69106f626075ab4d]

INTEGRATION: CWS dr32 (1.24.148); FILE MERGED 2005/01/31 14:00:40 dr 1.24.148.5: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 13:38:34 dr 1.24.148.4: #i40570# removed more RootData stuff 2005/01/19 14:59:59 dr 1.24.148.3: #i40570# removed/changed constants and enums 2005/01/18 12:00:16 dr 1.24.148.2: RESYNC: (1.24-1.25); FILE MERGED 2005/01/14 13:32:07 dr 1.24.148.1: #i40570# remove RootData::eHauptDateiTyp, xlBiff7


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [7b5e3da6cda6c8c9f3d74aec8b76f43a01054359]

INTEGRATION: CWS dr32 (1.75.20); FILE MERGED 2005/02/03 14:11:58 dr 1.75.20.5: #b6224294# ignore unknown series formats 2005/02/02 14:14:49 dr 1.75.20.4: #b6219324# #i23079# #i27871# #i35812# #i37725# new address converter, import/export of view settings 2005/01/31 14:00:39 dr 1.75.20.3: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings 2005/01/20 11:43:38 dr 1.75.20.2: #i39025# dump image controls 2005/01/13 14:23:28 dr 1.75.20.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [72480d251ed9c0468ab2b8f2057e0725ec7ff12f]

INTEGRATION: CWS dr32 (1.7.272); FILE MERGED 2005/01/13 14:27:58 dr 1.7.272.1: #i40570# remove flttools.hxx


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [426c905169298445b79274aacfd71b3f005978b4]

INTEGRATION: CWS dr32 (1.26.148); FILE MERGED 2005/01/31 14:00:13 dr 1.26.148.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-21  Vladimir Glazounov  <vg@openoffice.org>  [50675de4be8757c9a557caa15e3c9bdf3ca38c47]

INTEGRATION: CWS dr32 (1.10.174); FILE MERGED 2005/01/31 13:59:58 dr 1.10.174.1: #b6219324# #i23079# #i27871# #i35812# #i37725# new ScExtDocOptions, new Excel import/export of view settings


2005-02-17  Vladimir Glazounov  <vg@openoffice.org>  [693db686424e981a964a453bf2a098df9679c2c0]

INTEGRATION: CWS dba23 (1.22.268); FILE MERGED 2005/01/19 15:31:39 fs 1.22.268.1: #i40941# -RID_OBJECTBAR_DRAWFORM


2005-02-17  Vladimir Glazounov  <vg@openoffice.org>  [1e7d1bbb02554032d959e5f298c8a050ef969e06]

INTEGRATION: CWS dba23 (1.4.370); FILE MERGED 2005/01/19 15:31:39 fs 1.4.370.1: #i40941# -RID_OBJECTBAR_DRAWFORM


2005-02-17  Vladimir Glazounov  <vg@openoffice.org>  [1a5cbe06127c991e22175838196fdd3d3c3b6939]

INTEGRATION: CWS dba23 (1.8.286); FILE MERGED 2005/01/21 06:24:51 oj 1.8.286.1: #i40648# new DataType::BOOLEAN


2005-02-17  Vladimir Glazounov  <vg@openoffice.org>  [b962e85f7d51c597636f40fd96afc1c7feb64336]

INTEGRATION: CWS dba23 (1.4.286); FILE MERGED 2005/01/21 06:24:22 oj 1.4.286.1: #i40648# new DataType::BOOLEAN


2005-02-17  Vladimir Glazounov  <vg@openoffice.org>  [9a6018de916aab3f2390ac4c9df114e944771db2]

INTEGRATION: CWS dba23 (1.47.166); FILE MERGED 2005/01/19 15:31:16 fs 1.47.166.1: #i40941# -RID_OBJECTBAR_DRAWFORM


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [d683c94c2a489e9b6593d672b97dcdbb38446120]

INTEGRATION: CWS dr33 (1.1.1.1.790); FILE MERGED 2005/02/04 15:52:41 dr 1.1.1.1.790.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [8f5acf879ea01df09ad89a04ed4d90f44a17f2f6]

INTEGRATION: CWS dr33 (1.25.184); FILE MERGED 2005/02/04 15:52:40 dr 1.25.184.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [b4e8b4a1d66f96deb10a5c5fb9a0fb9d0bff0e47]

INTEGRATION: CWS dr33 (1.22.94); FILE MERGED 2005/02/04 15:52:40 dr 1.22.94.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [20aca79d048cdbdf80dea84d085a2415e139e6de]

INTEGRATION: CWS dr33 (1.15.184); FILE MERGED 2005/02/04 15:52:40 dr 1.15.184.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [bbd17e7cbb05511b90a72d1895a41f3212f971bb]

INTEGRATION: CWS dr33 (1.5.308); FILE MERGED 2005/02/04 15:52:39 dr 1.5.308.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [5ea2741f38aba39b00eac840b5e9f36e20e4d9ce]

INTEGRATION: CWS dr33 (1.8.752); FILE MERGED 2005/02/04 15:52:39 dr 1.8.752.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [be08860d98fe33c348652a075dfe7e28bea69296]

INTEGRATION: CWS dr33 (1.20.308); FILE MERGED 2005/02/04 15:52:39 dr 1.20.308.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [550db31297b93bdd8e9ea86d3a0a4194e7c3d8e6]

INTEGRATION: CWS dr33 (1.25.308); FILE MERGED 2005/02/04 15:52:38 dr 1.25.308.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [8f1a3ae53c4a2b82c800d511ed031591e308df02]

INTEGRATION: CWS dr33 (1.11.408); FILE MERGED 2005/02/04 15:52:38 dr 1.11.408.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [e99587986e3ccf8bb5bf0c8abb8ceeac1adacdf7]

INTEGRATION: CWS dr33 (1.21.182); FILE MERGED 2005/02/04 15:52:38 dr 1.21.182.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [0c63b2be8db5c8058c8347ddcea913f60fac291c]

INTEGRATION: CWS dr33 (1.58.164); FILE MERGED 2005/02/04 15:52:37 dr 1.58.164.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [64ca641e8c1c8b730ccab1b4e3c7176578a5f293]

INTEGRATION: CWS dr33 (1.13.184); FILE MERGED 2005/02/09 12:55:16 dr 1.13.184.1: #i42320# load/save 'use labels in formulas' option


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [b17b65d4aa2211093ec036448fb77cf6aaf99686]

INTEGRATION: CWS dr33 (1.9.88); FILE MERGED 2005/02/04 15:52:37 dr 1.9.88.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [0d6221a4ea5240120f3f5d5b87b0aa60b7ad33df]

INTEGRATION: CWS dr33 (1.22.36); FILE MERGED 2005/02/09 12:55:04 dr 1.22.36.1: #i42320# load/save 'use labels in formulas' option


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [29692035036d1f7df843fee002e78bd0c2506722]

INTEGRATION: CWS dr33 (1.11.38); FILE MERGED 2005/02/04 15:52:36 dr 1.11.38.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [e50eff7da1fb13cc420c167cc4b6a886b4bbdfea]

INTEGRATION: CWS dr33 (1.6.622); FILE MERGED 2005/02/09 12:55:03 dr 1.6.622.1: #i42320# load/save 'use labels in formulas' option


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [b53e2eabb8ecbe15a00fd6b4366cce6514594ee1]

INTEGRATION: CWS dr33 (1.4.308); FILE MERGED 2005/02/04 15:52:36 dr 1.4.308.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [3933357cb025647c4955f7219fa82213e5f86695]

INTEGRATION: CWS dr33 (1.30.38); FILE MERGED 2005/02/09 12:55:03 dr 1.30.38.1: #i42320# load/save 'use labels in formulas' option


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [5ca376452cb1e9d039f1e2ae14faf7298982eced]

INTEGRATION: CWS dr33 (1.50.36); FILE MERGED 2005/02/09 12:54:44 dr 1.50.36.1: #i42320# load/save 'use labels in formulas' option


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [56da10d12e69ebf39d7fe8b1b41a8a2df1b759a3]

INTEGRATION: CWS dr33 (1.71.36); FILE MERGED 2005/02/09 12:54:44 dr 1.71.36.1: #i42320# load/save 'use labels in formulas' option


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [abf71168d92816fb6a0c634c5ce2e78523932644]

INTEGRATION: CWS dr33 (1.57.36); FILE MERGED 2005/02/09 12:54:43 dr 1.57.36.1: #i42320# load/save 'use labels in formulas' option


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [400ff53819d84c34832f5d12de756f94995cdd88]

INTEGRATION: CWS dr33 (1.75.64); FILE MERGED 2005/02/04 15:52:35 dr 1.75.64.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [baec88376539f30acd3e6fdeea8d9efd2a4f1655]

INTEGRATION: CWS dr33 (1.12.150); FILE MERGED 2005/02/04 15:52:34 dr 1.12.150.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [477ea865e08feb79f5e86cb8a623ba3387caefb1]

INTEGRATION: CWS dr33 (1.32.94); FILE MERGED 2005/02/04 15:52:34 dr 1.32.94.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [1afc389317024af6e577a4cc3ef38bf51eb68b88]

INTEGRATION: CWS dr33 (1.18.150); FILE MERGED 2005/02/04 15:52:34 dr 1.18.150.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [7c300ab4b7f41ab9e2872f1ec12dcd6440d3dab1]

INTEGRATION: CWS dr33 (1.41.202); FILE MERGED 2005/02/04 15:52:33 dr 1.41.202.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [aa7cf74906d8005f54ef48fd2e34d30690709d88]

INTEGRATION: CWS dr33 (1.63.94); FILE MERGED 2005/02/04 15:52:32 dr 1.63.94.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [37c5c5e6d13f54b339a9eb3e20c44715f777278c]

INTEGRATION: CWS dr33 (1.47.94); FILE MERGED 2005/02/04 15:52:32 dr 1.47.94.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [1d23aa1acad5eebb28c24d6a16b3451b12413a70]

INTEGRATION: CWS dr33 (1.8.308); FILE MERGED 2005/02/04 15:52:31 dr 1.8.308.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [e6f6332790b55e876ad1deaf0cfef61df6df738f]

INTEGRATION: CWS dr33 (1.10.290); FILE MERGED 2005/02/04 15:52:31 dr 1.10.290.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [a1180c8ab2b71efc35910dfaac532d6ab4b11a2d]

INTEGRATION: CWS dr33 (1.8.290); FILE MERGED 2005/02/04 15:52:30 dr 1.8.290.1: #i36782# remove non-ASCII chars from source code


2005-02-16  Vladimir Glazounov  <vg@openoffice.org>  [b223ac18ac76993bf6187aadb9d298ce7df95efe]

INTEGRATION: CWS dr35 (1.81.222); FILE MERGED 2005/02/15 10:27:08 dr 1.81.222.2: #i42698# german dialog title: Grafik einfuegen -> Bild einfuegen 2005/02/14 15:25:23 dr 1.81.222.1: #i42698# Insert Graphics -> Insert Picture


2005-02-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [f66082f098184891811f41f94b1b32ee885331e7]

INTEGRATION: CWS pj17 (1.32.76); FILE MERGED 2005/02/09 16:28:34 gh 1.32.76.3: do not unload used module 2005/02/07 19:00:09 pjanik 1.32.76.2: #i41132#: Do not link with libtfu, load it dynamically when needed. 2005/01/22 18:07:28 pjanik 1.32.76.1: #i41132#: Bring the caller back, update to new resmgr code.


2005-02-07  Rüdiger Timm  <rt@openoffice.org>  [5c5ca640a1d42937e03d827b0c565933d9132634]

INTEGRATION: CWS templatetype1 (1.24.34); FILE MERGED 2005/02/01 07:48:34 mav 1.24.34.1: #i41172# mediatypes for oasis templates


2005-02-07  Rüdiger Timm  <rt@openoffice.org>  [78f9bc41ee3a3985671c95608382fb1805346602]

INTEGRATION: CWS templatetype1 (1.25.34); FILE MERGED 2005/02/01 07:48:33 mav 1.25.34.1: #i41172# mediatypes for oasis templates


2005-02-02  Rüdiger Timm  <rt@openoffice.org>  [dfc36ebbe650958cd1a5bfb6a3af4ecbb68165b1]

INTEGRATION: CWS validationbeta (1.80.34); FILE MERGED 2005/02/01 12:00:37 sab 1.80.34.1: #i41737#; different length of XML_CONTENT_VALIDATION_NAME


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [6e0b7d41e80226db1e952a801d68e97f00190d87]

INTEGRATION: CWS vcl34 (1.2.128); FILE MERGED 2005/01/13 11:47:55 ssa 1.2.128.1: #i38261# breaks added


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [36b469a4f2a2b1814130f69079e22e185f71ca44]

INTEGRATION: CWS vcl34 (1.2.128); FILE MERGED 2005/01/13 11:47:54 ssa 1.2.128.1: #i38261# breaks added


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [8112cabe6f83e70aba197c8370f1784b57aabf19]

INTEGRATION: CWS vcl34 (1.2.128); FILE MERGED 2005/01/13 11:47:53 ssa 1.2.128.1: #i38261# breaks added


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [c01445826599e791c1ebbc3eb73dbd1e694d0eb2]

INTEGRATION: CWS vcl34 (1.2.128); FILE MERGED 2005/01/13 11:47:52 ssa 1.2.128.1: #i38261# breaks added


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [84b8c5b37fba5100754592ca7e5b66814d47e9ab]

INTEGRATION: CWS vcl34 (1.2.58); FILE MERGED 2005/01/13 11:47:51 ssa 1.2.58.1: #i38261# breaks added


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [549ce9ca3e3e5c8ac2f9fbbe30b86f3a72af2f27]

INTEGRATION: CWS mav15 (1.19.58); FILE MERGED 2005/01/21 12:59:04 mav 1.19.58.1: #i39746# cache the visual area size for OLE objects and switch own objects to RUNNING state automatically


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [fd9302e5127f2c09798d19db90c54a7243476138]

INTEGRATION: CWS mav15 (1.22.58); FILE MERGED 2005/01/21 12:59:01 mav 1.22.58.1: #i39746# cache the visual area size for OLE objects and switch own objects to RUNNING state automatically


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [d52e10b76dde4bef78823c959f0f019769a0144b]

INTEGRATION: CWS mav15 (1.18.60); FILE MERGED 2005/01/21 12:59:00 mav 1.18.60.1: #i39746# cache the visual area size for OLE objects and switch own objects to RUNNING state automatically


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [6cbbaeb70c188623470b67d4c876d27107e2f87a]

INTEGRATION: CWS mav15 (1.6.136); FILE MERGED 2005/01/23 12:56:30 mav 1.6.136.1: 119038 allow exceptions


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [4212604a4867c52da1bd84a1d67378f678d1976f]

INTEGRATION: CWS mav15 (1.17.4); FILE MERGED 2005/01/18 15:43:06 mav 1.17.4.1: #119038# possibility to link to an encrypted document


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [beeae8894a50cf92c9182bd79878c3ac880c43e0]

INTEGRATION: CWS mav15 (1.12.58); FILE MERGED 2005/01/21 12:58:57 mav 1.12.58.1: #i39746# cache the visual area size for OLE objects and switch own objects to RUNNING state automatically


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [3e1748bdc2479f59a28c34292aa21d8b4123de93]

INTEGRATION: CWS mav15 (1.35.58); FILE MERGED 2005/01/21 12:58:55 mav 1.35.58.1: #i39746# cache the visual area size for OLE objects and switch own objects to RUNNING state automatically


2005-01-31  Rüdiger Timm  <rt@openoffice.org>  [35243498af01f18e1cc4f0a923484a7e77968272]

INTEGRATION: CWS fwkbugfix05 (1.8.12); FILE MERGED 2005/01/19 12:22:02 mba 1.8.12.2: RESYNC: (1.8-1.10); FILE MERGED 2004/12/18 22:34:38 mba 1.8.12.1: #i38912#: type detection crashed without preselection


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [7cd69991f08ab7f3aa0b8544c0f01ebf4cbd8503]

INTEGRATION: CWS calc28 (1.14.142); FILE MERGED 2005/01/07 16:06:54 nn 1.14.142.1: #i34458# don't put SfxStringItem into SID_ATTR_POSITION or SID_ATTR_SIZE


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [f3a7f59989a248ca873488b19d1e8f9726c233c9]

INTEGRATION: CWS calc28 (1.33.48); FILE MERGED 2005/01/07 16:06:54 nn 1.33.48.1: #i34458# don't put SfxStringItem into SID_ATTR_POSITION or SID_ATTR_SIZE


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [1fd72da5daf0b9018861be4b0ff3488c06cabde3]

INTEGRATION: CWS calc28 (1.15.118); FILE MERGED 2005/01/06 17:46:26 nn 1.15.118.1: #i34458# Don't put a SvxSizeItem into SID_TABLE_CELL


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [eb2e5811ab6b3450049f50ed22e91f941d242f79]

INTEGRATION: CWS calc28 (1.18.194); FILE MERGED 2005/01/21 10:05:31 dr 1.18.194.1: #i40054# performance in DP layout dialog


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [76ffb34f8a72dbdb59f836dd104c09e41c878676]

INTEGRATION: CWS calc28 (1.7.164); FILE MERGED 2005/01/21 10:05:29 dr 1.7.164.1: #i40054# performance in DP layout dialog


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [0afe577f065557e160277806e21df0d2043bc1cf]

INTEGRATION: CWS calc28 (1.19.210); FILE MERGED 2005/01/18 16:41:13 nn 1.19.210.1: #i40704# don't overwrite change action's cell pointer with formatted text


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [2a8fbef8c6ac09d056cd52ac3a038f62e59505ac]

INTEGRATION: CWS calc28 (1.18.144); FILE MERGED 2005/01/24 13:56:31 nn 1.18.144.3: RESYNC: (1.18-1.19); FILE MERGED 2005/01/13 12:25:21 jmarmion 1.18.144.2: #i39589# place WriteRangeList() definition in the correct area. 2005/01/13 10:49:13 jmarmion 1.18.144.1: #i39589# use EXC_MERGEDCELLS_MAXCOUNT when exporting to xls.


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [a1719f7997626a49c4494ff46141080d1aa63718]

INTEGRATION: CWS calc28 (1.6.144); FILE MERGED 2005/01/13 10:49:13 jmarmion 1.6.144.1: #i39589# use EXC_MERGEDCELLS_MAXCOUNT when exporting to xls.


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [1bb9a257ec9f851a5f10339fe509768a76920220]

INTEGRATION: CWS calc28 (1.8.62); FILE MERGED 2005/01/24 13:51:11 nn 1.8.62.2: RESYNC: (1.8-1.9); FILE MERGED 2005/01/13 10:49:14 jmarmion 1.8.62.1: #i39589# use EXC_MERGEDCELLS_MAXCOUNT when exporting to xls.


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [f162d6ce3ea7b5d4cef39fd01271b59cbcb48452]

INTEGRATION: CWS calc28 (1.18.144); FILE MERGED 2005/01/24 13:47:46 nn 1.18.144.3: RESYNC: (1.18-1.19); FILE MERGED 2005/01/13 14:20:51 jmarmion 1.18.144.2: #i39589# place WriteRangeList() in the correct location. 2005/01/13 10:49:54 jmarmion 1.18.144.1: #i39589# use EXC_MERGEDCELLS_MAXCOUNT when exporting to xls.


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [aa374c3a6070139d5a526f587dc14147f3b5a62e]

INTEGRATION: CWS calc28 (1.28.4); FILE MERGED 2005/01/24 13:46:23 nn 1.28.4.2: RESYNC: (1.28-1.31); FILE MERGED 2005/01/11 14:53:40 jmarmion 1.28.4.1: #i39167# - support "full width" for both text and textless objects


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [1a2303088298032b38b680e7f0d2fd8916f566d6]

INTEGRATION: CWS calc28 (1.11.62); FILE MERGED 2005/01/24 13:43:48 nn 1.11.62.2: RESYNC: (1.11-1.12); FILE MERGED 2005/01/13 10:49:55 jmarmion 1.11.62.1: #i39589# use EXC_MERGEDCELLS_MAXCOUNT when exporting to xls.


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [0be4b7661712ad4a07aa0dc6abdad3c7a64f0e6b]

INTEGRATION: CWS calc28 (1.32.48); FILE MERGED 2005/01/24 12:43:47 nn 1.32.48.1: #i40539# CompareFunc: check bEmpty before looking for error values


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [027fca1a4d508c0838456269dc7623923e155afa]

INTEGRATION: CWS calc28 (1.21.212); FILE MERGED 2005/01/18 16:40:37 nn 1.21.212.1: #i40704# don't overwrite change action's cell pointer with formatted text


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [e0718c502f7b53ac64893d3f56c62537f411706e]

INTEGRATION: CWS calc28 (1.10.186); FILE MERGED 2005/01/20 11:08:49 nn 1.10.186.1: #i40054# faster name access to members


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [5b9ec0e32af93511f40cbaa85b414bb49a6375bc]

INTEGRATION: CWS calc28 (1.14.186); FILE MERGED 2005/01/21 10:04:50 dr 1.14.186.1: #i40054# performance in DP layout dialog


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [cd991d3baaae35703a014ee1894f1888c157359c]

INTEGRATION: CWS calc28 (1.13.142); FILE MERGED 2005/01/21 10:03:42 dr 1.13.142.1: #i10000# class/struct usage


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [ef6b5582974d2a4a14b47895df09dcb47eb0c53e]

INTEGRATION: CWS calc28 (1.5.270); FILE MERGED 2005/01/21 10:04:22 dr 1.5.270.1: #i40054# performance in DP layout dialog


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [dd14bf2358ac77701bc6e84dab67dad1a8388b19]

INTEGRATION: CWS calc28 (1.5.186); FILE MERGED 2005/01/20 11:08:11 nn 1.5.186.1: #i40054# faster name access to members


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [a92b56c15d11e0f4e4f14e77a5c5dfd514b1f9c4]

INTEGRATION: CWS calc28 (1.8.164); FILE MERGED 2005/01/21 10:04:21 dr 1.8.164.1: #i40054# performance in DP layout dialog


2005-01-28  Rüdiger Timm  <rt@openoffice.org>  [5fee22b44003edd063373383e2b34cbf57eb4e24]

INTEGRATION: CWS calc28 (1.23.186); FILE MERGED 2005/01/18 16:40:14 nn 1.23.186.1: #i40704# don't overwrite change action's cell pointer with formatted text


2005-01-27  Rüdiger Timm  <rt@openoffice.org>  [d21688625ac1a50744fbc6d360b41949402b5909]

INTEGRATION: CWS oasisbf4 (1.182.14); FILE MERGED 2005/01/21 14:20:32 mib 1.182.14.3: RESYNC: (1.184-1.187); FILE MERGED 2004/12/08 08:45:55 mib 1.182.14.2: RESYNC: (1.182-1.184); FILE MERGED 2004/11/23 13:04:26 mib 1.182.14.1: #i36961#: export 0am to <dc:date> in annotations


2005-01-27  Rüdiger Timm  <rt@openoffice.org>  [622c8728a3c365fb53787805738ccc217ba67553]

INTEGRATION: CWS oasisbf4 (1.17.8); FILE MERGED 2004/12/14 15:45:07 sab 1.17.8.1: #i38570#; always write the data-field


2005-01-21  Kurt Zenker  <kz@openoffice.org>  [059aeea600dfaba32bbdd2e919d482e4b96c6ef7]

INTEGRATION: CWS impress23 (1.47.46); FILE MERGED 2004/12/10 11:32:37 dbo 1.47.46.1: #i38346# 3d-settings only visible when extruded cusom shape, fontworkbar related to selected fontwork


2005-01-21  Kurt Zenker  <kz@openoffice.org>  [ead33397b3e72179b3bf0c4d8fd5faaf8da705bb]

INTEGRATION: CWS svg03 (1.35.54); FILE MERGED 2005/01/15 13:41:34 ka 1.35.54.1: #i38949#: use correct storage


2005-01-18  Kurt Zenker  <kz@openoffice.org>  [2c65433d3314141f4d4c5c7a4b4e05bbb8b6976f]

INTEGRATION: CWS systemboost (1.16.150); FILE MERGED 2005/01/14 09:53:01 cmc 1.16.150.1: #i36983# optional build with system-boost


2005-01-18  Kurt Zenker  <kz@openoffice.org>  [9bcb578f1909d708195e229b15150a3c7a2f70fc]

INTEGRATION: CWS fwkbugfix04 (1.28.108); FILE MERGED 2004/12/15 12:59:18 mba 1.28.108.1: #i33585#: remove obsolete resources


2005-01-18  Kurt Zenker  <kz@openoffice.org>  [14acb91a1251f6d24b026a274de974e33f0d9b5e]

INTEGRATION: CWS fwkbugfix04 (1.8.32); FILE MERGED 2005/01/09 12:52:46 mba 1.8.32.1: #i33168#: wrong template flag used


2005-01-18  Kurt Zenker  <kz@openoffice.org>  [d6b7e6d68cefe387551174fd0f5ef7abb4999446]

INTEGRATION: CWS fwkbugfix04 (1.8.110); FILE MERGED 2004/12/15 13:09:11 mba 1.8.110.1: obsolete sfx headers removed


2005-01-18  Kurt Zenker  <kz@openoffice.org>  [32c89b02bc952934df68426b9b112be2f18fe77b]

INTEGRATION: CWS fwkbugfix04 (1.2.214); FILE MERGED 2004/12/15 13:09:42 mba 1.2.214.1: obsolete sfx headers removed


2005-01-18  Kurt Zenker  <kz@openoffice.org>  [ae08c61d09d77a6d0e9ebdd8dbd2f9b79f256477]

INTEGRATION: CWS fwkbugfix04 (1.6.2); FILE MERGED 2004/12/16 11:36:46 mba 1.6.2.1: remove obsolete sfx headers


2005-01-18  Kurt Zenker  <kz@openoffice.org>  [13d279fe39e2f550dc4b2af6c6db814a94fe1041]

INTEGRATION: CWS fwkbugfix04 (1.10.338); FILE MERGED 2004/12/15 13:08:38 mba 1.10.338.1: obsolete sfx headers removed


2005-01-18  Kurt Zenker  <kz@openoffice.org>  [1ac717fa65562e7c4a7ace79758c2cd8e1ccc91e]

INTEGRATION: CWS fwkbugfix04 (1.6.140); FILE MERGED 2004/12/15 12:58:52 mba 1.6.140.1: #i33585#: remove obsolete resources


2005-01-17  Niklas Nebel  <nn@openoffice.org>  [844b35690d66914bc50ca9050f311c588552cd80]

#i10000# InsertObject 4th parameter


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [46cfe316c9fe3d5aeebb163e5b69501914be47d1]

INTEGRATION: CWS dr31 (1.3.30); FILE MERGED 2005/01/06 11:07:28 dr 1.3.30.1: #i39249# do not hide ltr/rtl buttons


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [030a05f843b52e53aa9db73796e72024842aa856]

INTEGRATION: CWS dr31 (1.4.30); FILE MERGED 2005/01/12 14:17:26 dr 1.4.30.2: #i39782# don't hide text direction icons 2005/01/06 11:07:27 dr 1.4.30.1: #i39249# do not hide ltr/rtl buttons


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [42d336db10eb4156076e9009f245c90fbbbca3f8]

INTEGRATION: CWS dr31 (1.18.92); FILE MERGED 2004/12/17 15:58:31 dr 1.18.92.2: RESYNC: (1.18-1.19); FILE MERGED 2004/12/03 12:04:16 dr 1.18.92.1: #i38052# missing separator in Format->PrintRanges


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [b5e468f8555c158a018b67ba4ce8b3f679155f81]

INTEGRATION: CWS dr31 (1.8.10); FILE MERGED 2004/12/21 15:25:26 dr 1.8.10.1: #i23425# detect BIFF5-8 in flat stream files


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [5fc63f8ff6beefdd2684303481abd39eb25660b2]

INTEGRATION: CWS dr31 (1.23.226); FILE MERGED 2005/01/10 11:55:27 dr 1.23.226.2: #i39700# correction for fixed text width 2005/01/06 10:41:49 dr 1.23.226.1: #i39700# fixed texts too small for pt-BR


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [a47c98ea1c412e463c8910449937ce5c70e1da9d]

INTEGRATION: CWS dr31 (1.60.118); FILE MERGED 2005/01/05 17:32:45 dr 1.60.118.1: #i39667# UTF8->MS1252


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [a97b27603510185da36502cf0fec062bde6a4ef7]

INTEGRATION: CWS dr31 (1.41.168); FILE MERGED 2005/01/06 10:32:15 dr 1.41.168.1: #i39699# fixed texts too small for pt-BR


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [bd54c39916728870655cc91c946815ba97488500]

INTEGRATION: CWS dr31 (1.31.226); FILE MERGED 2005/01/10 11:54:59 dr 1.31.226.2: #i39696# correction for fixed text width 2005/01/06 10:13:47 dr 1.31.226.1: #i39699# fixed texts too small for pt-BR


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [f05b4a3687c81fe394aa5d5466f33329db8f2d3b]

INTEGRATION: CWS dr31 (1.39.226); FILE MERGED 2004/12/21 16:39:31 dr 1.39.226.1: #i38688# 'Display borders in' -> 'Display borders'


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [028c3fc05042983425aac41e3de78e38add90935]

INTEGRATION: CWS dr31 (1.73.32); FILE MERGED 2005/01/06 16:30:22 dr 1.73.32.3: #i39464# autofilter import/export 2004/12/20 17:42:41 dr 1.73.32.2: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:07:58 dr 1.73.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [03df3d451bf3fd3c68338e2cfae277575964c3e3]

INTEGRATION: CWS dr31 (1.19.32); FILE MERGED 2004/12/20 17:42:41 dr 1.19.32.2: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:07:58 dr 1.19.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [f31fa452a1691c267263b0878dd88470775e6f6b]

INTEGRATION: CWS dr31 (1.18.118); FILE MERGED 2004/12/20 17:41:44 dr 1.18.118.2: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:07:32 dr 1.18.118.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [5f1ff5fb2e1f91e281163c083062794e9b963f37]

INTEGRATION: CWS dr31 (1.18.32); FILE MERGED 2004/12/17 15:07:31 dr 1.18.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [4ca69a72159d4260b8b6b52dda9f6958cdc70afb]

INTEGRATION: CWS dr31 (1.10.116); FILE MERGED 2004/12/09 09:04:41 dr 1.10.116.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [5b2df6dff0373d6aa39fc7db19c53a1e2b33b9b8]

INTEGRATION: CWS dr31 (1.1.2); FILE ADDED 2004/12/17 15:07:26 dr 1.1.2.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [675d4c0a786bb21b258a8d36cd41c05e9e085ca7]

INTEGRATION: CWS dr31 (1.5.118); FILE MERGED 2004/12/17 15:07:31 dr 1.5.118.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [04bd0912e01524d89cdd67f8f46b3f08fc2fd275]

INTEGRATION: CWS dr31 (1.12.88); FILE MERGED 2005/01/06 16:29:59 dr 1.12.88.2: #i39464# autofilter import/export 2004/12/09 09:04:41 dr 1.12.88.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [175f7789f4992c799749fbe3b75ed67661701971]

INTEGRATION: CWS dr31 (1.21.88); FILE MERGED 2005/01/06 16:29:58 dr 1.21.88.2: #i39464# autofilter import/export 2004/12/17 15:07:31 dr 1.21.88.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [242ce29d0e4cb0618f202c111788dc524a24f78a]

INTEGRATION: CWS dr31 (1.13.88); FILE MERGED 2005/01/05 14:04:54 dr 1.13.88.2: RESYNC: (1.13-1.14); FILE MERGED 2004/12/17 15:07:31 dr 1.13.88.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [39581bc62c6613e1e6d56aac22eefbc5c4ffa8b0]

INTEGRATION: CWS dr31 (1.13.88); FILE MERGED 2004/12/17 15:07:31 dr 1.13.88.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:40 dr 1.13.88.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [4028c5dda733c94130f92aedb9385a31e411b204]

INTEGRATION: CWS dr31 (1.1.2); FILE ADDED 2004/12/17 15:07:25 dr 1.1.2.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [46cc3fdead35c25f57ef565e2862c369b8fd3a8d]

INTEGRATION: CWS dr31 (1.10.118); FILE MERGED 2004/12/17 15:07:30 dr 1.10.118.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:40 dr 1.10.118.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [3ee70097b39939b608ae538ea59e357446da54c0]

INTEGRATION: CWS dr31 (1.9.118); FILE MERGED 2005/01/05 14:04:46 dr 1.9.118.2: RESYNC: (1.9-1.10); FILE MERGED 2004/12/17 15:07:30 dr 1.9.118.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [98b50bc30cd797751b0cee850d7af433b966fa63]

INTEGRATION: CWS dr31 (1.14.32); FILE MERGED 2004/12/17 15:07:30 dr 1.14.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:40 dr 1.14.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [af45e6c4bfdda85b84c2900bb84017133fc7b49b]

INTEGRATION: CWS dr31 (1.8.118); FILE MERGED 2004/12/17 15:07:29 dr 1.8.118.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [bac735a58683afb854fc5b1d90bcc3b3064d95fe]

INTEGRATION: CWS dr31 (1.4.32); FILE MERGED 2004/12/17 15:07:29 dr 1.4.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [1d64fab617e2a7c92e12ea7490bd73b3c217c3ad]

INTEGRATION: CWS dr31 (1.11.88); FILE MERGED 2005/01/07 10:26:47 dr 1.11.88.4: #i10000# missing dtors 2005/01/05 14:04:37 dr 1.11.88.3: RESYNC: (1.11-1.12); FILE MERGED 2004/12/17 15:07:29 dr 1.11.88.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:39 dr 1.11.88.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [5fe9db8b1310e01d9dcd1377034496c51478ac69]

INTEGRATION: CWS dr31 (1.13.32); FILE MERGED 2004/12/17 15:07:28 dr 1.13.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:39 dr 1.13.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [74fe512908b3820ce34db5c2eca0e5cf8590c788]

INTEGRATION: CWS dr31 (1.6.118); FILE MERGED 2004/12/20 17:41:43 dr 1.6.118.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:07:28 dr 1.6.118.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:39 dr 1.6.118.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [f316df2ea1bc6c71492b14dbff148ee895abe302]

INTEGRATION: CWS dr31 (1.5.118); FILE MERGED 2004/12/20 17:41:43 dr 1.5.118.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:07:28 dr 1.5.118.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:39 dr 1.5.118.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [1d84bc84261c7f78c0967f58eb19b50a5641f7ea]

INTEGRATION: CWS dr31 (1.1.2); FILE ADDED 2004/12/20 17:41:43 dr 1.1.2.2: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:07:25 dr 1.1.2.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [710a3c39f074972e15bb8819a85d58f4ab451c33]

INTEGRATION: CWS dr31 (1.9.32); FILE MERGED 2004/12/20 17:41:43 dr 1.9.32.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:07:28 dr 1.9.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:38 dr 1.9.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [459a4df15d061b851f4ee39b41d05798cbb94f3e]

INTEGRATION: CWS dr31 (1.13.88); FILE MERGED 2004/12/17 15:07:27 dr 1.13.88.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [c720699774fe9bc3679f4e7299fa4f9fe15e9afc]

INTEGRATION: CWS dr31 (1.2.32); FILE MERGED 2005/01/07 10:26:47 dr 1.2.32.4: #i10000# missing dtors 2004/12/20 17:41:42 dr 1.2.32.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:07:27 dr 1.2.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:37 dr 1.2.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [fb066bc74411461e441018d632d7078df5a1eb2a]

INTEGRATION: CWS dr31 (1.4.32); FILE MERGED 2004/12/09 09:04:37 dr 1.4.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [74d4beb13a8e68e9490b84cfaffea11060076e13]

INTEGRATION: CWS dr31 (1.8.32); FILE MERGED 2004/12/17 15:07:27 dr 1.8.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:36 dr 1.8.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [e24e843341c1bbb5155602d7f6855c95950b498a]

INTEGRATION: CWS dr31 (1.40.116); FILE MERGED 2004/12/17 15:07:27 dr 1.40.116.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [2849139b6a317be584e49796e96f646f185acf22]

INTEGRATION: CWS dr31 (1.38.32); FILE MERGED 2004/12/17 15:07:27 dr 1.38.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [9fb71f10e67f5a91451526d52bd3759ecc334ea4]

INTEGRATION: CWS dr31 (1.29.36); FILE MERGED 2004/12/09 09:04:36 dr 1.29.36.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [d8451381f9b751da04e48a58870c1fbfc67b3714]

INTEGRATION: CWS dr31 (1.44.32); FILE MERGED 2004/12/17 15:07:26 dr 1.44.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:04:35 dr 1.44.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [a1d49c9666bc219698b231ae797fe8a719d8f8fc]

INTEGRATION: CWS dr31 (1.57.88); FILE MERGED 2005/01/06 16:29:57 dr 1.57.88.2: #i39464# autofilter import/export 2004/12/20 20:47:47 dr 1.57.88.1: #i38093# set CR_FILTERED at filtered hidden rows


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [32b0a6a38ebe90e864a0d650e2f0f0ad26f84027]

INTEGRATION: CWS dr31 (1.14.118); FILE MERGED 2004/12/17 15:07:26 dr 1.14.118.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [6f7281172784957ae301e070fe88d1c77f356739]

INTEGRATION: CWS dr31 (1.14.32); FILE MERGED 2004/12/17 15:07:26 dr 1.14.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [2f5186e5505147ea9559e88d51bb0f8a584e16f4]

INTEGRATION: CWS dr31 (1.18.118); FILE MERGED 2004/12/20 17:40:51 dr 1.18.118.2: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:05:53 dr 1.18.118.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [4f6215b1eda9d0674397561dda726947f2791197]

INTEGRATION: CWS dr31 (1.12.88); FILE MERGED 2004/12/09 09:03:29 dr 1.12.88.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [3adc937c8672678227e2c055062523b304b05558]

INTEGRATION: CWS dr31 (1.5.32); FILE MERGED 2005/01/05 14:04:08 dr 1.5.32.2: RESYNC: (1.5-1.6); FILE MERGED 2004/12/17 15:05:53 dr 1.5.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [69a4c10d12ce1e5b2cb2ab462cc041ab8a0edd7f]

INTEGRATION: CWS dr31 (1.6.88); FILE MERGED 2004/12/09 10:16:03 dr 1.6.88.2: #i37965# import/export of control<->macro links, don't show warning for #i38718# 2004/12/09 09:03:29 dr 1.6.88.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [9c039bb37893959e99992584b10b753d4f2139b1]

INTEGRATION: CWS dr31 (1.13.88); FILE MERGED 2004/12/17 15:05:53 dr 1.13.88.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:29 dr 1.13.88.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [076310004cdfa44c8c59a4de31394a58bb1e3be1]

INTEGRATION: CWS dr31 (1.1.2); FILE ADDED 2004/12/17 15:05:46 dr 1.1.2.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [120e8bd80360a84b1e4edec5c341034141f9fcc6]

INTEGRATION: CWS dr31 (1.15.118); FILE MERGED 2004/12/17 15:05:52 dr 1.15.118.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:28 dr 1.15.118.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [93a0840a2ece3bc5390df8a4c89f244e09454752]

INTEGRATION: CWS dr31 (1.26.30); FILE MERGED 2005/01/06 16:29:38 dr 1.26.30.4: #i39464# autofilter import/export 2005/01/05 14:03:34 dr 1.26.30.3: RESYNC: (1.27-1.28); FILE MERGED 2004/12/17 15:49:43 dr 1.26.30.2: RESYNC: (1.26-1.27); FILE MERGED 2004/12/09 09:03:28 dr 1.26.30.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [fe54c52481a073f15089f74d8e10d28ba60dc217]

INTEGRATION: CWS dr31 (1.13.88); FILE MERGED 2005/01/05 14:03:25 dr 1.13.88.2: RESYNC: (1.13-1.14); FILE MERGED 2004/12/17 15:05:52 dr 1.13.88.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [25d56bb20e43de326a5b1769a6123c10bf51596e]

INTEGRATION: CWS dr31 (1.4.32); FILE MERGED 2004/12/20 17:40:51 dr 1.4.32.2: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:05:52 dr 1.4.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [302175af35662a521a11fefd9d5185670e386674]

INTEGRATION: CWS dr31 (1.15.88); FILE MERGED 2005/01/07 10:26:29 dr 1.15.88.3: #i10000# missing dtors 2005/01/05 14:03:17 dr 1.15.88.2: RESYNC: (1.15-1.16); FILE MERGED 2004/12/17 15:05:51 dr 1.15.88.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [9ff3b47baec941abda1d9b88e93233a8af8c7544]

INTEGRATION: CWS dr31 (1.5.32); FILE MERGED 2004/12/17 15:05:51 dr 1.5.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [00b37387c6bc0dc78841c11ed291dfdb365172f6]

INTEGRATION: CWS dr31 (1.14.32); FILE MERGED 2004/12/17 15:05:51 dr 1.14.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:28 dr 1.14.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [08fb481ab6e799ebd26ac7a01308275eb21a0985]

INTEGRATION: CWS dr31 (1.3.118); FILE MERGED 2004/12/09 09:03:28 dr 1.3.118.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [396e2944e58f661ec6d75490f4c9035a912f40dc]

INTEGRATION: CWS dr31 (1.7.116); FILE MERGED 2004/12/17 15:05:51 dr 1.7.116.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:27 dr 1.7.116.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [149fe1b2e8a57457f11c4305a62a70ea2999eee0]

INTEGRATION: CWS dr31 (1.1.2); FILE ADDED 2004/12/21 15:54:33 dr 1.1.2.3: #i37965# wrong NAME flags for macro calls 2004/12/20 17:40:50 dr 1.1.2.2: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:05:46 dr 1.1.2.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [2be8ef2f8bbdcf04015789e85b900c03a2a6a78d]

INTEGRATION: CWS dr31 (1.13.32); FILE MERGED 2004/12/20 17:40:50 dr 1.13.32.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:05:50 dr 1.13.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:27 dr 1.13.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [0849a6f1d1bcf5e18abe5b2100477abdcfaa9e61]

INTEGRATION: CWS dr31 (1.19.80); FILE MERGED 2004/12/17 15:05:50 dr 1.19.80.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [d6522aea32b866a426078c88fb966e39863c0e05]

INTEGRATION: CWS dr31 (1.2.32); FILE MERGED 2005/01/07 10:26:29 dr 1.2.32.5: #i10000# missing dtors 2005/01/05 14:03:07 dr 1.2.32.4: RESYNC: (1.2-1.3); FILE MERGED 2004/12/20 17:40:49 dr 1.2.32.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:05:49 dr 1.2.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:27 dr 1.2.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [17a2c39284510bce431f4ffc6d80391b9fdfe760]

INTEGRATION: CWS dr31 (1.7.30); FILE MERGED 2005/01/06 16:29:37 dr 1.7.30.4: #i39464# autofilter import/export 2004/12/20 17:40:49 dr 1.7.30.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:05:49 dr 1.7.30.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:26 dr 1.7.30.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [523ae046e85f4b4de19d0f81715b5387e8a40d45]

INTEGRATION: CWS dr31 (1.11.32); FILE MERGED 2004/12/20 17:40:48 dr 1.11.32.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:05:49 dr 1.11.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:26 dr 1.11.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [2e357b931825123ff1b9bfd8f720c7390cf279fa]

INTEGRATION: CWS dr31 (1.49.88); FILE MERGED 2005/01/06 16:29:37 dr 1.49.88.3: #i39464# autofilter import/export 2004/12/17 15:05:48 dr 1.49.88.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:25 dr 1.49.88.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [0bf4551fb9a91a829ea8ac8b926bd0bfa266517a]

INTEGRATION: CWS dr31 (1.29.32); FILE MERGED 2004/12/17 15:05:48 dr 1.29.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [4dc949cc518c386a91fbc0473e923b351504704d]

INTEGRATION: CWS dr31 (1.69.30); FILE MERGED 2005/01/05 14:02:59 dr 1.69.30.2: RESYNC: (1.69-1.70); FILE MERGED 2004/12/09 09:03:25 dr 1.69.30.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [985007c97adf761e05a02fccf065c3e09290d2a2]

INTEGRATION: CWS dr31 (1.22.32); FILE MERGED 2004/12/17 15:05:48 dr 1.22.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [dda599b551e3634ce3659bc4817f87d72cc39178]

INTEGRATION: CWS dr31 (1.51.32); FILE MERGED 2004/12/17 15:05:48 dr 1.51.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [c844f893f7c9fe447bbac11f14b3f6621469dfbc]

INTEGRATION: CWS dr31 (1.76.32); FILE MERGED 2004/12/20 17:40:47 dr 1.76.32.3: #i38792# #i38821# formula handling changed, export of add-ins to BIFF5 2004/12/17 15:05:47 dr 1.76.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:24 dr 1.76.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [057b3d1da3e55c13c574112a19a0540ae17dcc2e]

INTEGRATION: CWS dr31 (1.102.30); FILE MERGED 2005/01/06 16:29:36 dr 1.102.30.4: #i39464# autofilter import/export 2005/01/05 14:02:50 dr 1.102.30.3: RESYNC: (1.102-1.103); FILE MERGED 2004/12/20 20:47:36 dr 1.102.30.2: #i38093# set CR_FILTERED at filtered hidden rows 2004/12/17 15:05:47 dr 1.102.30.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [7d1fc312d68855d81bfbeab2bb6566d6f758c061]

INTEGRATION: CWS dr31 (1.32.32); FILE MERGED 2004/12/17 15:05:47 dr 1.32.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:24 dr 1.32.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [e6555e631e7f2b26c075bceb7cef3bcdc7060137]

INTEGRATION: CWS dr31 (1.31.32); FILE MERGED 2005/01/05 14:02:42 dr 1.31.32.3: RESYNC: (1.31-1.32); FILE MERGED 2004/12/17 15:05:47 dr 1.31.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:24 dr 1.31.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [7ad656dcfc5bd4684f00d427f22605edfde4cda0]

INTEGRATION: CWS dr31 (1.56.32); FILE MERGED 2004/12/17 15:05:46 dr 1.56.32.2: #i38792# #i38821# Excel export of defined names and database ranges reimplemented 2004/12/09 09:03:23 dr 1.56.32.1: #i37965# import/export of control<->macro links, code cleanup


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [64ee4e13e8e607ba5eb4966bb21b714d67228261]

INTEGRATION: CWS dr31 (1.24.118); FILE MERGED 2004/12/21 15:24:56 dr 1.24.118.2: #i23425# 2004/12/20 20:47:36 dr 1.24.118.1: #i38093# set CR_FILTERED at filtered hidden rows


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [e6f843943a644befd2c523bcecb6b223a5c42026]

INTEGRATION: CWS dr31 (1.15.226); FILE MERGED 2004/12/17 15:03:25 dr 1.15.226.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [af01a478310ec95a8c466fc7bf54f6b3ac0baa96]

INTEGRATION: CWS dr31 (1.11.244); FILE MERGED 2004/12/17 15:03:25 dr 1.11.244.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [3393bcc9232bc8ee9fcc628f9e5a41b44bb9a37f]

INTEGRATION: CWS dr31 (1.7.32); FILE MERGED 2004/12/17 15:03:09 dr 1.7.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-14  Kurt Zenker  <kz@openoffice.org>  [8c6a3157baf830abe5cb29671159dc5f78cb8699]

INTEGRATION: CWS dr31 (1.7.138); FILE MERGED 2004/12/17 15:03:09 dr 1.7.138.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [05d850c3c5c33cffd794b9d852aec355f6cbb0aa]

INTEGRATION: CWS babelfish (1.1.2); FILE ADDED 2004/12/22 14:50:14 ihi 1.1.2.1: #i39414# hrc file localized


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [c82520514c289b5771ddbbcb54e3ecd40d43a144]

INTEGRATION: CWS babelfish (1.1.2); FILE ADDED 2004/12/22 14:50:13 ihi 1.1.2.1: #i39414# hrc file localized


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [ad8ce6324b6739de361c9078f08defa4a7ccf74f]

INTEGRATION: CWS babelfish (1.6.50); FILE MERGED 2004/12/28 16:54:32 ihi 1.6.50.3: #i39414# fixed order 2004/12/27 13:14:51 ihi 1.6.50.2: #i39414# dependency added 2004/12/22 14:50:13 ihi 1.6.50.1: #i39414# hrc file localized


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [5e2a7bba5a8f9e39b34b2f2fef275c89c8a86e4f]

INTEGRATION: CWS cd02 (1.9.126); FILE MERGED 2004/11/22 11:41:28 as 1.9.126.1: #i26556# break filter detection if opening of stream failed


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [69cdaabaa66aa98cd1fd439d34ccae7bdb3865a0]

INTEGRATION: CWS cd02 (1.19.104); FILE MERGED 2004/11/22 11:41:27 as 1.19.104.1: #i26556# break filter detection if opening of stream failed


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [0e523e261ade336e0bb28da7457b7c13c70fbfe3]

INTEGRATION: CWS cd02 (1.12.104); FILE MERGED 2004/11/22 11:41:26 as 1.12.104.1: #i26556# break filter detection if opening of stream failed


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [8acf3791db6f362c6c02e1d24d46488f0f499100]

INTEGRATION: CWS notesapi (1.179.14); FILE MERGED 2005/01/05 15:50:45 sab 1.179.14.5: RESYNC: (1.183-1.185); FILE MERGED 2004/12/01 18:57:06 sab 1.179.14.4: RESYNC: (1.180-1.183); FILE MERGED 2004/12/01 16:20:21 sab 1.179.14.3: #i37946#; collect automatic styles of notes correctly 2004/11/08 19:17:57 sab 1.179.14.2: RESYNC: (1.179-1.180); FILE MERGED 2004/11/08 17:58:51 sab 1.179.14.1: #118213#; use new hidden layer


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [b3ae53419596ed658f169ad93790b8ea0ba14c54]

INTEGRATION: CWS notesapi (1.2.16); FILE MERGED 2004/12/01 18:46:24 sab 1.2.16.2: RESYNC: (1.2-1.3); FILE MERGED 2004/11/08 18:00:00 sab 1.2.16.1: #118213#, #i36871#; introduce new hidden layer


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [b8b062cdc19cae4f15d1ce9ba68a278159152256]

INTEGRATION: CWS notesapi (1.1.2); FILE ADDED 2004/11/08 18:03:11 sab 1.1.2.1: #i36871#; implement new notes API


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [ac386eb6cbb472bab15c106d1f5be0376133f329]

INTEGRATION: CWS notesapi (1.15.72); FILE MERGED 2004/11/08 17:58:13 sab 1.15.72.1: #118213#, #i36871#; introduce new hidden layer


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [a8f494a9347813feb1a2d859ac7c2b02e92ffabd]

INTEGRATION: CWS notesapi (1.31.14); FILE MERGED 2004/12/01 19:01:45 sab 1.31.14.3: RESYNC: (1.34-1.35); FILE MERGED 2004/11/08 19:31:25 sab 1.31.14.2: RESYNC: (1.31-1.34); FILE MERGED 2004/11/08 17:58:12 sab 1.31.14.1: #118213#, #i36871#; introduce new hidden layer


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [e574a74e1840275e8ec5ee88ee77ba57c344957f]

INTEGRATION: CWS notesapi (1.4.16); FILE MERGED 2005/01/06 19:14:38 sab 1.4.16.2: #i36871#; add XComponent 2004/11/08 18:00:46 sab 1.4.16.1: #i36871#; implement new notes API


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [82640dc9d0f9edca48083d305da96a91b739854c]

INTEGRATION: CWS notesapi (1.19.16); FILE MERGED 2004/12/01 16:22:43 sab 1.19.16.2: #i36871#; set document modified 2004/11/08 18:00:46 sab 1.19.16.1: #i36871#; implement new notes API


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [e8a03416c502a58bd2d6bf8366f5a011906cd63d]

INTEGRATION: CWS notesapi (1.4.16); FILE MERGED 2004/12/01 18:50:37 sab 1.4.16.3: RESYNC: (1.5-1.7); FILE MERGED 2004/11/08 19:10:03 sab 1.4.16.2: RESYNC: (1.4-1.5); FILE MERGED 2004/11/08 17:59:15 sab 1.4.16.1: #118213#; use new hidden layer


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [88d4f2c26ae67d3d76f3031ae9f0051802249385]

INTEGRATION: CWS notesapi (1.30.14); FILE MERGED 2005/01/05 15:41:00 sab 1.30.14.5: RESYNC: (1.34-1.35); FILE MERGED 2004/12/01 18:46:09 sab 1.30.14.4: RESYNC: (1.33-1.34); FILE MERGED 2004/11/09 10:26:38 sab 1.30.14.3: RESYNC: (1.32-1.33); FILE MERGED 2004/11/08 19:05:12 sab 1.30.14.2: RESYNC: (1.30-1.32); FILE MERGED 2004/11/08 17:59:59 sab 1.30.14.1: #118213#, #i36871#; introduce new hidden layer


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [0c18e342281d8b5150977c9b35c5e7fc2348e7c9]

INTEGRATION: CWS notesapi (1.1.2); FILE ADDED 2005/01/04 16:08:34 sw 1.1.2.1: #i36871#


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [90ec67385da2731fb725016fdd00b491b929783f]

INTEGRATION: CWS notesapi (1.1.2); FILE ADDED 2005/01/04 16:08:18 sw 1.1.2.1: #i36871#


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [cd91ee582a7dce180e676bec462f76162b73e1b4]

INTEGRATION: CWS notesapi (1.1.2); FILE ADDED 2005/01/04 16:07:56 sw 1.1.2.1: #i36871#


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [53926998203303f4807d3f368bc69e2ebfeef947]

INTEGRATION: CWS notesapi (1.3.218); FILE MERGED 2005/01/11 09:49:06 sw 1.3.218.4: #i36871# 2004/12/17 13:27:36 sw 1.3.218.3: #i36871# 2004/12/17 13:14:35 sw 1.3.218.2: #i36871# 2004/12/17 13:10:53 sw 1.3.218.1: #i36871#


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [176e58a7cde37e2990ff1c7c32b8ad4de3718042]

INTEGRATION: CWS notesapi (1.2.16); FILE MERGED 2004/12/01 17:37:32 sab 1.2.16.2: RESYNC: (1.2-1.3); FILE MERGED 2004/11/08 17:57:44 sab 1.2.16.1: #118213#, #i36871#; use new hidden layer


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [2f152f84a778d262c719c497e4c56b79c8dff078]

INTEGRATION: CWS notesapi (1.2.160); FILE MERGED 2005/01/06 19:15:37 sab 1.2.160.2: #i36871#; add XComponent 2004/11/08 18:00:33 sab 1.2.160.1: #i36871#; implement new notes API


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [109be25ab3542a07d7d5dbb6f5b183157c338cd5]

INTEGRATION: CWS notesapi (1.40.16); FILE MERGED 2004/12/01 17:37:24 sab 1.40.16.2: RESYNC: (1.40-1.41); FILE MERGED 2004/11/08 17:57:28 sab 1.40.16.1: #118213#, #i36871#; introduce new hidden layer


2005-01-13  Kurt Zenker  <kz@openoffice.org>  [83691719ed99d3b5f353447e93e8b28c5ee826e1]

INTEGRATION: CWS notesapi (1.14.160); FILE MERGED 2004/11/08 18:00:33 sab 1.14.160.1: #i36871#; implement new notes API


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [a7a08348f9831da3cf14e86c355d713b4ac75736]

INTEGRATION: CWS sb19 (1.30.20); FILE MERGED 2004/12/09 04:21:39 sb 1.30.20.3: RESYNC: (1.31-1.32); FILE MERGED 2004/10/28 15:34:20 sb 1.30.20.2: RESYNC: (1.30-1.31); FILE MERGED 2004/10/27 07:31:56 mba 1.30.20.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [774e4620c62913aa19cb7a0eb83a03f71f9204b4]

INTEGRATION: CWS sb19 (1.29.22); FILE MERGED 2004/10/27 07:31:56 mba 1.29.22.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [b46aff756c8cf1cad76dbf7f8bd575bd00f08123]

INTEGRATION: CWS sb19 (1.7.130); FILE MERGED 2004/10/27 07:31:56 mba 1.7.130.2: #110407#: remove static BaseURL 2004/09/01 18:13:53 er 1.7.130.1: #110405# replace static INetURLObject Rel/Abs calls


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [aca334ebe2f195450e8073311b4f3081dda92b1d]

INTEGRATION: CWS sb19 (1.9.118); FILE MERGED 2004/10/27 07:31:55 mba 1.9.118.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [fa69f37692a337e73601ed1d15d9df9ecac627de]

INTEGRATION: CWS sb19 (1.32.22); FILE MERGED 2004/12/09 04:18:28 sb 1.32.22.2: RESYNC: (1.32-1.33); FILE MERGED 2004/10/27 07:31:55 mba 1.32.22.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [ad639696010c6a4c4627ebfe77cda1427c6c2229]

INTEGRATION: CWS sb19 (1.14.8); FILE MERGED 2004/10/27 07:31:54 mba 1.14.8.3: #110407#: remove static BaseURL 2004/10/11 20:27:18 sb 1.14.8.2: RESYNC: (1.14-1.16); FILE MERGED 2004/09/01 18:13:52 er 1.14.8.1: #110405# replace static INetURLObject Rel/Abs calls


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [f9da3c016f0e11f8b79fd887f132b5668cb11d21]

INTEGRATION: CWS sb19 (1.18.34); FILE MERGED 2004/10/28 15:31:26 sb 1.18.34.4: RESYNC: (1.20-1.21); FILE MERGED 2004/10/27 07:31:54 mba 1.18.34.3: #110407#: remove static BaseURL 2004/10/11 20:27:58 sb 1.18.34.2: RESYNC: (1.18-1.20); FILE MERGED 2004/09/01 18:13:52 er 1.18.34.1: #110405# replace static INetURLObject Rel/Abs calls


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [b01471294bc1409e3b8e99bc745528bc55ae5ec1]

INTEGRATION: CWS sb19 (1.29.66); FILE MERGED 2004/10/28 15:31:00 sb 1.29.66.2: RESYNC: (1.29-1.30); FILE MERGED 2004/10/27 07:31:53 mba 1.29.66.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [8bf6d3d82b6977d7dd32a8d52ee4f0ceef58effa]

INTEGRATION: CWS sb19 (1.74.22); FILE MERGED 2004/12/09 04:27:57 sb 1.74.22.3: RESYNC: (1.75-1.76); FILE MERGED 2004/10/28 15:30:47 sb 1.74.22.2: RESYNC: (1.74-1.75); FILE MERGED 2004/10/27 07:31:53 mba 1.74.22.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [6b56f6f94724241413f8002321f4b164e95a54b1]

INTEGRATION: CWS sb19 (1.23.22); FILE MERGED 2004/10/27 07:31:52 mba 1.23.22.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [d335012eb9b6e873e4db8d6a79c6dbf88415277b]

INTEGRATION: CWS sb19 (1.23.22); FILE MERGED 2004/12/09 04:17:54 sb 1.23.22.2: RESYNC: (1.23-1.24); FILE MERGED 2004/10/27 07:31:52 mba 1.23.22.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [9a6a9bccf76af2db4e80c28340580a72601eb3e3]

INTEGRATION: CWS sb19 (1.50.16); FILE MERGED 2004/12/09 04:40:07 sb 1.50.16.7: RESYNC: (1.52-1.53); FILE MERGED 2004/10/28 14:24:21 mba 1.50.16.6: #110407#: always get storage from medium 2004/10/27 07:31:51 mba 1.50.16.5: #110407#: remove static BaseURL 2004/10/13 10:09:38 sb 1.50.16.4: #110405# Fixed problems introduced after resyncing. 2004/10/11 21:13:11 sb 1.50.16.3: RESYNC: (1.50-1.52); FILE MERGED 2004/09/02 09:56:14 er 1.50.16.2: #110405# use SfxMedium::GetBaseURL() 2004/09/01 18:13:52 er 1.50.16.1: #110405# replace static INetURLObject Rel/Abs calls


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [f1432dacc8821d0fadf167fa4122c221b258fea2]

INTEGRATION: CWS sb19 (1.3.132); FILE MERGED 2004/10/27 07:31:51 mba 1.3.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [b81fe2033d638e937588510ae5d59d6306049dc2]

INTEGRATION: CWS sb19 (1.1.1.1.604); FILE MERGED 2004/10/27 07:31:51 mba 1.1.1.1.604.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [2ca06fd2fe142acba5ee9fb1bd43abd96559b2a9]

INTEGRATION: CWS sb19 (1.10.132); FILE MERGED 2004/12/09 04:38:15 sb 1.10.132.2: RESYNC: (1.10-1.11); FILE MERGED 2004/10/27 07:31:50 mba 1.10.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [2464d0a2226035081c17d502fff0782aacfcd6bb]

INTEGRATION: CWS sb19 (1.2.132); FILE MERGED 2004/10/27 07:31:50 mba 1.2.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [b2c3b0fa50eb417bc430bd2904833ab724badd49]

INTEGRATION: CWS sb19 (1.10.132); FILE MERGED 2004/10/27 07:31:49 mba 1.10.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [eaece7a82ed44d416096a46acbce5ccf3897e855]

INTEGRATION: CWS sb19 (1.6.132); FILE MERGED 2004/10/27 07:31:49 mba 1.6.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [647931ddd43838198dbe574e15b96cce23c11b15]

INTEGRATION: CWS sb19 (1.3.132); FILE MERGED 2004/10/27 07:31:49 mba 1.3.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [ac4ed94f3b31c1b80dfa4399545a2e94063415b9]

INTEGRATION: CWS sb19 (1.20.130); FILE MERGED 2004/12/09 04:40:57 sb 1.20.130.4: RESYNC: (1.21-1.22); FILE MERGED 2004/10/27 07:31:49 mba 1.20.130.3: #110407#: remove static BaseURL 2004/10/11 21:14:50 sb 1.20.130.2: RESYNC: (1.20-1.21); FILE MERGED 2004/09/01 18:13:51 er 1.20.130.1: #110405# replace static INetURLObject Rel/Abs calls


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [25b167bb0de4308b4d4356e33f10c5e65eff0fa4]

INTEGRATION: CWS sb19 (1.12.132); FILE MERGED 2004/10/27 07:31:48 mba 1.12.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [e76a83f007da16ea91bb2675119cf27b97d3d13a]

INTEGRATION: CWS sb19 (1.8.130); FILE MERGED 2004/12/22 08:59:28 sb 1.8.130.6: #i10000# Cleaned up merge conflict. 2004/11/03 15:15:46 sb 1.8.130.5: #108948# Fixed wrong replacement for INetURLObject::AbsToRel. 2004/10/29 15:03:29 sb 1.8.130.4: #i110409# Fixed wrong conversions from URIHelper::SmartRelToAbs to URIHelper::SmartRel2Abs. 2004/10/27 07:31:48 mba 1.8.130.3: #110407#: remove static BaseURL 2004/10/11 21:15:16 sb 1.8.130.2: RESYNC: (1.8-1.9); FILE MERGED 2004/09/01 18:13:51 er 1.8.130.1: #110405# replace static INetURLObject Rel/Abs calls


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [177e98859f6ecdc4f1a10e2f7dfbca60ea98d7dd]

INTEGRATION: CWS sb19 (1.25.22); FILE MERGED 2004/12/22 08:59:28 sb 1.25.22.6: #i10000# Cleaned up merge conflict. 2004/12/21 09:34:22 sb 1.25.22.5: RESYNC: (1.26-1.27); FILE MERGED 2004/11/03 15:15:46 sb 1.25.22.4: #108948# Fixed wrong replacement for INetURLObject::AbsToRel. 2004/10/27 07:31:48 mba 1.25.22.3: #110407#: remove static BaseURL 2004/10/11 21:14:41 sb 1.25.22.2: RESYNC: (1.25-1.26); FILE MERGED 2004/09/01 18:13:51 er 1.25.22.1: #110405# replace static INetURLObject Rel/Abs calls


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [367dd824480e2145e9545b3dfb895c5e56bfb1d7]

INTEGRATION: CWS sb19 (1.23.20); FILE MERGED 2004/12/09 04:43:50 sb 1.23.20.3: RESYNC: (1.24-1.27); FILE MERGED 2004/10/28 15:24:37 sb 1.23.20.2: RESYNC: (1.23-1.24); FILE MERGED 2004/10/27 07:31:47 mba 1.23.20.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [5f402f05fd0ec8fd96f88957543bf75ae6fd0394]

INTEGRATION: CWS sb19 (1.3.132); FILE MERGED 2004/12/09 04:29:09 sb 1.3.132.2: RESYNC: (1.3-1.4); FILE MERGED 2004/10/27 07:31:47 mba 1.3.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [c7299898f6b98fc6bd0395a55d53bad11042607c]

INTEGRATION: CWS sb19 (1.2.132); FILE MERGED 2004/12/09 03:10:32 sb 1.2.132.2: RESYNC: (1.2-1.3); FILE MERGED 2004/10/27 07:31:02 mba 1.2.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [e36c1774dd4e590ca23ac2f7a96399e82cb60f0b]

INTEGRATION: CWS sb19 (1.1.1.1.604); FILE MERGED 2004/10/27 07:31:02 mba 1.1.1.1.604.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [8f694ca22fca3e4419d66f0775f0b2bad8e27cc9]

INTEGRATION: CWS sb19 (1.3.592); FILE MERGED 2004/10/27 07:31:01 mba 1.3.592.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [e0ab4068300c5243022cb3d5a650ad9f479919fc]

INTEGRATION: CWS sb19 (1.4.74); FILE MERGED 2004/10/27 07:31:01 mba 1.4.74.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [d9374c72e58b9aee88f0bd652bee05b3db296298]

INTEGRATION: CWS sb19 (1.3.132); FILE MERGED 2004/10/27 07:31:01 mba 1.3.132.1: #110407#: remove static BaseURL


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [72bc483d52235f57a41835997fd4ddfc0a711fd6]

INTEGRATION: CWS calc27 (1.81.224); FILE MERGED 2004/12/10 15:24:46 nn 1.81.224.1: #i37854# typo


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [561326abc2c754596114e34bd1c49a2b4021caae]

INTEGRATION: CWS calc27 (1.6.28); FILE MERGED 2004/12/17 14:41:01 jmarmion 1.6.28.1: #i36667# - support the EditTextObject() paragraph alignment for Notes.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [5890d946440a5b74ee0583f277fef1d1f891f68d]

INTEGRATION: CWS calc27 (1.55.10); FILE MERGED 2005/01/07 10:05:52 nn 1.55.10.2: #i39707# typo 2005/01/06 15:44:27 sab 1.55.10.1: #i39707#; use contextid for alignlast


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [ed1621bc5f480ce08bebcdb572c0303ed8628319]

INTEGRATION: CWS calc27 (1.183.8); FILE MERGED 2005/01/04 12:59:09 nn 1.183.8.2: RESYNC: (1.183-1.185); FILE MERGED 2004/12/17 14:40:36 jmarmion 1.183.8.1: #i36667# - support the EditTextObject() paragraph alignment for Notes.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [b83694ebc23333405de6ad7c1b64381417de669c]

INTEGRATION: CWS calc27 (1.79.28); FILE MERGED 2005/01/06 13:29:12 jmarmion 1.79.28.3: #i36667# fix previous same issue check-in for calc 6.0/7.0 sxc format notes 2004/12/17 14:40:35 jmarmion 1.79.28.2: #i36667# - support the EditTextObject() paragraph alignment for Notes. 2004/12/07 10:14:16 jmarmion 1.79.28.1: #i38350# - mimic old note position of OOo1.x as note position was not stored.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [3ce7bc154097fbb39c56b0bac21e321b8e1d9f58]

INTEGRATION: CWS calc27 (1.73.28); FILE MERGED 2004/12/17 14:39:57 jmarmion 1.73.28.1: #i36667# - support the EditTextObject() paragraph alignment for Notes.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [b50e90fdc7d2f181eb18a0e67a8d814db04b17db]

INTEGRATION: CWS calc27 (1.26.28); FILE MERGED 2005/01/04 12:54:37 nn 1.26.28.2: RESYNC: (1.26-1.28); FILE MERGED 2004/12/17 14:39:27 jmarmion 1.26.28.1: #i36667# - support the EditTextObject() paragraph alignment for Notes.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [c0ee25b6a77cd7e0694f4af77f945c08d2cc70bc]

INTEGRATION: CWS calc27 (1.18.10); FILE MERGED 2004/12/17 14:38:51 jmarmion 1.18.10.1: #i36667# - support the EditTextObject() paragraph alignment for Notes.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [159ab6f79e4bec50c26f13bd2e1ccc11743f6edd]

INTEGRATION: CWS calc27 (1.3.26); FILE MERGED 2004/12/17 14:38:20 jmarmion 1.3.26.2: #i36667# - support the EditTextObject() paragraph alignment for Notes. 2004/12/07 10:13:46 jmarmion 1.3.26.1: #i38350# - mimic old note position of OOo1.x as note position was not stored.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [3cb4459e3aa79872a27a1e129eff332c34758203]

INTEGRATION: CWS calc27 (1.15.28); FILE MERGED 2005/01/04 11:51:04 jmarmion 1.15.28.1: #i36053# hide visible notes during sort/filter operations.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [167b5971290686dce5cb9af88533e89b06142805]

INTEGRATION: CWS calc27 (1.13.28); FILE MERGED 2005/01/04 11:51:04 jmarmion 1.13.28.1: #i36053# hide visible notes during sort/filter operations.


2005-01-11  Rüdiger Timm  <rt@openoffice.org>  [98f765c46fac8374f1edb5b22bdb305022835d29]

INTEGRATION: CWS calc27 (1.3.28); FILE MERGED 2004/12/17 14:37:36 jmarmion 1.3.28.2: #i36667# - support the EditTextObject() paragraph alignment. 2004/12/07 10:13:15 jmarmion 1.3.28.1: #i38350# - mimic old note position of OOo1.x as note position was not stored.


2005-01-07  Rüdiger Timm  <rt@openoffice.org>  [61f9d5c06885a3bbe17c64b18e18e01799b0aa2b]

INTEGRATION: CWS sj13 (1.5.16); FILE MERGED 2004/12/14 11:24:50 sj 1.5.16.1: #38071# fixed create default object for custom shapes


2005-01-05  Oliver Bolte  <obo@openoffice.org>  [d4723c2721c3f691fbac6bc9b098cc33baabce03]

INTEGRATION: CWS swqcore02 (1.6.14); FILE MERGED 2004/12/14 13:42:30 hbrinkm 1.6.14.2: RESYNC: (1.6-1.8); FILE MERGED 2004/12/08 13:18:50 os 1.6.14.1: #117906# check availability of pPreselectedFilter


2005-01-03  Oliver Bolte  <obo@openoffice.org>  [789bf25a6212fd68b4368e37e1d6b058d995d859]

INTEGRATION: CWS res32bit (1.2.666); FILE MERGED 2004/10/28 13:56:40 pl 1.2.666.1: #i34513# remove unimplementable constructor


2005-01-03  Oliver Bolte  <obo@openoffice.org>  [35bfc4c059e41e8881686f95fa2865cd6a927b0f]

INTEGRATION: CWS res32bit (1.4.644); FILE MERGED 2004/10/28 13:56:39 pl 1.4.644.1: #i34513# remove unimplementable constructor


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [17cae9c0e31c9cfda2174dcf27e9f88bcdf6e79c]

INTEGRATION: CWS dr30 (1.14.56); FILE MERGED 2004/11/18 14:37:35 dr 1.14.56.1: #i36945# code changes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [9036fbf6a2bce3314e7c7c32980352e9101843e4]

INTEGRATION: CWS dr30 (1.13.56); FILE MERGED 2004/11/11 15:07:13 dr 1.13.56.1: #i36997# skip Tahoma font in cell notes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [3c898987a16f9d5f4ea90d94f4321754ca177d7b]

INTEGRATION: CWS dr30 (1.9.90); FILE MERGED 2004/11/11 15:07:13 dr 1.9.90.1: #i36997# skip Tahoma font in cell notes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [e6eeab2fe36d582aacefe7b7baa2f8fe41d3d51e]

INTEGRATION: CWS dr30 (1.11.56); FILE MERGED 2004/11/10 14:32:34 dr 1.11.56.1: #i36945# speed up and improve palette reduction


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [46b2459e915c10a4d489c2945831c48395ec71cc]

INTEGRATION: CWS calc26 (1.87.82); FILE MERGED 2004/12/02 13:31:53 nn 1.87.82.2: RESYNC: (1.87-1.88); FILE MERGED 2004/11/17 16:28:00 nn 1.87.82.1: #117214# #i18202# collect formatted ranges for ScUniqueCellFormatsObj faster


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [845a97e43979db4c4c28f9b77608d74eecfa3fd3]

INTEGRATION: CWS dr30 (1.14.56); FILE MERGED 2004/11/18 15:25:21 dr 1.14.56.1: BIFF dumper: show defined names in formulas


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [3b978dba44b7b4c81f1f9fd3542e583c3307499d]

INTEGRATION: CWS dr30 (1.13.88); FILE MERGED 2004/11/18 14:37:34 dr 1.13.88.1: #i36945# code changes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [3ca4a912698218a6d6dd3259c3ef328c56327d5f]

INTEGRATION: CWS calc26 (1.17.90); FILE MERGED 2004/12/02 13:27:18 nn 1.17.90.2: RESYNC: (1.17-1.18); FILE MERGED 2004/11/26 09:06:43 nn 1.17.90.1: #i37891# allow BegDragObj for moving several objects


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [0e74d93165e6d85396658ce1fa409acac138bea2]

INTEGRATION: CWS dr30 (1.5.6); FILE MERGED 2004/11/26 10:40:56 dr 1.5.6.1: #i37355# IF function returns Ref


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [0cc3caea26618fc2314e43c2439b4ef091994177]

INTEGRATION: CWS calc26 (1.9.86); FILE MERGED 2004/11/26 09:06:43 nn 1.9.86.1: #i37891# allow BegDragObj for moving several objects


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [d512e84cfc23eccffbd98193a4034a1552a8f82e]

INTEGRATION: CWS dr30 (1.19.56); FILE MERGED 2004/11/11 15:06:17 dr 1.19.56.1: #i36997# skip Tahoma font in cell notes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [16be9a53645e0de288f57e49426410bae24bc898]

INTEGRATION: CWS calc26 (1.7.676); FILE MERGED 2004/11/08 17:36:29 nn 1.7.676.1: #b5071088# label ranges must be stored as strings until all sheets are loaded


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [87a37fff2d7a05280b347bd62d24e2219edcd8b2]

INTEGRATION: CWS dr30 (1.16.56); FILE MERGED 2004/11/11 15:06:17 dr 1.16.56.1: #i36997# skip Tahoma font in cell notes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [5d6e03a8d945f1608e3617d52325a1d71ebe32d1]

INTEGRATION: CWS calc26 (1.77.88); FILE MERGED 2004/12/02 13:23:34 nn 1.77.88.2: RESYNC: (1.77-1.81); FILE MERGED 2004/11/08 17:36:28 nn 1.77.88.1: #b5071088# label ranges must be stored as strings until all sheets are loaded


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [15433422651bec47637560e5aa5acbc53e53351d]

INTEGRATION: CWS dr30 (1.13.56); FILE MERGED 2004/11/11 15:06:16 dr 1.13.56.1: #i36997# skip Tahoma font in cell notes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [01efddf1e231cb6294491235f2202bd8b5685971]

INTEGRATION: CWS calc26 (1.103.82); FILE MERGED 2004/12/02 13:23:25 nn 1.103.82.2: RESYNC: (1.103-1.108); FILE MERGED 2004/11/08 17:36:28 nn 1.103.82.1: #b5071088# label ranges must be stored as strings until all sheets are loaded


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [d06312c097082ac39941e36a27f002aa0cab29fd]

INTEGRATION: CWS dr30 (1.15.56); FILE MERGED 2004/11/10 14:32:24 dr 1.15.56.1: #i36945# speed up and improve palette reduction


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [feb38663ecf3e7f206ca61ecf236ec70b2fd1fd9]

INTEGRATION: CWS calc26 (1.22.246); FILE MERGED 2004/11/29 17:38:39 nn 1.22.246.1: #i37959# handle document protection after the sheet settings


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [6c3dbf2a9de7aa0e3ed470927ed3478c329415d3]

INTEGRATION: CWS dr30 (1.2.6); FILE MERGED 2004/11/26 14:29:35 dr 1.2.6.3: #i37945# exported chart causes Excel to crash 2004/11/24 17:07:20 dr 1.2.6.2: #i37355# tAttr handling completed 2004/11/17 17:09:44 dr 1.2.6.1: #i37355# regard missing function parameters entered in Calc


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [65afa96261fdf8019b00af4046a6194d69cd6a0c]

INTEGRATION: CWS calc26 (1.24.52); FILE MERGED 2004/12/16 11:32:33 nn 1.24.52.3: #i37794# Set full width on all imports regardless of alignment 2004/12/02 13:15:42 nn 1.24.52.2: RESYNC: (1.24-1.26); FILE MERGED 2004/11/26 11:16:55 jmarmion 1.24.52.1: #i37794# default to full width when importing centered text autoshapes from xls #i37900# remove connector fix for issue i12638 as it breaks this general case.


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [00acd688ff4f3e678f763d73a8eb2f6c4f8e57e5]

INTEGRATION: CWS dr30 (1.68.6); FILE MERGED 2004/11/16 11:30:29 dr 1.68.6.2: RESYNC: (1.68-1.69); FILE MERGED 2004/11/11 16:06:06 dr 1.68.6.1: #i37029# wrong assertion


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [f50803c3f893285a2d202c7d9017583b2139fd2d]

INTEGRATION: CWS calc26 (1.8.134); FILE MERGED 2004/11/25 11:12:26 nn 1.8.134.2: #b5017505# correct bug id 2004/11/25 11:07:39 nn 1.8.134.1: #b6174233# use number format exchange list also when copying styles


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [b837ada8b6651ef1cc809ff506800a11cd3032fd]

INTEGRATION: CWS dr30 (1.101.56); FILE MERGED 2004/11/16 11:29:44 dr 1.101.56.2: RESYNC: (1.101-1.102); FILE MERGED 2004/11/11 15:06:16 dr 1.101.56.1: #i36997# skip Tahoma font in cell notes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [227eda53ed9ee890b67ed0fa4839222e894bb009]

INTEGRATION: CWS calc26 (1.25.90); FILE MERGED 2004/11/25 11:12:26 nn 1.25.90.2: #b5017505# correct bug id 2004/11/25 11:07:38 nn 1.25.90.1: #b6174233# use number format exchange list also when copying styles


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [37b928f7ed6c38e724fb3f6af29d59431a99837d]

INTEGRATION: CWS dr30 (1.31.6); FILE MERGED 2004/11/25 12:50:10 dr 1.31.6.1: #i37868# import of tRange operator in BIFF2


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [bb6592e175b3a59c3ff298a61317686d6da16b32]

INTEGRATION: CWS calc26 (1.26.86); FILE MERGED 2004/12/02 13:07:29 nn 1.26.86.2: RESYNC: (1.26-1.27); FILE MERGED 2004/12/01 19:28:46 nn 1.26.86.1: #i37941# TransferDrawPage: check IsValid before adjusting chart source data


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [d77eb7c0d70bd7252a6dff15fa632d00fa0a8101]

INTEGRATION: CWS dr30 (1.73.54); FILE MERGED 2004/11/25 12:50:10 dr 1.73.54.5: #i37868# import of tRange operator in BIFF2 2004/11/24 17:07:20 dr 1.73.54.4: #i37355# tAttr handling completed 2004/11/18 15:25:20 dr 1.73.54.3: BIFF dumper: show defined names in formulas 2004/11/16 11:28:29 dr 1.73.54.2: RESYNC: (1.73-1.74); FILE MERGED 2004/11/15 13:15:52 dr 1.73.54.1: minor changes


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [2e7397bb490bed7ed85203d1c898915a13473b43]

INTEGRATION: CWS calc26 (1.36.88); FILE MERGED 2004/12/02 13:07:19 nn 1.36.88.3: RESYNC: (1.36-1.37); FILE MERGED 2004/11/25 11:12:26 nn 1.36.88.2: #b5017505# correct bug id 2004/11/25 11:07:38 nn 1.36.88.1: #b6174233# use number format exchange list also when copying styles


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [768779941da49ab471480364d45ddcfd591487dd]

INTEGRATION: CWS dr30 (1.27.12); FILE MERGED 2004/11/11 10:49:29 dr 1.27.12.1: #i36968# finally... correct symbol handling in complex values


2004-12-23  Vladimir Glazounov  <vg@openoffice.org>  [0885ab6cecc5a4740c108cf68d5ad15929d9cc56]

INTEGRATION: CWS dr30 (1.44.8); FILE MERGED 2004/12/02 13:23:55 dr 1.44.8.2: RESYNC: (1.44-1.45); FILE MERGED 2004/11/11 10:49:28 dr 1.44.8.1: #i36968# finally... correct symbol handling in complex values


2004-12-14  Rüdiger Timm  <rt@openoffice.org>  [0da30f99949a046d7ba166dbbd664cfee378185b]

INTEGRATION: CWS pj14 (1.8.10); FILE MERGED 2004/12/11 13:51:30 pjanik 1.8.10.3: #i38416#: Better pow ambiguity fix. 2004/12/09 22:36:58 pjanik 1.8.10.2: #i38416#: better fix for pow ambiguity. 2004/12/08 11:53:41 pjanik 1.8.10.1: #i38416#: Fix pow ambiguity, simplify.


2004-12-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [b059777365da1129ff58998da9a7c8bc54d9fb0a]

INTEGRATION: CWS ineturl1 (1.26.56); FILE MERGED 2004/10/01 11:58:59 cmc 1.26.56.1: #i34006# modify INetURLObject to use rtl::OUString and rtl::OUStringBuffer


2004-12-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [d5a0531dac57c3dce57481214902657250c61aa7]

INTEGRATION: CWS ause012 (1.22.206); FILE MERGED 2004/11/24 15:01:54 hjs 1.22.206.1: #i37200# removed custom RSCUPDVER as no longer in use


2004-12-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [e6d27daa8f4d299b027d6470ab1febfdb50189d6]

INTEGRATION: CWS ause012 (1.4.228); FILE MERGED 2004/11/24 15:01:54 hjs 1.4.228.1: #i37200# removed custom RSCUPDVER as no longer in use


2004-12-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [1009eb04640a606b7b01f9da432db9bdd3cffdef]

INTEGRATION: CWS ause012 (1.2.370); FILE MERGED 2004/11/24 15:01:25 hjs 1.2.370.1: #i37200# removed custom RSCUPDVER as no longer in use


2004-12-08  Kurt Zenker  <kz@openoffice.org>  [1ff5ef037287fe38537be45c15c4e609f3b0463c]

INTEGRATION: CWS pbbeta01 (1.5.6); FILE MERGED 2004/12/06 16:56:30 pb 1.5.6.1: fix: #i38403# .uno:Spelling -> .uno:SpellDialog


2004-12-07  Rüdiger Timm  <rt@openoffice.org>  [46c0e19a7b0dc1eebd1b5cfc98d8a1fb8d44af0b]

INTEGRATION: CWS sb27 (1.7.4); FILE MERGED 2004/12/06 10:20:56 mba 1.7.4.2: #i38360#: type detection for stream formats was broken 2004/12/03 20:28:35 mba 1.7.4.1: #i38360#: type detection failed for all stream based formats


2004-12-03  Kurt Zenker  <kz@openoffice.org>  [e08ad945df30d4d1d9f5b463364671230361304f]

INTEGRATION: CWS oasisbeta1 (1.51.20); FILE MERGED 2004/11/30 13:53:16 sab 1.51.20.1: #i37512#; use ParagraphMap


2004-12-03  Kurt Zenker  <kz@openoffice.org>  [61f85209ac86a5c2b1edbf93b523b596b21cb056]

INTEGRATION: CWS oasisbeta1 (1.183.4); FILE MERGED 2004/11/29 16:44:02 nn 1.183.4.1: #118599# don't construct an unnecessary OUString from itself


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [05f6cbae858ee20b54d801a49ccd3e4e78e9ce08]

INTEGRATION: CWS toolbars3 (1.3.12); FILE MERGED 2004/11/05 10:14:40 cd 1.3.12.3: #i35062# New toolbars from CJ according to spec 2004/10/20 16:59:10 cd 1.3.12.2: RESYNC: (1.3-1.4); FILE MERGED 2004/10/12 10:17:37 cd 1.3.12.1: #i35062# New toolbar structure according to toolbar spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [6885f8c404792b253d353ddf20f517560825af0e]

INTEGRATION: CWS toolbars3 (1.2.148); FILE MERGED 2004/10/12 10:17:37 cd 1.2.148.1: #i35062# New toolbar structure according to toolbar spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [63ef2f33e73421b79cb23bfcc198d0d145e87172]

INTEGRATION: CWS toolbars3 (1.4.12); FILE MERGED 2004/10/12 10:17:37 cd 1.4.12.1: #i35062# New toolbar structure according to toolbar spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [aa5146d765aeeba5235273bff2a82cc51474f450]

INTEGRATION: CWS toolbars3 (1.2.148); FILE MERGED 2004/11/05 10:14:40 cd 1.2.148.1: #i35062# New toolbars from CJ according to spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [fbdb0474d2796fbcebd9da72ba63790e25d88d8e]

INTEGRATION: CWS toolbars3 (1.2.70); FILE MERGED 2004/11/05 10:14:40 cd 1.2.70.1: #i35062# New toolbars from CJ according to spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [98994e577560ebb3883ec751612ce4e470fe3f24]

INTEGRATION: CWS toolbars3 (1.2.14); FILE MERGED 2004/11/05 10:14:40 cd 1.2.14.1: #i35062# New toolbars from CJ according to spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [c5863559c9f1c996577fe47f48d3592498fa7560]

INTEGRATION: CWS toolbars3 (1.2.32); FILE MERGED 2004/10/12 10:17:36 cd 1.2.32.1: #i35062# New toolbar structure according to toolbar spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [a6781b772854df75e018f57c18d91207887448f9]

INTEGRATION: CWS toolbars3 (1.2.32); FILE MERGED 2004/11/26 18:42:31 hr 1.2.32.2: RESYNC: (1.2-1.3); FILE MERGED 2004/10/12 10:17:35 cd 1.2.32.1: #i35062# New toolbar structure according to toolbar spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [e9f791f22711d109406536821ae8b2e8d0c857fc]

INTEGRATION: CWS toolbars3 (1.3.86); FILE MERGED 2004/11/05 10:14:39 cd 1.3.86.2: #i35062# New toolbars from CJ according to spec 2004/10/12 10:17:35 cd 1.3.86.1: #i35062# New toolbar structure according to toolbar spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [bca9b5b5a89c79457bc548771ee960e0a6ccfcdb]

INTEGRATION: CWS toolbars3 (1.2.14); FILE MERGED 2004/11/05 10:14:39 cd 1.2.14.1: #i35062# New toolbars from CJ according to spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [73a5609387f3384832d74ddf17a63d7ce7bdfacf]

INTEGRATION: CWS toolbars3 (1.2.148); FILE MERGED 2004/10/12 10:17:35 cd 1.2.148.1: #i35062# New toolbar structure according to toolbar spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [a9ef21dfab4856fa4f59f7184648d7eb8a5125e9]

INTEGRATION: CWS toolbars3 (1.2.148); FILE MERGED 2004/11/05 10:14:39 cd 1.2.148.2: #i35062# New toolbars from CJ according to spec 2004/10/12 10:17:35 cd 1.2.148.1: #i35062# New toolbar structure according to toolbar spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [5397aef2e808f370c2f089d85d0468b2ef8f73d0]

INTEGRATION: CWS toolbars3 (1.2.148); FILE MERGED 2004/11/05 10:14:39 cd 1.2.148.1: #i35062# New toolbars from CJ according to spec


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [228e60a1d4979b83ee617876616b2dd086adc3fd]

INTEGRATION: CWS toolbars3 (1.17.14); FILE MERGED 2004/11/26 18:41:05 hr 1.17.14.3: RESYNC: (1.17-1.18); FILE MERGED 2004/11/12 11:57:32 pb 1.17.14.2: fix: #i37018# SID_INSERT_DRAW: old behaviour 2004/11/01 12:15:04 pb 1.17.14.1: fix: #i36113# SID_INSERT_DRAW toogles the drawbar


2004-11-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [e0cc45ccbcdae8b33552be637fc5a5063705095a]

INTEGRATION: CWS toolbars3 (1.26.10); FILE MERGED 2004/11/12 11:57:06 pb 1.26.10.2: fix: #i37018# use ToolboxController for SID_INSERT_DRAW again 2004/11/01 12:14:30 pb 1.26.10.1: fix: #i36113# no toolboxcontroller for SID_INSERT_DRAW any longer


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [3b467a25e6ddb7172217e65f380385698b4a19b2]

INTEGRATION: CWS leanobjects (1.17.98); FILE MERGED 2004/11/18 11:11:25 mba 1.17.98.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [e7a97df6b0b188a32bae56ef916e6385578b1fdd]

INTEGRATION: CWS leanobjects (1.20.98); FILE MERGED 2004/11/18 11:11:25 mba 1.20.98.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [b7b4ee38020b9bf2930b46a86970cc8d7eb8eb86]

INTEGRATION: CWS leanobjects (1.17.100); FILE MERGED 2004/11/18 11:11:25 mba 1.17.100.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [2ddf505de0662496e74309bb2dbe9f4afcfb9640]

INTEGRATION: CWS leanobjects (1.5.168); FILE MERGED 2004/11/18 11:11:25 mba 1.5.168.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [6fa8ceed7a48d04e390d3e21382016256e100302]

INTEGRATION: CWS leanobjects (1.13.98); FILE MERGED 2004/11/18 11:11:24 mba 1.13.98.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [9db292b3f8427c982ba71ab920b4c67984841105]

INTEGRATION: CWS leanobjects (1.11.98); FILE MERGED 2004/11/18 11:11:23 mba 1.11.98.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [9e584f993a00b27e70e023230914b138a5459eb9]

INTEGRATION: CWS leanobjects (1.7.98); FILE MERGED 2004/11/18 11:11:23 mba 1.7.98.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [414dba03bb562f2fff83a61854a8c4748b3f1745]

INTEGRATION: CWS leanobjects (1.24.50); FILE MERGED 2004/11/18 11:11:22 mba 1.24.50.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [0a5fe7348a30669c60490e59597bc11e69eb0316]

INTEGRATION: CWS leanobjects (1.33.4); FILE MERGED 2004/11/18 11:11:22 mba 1.33.4.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [311698eb118b633eafabf3e2d2574874d66c3a5d]

INTEGRATION: CWS leanobjects (1.13.18); FILE MERGED 2004/11/18 11:11:35 mba 1.13.18.1: #i37278#: make objects loadable on demand


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [01cc675cafda0a05c48b24945beb1a6cb6a3cef6]

INTEGRATION: CWS xmlsec06 (1.18.60); FILE MERGED 2004/11/09 07:30:43 pb 1.18.60.1: fix: #i36223# digital signature for macros


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [e0a192b363146f13088d47b7f422c4e35a878843]

INTEGRATION: CWS xmlsec06 (1.31.8); FILE MERGED 2004/10/12 11:12:54 mt 1.31.8.2: RESYNC: (1.31-1.32); FILE MERGED 2004/09/21 13:15:43 pb 1.31.8.1: fix: #i33451# ExecuteChangeProtectionDialog() now with Window*


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [457e26c1a997d8232a18148a488a5b19485fab51]

INTEGRATION: CWS xmlsec06 (1.39.8); FILE MERGED 2004/10/12 11:09:25 mt 1.39.8.2: RESYNC: (1.39-1.40); FILE MERGED 2004/09/21 13:16:11 pb 1.39.8.1: fix: #i33451# FID_CHG_RECORD and SID_CHG_PROTECT should use the parent window from itemset


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [4c04efb3c28ec73a6fb61ea2ec62b9201f1cde3e]

INTEGRATION: CWS sj12 (1.2.12); FILE MERGED 2004/11/16 18:43:45 sj 1.2.12.2: RESYNC: (1.2-1.3); FILE MERGED 2004/10/22 13:33:59 sj 1.2.12.1: #i36002# PredefinedType -> Type


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [644b713f4d89920a112fdccbde1e4a087a731445]

INTEGRATION: CWS lotus123import01 (1.4.164); FILE MERGED 2004/11/15 11:16:19 mmeeks 1.4.164.4: Issue number: 36436 Submitted by: mmeeks Reviewed by:  mmeeks

Remove debug committed in error. Fix style importing for more recent Lotus 123's.
2004/11/15 10:34:01 mmeeks 1.4.164.3: Issue number: 36436
Submitted by: mmeeks
Reviewed by:  mmeeks

Fix .123 file version detection so the filter runs for recently exported files.
2004/10/19 10:40:58 mmeeks 1.4.164.2: RESYNC: (1.4-1.5); FILE MERGED
2004/09/30 11:16:03 mmeeks 1.4.164.1: Issue number: 34806
Submitted by: ashwanth
Reviewed by:  mmeeks

prune stale / ugly / duplicate code from scdll.cxx
clean up & add Lotus97 detection to scdetect.cxx

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [f9bcb5accc3a1480bd6cbcd8c9c3e71795bfd1ef]

INTEGRATION: CWS lotus123import01 (1.10.166); FILE MERGED 2004/09/30 11:33:00 mmeeks 1.10.166.1: Issue number: 34806 Submitted by: mmeeks Reviewed by:  mmeeks

Bin last Krufty SINIX conditional in sc/ for good measure.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [4089e241068ee4898cd42bad9521ea5a9307a80b]

INTEGRATION: CWS lotus123import01 (1.73.26); FILE MERGED 2004/10/19 10:43:03 mmeeks 1.73.26.2: RESYNC: (1.73-1.75); FILE MERGED 2004/10/18 17:06:21 mmeeks 1.73.26.1: Issue number: 34806 Submitted by: ashwanth Reviewed by:  mmeeks

Set col/row heights post import

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [3b561c3b6d2528befcf788841dba0830afccca5a]

INTEGRATION: CWS lotus123import01 (1.22.20); FILE MERGED 2004/10/19 11:52:00 mmeeks 1.22.20.3: Issue number: #i34806# Submitted by: mmeeks Reviewed by:

Manually re-sync to m57 after cwstools / manual cvs interaction screwed things up.
2004/10/19 11:02:30 mmeeks 1.22.20.2: RESYNC: (1.22-1.26); FILE MERGED
2004/09/30 11:16:03 mmeeks 1.22.20.1: Issue number: 34806
Submitted by: ashwanth
Reviewed by:  mmeeks

prune stale / ugly / duplicate code from scdll.cxx
clean up & add Lotus97 detection to scdetect.cxx

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [9ce7adfa1914b000ace844dc60dd0d52857c4471]

INTEGRATION: CWS lotus123import01 (1.7.166); FILE MERGED 2004/09/29 16:43:43 mmeeks 1.7.166.1: Issue number: 34806 Submitted by: ashwanth Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [08d8198055c13f6257ab0488ea48c3c76e31393d]

INTEGRATION: CWS lotus123import01 (1.1.1.1.646); FILE MERGED 2004/10/01 16:38:06 mmeeks 1.1.1.1.646.2: Issue number: #i34806# Submitted by: ashwanth Reviewed by:  mmeeks

Add the style attribute reading code: bold / italic / justification etc.
2004/09/29 16:43:43 mmeeks 1.1.1.1.646.1: Issue number: 34806
Submitted by: ashwanth
Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [2a33baa93693c052719df0ffbabb95b77c2f0bef]

INTEGRATION: CWS lotus123import01 (1.8.166); FILE MERGED 2004/11/15 11:16:18 mmeeks 1.8.166.4: Issue number: 36436 Submitted by: mmeeks Reviewed by:  mmeeks

Remove debug committed in error. Fix style importing for more recent Lotus 123's.
2004/10/07 16:53:11 er 1.8.166.3: #i34806# clean up, unused variables, adapt indentation to sw=4 ts=4 and remove trailing blanks
2004/10/01 16:38:05 mmeeks 1.8.166.2: Issue number: #i34806#
Submitted by: ashwanth
Reviewed by:  mmeeks

Add the style attribute reading code: bold / italic / justification etc.
2004/09/29 16:43:43 mmeeks 1.8.166.1: Issue number: 34806
Submitted by: ashwanth
Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [196f38b602ad03cfae15a3d2c97258780ea90dfc]

INTEGRATION: CWS lotus123import01 (1.4.630); FILE MERGED 2004/10/01 16:38:05 mmeeks 1.4.630.1: Issue number: #i34806# Submitted by: ashwanth Reviewed by:  mmeeks

Add the style attribute reading code: bold / italic / justification etc.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [68d758a06ad3dda40e36a4d93513976120e74cce]

INTEGRATION: CWS lotus123import01 (1.8.166); FILE MERGED 2004/11/02 12:41:23 dr 1.8.166.2: #i36252# cell reference import, use correct casts to sc types 2004/09/29 16:43:42 mmeeks 1.8.166.1: Issue number: 34806 Submitted by: ashwanth Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [00ef4eb9e34f3c173e071d375dd9d61b2ddd4ce1]

INTEGRATION: CWS lotus123import01 (1.3.486); FILE MERGED 2004/10/01 16:38:05 mmeeks 1.3.486.2: Issue number: #i34806# Submitted by: ashwanth Reviewed by:  mmeeks

Add the style attribute reading code: bold / italic / justification etc.
2004/09/29 16:43:42 mmeeks 1.3.486.1: Issue number: 34806
Submitted by: ashwanth
Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [3c58965803f356585a30c99daf5a0175451a12fa]

INTEGRATION: CWS lotus123import01 (1.2.166); FILE MERGED 2004/09/29 16:43:42 mmeeks 1.2.166.1: Issue number: 34806 Submitted by: ashwanth Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [0ee7cb4c1d1a317bbaf0b3f0f83e322cb34240c5]

INTEGRATION: CWS lotus123import01 (1.1.1.1.646); FILE MERGED 2004/10/01 16:38:04 mmeeks 1.1.1.1.646.2: Issue number: #i34806# Submitted by: ashwanth Reviewed by:  mmeeks

Add the style attribute reading code: bold / italic / justification etc.
2004/09/29 16:43:42 mmeeks 1.1.1.1.646.1: Issue number: 34806
Submitted by: ashwanth
Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [927286581cf0a3429f4511ddc84e0f79ac0f9f65]

INTEGRATION: CWS lotus123import01 (1.2.638); FILE MERGED 2004/09/29 16:43:41 mmeeks 1.2.638.1: Issue number: 34806 Submitted by: ashwanth Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [3122c753589b8e3bb39068c9f2514f4d8bb29370]

INTEGRATION: CWS lotus123import01 (1.5.166); FILE MERGED 2004/09/29 16:43:41 mmeeks 1.5.166.1: Issue number: 34806 Submitted by: ashwanth Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [13da4e1a6ad585b57ef9a64e169b81620ef4e819]

INTEGRATION: CWS lotus123import01 (1.1.1.1.646); FILE MERGED 2004/09/29 16:43:41 mmeeks 1.1.1.1.646.1: Issue number: 34806 Submitted by: ashwanth Reviewed by:  mmeeks

Initial chunk of Lotus 123 import filter.

2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [0748a3cf819a990a88fc33f6d25f41e63d3bde6e]

INTEGRATION: CWS calcp2fix (1.17.100); FILE MERGED 2004/11/19 13:03:42 nn 1.17.100.1: #118522# call SetGraphicLink after inserting object


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [bc1948de6850084f3fabe4840b5cedb3356912a6]

INTEGRATION: CWS calcp2fix (1.5.130); FILE MERGED 2004/11/19 13:04:22 nn 1.5.130.1: #118522# call SetGraphicLink after inserting object


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [3c3aa5bd7f1baa385913e3086a0f4fe0b6de7833]

INTEGRATION: CWS calcp2fix (1.10.230); FILE MERGED 2004/11/19 13:04:44 nn 1.10.230.1: #118522# call SetGraphicLink after inserting object


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [eec21d23ae93dafebb387e00473bfd5fc3136f2c]

INTEGRATION: CWS oasisbf2 (1.50.70); FILE MERGED 2004/11/03 15:26:06 mib 1.50.70.1: #i36000#: style names


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [3ebd96d4ae83e5371d99ccc6ae2bb753d30823f2]

INTEGRATION: CWS oasisbf2 (1.77.68); FILE MERGED 2004/10/28 11:31:24 sab 1.77.68.1: #i35794#; change attribute names


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [0a5d427a4f4b5e1f588d9e107c8107141cbc09e6]

INTEGRATION: CWS oasisbf2 (1.103.60); FILE MERGED 2004/10/28 11:31:24 sab 1.103.60.1: #i35794#; change attribute names


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [cfec718f665118dcc69b766ecd769bb8ac0beabf]

INTEGRATION: CWS oasisbf2 (1.76.70); FILE MERGED 2004/10/29 16:18:26 sab 1.76.70.1: #i36349#; always write value type


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [c06ba937738ebe340eb8d1c145b19e22469d7f6c]

INTEGRATION: CWS oasisbf2 (1.180.62); FILE MERGED 2004/10/29 16:18:26 sab 1.180.62.1: #i36349#; always write value type


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [59f6d1f537a5c44e9f078dfe72f68922c13433b9]

INTEGRATION: CWS oasisbf2 (1.16.114); FILE MERGED 2004/10/28 11:31:23 sab 1.16.114.1: #i35794#; change attribute names


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [c4488b043b39c2a1c7008170fd23f2996793e077]

INTEGRATION: CWS oasisbf2 (1.15.114); FILE MERGED 2004/10/28 11:31:23 sab 1.15.114.1: #i35794#; change attribute names


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [076eebd8486b70d838606cf49e0db66a1a970573]

INTEGRATION: CWS oasisrng01 (1.77.90); FILE MERGED 2004/11/15 10:40:43 bm 1.77.90.2: RESYNC: (1.77-1.79); FILE MERGED 2004/11/10 18:23:44 bm 1.77.90.1: #i36650# put event-listeners in error-macros one level up


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [963e06e684d5e0a20e81865ceabdb90481215579]

INTEGRATION: CWS oasisrng01 (1.103.86); FILE MERGED 2004/11/15 10:40:35 bm 1.103.86.2: RESYNC: (1.103-1.106); FILE MERGED 2004/11/10 18:23:43 bm 1.103.86.1: #i36650# put event-listeners in error-macros one level up


2004-11-26  Rüdiger Timm  <rt@openoffice.org>  [e911a679252080d9e2f67501b09facd9fb76e5eb]

INTEGRATION: CWS oasisrng01 (1.15.160); FILE MERGED 2004/11/10 18:23:43 bm 1.15.160.1: #i36650# put event-listeners in error-macros one level up


2004-11-19  Oliver Bolte  <obo@openoffice.org>  [519f193828d49b71b70b737d6c3d9e19e4bd4cde]

INTEGRATION: CWS oooicons (1.71.10); FILE MERGED 2004/11/07 08:16:06 cd 1.71.10.2: #i35368# Added missing OK and CANCEL images to image list 2004/10/29 15:45:22 cd 1.71.10.1: #i35368# Adapt code to use static sfx imagelist and removed obsolete images


2004-11-19  Oliver Bolte  <obo@openoffice.org>  [d0f02f7168aece3c7b2fc053d6659af8510101ff]

INTEGRATION: CWS oooicons (1.14.84); FILE MERGED 2004/10/29 15:45:21 cd 1.14.84.1: #i35368# Adapt code to use static sfx imagelist and removed obsolete images


2004-11-19  Oliver Bolte  <obo@openoffice.org>  [2a4d0f6aba156dd89425caa9877a24a5f273533a]

INTEGRATION: CWS oooicons (1.5.146); FILE MERGED 2004/10/29 15:45:21 cd 1.5.146.1: #i35368# Adapt code to use static sfx imagelist and removed obsolete images


2004-11-19  Oliver Bolte  <obo@openoffice.org>  [8c8320f78809eab73de14d3450a1c5e91583146b]

INTEGRATION: CWS oooicons (1.41.4); FILE MERGED 2004/10/29 15:45:20 cd 1.41.4.1: #i35368# Adapt code to use static sfx imagelist and removed obsolete images


2004-11-18  Oliver Bolte  <obo@openoffice.org>  [c104febfd68a2def688eba90027f1ee4ebd00d2c]

INTEGRATION: CWS dr29 (1.20.126); FILE MERGED 2004/11/01 15:23:13 dr 1.20.126.1: #i36334# help ID for page field in DP Layout dialog


2004-11-18  Oliver Bolte  <obo@openoffice.org>  [f6adfd2829ad3d7575bf1796ca19729249987903]

INTEGRATION: CWS dr29 (1.44.6); FILE MERGED 2004/11/01 15:15:33 dr 1.44.6.1: #110793# DURATION


2004-11-18  Rüdiger Timm  <rt@openoffice.org>  [b4fcc9b339a977f944f862d19ecc0e571e1159ab]

INTEGRATION: CWS rt04 (1.6.40); FILE MERGED 2004/11/18 11:48:28 rt 1.6.40.1: #i36824# Do not deliver .res files for now, otherwise also image lists get delivered.


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [6c7ce6e3f8ec974659cb1f0f38d7be8becc63428]

INTEGRATION: CWS fwkp2fix02 (1.5.72); FILE MERGED 2004/11/03 16:16:02 mba 1.5.72.2: #29059#: code for detection of text filter was broken 2004/11/03 08:45:29 mba 1.5.72.1: #i33168#: type detection must consider template flag


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [62d7b119bcb6d64fc3f2ce287924fe1e35e6238f]

INTEGRATION: CWS fwkbugfix03 (1.21.40); FILE MERGED 2004/10/19 13:20:34 cd 1.21.40.1: #i30041# Added new state to support show/hide controllers with status update


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [11e35bb2f9931ce32e40846dbdb62a3b12b518b4]

INTEGRATION: CWS fwkbugfix03 (1.31.40); FILE MERGED 2004/10/19 13:20:34 cd 1.31.40.1: #i30041# Added new state to support show/hide controllers with status update


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [725c5e6f0ce2bc4a85b101e0466de58c543276c6]

INTEGRATION: CWS fwkbugfix03 (1.21.54); FILE MERGED 2004/10/19 13:20:33 cd 1.21.54.1: #i30041# Added new state to support show/hide controllers with status update


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [03834e323e4b8830973a67917695f4c971caca94]

INTEGRATION: CWS aw020 (1.3.638); FILE MERGED 2004/10/26 13:11:55 aw 1.3.638.1: #i33136#


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [eca97f2929811ee2ce1d7786045e112c1854d206]

INTEGRATION: CWS aw020 (1.2.18); FILE MERGED 2004/10/26 13:11:54 aw 1.2.18.1: #i33136#


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [a616c5a3d5f75c53687df642848850ee8fdee525]

INTEGRATION: CWS aw020 (1.7.194); FILE MERGED 2004/10/26 13:11:54 aw 1.7.194.1: #i33136#


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [9f38a136fb23ff168311da7c6b0effcbec772c66]

INTEGRATION: CWS aw020 (1.12.56); FILE MERGED 2004/10/26 13:11:53 aw 1.12.56.1: #i33136#


2004-11-17  Oliver Bolte  <obo@openoffice.org>  [95d2e66937cc77fa6e53a18d7bde3dbc32571435]

INTEGRATION: CWS aw020 (1.2.18); FILE MERGED 2004/10/26 13:11:53 aw 1.2.18.1: #i33136#


2004-11-16  Oliver Bolte  <obo@openoffice.org>  [de0798a9545f1cbac1269be81e1acf42a27c2c3f]

INTEGRATION: CWS docking4 (1.1.2); FILE ADDED 2004/11/05 09:19:54 cd 1.1.2.1: #i34955# Added alignmentbar for calc


2004-11-16  Oliver Bolte  <obo@openoffice.org>  [eca8029c9805e97a412f8488cf692ea09483da5f]

INTEGRATION: CWS docking4 (1.14.76); FILE MERGED 2004/10/29 16:11:33 ssa 1.14.76.1: #i32193# set listbox position dynamically as toolbox height is not fixed anymore


2004-11-16  Oliver Bolte  <obo@openoffice.org>  [89503b1618e891685b370be1c331cbc46b831ca2]

INTEGRATION: CWS dba19 (1.2.76); FILE MERGED 2004/10/28 11:25:35 oj 1.2.76.1: #i36128# correct help id


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [c5e9bb74ba735812a6ae50fb0e20348eb170d560]

INTEGRATION: CWS calc25 (1.16.74); FILE MERGED 2004/11/02 12:17:15 jmarmion 1.16.74.1: #i36502# remove the AdjustTextFrameWidthAndHeight() and use the existing TextRect.


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [fdb937eeec7e19a18f04bad655447cf18c236c22]

INTEGRATION: CWS calc25 (1.20.68); FILE MERGED 2004/10/28 16:05:41 nn 1.20.68.1: #i33370# handle SID_FONTWORK_GALLERY_FLOATER in ExecDrawIns, don't modify DrawFuncPtr


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [3ac08ffc47d2a54df0a88f4d4d419f485219e428]

INTEGRATION: CWS calc25 (1.17.32); FILE MERGED 2004/10/28 16:05:41 nn 1.17.32.1: #i33370# handle SID_FONTWORK_GALLERY_FLOATER in ExecDrawIns, don't modify DrawFuncPtr


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [f7c16a3ad3059bf495d582875eb75e12b46072d1]

INTEGRATION: CWS calc25 (1.22.66); FILE MERGED 2004/11/04 16:44:25 nn 1.22.66.1: #i36598# include page field selection in SID_DATA_SELECT


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [91f47ef72c6f6102e0ea9dbd360fd13489ccd1bf]

INTEGRATION: CWS calc25 (1.7.204); FILE MERGED 2004/11/04 16:44:24 nn 1.7.204.1: #i36598# include page field selection in SID_DATA_SELECT


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [0d9a1f0c0b12fd322b97575a4f679a70dd85f61b]

INTEGRATION: CWS calc25 (1.66.66); FILE MERGED 2004/10/29 13:22:26 nn 1.66.66.1: #i36120# MouseButtonDown: AutoFilter/Scenarios/DataPilot buttons only with left mouse button


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [4c87723debaa290ac8f77d548f5d61923c86cc77]

INTEGRATION: CWS calc25 (1.31.68); FILE MERGED 2004/11/04 16:44:26 nn 1.31.68.1: #i36598# include page field selection in SID_DATA_SELECT


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [a76d2de60f13d22af19891b69af9d71f24f7d782]

INTEGRATION: CWS calc25 (1.23.68); FILE MERGED 2004/11/01 16:57:10 nn 1.23.68.1: #i36378# removed TABLEID_DOC define again


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [a2e065f7a27a591ac17bb0205aa58c5cf455d02f]

INTEGRATION: CWS calc25 (1.16.68); FILE MERGED 2004/11/04 16:43:36 nn 1.16.68.1: #i36598# include page field selection in SID_DATA_SELECT


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [ad1e0a229a667525156edc245f05b67e83d83287]

INTEGRATION: CWS calc25 (1.18.72); FILE MERGED 2004/11/04 16:43:36 nn 1.18.72.1: #i36598# include page field selection in SID_DATA_SELECT


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [24f63fa822496c0380e0179cc6ca194e39a2a72f]

INTEGRATION: CWS calc25 (1.52.64); FILE MERGED 2004/11/03 14:54:52 nn 1.52.64.1: #i31130# store xml overflow flag in document instead of ScXMLImport


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [363d6d2e292a8897b0152d01c8fe096311f24334]

INTEGRATION: CWS calc25 (1.77.70); FILE MERGED 2004/11/03 14:54:51 nn 1.77.70.1: #i31130# store xml overflow flag in document instead of ScXMLImport


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [26095d3f67db901af6931423cb3b585f96fc4dbd]

INTEGRATION: CWS calc25 (1.103.62); FILE MERGED 2004/11/03 14:54:51 nn 1.103.62.1: #i31130# store xml overflow flag in document instead of ScXMLImport


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [25680434fd9d1a67bb8839e689ebbb69e1b91786]

INTEGRATION: CWS calc25 (1.13.116); FILE MERGED 2004/11/02 16:33:35 nn 1.13.116.1: #b5079741# use Time::GetSystemTicks instead of own GetSysTicks


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [3d09355cb9aac464be412643dad5d7d02f9bbc76]

INTEGRATION: CWS calc25 (1.31.2); FILE MERGED 2004/11/02 16:38:52 er 1.31.2.1: #i36516# GetString: convert double to string also if from matrix


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [8aecf7283ebec07b886085e484114ed60910a8b3]

INTEGRATION: CWS calc25 (1.11.204); FILE MERGED 2004/11/04 14:53:41 nn 1.11.204.1: #i22811# better precision for skew/kurt (patch from mukund)


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [d2e42d2c80e7a6c29441ad30c55ed5619328e54b]

INTEGRATION: CWS calc25 (1.21.68); FILE MERGED 2004/11/04 14:16:09 er 1.21.68.1: #i28955# goal seek ScBackSolver: break out of discrete functions' steadiness; provided by Kohei Yoshida <kohei@ooo>


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [bc20d25402819b57922000295bc074d9147affa2]

INTEGRATION: CWS calc25 (1.31.2); FILE MERGED 2004/11/04 14:53:19 nn 1.31.2.2: #i22811# better precision for var/varp/stdev/stdevp/devsq (patch from mukund) 2004/11/01 17:09:40 er 1.31.2.1: #i36381# numbers are treated as being less than strings only for the [HV]?LOOKUP and MATCH functions


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [658f74398a548837f18f1070955645bf44efa643]

INTEGRATION: CWS calc25 (1.19.2); FILE MERGED 2004/11/01 17:09:39 er 1.19.2.1: #i36381# numbers are treated as being less than strings only for the [HV]?LOOKUP and MATCH functions


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [4317c72fbdc43315e3c715d52cac409cf99fdf57]

INTEGRATION: CWS calc25 (1.17.74); FILE MERGED 2004/11/01 17:09:39 er 1.17.74.1: #i36381# numbers are treated as being less than strings only for the [HV]?LOOKUP and MATCH functions


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [33b8044c3e8692514f3db00252c1ecef578b9602]

INTEGRATION: CWS calc25 (1.62.74); FILE MERGED 2004/11/09 15:44:54 er 1.62.74.1: #i36299# UpdateReference: don't duplicate start/end listeners action during cut&paste / drag&drop


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [cd59c5aee8b495f533b59f60951e8bb079102941]

INTEGRATION: CWS calc25 (1.36.68); FILE MERGED 2004/11/02 16:33:50 nn 1.36.68.1: #b5079741# use Time::GetSystemTicks instead of own GetSysTicks


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [4d2427541c6a0afcff72d748e5a5a7ba22a0944d]

INTEGRATION: CWS calc25 (1.45.74); FILE MERGED 2004/11/03 14:54:14 nn 1.45.74.1: #i31130# store xml overflow flag in document instead of ScXMLImport


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [4cb0fdaff8b29c66dc2a255bb836d393b59bec49]

INTEGRATION: CWS calc25 (1.11.74); FILE MERGED 2004/11/02 15:37:47 er 1.11.74.1: #i36514# BinarySearch: don't access memory beyond array bounds


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [a9c51104d167f9166dcf887998f78b1503965752]

INTEGRATION: CWS calc25 (1.21.78); FILE MERGED 2004/11/09 15:44:53 er 1.21.78.3: #i36299# UpdateReference: don't duplicate start/end listeners action during cut&paste / drag&drop 2004/11/05 11:27:29 er 1.21.78.2: #i18937# UpdateReference: a shared formula is not a named formula that needs it's relative references wrapped, even if it is stored as such 2004/11/02 14:40:16 er 1.21.78.1: #i36299# UpdateReference: don't duplicate start/end listeners action during cut&paste / drag&drop


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [2bd3eb467559841eb74a45cff92d0c73181525b0]

INTEGRATION: CWS calc25 (1.24.2); FILE MERGED 2004/11/04 17:33:58 nn 1.24.2.2: RESYNC: (1.24-1.25); FILE MERGED 2004/11/02 15:09:01 er 1.24.2.1: #i36515# Interpret: let the interpreter release an unused matrix by refcount


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [d8efe735c06d48d4a78bb3a32a38163e93ba8f14]

INTEGRATION: CWS calc25 (1.16.32); FILE MERGED 2004/10/28 16:05:19 nn 1.16.32.1: #i33370# handle SID_FONTWORK_GALLERY_FLOATER in ExecDrawIns, don't modify DrawFuncPtr


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [1eef4ce1cf1c3a7961654c2cdc21d63f78fcce49]

INTEGRATION: CWS calc25 (1.40.74); FILE MERGED 2004/11/01 17:09:38 er 1.40.74.1: #i36381# numbers are treated as being less than strings only for the [HV]?LOOKUP and MATCH functions


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [554449233663a49b5cb1a7f85b66ae28f8196f2c]

INTEGRATION: CWS calc25 (1.83.74); FILE MERGED 2004/11/03 14:53:50 nn 1.83.74.1: #i31130# store xml overflow flag in document instead of ScXMLImport


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [8fcb50acf56778bf167da9be17735900028d1300]

INTEGRATION: CWS oasisbf3 (1.53.84); FILE MERGED 2004/11/05 20:09:25 sab 1.53.84.1: #i36731#,#i36752#,#i36644#; some OASIS changes


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [59d3a22fadbfb279e3478ce9388fd1aed1da2945]

INTEGRATION: CWS oasisbf3 (1.77.84); FILE MERGED 2004/11/05 20:07:09 sab 1.77.84.1: #i36754# fix some OASIS stuff


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [d431612383aff2c75c07a486bea9c2c2bc2b1bb0]

INTEGRATION: CWS oasisbf3 (1.103.78); FILE MERGED 2004/11/05 20:07:08 sab 1.103.78.1: #i36754# fix some OASIS stuff


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [7ecdb1eacdd4474598ea1835efa09b74e8c8b7e2]

INTEGRATION: CWS oasisbf3 (1.180.80); FILE MERGED 2004/11/04 17:34:29 sab 1.180.80.1: #i36639#; comment out the old style to write the date and author of annotation


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [0ba2160f3f1c41a2f956d6565791d3ed51e94d0a]

INTEGRATION: CWS oasisbf3 (1.16.128); FILE MERGED 2004/11/05 22:31:42 sab 1.16.128.1: #i36735#; some OASIS changes


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [17d5caa2065fb85322515afd8d400eee83f3777e]

INTEGRATION: CWS oasisbf3 (1.15.154); FILE MERGED 2004/11/05 20:06:38 sab 1.15.154.1: #i36754# fix some OASIS stuff


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [c183ac90bc347d60f31af0a7457af170d10cf436]

INTEGRATION: CWS oasisbf3 (1.39.154); FILE MERGED 2004/11/05 20:01:32 sab 1.39.154.1: #i36754#,#i36650# fix some OASIS stuff


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [07e905bd98cfc753c4beec9210395d6550e4332a]

INTEGRATION: CWS oasisbf3 (1.15.128); FILE MERGED 2004/11/05 22:31:42 sab 1.15.128.1: #i36735#; some OASIS changes


2004-11-15  Oliver Bolte  <obo@openoffice.org>  [c739a1842a1261ddb0e1374e89c0a73c747e95b8]

INTEGRATION: CWS oasisbf3 (1.50.40); FILE MERGED 2004/11/08 12:29:03 er 1.50.40.1: #i36802# NextSymbol: prevent buffer overflow for ill identifiers


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [63bcf94a75fafce65ceaa799adcb2f16496f5fed]

INTEGRATION: CWS calc24 (1.37.178); FILE MERGED 2004/10/19 14:34:01 sab 1.37.178.1: #i26955#; set Matrix after all things on the cell are set


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [d47bff2778edb61c8d2b3313f042291d0fafc17a]

INTEGRATION: CWS calc24 (1.43.20); FILE MERGED 2004/10/27 14:16:11 nn 1.43.20.2: RESYNC: (1.43-1.46); FILE MERGED 2004/10/13 14:14:10 nn 1.43.20.1: #116278# moved ReadExtOptions from Construct to Activate


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [ebbf7f63496ab082bf1523af969d6fea4275803d]

INTEGRATION: CWS calc24 (1.32.24); FILE MERGED 2004/10/27 14:15:22 nn 1.32.24.2: RESYNC: (1.32-1.34); FILE MERGED 2004/10/13 17:08:25 jmarmion 1.32.24.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [3e117321e67f514b19014295ce76a04b1d69fdcb]

INTEGRATION: CWS calc24 (1.9.178); FILE MERGED 2004/10/22 14:14:28 nn 1.9.178.1: #b4974740# parse base-cell-address of conditional formats after all sheets are loaded


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [7a44fc998c46de0009b2e486611eca25bbef5c57]

INTEGRATION: CWS calc24 (1.47.24); FILE MERGED 2004/10/18 09:19:23 nn 1.47.24.1: #i34159# ScModelObj::Notify: always call SfxBaseModel::Notify


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [1ee2f3f58f015f302daf00395b338a5bc56c626a]

INTEGRATION: CWS calc24 (1.4.42); FILE MERGED 2004/10/13 16:55:46 jmarmion 1.4.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [7c546357ff93b7b84fcfda32df7fd2cc0acf0d1b]

INTEGRATION: CWS calc24 (1.5.42); FILE MERGED 2004/10/13 16:55:46 jmarmion 1.5.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [771293b0766a674ae8fc67d76b6aa6e9e1f42a1d]

INTEGRATION: CWS calc24 (1.5.42); FILE MERGED 2004/10/13 17:07:55 jmarmion 1.5.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [d42d5220ea4ce65d03fb2913fe2ffc94ddce7e80]

INTEGRATION: CWS calc24 (1.17.42); FILE MERGED 2004/10/13 17:07:55 jmarmion 1.17.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [45c82df4b0ac9f5256b7c8d47b1322137188fbbd]

INTEGRATION: CWS calc24 (1.21.42); FILE MERGED 2004/10/13 17:07:55 jmarmion 1.21.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f24e539d1c39265246d80c19ef53b4619a15642]

INTEGRATION: CWS calc24 (1.25.178); FILE MERGED 2004/10/19 14:34:02 sab 1.25.178.1: #i26955#; set Matrix after all things on the cell are set


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [1090db525d7c930dad35a548b34a1dfed4f13d44]

INTEGRATION: CWS calc24 (1.50.42); FILE MERGED 2004/10/22 15:32:52 nn 1.50.42.2: #b4974740# parse base-cell-address of conditional formats after all sheets are loaded 2004/10/19 10:42:11 sab 1.50.42.1: #i27594#; don't insert AllBorderWidth


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [718a14b3b9a5f2297a809bb632a6e75cd1fea27c]

INTEGRATION: CWS calc24 (1.77.42); FILE MERGED 2004/10/22 15:32:52 nn 1.77.42.1: #b4974740# parse base-cell-address of conditional formats after all sheets are loaded


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [f587cf0a980cd37039ec0ad48fa905bc012a7a20]

INTEGRATION: CWS calc24 (1.103.26); FILE MERGED 2004/10/22 15:32:52 nn 1.103.26.1: #b4974740# parse base-cell-address of conditional formats after all sheets are loaded


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [3b0b4960b7e5f50c4f8e03026932a31d2b5888d6]

INTEGRATION: CWS calc24 (1.180.26); FILE MERGED 2004/10/13 17:07:02 jmarmion 1.180.26.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [90b1bb8c4b5a0049a99b006ee6a3f02983335463]

INTEGRATION: CWS calc24 (1.78.42); FILE MERGED 2004/10/22 15:32:51 nn 1.78.42.3: #b4974740# parse base-cell-address of conditional formats after all sheets are loaded 2004/10/19 14:34:01 sab 1.78.42.2: #i26955#; set Matrix after all things on the cell are set 2004/10/13 17:07:02 jmarmion 1.78.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [297909577376d094eab6164ffc60d8bb8796cba2]

INTEGRATION: CWS calc24 (1.72.26); FILE MERGED 2004/10/13 17:05:24 jmarmion 1.72.26.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [3ea3100684d442e9e1107f5129a4ce7eff07e6b3]

INTEGRATION: CWS calc24 (1.11.42); FILE MERGED 2004/10/27 14:10:01 nn 1.11.42.2: RESYNC: (1.11-1.12); FILE MERGED 2004/10/13 16:56:21 jmarmion 1.11.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [19c85a5d1012a9fcfebf2e7d0121f45fa813c133]

INTEGRATION: CWS calc24 (1.23.24); FILE MERGED 2004/10/27 14:06:50 nn 1.23.24.2: RESYNC: (1.23-1.24); FILE MERGED 2004/10/13 17:04:47 jmarmion 1.23.24.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [c211a38afb12fb7d9345b306755339aecc040476]

INTEGRATION: CWS calc24 (1.4.42); FILE MERGED 2004/10/27 14:05:40 nn 1.4.42.2: RESYNC: (1.4-1.5); FILE MERGED 2004/10/13 17:04:47 jmarmion 1.4.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [7947c77b4de2f513cacfb559947b46cf6b00abe3]

INTEGRATION: CWS calc24 (1.21.26); FILE MERGED 2004/10/13 17:04:08 jmarmion 1.21.26.1: #i26611# - suppport copy/paste of notes to diffrent destination document.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [ca599e89915e63799463cf30691f364d8775b9e7]

INTEGRATION: CWS calc24 (1.16.42); FILE MERGED 2004/10/27 12:52:37 jmarmion 1.16.42.2: #118213# no need to modify the top of the visible note now that we support repositioning. 2004/10/13 17:03:11 jmarmion 1.16.42.1: #i33636# - suppport vertical writing for Notes.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [31a6ea385861fba73647df242d60f7dac07af835]

INTEGRATION: CWS calc24 (1.10.178); FILE MERGED 2004/10/13 17:02:22 jmarmion 1.10.178.1: #i26611# - suppport copy/paste of cell notes for all cell types.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [e0953f622df4950834d6c5c901434a1cc4e1fd95]

INTEGRATION: CWS calc24 (1.2.42); FILE MERGED 2004/10/13 17:01:15 jmarmion 1.2.42.1: #i26611# support copy/paste of cell notes to a different destination document.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [422078cb5cc3b1fd12d802fd48067295db623449]

INTEGRATION: CWS calc24 (1.31.24); FILE MERGED 2004/10/27 14:02:24 nn 1.31.24.2: RESYNC: (1.31-1.32); FILE MERGED 2004/10/13 16:59:35 jmarmion 1.31.24.1: #i32669# - support RTL for Notes if Note is currently getting inserted.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [a628474c3e7c835850919fc0efdddbe623e2ea2e]

INTEGRATION: CWS calc24 (1.14.42); FILE MERGED 2004/10/27 14:02:16 nn 1.14.42.2: RESYNC: (1.14-1.15); FILE MERGED 2004/10/22 13:51:57 nn 1.14.42.1: #b4974740# parse base-cell-address of conditional formats after all sheets are loaded


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [bf632113ca68024710e4327ac676ca8bd8292228]

INTEGRATION: CWS calc24 (1.14.42); FILE MERGED 2004/10/13 16:58:02 jmarmion 1.14.42.1: #i26611# support copy/paste of cell notes for all cell types.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [fe602d3620d5ffc730a5ed171c0d204cd670423c]

INTEGRATION: CWS calc24 (1.21.48); FILE MERGED 2004/10/13 16:58:02 jmarmion 1.21.48.1: #i26611# support copy/paste of cell notes for all cell types.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [c30f0c817c73334daf3033411e238dd6ab06b76e]

INTEGRATION: CWS calc24 (1.23.42); FILE MERGED 2004/10/27 14:01:59 nn 1.23.42.2: RESYNC: (1.23-1.24); FILE MERGED 2004/10/13 16:58:01 jmarmion 1.23.42.1: #i26611# support copy/paste of cell notes for all cell types.


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [8e3ed9b5dccea7a8afe7a00d7ecb638893b9e9ca]

INTEGRATION: CWS calc24 (1.66.48); FILE MERGED 2004/10/22 13:51:34 nn 1.66.48.1: #b4974740# parse base-cell-address of conditional formats after all sheets are loaded


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [3db7b252c478c9a7b4acce1101b76010348969ac]

INTEGRATION: CWS calc24 (1.2.42); FILE MERGED 2004/10/13 16:53:53 jmarmion 1.2.42.1: #26611# - suppport copy/paste of Notes for all cell types


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [5a97da1c4d63f89d1292706714c8cef3fe93c841]

INTEGRATION: CWS calc24 (1.5.178); FILE MERGED 2004/10/22 13:51:33 nn 1.5.178.1: #b4974740# parse base-cell-address of conditional formats after all sheets are loaded


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [67ca74e968dd4fecf2dbeeb34d32132cde2e64a1]

INTEGRATION: CWS calc24 (1.15.42); FILE MERGED 2004/10/13 16:53:26 jmarmion 1.15.42.1: #26611# - suppport copy/paste of Notes for all cell types


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [779e20d2aff90c4b35c8819c0fd92787f1e78bef]

INTEGRATION: CWS dr27 (1.24.44); FILE MERGED 2004/10/28 12:07:06 dr 1.24.44.1: #110618# #i3724# #i25653# new formula export, step 16: import filter uses new function info provider


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [5fec9377c6f41eaa4e526f38857e34fd91d11cab]

INTEGRATION: CWS dr27 (1.17.16); FILE MERGED 2004/10/19 09:14:49 dr 1.17.16.3: RESYNC: (1.17-1.18); FILE MERGED 2004/10/05 11:43:01 dr 1.17.16.2: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses 2004/10/01 11:09:34 dr 1.17.16.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [313e5afe8f6930f364a2a86e3441bea5b0aee50c]

INTEGRATION: CWS dr27 (1.2.18); FILE MERGED 2004/10/14 10:13:52 dr 1.2.18.1: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [8f40ff1bb0406b5ec0b017e24852938d0944465c]

INTEGRATION: CWS dr27 (1.15.16); FILE MERGED 2004/10/21 14:34:15 dr 1.15.16.4: RESYNC: (1.16-1.17); FILE MERGED 2004/10/19 09:14:27 dr 1.15.16.3: RESYNC: (1.15-1.16); FILE MERGED 2004/10/07 17:26:32 dr 1.15.16.2: #110618# #i3724# #i25653# new formula export, step 6: rudimentary function support, DDE links 2004/10/06 17:57:25 dr 1.15.16.1: #110618# #i3724# #i25653# new formula export, step 5: defined names, db ranges


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [2361fe74ccce94ae038428186f745a1cc935a41f]

INTEGRATION: CWS dr27 (1.3.18); FILE MERGED 2004/10/28 17:26:38 dr 1.3.18.13: #i3724# new formula export, bug hunting 5: 2d refs in names, token class of 1st parameter of OR/AND operator 2004/10/27 13:05:23 dr 1.3.18.12: #110618# #i3724# #i25653# #b4963900# new formula export, step 15: skip parameters simplified, remove unused files 2004/10/21 13:52:23 dr 1.3.18.11: #110618# #i3724# #i25653# new formula export, step 13: more token class handling, reference subexpression tokens for tList, tIsect, tRange tokens 2004/10/18 19:33:20 dr 1.3.18.10: #110618# #i3724# #i25653# new formula export, step 12: volatile defined names, basic token class handling 2004/10/15 14:18:03 dr 1.3.18.9: #110618# #i3724# #i25653# new formula export, step 11: special jump tokens together with space tokens 2004/10/14 12:56:18 dr 1.3.18.8: #110618# #i3724# #i25653# new formula export, step 9: special jump tokens for IF function parameters 2004/10/14 10:13:52 dr 1.3.18.7: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM 2004/10/12 15:49:29 dr 1.3.18.6: #110618# #i3724# #i25653# new formula export, step 7: unary/ref operator precedence, builtin function list, list validation 2004/10/07 17:26:32 dr 1.3.18.5: #110618# #i3724# #i25653# new formula export, step 6: rudimentary function support, DDE links 2004/10/06 16:17:33 dr 1.3.18.4: #110618# #i3724# #i25653# new formula export, step 4: remove last usage of old code, range list support, natural language refs 2004/10/05 17:33:48 dr 1.3.18.3: #110618# #i3724# #i25653# new formula export, step 3: cell and range references 2004/10/05 11:42:21 dr 1.3.18.2: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses 2004/10/01 11:08:24 dr 1.3.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [b57d9716db0d4d5dc7c118aacded16b1887b63d7]

INTEGRATION: CWS dr27 (1.2.18); FILE MERGED 2004/10/21 14:33:13 dr 1.2.18.4: RESYNC: (1.2-1.3); FILE MERGED 2004/10/14 10:13:52 dr 1.2.18.3: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM 2004/10/05 11:42:21 dr 1.2.18.2: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses 2004/10/01 11:08:23 dr 1.2.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [fe5262e93074c275750bb7697f0b17d1e00e9e44]

INTEGRATION: CWS dr27 (1.3.18); FILE MERGED 2004/10/05 11:42:20 dr 1.3.18.1: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [1a98b79e6152dc1f34a048a99fb6b7b2b2f3e76b]

INTEGRATION: CWS dr27 (1.11.18); FILE MERGED 2004/11/04 15:38:23 dr 1.11.18.3: #110618# #i3724# #i25653# new formula export, step 20: unsupported functions 2004/10/21 14:32:55 dr 1.11.18.2: RESYNC: (1.11-1.12); FILE MERGED 2004/10/01 11:08:23 dr 1.11.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [4f4bb6ceeb2f311a871a4e0478f6e7af405af896]

INTEGRATION: CWS dr27 (1.8.18); FILE MERGED 2004/10/05 17:33:47 dr 1.8.18.1: #110618# #i3724# #i25653# new formula export, step 3: cell and range references


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [f9bfb9cb80dd74d02d3240e6806373c494481a70]

INTEGRATION: CWS dr27 (1.1.2); FILE ADDED 2004/11/03 20:29:51 dr 1.1.2.7: #110618# #i3724# #i25653# new formula export, step 19: range lists with forced 3D refs; entire row/column refs for all BIFF versions (i.e. 2:2, B:B) 2004/11/03 17:31:33 dr 1.1.2.6: #110618# #i3724# #i25653# new formula export, step 18: token class handling in names, restrict list validation to 2D refs 2004/10/14 10:13:52 dr 1.1.2.5: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM 2004/10/12 15:49:29 dr 1.1.2.4: #110618# #i3724# #i25653# new formula export, step 7: unary/ref operator precedence, builtin function list, list validation 2004/10/06 16:17:33 dr 1.1.2.3: #110618# #i3724# #i25653# new formula export, step 4: remove last usage of old code, range list support, natural language refs 2004/10/05 11:42:20 dr 1.1.2.2: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses 2004/10/01 11:09:01 dr 1.1.2.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [1eb79c176f4a2ee4127433349d9318085c9b8762]

INTEGRATION: CWS dr27 (1.2.18); FILE MERGED 2004/10/21 14:32:38 dr 1.2.18.2: RESYNC: (1.2-1.3); FILE MERGED 2004/10/01 11:08:23 dr 1.2.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [ab75e1909bce5a617187a1ce94d9086e2cda08b7]

INTEGRATION: CWS dr27 (1.7.18); FILE MERGED 2004/10/01 11:08:23 dr 1.7.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [b61f9c0d4b616345c3c5bdf0019b249002334509]

INTEGRATION: CWS dr27 (1.36.16); FILE MERGED 2004/10/19 09:13:50 dr 1.36.16.2: RESYNC: (1.36-1.37); FILE MERGED 2004/10/01 11:08:23 dr 1.36.16.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [4368a5d46c5a1a8e8488d42e6f8258e5fc05b34f]

INTEGRATION: CWS dr27 (1.8.276); FILE MERGED 2004/10/01 11:08:23 dr 1.8.276.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [974ef48f136cf8dd935cc41745228311f513943f]

INTEGRATION: CWS dr27 (1.43.18); FILE MERGED 2004/10/18 19:33:19 dr 1.43.18.2: #110618# #i3724# #i25653# new formula export, step 12: volatile defined names, basic token class handling 2004/10/01 11:08:22 dr 1.43.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [fe17a5922819f1d1d150873ba14d0755e10e294a]

INTEGRATION: CWS dr27 (1.11.162); FILE MERGED 2004/10/28 12:06:55 dr 1.11.162.1: #110618# #i3724# #i25653# new formula export, step 16: import filter uses new function info provider


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [edfeb2c6010712ddb56a4d234b2f65f36e0386a0]

INTEGRATION: CWS dr27 (1.16.44); FILE MERGED 2004/10/28 12:06:54 dr 1.16.44.1: #110618# #i3724# #i25653# new formula export, step 16: import filter uses new function info provider


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [acb58d56a3d8247d00fe62ce7902a127acfddb08]

INTEGRATION: CWS dr27 (1.13.18); FILE MERGED 2004/10/01 11:08:22 dr 1.13.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [d1e14ff77c86589f75ece22264d8796b39a17467]

INTEGRATION: CWS dr27 (1.15.16); FILE MERGED 2004/10/21 14:31:36 dr 1.15.16.3: RESYNC: (1.18-1.19); FILE MERGED 2004/10/19 09:12:17 dr 1.15.16.2: RESYNC: (1.15-1.18); FILE MERGED 2004/10/06 17:57:13 dr 1.15.16.1: #110618# #i3724# #i25653# new formula export, step 5: defined names, db ranges


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [a735205248e5484c6a72bb67e1ecf3a35059c31c]

INTEGRATION: CWS dr27 (1.3.18); FILE MERGED 2004/11/02 19:31:54 dr 1.3.18.11: #110618# #i3724# #i25653# new formula export, step 17: token class handling 2004/10/28 17:26:27 dr 1.3.18.10: #i3724# new formula export, bug hunting 5: 2d refs in names, token class of 1st parameter of OR/AND operator 2004/10/28 12:06:32 dr 1.3.18.9: #110618# #i3724# #i25653# new formula export, step 16: import filter uses new function info provider 2004/10/28 10:28:34 dr 1.3.18.8: #i3724# new formula export, bug hunting 3: parameter count in different BIFF versions 2004/10/21 14:31:20 dr 1.3.18.7: RESYNC: (1.3-1.4); FILE MERGED 2004/10/18 19:32:20 dr 1.3.18.6: #110618# #i3724# #i25653# new formula export, step 12: volatile defined names, basic token class handling 2004/10/14 12:55:24 dr 1.3.18.5: #110618# #i3724# #i25653# new formula export, step 9: special jump tokens for IF function parameters 2004/10/14 10:13:23 dr 1.3.18.4: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM 2004/10/12 15:47:39 dr 1.3.18.3: #110618# #i3724# #i25653# new formula export, step 7: unary/ref operator precedence, builtin function list, list validation 2004/10/07 17:26:15 dr 1.3.18.2: #110618# #i3724# #i25653# new formula export, step 6: rudimentary function support, DDE links 2004/10/05 11:40:17 dr 1.3.18.1: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [81397a157948325dd50875bf719e5aab567817e9]

INTEGRATION: CWS dr27 (1.2.18); FILE MERGED 2004/10/21 14:30:00 dr 1.2.18.5: RESYNC: (1.2-1.3); FILE MERGED 2004/10/14 10:13:23 dr 1.2.18.4: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM 2004/10/12 15:47:38 dr 1.2.18.3: #110618# #i3724# #i25653# new formula export, step 7: unary/ref operator precedence, builtin function list, list validation 2004/10/05 11:40:17 dr 1.2.18.2: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses 2004/10/01 11:07:27 dr 1.2.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [caed3ada0689c213513239276aef5409fd86cd6e]

INTEGRATION: CWS dr27 (1.4.18); FILE MERGED 2004/10/05 11:40:17 dr 1.4.18.1: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [732a4471e72daf65210ff0e7bbe25c11f08f9d5f]

INTEGRATION: CWS dr27 (1.12.18); FILE MERGED 2004/11/04 15:38:07 dr 1.12.18.3: #110618# #i3724# #i25653# new formula export, step 20: unsupported functions 2004/10/21 14:29:41 dr 1.12.18.2: RESYNC: (1.12-1.13); FILE MERGED 2004/10/01 11:07:27 dr 1.12.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [705893d353a533d33c503391e1cdba52b4d40c13]

INTEGRATION: CWS dr27 (1.11.18); FILE MERGED 2004/10/05 17:33:27 dr 1.11.18.1: #110618# #i3724# #i25653# new formula export, step 3: cell and range references


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [5ed1f21664551fdf6a436226ce94f4681a8b53ee]

INTEGRATION: CWS dr27 (1.1.2); FILE ADDED 2004/11/04 15:38:07 dr 1.1.2.24: #110618# #i3724# #i25653# new formula export, step 20: unsupported functions 2004/11/03 20:29:36 dr 1.1.2.23: #110618# #i3724# #i25653# new formula export, step 19: range lists with forced 3D refs; entire row/column refs for all BIFF versions (i.e. 2:2, B:B) 2004/11/03 17:31:15 dr 1.1.2.22: #110618# #i3724# #i25653# new formula export, step 18: token class handling in names, restrict list validation to 2D refs 2004/11/02 19:31:53 dr 1.1.2.21: #110618# #i3724# #i25653# new formula export, step 17: token class handling 2004/10/28 18:39:40 dr 1.1.2.20: #i3724# new formula export, bug hunting 6: names 3D reference handling 2004/10/28 17:26:27 dr 1.1.2.19: #i3724# new formula export, bug hunting 5: 2d refs in names, token class of 1st parameter of OR/AND operator 2004/10/28 14:10:43 dr 1.1.2.18: #i3724# new formula export, bug hunting 4: restore col/row del flag in name refs 2004/10/27 13:04:18 dr 1.1.2.17: #110618# #i3724# #i25653# #b4963900# new formula export, step 15: skip parameters simplified, remove unused files 2004/10/26 14:43:25 dr 1.1.2.16: #i3724# new formula export, bug hunting 2: addin functions 2004/10/22 11:11:24 dr 1.1.2.15: #i3724# new formula export, bug hunting 1: MulDivTerm used wrong expected token class for 2nd operand 2004/10/22 09:34:13 dr 1.1.2.14: #110618# #i3724# #i25653# #b4963900# new formula export, step 14: support esteregg operators AND, OR, NEG (converted to AND(), OR(), unary minus) 2004/10/21 13:52:11 dr 1.1.2.13: #110618# #i3724# #i25653# new formula export, step 13: more token class handling, reference subexpression tokens for tList, tIsect, tRange tokens 2004/10/18 19:32:19 dr 1.1.2.12: #110618# #i3724# #i25653# new formula export, step 12: volatile defined names, basic token class handling 2004/10/15 14:17:45 dr 1.1.2.11: #110618# #i3724# #i25653# new formula export, step 11: special jump tokens together with space tokens 2004/10/15 10:18:36 dr 1.1.2.10: #110618# #i3724# #i25653# new formula export, step 10: special jump tokens for CHOOSE function parameters 2004/10/14 12:55:24 dr 1.1.2.9: #110618# #i3724# #i25653# new formula export, step 9: special jump tokens for IF function parameters 2004/10/14 10:13:23 dr 1.1.2.8: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM 2004/10/12 15:47:38 dr 1.1.2.7: #110618# #i3724# #i25653# new formula export, step 7: unary/ref operator precedence, builtin function list, list validation 2004/10/07 17:26:15 dr 1.1.2.6: #110618# #i3724# #i25653# new formula export, step 6: rudimentary function support, DDE links 2004/10/06 17:57:13 dr 1.1.2.5: #110618# #i3724# #i25653# new formula export, step 5: defined names, db ranges 2004/10/06 16:17:14 dr 1.1.2.4: #110618# #i3724# #i25653# new formula export, step 4: remove last usage of old code, range list support, natural language refs 2004/10/05 17:33:27 dr 1.1.2.3: #110618# #i3724# #i25653# new formula export, step 3: cell and range references 2004/10/05 11:40:17 dr 1.1.2.2: #110618# #i3724# #i25653# new formula export, step 2: basic functionality: const operands, unary/binary operators, parentheses 2004/10/01 11:09:16 dr 1.1.2.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [c466b8592f3cb8ab635f49242ebdb969948e6e73]

INTEGRATION: CWS dr27 (1.4.18); FILE MERGED 2004/11/03 20:29:36 dr 1.4.18.3: #110618# #i3724# #i25653# new formula export, step 19: range lists with forced 3D refs; entire row/column refs for all BIFF versions (i.e. 2:2, B:B) 2004/10/21 14:29:20 dr 1.4.18.2: RESYNC: (1.4-1.5); FILE MERGED 2004/10/01 11:07:27 dr 1.4.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [07d1fb55e8738ae188b3aea4f4ca278c36e7cdef]

INTEGRATION: CWS dr27 (1.10.18); FILE MERGED 2004/11/03 17:31:15 dr 1.10.18.3: #110618# #i3724# #i25653# new formula export, step 18: token class handling in names, restrict list validation to 2D refs 2004/10/12 15:47:38 dr 1.10.18.2: #110618# #i3724# #i25653# new formula export, step 7: unary/ref operator precedence, builtin function list, list validation 2004/10/01 11:07:27 dr 1.10.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [9d0977d18e973c5718aeeaceee3ef8156130388e]

INTEGRATION: CWS dr27 (1.18.162); FILE MERGED 2004/10/01 11:07:27 dr 1.18.162.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [b8147b5ab69146e316a403df687218e89f88b267]

INTEGRATION: CWS dr27 (1.28.18); FILE MERGED 2004/10/14 10:13:22 dr 1.28.18.2: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM 2004/10/01 11:07:27 dr 1.28.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [c6285bd68e1bc4f6381567a944097163b577360a]

INTEGRATION: CWS dr27 (1.65.16); FILE MERGED 2004/10/28 12:06:32 dr 1.65.16.4: #110618# #i3724# #i25653# new formula export, step 16: import filter uses new function info provider 2004/10/21 14:29:13 dr 1.65.16.3: RESYNC: (1.66-1.67); FILE MERGED 2004/10/19 09:11:20 dr 1.65.16.2: RESYNC: (1.65-1.66); FILE MERGED 2004/10/01 11:07:26 dr 1.65.16.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [3832a26a4d991b4246062885996113dab227827f]

INTEGRATION: CWS dr27 (1.20.18); FILE MERGED 2004/10/21 14:29:05 dr 1.20.18.2: RESYNC: (1.20-1.21); FILE MERGED 2004/10/01 11:07:26 dr 1.20.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [e56ef712d25964f5bbc35e6244fa76f611c5f9f0]

INTEGRATION: CWS dr27 (1.50.18); FILE MERGED 2004/10/01 11:07:26 dr 1.50.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [36a244f7acb08270ddc0055bd236470b6d2dcd8a]

INTEGRATION: CWS dr27 (1.75.18); FILE MERGED 2004/11/04 15:38:06 dr 1.75.18.3: #110618# #i3724# #i25653# new formula export, step 20: unsupported functions 2004/11/03 20:29:36 dr 1.75.18.2: #110618# #i3724# #i25653# new formula export, step 19: range lists with forced 3D refs; entire row/column refs for all BIFF versions (i.e. 2:2, B:B) 2004/10/01 11:07:26 dr 1.75.18.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [15ab0484f3ebd0c83377a715a13fb6e011418d74]

INTEGRATION: CWS dr27 (1.101.2); FILE MERGED 2004/10/28 12:06:32 dr 1.101.2.1: #110618# #i3724# #i25653# new formula export, step 16: import filter uses new function info provider


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [8c07fdd55f914511f3dc48ec22b45d8cc0481871]

INTEGRATION: CWS dr27 (1.30.58); FILE MERGED 2004/10/28 12:06:31 dr 1.30.58.6: #110618# #i3724# #i25653# new formula export, step 16: import filter uses new function info provider 2004/10/20 16:41:13 dr 1.30.58.5: #110618# do not skip reference subexpressions 2004/10/19 09:11:00 dr 1.30.58.4: RESYNC: (1.30-1.31); FILE MERGED 2004/10/12 15:11:13 dr 1.30.58.3: #110618# really push the ocRange op 2004/10/06 16:14:09 dr 1.30.58.2: #110618# fix broken import of NLRs 2004/10/05 10:34:43 dr 1.30.58.1: #i110618# do not skip unary plus operators


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [a81b6b816251117d7f69e110ffe825995d327123]

INTEGRATION: CWS dr27 (1.30.18); FILE MERGED 2004/10/28 12:06:31 dr 1.30.18.4: #110618# #i3724# #i25653# new formula export, step 16: import filter uses new function info provider 2004/10/20 16:41:13 dr 1.30.18.3: #110618# do not skip reference subexpressions 2004/10/11 12:59:52 dr 1.30.18.2: #110618# map undocumented USDOLLAR function to DOLLAR/DM function 2004/10/05 10:34:43 dr 1.30.18.1: #i110618# do not skip unary plus operators


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [659295cc9945b326dfde2130bfe75e036557c721]

INTEGRATION: CWS dr27 (1.15.56); FILE MERGED 2004/10/21 14:28:48 dr 1.15.56.3: RESYNC: (1.16-1.17); FILE MERGED 2004/10/19 09:10:52 dr 1.15.56.2: RESYNC: (1.15-1.16); FILE MERGED 2004/10/14 10:13:22 dr 1.15.56.1: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [7945db2259e13c8b3d7efb0ad16bdd10caebc88f]

INTEGRATION: CWS dr27 (1.54.16); FILE MERGED 2004/10/19 09:10:44 dr 1.54.16.2: RESYNC: (1.54-1.55); FILE MERGED 2004/10/01 11:07:25 dr 1.54.16.1: #110618# #i3724# #i25653# new formula export, step 1: new infrastructure


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [7273468d164478c1ed30ee8fc6d0320e6063caa1]

INTEGRATION: CWS dr27 (1.69.14); FILE MERGED 2004/11/05 13:20:37 dr 1.69.14.7: better dump of rel refs 2004/10/21 14:28:33 dr 1.69.14.6: RESYNC: (1.72-1.73); FILE MERGED 2004/10/21 13:50:17 dr 1.69.14.5: #110618# do not treat tMemArea as operator 2004/10/19 09:10:25 dr 1.69.14.4: RESYNC: (1.69-1.72); FILE MERGED 2004/10/15 10:18:35 dr 1.69.14.3: #110618# #i3724# #i25653# new formula export, step 10: special jump tokens for CHOOSE function parameters 2004/10/14 10:13:22 dr 1.69.14.2: #110618# #i3724# #i25653# new formula export, step 8: volatile functions, spaces, optimized SUM 2004/10/12 15:11:55 dr 1.69.14.1: #110618# formula improvements in dumper


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [1407dceeaeccd1e5773a3b2c95c29b6593fa5755]

INTEGRATION: CWS dr27 (1.1.642); FILE MERGED 2004/10/01 11:10:22 dr 1.1.642.1: #110618# #i3724# #i25653# remove filter option 'break shared formulas'


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [ffdb7e350b92df1c74e38361c0fa94a349d13b30]

INTEGRATION: CWS dr27 (1.50.6); FILE MERGED 2004/11/04 15:36:45 dr 1.50.6.1: #110618# #i3724# #i25653# new formula export, step 20: unsupported functions


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [f24cba5095fc78c2ae0f662d884429017a056283]

INTEGRATION: CWS dr27 (1.6.162); FILE MERGED 2004/10/06 17:56:27 dr 1.6.162.1: #110618# #i3724# #i25653# const correctness


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [5fd6ca5995da1356be125e73282f7c425a95d92f]

INTEGRATION: CWS dr27 (1.1.642); FILE MERGED 2004/10/01 11:10:11 dr 1.1.642.1: #110618# #i3724# #i25653# remove filter option 'break shared formulas'


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [de4dfc91004794a6d5c481f8eb2146fc6fc7a750]

INTEGRATION: CWS dr27 (1.22.6); FILE MERGED 2004/11/04 15:36:33 dr 1.22.6.1: #110618# #i3724# #i25653# new formula export, step 20: unsupported functions


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [51499a9e000360fdd21390761c0b642433eaafb2]

INTEGRATION: CWS oasisbf1 (1.31.142); FILE MERGED 2004/10/14 11:23:37 sab 1.31.142.1: #i35375#, use table:print instead of table:automatic-print-ranges


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [87fc715f5886f977f4e8802f05bcc8fc7b8555d3]

INTEGRATION: CWS oasisbf1 (1.52.22); FILE MERGED 2004/11/02 16:01:03 sab 1.52.22.6: #i36487#; no duplicate fo:border 2004/10/19 11:20:26 sab 1.52.22.5: #i33804#; WritingMode is no longer needed, because it is in the paragraph map 2004/10/18 17:57:52 sab 1.52.22.4: #i33804#; catch ParaAdjust property of the paragraph map 2004/10/15 08:49:59 mib 1.52.22.3: RESYNC: (1.52-1.53); FILE MERGED 2004/10/13 13:50:39 sab 1.52.22.2: #i35380#; attribute is a boolean attribute 2004/09/11 16:45:51 sab 1.52.22.1: #i33804#; some properties are text or paragraph properties


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [56847272e922fcbd0a93d257121514de5583be26]

INTEGRATION: CWS oasisbf1 (1.76.46); FILE MERGED 2004/10/15 08:49:51 mib 1.76.46.2: RESYNC: (1.76-1.77); FILE MERGED 2004/10/14 11:23:37 sab 1.76.46.1: #i35375#, use table:print instead of table:automatic-print-ranges


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [b76184750fc71b0cbbd7d1afc8b228023ba7a046]

INTEGRATION: CWS xmlbasic (1.102.2); FILE MERGED 2004/10/26 16:09:30 tbe 1.102.2.2: RESYNC: (1.102-1.103); FILE MERGED 2004/10/22 14:30:08 tbe 1.102.2.1: #i22747# XML filter adaptors and macros


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [854f375573c99994ad40787df6ea5a502f8ea6ba]

INTEGRATION: CWS oasisbf1 (1.101.20); FILE MERGED 2004/10/15 08:49:44 mib 1.101.20.2: RESYNC: (1.101-1.103); FILE MERGED 2004/10/14 11:23:37 sab 1.101.20.1: #i35375#, use table:print instead of table:automatic-print-ranges


2004-11-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [2c46a0649146a816308dcc6f8a81ed3e0e752e2f]

INTEGRATION: CWS oasisbf1 (1.178.76); FILE MERGED 2004/10/18 17:56:53 sab 1.178.76.4: #i35417#; put additional attributes into shape export 2004/10/15 08:49:26 mib 1.178.76.3: RESYNC: (1.178-1.180); FILE MERGED 2004/10/14 11:23:36 sab 1.178.76.2: #i35375#, use table:print instead of table:automatic-print-ranges 2004/10/14 09:52:10 sab 1.178.76.1: #i35377#; use paragraph property map instead of character property map


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [5a524146a0728d71e7e2c9490a8fb487108655ff]

INTEGRATION: CWS scp2fix (1.21.56); FILE MERGED 2004/10/28 12:53:58 er 1.21.56.1: #i36017# SetWidths: don't crash on rotten table layout


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [a327d09bcdd6cc508ae23ecaea984410d9f5e9c3]

INTEGRATION: CWS scp2fix (1.12.68); FILE MERGED 2004/10/27 12:24:50 er 1.12.68.1: #i36049# MoveTo: handle ilisteners inserted in the very column we're moving from, which shifts and fragments ranges


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [5f3e8b1159eb9bdb490d811edc69aa2ab283cd1f]

INTEGRATION: CWS ctrlsfiltfwd (1.11.36); FILE MERGED 2004/10/29 13:14:48 npower 1.11.36.2: RESYNC: (1.11-1.12); FILE MERGED 2004/10/13 10:51:17 npower 1.11.36.1: #118153# forward port of so7 cloned bug  118053


2004-11-09  Rüdiger Timm  <rt@openoffice.org>  [aa38e9c3867610ca84c083807f3565a443d7b752]

INTEGRATION: CWS ctrlsfiltfwd (1.23.16); FILE MERGED 2004/10/29 13:11:08 npower 1.23.16.2: RESYNC: (1.23-1.24); FILE MERGED 2004/10/13 10:51:18 npower 1.23.16.1: #118153# forward port of so7 cloned bug  118053


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [91aa9e13b4ef1a021e1dbe3a845639d1e58622c5]

INTEGRATION: CWS aw019 (1.18.18); FILE MERGED 2004/10/06 16:22:46 aw 1.18.18.2: #i34831# 2004/09/30 13:11:35 aw 1.18.18.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [ccefff68cd48c4ff1ff9906229de00c93dcd57b3]

INTEGRATION: CWS aw019 (1.29.8); FILE MERGED 2004/10/28 11:40:17 aw 1.29.8.3: RESYNC: (1.30-1.31); FILE MERGED 2004/10/18 17:54:07 aw 1.29.8.2: RESYNC: (1.29-1.30); FILE MERGED 2004/09/30 13:12:13 aw 1.29.8.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [bac66f8542c84a5afe973ff78ccc856640b58395]

INTEGRATION: CWS aw019 (1.21.42); FILE MERGED 2004/10/18 17:51:33 aw 1.21.42.3: RESYNC: (1.21-1.22); FILE MERGED 2004/10/06 16:23:42 aw 1.21.42.2: #i34831# 2004/09/30 10:16:58 aw 1.21.42.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [d84d31c3b3b6aa0d77d1e66bd901efdfe3c74ebb]

INTEGRATION: CWS aw019 (1.15.44); FILE MERGED 2004/10/06 16:23:42 aw 1.15.44.1: #i34831#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [abad289323f35ceee9416c43e5aaddae60eea450]

INTEGRATION: CWS aw019 (1.6.156); FILE MERGED 2004/10/06 16:23:41 aw 1.6.156.1: #i34831#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [b2712e6d7ef71e0bcca9f5863b794d1ea20259ae]

INTEGRATION: CWS aw019 (1.3.272); FILE MERGED 2004/10/18 17:48:58 aw 1.3.272.3: RESYNC: (1.3-1.4); FILE MERGED 2004/10/06 16:23:41 aw 1.3.272.2: #i34831# 2004/09/30 10:16:58 aw 1.3.272.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [07ff02e289e4c331fe6e1e5ced2a0a9ba4e8ec16]

INTEGRATION: CWS aw019 (1.2.4); FILE MERGED 2004/10/21 15:48:45 aw 1.2.4.1: #i34831#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [baec3df02dfc2c820aea3afd39238668c4202f10]

INTEGRATION: CWS aw019 (1.22.8); FILE MERGED 2004/10/18 17:37:54 aw 1.22.8.2: RESYNC: (1.22-1.26); FILE MERGED 2004/09/30 10:16:57 aw 1.22.8.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [a3feeed1330d7f6eb3b1f6f085b9b8ef605958f7]

INTEGRATION: CWS aw019 (1.22.66); FILE MERGED 2004/10/18 17:38:12 aw 1.22.66.2: RESYNC: (1.22-1.23); FILE MERGED 2004/09/30 13:12:13 aw 1.22.66.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [253c896b008240f3abf89e8ee2b4dbd958eb451b]

INTEGRATION: CWS aw019 (1.3.156); FILE MERGED 2004/09/30 10:16:57 aw 1.3.156.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [1598427cfa48e555e8e1871951cab580032d9bfb]

INTEGRATION: CWS aw019 (1.30.8); FILE MERGED 2004/10/18 17:30:43 aw 1.30.8.2: RESYNC: (1.30-1.32); FILE MERGED 2004/09/30 10:16:56 aw 1.30.8.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [8169526c57361fab40bc6b34ef407317176ef035]

INTEGRATION: CWS aw019 (1.25.8); FILE MERGED 2004/10/18 17:30:27 aw 1.25.8.2: RESYNC: (1.25-1.26); FILE MERGED 2004/09/30 10:16:56 aw 1.25.8.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [bc52e740ed4c35975302e1a0a17173511f01f13e]

INTEGRATION: CWS aw019 (1.45.10); FILE MERGED 2004/09/30 10:16:56 aw 1.45.10.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [e5539c9016eacc791aab0f3aefbafbb21f63fb29]

INTEGRATION: CWS aw019 (1.2.156); FILE MERGED 2004/09/30 10:16:55 aw 1.2.156.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [f2acfe7e1eb958dc27d299008891e153de78e7c1]

INTEGRATION: CWS aw019 (1.11.154); FILE MERGED 2004/10/18 17:28:29 aw 1.11.154.2: RESYNC: (1.11-1.12); FILE MERGED 2004/09/30 10:16:55 aw 1.11.154.1: #i11190#


2004-11-03  Pascal Junck  <pjunck@openoffice.org>  [735b8c4c692579712447740e7abc7349df8fec8b]

INTEGRATION: CWS aw019 (1.83.10); FILE MERGED 2004/09/30 10:16:54 aw 1.83.10.1: #i11190#


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [3a65e38f4e68a3ed29ce9965ffc473f8f2a0a0fd]

INTEGRATION: CWS sab012 (1.79.40); FILE MERGED 2004/10/12 19:57:01 sab 1.79.40.4: RESYNC: (1.83-1.87); FILE MERGED 2004/06/08 13:23:02 sab 1.79.40.3: RESYNC: (1.80-1.83); FILE MERGED 2004/02/18 11:33:05 sab 1.79.40.2: RESYNC: (1.79-1.80); FILE MERGED 2004/02/03 11:54:36 sab 1.79.40.1: #i22076#; merge sab009 into sab012


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [a91e3173d3a73460308c24c429814162ff539c97]

INTEGRATION: CWS sab012 (1.14.180); FILE MERGED 2004/10/26 16:27:26 sab 1.14.180.1: #i29750#; broadcast before removing


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [192213630e98521fe475305c4b5cca34346bbf71]

INTEGRATION: CWS sab012 (1.7.214); FILE MERGED 2004/06/08 12:56:03 sab 1.7.214.2: RESYNC: (1.7-1.8); FILE MERGED 2004/02/03 11:53:14 sab 1.7.214.1: #112884#; merge sab009 into sab012


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [1abe4361366521bbaca945d2adddec042b921fff]

INTEGRATION: CWS sab012 (1.35.48); FILE MERGED 2004/10/12 18:59:51 sab 1.35.48.3: RESYNC: (1.36-1.37); FILE MERGED 2004/02/18 11:54:02 sab 1.35.48.2: RESYNC: (1.35-1.36); FILE MERGED 2004/02/03 11:48:20 sab 1.35.48.1: #i21716#; merge sab009 into sab012


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [05b95e4520934ae9a9ce61c9150db99ba8ce0720]

INTEGRATION: CWS sab012 (1.7.346); FILE MERGED 2004/10/12 18:57:55 sab 1.7.346.2: RESYNC: (1.7-1.8); FILE MERGED 2004/02/03 11:46:13 sab 1.7.346.1: #i19079#; merge sab009 into sab012


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [0afff6b809686d25b7374a6f88a2a014a6a59f5b]

INTEGRATION: CWS sab012 (1.20.238); FILE MERGED 2004/10/12 18:57:47 sab 1.20.238.3: RESYNC: (1.21-1.23); FILE MERGED 2004/06/08 12:54:16 sab 1.20.238.2: RESYNC: (1.20-1.21); FILE MERGED 2004/02/03 11:46:15 sab 1.20.238.1: #i19079#; merge sab009 into sab012


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [c523c9c62a108b94a23df3a68843707dfcd81e0e]

INTEGRATION: CWS sab012 (1.8.364); FILE MERGED 2004/10/12 18:53:22 sab 1.8.364.3: RESYNC: (1.9-1.11); FILE MERGED 2004/06/08 12:52:48 sab 1.8.364.2: RESYNC: (1.8-1.9); FILE MERGED 2004/02/02 17:01:32 sab 1.8.364.1: #i24109#; merging from SRX645 to SRC680


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [727bc36b16e82fd2de8829eb6aa0581f671a474f]

INTEGRATION: CWS sab012 (1.24.74); FILE MERGED 2004/10/12 18:39:38 sab 1.24.74.2: RESYNC: (1.24-1.27); FILE MERGED 2004/02/03 11:44:05 sab 1.24.74.1: #114151#; merge from sab009 into sab012


2004-11-02  Rüdiger Timm  <rt@openoffice.org>  [5f8eaef77e5a50cbfc51a681e2db21d4d8029b4e]

INTEGRATION: CWS sab012 (1.58.42); FILE MERGED 2004/10/12 18:27:44 sab 1.58.42.4: RESYNC: (1.60-1.66); FILE MERGED 2004/06/08 12:41:07 sab 1.58.42.3: RESYNC: (1.59-1.60); FILE MERGED 2004/02/18 11:57:10 sab 1.58.42.2: RESYNC: (1.58-1.59); FILE MERGED 2004/02/03 11:39:12 sab 1.58.42.1: #114151#; merge from sab009 into sab012


2004-11-02  Pascal Junck  <pjunck@openoffice.org>  [4f63c4311cb8d1d94c7c2494d62ed8cf64084cfe]

INTEGRATION: CWS iha03 (1.2.40); FILE MERGED 2004/10/18 16:36:18 bm 1.2.40.2: #i35615# Ctrl-Shift-J for FullScreen is no longer global accelerator 2004/10/14 11:07:58 iha 1.2.40.1: #i35000# no spellchecker with F7


2004-10-28  Pascal Junck  <pjunck@openoffice.org>  [0b7e0499223a5bb6e611bd3de6f48986eb8864b2]

INTEGRATION: CWS pdf02 (1.23.14); FILE MERGED 2004/10/04 15:00:21 nn 1.23.14.1: #i34954# handle hyperlink formula results in PDF export


2004-10-28  Pascal Junck  <pjunck@openoffice.org>  [c680761bd901add0f5525e1eeeeea20805136665]

INTEGRATION: CWS pdf02 (1.11.46); FILE MERGED 2004/10/01 11:57:17 nn 1.11.46.1: #i34865# handle internal links in PDF export


2004-10-28  Pascal Junck  <pjunck@openoffice.org>  [750c9c8dc1f83c01f52f48cfe48996340f95ddda]

INTEGRATION: CWS pdf02 (1.2.158); FILE MERGED 2004/10/01 11:57:17 nn 1.2.158.1: #i34865# handle internal links in PDF export


2004-10-28  Pascal Junck  <pjunck@openoffice.org>  [434aeb2cb51afc60f476a3c38575bb343d50f533]

INTEGRATION: CWS pdf02 (1.41.42); FILE MERGED 2004/10/11 11:14:56 pl 1.41.42.2: RESYNC: (1.41-1.42); FILE MERGED 2004/10/04 15:00:33 nn 1.41.42.1: #i34954# handle hyperlink formula results in PDF export


2004-10-28  Pascal Junck  <pjunck@openoffice.org>  [cb965c23245232d6ad5d0e74bc40de6ec818c1c7]

INTEGRATION: CWS pdf02 (1.46.12); FILE MERGED 2004/10/11 11:23:39 pl 1.46.12.2: RESYNC: (1.46-1.47); FILE MERGED 2004/10/01 11:57:38 nn 1.46.12.1: #i34865# handle internal links in PDF export


2004-10-28  Pascal Junck  <pjunck@openoffice.org>  [3a058130342481c98570ee9398bff2df4dd644e1]

INTEGRATION: CWS pdf02 (1.9.158); FILE MERGED 2004/10/01 11:57:01 nn 1.9.158.1: #i34865# handle internal links in PDF export


2004-10-28  Pascal Junck  <pjunck@openoffice.org>  [06eebc34f4f034a1f7768caf1524c9bb6b2737fc]

INTEGRATION: CWS pdf02 (1.2.158); FILE MERGED 2004/10/01 11:57:01 nn 1.2.158.1: #i34865# handle internal links in PDF export


2004-10-28  Pascal Junck  <pjunck@openoffice.org>  [3ba0b87519abaf3e5f8c9dab020dee68d1a6c525]

INTEGRATION: CWS pdf02 (1.15.14); FILE MERGED 2004/10/04 15:00:07 nn 1.15.14.1: #i34954# handle hyperlink formula results in PDF export


2004-10-27  Rüdiger Timm  <rt@openoffice.org>  [b95cf5fd798f289a7c2474ef840f3bc4a643468f]

INTEGRATION: CWS gccvisibilityfix (1.2.92); FILE MERGED 2004/10/27 10:36:18 hjs 1.2.92.1: #i36160# enable gcc visibility feature by environment variable


2004-10-22  Pascal Junck  <pjunck@openoffice.org>  [9e57f3617cf311b758d9debfdd41c2df94e9f501]

INTEGRATION: CWS tune06 (1.2.58); FILE MERGED 2004/10/13 13:40:13 sb 1.2.58.1: #i35054# GCC 3.4 symbol visibility: UNO exceptions need explicit default symbol visibility.


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [1a338d2d964113138238b1b71427b724c51a2847]

INTEGRATION: CWS calc23 (1.29.2); FILE MERGED 2004/10/11 09:02:00 nn 1.29.2.2: RESYNC: (1.29-1.30); FILE MERGED 2004/09/27 13:30:18 nn 1.29.2.1: i34588 PasteDataFormat/SBA_DATAEXCHANGE: final null parameter for Execute


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [d840f496e1215e502929d897d3eb221eaf33aa79]

INTEGRATION: CWS calc23 (1.42.38); FILE MERGED 2004/10/11 09:00:02 nn 1.42.38.2: RESYNC: (1.42-1.43); FILE MERGED 2004/09/28 17:32:19 nn 1.42.38.1: #i18833# #i34499# StartSimpleRefDialog: handle call on non-active view


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [c7023e012324238f32c9c546f8b29aa51ed052ad]

INTEGRATION: CWS calc23 (1.3.626); FILE MERGED 2004/09/28 17:32:19 nn 1.3.626.1: #i18833# #i34499# StartSimpleRefDialog: handle call on non-active view


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [a7721731bbaedcb964862e499fa306c059d7b3f5]

INTEGRATION: CWS calc23 (1.59.128); FILE MERGED 2004/10/07 11:33:09 dr 1.59.128.1: #i35102# listboxes vanished


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [1a45524066219dad8d6f9b05b881d3450796e433]

INTEGRATION: CWS calc23 (1.10.4); FILE MERGED 2004/10/04 14:36:34 sab 1.10.4.1: #i34953#; a Annotation is a temporary shape


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [9bc88f3fb9ab17b70cf2e19cc79f64def49c01d9]

INTEGRATION: CWS calc23 (1.11.88); FILE MERGED 2004/09/21 21:21:52 er 1.11.88.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [459e3d8e9049e8c071f669d8b12fc6a354fb773d]

INTEGRATION: CWS calc23 (1.17.4); FILE MERGED 2004/09/21 21:21:51 er 1.17.4.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [07417257c920a683dd61f7350f12e8291394b2e2]

INTEGRATION: CWS calc23 (1.8.148); FILE MERGED 2004/09/21 21:21:51 er 1.8.148.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [165a370786b78ca1160339f012c86613efd7d907]

INTEGRATION: CWS calc23 (1.2.220); FILE MERGED 2004/09/21 21:19:33 er 1.2.220.1: #115823# parameter classification for ocCell


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [62afe5aa8f41b20259d8545119d9ce6f8dc4569e]

INTEGRATION: CWS calc23 (1.11.148); FILE MERGED 2004/09/21 21:21:51 er 1.11.148.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [da11d8f785f1b14c26786460ab0fd5bd893ab7fc]

INTEGRATION: CWS calc23 (1.30.128); FILE MERGED 2004/09/21 21:21:50 er 1.30.128.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [3f8df25cbdb008da0e3410de6d9db7780595cbcd]

INTEGRATION: CWS calc23 (1.30.4); FILE MERGED 2004/10/04 20:01:07 er 1.30.4.3: #i20545# negation doesn't change format type 2004/09/29 11:32:04 er 1.30.4.2: #i33279# ScIndex: negative offsets are still not allowed 2004/09/21 21:21:50 er 1.30.4.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [d7cd5da155ce92f88d6346d9b7f2f83d493bdc0d]

INTEGRATION: CWS calc23 (1.49.128); FILE MERGED 2004/10/08 13:27:36 er 1.49.128.6: #i35184# again the percent operator precedence.. del Conclusion(), add PostOpLine(), ren Unary() --> UnaryLine() 2004/10/08 11:50:53 er 1.49.128.5: #i35184# unary/intersection operator precedence 2004/10/04 20:49:20 er 1.49.128.4: #i34942# repeated unary negation is ok 2004/10/04 19:57:38 er 1.49.128.3: #i20545# percent operator: revert last change and get the Unary/Factor thingy right, automatically solves problems 2004/09/29 11:31:21 er 1.49.128.2: #i33279# ocIndex doesn't need RecalcModeAlways 2004/09/22 11:51:16 er 1.49.128.1: #i20545# correct percent operator behavior


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [40711a34d5f062e0153889bfda25906a94740a1e]

INTEGRATION: CWS calc23 (1.17.128); FILE MERGED 2004/09/21 21:21:50 er 1.17.128.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [c4925678312fdd04d73e2a6871961067dfc665be]

INTEGRATION: CWS calc23 (1.7.36); FILE MERGED 2004/09/29 17:11:48 er 1.7.36.1: #i34807# UpdatePageBreaks: logic flaw


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [05334da0a8942267c5f30a5122d52a669700ba0b]

INTEGRATION: CWS calc23 (1.18.4); FILE MERGED 2004/09/22 17:05:49 nn 1.18.4.1: #i18374# don't find an empty string as match for a directly assigned number


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [8854863feb54e73e5347244f6ccd8b57d1d9e31e]

INTEGRATION: CWS calc23 (1.3.36); FILE MERGED 2004/09/29 17:29:58 er 1.3.36.4: #i34807# add some sanity check in case methods are used as loop replacements 2004/09/21 14:46:56 er 1.3.36.3: #i34069# ScCoupledCompressedArrayIterator<A,D,S>::NextRange(): always keep both iterators synchronized 2004/09/20 14:12:59 er 1.3.36.2: #i34400 Remove: maybe we have to really remove something 2004/09/20 12:22:47 er 1.3.36.1: #i34130# create copy of values of references passed in case reallocation touches the reference


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [20c45f22d6ffa739ac3520764e80d7895c9f22f0]

INTEGRATION: CWS calc23 (1.23.4); FILE MERGED 2004/09/21 21:21:49 er 1.23.4.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [d04eaee9344af3e99adf11f2275dfe7b3f6bd841]

INTEGRATION: CWS calc23 (1.3.148); FILE MERGED 2004/09/21 21:21:49 er 1.3.148.1: #115823# jump matrix handling for [HV]?LOOKUP(), MATCH(), SUMIF()


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [3a01580a8005205711acafd8c287cd6d31568a4b]

INTEGRATION: CWS calc23 (1.3.36); FILE MERGED 2004/09/21 14:49:48 er 1.3.36.2: #i34069# for clarity, let ScCoupledCompressedArrayIterator obtain both, value and position, from coupled iterator 2004/09/20 12:22:46 er 1.3.36.1: #i34130# create copy of values of references passed in case reallocation touches the reference


2004-10-22  Rüdiger Timm  <rt@openoffice.org>  [54a4074155f55cd79dc2954ce6c0b3a7fbb73f45]

INTEGRATION: CWS calc23 (1.21.36); FILE MERGED 2004/10/08 13:25:48 er 1.21.36.2: #i35184# del Conclusion(), add PostOpLine(), ren Unary() --> UnaryLine() 2004/10/08 11:50:19 er 1.21.36.1: #i35184# add Conclusion()


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [275e400f106474d89ab0eb6bb0972dcc02eabfd7]

INTEGRATION: CWS dr26 (1.16.2); FILE MERGED 2004/10/13 11:37:33 dr 1.16.2.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [88af104c6786397b8d1649540f13bad68dec20ac]

INTEGRATION: CWS dr26 (1.13.8); FILE MERGED 2004/09/27 11:13:48 dr 1.13.8.1: #i34058# BIFF2 import of font color


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [0378fb0cb917c4951087b816d537bb453656edc8]

INTEGRATION: CWS dr26 (1.16.2); FILE MERGED 2004/10/13 11:41:31 dr 1.16.2.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [1408a0e21111a7baa289eb8abdf54be68dea1b92]

INTEGRATION: CWS dr26 (1.11.8); FILE MERGED 2004/09/28 14:17:27 dr 1.11.8.1: #i34545# flat/3d for old checkbox and radiobutton


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [aee0e1a4aba7292f161e8e2ee68c04eeabc7e97c]

INTEGRATION: CWS dr26 (1.20.4); FILE MERGED 2004/10/13 11:41:31 dr 1.20.4.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [298d3219aea280c90fe4f63851554522dcada418]

INTEGRATION: CWS dr26 (1.12.8); FILE MERGED 2004/09/27 11:13:47 dr 1.12.8.1: #i34058# BIFF2 import of font color


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [37da247b09f4223fd983b59c6c6de3795d82f178]

INTEGRATION: CWS dr26 (1.12.8); FILE MERGED 2004/10/13 11:41:30 dr 1.12.8.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [8569334885289eff767b57a5922f685ce6ceb205]

INTEGRATION: CWS dr26 (1.11.8); FILE MERGED 2004/09/28 15:01:30 dr 1.11.8.2: #i34545# better border style handling 2004/09/28 14:17:26 dr 1.11.8.1: #i34545# flat/3d for old checkbox and radiobutton


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [c20182c29ad855d546b1047875a5e9fbd766fc69]

INTEGRATION: CWS dr26 (1.2.8); FILE MERGED 2004/09/27 10:50:26 dr 1.2.8.1: #115495# font export using script type of current cell text


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [4188a2482ccc3d55ca2a1d33ca9a8a10dca19abe]

INTEGRATION: CWS dr26 (1.10.8); FILE MERGED 2004/09/27 10:50:26 dr 1.10.8.1: #115495# font export using script type of current cell text


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [bfd6cf05dc9f2ed7a7f455f4667cbb0a956795b1]

INTEGRATION: CWS dr26 (1.11.8); FILE MERGED 2004/10/13 11:41:30 dr 1.11.8.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [3cef53c5c58743f1296d89cfd48c5760becf0b78]

INTEGRATION: CWS dr26 (1.12.8); FILE MERGED 2004/09/27 10:50:25 dr 1.12.8.1: #115495# font export using script type of current cell text


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [72d9406e2a0cd5335d0e98a97bd857ee09e0e5d7]

INTEGRATION: CWS dr26 (1.2.8); FILE MERGED 2004/09/28 15:01:33 dr 1.2.8.2: #i34545# better border style handling 2004/09/28 14:17:26 dr 1.2.8.1: #i34545# flat/3d for old checkbox and radiobutton


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [ea776d4b144f790e8d7775497944a081034d0760]

INTEGRATION: CWS dr26 (1.27.50); FILE MERGED 2004/10/13 11:41:30 dr 1.27.50.2: #i35275# mav09 followup: storage/stream handling reworked 2004/09/27 14:23:03 dr 1.27.50.1: #i34057# import of BIFF2-BIFF7 edit cells reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [3963674ba5462323e32d688389413d4c3e8a674a]

INTEGRATION: CWS dr26 (1.13.6); FILE MERGED 2004/10/13 11:41:30 dr 1.13.6.4: #i35275# mav09 followup: storage/stream handling reworked 2004/10/07 17:35:28 dr 1.13.6.3: RESYNC: (1.13-1.14); FILE MERGED 2004/09/27 12:04:15 dr 1.13.6.2: #i34671# problems with ScfRef::operator bool_type on unxsols4.pro 2004/09/27 10:50:26 dr 1.13.6.1: #115495# font export using script type of current cell text


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [9ffd9766ebb5199403331e393f361bc91707d2f5]

INTEGRATION: CWS dr26 (1.9.2); FILE MERGED 2004/10/13 11:41:06 dr 1.9.2.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [16f20b479bc7965b77e896862f946830e4fbf794]

INTEGRATION: CWS dr26 (1.55.50); FILE MERGED 2004/10/13 11:41:05 dr 1.55.50.3: #i35275# mav09 followup: storage/stream handling reworked 2004/10/07 17:35:11 dr 1.55.50.2: RESYNC: (1.55-1.56); FILE MERGED 2004/09/27 14:23:03 dr 1.55.50.1: #i34057# import of BIFF2-BIFF7 edit cells reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [e0d511fa7249c749c7b36c7373926ada0093f92b]

INTEGRATION: CWS dr26 (1.13.2); FILE MERGED 2004/10/13 11:41:05 dr 1.13.2.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [57fb4fd9abbbef26418ed0cf36d38f43e8016031]

INTEGRATION: CWS dr26 (1.9.6); FILE MERGED 2004/10/13 11:38:05 dr 1.9.6.3: #i35275# mav09 followup: storage/stream handling reworked 2004/10/07 17:34:16 dr 1.9.6.2: RESYNC: (1.9-1.10); FILE MERGED 2004/09/27 10:50:02 dr 1.9.6.1: #115495# font export using script type of current cell text


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [7f269f1f709dec8bfdfbabeb3523009a383cbb03]

INTEGRATION: CWS dr26 (1.11.8); FILE MERGED 2004/10/13 11:37:33 dr 1.11.8.2: #i35275# mav09 followup: storage/stream handling reworked 2004/09/28 14:17:16 dr 1.11.8.1: #i34545# flat/3d for old checkbox and radiobutton


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [f894e3a31b5c6355207da1d3afb82ace8b31271a]

INTEGRATION: CWS dr26 (1.3.8); FILE MERGED 2004/09/27 15:07:10 dr 1.3.8.1: #i34686# check whether referred sheet is deleted


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [38a20848b280acc3ce8a87948cbaa15c82306553]

INTEGRATION: CWS dr26 (1.5.8); FILE MERGED 2004/09/27 12:37:56 dr 1.5.8.1: #i34680# compiler warning SCROW->sal_uInt16


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [a68f0680be6b9f0dd515451c4bb1c399f86b5ecb]

INTEGRATION: CWS dr26 (1.18.8); FILE MERGED 2004/09/27 12:01:43 dr 1.18.8.2: #i34061# do not skip def cell format in BIFF2 2004/09/27 11:13:32 dr 1.18.8.1: #i34058# BIFF2 import of font color


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [0529b2dd464609896b92fa3097d389d4d049900d]

INTEGRATION: CWS dr26 (1.8.6); FILE MERGED 2004/10/01 08:29:35 dr 1.8.6.2: RESYNC: (1.8-1.9); FILE MERGED 2004/09/27 12:04:36 dr 1.8.6.1: #i34671# problems with ScfRef::operator bool_type on unxsols4.pro


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [99b4b7d0d8c8a5701d3fa3eabd8955672cb015d9]

INTEGRATION: CWS dr26 (1.12.8); FILE MERGED 2004/10/13 11:37:33 dr 1.12.8.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [e5b3bae93e97cb9d134023924f3ff155ff4712af]

INTEGRATION: CWS dr26 (1.14.6); FILE MERGED 2004/10/01 08:29:28 dr 1.14.6.2: RESYNC: (1.14-1.15); FILE MERGED 2004/09/27 14:22:47 dr 1.14.6.1: #i34057# import of BIFF2-BIFF7 edit cells reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [564e782f05d46d644e6f11578671735a35f8c802]

INTEGRATION: CWS dr26 (1.22.6); FILE MERGED 2004/10/13 11:37:32 dr 1.22.6.4: #i35275# mav09 followup: storage/stream handling reworked 2004/10/07 17:33:49 dr 1.22.6.3: RESYNC: (1.22-1.23); FILE MERGED 2004/09/28 15:01:21 dr 1.22.6.2: #i34545# better border style handling 2004/09/28 14:17:15 dr 1.22.6.1: #i34545# flat/3d for old checkbox and radiobutton


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [9cd8ca9af75559c65beef70e01eabb9fe7365555]

INTEGRATION: CWS dr26 (1.12.8); FILE MERGED 2004/09/27 12:04:36 dr 1.12.8.1: #i34671# problems with ScfRef::operator bool_type on unxsols4.pro


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [5ad54921b73def8ec3d86e34f2093735d9d080c6]

INTEGRATION: CWS dr26 (1.2.8); FILE MERGED 2004/09/27 12:04:36 dr 1.2.8.2: #i34671# problems with ScfRef::operator bool_type on unxsols4.pro 2004/09/27 10:49:49 dr 1.2.8.1: #115495# font export using script type of current cell text


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [82491d40d9ab9f701821b8e677bcf3004a3809b4]

INTEGRATION: CWS dr26 (1.14.8); FILE MERGED 2004/09/27 10:49:48 dr 1.14.8.1: #115495# font export using script type of current cell text


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [30b6d2c42b786b5e0e8bdd85cac7d3a6d8385abf]

INTEGRATION: CWS dr26 (1.12.8); FILE MERGED 2004/10/13 11:37:32 dr 1.12.8.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [c1899afb8a28ff34b1d9b3d8ec61030e670aa6f8]

INTEGRATION: CWS dr26 (1.11.8); FILE MERGED 2004/09/27 15:07:10 dr 1.11.8.1: #i34686# check whether referred sheet is deleted


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [670eb96c45a480922311f4f50127fdb0ce97d51e]

INTEGRATION: CWS dr26 (1.17.8); FILE MERGED 2004/09/27 12:04:35 dr 1.17.8.2: #i34671# problems with ScfRef::operator bool_type on unxsols4.pro 2004/09/27 10:49:45 dr 1.17.8.1: #115495# font export using script type of current cell text


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [4f3a0969ca3af35abc64f5e3ae4baec6da8f2157]

INTEGRATION: CWS dr26 (1.4.8); FILE MERGED 2004/09/28 15:01:21 dr 1.4.8.2: #i34545# better border style handling 2004/09/28 14:17:15 dr 1.4.8.1: #i34545# flat/3d for old checkbox and radiobutton


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [1f11fbbba13f42f4d63b7bb77fd459b51bc62352]

INTEGRATION: CWS dr26 (1.47.6); FILE MERGED 2004/10/01 08:28:58 dr 1.47.6.3: RESYNC: (1.47-1.48); FILE MERGED 2004/09/27 14:22:47 dr 1.47.6.2: #i34057# import of BIFF2-BIFF7 edit cells reworked 2004/09/27 11:13:31 dr 1.47.6.1: #i34058# BIFF2 import of font color


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [9a64295ccbe7574909abc1af560ddbfc8fff7de2]

INTEGRATION: CWS dr26 (1.65.6); FILE MERGED 2004/10/13 11:37:32 dr 1.65.6.3: #i35275# mav09 followup: storage/stream handling reworked 2004/10/07 17:33:33 dr 1.65.6.2: RESYNC: (1.65-1.66); FILE MERGED 2004/09/27 14:22:46 dr 1.65.6.1: #i34057# import of BIFF2-BIFF7 edit cells reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [33ec09dd5854968d989ae45d3b51a49b79b262ff]

INTEGRATION: CWS dr26 (1.20.8); FILE MERGED 2004/10/13 11:37:32 dr 1.20.8.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [f65305b3d0843f25bdd5748c24ea618657328610]

INTEGRATION: CWS dr26 (1.100.8); FILE MERGED 2004/10/13 11:37:31 dr 1.100.8.2: #i35275# mav09 followup: storage/stream handling reworked 2004/09/27 14:22:46 dr 1.100.8.1: #i34057# import of BIFF2-BIFF7 edit cells reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [e8a3d42a6b900f99782630116b6dd4dcae1284bf]

INTEGRATION: CWS dr26 (1.16.2); FILE MERGED 2004/10/13 11:37:31 dr 1.16.2.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [26f2fbad1bb26a176cc305852f89be53a4ca1df8]

INTEGRATION: CWS dr26 (1.71.2); FILE MERGED 2004/10/13 11:37:30 dr 1.71.2.1: #i35275# mav09 followup: storage/stream handling reworked


2004-10-18  Oliver Bolte  <obo@openoffice.org>  [44eedda9856b31f3ec1901c5e043dd9fdac79fdf]

INTEGRATION: CWS dr26 (1.14.8); FILE MERGED 2004/09/28 09:00:21 dr 1.14.8.1: #i34474# function results dependent on cell position in cond. formats


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [5652601351aeef445cfe44856066ec3cd878a51a]

INTEGRATION: CWS sj09 (1.24.6); FILE MERGED 2004/10/12 01:56:14 sj 1.24.6.4: RESYNC: (1.30-1.32); FILE MERGED 2004/09/01 01:55:37 sj 1.24.6.3: RESYNC: (1.29-1.30); FILE MERGED 2004/08/25 13:45:32 sj 1.24.6.2: RESYNC: (1.24-1.29); FILE MERGED 2004/08/20 10:58:23 sj 1.24.6.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [7422e81058ec2fe896abb0259ae87b5fcfaf6544]

INTEGRATION: CWS sj09 (1.2.94); FILE MERGED 2004/10/12 02:04:39 sj 1.2.94.2: RESYNC: (1.2-1.3); FILE MERGED 2004/08/20 10:55:52 sj 1.2.94.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc9d0753c4b35c9835a8c47e26a5acbdd6b95863]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/09/09 10:57:48 sj 1.1.2.2: changed some customshape / fontwork slot commands 2004/08/20 10:54:35 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [a751faade9e3aef85b60b1ed1b227315ad4729ed]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/09/09 10:57:48 sj 1.1.2.2: changed some customshape / fontwork slot commands 2004/08/20 10:54:23 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [dca63cdc2718a5528edf0e6f64dd4a3009a0b2dc]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/08/20 10:53:56 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [c51fe3b665487308213fde2648bd84ef6d17150c]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/09/09 10:57:47 sj 1.1.2.2: changed some customshape / fontwork slot commands 2004/08/20 10:55:28 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [193ec53e086c0123fc107760b70068eefe9f2559]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/09/09 10:57:47 sj 1.1.2.2: changed some customshape / fontwork slot commands 2004/08/20 10:55:16 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [1553a35fa2929c0ca03515762a61dafb4f0d26a0]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/09/09 10:57:47 sj 1.1.2.2: changed some customshape / fontwork slot commands 2004/08/20 10:55:04 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [a898dfab87321133b504684f1c85ce0593c53fbe]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/09/09 10:57:47 sj 1.1.2.2: changed some customshape / fontwork slot commands 2004/08/20 10:54:51 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [a39e926f8580c39a72e29280605d01f73106eaee]

INTEGRATION: CWS sj09 (1.40.4); FILE MERGED 2004/10/12 02:00:15 sj 1.40.4.3: RESYNC: (1.42-1.43); FILE MERGED 2004/09/01 01:58:25 sj 1.40.4.2: RESYNC: (1.40-1.42); FILE MERGED 2004/08/20 10:58:24 sj 1.40.4.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [748fad072b1fc4d2586504e4b762da1b60c0cdd5]

INTEGRATION: CWS sj09 (1.14.4); FILE MERGED 2004/10/12 01:59:54 sj 1.14.4.3: RESYNC: (1.15-1.16); FILE MERGED 2004/09/01 01:58:09 sj 1.14.4.2: RESYNC: (1.14-1.15); FILE MERGED 2004/08/20 10:58:24 sj 1.14.4.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [d5067574ca9536c3c0a3f51f7918848ce0110ccf]

INTEGRATION: CWS sj09 (1.16.10); FILE MERGED 2004/10/12 01:50:36 sj 1.16.10.3: RESYNC: (1.18-1.19); FILE MERGED 2004/09/01 01:43:04 sj 1.16.10.2: RESYNC: (1.16-1.18); FILE MERGED 2004/08/20 10:57:50 sj 1.16.10.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [b527848f89aa7b940c34d0108e5a8327603de830]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/08/20 10:53:05 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [49f1a3e14743af38e001c728a6035dd87371eff7]

INTEGRATION: CWS sj09 (1.4.192); FILE MERGED 2004/09/01 01:38:06 sj 1.4.192.2: RESYNC: (1.4-1.5); FILE MERGED 2004/08/20 10:57:29 sj 1.4.192.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [47e3b12c76b180e791d5024f59f6469588d536f7]

INTEGRATION: CWS sj09 (1.1.2); FILE ADDED 2004/09/16 13:15:47 sj 1.1.2.3: AutoGrowSize has been removed 2004/08/23 13:57:46 sj 1.1.2.2: #i33309# fixed forceNoFillStyle functionality 2004/08/20 10:52:12 sj 1.1.2.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [6b019eb360dfe63bc9b230df7354a6e95945ad7d]

INTEGRATION: CWS sj09 (1.13.4); FILE MERGED 2004/10/12 01:46:33 sj 1.13.4.3: RESYNC: (1.18-1.20); FILE MERGED 2004/08/25 13:43:45 sj 1.13.4.2: RESYNC: (1.13-1.18); FILE MERGED 2004/08/20 10:57:28 sj 1.13.4.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [5fe389f0b15f44a4a9751a26358ab7bb5c8f2545]

INTEGRATION: CWS sj09 (1.10.10); FILE MERGED 2004/10/12 01:46:26 sj 1.10.10.3: RESYNC: (1.12-1.14); FILE MERGED 2004/09/01 01:36:11 sj 1.10.10.2: RESYNC: (1.10-1.12); FILE MERGED 2004/08/20 10:57:28 sj 1.10.10.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [353749adfc3f106d98efa57ea89da9681b45320d]

INTEGRATION: CWS sj09 (1.18.44); FILE MERGED 2004/10/12 01:42:45 sj 1.18.44.3: RESYNC: (1.20-1.24); FILE MERGED 2004/09/01 01:27:28 sj 1.18.44.2: RESYNC: (1.18-1.20); FILE MERGED 2004/08/20 10:57:00 sj 1.18.44.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [50e994bb1db37348ce1c9d50c495d4c368feb047]

INTEGRATION: CWS sj09 (1.13.116); FILE MERGED 2004/10/12 01:39:03 sj 1.13.116.3: RESYNC: (1.13-1.17); FILE MERGED 2004/09/16 19:28:00 sj 1.13.116.2: #i33736# don't export text twice 2004/08/31 13:43:22 sj 1.13.116.1: #i33374# do not double text of fontwork objects


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [fb314de03dc67be156ca38f972599d9e74aca092]

INTEGRATION: CWS sj09 (1.12.50); FILE MERGED 2004/09/01 01:02:40 sj 1.12.50.2: RESYNC: (1.12-1.15); FILE MERGED 2004/08/20 10:56:36 sj 1.12.50.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [2df48024738bdafd664c1da948934393d39c3570]

INTEGRATION: CWS sj09 (1.9.4); FILE MERGED 2004/09/01 01:01:28 sj 1.9.4.2: RESYNC: (1.9-1.12); FILE MERGED 2004/08/20 10:56:36 sj 1.9.4.1: #i33240# CustomShape integration for Writer and Calc


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [8791ce8e26f88d6ef6ea6f410950c64480d19be3]

INTEGRATION: CWS calc22 (1.46.22); FILE MERGED 2004/10/11 09:36:35 dr 1.46.22.3: RESYNC: (1.47-1.48); FILE MERGED 2004/09/24 09:11:04 nn 1.46.22.2: RESYNC: (1.46-1.47); FILE MERGED 2004/09/16 10:03:32 nn 1.46.22.1: #i20588# handle ref input across differently split sheets


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [58eff5c39ae1e2b25f22d8931aa51323290cfee9]

INTEGRATION: CWS calc22 (1.42.26); FILE MERGED 2004/10/11 09:35:25 dr 1.42.26.2: RESYNC: (1.42-1.43); FILE MERGED 2004/09/16 10:03:32 nn 1.42.26.1: #i20588# handle ref input across differently split sheets


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [c7df26eca73929055bd5fb643ee23dddda77e8a6]

INTEGRATION: CWS calc22 (1.40.22); FILE MERGED 2004/10/11 09:34:38 dr 1.40.22.3: RESYNC: (1.41-1.43); FILE MERGED 2004/09/24 09:10:32 nn 1.40.22.2: RESYNC: (1.40-1.41); FILE MERGED 2004/09/16 10:03:32 nn 1.40.22.1: #i20588# handle ref input across differently split sheets


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [3386438d8618b5191438622b44ba5c392b0ea8a6]

INTEGRATION: CWS calc22 (1.41.20); FILE MERGED 2004/10/11 09:32:34 dr 1.41.20.2: RESYNC: (1.41-1.42); FILE MERGED 2004/09/10 15:07:44 nn 1.41.20.1: #i31596# handle space for AutoFilter in GetOutputArea


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [2fe8d07ff5a7cda8e647aa1bbde7ac7603d81584]

INTEGRATION: CWS calc22 (1.15.22); FILE MERGED 2004/09/24 09:06:57 nn 1.15.22.2: RESYNC: (1.15-1.16); FILE MERGED 2004/09/16 10:03:00 nn 1.15.22.1: #i20588# handle ref input across differently split sheets


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [27f275ac207f85056544b9e148cf5f82a4c81558]

INTEGRATION: CWS calc22 (1.55.46); FILE MERGED 2004/10/11 09:17:45 dr 1.55.46.2: RESYNC: (1.55-1.57); FILE MERGED 2004/09/16 10:03:14 nn 1.55.46.1: #i20588# handle ref input across differently split sheets


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [008ce0b523e34d866503891b11058d50fc3be18e]

INTEGRATION: CWS calc22 (1.30.30); FILE MERGED 2004/09/17 11:21:22 dr 1.30.30.1: #i34298# import of control link addresses


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [7a536706eb015d28395324d4c3f894270efe152b]

INTEGRATION: CWS calc22 (1.68.28); FILE MERGED 2004/10/11 09:10:15 dr 1.68.28.3: RESYNC: (1.69-1.71); FILE MERGED 2004/09/24 08:44:26 nn 1.68.28.2: RESYNC: (1.68-1.69); FILE MERGED 2004/09/17 16:55:11 dr 1.68.28.1: #i34245# new control properties


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [2084889a32837b818d74fe776bea82ca472540f9]

INTEGRATION: CWS colorsubtoolbar (1.1.2); FILE ADDED 2004/09/28 11:10:56 pb 1.1.2.2: fix: #i33938# no dropdown for SID_COLOR_SETTINGS 2004/09/14 17:16:46 pb 1.1.2.1: fix: move color entries to colorbar.xml


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [50d4baadab27501810825a8b34db3b70870c24a0]

INTEGRATION: CWS colorsubtoolbar (1.1.2); FILE ADDED 2004/09/24 11:46:04 pb 1.1.2.1: fix: #i33938# graffilterbar


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [8bb35290d40acfd8ffa5d80c2b457acaa08a52c3]

INTEGRATION: CWS colorsubtoolbar (1.1.2); FILE ADDED 2004/09/14 17:16:07 pb 1.1.2.1: fix: #i33938# sub toolbar of graphic objectbar


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [7bdc139bef417f74a06315f63e89af72124d81ad]

INTEGRATION: CWS colorsubtoolbar (1.13.24); FILE MERGED 2004/09/13 14:01:49 dr 1.13.24.1: #i34120# reenable Right-To-Left in Format->Sheet menu


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [c0424af23f676ae13bd5e604ff2d38774da67585]

INTEGRATION: CWS colorsubtoolbar (1.30.14); FILE MERGED 2004/09/14 17:28:43 pb 1.30.14.1: fix: #i33938# add SID_COLOR_SETTINGS


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [748821b565c21c28303c5d739fb3bd859d7ac9a5]

INTEGRATION: CWS colorsubtoolbar (1.20.26); FILE MERGED 2004/09/28 11:09:10 pb 1.20.26.2: fix: #i33938# no toolbox controller for SID_COLOR_SETTINGS 2004/09/14 17:28:30 pb 1.20.26.1: fix: #i33938# add SID_COLOR_SETTINGS


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [ab4985fb3b12763e193d6a79227fda62bb416dec]

INTEGRATION: CWS colorsubtoolbar (1.5.268); FILE MERGED 2004/09/28 10:48:56 pb 1.5.268.2: fix: #i33938# execute method for SID_COLOR_SETTINGS 2004/09/14 17:28:09 pb 1.5.268.1: fix: #i33938# add SID_COLOR_SETTINGS


2004-10-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [8644a32531fc0f0f4c48af67f9daeb2bc62a363a]

INTEGRATION: CWS aw018 (1.29.28); FILE MERGED 2004/10/11 11:44:55 aw 1.29.28.2: RESYNC: (1.29-1.31); FILE MERGED 2004/09/16 10:49:51 aw 1.29.28.1: #i33700#


2004-10-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [d2afc25677c82dffae7ed1c3b2f3c35e15ddbabf]

INTEGRATION: CWS csvio (1.3.132); FILE MERGED 2004/09/13 16:33:23 er 1.3.132.1: #i834# read CSV quoted embedded line breaks into cell data


2004-10-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [e86f52b8f827b71b60d30611f6348601deb6a51a]

INTEGRATION: CWS csvio (1.8.146); FILE MERGED 2004/09/13 16:33:23 er 1.8.146.1: #i834# read CSV quoted embedded line breaks into cell data


2004-10-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [6c4edabe6014caa503ead9c7d42babae943d35c4]

INTEGRATION: CWS csvio (1.29.12); FILE MERGED 2004/09/16 15:01:06 er 1.29.12.2: #i13331# lcl_PutString: recognize combined date/time values 2004/09/13 16:33:22 er 1.29.12.1: #i834# read CSV quoted embedded line breaks into cell data


2004-10-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [e4aa6468cbc384ebe715665d184c694f62f088f6]

INTEGRATION: CWS csvio (1.72.22); FILE MERGED 2004/09/15 18:05:02 er 1.72.22.2: #i3516# AsciiSave: enquote values if delimiter contained 2004/09/13 16:33:22 er 1.72.22.1: #i834# read CSV quoted embedded line breaks into cell data


2004-10-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [108d996a053ec4b1d5f4a74ea8b1b08f04d46476]

INTEGRATION: CWS csvio (1.5.12); FILE MERGED 2004/09/13 16:33:21 er 1.5.12.1: #i834# read CSV quoted embedded line breaks into cell data


2004-10-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [b5087e50d5e6fa7d2ca22f2e3e24f74562607175]

INTEGRATION: CWS csvio (1.19.134); FILE MERGED 2004/09/08 15:51:16 dr 1.19.134.1: #i834# draw newline characters


2004-10-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [bb78d6bd985d8b19bc9837e80cb360d919e47cdd]

INTEGRATION: CWS csvio (1.21.12); FILE MERGED 2004/09/13 16:33:21 er 1.21.12.1: #i834# read CSV quoted embedded line breaks into cell data


2004-10-08  Mikhail Voitenko  <mav@openoffice.org>  [9c0e5a675960176b942fa5b97090787ce38ff075]

#i35188# check for import or export


2004-10-08  Mikhail Voitenko  <mav@openoffice.org>  [e54f26346e4ffc6938b258ee9542cae14e18ce79]

#i35188# use correct stream


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [f0c10fc4f80829556ebe76da567137ddeb6355ee]

INTEGRATION: CWS mav09 (1.22.82); FILE MERGED 2004/09/16 23:23:50 mav 1.22.82.5: RESYNC: (1.25-1.27); FILE MERGED 2004/07/09 03:06:37 mav 1.22.82.4: RESYNC: (1.23-1.25); FILE MERGED 2004/07/02 14:49:22 mav 1.22.82.3: #i27773# link to sot library 2004/05/17 18:23:37 mav 1.22.82.2: RESYNC: (1.22-1.23); FILE MERGED 2004/05/04 14:02:19 mba 1.22.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [bf2ecf65a2e0ab89ce68b2006bd8ddaec3e177c8]

INTEGRATION: CWS mav09 (1.13.82); FILE MERGED 2004/08/09 20:49:40 mav 1.13.82.8: RESYNC: (1.15-1.16); FILE MERGED 2004/07/09 03:05:49 mav 1.13.82.7: RESYNC: (1.14-1.15); FILE MERGED 2004/06/10 16:48:33 mba 1.13.82.6: #i27773#: some fixed to make InPlace Editing work 2004/06/01 08:10:26 mba 1.13.82.5: #i27773#: new embedding API 2004/05/20 20:34:36 mba 1.13.82.4: #i27773#: some API changes 2004/05/17 18:22:57 mav 1.13.82.3: RESYNC: (1.13-1.14); FILE MERGED 2004/05/16 17:26:41 mba 1.13.82.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:02:04 mba 1.13.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [1d493158295eac44c661f3ca9fd17c382008f05c]

INTEGRATION: CWS mav09 (1.25.82); FILE MERGED 2004/09/28 14:39:31 mav 1.25.82.6: #i27773# get read of SvStorage 2004/09/16 23:20:43 mav 1.25.82.5: RESYNC: (1.26-1.29); FILE MERGED 2004/07/15 10:41:14 mba 1.25.82.4: #i27773#: cleaning up todos 2004/07/09 03:05:33 mav 1.25.82.3: RESYNC: (1.25-1.26); FILE MERGED 2004/05/16 17:26:41 mba 1.25.82.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:02:04 mba 1.25.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [11d848ec92db21f18af0589a8c6b6b398273dd7a]

INTEGRATION: CWS mav09 (1.23.80); FILE MERGED 2004/09/27 15:29:18 mav 1.23.80.8: RESYNC: (1.27-1.28); FILE MERGED 2004/09/21 17:54:01 mav 1.23.80.7: RESYNC: (1.25-1.27); FILE MERGED 2004/07/15 10:41:14 mba 1.23.80.6: #i27773#: cleaning up todos 2004/07/09 03:05:25 mav 1.23.80.5: RESYNC: (1.24-1.25); FILE MERGED 2004/06/01 08:10:26 mba 1.23.80.4: #i27773#: new embedding API 2004/05/17 18:22:48 mav 1.23.80.3: RESYNC: (1.23-1.24); FILE MERGED 2004/05/16 17:26:41 mba 1.23.80.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:02:04 mba 1.23.80.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [340f454c65c6f678e9f5828df833e8e2c1caa43a]

INTEGRATION: CWS mav09 (1.25.82); FILE MERGED 2004/09/28 14:39:31 mav 1.25.82.5: #i27773# get read of SvStorage 2004/09/16 23:20:35 mav 1.25.82.4: RESYNC: (1.27-1.28); FILE MERGED 2004/08/09 20:49:31 mav 1.25.82.3: RESYNC: (1.26-1.27); FILE MERGED 2004/07/09 03:05:17 mav 1.25.82.2: RESYNC: (1.25-1.26); FILE MERGED 2004/05/04 14:02:04 mba 1.25.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [7d99ab131ab57983ecf232e4f7f355b7bf72ece5]

INTEGRATION: CWS mav09 (1.44.14); FILE MERGED 2004/09/16 23:20:18 mav 1.44.14.3: RESYNC: (1.45-1.47); FILE MERGED 2004/07/09 03:04:58 mav 1.44.14.2: RESYNC: (1.44-1.45); FILE MERGED 2004/05/04 14:02:03 mba 1.44.14.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [6fc1567e2eef7d443dfa4862da05974c2465bc98]

INTEGRATION: CWS mav09 (1.6.418); FILE MERGED 2004/08/09 20:49:23 mav 1.6.418.4: RESYNC: (1.6-1.7); FILE MERGED 2004/05/20 20:34:35 mba 1.6.418.3: #i27773#: some API changes 2004/05/16 17:26:40 mba 1.6.418.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:02:03 mba 1.6.418.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [068ff0494a3b59152aa5aed24e65fb1d52354ada]

INTEGRATION: CWS mav09 (1.2.428); FILE MERGED 2004/07/15 10:41:13 mba 1.2.428.2: #i27773#: cleaning up todos 2004/05/04 14:02:03 mba 1.2.428.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [493e85f5e76b6f578ea79d551f68bac77f2d4920]

INTEGRATION: CWS mav09 (1.17.138); FILE MERGED 2004/09/16 23:20:00 mav 1.17.138.9: RESYNC: (1.18-1.19); FILE MERGED 2004/08/30 17:10:01 mav 1.17.138.8: #i27773# chart update 2004/08/09 20:49:05 mav 1.17.138.7: RESYNC: (1.17-1.18); FILE MERGED 2004/07/15 10:41:13 mba 1.17.138.6: #i27773#: cleaning up todos 2004/06/10 16:48:33 mba 1.17.138.5: #i27773#: some fixed to make InPlace Editing work 2004/06/01 08:10:26 mba 1.17.138.4: #i27773#: new embedding API 2004/05/20 20:34:35 mba 1.17.138.3: #i27773#: some API changes 2004/05/10 08:09:50 mba 1.17.138.2: #i27773#: let client always connect to object 2004/05/04 14:02:03 mba 1.17.138.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [504c71c47c5a6ed9563383398e47c36d8736a6f4]

INTEGRATION: CWS mav09 (1.10.110); FILE MERGED 2004/09/16 23:19:52 mav 1.10.110.5: RESYNC: (1.12-1.13); FILE MERGED 2004/07/09 03:04:12 mav 1.10.110.4: RESYNC: (1.11-1.12); FILE MERGED 2004/06/10 16:48:33 mba 1.10.110.3: #i27773#: some fixed to make InPlace Editing work 2004/05/17 18:22:19 mav 1.10.110.2: RESYNC: (1.10-1.11); FILE MERGED 2004/05/04 14:02:02 mba 1.10.110.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [9f763777019ea109c62a6cff4dd8b46b6cd9c591]

INTEGRATION: CWS mav09 (1.2.56); FILE MERGED 2004/07/15 10:41:13 mba 1.2.56.1: #i27773#: cleaning up todos


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [17e92ec32df934d82fe87afef08e6865b411e193]

INTEGRATION: CWS mav09 (1.36.30); FILE MERGED 2004/09/16 23:19:34 mav 1.36.30.8: RESYNC: (1.40-1.42); FILE MERGED 2004/07/15 10:41:12 mba 1.36.30.7: #i27773#: cleaning up todos 2004/07/09 03:03:43 mav 1.36.30.6: RESYNC: (1.38-1.39); FILE MERGED 2004/07/02 08:46:54 mba 1.36.30.5: #i27773#: some ToDos 2004/06/21 16:37:54 mba 1.36.30.4: #i27773#: in InPlaceMode the Size already contains the Border now 2004/06/10 16:48:32 mba 1.36.30.3: #i27773#: some fixed to make InPlace Editing work 2004/05/17 18:22:11 mav 1.36.30.2: RESYNC: (1.36-1.38); FILE MERGED 2004/05/04 14:02:02 mba 1.36.30.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [e641e77a58b9fb06725c72662f1d7d0c68cec6b2]

INTEGRATION: CWS mav09 (1.21.74); FILE MERGED 2004/09/16 23:19:26 mav 1.21.74.5: RESYNC: (1.23-1.24); FILE MERGED 2004/07/09 03:03:35 mav 1.21.74.4: RESYNC: (1.22-1.23); FILE MERGED 2004/06/10 16:48:32 mba 1.21.74.3: #i27773#: some fixed to make InPlace Editing work 2004/05/17 18:22:01 mav 1.21.74.2: RESYNC: (1.21-1.22); FILE MERGED 2004/05/04 14:02:01 mba 1.21.74.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [917f7d3c69d46ca19250dab31fab28dd398c842f]

INTEGRATION: CWS mav09 (1.13.310); FILE MERGED 2004/08/09 20:48:47 mav 1.13.310.4: RESYNC: (1.14-1.15); FILE MERGED 2004/07/09 03:03:27 mav 1.13.310.3: RESYNC: (1.13-1.14); FILE MERGED 2004/06/10 16:48:32 mba 1.13.310.2: #i27773#: some fixed to make InPlace Editing work 2004/05/04 14:02:01 mba 1.13.310.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [94aebb3c4a1235bc89039a38c0a680c32d00a7e6]

INTEGRATION: CWS mav09 (1.6.84); FILE MERGED 2004/09/21 17:53:45 mav 1.6.84.3: RESYNC: (1.7-1.8); FILE MERGED 2004/09/16 23:19:18 mav 1.6.84.2: RESYNC: (1.6-1.7); FILE MERGED 2004/05/04 14:02:01 mba 1.6.84.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [67f2c0482d1c0e745da2cd74ff0d188664c1d8d6]

INTEGRATION: CWS mav09 (1.36.82); FILE MERGED 2004/09/21 17:53:37 mav 1.36.82.4: RESYNC: (1.41-1.42); FILE MERGED 2004/09/16 23:18:50 mav 1.36.82.3: RESYNC: (1.37-1.41); FILE MERGED 2004/07/09 03:02:59 mav 1.36.82.2: RESYNC: (1.36-1.37); FILE MERGED 2004/05/04 14:02:00 mba 1.36.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [287c05e6a99d88097f8eb40ad1e96bc187838566]

INTEGRATION: CWS mav09 (1.8.412); FILE MERGED 2004/09/16 23:18:42 mav 1.8.412.3: RESYNC: (1.9-1.11); FILE MERGED 2004/07/09 03:02:51 mav 1.8.412.2: RESYNC: (1.8-1.9); FILE MERGED 2004/05/04 14:02:00 mba 1.8.412.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [b4cf9328a31f008c553352e796c38c4d439b6c1e]

INTEGRATION: CWS mav09 (1.17.58); FILE MERGED 2004/09/16 23:18:35 mav 1.17.58.4: RESYNC: (1.18-1.21); FILE MERGED 2004/07/09 03:02:42 mav 1.17.58.3: RESYNC: (1.17-1.18); FILE MERGED 2004/06/10 16:48:31 mba 1.17.58.2: #i27773#: some fixed to make InPlace Editing work 2004/05/04 14:02:00 mba 1.17.58.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [686b6673007d5f33ead5d90ce3bd93e92f6e10e0]

INTEGRATION: CWS mav09 (1.7.82); FILE MERGED 2004/07/09 03:02:34 mav 1.7.82.2: RESYNC: (1.7-1.9); FILE MERGED 2004/05/04 14:01:59 mba 1.7.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [24c65a4301f71e9d8b0a70f324420b3c94262df5]

INTEGRATION: CWS mav09 (1.10.2); FILE MERGED 2004/09/28 14:11:58 mav 1.10.2.1: #i27773# resync


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [1d30de364e2349a6c2a33827669798d940de2d7d]

INTEGRATION: CWS mav09 (1.20.82); FILE MERGED 2004/07/09 03:01:56 mav 1.20.82.3: RESYNC: (1.21-1.22); FILE MERGED 2004/05/17 18:21:43 mav 1.20.82.2: RESYNC: (1.20-1.21); FILE MERGED 2004/05/04 14:01:59 mba 1.20.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [04b3882edd43494244123812b40dfce9c67d3ab4]

INTEGRATION: CWS mav09 (1.23.100); FILE MERGED 2004/07/09 03:01:39 mav 1.23.100.2: RESYNC: (1.23-1.24); FILE MERGED 2004/05/04 14:01:59 mba 1.23.100.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [f0215d51c173c1945acb939aa809d43ab27c06aa]

INTEGRATION: CWS mav09 (1.22.58); FILE MERGED 2004/09/16 23:17:36 mav 1.22.58.5: RESYNC: (1.23-1.26); FILE MERGED 2004/07/09 03:00:56 mav 1.22.58.4: RESYNC: (1.22-1.23); FILE MERGED 2004/06/01 08:10:25 mba 1.22.58.3: #i27773#: new embedding API 2004/05/20 20:34:35 mba 1.22.58.2: #i27773#: some API changes 2004/05/04 14:01:58 mba 1.22.58.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [89595b479b6c418cae1434a3afb26c465749413f]

INTEGRATION: CWS mav09 (1.22.26); FILE MERGED 2004/09/16 23:17:09 mav 1.22.26.4: RESYNC: (1.23-1.25); FILE MERGED 2004/07/15 10:41:12 mba 1.22.26.3: #i27773#: cleaning up todos 2004/07/09 02:59:54 mav 1.22.26.2: RESYNC: (1.22-1.23); FILE MERGED 2004/05/04 14:01:58 mba 1.22.26.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [34cecbb7742b2807a7b3f4a284f32d96fee132cd]

INTEGRATION: CWS mav09 (1.51.22); FILE MERGED 2004/09/28 14:39:30 mav 1.51.22.8: #i27773# get read of SvStorage 2004/09/21 17:52:47 mav 1.51.22.7: RESYNC: (1.63-1.65); FILE MERGED 2004/09/16 23:16:53 mav 1.51.22.6: RESYNC: (1.58-1.63); FILE MERGED 2004/08/20 07:08:52 mba 1.51.22.5: #i27773#: Escape from InPlace Mode 2004/08/09 20:48:07 mav 1.51.22.4: RESYNC: (1.56-1.58); FILE MERGED 2004/07/09 02:59:28 mav 1.51.22.3: RESYNC: (1.52-1.56); FILE MERGED 2004/05/17 18:21:13 mav 1.51.22.2: RESYNC: (1.51-1.52); FILE MERGED 2004/05/04 14:01:57 mba 1.51.22.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [d13d8b146aaf4f949d1570f246bc77d3716f83a8]

INTEGRATION: CWS mav09 (1.18.310); FILE MERGED 2004/09/21 17:52:38 mav 1.18.310.6: RESYNC: (1.24-1.27); FILE MERGED 2004/09/16 23:16:46 mav 1.18.310.5: RESYNC: (1.21-1.24); FILE MERGED 2004/07/09 02:59:20 mav 1.18.310.4: RESYNC: (1.20-1.21); FILE MERGED 2004/06/10 16:48:31 mba 1.18.310.3: #i27773#: some fixed to make InPlace Editing work 2004/05/17 18:21:04 mav 1.18.310.2: RESYNC: (1.18-1.20); FILE MERGED 2004/05/04 14:01:57 mba 1.18.310.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [e61f1ed9f21c3dd796b7f6daa719f220baf19b9b]

INTEGRATION: CWS mav09 (1.19.410); FILE MERGED 2004/05/20 20:34:35 mba 1.19.410.3: #i27773#: some API changes 2004/05/17 18:20:55 mav 1.19.410.2: RESYNC: (1.19-1.20); FILE MERGED 2004/05/04 14:01:57 mba 1.19.410.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [76aa56afa3714b6b17f8a23052adf1ac599b62f3]

INTEGRATION: CWS mav09 (1.23.80); FILE MERGED 2004/09/16 23:16:38 mav 1.23.80.6: RESYNC: (1.25-1.31); FILE MERGED 2004/08/09 20:47:59 mav 1.23.80.5: RESYNC: (1.24-1.25); FILE MERGED 2004/07/09 02:59:12 mav 1.23.80.4: RESYNC: (1.23-1.24); FILE MERGED 2004/06/10 16:48:31 mba 1.23.80.3: #i27773#: some fixed to make InPlace Editing work 2004/05/20 20:34:34 mba 1.23.80.2: #i27773#: some API changes 2004/05/04 14:01:57 mba 1.23.80.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [89ea0bc88ad37b0ce380e47ca64898bdb81f3ff2]

INTEGRATION: CWS mav09 (1.14.138); FILE MERGED 2004/08/30 17:10:01 mav 1.14.138.6: #i27773# chart update 2004/08/09 20:47:51 mav 1.14.138.5: RESYNC: (1.15-1.16); FILE MERGED 2004/07/09 02:59:04 mav 1.14.138.4: RESYNC: (1.14-1.15); FILE MERGED 2004/06/01 08:10:24 mba 1.14.138.3: #i27773#: new embedding API 2004/05/20 20:34:34 mba 1.14.138.2: #i27773#: some API changes 2004/05/04 14:01:56 mba 1.14.138.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [0caf4d98b5bc1cb688b3e47e6cff56f82d1627cc]

INTEGRATION: CWS mav09 (1.3.112); FILE MERGED 2004/08/30 17:10:01 mav 1.3.112.2: #i27773# chart update 2004/05/04 14:01:56 mba 1.3.112.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [295d306b5a532941dbf6a156c5469f8800579b07]

INTEGRATION: CWS mav09 (1.11.58); FILE MERGED 2004/09/16 23:15:53 mav 1.11.58.6: RESYNC: (1.13-1.15); FILE MERGED 2004/08/20 07:08:52 mba 1.11.58.5: #i27773#: Escape from InPlace Mode 2004/07/09 02:58:01 mav 1.11.58.4: RESYNC: (1.12-1.13); FILE MERGED 2004/06/10 16:48:31 mba 1.11.58.3: #i27773#: some fixed to make InPlace Editing work 2004/05/17 18:20:47 mav 1.11.58.2: RESYNC: (1.11-1.12); FILE MERGED 2004/05/04 14:01:56 mba 1.11.58.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [87d363eb084960480f386893dcf5f2bae5803a5b]

INTEGRATION: CWS mav09 (1.16.82); FILE MERGED 2004/09/16 23:15:46 mav 1.16.82.5: RESYNC: (1.19-1.21); FILE MERGED 2004/08/09 20:47:16 mav 1.16.82.4: RESYNC: (1.18-1.19); FILE MERGED 2004/07/09 02:57:53 mav 1.16.82.3: RESYNC: (1.17-1.18); FILE MERGED 2004/05/17 18:20:39 mav 1.16.82.2: RESYNC: (1.16-1.17); FILE MERGED 2004/05/04 14:01:55 mba 1.16.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [8d69350cd60c5548444c31e2528d0c11cc99227e]

INTEGRATION: CWS mav09 (1.26.78); FILE MERGED 2004/09/21 17:52:30 mav 1.26.78.6: RESYNC: (1.33-1.35); FILE MERGED 2004/09/16 23:15:37 mav 1.26.78.5: RESYNC: (1.30-1.33); FILE MERGED 2004/08/09 20:47:08 mav 1.26.78.4: RESYNC: (1.29-1.30); FILE MERGED 2004/07/09 02:57:45 mav 1.26.78.3: RESYNC: (1.28-1.29); FILE MERGED 2004/05/17 18:20:32 mav 1.26.78.2: RESYNC: (1.26-1.28); FILE MERGED 2004/05/04 14:01:55 mba 1.26.78.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [55e4029f999092af8c116da4c06f7feae957d387]

INTEGRATION: CWS mav09 (1.24.56); FILE MERGED 2004/09/16 23:15:29 mav 1.24.56.6: RESYNC: (1.27-1.30); FILE MERGED 2004/08/09 20:47:00 mav 1.24.56.5: RESYNC: (1.26-1.27); FILE MERGED 2004/07/09 02:57:37 mav 1.24.56.4: RESYNC: (1.25-1.26); FILE MERGED 2004/06/10 16:48:30 mba 1.24.56.3: #i27773#: some fixed to make InPlace Editing work 2004/05/17 18:20:22 mav 1.24.56.2: RESYNC: (1.24-1.25); FILE MERGED 2004/05/04 14:01:55 mba 1.24.56.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [04bcaf1619badd972548c64edf7df693f82eddcd]

INTEGRATION: CWS mav09 (1.17.56); FILE MERGED 2004/08/09 20:46:52 mav 1.17.56.3: RESYNC: (1.18-1.19); FILE MERGED 2004/07/09 02:57:21 mav 1.17.56.2: RESYNC: (1.17-1.18); FILE MERGED 2004/05/04 14:01:54 mba 1.17.56.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [74de83143fa82b5d853ba926b0a9b23329fb6d29]

INTEGRATION: CWS mav09 (1.3.84); FILE MERGED 2004/07/19 10:24:47 mba 1.3.84.7: ##i27773#: bug in typedetection; templates and documents have same MediaType 2004/07/15 10:41:11 mba 1.3.84.6: #i27773#: cleaning up todos 2004/07/09 02:56:45 mav 1.3.84.5: RESYNC: (1.3-1.4); FILE MERGED 2004/07/05 12:28:58 mav 1.3.84.4: #i27773# package repairing is done only when type is known 2004/07/05 12:04:23 mav 1.3.84.3: #i27773# package repairing 2004/07/02 14:34:35 mba 1.3.84.2: #i27773#: Excel Type detection 2004/05/04 14:01:53 mba 1.3.84.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [aacc816259e24dd717b06735bfeaaa6a4775e24b]

INTEGRATION: CWS mav09 (1.9.56); FILE MERGED 2004/07/09 02:56:20 mav 1.9.56.2: RESYNC: (1.9-1.10); FILE MERGED 2004/05/04 14:01:53 mba 1.9.56.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [1b3c3465fbb7c9ee1290bf574b2e6f34fae243b6]

INTEGRATION: CWS mav09 (1.42.26); FILE MERGED 2004/09/16 23:14:23 mav 1.42.26.4: RESYNC: (1.43-1.46); FILE MERGED 2004/07/15 10:41:11 mba 1.42.26.3: #i27773#: cleaning up todos 2004/07/09 02:55:51 mav 1.42.26.2: RESYNC: (1.42-1.43); FILE MERGED 2004/05/04 14:01:53 mba 1.42.26.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [71bf80ffa8422d36eb7aa9fb8fb58dc83c01dd6a]

INTEGRATION: CWS mav09 (1.11.138); FILE MERGED 2004/08/30 17:10:00 mav 1.11.138.6: #i27773# chart update 2004/07/15 10:41:10 mba 1.11.138.5: #i27773#: cleaning up todos 2004/07/09 02:55:08 mav 1.11.138.4: RESYNC: (1.11-1.12); FILE MERGED 2004/06/01 08:10:23 mba 1.11.138.3: #i27773#: new embedding API 2004/05/16 17:26:40 mba 1.11.138.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:01:52 mba 1.11.138.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [4c5817073a94443dfabb9ca97be7afcba739e9a1]

INTEGRATION: CWS mav09 (1.83.54); FILE MERGED 2004/09/16 23:13:34 mav 1.83.54.3: RESYNC: (1.84-1.86); FILE MERGED 2004/07/09 02:54:49 mav 1.83.54.2: RESYNC: (1.83-1.84); FILE MERGED 2004/05/04 14:01:51 mba 1.83.54.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [09eecd58340fc102888e2ad987a87b6579c7b491]

INTEGRATION: CWS mav09 (1.8.78); FILE MERGED 2004/09/21 17:52:14 mav 1.8.78.5: RESYNC: (1.11-1.12); FILE MERGED 2004/09/16 23:12:54 mav 1.8.78.4: RESYNC: (1.10-1.11); FILE MERGED 2004/07/09 02:53:50 mav 1.8.78.3: RESYNC: (1.9-1.10); FILE MERGED 2004/05/17 18:19:54 mav 1.8.78.2: RESYNC: (1.8-1.9); FILE MERGED 2004/05/04 14:01:51 mba 1.8.78.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [9f3f491a309b3ecf7cacbdb7e511e7ddf8103740]

INTEGRATION: CWS mav09 (1.2.446); FILE MERGED 2004/05/04 14:01:50 mba 1.2.446.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [fdbbaa5f6d1cc1c99d10e3f8cb04efb8e35fdeae]

INTEGRATION: CWS mav09 (1.14.410); FILE MERGED 2004/07/09 02:45:48 mav 1.14.410.2: RESYNC: (1.14-1.15); FILE MERGED 2004/04/29 08:57:08 mav 1.14.410.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [457351a0dbb0d86b638301ee5c3cd5cf6c035c81]

INTEGRATION: CWS mav09 (1.12.98); FILE MERGED 2004/07/09 02:44:08 mav 1.12.98.3: RESYNC: (1.12-1.13); FILE MERGED 2004/06/10 16:48:29 mba 1.12.98.2: #i27773#: some fixed to make InPlace Editing work 2004/05/04 14:01:50 mba 1.12.98.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [b93fbe87fcf465f99c2ce8b322376caa8eb68ce5]

INTEGRATION: CWS mav09 (1.15.82); FILE MERGED 2004/07/09 02:43:51 mav 1.15.82.2: RESYNC: (1.15-1.16); FILE MERGED 2004/05/04 14:01:50 mba 1.15.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [ffa7762b8cc9f5feff5a03fec422cadaf47087fd]

INTEGRATION: CWS mav09 (1.18.108); FILE MERGED 2004/09/21 17:51:37 mav 1.18.108.4: RESYNC: (1.20-1.22); FILE MERGED 2004/07/09 02:43:36 mav 1.18.108.3: RESYNC: (1.19-1.20); FILE MERGED 2004/05/17 18:15:10 mav 1.18.108.2: RESYNC: (1.18-1.19); FILE MERGED 2004/05/04 14:01:49 mba 1.18.108.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [8e96e17d4b5e16bdd3980a4f330e95fa348d9604]

INTEGRATION: CWS mav09 (1.7.100); FILE MERGED 2004/04/29 08:57:07 mav 1.7.100.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [33e7fe1567ec4a7bdd57625002a2185044c4c90b]

INTEGRATION: CWS mav09 (1.11.416); FILE MERGED 2004/07/09 02:42:07 mav 1.11.416.3: RESYNC: (1.11-1.12); FILE MERGED 2004/05/04 14:01:49 mba 1.11.416.2: #i27773#: remove so3 2004/04/29 08:57:07 mav 1.11.416.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [3ce7e724fb4e3a3b0c0c334ba40299116e2d5abc]

INTEGRATION: CWS mav09 (1.16.56); FILE MERGED 2004/09/16 23:04:04 mav 1.16.56.2: RESYNC: (1.16-1.18); FILE MERGED 2004/07/15 10:41:10 mba 1.16.56.1: #i27773#: cleaning up todos


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [3ff5aa8d59ab8eb22b7a53e6f8a7c0cad63555c6]

INTEGRATION: CWS mav09 (1.12.82); FILE MERGED 2004/09/16 23:03:56 mav 1.12.82.5: RESYNC: (1.13-1.15); FILE MERGED 2004/07/09 02:41:08 mav 1.12.82.4: RESYNC: (1.12-1.13); FILE MERGED 2004/05/10 08:09:49 mba 1.12.82.3: #i27773#: let client always connect to object 2004/05/04 14:01:49 mba 1.12.82.2: #i27773#: remove so3 2004/04/29 08:57:07 mav 1.12.82.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [0ef7f92acd0bcd20bd9c76f07a34d21b1cda251a]

INTEGRATION: CWS mav09 (1.2.446); FILE MERGED 2004/07/09 02:40:14 mav 1.2.446.2: RESYNC: (1.2-1.3); FILE MERGED 2004/05/04 14:01:48 mba 1.2.446.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [7bf4377d00e3776ceff509a054160d7d829e6cef]

INTEGRATION: CWS mav09 (1.10.82); FILE MERGED 2004/09/21 17:50:51 mav 1.10.82.4: RESYNC: (1.13-1.14); FILE MERGED 2004/09/16 23:03:38 mav 1.10.82.3: RESYNC: (1.11-1.13); FILE MERGED 2004/07/09 02:37:28 mav 1.10.82.2: RESYNC: (1.10-1.11); FILE MERGED 2004/05/04 14:01:48 mba 1.10.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [05585a53acbfca0ce3bd7c1be854ff12c5803cf6]

INTEGRATION: CWS mav09 (1.2.438); FILE MERGED 2004/05/04 14:01:48 mba 1.2.438.2: #i27773#: remove so3 2004/04/29 08:57:07 mav 1.2.438.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [10c2c6b4dcea237f4954c21e91db72e45475524d]

INTEGRATION: CWS mav09 (1.2.442); FILE MERGED 2004/08/09 20:43:50 mav 1.2.442.4: RESYNC: (1.3-1.4); FILE MERGED 2004/07/15 09:12:11 mav 1.2.442.3: #i27773# solve resync problems 2004/07/09 02:36:19 mav 1.2.442.2: RESYNC: (1.2-1.3); FILE MERGED 2004/05/04 14:01:48 mba 1.2.442.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [641215785f5d53b22e96a7f5fb3d6fca2c0eabd9]

INTEGRATION: CWS mav09 (1.9.430); FILE MERGED 2004/07/09 02:34:51 mav 1.9.430.3: RESYNC: (1.9-1.10); FILE MERGED 2004/05/04 14:01:47 mba 1.9.430.2: #i27773#: remove so3 2004/04/29 08:57:06 mav 1.9.430.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [4289ed5c61b7a1252f045b981a2fc3599345bc0d]

INTEGRATION: CWS mav09 (1.26.20); FILE MERGED 2004/09/28 14:39:30 mav 1.26.20.9: #i27773# get read of SvStorage 2004/09/16 22:59:57 mav 1.26.20.8: RESYNC: (1.29-1.31); FILE MERGED 2004/08/12 17:03:49 mav 1.26.20.7: #i27773# introduce version back 2004/08/09 20:43:31 mav 1.26.20.6: RESYNC: (1.28-1.29); FILE MERGED 2004/07/15 09:12:11 mav 1.26.20.5: #i27773# solve resync problems 2004/07/09 02:31:47 mav 1.26.20.4: RESYNC: (1.27-1.28); FILE MERGED 2004/05/04 14:01:47 mba 1.26.20.3: #i27773#: remove so3 2004/04/29 18:59:28 mav 1.26.20.2: RESYNC: (1.26-1.27); FILE MERGED 2004/04/29 08:57:06 mav 1.26.20.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [2e0d37482b3a17812be2bae6737fe6390e0ef78a]

INTEGRATION: CWS mav09 (1.1.1.1.454); FILE MERGED 2004/06/14 14:45:09 mba 1.1.1.1.454.3: #i27773#: new handling for resizing of active objects 2004/05/10 08:09:49 mba 1.1.1.1.454.2: #i27773#: let client always connect to object 2004/05/04 14:01:45 mba 1.1.1.1.454.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [606ff98411e01a205f19ee43838866ac5c018eff]

INTEGRATION: CWS mav09 (1.5.416); FILE MERGED 2004/09/21 17:50:35 mav 1.5.416.7: RESYNC: (1.7-1.8); FILE MERGED 2004/09/16 22:57:22 mav 1.5.416.6: RESYNC: (1.6-1.7); FILE MERGED 2004/08/09 20:41:52 mav 1.5.416.5: RESYNC: (1.5-1.6); FILE MERGED 2004/06/10 16:48:28 mba 1.5.416.4: #i27773#: some fixed to make InPlace Editing work 2004/06/01 08:10:22 mba 1.5.416.3: #i27773#: new embedding API 2004/05/20 20:08:04 mba 1.5.416.2: #i27773#: some API changes 2004/05/04 14:01:45 mba 1.5.416.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [1065952a1f8cc811f72ecc2eda0c43a0b5a3cba8]

INTEGRATION: CWS mav09 (1.12.70); FILE MERGED 2004/09/16 22:58:26 mav 1.12.70.10: RESYNC: (1.13-1.15); FILE MERGED 2004/08/30 17:09:59 mav 1.12.70.9: #i27773# chart update 2004/07/15 10:41:10 mba 1.12.70.8: #i27773#: cleaning up todos 2004/07/09 02:29:53 mav 1.12.70.7: RESYNC: (1.12-1.13); FILE MERGED 2004/06/10 16:48:28 mba 1.12.70.6: #i27773#: some fixed to make InPlace Editing work 2004/06/01 08:10:22 mba 1.12.70.5: #i27773#: new embedding API 2004/05/20 20:08:04 mba 1.12.70.4: #i27773#: some API changes 2004/05/16 17:26:40 mba 1.12.70.3: #i27773#: new EmbeddedObjectContainer 2004/05/05 11:59:35 mba 1.12.70.2: #i27773#: platform independent GUIDs 2004/05/04 14:01:45 mba 1.12.70.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [b72c611b420e744569562cffa28f9617ef51be85]

INTEGRATION: CWS mav09 (1.9.310); FILE MERGED 2004/09/16 22:58:04 mav 1.9.310.4: RESYNC: (1.10-1.11); FILE MERGED 2004/08/09 20:43:03 mav 1.9.310.3: RESYNC: (1.9-1.10); FILE MERGED 2004/06/10 16:48:28 mba 1.9.310.2: #i27773#: some fixed to make InPlace Editing work 2004/05/04 14:01:45 mba 1.9.310.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [c0c55f65ecc0daf801f1f307fbfcf5e8539eacb8]

INTEGRATION: CWS mav09 (1.10.412); FILE MERGED 2004/08/09 20:42:35 mav 1.10.412.2: RESYNC: (1.10-1.11); FILE MERGED 2004/05/04 14:01:44 mba 1.10.412.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [4d7212da92ea71b39c9429711e6ab81dc92fd554]

INTEGRATION: CWS mav09 (1.8.418); FILE MERGED 2004/05/17 18:12:02 mav 1.8.418.2: RESYNC: (1.8-1.9); FILE MERGED 2004/05/04 14:01:44 mba 1.8.418.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [b7018a5ad3641ea14a767aa958cfed0d105614b1]

INTEGRATION: CWS mav09 (1.11.32); FILE MERGED 2004/09/16 22:57:47 mav 1.11.32.5: RESYNC: (1.14-1.19); FILE MERGED 2004/08/09 20:42:27 mav 1.11.32.4: RESYNC: (1.13-1.14); FILE MERGED 2004/07/09 02:29:36 mav 1.11.32.3: RESYNC: (1.12-1.13); FILE MERGED 2004/05/17 18:11:54 mav 1.11.32.2: RESYNC: (1.11-1.12); FILE MERGED 2004/05/04 14:01:43 mba 1.11.32.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [2bc67634e574a87c320902aedfbcfd1bc72362ce]

INTEGRATION: CWS mav09 (1.10.34); FILE MERGED 2004/09/16 22:57:39 mav 1.10.34.6: RESYNC: (1.11-1.13); FILE MERGED 2004/08/09 20:42:10 mav 1.10.34.5: RESYNC: (1.10-1.11); FILE MERGED 2004/07/15 10:41:09 mba 1.10.34.4: #i27773#: cleaning up todos 2004/06/01 08:10:21 mba 1.10.34.3: #i27773#: new embedding API 2004/05/20 20:08:04 mba 1.10.34.2: #i27773#: some API changes 2004/05/04 14:01:43 mba 1.10.34.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [3004ad4585a9a7c501b82d55544f6e9cf9b091ae]

INTEGRATION: CWS mav09 (1.17.76); FILE MERGED 2004/07/09 02:29:18 mav 1.17.76.2: RESYNC: (1.17-1.18); FILE MERGED 2004/05/04 14:01:42 mba 1.17.76.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [be0f68a4c5a2aec17702f86dcb05028f2fdfb7c5]

INTEGRATION: CWS mav09 (1.11.58); FILE MERGED 2004/09/16 22:56:45 mav 1.11.58.5: RESYNC: (1.12-1.13); FILE MERGED 2004/07/15 10:41:09 mba 1.11.58.4: #i27773#: cleaning up todos 2004/07/09 02:28:11 mav 1.11.58.3: RESYNC: (1.11-1.12); FILE MERGED 2004/05/16 17:26:39 mba 1.11.58.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:01:42 mba 1.11.58.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [120ab4f6c1c189c9ddd48031e0d72540866f67d6]

INTEGRATION: CWS mav09 (1.34.14); FILE MERGED 2004/09/16 22:56:27 mav 1.34.14.5: RESYNC: (1.36-1.39); FILE MERGED 2004/07/15 10:41:09 mba 1.34.14.4: #i27773#: cleaning up todos 2004/07/09 02:27:54 mav 1.34.14.3: RESYNC: (1.35-1.36); FILE MERGED 2004/05/17 18:11:35 mav 1.34.14.2: RESYNC: (1.34-1.35); FILE MERGED 2004/05/04 14:01:42 mba 1.34.14.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [7858e361bfb82c2800757d736b9a131fbd028027]

INTEGRATION: CWS mav09 (1.18.80); FILE MERGED 2004/07/09 02:27:46 mav 1.18.80.3: RESYNC: (1.19-1.20); FILE MERGED 2004/05/17 18:11:27 mav 1.18.80.2: RESYNC: (1.18-1.19); FILE MERGED 2004/05/04 14:01:41 mba 1.18.80.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [5f66c95fbc559d3ffd11f1aef7b679b0907ae947]

INTEGRATION: CWS mav09 (1.14.82); FILE MERGED 2004/07/15 10:41:08 mba 1.14.82.4: #i27773#: cleaning up todos 2004/07/09 02:27:39 mav 1.14.82.3: RESYNC: (1.14-1.15); FILE MERGED 2004/05/16 17:26:39 mba 1.14.82.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:01:41 mba 1.14.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [e11ce339aa0931487b76d728eaa08df9dfac7489]

INTEGRATION: CWS mav09 (1.65.6); FILE MERGED 2004/09/28 14:39:29 mav 1.65.6.13: #i27773# get read of SvStorage 2004/09/16 22:55:50 mav 1.65.6.12: RESYNC: (1.71-1.73); FILE MERGED 2004/09/03 08:00:11 mba 1.65.6.11: #i27773#: Closing streams should be done by SFX only 2004/08/12 17:03:49 mav 1.65.6.10: #i27773# introduce version back 2004/08/11 13:22:01 mav 1.65.6.9: #100000# resync problem 2004/08/09 20:41:24 mav 1.65.6.8: RESYNC: (1.69-1.71); FILE MERGED 2004/07/15 10:41:08 mba 1.65.6.7: #i27773#: cleaning up todos 2004/07/09 02:26:55 mav 1.65.6.6: RESYNC: (1.67-1.69); FILE MERGED 2004/07/06 15:50:31 mba 1.65.6.5: #i27773#: error handling 2004/05/17 18:11:03 mav 1.65.6.4: RESYNC: (1.66-1.67); FILE MERGED 2004/05/04 14:01:41 mba 1.65.6.3: #i27773#: remove so3 2004/04/29 18:56:52 mav 1.65.6.2: RESYNC: (1.65-1.66); FILE MERGED 2004/04/29 08:57:05 mav 1.65.6.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [d7975a4d3d6c2d9757abf3e0ba3c262bf14885cf]

INTEGRATION: CWS mav09 (1.14.20); FILE MERGED 2004/09/16 22:56:09 mav 1.14.20.4: RESYNC: (1.16-1.17); FILE MERGED 2004/07/09 02:27:23 mav 1.14.20.3: RESYNC: (1.15-1.16); FILE MERGED 2004/04/29 18:57:12 mav 1.14.20.2: RESYNC: (1.14-1.15); FILE MERGED 2004/04/29 08:57:05 mav 1.14.20.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [9bf384944a433d70d3a81909ffabd0c19f74fc89]

INTEGRATION: CWS mav09 (1.16.84); FILE MERGED 2004/07/09 02:27:05 mav 1.16.84.3: RESYNC: (1.17-1.18); FILE MERGED 2004/05/17 18:11:10 mav 1.16.84.2: RESYNC: (1.16-1.17); FILE MERGED 2004/04/29 08:57:04 mav 1.16.84.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [f60cecdd7029a8df0049f59f35e6c2493989b413]

INTEGRATION: CWS mav09 (1.20.286); FILE MERGED 2004/09/16 22:50:52 mav 1.20.286.5: RESYNC: (1.21-1.22); FILE MERGED 2004/08/13 09:12:11 mav 1.20.286.4: #i27773# introduce version back 2004/07/15 10:41:07 mba 1.20.286.3: #i27773#: cleaning up todos 2004/07/09 02:21:36 mav 1.20.286.2: RESYNC: (1.20-1.21); FILE MERGED 2004/05/04 14:01:40 mba 1.20.286.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [8745e301c173cf087d425a6b6e2713d0ddfe2556]

INTEGRATION: CWS mav09 (1.7.126); FILE MERGED 2004/08/09 20:39:27 mav 1.7.126.2: RESYNC: (1.7-1.8); FILE MERGED 2004/05/04 14:01:40 mba 1.7.126.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [b0ffe24c7d288f7b7746cab68088c40bd1f9c8e7]

INTEGRATION: CWS mav09 (1.37.80); FILE MERGED 2004/09/16 22:50:43 mav 1.37.80.4: RESYNC: (1.40-1.42); FILE MERGED 2004/07/09 02:20:57 mav 1.37.80.3: RESYNC: (1.39-1.40); FILE MERGED 2004/05/17 18:08:04 mav 1.37.80.2: RESYNC: (1.37-1.39); FILE MERGED 2004/05/04 14:01:40 mba 1.37.80.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [0f777755a0725c7b9d02d168b431879e6e273d2c]

INTEGRATION: CWS mav09 (1.17.64); FILE MERGED 2004/09/28 14:39:29 mav 1.17.64.5: #i27773# get read of SvStorage 2004/09/21 17:50:19 mav 1.17.64.4: RESYNC: (1.22-1.23); FILE MERGED 2004/09/16 22:50:19 mav 1.17.64.3: RESYNC: (1.18-1.22); FILE MERGED 2004/04/29 18:54:49 mav 1.17.64.2: RESYNC: (1.17-1.18); FILE MERGED 2004/04/29 08:57:03 mav 1.17.64.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [7521ac4e829d478d205bd7977ee4704179fdbe21]

INTEGRATION: CWS mav09 (1.12.138); FILE MERGED 2004/05/04 14:01:40 mba 1.12.138.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [ac25f210151dcfe5831431a2c46404ec31621c7b]

INTEGRATION: CWS mav09 (1.37.72); FILE MERGED 2004/07/09 18:30:52 mav 1.37.72.4: RESYNC: (1.39-1.40); FILE MERGED 2004/07/09 02:21:29 mav 1.37.72.3: RESYNC: (1.38-1.39); FILE MERGED 2004/05/17 18:08:12 mav 1.37.72.2: RESYNC: (1.37-1.38); FILE MERGED 2004/05/04 14:01:39 mba 1.37.72.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [c332a20698a259c704bf483bbfc638ae12a12eb3]

INTEGRATION: CWS mav09 (1.52.56); FILE MERGED 2004/09/21 17:50:27 mav 1.52.56.4: RESYNC: (1.55-1.56); FILE MERGED 2004/09/16 22:50:35 mav 1.52.56.3: RESYNC: (1.53-1.55); FILE MERGED 2004/07/09 02:21:21 mav 1.52.56.2: RESYNC: (1.52-1.53); FILE MERGED 2004/05/04 14:01:39 mba 1.52.56.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [2eddad747e568a97d9d90b5b8abd62e991806ff5]

INTEGRATION: CWS mav09 (1.18.112); FILE MERGED 2004/09/16 22:50:27 mav 1.18.112.8: RESYNC: (1.20-1.22); FILE MERGED 2004/08/13 09:12:11 mav 1.18.112.7: #i27773# introduce version back 2004/08/09 20:39:04 mav 1.18.112.6: RESYNC: (1.19-1.20); FILE MERGED 2004/07/15 10:41:07 mba 1.18.112.5: #i27773#: cleaning up todos 2004/07/09 02:21:13 mav 1.18.112.4: RESYNC: (1.18-1.19); FILE MERGED 2004/06/01 08:10:21 mba 1.18.112.3: #i27773#: new embedding API 2004/05/20 19:51:21 mba 1.18.112.2: #i27773#: some API changes 2004/05/04 14:01:39 mba 1.18.112.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [0b50016791d67a79ed47966fcdfcbe1aee2d3500]

INTEGRATION: CWS mav09 (1.9.82); FILE MERGED 2004/07/16 15:51:00 mba 1.9.82.9: #i27773#: SetObjArea was superfluous 2004/07/15 10:41:07 mba 1.9.82.8: #i27773#: cleaning up todos 2004/07/09 02:21:05 mav 1.9.82.7: RESYNC: (1.9-1.10); FILE MERGED 2004/06/14 14:45:08 mba 1.9.82.6: #i27773#: new handling for resizing of active objects 2004/06/01 08:10:20 mba 1.9.82.5: #i27773#: new embedding API 2004/05/20 19:51:21 mba 1.9.82.4: #i27773#: some API changes 2004/05/16 17:26:39 mba 1.9.82.3: #i27773#: new EmbeddedObjectContainer 2004/05/10 08:09:48 mba 1.9.82.2: #i27773#: let client always connect to object 2004/05/04 14:01:38 mba 1.9.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [b2538e01f582e4aaa297bb53c75785d1f2bab230]

INTEGRATION: CWS mav09 (1.49.310); FILE MERGED 2004/09/28 14:11:57 mav 1.49.310.12: #i27773# resync 2004/09/16 22:49:43 mav 1.49.310.11: RESYNC: (1.50-1.51); FILE MERGED 2004/09/06 07:48:54 mav 1.49.310.10: #i27773# error handling for the wrong password case 2004/08/17 15:42:32 mav 1.49.310.9: #i27773# BaseURL and Hierarchical object name 2004/08/16 14:43:15 mav 1.49.310.8: #i27773# get version of storage 2004/08/11 13:45:17 mav 1.49.310.7: #100000# resync problem 2004/08/09 20:38:55 mav 1.49.310.6: RESYNC: (1.49-1.50); FILE MERGED 2004/07/06 15:50:30 mba 1.49.310.5: #i27773#: error handling 2004/05/27 09:27:22 mav 1.49.310.4: #i27773# allow document encryption 2004/05/20 20:12:06 mba 1.49.310.3: #i27773#: some API changes 2004/05/04 15:21:59 mba 1.49.310.2: #i27773#: some storage problems 2004/05/04 14:01:38 mba 1.49.310.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [54810c698448964d68a20899691c8cd5b6069047]

INTEGRATION: CWS mav09 (1.92.26); FILE MERGED 2004/09/16 22:48:56 mav 1.92.26.6: RESYNC: (1.98-1.102); FILE MERGED 2004/08/09 20:38:20 mav 1.92.26.5: RESYNC: (1.96-1.98); FILE MERGED 2004/07/09 18:30:44 mav 1.92.26.4: RESYNC: (1.95-1.96); FILE MERGED 2004/07/09 02:18:41 mav 1.92.26.3: RESYNC: (1.93-1.95); FILE MERGED 2004/05/17 18:07:46 mav 1.92.26.2: RESYNC: (1.92-1.93); FILE MERGED 2004/05/04 14:01:37 mba 1.92.26.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [349ba66f4e603e072974631e6bc47f604a555ba7]

INTEGRATION: CWS mav09 (1.174.12); FILE MERGED 2004/09/16 22:48:38 mav 1.174.12.6: RESYNC: (1.178-1.179); FILE MERGED 2004/08/09 20:38:11 mav 1.174.12.5: RESYNC: (1.177-1.178); FILE MERGED 2004/07/09 18:30:35 mav 1.174.12.4: RESYNC: (1.176-1.177); FILE MERGED 2004/07/09 02:18:11 mav 1.174.12.3: RESYNC: (1.175-1.176); FILE MERGED 2004/05/17 18:07:26 mav 1.174.12.2: RESYNC: (1.174-1.175); FILE MERGED 2004/05/04 14:01:37 mba 1.174.12.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [fd21063cc536d93de7ce4f84146d5310951dda21]

INTEGRATION: CWS mav09 (1.65.58); FILE MERGED 2004/09/28 14:39:28 mav 1.65.58.4: #i27773# get read of SvStorage 2004/09/16 22:45:26 mav 1.65.58.3: RESYNC: (1.68-1.71); FILE MERGED 2004/07/09 02:14:31 mav 1.65.58.2: RESYNC: (1.65-1.68); FILE MERGED 2004/05/04 14:01:36 mba 1.65.58.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [1267322a09ca5a5c4bd66640feb55dfcb60e39c2]

INTEGRATION: CWS mav09 (1.12.76); FILE MERGED 2004/09/21 17:50:11 mav 1.12.76.4: RESYNC: (1.15-1.16); FILE MERGED 2004/09/16 22:45:19 mav 1.12.76.3: RESYNC: (1.13-1.15); FILE MERGED 2004/07/09 02:14:22 mav 1.12.76.2: RESYNC: (1.12-1.13); FILE MERGED 2004/05/04 14:01:35 mba 1.12.76.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [9092713c1e2c04d75a68ec000603dc00f14cf58f]

INTEGRATION: CWS mav09 (1.20.76); FILE MERGED 2004/09/28 14:39:28 mav 1.20.76.4: #i27773# get read of SvStorage 2004/09/16 22:44:55 mav 1.20.76.3: RESYNC: (1.21-1.23); FILE MERGED 2004/07/09 02:14:04 mav 1.20.76.2: RESYNC: (1.20-1.21); FILE MERGED 2004/05/04 14:01:35 mba 1.20.76.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [7a8893cfab88feb71908e4e3b651a667ec1353e1]

INTEGRATION: CWS mav09 (1.14.76); FILE MERGED 2004/09/28 14:39:27 mav 1.14.76.4: #i27773# get read of SvStorage 2004/09/16 22:44:48 mav 1.14.76.3: RESYNC: (1.15-1.17); FILE MERGED 2004/07/09 02:13:47 mav 1.14.76.2: RESYNC: (1.14-1.15); FILE MERGED 2004/05/04 14:01:33 mba 1.14.76.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [d92ed3c759060861c49469b3796ce67d2b2a427b]

INTEGRATION: CWS mav09 (1.5.138); FILE MERGED 2004/07/09 02:13:29 mav 1.5.138.4: RESYNC: (1.5-1.6); FILE MERGED 2004/05/20 20:48:49 mba 1.5.138.3: #i27773#: some API changes 2004/05/16 17:26:38 mba 1.5.138.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:01:32 mba 1.5.138.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [c1b6387c37e4f5829dd95278f1fb98a38bc26ab4]

INTEGRATION: CWS mav09 (1.11.76); FILE MERGED 2004/09/28 15:24:05 mav 1.11.76.6: #i27773# get read of SvStorage 2004/09/28 14:39:27 mav 1.11.76.5: #i27773# get read of SvStorage 2004/09/28 13:52:17 mav 1.11.76.4: #i27773# resync 2004/09/16 22:43:29 mav 1.11.76.3: RESYNC: (1.12-1.15); FILE MERGED 2004/07/09 02:10:03 mav 1.11.76.2: RESYNC: (1.11-1.12); FILE MERGED 2004/05/04 14:01:31 mba 1.11.76.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [3d1a1e0ea28d73bc0f5f4aa2408baa41593072c9]

INTEGRATION: CWS mav09 (1.9.2); FILE MERGED 2004/09/28 14:39:27 mav 1.9.2.1: #i27773# get read of SvStorage


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [3d12c55c292e70d0774ff11cd606a6ed65074f02]

INTEGRATION: CWS mav09 (1.35.58); FILE MERGED 2004/09/16 22:38:04 mav 1.35.58.3: RESYNC: (1.37-1.39); FILE MERGED 2004/07/09 01:57:49 mav 1.35.58.2: RESYNC: (1.35-1.37); FILE MERGED 2004/05/04 14:01:30 mba 1.35.58.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [888a49e86e2f88f7b115e3fa792aa0b4c4c062e3]

INTEGRATION: CWS mav09 (1.31.76); FILE MERGED 2004/09/16 22:35:10 mav 1.31.76.4: RESYNC: (1.34-1.36); FILE MERGED 2004/07/15 09:12:10 mav 1.31.76.3: #i27773# solve resync problems 2004/07/09 01:54:56 mav 1.31.76.2: RESYNC: (1.31-1.34); FILE MERGED 2004/05/04 14:01:29 mba 1.31.76.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [439d4f7c93f4f70b5bc4743e4bcb258c9452ccf5]

INTEGRATION: CWS mav09 (1.8.30); FILE MERGED 2004/09/28 13:52:17 mav 1.8.30.4: #i27773# resync 2004/09/16 22:37:37 mav 1.8.30.3: RESYNC: (1.10-1.13); FILE MERGED 2004/07/09 01:52:25 mav 1.8.30.2: RESYNC: (1.8-1.10); FILE MERGED 2004/05/04 14:01:28 mba 1.8.30.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [fc1f4ecb37011e184d898aa039794324574c6db3]

INTEGRATION: CWS mav09 (1.6.300); FILE MERGED 2004/09/16 22:37:08 mav 1.6.300.3: RESYNC: (1.7-1.8); FILE MERGED 2004/07/09 01:51:25 mav 1.6.300.2: RESYNC: (1.6-1.7); FILE MERGED 2004/05/04 14:01:28 mba 1.6.300.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [842956026d14842ef7210b2176e5f0e27a329b07]

INTEGRATION: CWS mav09 (1.55.42); FILE MERGED 2004/09/28 14:39:26 mav 1.55.42.1: #i27773# get read of SvStorage


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [b4418dcea4e88d758ae8d82f842463065e097644]

INTEGRATION: CWS mav09 (1.12.42); FILE MERGED 2004/09/28 14:39:26 mav 1.12.42.1: #i27773# get read of SvStorage


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [776ffa92ca2f90a0bc63aedc957458ade2f1972c]

INTEGRATION: CWS mav09 (1.15.42); FILE MERGED 2004/09/28 14:39:25 mav 1.15.42.1: #i27773# get read of SvStorage


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [1f76aa5ea893772fa11089dc37eb8cf266359898]

INTEGRATION: CWS mav09 (1.18.82); FILE MERGED 2004/07/09 01:46:35 mav 1.18.82.2: RESYNC: (1.18-1.20); FILE MERGED 2004/05/04 14:01:27 mba 1.18.82.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [80b4f1adede479da170b9d3516a4ea09e5402a9d]

INTEGRATION: CWS mav09 (1.7.112); FILE MERGED 2004/07/09 01:46:04 mav 1.7.112.3: RESYNC: (1.7-1.8); FILE MERGED 2004/05/25 15:13:10 mav 1.7.112.2: #i27773# fix resync issues 2004/05/04 14:01:26 mba 1.7.112.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [fd49ff50f5d860090f850eedfc5263deaa14dec1]

INTEGRATION: CWS mav09 (1.7.78); FILE MERGED 2004/09/28 15:24:04 mav 1.7.78.4: #i27773# get read of SvStorage 2004/09/28 14:39:24 mav 1.7.78.3: #i27773# get read of SvStorage 2004/09/16 22:34:43 mav 1.7.78.2: RESYNC: (1.7-1.9); FILE MERGED 2004/05/04 14:01:26 mba 1.7.78.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [1a171a2bdf0f73e2dfd0f63a36e8851264756ed9]

INTEGRATION: CWS mav09 (1.11.78); FILE MERGED 2004/09/28 16:49:19 mav 1.11.78.6: #i27773# create only valid OLE storages 2004/09/28 15:24:03 mav 1.11.78.5: #i27773# get read of SvStorage 2004/09/28 14:39:24 mav 1.11.78.4: #i27773# get read of SvStorage 2004/09/16 22:33:37 mav 1.11.78.3: RESYNC: (1.12-1.15); FILE MERGED 2004/07/09 01:44:44 mav 1.11.78.2: RESYNC: (1.11-1.12); FILE MERGED 2004/05/04 14:01:25 mba 1.11.78.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [71b0994b1bd37f91388003e11715016bebb0010b]

INTEGRATION: CWS mav09 (1.2.56); FILE MERGED 2004/09/28 14:39:23 mav 1.2.56.4: #i27773# get read of SvStorage 2004/09/16 22:32:10 mav 1.2.56.3: RESYNC: (1.3-1.6); FILE MERGED 2004/08/09 20:34:55 mav 1.2.56.2: RESYNC: (1.2-1.3); FILE MERGED 2004/07/15 09:12:09 mav 1.2.56.1: #i27773# solve resync problems


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [7d77459f27cba71831ce5d804601cd4be6de9b17]

INTEGRATION: CWS mav09 (1.14.30); FILE MERGED 2004/09/28 14:39:23 mav 1.14.30.12: #i27773# get read of SvStorage 2004/09/16 22:31:31 mav 1.14.30.11: RESYNC: (1.17-1.22); FILE MERGED 2004/08/30 17:09:58 mav 1.14.30.10: #i27773# chart update 2004/07/09 01:42:11 mav 1.14.30.9: RESYNC: (1.14-1.17); FILE MERGED 2004/07/06 15:50:29 mba 1.14.30.8: #i27773#: error handling 2004/06/25 11:56:09 mav 1.14.30.7: #i27773# storeOwn does not need saveCompleted 2004/06/10 16:48:27 mba 1.14.30.6: #i27773#: some fixed to make InPlace Editing work 2004/06/02 11:50:23 mba 1.14.30.5: #i27773#: forgot parameter 2004/06/01 08:10:18 mba 1.14.30.4: #i27773#: new embedding API 2004/05/20 20:39:48 mba 1.14.30.3: #i27773#: some API changes 2004/05/16 17:26:38 mba 1.14.30.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:01:24 mba 1.14.30.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [7a2dc8c2c6aa09fd39e2e4e286dacb4a93d52413]

INTEGRATION: CWS mav09 (1.2.56); FILE MERGED 2004/09/28 14:39:23 mav 1.2.56.4: #i27773# get read of SvStorage 2004/09/16 22:30:10 mav 1.2.56.3: RESYNC: (1.3-1.6); FILE MERGED 2004/08/09 20:34:48 mav 1.2.56.2: RESYNC: (1.2-1.3); FILE MERGED 2004/07/15 09:12:09 mav 1.2.56.1: #i27773# solve resync problems


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [c8feed6436439fb05b431ea4cf9fe4206ce7adec]

INTEGRATION: CWS mav09 (1.60.74); FILE MERGED 2004/09/16 22:28:38 mav 1.60.74.3: RESYNC: (1.61-1.65); FILE MERGED 2004/07/09 01:38:53 mav 1.60.74.2: RESYNC: (1.60-1.61); FILE MERGED 2004/05/04 14:01:24 mba 1.60.74.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [c9e2edd9bf6a49d9df9a98f98a8b8e0d1d73135c]

INTEGRATION: CWS mav09 (1.31.78); FILE MERGED 2004/09/16 22:27:50 mav 1.31.78.8: RESYNC: (1.32-1.34); FILE MERGED 2004/08/30 17:09:58 mav 1.31.78.7: #i27773# chart update 2004/07/09 01:37:18 mav 1.31.78.6: RESYNC: (1.31-1.32); FILE MERGED 2004/06/10 16:48:27 mba 1.31.78.5: #i27773#: some fixed to make InPlace Editing work 2004/06/01 08:10:17 mba 1.31.78.4: #i27773#: new embedding API 2004/05/20 20:39:48 mba 1.31.78.3: #i27773#: some API changes 2004/05/16 17:26:38 mba 1.31.78.2: #i27773#: new EmbeddedObjectContainer 2004/05/04 14:01:23 mba 1.31.78.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [8a2e7efd6e44cd9fd7339e174af172382ac9263c]

INTEGRATION: CWS mav09 (1.12.158); FILE MERGED 2004/09/28 14:39:22 mav 1.12.158.5: #i27773# get read of SvStorage 2004/09/16 22:25:37 mav 1.12.158.4: RESYNC: (1.13-1.15); FILE MERGED 2004/07/09 01:34:10 mav 1.12.158.3: RESYNC: (1.12-1.13); FILE MERGED 2004/06/01 08:10:17 mba 1.12.158.2: #i27773#: new embedding API 2004/05/04 14:01:23 mba 1.12.158.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [32acd69545f69e9c16af670e73c035388bfb5aaa]

INTEGRATION: CWS mav09 (1.50.78); FILE MERGED 2004/09/16 22:27:11 mav 1.50.78.3: RESYNC: (1.53-1.54); FILE MERGED 2004/07/09 01:36:17 mav 1.50.78.2: RESYNC: (1.50-1.53); FILE MERGED 2004/05/04 14:01:23 mba 1.50.78.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [75e4fd9f893770262f843af084b32cc388477fef]

INTEGRATION: CWS mav09 (1.70.2); FILE MERGED 2004/09/28 14:39:22 mav 1.70.2.1: #i27773# get read of SvStorage


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [8fd746e83024b848d0f71fdfd83e8d9200fa431b]

INTEGRATION: CWS mav09 (1.16.74); FILE MERGED 2004/09/16 22:25:12 mav 1.16.74.3: RESYNC: (1.19-1.20); FILE MERGED 2004/07/09 01:28:57 mav 1.16.74.2: RESYNC: (1.16-1.19); FILE MERGED 2004/05/04 14:01:22 mba 1.16.74.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [205a9da4089c3a3de83cd76c9ca17080ae6244f5]

INTEGRATION: CWS mav09 (1.9.74); FILE MERGED 2004/07/09 01:27:38 mav 1.9.74.2: RESYNC: (1.9-1.10); FILE MERGED 2004/05/04 14:01:21 mba 1.9.74.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [d3cd4c54ffa703b72a5df6326b3dffe7e550b6d7]

INTEGRATION: CWS mav09 (1.5.228); FILE MERGED 2004/07/15 09:12:08 mav 1.5.228.4: #i27773# solve resync problems 2004/07/09 01:22:39 mav 1.5.228.3: RESYNC: (1.6-1.7); FILE MERGED 2004/04/29 18:34:11 mav 1.5.228.2: RESYNC: (1.5-1.6); FILE MERGED 2004/04/29 08:57:02 mav 1.5.228.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [8a02273687eb9b7ef81f77bcdfe3c41813b88707]

INTEGRATION: CWS mav09 (1.9.82); FILE MERGED 2004/09/16 22:22:21 mav 1.9.82.3: RESYNC: (1.10-1.15); FILE MERGED 2004/07/09 01:16:36 mav 1.9.82.2: RESYNC: (1.9-1.10); FILE MERGED 2004/04/29 08:57:01 mav 1.9.82.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [eabf8f1d6b63805a954d94ccda6d50a15a7b8ca6]

INTEGRATION: CWS mav09 (1.26.82); FILE MERGED 2004/09/16 22:21:40 mav 1.26.82.8: RESYNC: (1.28-1.30); FILE MERGED 2004/09/01 14:47:31 mba 1.26.82.7: #i27773#: COM-Objects on Linux must work in Loaded state 2004/07/15 10:59:31 mav 1.26.82.6: #i27773# commit changes made offline 2004/07/09 01:15:32 mav 1.26.82.5: RESYNC: (1.27-1.28); FILE MERGED 2004/06/01 08:10:15 mba 1.26.82.4: #i27773#: new embedding API 2004/05/20 20:45:41 mba 1.26.82.3: #i27773#: some API changes 2004/05/17 18:06:45 mav 1.26.82.2: RESYNC: (1.26-1.27); FILE MERGED 2004/04/29 08:57:01 mav 1.26.82.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [54bf6e9159cc0a370ca6bff75a92b48ad49dc883]

INTEGRATION: CWS mav09 (1.21.112); FILE MERGED 2004/09/16 22:20:09 mav 1.21.112.5: RESYNC: (1.23-1.25); FILE MERGED 2004/08/30 17:09:56 mav 1.21.112.4: #i27773# chart update 2004/07/09 01:04:11 mav 1.21.112.3: RESYNC: (1.22-1.23); FILE MERGED 2004/05/17 18:06:37 mav 1.21.112.2: RESYNC: (1.21-1.22); FILE MERGED 2004/04/29 08:57:00 mav 1.21.112.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [927f142beac230fe066c253a2726a1bccefaa6de]

INTEGRATION: CWS mav09 (1.33.4); FILE MERGED 2004/07/09 01:03:58 mav 1.33.4.3: RESYNC: (1.34-1.35); FILE MERGED 2004/04/29 18:31:24 mav 1.33.4.2: RESYNC: (1.33-1.34); FILE MERGED 2004/04/29 08:57:00 mav 1.33.4.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [6ccdc1417cd9c08b1df4945d4cfafefdfb170a84]

INTEGRATION: CWS mav09 (1.19.112); FILE MERGED 2004/08/30 17:09:56 mav 1.19.112.4: #i27773# chart update 2004/07/15 10:59:31 mav 1.19.112.3: #i27773# commit changes made offline 2004/07/09 01:03:07 mav 1.19.112.2: RESYNC: (1.19-1.20); FILE MERGED 2004/04/29 08:56:59 mav 1.19.112.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [459277865b9216282eaaeae428dbb1d3e750f005]

INTEGRATION: CWS mav09 (1.11.432); FILE MERGED 2004/07/08 23:02:27 mav 1.11.432.3: RESYNC: (1.11-1.12); FILE MERGED 2004/07/06 16:22:21 mba 1.11.432.2: #i27773#: error handling 2004/05/04 14:00:37 mba 1.11.432.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [d8aef8f283a4ea1da0f3e31cbd5f93791da25199]

INTEGRATION: CWS mav09 (1.9.194); FILE MERGED 2004/09/16 22:12:18 mav 1.9.194.4: RESYNC: (1.10-1.11); FILE MERGED 2004/05/04 14:00:37 mba 1.9.194.3: #i27773#: remove so3 2004/04/29 18:26:03 mav 1.9.194.2: RESYNC: (1.9-1.10); FILE MERGED 2004/04/29 08:56:59 mav 1.9.194.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [59830ffe5ceecb2627ef8ad4ef652697cb8bd52e]

INTEGRATION: CWS mav09 (1.13.136); FILE MERGED 2004/09/16 22:11:29 mav 1.13.136.3: RESYNC: (1.14-1.16); FILE MERGED 2004/05/17 18:05:19 mav 1.13.136.2: RESYNC: (1.13-1.14); FILE MERGED 2004/04/29 08:56:59 mav 1.13.136.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [1b66f263eb721b9ab708646ff5265c3c052cea78]

INTEGRATION: CWS mav09 (1.10.82); FILE MERGED 2004/09/28 14:39:21 mav 1.10.82.3: #i27773# get read of SvStorage 2004/07/08 22:56:01 mav 1.10.82.2: RESYNC: (1.10-1.11); FILE MERGED 2004/04/29 08:56:58 mav 1.10.82.1: #i27773# one more step further


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [e184696610c2d78081414f1d623c2d5d004ee2b4]

INTEGRATION: CWS mav09 (1.16.70); FILE MERGED 2004/09/16 22:07:24 mav 1.16.70.4: RESYNC: (1.17-1.18); FILE MERGED 2004/07/15 10:40:45 mba 1.16.70.3: #i27773#: cleaning up todos 2004/07/08 22:54:46 mav 1.16.70.2: RESYNC: (1.16-1.17); FILE MERGED 2004/05/04 14:00:37 mba 1.16.70.1: #i27773#: remove so3


2004-10-04  Kurt Zenker  <kz@openoffice.org>  [e3a0f71697aa4f66813be85ea4bce57393948c7d]

INTEGRATION: CWS mav09 (1.5.442); FILE MERGED 2004/07/08 22:50:53 mav 1.5.442.2: RESYNC: (1.5-1.6); FILE MERGED 2004/04/29 08:56:58 mav 1.5.442.1: #i27773# one more step further


2004-09-24  Rüdiger Timm  <rt@openoffice.org>  [c33c2fd05b9347b4530a392cdd7fe80eb5cf6b3f]

#i10000# Merge problems intruduced by os34 and os19 interaction.


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [b53dc6b3fb73b39e78795fcec187dd23d7927acd]

INTEGRATION: CWS calc21 (1.13.4); FILE MERGED 2004/08/24 11:48:59 dr 1.13.4.1: #i33341# same char index may occur several times in rich strings


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [796828e90b5c9fd95981ede9d93c43524641ec46]

INTEGRATION: CWS calc21 (1.23.122); FILE MERGED 2004/09/02 08:45:08 nn 1.23.122.3: #i12313# double click on AutoFill handle: fill according to adjacent column (from Kohei Yoshida) 2004/08/25 10:15:07 dr 1.23.122.2: #i31828# toolbar line attrs: modify diagonal lines too 2004/08/25 09:15:04 dr 1.23.122.1: #i31828# toolbar line attrs: modify diagonal lines too


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [9223961a4249a041f3f4dbe5046fb2f5d4649d43]

INTEGRATION: CWS calc21 (1.40.24); FILE MERGED 2004/09/08 14:38:35 nn 1.40.24.5: RESYNC: (1.40-1.41); FILE MERGED 2004/09/08 13:54:01 nn 1.40.24.4: #i31782# shrink to fit with rotated text 2004/09/03 14:09:16 nn 1.40.24.3: #i31843# repeat alignment with line breaks is treated as default alignment 2004/08/25 17:31:33 nn 1.40.24.2: #117584# DrawStrings: don't look for rest of a long text if overlapped 2004/08/25 15:03:32 nn 1.40.24.1: #i32364# set bShrink also in SetPatternSimple


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [0bab5dce5fc48e36dd34cc39f8a60d024292d9e3]

INTEGRATION: CWS calc21 (1.60.22); FILE MERGED 2004/09/08 14:38:15 nn 1.60.22.2: RESYNC: (1.60-1.61); FILE MERGED 2004/09/02 08:45:07 nn 1.60.22.1: #i12313# double click on AutoFill handle: fill according to adjacent column (from Kohei Yoshida)


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [cc88ac09f3c1443ae83da305f5f05ca9ef70b872]

INTEGRATION: CWS calc21 (1.24.24); FILE MERGED 2004/08/31 11:43:47 dr 1.24.24.1: #103832# apply page styles to several sheets


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [1f490073cedbc0be1c99514abb919226ad2fcd15]

INTEGRATION: CWS calc21 (1.3.122); FILE MERGED 2004/08/31 11:46:42 dr 1.3.122.1: #103832# apply page styles to several sheets


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [aea104474498c362aba48bb06f9a695e3c8ef72d]

INTEGRATION: CWS calc21 (1.20.118); FILE MERGED 2004/09/02 08:44:47 nn 1.20.118.1: #i12313# double click on AutoFill handle: fill according to adjacent column (from Kohei Yoshida)


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [5e5883d59454da4a967fcd57ca0c07fb430eb7d0]

INTEGRATION: CWS calc21 (1.2.122); FILE MERGED 2004/08/31 11:46:31 dr 1.2.122.1: #103832# apply page styles to several sheets


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [aae362a3d31d8c367087739afcca02ed62d6abc4]

INTEGRATION: CWS calc21 (1.12.24); FILE MERGED 2004/09/08 13:53:34 nn 1.12.24.1: #i31782# shrink to fit with rotated text


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [668b1630a7ee35cc922b1dcf637f15eb15ec21cb]

INTEGRATION: CWS calc21 (1.6.52); FILE MERGED 2004/08/25 13:14:20 dr 1.6.52.1: #i32352# do not enter text mode for media objects


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [e9669bd84561e5a4fb8ca6f058d0e876caf3e538]

INTEGRATION: CWS calc21 (1.55.24); FILE MERGED 2004/09/03 14:09:35 nn 1.55.24.1: #i31843# repeat alignment with line breaks is treated as default alignment


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [b45a0a45105e1df77a6216bd69f2d76b1a922365]

INTEGRATION: CWS calc21 (1.13.118); FILE MERGED 2004/08/30 11:12:12 dr 1.13.118.1: #i12190# do not skip callout objects


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [ccabe34a7669ffa79eca930fcaf39fb3dc5557ee]

INTEGRATION: CWS calc21 (1.18.4); FILE MERGED 2004/08/27 09:19:25 dr 1.18.4.1: #i23425# handle broken BOF records


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [c3fc08f9c416a0bf145bfc1509a0202b5a18e806]

INTEGRATION: CWS calc21 (1.7.4); FILE MERGED 2004/08/27 10:29:15 dr 1.7.4.2: #i23425# handle broken BOF records 2004/08/27 09:20:23 dr 1.7.4.1: #i23425# handle broken BOF records


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [c139dbf247d1e1c82597e0aab36f122e834ebf57]

INTEGRATION: CWS calc21 (1.46.6); FILE MERGED 2004/08/27 09:20:22 dr 1.46.6.1: #i23425# handle broken BOF records


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [f9313273d8371e9ec0c03e743beda10d91ed5466]

INTEGRATION: CWS calc21 (1.16.22); FILE MERGED 2004/08/26 13:02:27 dr 1.16.22.1: #100772# asian phonetic info


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [978fa53cdd2a1bae86ebfa3096e423f9d72a2eb1]

INTEGRATION: CWS calc21 (1.68.4); FILE MERGED 2004/08/26 13:02:26 dr 1.68.4.1: #100772# asian phonetic info


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [10c8d379b804bd209b597a1f9aac3ec4399d650e]

INTEGRATION: CWS calc21 (1.24.22); FILE MERGED 2004/09/03 09:50:34 nn 1.24.22.1: #110217# GetFromEditItemSet: handle language items


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [8f2477fb808070b8fab675c6ba46344ca13880fc]

INTEGRATION: CWS calc21 (1.9.38); FILE MERGED 2004/08/25 13:30:29 nn 1.9.38.1: #i32337# also handle number formats if data layout dimension is hidden


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [eb7828de0bd25e3e418b2ab2f08fe26f0aaf4d20]

INTEGRATION: CWS calc21 (1.17.24); FILE MERGED 2004/08/25 09:14:37 dr 1.17.24.1: #i31828# toolbar line attrs: modify diagonal lines too


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [fa4339560b7e7e90a7f72272554c4b459d085c1a]

INTEGRATION: CWS calc21 (1.5.40); FILE MERGED 2004/08/25 13:30:00 nn 1.5.40.1: #i32337# also handle number formats if data layout dimension is hidden


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [a1889ca3f5714d2b283d4d324ead5d98d842eaea]

INTEGRATION: CWS os19 (1.2.2); FILE MERGED 2004/07/26 16:15:38 dr 1.2.2.4: #i31985# use correct dialog parent 2004/07/12 12:24:41 dr 1.2.2.3: #i22092# more spelling... 2004/06/11 10:40:01 os 1.2.2.2: RESYNC: (1.2-1.3); FILE MERGED 2004/06/10 13:17:06 dr 1.2.2.1: #i22092# new spellcheck dialog, first step


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [72ff4d58b087c37bfac0949fe2950c76900a0ebf]

INTEGRATION: CWS keyconfig01 (1.17.34); FILE MERGED 2004/07/23 11:04:13 as 1.17.34.1: #i29863# new acc cfg


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [d034ded898d5be7429b0d83912869be3a54020e3]

INTEGRATION: CWS keyconfig01 (1.6.190); FILE MERGED 2004/08/20 09:25:34 mba 1.6.190.1: #i32160#: additional parameter for applying styles using the internal name


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [dbda83fbe86863645ea49916dc7d322dcbbed4a4]

INTEGRATION: CWS keyconfig01 (1.1.2); FILE ADDED 2004/09/09 08:10:47 as 1.1.2.2: #i29441# some more pre defined shortcuts 2004/07/23 11:03:52 as 1.1.2.1: #i29863# new acc cfg


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [18bd862de71410589dbf9ed74958e5dad7b1c090]

INTEGRATION: CWS keyconfig01 (1.21.70); FILE MERGED 2004/08/20 09:25:34 mba 1.21.70.2: #i32160#: additional parameter for applying styles using the internal name 2004/07/23 10:35:32 as 1.21.70.1: #i29441# support new optional argument SID_STYLE_FAMILYNAME for slot SID_STYLE_APPLY


2004-09-20  Rüdiger Timm  <rt@openoffice.org>  [60543dbd0816e409cb619aaf48d2e464cbc65e86]

#i10000# Correct wrong resolved merge conflict


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [7ed354b3b1c7b7990414672294ac5da0d168bf00]

INTEGRATION: CWS dr25 (1.2.606); FILE MERGED 2004/09/14 10:49:27 dr 1.2.606.1: #i21549# load/store byte strings as UTF-8


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [fd04caee6a45f60841a5536f7267f4e9d55b686e]

INTEGRATION: CWS dr25 (1.16.52); FILE MERGED 2004/09/14 10:49:27 dr 1.16.52.1: #i21549# load/store byte strings as UTF-8


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [1569d48b4ed90d41c3f03fbff5f32189c5720651]

INTEGRATION: CWS dr25 (1.2.596); FILE MERGED 2004/09/14 10:49:06 dr 1.2.596.1: #i21549# load/store byte strings as UTF-8


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [fb984cfcdfda6dcf4075bfb0831a0fec6f3ce459]

INTEGRATION: CWS os19 (1.24.2); FILE MERGED 2004/07/12 12:25:55 dr 1.24.2.4: #i22092# more spelling... 2004/06/16 05:21:26 os 1.24.2.3: #i22092# merge conflict resolved 2004/06/11 11:08:26 os 1.24.2.2: RESYNC: (1.24-1.25); FILE MERGED 2004/06/10 13:20:14 dr 1.24.2.1: #i22092# new spellcheck dialog, first step


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [958332c5034fcee5fd2b1ef5e72bed8f2531fa41]

INTEGRATION: CWS os19 (1.2.2); FILE MERGED 2004/07/26 16:15:38 dr 1.2.2.4: #i31985# use correct dialog parent 2004/07/12 12:24:41 dr 1.2.2.3: #i22092# more spelling... 2004/06/11 10:40:01 os 1.2.2.2: RESYNC: (1.2-1.3); FILE MERGED 2004/06/10 13:17:06 dr 1.2.2.1: #i22092# new spellcheck dialog, first step


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [884a8d51daa830bdeb935d363a43dfa5bc4d8131]

INTEGRATION: CWS os34 (1.6.14); FILE MERGED 2004/08/10 14:46:56 tl 1.6.14.5: #i30302# Chinese simplified/traditional conversion 2004/08/06 15:07:30 tl 1.6.14.4: RESYNC: (1.6-1.7); FILE MERGED 2004/08/04 13:47:12 tl 1.6.14.3: #i30302# simplified/traditional Chinese conversion 2004/07/29 09:00:30 tl 1.6.14.2: #i30303# implementation of simplified/traditional Chinese conversion 2004/07/27 13:53:35 tl 1.6.14.1: #i30303# preparational changes for simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [3c32e6278ec215b9e7a2aa2d52f3309183126aaf]

INTEGRATION: CWS os19 (1.2.14); FILE MERGED 2004/07/15 10:59:08 os 1.2.14.1: #i18881# spelling toolbox entry corrected


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [77525e2f8917b4263e4fb36adf5c76a51c9302c1]

INTEGRATION: CWS os19 (1.2.14); FILE MERGED 2004/09/12 16:49:43 os 1.2.14.2: RESYNC: (1.2-1.3); FILE MERGED 2004/07/15 10:59:08 os 1.2.14.1: #i18881# spelling toolbox entry corrected


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [98468ed3061eff5accf2ad3135f72cc54c378072]

INTEGRATION: CWS os19 (1.6.104); FILE MERGED 2004/09/12 16:46:56 os 1.6.104.2: RESYNC: (1.6-1.7); FILE MERGED 2004/06/10 13:20:12 dr 1.6.104.1: #i22092# new spellcheck dialog, first step


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [87b464a2016006772733b551ca9cd336325899f9]

INTEGRATION: CWS os19 (1.37.10); FILE MERGED 2004/09/12 16:46:40 os 1.37.10.2: RESYNC: (1.37-1.40); FILE MERGED 2004/06/23 09:44:06 dr 1.37.10.1: #i26433# crash while spelling


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [4c464a6c0dec67324dc1f8033ca6547e4b84c155]

INTEGRATION: CWS os34 (1.3.2); FILE MERGED 2004/09/16 19:47:05 tl 1.3.2.3: RESYNC: (1.7-1.14); FILE MERGED 2004/08/06 15:15:47 tl 1.3.2.2: RESYNC: (1.3-1.7); FILE MERGED 2004/08/04 13:47:37 tl 1.3.2.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [7571ea7088050ed9f078e70e28624852f68d7f0c]

INTEGRATION: CWS os34 (1.24.14); FILE MERGED 2004/08/06 15:11:51 tl 1.24.14.2: RESYNC: (1.24-1.25); FILE MERGED 2004/08/04 13:47:12 tl 1.24.14.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [8904548a1b21c590f4425460e5068f55da18fc3f]

INTEGRATION: CWS os34 (1.6.196); FILE MERGED 2004/08/16 09:07:27 tl 1.6.196.3: #i30302# simplified/traditional Chinese conversion 2004/08/14 11:25:08 tl 1.6.196.2: #i30301# simplified/traditional Chinese conversion 2004/08/14 11:21:42 tl 1.6.196.1: #i30301# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [e86b7dff383b63fccad5220850d71c7399a64d94]

INTEGRATION: CWS os19 (1.6.2); FILE MERGED 2004/07/27 12:31:43 dr 1.6.2.7: #i32140# close spelling dialog after query box 2004/07/26 16:57:48 dr 1.6.2.6: #i31985# needs temp var 2004/07/26 16:16:06 dr 1.6.2.5: #i31985# use correct dialog parent 2004/07/12 12:25:54 dr 1.6.2.4: #i22092# more spelling... 2004/07/07 19:18:51 dr 1.6.2.3: #i22092# start at top cell in selections 2004/06/11 11:03:59 os 1.6.2.2: RESYNC: (1.6-1.7); FILE MERGED 2004/06/10 13:20:11 dr 1.6.2.1: #i22092# new spellcheck dialog, first step


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [8994e314f3188ae8f606ff16bd738aa7f559c1a3]

INTEGRATION: CWS os19 (1.1.2); FILE ADDED 2004/08/24 15:30:05 dr 1.1.2.6: #i32221# typo 2004/08/24 14:56:49 dr 1.1.2.5: #i32221# crash while spell checking; added undo actions 2004/07/12 12:25:54 dr 1.1.2.4: #i22092# more spelling... 2004/07/07 19:20:19 dr 1.1.2.3: #i22092# new spelling dialog - detect selection change in sheet 2004/06/10 17:40:53 dr 1.1.2.2: #i22092# new spellcheck dialog 2004/06/10 13:20:05 dr 1.1.2.1: #i22092# new spellcheck dialog, first step


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [51d7b7a0e20035fd3066c0aaacec9d9f670ef903]

INTEGRATION: CWS os19 (1.1.2); FILE ADDED 2004/07/12 12:25:53 dr 1.1.2.1: #i22092# more spelling...


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [d45ac6c3029e1114b4bdc13b18d915e1d8ca9a10]

INTEGRATION: CWS os34 (1.28.4); FILE MERGED 2004/09/16 19:41:19 tl 1.28.4.4: RESYNC: (1.30-1.31); FILE MERGED 2004/08/13 14:24:18 tl 1.28.4.3: #i30301# simplified/traditional Chinese conversion 2004/08/06 15:01:35 tl 1.28.4.2: RESYNC: (1.28-1.30); FILE MERGED 2004/08/04 13:47:11 tl 1.28.4.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [144ccc86e99ed6c63baf7c6535b72a8fb3717fe6]

INTEGRATION: CWS os19 (1.6.122); FILE MERGED 2004/07/12 12:25:53 dr 1.6.122.2: #i22092# more spelling... 2004/06/10 13:20:09 dr 1.6.122.1: #i22092# new spellcheck dialog, first step


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [e5561d37b1f1b1283f4882fea31ab404ea106992]

INTEGRATION: CWS os19 (1.56.20); FILE MERGED 2004/09/12 16:44:50 os 1.56.20.2: RESYNC: (1.56-1.61); FILE MERGED 2004/07/26 16:17:18 dr 1.56.20.1: #i32097# spelling dialog from context menu


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [1da5532b5d71e5b0b6de4267d21186337217aee5]

INTEGRATION: CWS os19 (1.19.2); FILE MERGED 2004/09/12 16:44:43 os 1.19.2.3: RESYNC: (1.21-1.24); FILE MERGED 2004/06/11 10:59:58 os 1.19.2.2: RESYNC: (1.19-1.21); FILE MERGED 2004/05/03 13:46:50 os 1.19.2.1: #i18881# merge error corrected


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [b9ab8539dc9be8b9ddd5bf08a504ce3a52c61380]

INTEGRATION: CWS os19 (1.27.2); FILE MERGED 2004/09/12 16:43:15 os 1.27.2.4: RESYNC: (1.29-1.31); FILE MERGED 2004/06/11 10:57:38 os 1.27.2.3: RESYNC: (1.27-1.29); FILE MERGED 2004/06/10 13:20:07 dr 1.27.2.2: #i22092# new spellcheck dialog, first step 2004/05/03 09:33:20 os 1.27.2.1: #i18881# SID_SPELLING -> SID_SPELL_DIALOG


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [b173a96f3eb8abffbfc08ab52cc5211779fe3be6]

INTEGRATION: CWS os34 (1.9.2); FILE MERGED 2004/08/06 14:56:23 tl 1.9.2.2: RESYNC: (1.9-1.10); FILE MERGED 2004/08/04 13:46:52 tl 1.9.2.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [53036f6aa28a5f77a95640eef40ec045f617e6d0]

INTEGRATION: CWS os19 (1.62.32); FILE MERGED 2004/09/12 16:40:10 os 1.62.32.4: RESYNC: (1.66-1.70); FILE MERGED 2004/07/12 15:45:06 os 1.62.32.3: RESYNC: (1.63-1.66); FILE MERGED 2004/06/11 10:50:35 os 1.62.32.2: RESYNC: (1.62-1.63); FILE MERGED 2004/05/03 12:51:06 os 1.62.32.1: #i18881# merge error corrected


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [729a6979ed01f7664edb5d5315cb2c1937baae4d]

INTEGRATION: CWS os34 (1.52.2); FILE MERGED 2004/09/16 19:35:58 tl 1.52.2.5: RESYNC: (1.58-1.59); FILE MERGED 2004/09/16 13:47:18 tl 1.52.2.4: #i30303# merged to m53 2004/08/11 11:21:36 tl 1.52.2.3: #i30302# -------------+ creating a module file 2004/08/06 14:49:40 tl 1.52.2.2: RESYNC: (1.52-1.58); FILE MERGED 2004/08/04 13:46:37 tl 1.52.2.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [6089838d1518ef8aebeadbde85f67c1127e1d631]

INTEGRATION: CWS os34 (1.5.2); FILE MERGED 2004/08/06 14:42:46 tl 1.5.2.2: RESYNC: (1.5-1.6); FILE MERGED 2004/08/04 13:46:22 tl 1.5.2.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [954e92ccc7fc46a7a5f789f9a85c92a57af9b86a]

INTEGRATION: CWS os19 (1.1.2); FILE ADDED 2004/08/24 14:56:26 dr 1.1.2.5: #i32221# crash while spell checking; added undo actions 2004/07/12 12:24:41 dr 1.1.2.4: #i22092# more spelling... 2004/07/07 19:20:42 dr 1.1.2.3: #i22092# new spelling dialog - detect selection change in sheet 2004/06/10 17:40:47 dr 1.1.2.2: #i22092# new spellcheck dialog 2004/06/10 13:17:05 dr 1.1.2.1: #i22092# new spellcheck dialog, first step


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [b441e8eb0f47af4e2c0fc4e503759ec7d6a8e614]

INTEGRATION: CWS os34 (1.19.2); FILE MERGED 2004/08/06 14:42:37 tl 1.19.2.2: RESYNC: (1.19-1.20); FILE MERGED 2004/08/04 13:46:22 tl 1.19.2.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [55d6d3c7f8e595c45211cf6b45a8c54d8974f8e5]

INTEGRATION: CWS os19 (1.1.2); FILE ADDED 2004/07/12 12:24:40 dr 1.1.2.1: #i22092# more spelling...


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [5de540fcf161c07f68639b2d4f7125f05cee8c73]

INTEGRATION: CWS os34 (1.2.14); FILE MERGED 2004/08/06 14:38:19 tl 1.2.14.2: RESYNC: (1.2-1.3); FILE MERGED 2004/08/04 13:46:21 tl 1.2.14.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [f83e6fe1e8cfbf18aed3aef34de7e5d817bc1b22]

INTEGRATION: CWS os19 (1.16.8); FILE MERGED 2004/09/12 16:30:51 os 1.16.8.2: RESYNC: (1.16-1.17); FILE MERGED 2004/07/26 16:17:30 dr 1.16.8.1: #i32097# spelling dialog from context menu


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [1bea7c9bd609a43e8c41a67e0bbbfba47b95827f]

INTEGRATION: CWS os34 (1.14.114); FILE MERGED 2004/09/16 18:49:33 tl 1.14.114.2: RESYNC: (1.14-1.15); FILE MERGED 2004/08/04 13:46:05 tl 1.14.114.1: #i30302# simplified/traditional Chinese conversion


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [bf9d5f5cbcb78a9abbc7a275efa758099ee4822c]

INTEGRATION: CWS os19 (1.18.34); FILE MERGED 2004/09/12 16:18:43 os 1.18.34.2: RESYNC: (1.18-1.21); FILE MERGED 2004/06/10 13:20:49 dr 1.18.34.1: #i22092# new spellcheck dialog, first step


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [393d7a032cd4689bde148f722519121754db2c45]

INTEGRATION: CWS os19 (1.14.2); FILE MERGED 2004/09/12 15:54:46 os 1.14.2.2: RESYNC: (1.14-1.15); FILE MERGED 2004/05/03 09:33:31 os 1.14.2.1: #i18881# SID_SPELLING -> SID_SPELL_DIALOG


2004-09-17  Rüdiger Timm  <rt@openoffice.org>  [94370431bd62b751d5e5e587d985a29315c11fe4]

INTEGRATION: CWS os34 (1.7.2); FILE MERGED 2004/09/16 18:42:20 tl 1.7.2.4: RESYNC: (1.10-1.11); FILE MERGED 2004/09/16 13:45:59 tl 1.7.2.3: #i30303# merged to m53 2004/08/06 10:44:50 tl 1.7.2.2: RESYNC: (1.7-1.10); FILE MERGED 2004/08/04 13:45:51 tl 1.7.2.1: #i30302# simplified/traditional Chinese conversion


2004-09-13  Oliver Bolte  <obo@openoffice.org>  [3820a4927fdd51ca4e7e8bf698ac14f4ecb9f80f]

#i10000# typo


2004-09-13  Oliver Bolte  <obo@openoffice.org>  [489b671ccd3a6b0934a22c9323a30af6e1de02bb]

#i10000# include missing, typo


2004-09-13  Oliver Bolte  <obo@openoffice.org>  [e80b8b7e10f5d3250256ace62caa1555ac18ce21]

#i10000# includes missing


2004-09-09  Oliver Bolte  <obo@openoffice.org>  [6ead89383a3887e84f6d3ecab6278be2b1b77876]

INTEGRATION: CWS toolbars2 (1.20.4); FILE MERGED 2004/08/26 13:11:36 cd 1.20.4.1: #i32219# Adapt XML security statusbar controller to new implementation


2004-09-09  Oliver Bolte  <obo@openoffice.org>  [39ae6eccfc585d0c2aac85e73bec8624b4c01341]

INTEGRATION: CWS toolbars2 (1.1.2); FILE ADDED 2004/08/26 13:11:51 cd 1.1.2.3: #i32219# Adapt XML security statusbar controller to new implementation 2004/08/18 13:37:55 cd 1.1.2.2: #i32219# Added help IDs for status bar items 2004/08/17 06:39:17 cd 1.1.2.1: #i32219# Added statusbar XML file for calc


2004-09-09  Oliver Bolte  <obo@openoffice.org>  [f5f119ab3a4c572447479e35324a9026b978b5fb]

INTEGRATION: CWS toolbars2 (1.13.2); FILE MERGED 2004/08/23 09:38:33 dbo 1.13.2.1: #i32582# removed separators around PackageManager... Issue number: Submitted by: Reviewed by:


2004-09-09  Oliver Bolte  <obo@openoffice.org>  [0247eb8e53443606b0e76be7eae95297d724525a]

INTEGRATION: CWS toolbars2 (1.17.88); FILE MERGED 2004/08/17 06:43:12 cd 1.17.88.1: #i32219# Deliver statusbar XML file


2004-09-09  Jens-Heiner Rechtien  <hr@openoffice.org>  [9a681d28102733d90f9b2a96826864279bea6ff3]

INTEGRATION: CWS ooo20040815 (1.10.96); FILE MERGED 2004/08/24 09:15:28 mh 1.10.96.2: RESYNC: (1.10-1.11); FILE MERGED 2004/08/01 12:02:12 sparcmoz 1.10.96.1: #i32396 linux sparc compiler optimisation issue


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [40ea9fdc08564d42a9da24a5b1828c9e406e6aa8]

INTEGRATION: CWS improveforms (1.1.2); FILE ADDED 2004/09/01 08:33:28 fs 1.1.2.2: #i33308# 2004/08/31 08:45:12 fs 1.1.2.1: #i33308# new form design related toolbars


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [006cb37302e27e4026b41b987ddb38fbab4e4e3a]

INTEGRATION: CWS improveforms (1.1.2); FILE ADDED 2004/08/31 08:45:38 fs 1.1.2.1: while #i33308#: those got lost during the recent toolbox renewal


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [91c257578cc8fcfca044b0cf5c89752f01845f23]

INTEGRATION: CWS improveforms (1.1.2); FILE ADDED 2004/08/31 08:45:48 fs 1.1.2.1: while #i33308#: those got lost during the recent toolbox renewal


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [882a8839aed5985999e9918ba1769ff6f18f22f2]

INTEGRATION: CWS improveforms (1.1.2); FILE ADDED 2004/08/31 08:45:24 fs 1.1.2.1: #i33308# new form design related toolbars


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [464c6f322cf7c5a8da8a2b0602cb0b4dd4d1a143]

INTEGRATION: CWS improveforms (1.1.2); FILE ADDED 2004/09/01 13:37:42 fs 1.1.2.3: #i33308# FormDesignTools and MoreControls not separated anymore 2004/09/01 08:33:27 fs 1.1.2.2: #i33308# 2004/08/31 08:45:02 fs 1.1.2.1: #i33308# new form design related toolbars


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [56e27551cb5ac953bfee29c058d8e57e2d79cae6]

INTEGRATION: CWS filteredcells (1.8.130); FILE MERGED 2004/08/31 08:57:14 nn 1.8.130.2: #i33438# use compressed array to find filtered rows 2004/08/30 10:30:13 nn 1.8.130.1: #i33438# skip filtered cells in formatting and deleting of cells/rows


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [f772b660acbbc915b35b4fddf2f11569431af565]

INTEGRATION: CWS filteredcells (1.24.30); FILE MERGED 2004/08/30 18:06:12 nn 1.24.30.3: #i33438# don't use UnmarkFiltered in slot state functions 2004/08/30 11:06:07 nn 1.24.30.2: RESYNC: (1.24-1.25); FILE MERGED 2004/08/30 10:30:13 nn 1.24.30.1: #i33438# skip filtered cells in formatting and deleting of cells/rows


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [245482bac8ffef052e114f66b93633344bedcd81]

INTEGRATION: CWS filteredcells (1.23.130); FILE MERGED 2004/08/30 10:30:14 nn 1.23.130.1: #i33438# skip filtered cells in formatting and deleting of cells/rows


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [c26f534476e88c5e58bb48bc695d8554233a1a27]

INTEGRATION: CWS filteredcells (1.9.48); FILE MERGED 2004/08/30 10:30:14 nn 1.9.48.1: #i33438# skip filtered cells in formatting and deleting of cells/rows


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [e67aedb5822f0719352aabc3a06f630a4cf7a31d]

INTEGRATION: CWS filteredcells (1.31.30); FILE MERGED 2004/08/30 10:30:14 nn 1.31.30.1: #i33438# skip filtered cells in formatting and deleting of cells/rows


2004-09-09  Rüdiger Timm  <rt@openoffice.org>  [2b0ee17223302cea3b953238fbd0e9fb4415ce83]

INTEGRATION: CWS filteredcells (1.6.128); FILE MERGED 2004/08/30 10:29:18 nn 1.6.128.1: #i33438# skip filtered cells in formatting and deleting of cells/rows


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7dcbe9ad2528f1994544f2768ab0593df1740072]

INTEGRATION: CWS dba15 (1.64.116); FILE MERGED 2004/08/13 09:34:19 fs 1.64.116.1: #104887# proper handling of new VCLEVENT_WINDOW_SHOW/HIDE


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [61d66282eba1d84fcf4ceab49bda6f9c3a6ff278]

INTEGRATION: CWS ooo20040704 (1.12.40); FILE MERGED 2004/07/02 15:28:29 cmc 1.12.40.2: #i30891# revert header and namespace change 2004/06/29 15:57:46 cmc 1.12.40.1: #i30801# allow using system stl if possible


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [186e29a77b4a6ddc9e9d1be5551fae0b83f5229a]

INTEGRATION: CWS ooo20040704 (1.7.40); FILE MERGED 2004/07/02 15:28:26 cmc 1.7.40.2: #i30891# revert header and namespace change 2004/06/29 15:57:44 cmc 1.7.40.1: #i30801# allow using system stl if possible


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [ea75aa86d0b10beaa58f7ec5e2f0c06f94a2faab]

INTEGRATION: CWS dr20 (1.14.10); FILE MERGED 2004/07/27 13:23:50 nn 1.14.10.1: #i3875# ctrl-mouse-click selects cells if nothing was selected (patch by Kohei Yoshida)


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [a782ae1823a4795da1ab672c5dfbf57488f15420]

#i26291#: resolve merge conflicts with CWS dr20


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c8e34cdcec8cfa2620ab79137fad5f6e095ea869]

INTEGRATION: CWS dr20 (1.67.10); FILE MERGED 2004/08/11 10:44:32 dr 1.67.10.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:41:03 dr 1.67.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f6e15ce68a22673e855aba58b34fbd258cd64b06]

INTEGRATION: CWS dr20 (1.8.10); FILE MERGED 2004/08/20 08:40:26 dr 1.8.10.4: #i30816# ignore all objects with wrong (null) size, better progress bar 2004/07/07 14:08:38 dr 1.8.10.3: RESYNC: (1.8-1.9); FILE MERGED 2004/06/22 14:04:03 dr 1.8.10.2: #i30543# import Printable property for controls 2004/06/15 16:40:29 dr 1.8.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff67a69bbc12c9ed48f877756fa6b01d8b13ea47]

#i26291#: resolve merge conflicts with CWS dr20


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6c55d86a104e97b5b15a9cf086053dd343e04b33]

INTEGRATION: CWS dr20 (1.9.12); FILE MERGED 2004/08/16 15:25:48 dr 1.9.12.4: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 14:27:23 dr 1.9.12.3: RESYNC: (1.9-1.10); FILE MERGED 2004/08/11 10:43:51 dr 1.9.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:27 dr 1.9.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [494ff869b8f29aff1da8b5c1370ebb2efa4c35ea]

INTEGRATION: CWS dr20 (1.16.8); FILE MERGED 2004/08/20 08:40:06 dr 1.16.8.10: #i30816# ignore all objects with wrong (null) size, better progress bar 2004/08/18 11:33:25 dr 1.16.8.9: RESYNC: (1.18-1.19); FILE MERGED 2004/08/11 14:24:34 dr 1.16.8.8: RESYNC: (1.17-1.18); FILE MERGED 2004/07/09 14:26:50 dr 1.16.8.7: #i12638# connectors to orgcharts, patch by John Marmion 2004/07/09 11:36:59 dr 1.16.8.6: #i10000# merge errors 2004/07/07 14:07:42 dr 1.16.8.5: RESYNC: (1.16-1.17); FILE MERGED 2004/06/22 14:03:39 dr 1.16.8.4: #i30543# import Printable property for controls 2004/06/22 13:10:44 dr 1.16.8.3: #i30543# insert form controls at correct layer 2004/06/15 18:28:23 dr 1.16.8.2: #i30205# remove g++ warnings 2004/06/15 16:37:38 dr 1.16.8.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9828aa7f8f0dc59b438e23d9e3a9d684b1e06307]

INTEGRATION: CWS dr20 (1.56.10); FILE MERGED 2004/08/12 12:26:39 dr 1.56.10.4: #i194# default column format 2004/08/11 14:17:36 dr 1.56.10.3: RESYNC: (1.57-1.58); FILE MERGED 2004/08/11 11:13:03 dr 1.56.10.2: RESYNC: (1.56-1.57); FILE MERGED 2004/07/21 13:07:51 nn 1.56.10.1: #i31795# GetClipArea: type of nResult is SCROW


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6724a966ce55459abc25160b8054bbc48b265361]

INTEGRATION: CWS pdf01 (1.35.66); FILE MERGED 2004/08/06 20:07:23 pl 1.35.66.2: RESYNC: (1.35-1.37); FILE MERGED 2004/07/22 14:51:03 nn 1.35.66.1: #i31946# handle notes in PDF export


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e233f8357a1ef3444623c66f95e71ee1a3950bb7]

INTEGRATION: CWS pdf01 (1.22.94); FILE MERGED 2004/08/06 20:09:20 pl 1.22.94.2: RESYNC: (1.22-1.23); FILE MERGED 2004/07/22 14:51:03 nn 1.22.94.1: #i31946# handle notes in PDF export


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e9d8711f385d3c82ac3bc306bb86609dc8576136]

INTEGRATION: CWS pdf01 (1.42.44); FILE MERGED 2004/08/06 20:34:14 pl 1.42.44.2: RESYNC: (1.42-1.43); FILE MERGED 2004/07/23 12:01:03 nn 1.42.44.1: #32000# add sheet names to pdf export as outline elements


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1d77f2e72c750c09fc602c96d9b998cffacfea03]

INTEGRATION: CWS pdf01 (1.10.110); FILE MERGED 2004/08/06 19:48:52 pl 1.10.110.2: RESYNC: (1.10-1.11); FILE MERGED 2004/07/22 14:50:39 nn 1.10.110.1: #i31946# handle notes in PDF export


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [8156f5f13c959fbf35795b26ec153acdd9140e51]

INTEGRATION: CWS ooo20040704 (1.42.22); FILE MERGED 2004/07/03 00:08:23 waratah 1.42.22.1: #i30874# Add initial values to potentially uninitialised values


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [89bc0e582888bbb26e93408e25ea1591e069f95f]

INTEGRATION: CWS dr20 (1.26.10); FILE MERGED 2004/08/11 14:46:00 dr 1.26.10.2: RESYNC: (1.26-1.27); FILE MERGED 2004/07/29 11:33:08 nn 1.26.10.1: #i31677# PasteDDE: String position and length handling must use ByteString


2004-09-08  Oliver Bolte  <obo@openoffice.org>  [96d304c4792f52a0141382a444e07eb8768c08e5]

INTEGRATION: CWS lookup (1.29.118); FILE MERGED 2004/08/27 22:12:51 er 1.29.118.2: #i2168# for performance reasons (binary search) initialize ScQueryParam.bRegExp with FALSE unless explicitly required 2004/08/27 09:45:55 er 1.29.118.1: #i2168# implement some fuzziness to emulate a competitor's undocumented behavior of [HV]?LOOKUP() and MATCH() in case the data range isn't strictly sorted but should, for example includes column headers


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [005ddad92294aacd1ed43dd1d847f41536d5b89d]

INTEGRATION: CWS dr20 (1.45.10); FILE MERGED 2004/07/27 13:24:19 nn 1.45.10.1: #i3875# ctrl-mouse-click selects cells if nothing was selected (patch by Kohei Yoshida)


2004-09-08  Oliver Bolte  <obo@openoffice.org>  [096ea62ccc28424729f6941cdaf10825b7a23f9e]

INTEGRATION: CWS lookup (1.16.118); FILE MERGED 2004/08/30 17:23:22 er 1.16.118.3: RESYNC: (1.16-1.17); FILE MERGED 2004/08/27 21:19:39 er 1.16.118.2: CreateExcelQuery: operator delete mismatch 2004/08/27 09:45:55 er 1.16.118.1: #i2168# implement some fuzziness to emulate a competitor's undocumented behavior of [HV]?LOOKUP() and MATCH() in case the data range isn't strictly sorted but should, for example includes column headers


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7cee18f8ec1e2c1a45ac68bb7ab07e9834794a4c]

INTEGRATION: CWS dr20 (1.37.8); FILE MERGED 2004/08/11 14:45:02 dr 1.37.8.2: RESYNC: (1.37-1.39); FILE MERGED 2004/07/27 13:24:20 nn 1.37.8.1: #i3875# ctrl-mouse-click selects cells if nothing was selected (patch by Kohei Yoshida)


2004-09-08  Oliver Bolte  <obo@openoffice.org>  [ac5486d223a20ca65c64e6e7d3bc26ae0503ed17]

INTEGRATION: CWS lookup (1.10.118); FILE MERGED 2004/08/30 16:36:21 er 1.10.118.3: #i2168# fine tuning 2004/08/27 22:17:21 er 1.10.118.2: #i2168# performance and logic for [HV]?LOOKUP() and MATCH(); binary search with fallback to iteration if unsorted data detected 2004/08/27 09:45:55 er 1.10.118.1: #i2168# implement some fuzziness to emulate a competitor's undocumented behavior of [HV]?LOOKUP() and MATCH() in case the data range isn't strictly sorted but should, for example includes column headers


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [cdec4c779e0ae22af738963911d2541770061d93]

INTEGRATION: CWS dr20 (1.9.10); FILE MERGED 2004/06/25 18:45:55 nn 1.9.10.2: #i28468# don't show error message from ExecuteDrop, reject in AcceptDrop where possible 2004/06/25 13:46:06 nn 1.9.10.1: #i27955# selection behavior with merged cells (patch by Kohei Yoshida)


2004-09-08  Oliver Bolte  <obo@openoffice.org>  [2ad7e641340e42cca2ca060ed2c17f3cffa1c8d9]

INTEGRATION: CWS lookup (1.4.118); FILE MERGED 2004/08/27 22:17:21 er 1.4.118.2: #i2168# performance and logic for [HV]?LOOKUP() and MATCH(); binary search with fallback to iteration if unsorted data detected 2004/08/27 09:45:54 er 1.4.118.1: #i2168# implement some fuzziness to emulate a competitor's undocumented behavior of [HV]?LOOKUP() and MATCH() in case the data range isn't strictly sorted but should, for example includes column headers


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [95ca5f51ee950fe73cc5fb845702557ead9a8c7a]

INTEGRATION: CWS dr20 (1.12.10); FILE MERGED 2004/07/27 13:24:20 nn 1.12.10.2: #i3875# ctrl-mouse-click selects cells if nothing was selected (patch by Kohei Yoshida) 2004/06/25 13:46:05 nn 1.12.10.1: #i27955# selection behavior with merged cells (patch by Kohei Yoshida)


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [80e4cd930f5583b2315ff36845a74f79969c1285]

INTEGRATION: CWS dr20 (1.23.8); FILE MERGED 2004/08/11 14:43:42 dr 1.23.8.3: RESYNC: (1.23-1.24); FILE MERGED 2004/07/28 09:37:50 nn 1.23.8.2: #i30908# GetListValButtonRect: GetScrPos with bAllowNeg=TRUE 2004/07/27 17:21:12 nn 1.23.8.1: #i30908# correct position of list validation button with merged cells


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9c6d30843b6e3ce2f751377bf9ef278b66719ddf]

INTEGRATION: CWS dr20 (1.55.8); FILE MERGED 2004/08/11 14:43:21 dr 1.55.8.5: RESYNC: (1.58-1.60); FILE MERGED 2004/08/11 11:30:25 dr 1.55.8.4: RESYNC: (1.56-1.58); FILE MERGED 2004/07/21 17:24:37 nn 1.55.8.3: #i31846# MouseButtonDown: Abort on SC_GM_IGNORE only for double click 2004/07/07 14:24:12 dr 1.55.8.2: RESYNC: (1.55-1.56); FILE MERGED 2004/06/25 18:45:55 nn 1.55.8.1: #i28468# don't show error message from ExecuteDrop, reject in AcceptDrop where possible


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [293fcf743f406855e74e7b750a1d112f499b2919]

INTEGRATION: CWS dr20 (1.19.20); FILE MERGED 2004/08/23 10:11:50 dr 1.19.20.1: #i31882# do not reset list type in validation dialog


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5a7b40e25cf4c1aab1e6dd483791195e2c2c201a]

INTEGRATION: CWS dr20 (1.13.10); FILE MERGED 2004/08/11 14:39:18 dr 1.13.10.2: RESYNC: (1.13-1.14); FILE MERGED 2004/06/25 13:45:30 nn 1.13.10.1: #i27955# selection behavior with merged cells (patch by Kohei Yoshida)


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [38f68edaf6e23e26b553fe17d4354a36eed8f60b]

INTEGRATION: CWS dr20 (1.19.12); FILE MERGED 2004/08/17 07:40:21 dr 1.19.12.2: #i33033# use correct type 2004/08/16 14:16:18 dr 1.19.12.1: #i33033# correct size of CJK/CTL fonts in preview


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [72cc3c2894e7e031ca9485732d4b1873e0b33dff]

INTEGRATION: CWS dr20 (1.40.12); FILE MERGED 2004/06/25 18:42:52 nn 1.40.12.1: #i28468# don't show error message from ExecuteDrop, reject in AcceptDrop where possible


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d0f6ca46fca606f25091321994faa7cf722b19ac]

INTEGRATION: CWS dr20 (1.30.462); FILE MERGED 2004/08/09 09:49:56 sab 1.30.462.1: #111788#; no optimasations for xmlcvali.obj


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [04c655e1d28b51a9f02812fb9f27e30519612566]

INTEGRATION: CWS dr20 (1.13.12); FILE MERGED 2004/06/15 16:41:03 dr 1.13.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f1f62fdabdaa408c921ca1845811d651ac6363cc]

INTEGRATION: CWS dr20 (1.12.168); FILE MERGED 2004/07/09 14:33:26 dr 1.12.168.1: #i30411# #i27407# export of def row format, step 1


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c999214dc9e61ed1ea753de1af674d84942d8d94]

INTEGRATION: CWS dr20 (1.21.12); FILE MERGED 2004/08/18 11:38:15 dr 1.21.12.3: RESYNC: (1.21-1.22); FILE MERGED 2004/06/15 18:28:25 dr 1.21.12.2: #i30205# remove g++ warnings 2004/06/15 16:41:03 dr 1.21.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [4b00821bd5debee471b09731e2f33fc75fdcec68]

INTEGRATION: CWS dr20 (1.15.12); FILE MERGED 2004/08/18 11:38:04 dr 1.15.12.2: RESYNC: (1.15-1.16); FILE MERGED 2004/06/15 16:41:03 dr 1.15.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c771424e1dde6e1551c8f68618317ba6925e588b]

INTEGRATION: CWS dr20 (1.15.10); FILE MERGED 2004/08/11 14:29:43 dr 1.15.10.3: RESYNC: (1.15-1.17); FILE MERGED 2004/08/11 10:43:55 dr 1.15.10.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:33 dr 1.15.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b3942cd2b76faf39a7e17914e9a65a88e2746a1a]

INTEGRATION: CWS dr20 (1.1.2); FILE ADDED 2004/08/11 10:43:55 dr 1.1.2.1: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d0d8e18d2b8fdaf9b5f0b0d47a25cd3426a1025d]

INTEGRATION: CWS dr20 (1.10.32); FILE MERGED 2004/08/20 08:37:10 dr 1.10.32.7: #i33215# number format in cell styles lost 2004/08/12 13:48:35 dr 1.10.32.6: #i10000# remove XclTextOrient 2004/08/11 17:45:28 dr 1.10.32.5: #i10000# merge errors 2004/08/11 14:29:33 dr 1.10.32.4: RESYNC: (1.10-1.12); FILE MERGED 2004/08/11 10:43:54 dr 1.10.32.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/21 12:59:48 dr 1.10.32.2: #i30205# record list handling 2004/06/15 16:40:32 dr 1.10.32.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [665cf123e8e4bea46bc21044d9d7d36d26ed1c7a]

INTEGRATION: CWS dr20 (1.12.12); FILE MERGED 2004/08/20 08:34:44 dr 1.12.12.6: #i29930# different warnings for too many rows/cols/sheets 2004/08/18 11:37:48 dr 1.12.12.5: RESYNC: (1.13-1.14); FILE MERGED 2004/08/11 17:45:28 dr 1.12.12.4: #i10000# merge errors 2004/08/11 14:29:24 dr 1.12.12.3: RESYNC: (1.12-1.13); FILE MERGED 2004/08/11 10:43:54 dr 1.12.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:32 dr 1.12.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [86e7eb31f4183832dc54affc50afbdadb3490201]

INTEGRATION: CWS dr20 (1.2.12); FILE MERGED 2004/08/18 11:37:41 dr 1.2.12.5: RESYNC: (1.4-1.5); FILE MERGED 2004/08/11 14:29:15 dr 1.2.12.4: RESYNC: (1.3-1.4); FILE MERGED 2004/08/11 11:15:15 dr 1.2.12.3: RESYNC: (1.2-1.3); FILE MERGED 2004/06/21 12:59:48 dr 1.2.12.2: #i30205# record list handling 2004/06/15 16:40:32 dr 1.2.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [a448f333fe9f11c2d224182621b89a607cd71315]

INTEGRATION: CWS dr20 (1.2.168); FILE MERGED 2004/08/11 14:29:06 dr 1.2.168.2: RESYNC: (1.2-1.3); FILE MERGED 2004/06/15 16:40:32 dr 1.2.168.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1aeadb75e6789bc5219d5fe5b1b8bb0da16f96d8]

INTEGRATION: CWS dr20 (1.7.12); FILE MERGED 2004/08/18 11:37:34 dr 1.7.12.3: RESYNC: (1.7-1.8); FILE MERGED 2004/08/11 10:43:54 dr 1.7.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:32 dr 1.7.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [45e49cf5f6cdcf37abcf893e3cbbdccf761a91e9]

INTEGRATION: CWS dr20 (1.3.114); FILE MERGED 2004/07/07 14:08:56 dr 1.3.114.2: RESYNC: (1.3-1.4); FILE MERGED 2004/06/15 16:40:31 dr 1.3.114.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e8c0a587359a36fce9a3f97a8230aec166fbc5ed]

INTEGRATION: CWS dr20 (1.2.194); FILE MERGED 2004/08/11 10:43:54 dr 1.2.194.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:31 dr 1.2.194.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e542970d32fa2c848772679bc7852b6bddd14e9b]

INTEGRATION: CWS dr20 (1.9.10); FILE MERGED 2004/08/11 10:43:54 dr 1.9.10.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/07 14:08:47 dr 1.9.10.2: RESYNC: (1.9-1.10); FILE MERGED 2004/06/15 16:40:31 dr 1.9.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c4303afe5d6cbd7b391b5b040b8edac06948a791]

INTEGRATION: CWS dr20 (1.4.12); FILE MERGED 2004/08/18 11:37:27 dr 1.4.12.3: RESYNC: (1.4-1.5); FILE MERGED 2004/08/11 10:43:53 dr 1.4.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:31 dr 1.4.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [aee40fe216e0ca54eca09e5bfd997e554e28df32]

INTEGRATION: CWS dr20 (1.15.10); FILE MERGED 2004/08/18 11:37:20 dr 1.15.10.5: RESYNC: (1.17-1.18); FILE MERGED 2004/08/11 14:28:57 dr 1.15.10.4: RESYNC: (1.15-1.17); FILE MERGED 2004/08/11 10:43:53 dr 1.15.10.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 15:15:04 dr 1.15.10.2: #i30411# #i27407# export of def row format, step 1 2004/06/15 16:40:31 dr 1.15.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [77dd17d5d7182804aec0b3653ca9ffb015d32391]

INTEGRATION: CWS dr20 (1.9.10); FILE MERGED 2004/08/20 08:37:10 dr 1.9.10.4: #i33215# number format in cell styles lost 2004/08/17 11:54:35 dr 1.9.10.3: #i30205# Excel filter code cleanup 2004/08/11 14:28:48 dr 1.9.10.2: RESYNC: (1.9-1.11); FILE MERGED 2004/06/15 16:40:30 dr 1.9.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [036507c1ac314ed7a4709c87ee139278a301be02]

INTEGRATION: CWS dr20 (1.7.2); FILE MERGED 2004/08/20 09:30:08 dr 1.7.2.1: #i10000# merge error


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3915e1c7c3102264b2f519c2f3a72dbcd4d77ff7]

INTEGRATION: CWS dr20 (1.9.12); FILE MERGED 2004/08/18 11:37:04 dr 1.9.12.4: RESYNC: (1.10-1.11); FILE MERGED 2004/08/11 14:28:28 dr 1.9.12.3: RESYNC: (1.9-1.10); FILE MERGED 2004/08/11 10:43:53 dr 1.9.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:30 dr 1.9.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9a97cfa5b603060680af93228ca3f06e84ceaaa9]

INTEGRATION: CWS dr20 (1.2.12); FILE MERGED 2004/08/18 11:36:57 dr 1.2.12.4: RESYNC: (1.4-1.5); FILE MERGED 2004/08/11 14:28:18 dr 1.2.12.3: RESYNC: (1.3-1.4); FILE MERGED 2004/08/11 11:15:05 dr 1.2.12.2: RESYNC: (1.2-1.3); FILE MERGED 2004/08/11 10:43:53 dr 1.2.12.1: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8ebcedf86050b297832c2e06439594d5f4437b7]

INTEGRATION: CWS dr20 (1.2.168); FILE MERGED 2004/06/15 16:40:30 dr 1.2.168.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b8e2c1994b36145424cc0707ac63a2aa55f7a249]

INTEGRATION: CWS dr20 (1.8.12); FILE MERGED 2004/08/11 14:28:08 dr 1.8.12.2: RESYNC: (1.8-1.9); FILE MERGED 2004/06/15 16:40:30 dr 1.8.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f2be8be7c3d6bc61109c5b7843c8c05663eb20a7]

INTEGRATION: CWS dr20 (1.7.12); FILE MERGED 2004/08/16 15:25:49 dr 1.7.12.3: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 14:27:59 dr 1.7.12.2: RESYNC: (1.7-1.8); FILE MERGED 2004/06/15 16:40:29 dr 1.7.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1c7488b8d5714c8c05c81d7743d9d3e265695972]

INTEGRATION: CWS dr20 (1.6.12); FILE MERGED 2004/08/18 11:36:50 dr 1.6.12.2: RESYNC: (1.6-1.7); FILE MERGED 2004/06/15 16:40:29 dr 1.6.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [cf813182336d2ceed27675d11b9bf1ac1760e255]

INTEGRATION: CWS dr20 (1.1.2); FILE ADDED 2004/08/20 08:48:28 dr 1.1.2.5: #i194# merged cells need equal cell format 2004/08/16 17:36:18 dr 1.1.2.4: #i194# #i30411# code cleanup 2004/08/16 15:25:49 dr 1.1.2.3: #i194# #i30411# performance, memory usage, progress bar 2004/08/12 12:28:52 dr 1.1.2.2: #i194# default column format 2004/08/11 10:43:53 dr 1.1.2.1: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c45c5c725e58e8445fb2526f5311b768d0265070]

INTEGRATION: CWS dr20 (1.8.168); FILE MERGED 2004/08/20 08:48:28 dr 1.8.168.7: #i194# merged cells need equal cell format 2004/08/17 11:54:35 dr 1.8.168.6: #i30205# Excel filter code cleanup 2004/08/12 12:28:52 dr 1.8.168.5: #i194# default column format 2004/08/11 14:27:48 dr 1.8.168.4: RESYNC: (1.8-1.9); FILE MERGED 2004/08/11 10:43:52 dr 1.8.168.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/21 12:59:47 dr 1.8.168.2: #i30205# record list handling 2004/06/15 16:40:29 dr 1.8.168.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9120e4ee5d74c04064a68953b5fe0bf2fa1528c7]

INTEGRATION: CWS dr20 (1.2.168); FILE MERGED 2004/08/16 15:25:49 dr 1.2.168.3: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 10:43:52 dr 1.2.168.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:28 dr 1.2.168.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6497b7ae131740402be6ba84c571dff16285d128]

INTEGRATION: CWS dr20 (1.9.12); FILE MERGED 2004/08/18 11:36:33 dr 1.9.12.3: RESYNC: (1.9-1.10); FILE MERGED 2004/08/11 10:43:52 dr 1.9.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:28 dr 1.9.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [48782a29b5ac1725c6101f0c1e41b004fd76e459]

INTEGRATION: CWS dr20 (1.4.114); FILE MERGED 2004/08/16 15:25:49 dr 1.4.114.5: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 10:43:52 dr 1.4.114.4: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 11:37:17 dr 1.4.114.3: #i10000# merge errors 2004/06/21 12:59:48 dr 1.4.114.2: #i30205# record list handling 2004/06/15 16:40:28 dr 1.4.114.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [fb4b3a55a3a9fe08d3776b47b4598073ab5ebaa8]

INTEGRATION: CWS dr20 (1.2.12); FILE MERGED 2004/08/11 14:27:33 dr 1.2.12.3: RESYNC: (1.3-1.4); FILE MERGED 2004/08/11 11:14:55 dr 1.2.12.2: RESYNC: (1.2-1.3); FILE MERGED 2004/06/21 12:59:46 dr 1.2.12.1: #i30205# record list handling


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b4858ff30458dc0cd11b53c26e1a5518865423a3]

INTEGRATION: CWS dr20 (1.2.168); FILE MERGED 2004/06/15 16:40:28 dr 1.2.168.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d9e421cbc910a9170d821b4a939440ffaea59af9]

INTEGRATION: CWS dr20 (1.7.12); FILE MERGED 2004/06/15 16:40:28 dr 1.7.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7bb0fc05ea7b0866d74720c6e6af6a481157bcc9]

INTEGRATION: CWS dr20 (1.1.2); FILE ADDED 2004/08/11 10:43:51 dr 1.1.2.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 18:28:24 dr 1.1.2.2: #i30205# remove g++ warnings 2004/06/15 16:40:27 dr 1.1.2.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [88f62b2eae06b195bfa854a5f600db593f112803]

INTEGRATION: CWS dr20 (1.6.12); FILE MERGED 2004/08/20 08:48:28 dr 1.6.12.5: #i194# merged cells need equal cell format 2004/08/11 10:43:51 dr 1.6.12.4: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/21 12:59:46 dr 1.6.12.3: #i30205# record list handling 2004/06/16 17:22:01 dr 1.6.12.2: #i30350# do not create new sheet refs while writing stream 2004/06/15 16:40:27 dr 1.6.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b688499e20a22316c3d22e962cde3377d901bc47]

INTEGRATION: CWS dr20 (1.37.12); FILE MERGED 2004/08/11 10:43:51 dr 1.37.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:26 dr 1.37.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [11924d84d71017e176ae8861451d6d83513aaa9c]

INTEGRATION: CWS dr20 (1.34.12); FILE MERGED 2004/08/18 11:36:25 dr 1.34.12.2: RESYNC: (1.34-1.35); FILE MERGED 2004/08/11 10:43:51 dr 1.34.12.1: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d49efc576d9782f8240cd5ebef6f79fa65407118]

INTEGRATION: CWS dr20 (1.10.12); FILE MERGED 2004/08/18 11:36:07 dr 1.10.12.5: RESYNC: (1.11-1.12); FILE MERGED 2004/08/16 15:25:48 dr 1.10.12.4: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 14:27:02 dr 1.10.12.3: RESYNC: (1.10-1.11); FILE MERGED 2004/08/11 10:43:50 dr 1.10.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:40:26 dr 1.10.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [fa607b262603097a5d753743e496905a8c6eb3b6]

INTEGRATION: CWS dr20 (1.3.320); FILE MERGED 2004/08/11 10:43:50 dr 1.3.320.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/17 14:58:10 dr 1.3.320.2: #i27407# handle limit of SfxProgress (ULONG_MAX/100) 2004/06/15 16:40:26 dr 1.3.320.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [0d9c91cfe85a06a551386cfed89efb2c1dc996ce]

INTEGRATION: CWS dr20 (1.40.10); FILE MERGED 2004/08/11 14:26:53 dr 1.40.10.7: RESYNC: (1.41-1.42); FILE MERGED 2004/08/11 10:43:50 dr 1.40.10.6: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 14:32:55 dr 1.40.10.5: #i30411# #i27407# export of def row format, step 1 2004/07/09 11:37:16 dr 1.40.10.4: #i10000# merge errors 2004/07/07 14:08:18 dr 1.40.10.3: RESYNC: (1.40-1.41); FILE MERGED 2004/06/17 15:05:58 dr 1.40.10.2: #i27407# find and store default row format 2004/06/15 16:40:26 dr 1.40.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [86db5d3b3fa815f7e48167351630f0f9e759baf1]

INTEGRATION: CWS dr20 (1.12.10); FILE MERGED 2004/08/16 15:25:48 dr 1.12.10.6: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 10:43:50 dr 1.12.10.5: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 14:32:55 dr 1.12.10.4: #i30411# #i27407# export of def row format, step 1 2004/07/07 14:08:08 dr 1.12.10.3: RESYNC: (1.12-1.13); FILE MERGED 2004/06/21 12:59:46 dr 1.12.10.2: #i30205# record list handling 2004/06/17 15:05:57 dr 1.12.10.1: #i27407# find and store default row format


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3d4b855ca7c1f06fe9dde1f0b35a420dc1907554]

INTEGRATION: CWS dr20 (1.43.12); FILE MERGED 2004/08/18 11:35:33 dr 1.43.12.3: RESYNC: (1.43-1.44); FILE MERGED 2004/08/11 10:43:49 dr 1.43.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 14:32:55 dr 1.43.12.1: #i30411# #i27407# export of def row format, step 1


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e85f8b9f846db11f4198ba7422e27d935b6d505d]

INTEGRATION: CWS dr20 (1.12.12); FILE MERGED 2004/06/15 16:40:25 dr 1.12.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [79cb0dd3e43b3b048b038d0f7a9efd601a08ec6e]

INTEGRATION: CWS dr20 (1.7.114); FILE MERGED 2004/08/18 11:35:03 dr 1.7.114.3: RESYNC: (1.7-1.8); FILE MERGED 2004/08/11 10:40:19 dr 1.7.114.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:38:26 dr 1.7.114.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6c6505cbe0a73a4e57e9946cb4448a1524cae8d3]

INTEGRATION: CWS dr20 (1.3.320); FILE MERGED 2004/08/11 10:40:19 dr 1.3.320.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/17 14:58:21 dr 1.3.320.2: #i27407# handle limit of SfxProgress (ULONG_MAX/100) 2004/06/15 16:38:26 dr 1.3.320.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [57efbe8329d7609972531e0ab8b2d5a734bb863f]

INTEGRATION: CWS dr20 (1.16.10); FILE MERGED 2004/08/20 09:51:35 dr 1.16.10.5: #i10000# merge error 2004/08/11 14:26:23 dr 1.16.10.4: RESYNC: (1.16-1.17); FILE MERGED 2004/08/11 10:39:06 dr 1.16.10.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 18:28:23 dr 1.16.10.2: #i30205# remove g++ warnings 2004/06/15 16:37:43 dr 1.16.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e1caa59484e39cbe81e7d817c77be151adb0c59e]

INTEGRATION: CWS dr20 (1.10.32); FILE MERGED 2004/08/17 11:54:18 dr 1.10.32.5: #i30205# Excel filter code cleanup 2004/08/12 13:48:10 dr 1.10.32.4: #i10000# remove XclTextOrient 2004/08/11 14:26:13 dr 1.10.32.3: RESYNC: (1.10-1.12); FILE MERGED 2004/08/11 10:39:06 dr 1.10.32.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:43 dr 1.10.32.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f68b661cf1cb01506fefbc6a6ebdf7203ef86f7f]

INTEGRATION: CWS dr20 (1.12.12); FILE MERGED 2004/08/20 08:33:53 dr 1.12.12.6: #i29930# different warnings for too many rows/cols/sheets 2004/08/18 11:34:38 dr 1.12.12.5: RESYNC: (1.13-1.14); FILE MERGED 2004/08/11 17:45:28 dr 1.12.12.4: #i10000# merge errors 2004/08/11 14:26:04 dr 1.12.12.3: RESYNC: (1.12-1.13); FILE MERGED 2004/08/11 10:39:05 dr 1.12.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:42 dr 1.12.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [114c52e706de58de4764b14a99f6b69436975938]

INTEGRATION: CWS dr20 (1.2.12); FILE MERGED 2004/08/11 17:45:27 dr 1.2.12.5: #i10000# merge errors 2004/08/11 14:25:56 dr 1.2.12.4: RESYNC: (1.3-1.4); FILE MERGED 2004/08/11 11:14:45 dr 1.2.12.3: RESYNC: (1.2-1.3); FILE MERGED 2004/08/11 10:39:05 dr 1.2.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:42 dr 1.2.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [94015701e509007b0f2f7a631746cc143a67fac9]

INTEGRATION: CWS dr20 (1.3.114); FILE MERGED 2004/08/11 14:25:46 dr 1.3.114.3: RESYNC: (1.3-1.4); FILE MERGED 2004/08/11 10:39:05 dr 1.3.114.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:42 dr 1.3.114.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [2d72227632f28060d0f14562e60c9e380fdd29cf]

INTEGRATION: CWS dr20 (1.8.10); FILE MERGED 2004/08/18 11:34:31 dr 1.8.10.5: RESYNC: (1.9-1.10); FILE MERGED 2004/08/11 10:39:05 dr 1.8.10.4: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/07 14:08:00 dr 1.8.10.3: RESYNC: (1.8-1.9); FILE MERGED 2004/06/22 14:03:40 dr 1.8.10.2: #i30543# import Printable property for controls 2004/06/15 16:37:42 dr 1.8.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9357224f2ff5d258fea82170af1eddc7d33175ea]

INTEGRATION: CWS dr20 (1.2.194); FILE MERGED 2004/08/11 10:39:04 dr 1.2.194.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:41 dr 1.2.194.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b6b5955f8bd3488001ed55cb1ceb1ad427876816]

INTEGRATION: CWS dr20 (1.3.12); FILE MERGED 2004/06/15 16:37:41 dr 1.3.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9234178c92a7503ff9ce0889a489546fd4951ea3]

INTEGRATION: CWS dr20 (1.14.10); FILE MERGED 2004/08/20 08:36:53 dr 1.14.10.7: #i33215# number format in cell styles lost 2004/08/18 11:34:22 dr 1.14.10.6: RESYNC: (1.16-1.17); FILE MERGED 2004/08/12 13:48:10 dr 1.14.10.5: #i10000# remove XclTextOrient 2004/08/11 17:45:27 dr 1.14.10.4: #i10000# merge errors 2004/08/11 14:25:37 dr 1.14.10.3: RESYNC: (1.14-1.16); FILE MERGED 2004/08/11 10:39:04 dr 1.14.10.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:41 dr 1.14.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [36bd7b1055d7367c194aef0c01eeb211cdf5a4cf]

INTEGRATION: CWS dr20 (1.5.114); FILE MERGED 2004/08/20 09:35:42 dr 1.5.114.4: #i10000# merge error 2004/08/18 11:34:11 dr 1.5.114.3: RESYNC: (1.6-1.7); FILE MERGED 2004/08/11 14:25:28 dr 1.5.114.2: RESYNC: (1.5-1.6); FILE MERGED 2004/06/15 16:37:40 dr 1.5.114.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [61d6cacaf37763d443ec895382acf32fdccda4b0]

INTEGRATION: CWS dr20 (1.9.12); FILE MERGED 2004/08/18 11:34:04 dr 1.9.12.3: RESYNC: (1.10-1.11); FILE MERGED 2004/08/11 14:25:18 dr 1.9.12.2: RESYNC: (1.9-1.10); FILE MERGED 2004/06/15 16:37:40 dr 1.9.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6a8049a1d35f3e3ea186ae8d0184829edc52f34b]

INTEGRATION: CWS dr20 (1.2.12); FILE MERGED 2004/08/18 11:33:56 dr 1.2.12.5: RESYNC: (1.4-1.5); FILE MERGED 2004/08/11 14:25:10 dr 1.2.12.4: RESYNC: (1.3-1.4); FILE MERGED 2004/08/11 11:14:34 dr 1.2.12.3: RESYNC: (1.2-1.3); FILE MERGED 2004/08/11 10:39:04 dr 1.2.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:40 dr 1.2.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b8ce4e34e737f5642708acc0d8bc47ecabc8b7de]

INTEGRATION: CWS dr20 (1.5.12); FILE MERGED 2004/08/18 11:33:49 dr 1.5.12.3: RESYNC: (1.6-1.7); FILE MERGED 2004/08/11 14:25:01 dr 1.5.12.2: RESYNC: (1.5-1.6); FILE MERGED 2004/06/15 16:37:39 dr 1.5.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [38f84cb3f96f47547d30e71fa03b0e2baa11e66f]

INTEGRATION: CWS dr20 (1.11.10); FILE MERGED 2004/08/18 11:33:42 dr 1.11.10.4: RESYNC: (1.13-1.14); FILE MERGED 2004/08/11 14:24:52 dr 1.11.10.3: RESYNC: (1.12-1.13); FILE MERGED 2004/07/07 14:07:51 dr 1.11.10.2: RESYNC: (1.11-1.12); FILE MERGED 2004/06/15 16:37:39 dr 1.11.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b2f84434faeea432b478c2452061d4feb7712812]

INTEGRATION: CWS dr20 (1.11.12); FILE MERGED 2004/08/18 11:33:34 dr 1.11.12.5: RESYNC: (1.12-1.13); FILE MERGED 2004/08/11 14:24:43 dr 1.11.12.4: RESYNC: (1.11-1.12); FILE MERGED 2004/08/11 10:39:03 dr 1.11.12.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 18:28:23 dr 1.11.12.2: #i30205# remove g++ warnings 2004/06/15 16:37:39 dr 1.11.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [06a184539842b90755ed1384e756dfe5dd9fa721]

INTEGRATION: CWS dr20 (1.10.12); FILE MERGED 2004/08/20 09:35:41 dr 1.10.12.5: #i10000# merge error 2004/08/18 11:33:17 dr 1.10.12.4: RESYNC: (1.10-1.11); FILE MERGED 2004/08/11 10:39:03 dr 1.10.12.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 18:28:23 dr 1.10.12.2: #i30205# remove g++ warnings 2004/06/15 16:37:38 dr 1.10.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [158021d093406b0a17c2f8a396f84853767c324f]

INTEGRATION: CWS dr20 (1.1.2); FILE ADDED 2004/08/20 08:48:10 dr 1.1.2.6: #i194# merged cells need equal cell format 2004/08/16 17:36:28 dr 1.1.2.5: #i194# #i30411# code cleanup 2004/08/16 15:25:12 dr 1.1.2.4: #i194# #i30411# performance, memory usage, progress bar 2004/08/12 13:11:05 dr 1.1.2.3: #i194# loop in XclExpRowBuffer::GetOrCreateRow 2004/08/12 12:28:35 dr 1.1.2.2: #i194# default column format 2004/08/11 10:39:03 dr 1.1.2.1: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9cec55cd8c68c870ad77de8d62597f46d5fcde27]

INTEGRATION: CWS dr20 (1.11.112); FILE MERGED 2004/08/20 09:51:34 dr 1.11.112.10: #i10000# merge error 2004/08/20 08:48:10 dr 1.11.112.9: #i194# merged cells need equal cell format 2004/08/17 11:54:18 dr 1.11.112.8: #i30205# Excel filter code cleanup 2004/08/12 13:48:10 dr 1.11.112.7: #i10000# remove XclTextOrient 2004/08/12 12:28:35 dr 1.11.112.6: #i194# default column format 2004/08/11 14:24:24 dr 1.11.112.5: RESYNC: (1.11-1.13); FILE MERGED 2004/08/11 10:39:02 dr 1.11.112.4: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/21 12:58:39 dr 1.11.112.3: #i30205# record list handling 2004/06/15 18:28:22 dr 1.11.112.2: #i30205# remove g++ warnings 2004/06/15 16:37:38 dr 1.11.112.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7127ef8e844fd40759457fde8d06634cb09dfdbd]

INTEGRATION: CWS dr20 (1.3.130); FILE MERGED 2004/08/20 09:51:34 dr 1.3.130.4: #i10000# merge error 2004/08/20 08:48:10 dr 1.3.130.3: #i194# merged cells need equal cell format 2004/08/11 10:39:02 dr 1.3.130.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:37 dr 1.3.130.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [eddd07c41ebbf448538e497accea6cfd96df65bf]

INTEGRATION: CWS dr20 (1.4.282); FILE MERGED 2004/08/11 10:39:01 dr 1.4.282.1: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [a1c026504af5e1db22c34cd6716ed8f2d8c0a8f9]

INTEGRATION: CWS dr20 (1.10.12); FILE MERGED 2004/08/18 11:33:10 dr 1.10.12.4: RESYNC: (1.10-1.11); FILE MERGED 2004/08/16 15:25:12 dr 1.10.12.3: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 10:39:01 dr 1.10.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:37 dr 1.10.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [cff4e9a2c6c22a3fbae0c7d97b694eb302261366]

INTEGRATION: CWS dr20 (1.2.360); FILE MERGED 2004/06/15 16:37:37 dr 1.2.360.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [841c7f50fcfe174e6d88719d5a39bede01f163c4]

INTEGRATION: CWS dr20 (1.2.12); FILE MERGED 2004/08/20 09:51:34 dr 1.2.12.8: #i10000# merge error 2004/08/18 11:33:03 dr 1.2.12.7: RESYNC: (1.4-1.5); FILE MERGED 2004/08/11 17:45:27 dr 1.2.12.6: #i10000# merge errors 2004/08/11 14:24:14 dr 1.2.12.5: RESYNC: (1.3-1.4); FILE MERGED 2004/08/11 11:14:24 dr 1.2.12.4: RESYNC: (1.2-1.3); FILE MERGED 2004/08/11 10:39:00 dr 1.2.12.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/21 12:58:39 dr 1.2.12.2: #i30205# record list handling 2004/06/15 16:37:36 dr 1.2.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [91e515a8e0f0cc6ad683ed0893f55015bfa6759d]

INTEGRATION: CWS dr20 (1.5.12); FILE MERGED 2004/08/11 14:24:04 dr 1.5.12.2: RESYNC: (1.5-1.6); FILE MERGED 2004/06/15 16:37:36 dr 1.5.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f12024a54d35ecaef6f93777f277d51aca014cc3]

INTEGRATION: CWS dr20 (1.9.10); FILE MERGED 2004/08/16 15:25:12 dr 1.9.10.6: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 10:39:00 dr 1.9.10.5: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/07 14:07:33 dr 1.9.10.4: RESYNC: (1.9-1.10); FILE MERGED 2004/06/21 12:58:39 dr 1.9.10.3: #i30205# record list handling 2004/06/16 17:21:51 dr 1.9.10.2: #i30350# do not create new sheet refs while writing stream 2004/06/15 16:37:36 dr 1.9.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d4f7c5078d596e3b72c12da57435dddc155e50b7]

INTEGRATION: CWS dr20 (1.13.12); FILE MERGED 2004/08/16 15:25:12 dr 1.13.12.5: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 17:45:26 dr 1.13.12.4: #i10000# merge errors 2004/08/11 14:23:54 dr 1.13.12.3: RESYNC: (1.13-1.14); FILE MERGED 2004/08/11 10:39:00 dr 1.13.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:35 dr 1.13.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6f26c809b383dbf014e0e735f28ba6e61637ee50]

INTEGRATION: CWS dr20 (1.1.2); FILE ADDED 2004/08/11 10:38:59 dr 1.1.2.7: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 11:36:58 dr 1.1.2.6: #i10000# merge errors 2004/07/07 15:20:49 dr 1.1.2.5: #i10000# merge conflict 2004/06/22 14:12:13 dr 1.1.2.4: #i30543# export Printable property for controls 2004/06/21 12:58:38 dr 1.1.2.3: #i30205# record list handling 2004/06/15 18:28:21 dr 1.1.2.2: #i30205# remove g++ warnings 2004/06/15 16:37:35 dr 1.1.2.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [82bff877fa47f1380f83efa887b87e43f4707b34]

INTEGRATION: CWS dr20 (1.9.12); FILE MERGED 2004/08/20 08:48:09 dr 1.9.12.6: #i194# merged cells need equal cell format 2004/08/16 15:25:11 dr 1.9.12.5: #i194# #i30411# performance, memory usage, progress bar 2004/08/11 10:38:59 dr 1.9.12.4: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/21 12:58:38 dr 1.9.12.3: #i30205# record list handling 2004/06/16 17:21:51 dr 1.9.12.2: #i30350# do not create new sheet refs while writing stream 2004/06/15 16:37:34 dr 1.9.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f32eeefb97a0858e62bc21ab125918615a571888]

INTEGRATION: CWS dr20 (1.46.2); FILE MERGED 2004/08/23 12:55:12 dr 1.46.2.3: #i31882# ignore charts embedded in charts 2004/08/20 08:36:53 dr 1.46.2.2: #i33215# number format in cell styles lost 2004/08/20 08:33:53 dr 1.46.2.1: #i29930# different warnings for too many rows/cols/sheets


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [af2ad3788d087f9a20ae22de95886e7fa9e750f4]

INTEGRATION: CWS dr20 (1.25.12); FILE MERGED 2004/08/18 11:32:55 dr 1.25.12.3: RESYNC: (1.25-1.26); FILE MERGED 2004/08/11 10:38:59 dr 1.25.12.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:34 dr 1.25.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d6c7aed5b056374d6a3208866974cba4e6c1d936]

INTEGRATION: CWS dr20 (1.61.12); FILE MERGED 2004/08/18 11:32:47 dr 1.61.12.5: RESYNC: (1.62-1.63); FILE MERGED 2004/08/11 14:23:22 dr 1.61.12.4: RESYNC: (1.61-1.62); FILE MERGED 2004/08/11 10:38:59 dr 1.61.12.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 14:31:44 dr 1.61.12.2: #i30411# #i27407# export of def row format, step 1 2004/06/15 16:37:33 dr 1.61.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [da116e4dbe2d359a91698a5d8591bd2dca198823]

INTEGRATION: CWS dr20 (1.19.2); FILE MERGED 2004/08/20 08:33:53 dr 1.19.2.1: #i29930# different warnings for too many rows/cols/sheets


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f47dbd64d4c89c1afbb6d38d0f0ddfeb1805ead4]

INTEGRATION: CWS dr20 (1.47.10); FILE MERGED 2004/08/18 11:32:31 dr 1.47.10.4: RESYNC: (1.48-1.49); FILE MERGED 2004/08/11 10:38:59 dr 1.47.10.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/07 14:07:03 dr 1.47.10.2: RESYNC: (1.47-1.48); FILE MERGED 2004/06/15 18:28:21 dr 1.47.10.1: #i30205# remove g++ warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7b20c3fc1f003d1da13db67110f1f6627fbc97aa]

INTEGRATION: CWS dr20 (1.72.10); FILE MERGED 2004/08/11 14:23:01 dr 1.72.10.8: RESYNC: (1.73-1.74); FILE MERGED 2004/08/11 10:38:58 dr 1.72.10.7: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 14:31:43 dr 1.72.10.6: #i30411# #i27407# export of def row format, step 1 2004/07/09 11:36:58 dr 1.72.10.5: #i10000# merge errors 2004/07/07 14:06:55 dr 1.72.10.4: RESYNC: (1.72-1.73); FILE MERGED 2004/06/17 15:06:08 dr 1.72.10.3: #i27407# find and store default row format 2004/06/15 18:28:21 dr 1.72.10.2: #i30205# remove g++ warnings 2004/06/15 16:37:33 dr 1.72.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [6b7e74f8a6229f6fefb1d3567f6b67081adce564]

INTEGRATION: CWS ooo20040704 (1.45.84); FILE MERGED 2004/08/09 14:45:01 vg 1.45.84.2: RESYNC MERGED 1.45 1.46 Everything below this line will be added to the revision comment. 2004/06/29 12:58:13 cmc 1.45.84.1: #i30801# allow using system stl if possible


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [113fd94a7bf4174d206574128e787431c094c000]

INTEGRATION: CWS dr20 (1.32.12); FILE MERGED 2004/08/18 11:32:24 dr 1.32.12.2: RESYNC: (1.32-1.33); FILE MERGED 2004/06/15 16:37:32 dr 1.32.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [4cf752d20565e5398dd5203c1d4a7073972792ba]

INTEGRATION: CWS dr20 (1.92.10); FILE MERGED 2004/08/20 08:40:06 dr 1.92.10.5: #i30816# ignore all objects with wrong (null) size, better progress bar 2004/08/18 11:32:16 dr 1.92.10.4: RESYNC: (1.94-1.97); FILE MERGED 2004/08/11 14:22:51 dr 1.92.10.3: RESYNC: (1.93-1.94); FILE MERGED 2004/07/07 14:06:46 dr 1.92.10.2: RESYNC: (1.92-1.93); FILE MERGED 2004/06/15 16:37:32 dr 1.92.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3c60079ffdb3c46657167fcf4bc7a711ab3239d4]

INTEGRATION: CWS dr20 (1.25.12); FILE MERGED 2004/08/18 11:32:00 dr 1.25.12.4: RESYNC: (1.28-1.29); FILE MERGED 2004/08/11 14:22:24 dr 1.25.12.3: RESYNC: (1.27-1.28); FILE MERGED 2004/07/07 14:06:26 dr 1.25.12.2: RESYNC: (1.25-1.27); FILE MERGED 2004/06/15 16:37:31 dr 1.25.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [24371e17b223d8ad6591454394eb6882f87910f8]

INTEGRATION: CWS dr20 (1.52.10); FILE MERGED 2004/08/16 15:25:11 dr 1.52.10.9: #i194# #i30411# performance, memory usage, progress bar 2004/08/12 12:28:35 dr 1.52.10.8: #i194# default column format 2004/08/11 10:38:58 dr 1.52.10.7: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/09 14:31:42 dr 1.52.10.6: #i30411# #i27407# export of def row format, step 1 2004/07/07 14:06:05 dr 1.52.10.5: RESYNC: (1.52-1.53); FILE MERGED 2004/06/21 12:58:38 dr 1.52.10.4: #i30205# record list handling 2004/06/17 15:06:08 dr 1.52.10.3: #i27407# find and store default row format 2004/06/15 18:28:21 dr 1.52.10.2: #i30205# remove g++ warnings 2004/06/15 16:37:31 dr 1.52.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [73255d420ac6e770b0a454b4a6fa61770b9b33eb]

INTEGRATION: CWS dr20 (1.22.12); FILE MERGED 2004/08/18 11:31:35 dr 1.22.12.4: RESYNC: (1.22-1.23); FILE MERGED 2004/08/11 10:38:58 dr 1.22.12.3: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/07/12 10:54:23 dr 1.22.12.2: #i10000# merge conflict 2004/06/15 16:37:30 dr 1.22.12.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f423fb4fa219533433a19dd366c914ab04adaed6]

INTEGRATION: CWS dr20 (1.64.10); FILE MERGED 2004/08/23 13:54:41 dr 1.64.10.5: #i10000# merge conflict 2004/08/18 11:31:27 dr 1.64.10.4: RESYNC: (1.67-1.68); FILE MERGED 2004/08/11 14:21:13 dr 1.64.10.3: RESYNC: (1.64-1.67); FILE MERGED 2004/08/11 10:38:57 dr 1.64.10.2: #i12577# #i16277# #i24129# #i31482# #i24672# #i27407# #i30411# rework of cell table export - default row/column formats and shared formulas 2004/06/15 16:37:29 dr 1.64.10.1: #i30205# Excel filter code cleanup - rowlimit changes: SCCOL/SCROW/SCTAB usage - type correctness: USHORT vs. sal_uInt16, ULONG/size_t vs. sal_uInt32 - removed compiler warnings


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5a3b08e8f0f370e896ca37708b81a411a52b0e97]

INTEGRATION: CWS dr20 (1.28.4); FILE MERGED 2004/08/12 12:26:39 dr 1.28.4.1: #i194# default column format


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [ed72cc0eee4ce7ba5da5c740c106928851a53c46]

INTEGRATION: CWS dr20 (1.13.12); FILE MERGED 2004/06/24 17:01:01 nn 1.13.12.1: #116562# DoRepaint: get the style only if repaint is necessary


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [47c6979d7ea75dcbfee1dcec5ef7e63523b730e4]

INTEGRATION: CWS dr20 (1.11.12); FILE MERGED 2004/08/12 12:26:39 dr 1.11.12.1: #i194# default column format


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [afd9a342fdf46ef03c7f7fab7215dab06d2400b4]

INTEGRATION: CWS dr20 (1.23.12); FILE MERGED 2004/08/12 12:26:17 dr 1.23.12.1: #i194# default column format


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3d23beda183233fb18e7bc29ac6a4fc312edf0bc]

INTEGRATION: CWS dr20 (1.14.50); FILE MERGED 2004/06/25 18:42:21 nn 1.14.50.1: #i28468# don't show error message from ExecuteDrop, reject in AcceptDrop where possible


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [76ae59ac18c383cbb6e41e73095f786b06fa8c8f]

INTEGRATION: CWS dr20 (1.79.2); FILE MERGED 2004/08/12 12:26:17 dr 1.79.2.1: #i194# default column format


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [bb1be08e021e7a28f3d49bb615511fd4f0ba81be]

INTEGRATION: CWS dr20 (1.9.14); FILE MERGED 2004/08/12 12:26:17 dr 1.9.14.1: #i194# default column format


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [583870f2aa4b5a5065bf1d34e26db2d49d972d96]

INTEGRATION: CWS ooo20040704 (1.4.58); FILE MERGED 2004/06/29 12:58:13 cmc 1.4.58.1: #i30801# allow using system stl if possible


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [6905b2cbd5ce5bb117eace2a5ba25bce621114e6]

INTEGRATION: CWS ooo20040704 (1.49.80); FILE MERGED 2004/08/09 14:44:38 vg 1.49.80.2: RESYNC MERGED 1.49 1.50 Everything below this line will be added to the revision comment. 2004/06/29 12:58:12 cmc 1.49.80.1: #i30801# allow using system stl if possible


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [95e784fa25666f6932cb878fcd061799917f8811]

INTEGRATION: CWS ooo20040704 (1.12.32); FILE MERGED 2004/06/29 12:58:11 cmc 1.12.32.1: #i30801# allow using system stl if possible


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [648a7afc8886d7d3dc7d15847902479d6bbbbca3]

INTEGRATION: CWS ooo20040704 (1.1.1.1.516); FILE MERGED 2004/06/29 21:03:49 cmc 1.1.1.1.516.1: #i30801# allow using system stl if possible


2004-09-08  Rüdiger Timm  <rt@openoffice.org>  [b2fe2a2f92885a3b4e99bbd8f9542eca31440005]

INTEGRATION: CWS ooo20040704 (1.25.32); FILE MERGED 2004/06/29 12:58:11 cmc 1.25.32.1: #i30801# allow using system stl if possible


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5a4e04a69f595ef08b106b2f3e8f3b27b629eabe]

INTEGRATION: CWS dr12 (1.20.40); FILE MERGED 2004/08/27 08:27:46 sab 1.20.40.4: RESYNC: (1.24-1.25); FILE MERGED 2004/08/12 13:00:23 sab 1.20.40.3: RESYNC: (1.23-1.24); FILE MERGED 2004/07/27 02:48:49 sab 1.20.40.2: RESYNC: (1.20-1.23); FILE MERGED 2004/07/09 16:50:31 jmarmion 1.20.40.1: #i21255# remove preprocessor directives following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [50cf95c0731c06801dfac380d3dfa39f1651167c]

INTEGRATION: CWS dr12 (1.5.280); FILE MERGED 2004/08/26 15:54:41 jmarmion 1.5.280.3: #i32667# changes to support EE_PARA_JUST in detfunc.cxx mean we need to repaint here. 2004/07/27 02:48:26 sab 1.5.280.2: RESYNC: (1.5-1.6); FILE MERGED 2004/02/24 10:16:39 jmarmion 1.5.280.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e1f9dbd70ab571b754855378a743b020fe6aad7d]

INTEGRATION: CWS dr12 (1.4.274); FILE MERGED 2004/07/27 02:46:38 sab 1.4.274.2: RESYNC: (1.4-1.7); FILE MERGED 2004/07/09 16:48:59 jmarmion 1.4.274.1: #i21255# remove preprocessor directives following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e2509a685f23937369dd7a4f05cc59e4c11d1ea1]

INTEGRATION: CWS dr12 (1.3.42); FILE MERGED 2004/07/27 02:44:34 sab 1.3.42.2: RESYNC: (1.3-1.4); FILE MERGED 2004/07/09 16:48:59 jmarmion 1.3.42.1: #i21255# remove preprocessor directives following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [64ed66bdf45ea9e783033a9e8ffb0ae8e79c072e]

INTEGRATION: CWS dr12 (1.32.14); FILE MERGED 2004/08/27 08:25:49 sab 1.32.14.6: RESYNC: (1.38-1.39); FILE MERGED 2004/08/12 12:58:47 sab 1.32.14.5: RESYNC: (1.37-1.38); FILE MERGED 2004/07/27 02:43:02 sab 1.32.14.4: RESYNC: (1.35-1.37); FILE MERGED 2004/05/06 11:58:51 dr 1.32.14.3: RESYNC: (1.33-1.35); FILE MERGED 2004/02/25 10:10:36 dr 1.32.14.2: RESYNC: (1.32-1.33); FILE MERGED 2004/02/24 10:16:38 jmarmion 1.32.14.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [22741c6af2519ada5419dc0ef3fcb15e7678d9eb]

INTEGRATION: CWS dr12 (1.12.146); FILE MERGED 2004/07/27 02:40:28 sab 1.12.146.2: RESYNC: (1.12-1.13); FILE MERGED 2004/02/24 10:16:38 jmarmion 1.12.146.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c8d59c1bdad27d9ad76880cbef9fdff708a16da9]

INTEGRATION: CWS dr12 (1.60.6); FILE MERGED 2004/08/27 08:24:59 sab 1.60.6.2: RESYNC: (1.60-1.61); FILE MERGED 2004/08/26 15:52:32 jmarmion 1.60.6.1: #i32666# support activation of the context menu when positioned on a note.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7a8db2791611545e041aa282f164db73f0680ecf]

INTEGRATION: CWS dr12 (1.23.42); FILE MERGED 2004/08/27 08:24:50 sab 1.23.42.6: RESYNC: (1.28-1.30); FILE MERGED 2004/08/26 15:49:54 jmarmion 1.23.42.5: #i32673# support note resizing from the Position and Size context menu. 2004/08/12 12:57:08 sab 1.23.42.4: RESYNC: (1.25-1.28); FILE MERGED 2004/07/29 08:01:15 sab 1.23.42.3: #i21253#; fix merge problems 2004/07/27 02:39:18 sab 1.23.42.2: RESYNC: (1.23-1.25); FILE MERGED 2004/04/19 17:58:20 jmarmion 1.23.42.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1330725132d99d8b1144e4cc5523784bf1853098]

INTEGRATION: CWS dr12 (1.16.42); FILE MERGED 2004/08/12 12:56:21 sab 1.16.42.3: RESYNC: (1.18-1.19); FILE MERGED 2004/07/27 02:36:54 sab 1.16.42.2: RESYNC: (1.16-1.18); FILE MERGED 2004/07/09 16:48:58 jmarmion 1.16.42.1: #i21255# remove preprocessor directives following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [25270e69cc34b2ec24b023062de09e96b8e83c5d]

INTEGRATION: CWS dr12 (1.25.272); FILE MERGED 2004/08/12 12:56:12 sab 1.25.272.5: RESYNC: (1.29-1.31); FILE MERGED 2004/07/27 02:36:45 sab 1.25.272.4: RESYNC: (1.27-1.29); FILE MERGED 2004/05/06 11:57:29 dr 1.25.272.3: RESYNC: (1.26-1.27); FILE MERGED 2004/02/25 10:08:00 dr 1.25.272.2: RESYNC: (1.25-1.26); FILE MERGED 2004/02/24 10:16:38 jmarmion 1.25.272.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [18a2c9a19a5617fbd61c1e096c5e010142688e2d]

INTEGRATION: CWS dr12 (1.22.8); FILE MERGED 2004/08/12 12:56:03 sab 1.22.8.5: RESYNC: (1.26-1.29); FILE MERGED 2004/07/27 02:36:35 sab 1.22.8.4: RESYNC: (1.25-1.26); FILE MERGED 2004/05/06 11:57:21 dr 1.22.8.3: RESYNC: (1.23-1.25); FILE MERGED 2004/02/25 10:07:49 dr 1.22.8.2: RESYNC: (1.22-1.23); FILE MERGED 2004/02/24 10:16:37 jmarmion 1.22.8.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f9cf2b8832d4bde49f50633ae1b98e1307b4a829]

INTEGRATION: CWS dr12 (1.2.308); FILE MERGED 2004/07/27 02:35:04 sab 1.2.308.2: RESYNC: (1.2-1.3); FILE MERGED 2004/02/24 10:15:48 jmarmion 1.2.308.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [cc4a7ffc5da832f3efa35c6021a6fbb7b3e97d3b]

INTEGRATION: CWS dr12 (1.18.280); FILE MERGED 2004/02/24 10:15:48 jmarmion 1.18.280.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e7abca6d0944f77145b5fc0e0fc705a8548cdf2a]

INTEGRATION: CWS dr12 (1.42.38); FILE MERGED 2004/08/27 08:23:47 sab 1.42.38.3: RESYNC: (1.43-1.44); FILE MERGED 2004/07/27 02:33:41 sab 1.42.38.2: RESYNC: (1.42-1.43); FILE MERGED 2004/07/09 16:51:55 jmarmion 1.42.38.1: #i21255# add support for creation of DrawLayer() following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [eada37af72f967a57ee4b58bdfa43cf60fc37941]

INTEGRATION: CWS dr12 (1.4.170); FILE MERGED 2004/07/27 02:30:18 sab 1.4.170.4: RESYNC: (1.5-1.6); FILE MERGED 2004/04/19 17:57:44 jmarmion 1.4.170.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:15:18 dr 1.4.170.2: RESYNC: (1.4-1.5); FILE MERGED 2004/02/24 10:15:05 jmarmion 1.4.170.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [277ec6d01e5e4854cac6fd87092b13f2a780ca50]

INTEGRATION: CWS dr12 (1.7.278); FILE MERGED 2004/07/29 08:01:03 sab 1.7.278.6: #i21253#; fix merge problems 2004/07/27 02:30:07 sab 1.7.278.5: RESYNC: (1.9-1.10); FILE MERGED 2004/07/09 16:47:44 jmarmion 1.7.278.4: #i21255# remove preprocessor directives following note enhancements. 2004/05/06 11:54:56 dr 1.7.278.3: RESYNC: (1.8-1.9); FILE MERGED 2004/02/25 10:15:11 dr 1.7.278.2: RESYNC: (1.7-1.8); FILE MERGED 2004/02/24 10:15:04 jmarmion 1.7.278.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e9aa64a39eb79b1189ed55632fe29ae6c4d27c03]

INTEGRATION: CWS dr12 (1.4.74); FILE MERGED 2004/07/27 02:29:58 sab 1.4.74.2: RESYNC: (1.4-1.5); FILE MERGED 2004/07/09 16:47:43 jmarmion 1.4.74.1: #i21255# remove preprocessor directives following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [790b409fff585788fbcf0ac8de3a68e2120a0c92]

INTEGRATION: CWS dr12 (1.11.42); FILE MERGED 2004/08/27 08:23:05 sab 1.11.42.4: RESYNC: (1.13-1.14); FILE MERGED 2004/08/12 12:54:37 sab 1.11.42.3: RESYNC: (1.12-1.13); FILE MERGED 2004/07/27 02:29:48 sab 1.11.42.2: RESYNC: (1.11-1.12); FILE MERGED 2004/07/09 16:47:43 jmarmion 1.11.42.1: #i21255# remove preprocessor directives following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f60f41acb5ceed8f9e903729619f171e247bd304]

INTEGRATION: CWS dr12 (1.1.1.1.316); FILE MERGED 2004/07/27 02:14:42 sab 1.1.1.1.316.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/02/24 10:00:37 jmarmion 1.1.1.1.316.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [34d8374155bc3bd675fbb6e506fc5acab65c9ef9]

INTEGRATION: CWS dr12 (1.3.280); FILE MERGED 2004/04/19 17:52:48 jmarmion 1.3.280.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [750e8cf9561fbf56da5fcb9731ed3c4e5bbe63d6]

INTEGRATION: CWS dr12 (1.3.40); FILE MERGED 2004/08/26 15:50:42 jmarmion 1.3.40.3: #i32673# support note resizing from the Position and Size context menu. 2004/07/27 02:04:40 sab 1.3.40.2: RESYNC: (1.3-1.4); FILE MERGED 2004/04/19 17:52:48 jmarmion 1.3.40.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [2ff646df1b91e04320dcad992a483b7b9291a40f]

INTEGRATION: CWS dr12 (1.7.170); FILE MERGED 2004/07/27 02:04:17 sab 1.7.170.3: RESYNC: (1.8-1.9); FILE MERGED 2004/02/25 10:18:18 dr 1.7.170.2: RESYNC: (1.7-1.8); FILE MERGED 2004/02/24 10:00:10 jmarmion 1.7.170.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3c251ac6c9e3e160d724c176088ba09d43801cd4]

INTEGRATION: CWS dr12 (1.3.308); FILE MERGED 2004/08/26 15:46:40 jmarmion 1.3.308.4: #i32673# maintain height re-sizing in notes. 2004/07/27 01:59:58 sab 1.3.308.3: RESYNC: (1.3-1.4); FILE MERGED 2004/04/19 17:57:08 jmarmion 1.3.308.2: #i25335,i26291# note sizing and text box enhancements. 2004/02/24 10:14:15 jmarmion 1.3.308.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3cb8178c534487aba3e0be5e4ef436de9e0542a2]

INTEGRATION: CWS dr12 (1.14.40); FILE MERGED 2004/08/15 16:19:16 jmarmion 1.14.40.5: #i32664# fix the inconsistency when clicking on a note object. 2004/08/12 12:48:14 sab 1.14.40.4: RESYNC: (1.15-1.16); FILE MERGED 2004/07/29 08:00:51 sab 1.14.40.3: #i21253#; fix merge problems 2004/07/27 01:59:51 sab 1.14.40.2: RESYNC: (1.14-1.15); FILE MERGED 2004/04/19 17:57:08 jmarmion 1.14.40.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b158c666a4c8c404496b0abe57677305a30722aa]

INTEGRATION: CWS dr12 (1.5.96); FILE MERGED 2004/08/15 16:19:16 jmarmion 1.5.96.1: #i32664# fix the inconsistency when clicking on a note object.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e7338ab32e864c0f51bc9aacfcf2280e4e54298b]

INTEGRATION: CWS dr12 (1.5.278); FILE MERGED 2004/08/26 15:44:28 jmarmion 1.5.278.6: #i32666#  tidy up comment as part of this fix. 2004/08/15 16:19:15 jmarmion 1.5.278.5: #i32664# fix the inconsistency when clicking on a note object. 2004/07/29 08:00:51 sab 1.5.278.4: #i21253#; fix merge problems 2004/07/27 01:59:35 sab 1.5.278.3: RESYNC: (1.5-1.6); FILE MERGED 2004/06/21 17:17:22 jmarmion 1.5.278.2: #i25335# support mouse move for calc svdcaption objects. 2004/04/19 17:57:07 jmarmion 1.5.278.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e81825567bc32664d13c0b2a3f9d507e255522e0]

INTEGRATION: CWS dr12 (1.9.170); FILE MERGED 2004/07/29 08:00:51 sab 1.9.170.3: #i21253#; fix merge problems 2004/07/27 01:59:10 sab 1.9.170.2: RESYNC: (1.9-1.10); FILE MERGED 2004/04/19 17:57:07 jmarmion 1.9.170.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b796663692a33604197e1e8c4a7b198b485a21fc]

INTEGRATION: CWS dr12 (1.18.170); FILE MERGED 2004/08/12 12:47:54 sab 1.18.170.3: RESYNC: (1.19-1.20); FILE MERGED 2004/02/25 10:20:59 dr 1.18.170.2: RESYNC: (1.18-1.19); FILE MERGED 2004/02/24 10:14:14 jmarmion 1.18.170.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [0ec3f895319cd534f019353232616efa82ccbab8]

INTEGRATION: CWS dr12 (1.10.40); FILE MERGED 2004/08/12 12:47:46 sab 1.10.40.5: RESYNC: (1.14-1.18); FILE MERGED 2004/07/29 08:00:51 sab 1.10.40.4: #i21253#; fix merge problems 2004/07/27 01:58:18 sab 1.10.40.3: RESYNC: (1.11-1.14); FILE MERGED 2004/05/06 11:45:21 dr 1.10.40.2: RESYNC: (1.10-1.11); FILE MERGED 2004/04/19 17:57:07 jmarmion 1.10.40.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [58d386e82bfc6e9466fef2965fec018d51241443]

INTEGRATION: CWS dr12 (1.10.46); FILE MERGED 2004/08/12 12:47:38 sab 1.10.46.5: RESYNC: (1.11-1.12); FILE MERGED 2004/07/29 08:00:50 sab 1.10.46.4: #i21253#; fix merge problems 2004/07/27 01:58:02 sab 1.10.46.3: RESYNC: (1.10-1.11); FILE MERGED 2004/07/09 16:54:45 jmarmion 1.10.46.2: #i25335# - disable anchor positions for notes. 2004/06/21 17:13:39 jmarmion 1.10.46.1: #i25335# disable cut/copy for Calc svdcaption objects.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [4e1747551c68897d50b9cce57597f10c6badc165]

INTEGRATION: CWS dr12 (1.3.44); FILE MERGED 2004/08/26 15:48:22 jmarmion 1.3.44.6: #i32673# support note resizing from the Position and Size context menu. 2004/08/12 12:47:30 sab 1.3.44.5: RESYNC: (1.4-1.5); FILE MERGED 2004/08/12 08:55:02 jmarmion 1.3.44.4: #i32673# save note text draw attributes 2004/07/27 01:57:54 sab 1.3.44.3: RESYNC: (1.3-1.4); FILE MERGED 2004/07/09 16:53:34 jmarmion 1.3.44.2: #i26291# ensure that note attributes are saved form toolbar. 2004/04/19 17:57:07 jmarmion 1.3.44.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [39ffddc4289a04799fba7b363da2e2d0cfc52a5d]

INTEGRATION: CWS dr12 (1.11.68); FILE MERGED 2004/07/27 01:56:20 sab 1.11.68.3: RESYNC: (1.11-1.12); FILE MERGED 2004/07/23 20:58:44 sab 1.11.68.2: #i21253#; add formatted notes 2004/07/09 16:46:50 jmarmion 1.11.68.1: #i21255# remove preprocessor directives following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [4534b7d0659e46b4f4d573382c71150231bc70c3]

INTEGRATION: CWS dr12 (1.11.68); FILE MERGED 2004/08/12 12:47:22 sab 1.11.68.4: RESYNC: (1.12-1.13); FILE MERGED 2004/07/27 01:56:13 sab 1.11.68.3: RESYNC: (1.11-1.12); FILE MERGED 2004/07/23 20:58:44 sab 1.11.68.2: #i21253#; add formatted notes 2004/07/09 16:46:49 jmarmion 1.11.68.1: #i21255# remove preprocessor directives following note enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [61a9e702e9041998a1b38ec45717a935bdf691af]

INTEGRATION: CWS dr12 (1.45.36); FILE MERGED 2004/08/12 12:46:51 sab 1.45.36.5: RESYNC: (1.50-1.51); FILE MERGED 2004/07/27 01:55:31 sab 1.45.36.4: RESYNC: (1.48-1.50); FILE MERGED 2004/05/06 11:44:03 dr 1.45.36.3: RESYNC: (1.46-1.48); FILE MERGED 2004/02/25 10:22:20 dr 1.45.36.2: RESYNC: (1.45-1.46); FILE MERGED 2004/02/24 10:13:33 jmarmion 1.45.36.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c0b91e6377c6ed8cb0cbe5a4cbd1c87c6bedceb6]

INTEGRATION: CWS dr12 (1.28.92); FILE MERGED 2004/07/27 01:47:20 sab 1.28.92.2: RESYNC: (1.28-1.29); FILE MERGED 2004/02/24 10:12:50 jmarmion 1.28.92.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [734c9dff4aebe2ada8af7cdb929a5e3486973252]

INTEGRATION: CWS dr12 (1.45.28); FILE MERGED 2004/08/27 08:02:33 sab 1.45.28.4: RESYNC: (1.47-1.48); FILE MERGED 2004/08/12 12:42:39 sab 1.45.28.3: RESYNC: (1.46-1.47); FILE MERGED 2004/07/27 01:46:20 sab 1.45.28.2: RESYNC: (1.45-1.46); FILE MERGED 2004/07/23 20:58:27 sab 1.45.28.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [08a37980b1888a51ce214d8ac5244d90aafa3dfb]

INTEGRATION: CWS dr12 (1.73.14); FILE MERGED 2004/08/12 12:42:11 sab 1.73.14.2: RESYNC: (1.73-1.76); FILE MERGED 2004/08/09 13:44:38 sab 1.73.14.1: #i21253#; make old notes work


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [144ce592443df26f1aaaecbf707af466859fe367]

INTEGRATION: CWS dr12 (1.97.14); FILE MERGED 2004/08/27 08:02:15 sab 1.97.14.3: RESYNC: (1.100-1.101); FILE MERGED 2004/08/12 12:42:03 sab 1.97.14.2: RESYNC: (1.97-1.100); FILE MERGED 2004/08/09 13:44:37 sab 1.97.14.1: #i21253#; make old notes work


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e8353dbdc7598cccea45786c86f06827210a2d50]

INTEGRATION: CWS dr12 (1.73.170); FILE MERGED 2004/07/27 01:45:17 sab 1.73.170.2: RESYNC: (1.73-1.75); FILE MERGED 2004/07/23 20:58:27 sab 1.73.170.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1a96a2034a7399f1875979329f0c80ec3b5232a2]

INTEGRATION: CWS dr12 (1.174.26); FILE MERGED 2004/08/13 07:36:06 sab 1.174.26.4: #i21253#; use SCTAB instead of sal_Int32 2004/08/09 13:44:37 sab 1.174.26.3: #i21253#; make old notes work 2004/07/27 01:45:10 sab 1.174.26.2: RESYNC: (1.174-1.178); FILE MERGED 2004/07/23 20:58:26 sab 1.174.26.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [693305959cb880f6d6a7118c4ab03c0d42cffd2e]

INTEGRATION: CWS dr12 (1.19.274); FILE MERGED 2004/08/09 13:44:37 sab 1.19.274.3: #i21253#; make old notes work 2004/07/30 11:48:48 sab 1.19.274.2: #i21253#; make notes work 2004/07/23 20:58:26 sab 1.19.274.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [8c4cfbad823f55a1cda96b5f1814bb7f1ac7fb85]

INTEGRATION: CWS dr12 (1.75.52); FILE MERGED 2004/08/09 13:44:36 sab 1.75.52.4: #i21253#; make old notes work 2004/07/27 01:44:17 sab 1.75.52.3: RESYNC: (1.75-1.77); FILE MERGED 2004/07/23 20:58:26 sab 1.75.52.2: #i21253#; add formatted notes 2004/02/24 10:12:04 jmarmion 1.75.52.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [ddefc3fb4ba1174b201045b994c88d5e8711e590]

INTEGRATION: CWS dr12 (1.4.306); FILE MERGED 2004/08/09 13:44:36 sab 1.4.306.3: #i21253#; make old notes work 2004/07/27 01:44:10 sab 1.4.306.2: RESYNC: (1.4-1.5); FILE MERGED 2004/07/23 20:58:26 sab 1.4.306.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b259f30ddd72396b9b3a028c789dba36b4c349ae]

INTEGRATION: CWS dr12 (1.8.290); FILE MERGED 2004/08/09 13:44:36 sab 1.8.290.4: #i21253#; make old notes work 2004/07/30 11:48:48 sab 1.8.290.3: #i21253#; make notes work 2004/07/27 01:44:03 sab 1.8.290.2: RESYNC: (1.8-1.9); FILE MERGED 2004/07/23 20:58:26 sab 1.8.290.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6ba8c6bbd8a29d13bfbca2b4cf3f5613f0738caa]

INTEGRATION: CWS dr12 (1.8.280); FILE MERGED 2004/07/23 20:58:25 sab 1.8.280.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [85cc05f0f6ec5ea62d7d406e06db8c34a146ac9a]

INTEGRATION: CWS dr12 (1.21.280); FILE MERGED 2004/07/23 20:58:25 sab 1.21.280.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [eafebd2f43e73221734747e1e794b48f7fe08db6]

INTEGRATION: CWS dr12 (1.5.300); FILE MERGED 2004/07/23 20:58:25 sab 1.5.300.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3de0fb5ca912336d6c41929f6d1858076b3030d0]

INTEGRATION: CWS dr12 (1.4.300); FILE MERGED 2004/07/23 20:58:25 sab 1.4.300.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3ac9486f058623f39884d7cbd0beb67ca2d19b83]

INTEGRATION: CWS dr12 (1.25.52); FILE MERGED 2004/07/27 01:42:55 sab 1.25.52.2: RESYNC: (1.25-1.26); FILE MERGED 2004/07/23 20:58:24 sab 1.25.52.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6439e109bc0ba0d865d5fd8eb1f6a3dc1aa28145]

INTEGRATION: CWS dr12 (1.36.52); FILE MERGED 2004/07/27 01:42:48 sab 1.36.52.2: RESYNC: (1.36-1.37); FILE MERGED 2004/07/23 20:58:24 sab 1.36.52.1: #i21253#; add formatted notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [660f140d1355321d66b5145dbb7c3f432af44da5]

INTEGRATION: CWS dr12 (1.61.34); FILE MERGED 2004/08/26 15:42:49 jmarmion 1.61.34.8: #i32667#  support EE_PARA_JUST in notes. 2004/08/12 08:53:54 jmarmion 1.61.34.7: #i32667# export horizontal and vertical note box attributes 2004/07/27 01:41:30 sab 1.61.34.6: RESYNC: (1.65-1.68); FILE MERGED 2004/07/09 16:44:45 jmarmion 1.61.34.5: #i21255# add support for creation of DrawLayer() for notes. 2004/05/06 11:38:04 dr 1.61.34.4: RESYNC: (1.63-1.65); FILE MERGED 2004/04/19 17:55:54 jmarmion 1.61.34.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:26:38 dr 1.61.34.2: RESYNC: (1.61-1.63); FILE MERGED 2004/02/24 10:11:26 jmarmion 1.61.34.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5435284d3c3a98fbc8605a370f553829120b755d]

INTEGRATION: CWS dr12 (1.11.40); FILE MERGED 2004/07/27 01:41:23 sab 1.11.40.3: RESYNC: (1.12-1.13); FILE MERGED 2004/05/06 11:37:54 dr 1.11.40.2: RESYNC: (1.11-1.12); FILE MERGED 2004/04/19 17:55:53 jmarmion 1.11.40.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [69b5e1a2f1072538b730bd7692ad3d21c8a9f3fc]

INTEGRATION: CWS dr12 (1.9.170); FILE MERGED 2004/08/27 08:01:50 sab 1.9.170.4: RESYNC: (1.11-1.12); FILE MERGED 2004/08/12 12:40:38 sab 1.9.170.3: RESYNC: (1.10-1.11); FILE MERGED 2004/07/27 01:40:22 sab 1.9.170.2: RESYNC: (1.9-1.10); FILE MERGED 2004/02/24 10:10:47 jmarmion 1.9.170.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [bd90f5f72acfc155532f226f18e06d6c67f6840c]

INTEGRATION: CWS dr12 (1.3.64); FILE MERGED 2004/07/27 01:38:37 sab 1.3.64.3: RESYNC: (1.4-1.5); FILE MERGED 2004/05/06 11:37:09 dr 1.3.64.2: RESYNC: (1.3-1.4); FILE MERGED 2004/02/24 10:02:03 jmarmion 1.3.64.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3e821d8cfb510a78206f89ab523cebcb524768b5]

INTEGRATION: CWS dr12 (1.5.42); FILE MERGED 2004/07/27 01:36:17 sab 1.5.42.3: RESYNC: (1.6-1.9); FILE MERGED 2004/05/06 11:35:04 dr 1.5.42.2: RESYNC: (1.5-1.6); FILE MERGED 2004/04/19 17:52:04 jmarmion 1.5.42.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [67c315f7e29e22b8dbc078e2b51ace2afb8c8222]

INTEGRATION: CWS dr12 (1.7.62); FILE MERGED 2004/08/12 12:37:38 sab 1.7.62.4: RESYNC: (1.9-1.10); FILE MERGED 2004/07/27 01:35:33 sab 1.7.62.3: RESYNC: (1.8-1.9); FILE MERGED 2004/05/06 11:34:22 dr 1.7.62.2: RESYNC: (1.7-1.8); FILE MERGED 2004/02/24 10:01:41 jmarmion 1.7.62.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [bb5a9e4b06e105a719dabd1c8f8502e8618c4d77]

INTEGRATION: CWS dr12 (1.32.60); FILE MERGED 2004/08/12 08:53:25 jmarmion 1.32.60.6: #i32667# export horizontal and vertical note box attributes 2004/07/27 01:35:16 sab 1.32.60.5: RESYNC: (1.35-1.37); FILE MERGED 2004/05/06 11:33:59 dr 1.32.60.4: RESYNC: (1.33-1.35); FILE MERGED 2004/04/19 17:52:04 jmarmion 1.32.60.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:27:05 dr 1.32.60.2: RESYNC: (1.32-1.33); FILE MERGED 2004/02/24 10:01:17 jmarmion 1.32.60.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [57629b8b83b1b36c60aaa33fddf2be3f074b3383]

INTEGRATION: CWS dr12 (1.6.42); FILE MERGED 2004/04/19 17:52:03 jmarmion 1.6.42.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [43cff762e42a0f59e47f627a18448f7bbe92bf32]

INTEGRATION: CWS dr12 (1.3.64); FILE MERGED 2004/07/27 01:29:18 sab 1.3.64.3: RESYNC: (1.4-1.5); FILE MERGED 2004/05/06 11:32:01 dr 1.3.64.2: RESYNC: (1.3-1.4); FILE MERGED 2004/02/24 10:09:49 jmarmion 1.3.64.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [2fa445ad6db317d067b62d28abd8aaebbff15a4b]

INTEGRATION: CWS dr12 (1.10.32); FILE MERGED 2004/08/27 07:55:38 sab 1.10.32.8: RESYNC: (1.18-1.19); FILE MERGED 2004/08/12 12:34:32 sab 1.10.32.7: RESYNC: (1.17-1.18); FILE MERGED 2004/07/29 08:00:36 sab 1.10.32.6: #i21253#; fix merge problems 2004/07/27 01:27:15 sab 1.10.32.5: RESYNC: (1.14-1.17); FILE MERGED 2004/05/06 11:29:56 dr 1.10.32.4: RESYNC: (1.12-1.14); FILE MERGED 2004/04/19 17:55:14 jmarmion 1.10.32.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:29:40 dr 1.10.32.2: RESYNC: (1.10-1.12); FILE MERGED 2004/02/24 10:09:48 jmarmion 1.10.32.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5b75bfd753b7cf7c0aa4e963552a251a690e863a]

INTEGRATION: CWS dr12 (1.10.62); FILE MERGED 2004/08/12 12:33:50 sab 1.10.62.4: RESYNC: (1.13-1.14); FILE MERGED 2004/07/27 01:26:21 sab 1.10.62.3: RESYNC: (1.11-1.13); FILE MERGED 2004/05/06 11:28:49 dr 1.10.62.2: RESYNC: (1.10-1.11); FILE MERGED 2004/02/24 10:09:48 jmarmion 1.10.62.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [0e01a41bb1f10359d679c24cf10316921486d28c]

INTEGRATION: CWS dr12 (1.58.26); FILE MERGED 2004/08/27 07:54:35 sab 1.58.26.6: RESYNC: (1.62-1.63); FILE MERGED 2004/08/12 12:33:31 sab 1.58.26.5: RESYNC: (1.61-1.62); FILE MERGED 2004/07/27 01:25:33 sab 1.58.26.4: RESYNC: (1.60-1.61); FILE MERGED 2004/05/06 11:28:21 dr 1.58.26.3: RESYNC: (1.59-1.60); FILE MERGED 2004/02/25 10:29:05 dr 1.58.26.2: RESYNC: (1.58-1.59); FILE MERGED 2004/02/24 10:09:48 jmarmion 1.58.26.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e2e30a29bb7ff392f7c8532192cffe659772364a]

INTEGRATION: CWS dr12 (1.87.60); FILE MERGED 2004/08/27 07:53:58 sab 1.87.60.10: RESYNC: (1.94-1.98); FILE MERGED 2004/08/12 12:32:56 sab 1.87.60.9: RESYNC: (1.93-1.94); FILE MERGED 2004/08/03 14:30:18 sab 1.87.60.8: #i21253#; don't show note 2004/07/29 08:00:35 sab 1.87.60.7: #i21253#; fix merge problems 2004/07/27 01:24:24 sab 1.87.60.6: RESYNC: (1.90-1.93); FILE MERGED 2004/07/10 15:06:54 jmarmion 1.87.60.5: #i26291# - no need to draw - now done in xiescher::XclImpEscherNote::Apply(). 2004/05/06 11:27:27 dr 1.87.60.4: RESYNC: (1.89-1.90); FILE MERGED 2004/04/19 17:55:13 jmarmion 1.87.60.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:28:41 dr 1.87.60.2: RESYNC: (1.87-1.89); FILE MERGED 2004/02/24 10:09:48 jmarmion 1.87.60.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e71a6c0efafe100d5fd073dc3ef5484ca5238fed]

INTEGRATION: CWS dr12 (1.15.16); FILE MERGED 2004/07/27 01:19:07 sab 1.15.16.3: RESYNC: (1.16-1.19); FILE MERGED 2004/05/06 11:22:39 dr 1.15.16.2: RESYNC: (1.15-1.16); FILE MERGED 2004/02/24 10:08:41 jmarmion 1.15.16.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6a52ee3a77af557dc94217be1496d2495d1768af]

INTEGRATION: CWS dr12 (1.20.6); FILE MERGED 2004/08/27 07:52:31 sab 1.20.6.5: RESYNC: (1.23-1.24); FILE MERGED 2004/08/12 12:30:52 sab 1.20.6.4: RESYNC: (1.22-1.23); FILE MERGED 2004/07/27 01:18:40 sab 1.20.6.3: RESYNC: (1.21-1.22); FILE MERGED 2004/02/25 10:30:42 dr 1.20.6.2: RESYNC: (1.20-1.21); FILE MERGED 2004/02/24 10:08:40 jmarmion 1.20.6.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [08696ef7eb30a872c36237b24e6db3ef5edab832]

INTEGRATION: CWS dr12 (1.12.38); FILE MERGED 2004/08/27 07:52:23 sab 1.12.38.11: RESYNC: (1.14-1.15); FILE MERGED 2004/08/26 15:39:35 jmarmion 1.12.38.10: #i32667#  support EE_PARA_JUST in notes. 2004/08/15 16:59:29 jmarmion 1.12.38.9: #i32669# fix this dynamic rtl for m50 2004/08/12 08:52:07 jmarmion 1.12.38.8: #i32669# add dynamic RTL/LTR support to Notes #i32673# enable horizontal and vertical note box attributes 2004/07/29 08:00:19 sab 1.12.38.7: #i21253#; fix merge problems 2004/07/27 01:18:33 sab 1.12.38.6: RESYNC: (1.13-1.14); FILE MERGED 2004/07/09 16:44:00 jmarmion 1.12.38.5: #i25335# - set anchor to page for notes. 2004/06/21 17:11:53 jmarmion 1.12.38.4: #i25335# add support for fixed tail in Calc svdcaption objects. 2004/04/19 17:54:23 jmarmion 1.12.38.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:30:34 dr 1.12.38.2: RESYNC: (1.12-1.13); FILE MERGED 2004/02/24 10:07:53 jmarmion 1.12.38.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [caa73d331cfd10b75d554139aec3e4ea2b5af328]

INTEGRATION: CWS dr12 (1.6.170); FILE MERGED 2004/07/27 01:13:42 sab 1.6.170.3: RESYNC: (1.6-1.7); FILE MERGED 2004/04/19 17:53:48 jmarmion 1.6.170.2: #i25335,i26291# note sizing and text box enhancements. 2004/02/24 10:07:03 jmarmion 1.6.170.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [100b64269af5777304edb567f55c2b7867e222d1]

INTEGRATION: CWS dr12 (1.1.2); FILE ADDED 2004/08/26 15:38:08 jmarmion 1.1.2.5: #i32667# - support EE_PARA_JUST in notes. 2004/07/23 20:58:06 sab 1.1.2.4: #i21253#; add formatted notes 2004/07/09 16:41:06 jmarmion 1.1.2.3: #i21255# add support for creation of DrawLayer() for notes. 2004/04/19 17:53:48 jmarmion 1.1.2.2: #i25335,i26291# note sizing and text box enhancements. 2004/02/24 10:06:16 jmarmion 1.1.2.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d10adcea82e745b84309ff6394b860f702308830]

INTEGRATION: CWS dr12 (1.8.16); FILE MERGED 2004/08/31 13:23:52 sab 1.8.16.6: solve merge problem 2004/08/27 07:51:00 sab 1.8.16.5: RESYNC: (1.11-1.13); FILE MERGED 2004/08/12 12:29:52 sab 1.8.16.4: RESYNC: (1.10-1.11); FILE MERGED 2004/07/27 01:11:27 sab 1.8.16.3: RESYNC: (1.9-1.10); FILE MERGED 2004/02/25 10:32:08 dr 1.8.16.2: RESYNC: (1.8-1.9); FILE MERGED 2004/02/24 10:05:48 jmarmion 1.8.16.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [81a622af42730c987a15b28e06958dd046af29e2]

INTEGRATION: CWS dr12 (1.12.30); FILE MERGED 2004/07/27 01:11:18 sab 1.12.30.3: RESYNC: (1.13-1.16); FILE MERGED 2004/05/06 11:18:42 dr 1.12.30.2: RESYNC: (1.12-1.13); FILE MERGED 2004/02/24 10:05:27 jmarmion 1.12.30.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [697dfbb468a6ec61e1400731cc5b57d68cf6b5a2]

INTEGRATION: CWS dr12 (1.28.94); FILE MERGED 2004/08/27 07:50:34 sab 1.28.94.3: RESYNC: (1.28-1.29); FILE MERGED 2004/08/15 16:59:29 jmarmion 1.28.94.2: #i32669# fix this dynamic rtl for m50 2004/08/12 08:49:44 jmarmion 1.28.94.1: #i32669# add dynamic RTL/LTR support to Notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [dac75295084909f6e2c7f2501be16c3b4417b736]

INTEGRATION: CWS dr12 (1.56.92); FILE MERGED 2004/08/27 07:50:26 sab 1.56.92.3: RESYNC: (1.58-1.59); FILE MERGED 2004/08/12 12:27:58 sab 1.56.92.2: RESYNC: (1.56-1.58); FILE MERGED 2004/08/12 08:49:07 jmarmion 1.56.92.1: #i32669# add dynamic RTL/LTR support to Notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [99cc86ff81ff960631e446295e93eea6ce16ff7d]

INTEGRATION: CWS dr12 (1.21.40); FILE MERGED 2004/08/12 12:27:49 sab 1.21.40.3: RESYNC: (1.23-1.24); FILE MERGED 2004/07/27 01:09:13 sab 1.21.40.2: RESYNC: (1.21-1.23); FILE MERGED 2004/02/24 10:05:02 jmarmion 1.21.40.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [ebca8d6ed6cfb9b925e1adbcc6e41350762188ca]

INTEGRATION: CWS dr12 (1.19.70); FILE MERGED 2004/08/27 07:50:18 sab 1.19.70.6: RESYNC: (1.24-1.25); FILE MERGED 2004/07/27 01:08:19 sab 1.19.70.5: RESYNC: (1.23-1.24); FILE MERGED 2004/05/06 11:16:01 dr 1.19.70.4: RESYNC: (1.20-1.23); FILE MERGED 2004/04/19 17:53:48 jmarmion 1.19.70.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:31:15 dr 1.19.70.2: RESYNC: (1.19-1.20); FILE MERGED 2004/02/24 10:04:39 jmarmion 1.19.70.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [47dd920f639d6b60220f9d43c18243e16d0112b3]

INTEGRATION: CWS dr12 (1.41.6); FILE MERGED 2004/08/26 15:38:08 jmarmion 1.41.6.6: #i32667# - support EE_PARA_JUST in notes. 2004/08/12 12:27:41 sab 1.41.6.5: RESYNC: (1.43-1.44); FILE MERGED 2004/07/27 01:08:11 sab 1.41.6.4: RESYNC: (1.42-1.43); FILE MERGED 2004/04/19 17:53:47 jmarmion 1.41.6.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:31:08 dr 1.41.6.2: RESYNC: (1.41-1.42); FILE MERGED 2004/02/24 10:04:16 jmarmion 1.41.6.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1f4712cdb9191fd18ccfa00c453563a9027c14b1]

INTEGRATION: CWS dr12 (1.9.170); FILE MERGED 2004/07/27 01:07:36 sab 1.9.170.4: RESYNC: (1.11-1.12); FILE MERGED 2004/05/06 11:15:32 dr 1.9.170.3: RESYNC: (1.9-1.11); FILE MERGED 2004/04/19 17:53:47 jmarmion 1.9.170.2: #i25335,i26291# note sizing and text box enhancements. 2004/02/24 10:03:50 jmarmion 1.9.170.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [91f7a3261c75ad6095d6f6e545e6192037c82ce8]

INTEGRATION: CWS dr12 (1.18.272); FILE MERGED 2004/08/27 07:49:59 sab 1.18.272.4: RESYNC: (1.20-1.21); FILE MERGED 2004/08/12 12:27:20 sab 1.18.272.3: RESYNC: (1.19-1.20); FILE MERGED 2004/07/27 01:07:29 sab 1.18.272.2: RESYNC: (1.18-1.19); FILE MERGED 2004/02/24 10:03:28 jmarmion 1.18.272.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b502ac3d0fc459804fda2294c9f31a3510dc6523]

INTEGRATION: CWS dr12 (1.18.114); FILE MERGED 2004/07/27 01:07:01 sab 1.18.114.3: RESYNC: (1.19-1.21); FILE MERGED 2004/05/06 11:15:11 dr 1.18.114.2: RESYNC: (1.18-1.19); FILE MERGED 2004/02/24 10:03:02 jmarmion 1.18.114.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7a2ac6586531602336c33983567ecadd4898fb32]

INTEGRATION: CWS dr12 (1.1.2); FILE ADDED 2004/07/23 20:57:52 sab 1.1.2.4: #i21253#; add formatted notes 2004/07/09 16:40:21 jmarmion 1.1.2.3: #i21255# add support for creation of DrawLayer() for notes. 2004/04/19 17:50:51 jmarmion 1.1.2.2: #i25335,i26291# note sizing and text box enhancements. 2004/02/24 09:59:14 jmarmion 1.1.2.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1b86c7338395ea82dc24782c8af3edad775bd3fe]

INTEGRATION: CWS dr12 (1.25.12); FILE MERGED 2004/08/27 07:46:05 sab 1.25.12.5: RESYNC: (1.37-1.39); FILE MERGED 2004/07/26 22:44:54 sab 1.25.12.4: RESYNC: (1.30-1.37); FILE MERGED 2004/05/06 11:08:19 dr 1.25.12.3: RESYNC: (1.26-1.30); FILE MERGED 2004/02/25 10:35:23 dr 1.25.12.2: RESYNC: (1.25-1.26); FILE MERGED 2004/02/24 09:58:15 jmarmion 1.25.12.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [744cf468b18b0e3b83d70e12be376b7e17d4a5fd]

INTEGRATION: CWS dr12 (1.5.272); FILE MERGED 2004/08/27 07:45:48 sab 1.5.272.3: RESYNC: (1.6-1.7); FILE MERGED 2004/07/26 22:44:20 sab 1.5.272.2: RESYNC: (1.5-1.6); FILE MERGED 2004/02/24 09:57:44 jmarmion 1.5.272.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d629d6b2d3e6523386667b952f26f7ad16877236]

INTEGRATION: CWS dr12 (1.16.24); FILE MERGED 2004/07/26 22:42:54 sab 1.16.24.2: RESYNC: (1.16-1.17); FILE MERGED 2004/07/09 16:39:15 jmarmion 1.16.24.1: #i21255# add support for creation of DrawLayer for notes.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [03a5b7d1261ec00ba96fc4b4a545f587bf83b020]

INTEGRATION: CWS dr12 (1.71.26); FILE MERGED 2004/08/27 07:45:21 sab 1.71.26.7: RESYNC: (1.79-1.81); FILE MERGED 2004/08/12 12:18:48 sab 1.71.26.6: RESYNC: (1.76-1.79); FILE MERGED 2004/07/26 22:42:47 sab 1.71.26.5: RESYNC: (1.75-1.76); FILE MERGED 2004/05/06 11:07:03 dr 1.71.26.4: RESYNC: (1.72-1.75); FILE MERGED 2004/04/19 17:50:50 jmarmion 1.71.26.3: #i25335,i26291# note sizing and text box enhancements. 2004/02/25 10:34:49 dr 1.71.26.2: RESYNC: (1.71-1.72); FILE MERGED 2004/02/24 09:57:21 jmarmion 1.71.26.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [94a38566d6979c6593d77c8a0f1e21ea2306cc80]

INTEGRATION: CWS dr12 (1.6.280); FILE MERGED 2004/07/29 10:19:47 sab 1.6.280.3: #i21253#; fix merge problems 2004/07/26 22:42:30 sab 1.6.280.2: RESYNC: (1.6-1.7); FILE MERGED 2004/04/19 17:50:50 jmarmion 1.6.280.1: #i25335,i26291# note sizing and text box enhancements.


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [eac521b1f332f4b3668ff88e5f4510b61ec5cbec]

INTEGRATION: CWS dr12 (1.8.272); FILE MERGED 2004/08/27 07:44:30 sab 1.8.272.3: RESYNC: (1.9-1.10); FILE MERGED 2004/07/26 22:40:51 sab 1.8.272.2: RESYNC: (1.8-1.9); FILE MERGED 2004/02/24 09:56:54 jmarmion 1.8.272.1: #i21255# text formatting for cell notes


2004-09-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [09ced1d5957fff557e4473a7f396a5634af974a3]

INTEGRATION: CWS dr12 (1.10.146); FILE MERGED 2004/07/26 22:39:51 sab 1.10.146.3: RESYNC: (1.11-1.13); FILE MERGED 2004/05/06 11:05:58 dr 1.10.146.2: RESYNC: (1.10-1.11); FILE MERGED 2004/02/24 09:56:25 jmarmion 1.10.146.1: #i21255# text formatting for cell notes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [205a55f6ff354445ff64185473bf147790d129ab]

INTEGRATION: CWS referr (1.20.86); FILE MERGED 2004/08/11 15:15:33 er 1.20.86.1: #i26431# better handling of reference updates during inserts/deletes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [60a69835f552a5d5fd102dd0be1bcc0737cf4a85]

INTEGRATION: CWS referr (1.27.104); FILE MERGED 2004/08/16 13:36:29 er 1.27.104.2: RESYNC: (1.27-1.28); FILE MERGED 2004/08/11 15:15:33 er 1.27.104.1: #i26431# better handling of reference updates during inserts/deletes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [6309876d97631c6f0617fc0e1b8947b9035b30c9]

INTEGRATION: CWS referr (1.57.8); FILE MERGED 2004/08/16 13:34:08 er 1.57.8.2: RESYNC: (1.57-1.58); FILE MERGED 2004/08/11 15:15:32 er 1.57.8.1: #i26431# better handling of reference updates during inserts/deletes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [e3e0da389e8e4d95927309ead57fabb9f3e3707c]

INTEGRATION: CWS referr (1.12.104); FILE MERGED 2004/08/11 15:15:32 er 1.12.104.1: #i26431# better handling of reference updates during inserts/deletes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [b6ead60aa533ec512480f608f29202aeb229c880]

INTEGRATION: CWS referr (1.20.106); FILE MERGED 2004/08/11 15:15:32 er 1.20.106.2: #i26431# better handling of reference updates during inserts/deletes 2004/08/09 13:15:49 er 1.20.106.1: #i30107# #i30921# #i32417# UpdateReference: differences of course remain signed..


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [21a2c95a957c15138f9a1acd6782ac906671ed16]

INTEGRATION: CWS referr (1.21.84); FILE MERGED 2004/08/11 15:15:31 er 1.21.84.1: #i26431# better handling of reference updates during inserts/deletes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [e42fe3ee6639cb4ce35d19a05f958301dbfb104a]

INTEGRATION: CWS referr (1.4.86); FILE MERGED 2004/08/11 15:15:30 er 1.4.86.1: #i26431# better handling of reference updates during inserts/deletes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [5e124f12a34d5b35fd0786734189f495d696a54a]

INTEGRATION: CWS referr (1.23.106); FILE MERGED 2004/08/11 15:15:30 er 1.23.106.1: #i26431# better handling of reference updates during inserts/deletes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [1218b63de1e30b98046a961dfbd6aa7c560d9fea]

INTEGRATION: CWS referr (1.9.104); FILE MERGED 2004/08/11 15:15:30 er 1.9.104.1: #i26431# better handling of reference updates during inserts/deletes


2004-09-07  Kurt Zenker  <kz@openoffice.org>  [3af1abbb6b112ff159a7a0e2829169796434132a]

INTEGRATION: CWS referr (1.13.84); FILE MERGED 2004/08/11 15:15:30 er 1.13.84.1: #i26431# better handling of reference updates during inserts/deletes


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [849d1606a93499a5d851633a808720f295c8884b]

INTEGRATION: CWS xmlsec05 (1.6.4); FILE MERGED 2004/08/13 17:21:57 mt 1.6.4.2: RESYNC: (1.6-1.10); FILE MERGED 2004/07/15 07:44:11 gt 1.6.4.1: #i20883# signatures


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [cc8f00a0ff8520b50ecd956b57f0987218022b46]

INTEGRATION: CWS xmlsec05 (1.19.58); FILE MERGED 2004/08/25 06:26:53 pb 1.19.58.1: fix: #i33095# load and save 'LoadReadonly' in settings.xml


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [664992c7820a667066e2a2db5be8e881766ffb7b]

INTEGRATION: CWS xmlsec05 (1.28.56); FILE MERGED 2004/08/13 17:25:24 mt 1.28.56.2: RESYNC: (1.28-1.29); FILE MERGED 2004/08/13 07:54:08 sab 1.28.56.1: #i20883#; add HiddenInformation


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [ccc2de627d8bfe693b4cca83d5f5f055c6990f9e]

INTEGRATION: CWS xmlsec05 (1.36.54); FILE MERGED 2004/08/17 12:08:46 pb 1.36.54.3: fix: #i33028# Crash with Record Changes fixed 2004/08/13 17:51:17 mt 1.36.54.2: RESYNC: (1.36-1.37); FILE MERGED 2004/08/13 07:11:08 gt 1.36.54.1: #i20883# security options


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [222a64e0b6b056b00852cbe156a9b17dfa2b6cac]

INTEGRATION: CWS xmlsec05 (1.69.16); FILE MERGED 2004/08/20 06:26:18 pb 1.69.16.3: fix: #33049# kill loop 2004/08/13 17:51:26 mt 1.69.16.2: RESYNC: (1.69-1.71); FILE MERGED 2004/08/13 07:53:51 sab 1.69.16.1: #i20883#; add HiddenInformation


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [57f12f6f1c8fb2087c06c0abcda55aef80247aa3]

INTEGRATION: CWS xmlsec05 (1.40.56); FILE MERGED 2004/07/21 09:45:13 mt 1.40.56.1: #i21596# Digital Signatutres...


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [a5755dc68f277cd2b80070c295b24bb29c757048]

INTEGRATION: CWS xmlsec05 (1.18.110); FILE MERGED 2004/08/13 17:23:44 mt 1.18.110.2: RESYNC: (1.18-1.19); FILE MERGED 2004/07/21 09:45:13 mt 1.18.110.1: #i21596# Digital Signatutres...


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [6ffc481096f64b5149a54c0a236f46befc87e840]

INTEGRATION: CWS xmlsec05 (1.65.16); FILE MERGED 2004/08/25 07:29:11 pb 1.65.16.1: fix: #i33095# SC_UNO_LOAD_READONLY added


2004-08-31  Kurt Zenker  <kz@openoffice.org>  [6995d0b1c32626b649db9671a7beace40848a28d]

INTEGRATION: CWS xmlsec05 (1.40.56); FILE MERGED 2004/08/13 17:12:40 mt 1.40.56.2: RESYNC: (1.40-1.45); FILE MERGED 2004/08/13 07:10:50 gt 1.40.56.1: #i20883# security options


2004-08-25  Rüdiger Timm  <rt@openoffice.org>  [798f9d7c13ae0dfb2ccb6645c09ff08281bbfe8a]

#i10000# include algorithm


2004-08-25  Rüdiger Timm  <rt@openoffice.org>  [7bdaeb75436ac694dd4a43f6cdbb69da5464037d]

#i10000# .


2004-08-24  Rüdiger Timm  <rt@openoffice.org>  [fb0834d50005ad2a6cca3888b25754388c2a21bd]

#i10000# Add dpdimsave.obj and dpgroup.obj again, which got lost by accident


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [6d8fa75f32ba38d52221db8776df12830526fb29]

INTEGRATION: CWS tune03 (1.1.1.1.530); FILE MERGED 2004/08/19 12:55:34 mhu 1.1.1.1.530.2: #i29979# Disabled (temporarily) GCC -fvisibility=hidden (until exception typeinfo is somehow exported). 2004/07/08 16:45:20 mhu 1.1.1.1.530.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [1ef1b5bc1e7d0629a7d2e9346a938c204b9fcab9]

INTEGRATION: CWS tune03 (1.25.10); FILE MERGED 2004/08/12 17:48:31 mhu 1.25.10.4: #i29979# Adapted to new ScDPDateGroupDlg (moved to scui). 2004/07/21 12:49:20 hjs 1.25.10.3: #i29979# remove obsolete *.flt remains 2004/07/20 10:29:55 hjs 1.25.10.2: #29979# SHLnUSE_EXPORTS set to ordinal 2004/07/08 16:45:19 mhu 1.25.10.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [78e6a39ef758ed2fb89d4ef03f8e29c7c7a0db61]

INTEGRATION: CWS tune03 (1.6.70); FILE MERGED 2004/07/08 16:45:19 mhu 1.6.70.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [6e35c57ae365d4b018619d80094616e0de716153]

INTEGRATION: CWS tune03 (1.2.206); FILE MERGED 2004/07/08 16:45:19 mhu 1.2.206.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [01d6618564e3c46c3ad55f8ef05a77220955325a]

INTEGRATION: CWS tune03 (1.15.206); FILE MERGED 2004/08/09 21:04:04 mhu 1.15.206.2: RESYNC: (1.15-1.16); FILE MERGED 2004/07/08 16:45:18 mhu 1.15.206.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [ab6c1dc07388456e83faf025767466725fd4dfef]

INTEGRATION: CWS tune03 (1.6.70); FILE MERGED 2004/08/09 21:03:21 mhu 1.6.70.2: RESYNC: (1.6-1.7); FILE MERGED 2004/07/08 16:45:18 mhu 1.6.70.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [afe949ec372655edf84aecb1640b1c0d5d4c9f2f]

INTEGRATION: CWS tune03 (1.6.126); FILE MERGED 2004/07/08 16:45:18 mhu 1.6.126.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [bb56601298a7fe5b437052aeae62ed4e4d37fcfd]

INTEGRATION: CWS tune03 (1.6.72); FILE MERGED 2004/07/08 16:45:17 mhu 1.6.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [07a93cd421df2f003f10aa158e10b140028fbc9a]

INTEGRATION: CWS tune03 (1.2.72); FILE MERGED 2004/08/09 21:02:52 mhu 1.2.72.2: RESYNC: (1.2-1.3); FILE MERGED 2004/07/08 16:45:17 mhu 1.2.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [4492e9f88a5c605172e8a546e6583de93c13dcbb]

INTEGRATION: CWS tune03 (1.2.72); FILE MERGED 2004/07/08 16:45:17 mhu 1.2.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [3a67018380e2933452fc2bf01b6f801a96a27631]

INTEGRATION: CWS tune03 (1.11.154); FILE MERGED 2004/07/08 16:45:16 mhu 1.11.154.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [89a4f75013172dc2b7ef86e42451f08c73504c9e]

INTEGRATION: CWS tune03 (1.5.52); FILE MERGED 2004/07/08 16:45:16 mhu 1.5.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [9d2563f4ae392085ae0391423c32ea2c6a2cf676]

INTEGRATION: CWS tune03 (1.2.516); FILE MERGED 2004/07/08 16:45:16 mhu 1.2.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [62501ec27ae9b7704f6276cafa3da766e4a9c86e]

INTEGRATION: CWS tune03 (1.11.72); FILE MERGED 2004/08/11 13:07:53 mhu 1.11.72.3: #i29979# Cleaned up resync merge leftovers. 2004/08/09 21:02:29 mhu 1.11.72.2: RESYNC: (1.11-1.12); FILE MERGED 2004/07/08 16:45:16 mhu 1.11.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [2fb1b1e3a17cb27572591f73c85920df4e3f2bcb]

INTEGRATION: CWS tune03 (1.3.156); FILE MERGED 2004/07/08 16:45:16 mhu 1.3.156.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [ab8a42555b646d6135e6d3880f24f27826809c50]

INTEGRATION: CWS tune03 (1.5.72); FILE MERGED 2004/07/08 16:45:15 mhu 1.5.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [3ac007b47de6051046c15b8e7b9793f844990dfc]

INTEGRATION: CWS tune03 (1.3.172); FILE MERGED 2004/07/08 16:45:15 mhu 1.3.172.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [09aad8124c473d8b65876f0c07fc38b6f6ecd395]

INTEGRATION: CWS tune03 (1.2.494); FILE MERGED 2004/07/08 16:45:15 mhu 1.2.494.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [f703fa8321a79472ca9644f5c4e0dffc72901d28]

INTEGRATION: CWS tune03 (1.2.72); FILE MERGED 2004/08/09 21:02:14 mhu 1.2.72.2: RESYNC: (1.2-1.3); FILE MERGED 2004/07/08 16:45:15 mhu 1.2.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [c3ef08551489e15ebdb405d69e90501d03cba4c8]

INTEGRATION: CWS tune03 (1.1.1.1.530); FILE MERGED 2004/07/08 16:45:14 mhu 1.1.1.1.530.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [629c93ac45e94c52eeba227f6e84698844e19543]

INTEGRATION: CWS tune03 (1.2.516); FILE MERGED 2004/07/08 16:45:14 mhu 1.2.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [2f0f9162806c061244574afd63dec4cd4b55a105]

INTEGRATION: CWS tune03 (1.3.52); FILE MERGED 2004/07/08 16:45:14 mhu 1.3.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [d6c7c70266c6e8ac4c1f93e7a6d4501568844514]

INTEGRATION: CWS tune03 (1.3.486); FILE MERGED 2004/07/08 16:45:14 mhu 1.3.486.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [bcf57638eede430225118b8c1ae7c35231d3355e]

INTEGRATION: CWS tune03 (1.8.158); FILE MERGED 2004/07/08 16:45:13 mhu 1.8.158.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [53ee229ab051906f976b823669b0ea4e09d7f324]

INTEGRATION: CWS tune03 (1.2.518); FILE MERGED 2004/07/08 16:45:13 mhu 1.2.518.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [7a497eb99fa46c389a3eb88b6c0ac73964026aa8]

INTEGRATION: CWS tune03 (1.7.52); FILE MERGED 2004/08/09 21:02:07 mhu 1.7.52.2: RESYNC: (1.7-1.8); FILE MERGED 2004/07/08 16:45:13 mhu 1.7.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [9930beb9ef85010a704edbb24a62b5ae8acc4fa3]

INTEGRATION: CWS tune03 (1.3.492); FILE MERGED 2004/07/08 16:45:13 mhu 1.3.492.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [b2c6591b651640d5698cec8d362f963fe6e3d195]

INTEGRATION: CWS tune03 (1.2.516); FILE MERGED 2004/07/08 16:45:13 mhu 1.2.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [d74920940ef761339d53dc80a7dbc2410c0dfebb]

INTEGRATION: CWS tune03 (1.3.72); FILE MERGED 2004/07/08 16:45:12 mhu 1.3.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [18ce17cf7642c64a6685ba830f5883c2b5f47989]

INTEGRATION: CWS tune03 (1.2.516); FILE MERGED 2004/07/08 16:45:12 mhu 1.2.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [145953e24458bd07f724e605beae8e8b9a1ab9e0]

INTEGRATION: CWS tune03 (1.14.52); FILE MERGED 2004/07/08 16:45:11 mhu 1.14.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [ee731aa8b0a3281cc388ab59644c40f5040d6cd8]

INTEGRATION: CWS tune03 (1.4.52); FILE MERGED 2004/07/08 16:45:11 mhu 1.4.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [d5671d7d384ec48607fb76267b254806ead2a4ac]

INTEGRATION: CWS tune03 (1.8.72); FILE MERGED 2004/08/09 21:01:24 mhu 1.8.72.2: RESYNC: (1.8-1.9); FILE MERGED 2004/07/08 16:45:11 mhu 1.8.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [e348c69dba7e89422b31bddd76d91b776b45d20a]

INTEGRATION: CWS tune03 (1.16.52); FILE MERGED 2004/07/08 16:45:11 mhu 1.16.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [8af2f836c88a9610423a215c44da17644a3ef3fc]

INTEGRATION: CWS tune03 (1.1.1.1.530); FILE MERGED 2004/07/08 16:45:11 mhu 1.1.1.1.530.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [547869d9f9403399fe8bc6a19718a17f9ff656de]

INTEGRATION: CWS tune03 (1.9.72); FILE MERGED 2004/07/08 16:45:11 mhu 1.9.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [1d23d28b66150bc14956de68f6b085f54f2ef43f]

INTEGRATION: CWS tune03 (1.1.1.1.530); FILE MERGED 2004/07/08 16:45:10 mhu 1.1.1.1.530.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [d91bf4386218f665e002b6627add44af74766f11]

INTEGRATION: CWS tune03 (1.28.52); FILE MERGED 2004/08/09 20:58:53 mhu 1.28.52.2: RESYNC: (1.28-1.29); FILE MERGED 2004/07/08 16:45:10 mhu 1.28.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [be0b638bcc459fc56d6b5fe6eeea941e9789ee76]

INTEGRATION: CWS tune03 (1.4.492); FILE MERGED 2004/07/08 16:45:10 mhu 1.4.492.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [c47015f8c6cfdb1a96e1d6dc56c11658a4213238]

INTEGRATION: CWS tune03 (1.4.488); FILE MERGED 2004/08/16 18:26:14 mhu 1.4.488.1: #i29979# Add a few more exports for GCC 3.4.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [0d1636c302fa7c9e633fdcde10f1ccdc39670de2]

INTEGRATION: CWS tune03 (1.9.324); FILE MERGED 2004/07/08 16:45:10 mhu 1.9.324.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [792c5328cadf9f63f122482fe1d4b1718b12ff16]

INTEGRATION: CWS tune03 (1.11.52); FILE MERGED 2004/07/08 16:45:10 mhu 1.11.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [ebd8d1dc3f7fbfadbb37cb60c64fd59348899934]

INTEGRATION: CWS tune03 (1.5.50); FILE MERGED 2004/08/09 20:58:37 mhu 1.5.50.2: RESYNC: (1.5-1.6); FILE MERGED 2004/07/08 16:45:09 mhu 1.5.50.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [df0a9bbf8036e2792ccc6c6ae01337d580ccdbde]

INTEGRATION: CWS tune03 (1.2.516); FILE MERGED 2004/07/08 16:45:09 mhu 1.2.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [aabb53f992dde62e08244522600125d2d03e69ee]

INTEGRATION: CWS tune03 (1.28.22); FILE MERGED 2004/07/08 16:45:08 mhu 1.28.22.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [7d8f9166649981bd4e008d9f14f232d2b2c454d2]

INTEGRATION: CWS tune03 (1.12.64); FILE MERGED 2004/07/08 16:45:08 mhu 1.12.64.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [ea7f46d32a0f12c30f6a309b820d531d4de7b215]

INTEGRATION: CWS tune03 (1.6.52); FILE MERGED 2004/07/08 16:45:08 mhu 1.6.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [c42898e180cd59136c95d209a1f2a09e7341d75a]

INTEGRATION: CWS tune03 (1.7.52); FILE MERGED 2004/07/08 16:45:07 mhu 1.7.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [436924ab4240ed072da1e06696a6030768f9885d]

INTEGRATION: CWS tune03 (1.2.516); FILE MERGED 2004/07/08 16:45:07 mhu 1.2.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [10da35a5b5e8bbd5e3acc2b62ed838c955117464]

INTEGRATION: CWS tune03 (1.2.72); FILE MERGED 2004/07/08 16:45:07 mhu 1.2.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [a3203dee73a8018aae1f79df35fdc13ab3c6d9ac]

INTEGRATION: CWS tune03 (1.4.10); FILE MERGED 2004/07/08 16:45:07 mhu 1.4.10.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [080c7cc54e3ba788913a9d0b919cf2d92bb6ebd6]

INTEGRATION: CWS tune03 (1.9.72); FILE MERGED 2004/07/08 16:45:06 mhu 1.9.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [a7a95972207e6ab6fc7dd711b8f19ed502b65b94]

INTEGRATION: CWS tune03 (1.5.52); FILE MERGED 2004/08/09 20:54:38 mhu 1.5.52.2: RESYNC: (1.5-1.6); FILE MERGED 2004/07/08 16:45:06 mhu 1.5.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [321e36a56dff4526dc7341e5f89a7cfae3c29c80]

INTEGRATION: CWS tune03 (1.5.52); FILE MERGED 2004/07/08 16:45:06 mhu 1.5.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [98737be389f86e05cfb03156e7363579f33b4636]

INTEGRATION: CWS tune03 (1.5.2); FILE MERGED 2004/08/12 17:48:30 mhu 1.5.2.1: #i29979# Adapted to new ScDPDateGroupDlg (moved to scui).


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [a662392a3d49afeb4c34483bc8e2516a829912d7]

INTEGRATION: CWS tune03 (1.2.2); FILE MERGED 2004/08/14 14:57:43 mhu 1.2.2.1: #i29979# Cleaned up resync merge leftovers.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [fc1e9a8d3d97d57aecbbbf3428e26712211db6a1]

INTEGRATION: CWS tune03 (1.2.516); FILE MERGED 2004/07/08 16:45:06 mhu 1.2.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [110dac95598b645fbc76bfb50d11043f835002b8]

INTEGRATION: CWS tune03 (1.7.516); FILE MERGED 2004/07/08 16:45:05 mhu 1.7.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [a18c828ba10982c7e0fd5356c802962057739c29]

INTEGRATION: CWS tune03 (1.7.386); FILE MERGED 2004/07/08 16:45:05 mhu 1.7.386.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [c2e109aa32a7b380bfa89bb86483cf7c1dfc5c82]

INTEGRATION: CWS tune03 (1.20.52); FILE MERGED 2004/07/08 16:45:05 mhu 1.20.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [306d3541e5b3605a0e8b77b76b31cfd08722b9ca]

INTEGRATION: CWS tune03 (1.3.2); FILE MERGED 2004/08/12 17:48:30 mhu 1.3.2.1: #i29979# Adapted to new ScDPDateGroupDlg (moved to scui).


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [9e0a66b4a308dc2b4723ae2b6c7b7a68b1f685b4]

INTEGRATION: CWS tune03 (1.2.2); FILE MERGED 2004/08/14 14:57:43 mhu 1.2.2.2: #i29979# Cleaned up resync merge leftovers. 2004/08/11 13:07:53 mhu 1.2.2.1: #i29979# Cleaned up resync merge leftovers.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [8bd96b98a94ddd70bbb0271b9ab6bafe67e2ae99]

INTEGRATION: CWS tune03 (1.3.508); FILE MERGED 2004/07/08 16:45:04 mhu 1.3.508.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [320c8589eaa0923fd7caf08251349c4ab7a5a491]

INTEGRATION: CWS tune03 (1.2.72); FILE MERGED 2004/07/08 16:45:04 mhu 1.2.72.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [bd1803a758f147b091bf5a040fb9553377ef1c12]

INTEGRATION: CWS tune03 (1.3.52); FILE MERGED 2004/08/09 20:52:50 mhu 1.3.52.2: RESYNC: (1.3-1.6); FILE MERGED 2004/07/08 16:45:04 mhu 1.3.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [776e58d5bc6aad62f34e30860a08fdba63f45966]

INTEGRATION: CWS tune03 (1.6.70); FILE MERGED 2004/08/09 20:52:43 mhu 1.6.70.2: RESYNC: (1.6-1.7); FILE MERGED 2004/07/08 16:45:04 mhu 1.6.70.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [4bb5d04ac000cca5ba014dbbd23f6f9e6d4788b6]

INTEGRATION: CWS tune03 (1.15.214); FILE MERGED 2004/07/08 16:45:03 mhu 1.15.214.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [ea1cb3974476fc6a11e418e823a46494d1f0438b]

INTEGRATION: CWS tune03 (1.39.50); FILE MERGED 2004/08/09 20:36:23 mhu 1.39.50.2: RESYNC: (1.39-1.40); FILE MERGED 2004/07/08 16:45:02 mhu 1.39.50.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [947ef5b7d7b2ea5232f05a8845204dafda468bb7]

INTEGRATION: CWS tune03 (1.5.518); FILE MERGED 2004/07/08 16:45:02 mhu 1.5.518.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [652ad04af0162022156fef4e38866ceb5d6bbd5c]

INTEGRATION: CWS tune03 (1.2.486); FILE MERGED 2004/07/08 16:45:02 mhu 1.2.486.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [c926372b004acdf69fde0081389fa4dcc23840bb]

INTEGRATION: CWS tune03 (1.10.138); FILE MERGED 2004/07/08 16:45:01 mhu 1.10.138.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [b5c1db89c9b69b02bd9736d2433c80f61cefb207]

INTEGRATION: CWS tune03 (1.2.52); FILE MERGED 2004/07/08 16:45:01 mhu 1.2.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [d8366ff8b237b6defa518e9b859258f4539ee1c5]

INTEGRATION: CWS tune03 (1.1.1.1.530); FILE MERGED 2004/07/08 16:45:01 mhu 1.1.1.1.530.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [d728683199afb154aa9a624c4170fc4f663767a4]

INTEGRATION: CWS tune03 (1.14.78); FILE MERGED 2004/07/08 16:45:01 mhu 1.14.78.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [661b3342752f027a5ccf7e82b5d00c8f159023de]

INTEGRATION: CWS tune03 (1.1.2); FILE ADDED 2004/07/08 16:45:01 mhu 1.1.2.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [63ec9cf69d942d4d1cf378f8ecdcdf8472015d36]

INTEGRATION: CWS tune03 (1.4.52); FILE MERGED 2004/07/08 16:45:00 mhu 1.4.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [080e4cbb5da31446bcf6169253f8fc58458baf36]

INTEGRATION: CWS tune03 (1.2.516); FILE MERGED 2004/07/08 16:45:00 mhu 1.2.516.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [b034a03b489bb9428b370787ea47987a5d716bc5]

INTEGRATION: CWS tune03 (1.9.346); FILE MERGED 2004/08/09 20:28:06 mhu 1.9.346.2: RESYNC: (1.9-1.10); FILE MERGED 2004/07/08 16:45:00 mhu 1.9.346.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [a510f46cc18bcd6eaa3a5af12d75e9bf5c152a17]

INTEGRATION: CWS tune03 (1.5.332); FILE MERGED 2004/07/08 16:45:00 mhu 1.5.332.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [910115e2747831d52c583c2e17d2e86d9eec7013]

INTEGRATION: CWS tune03 (1.2.52); FILE MERGED 2004/07/08 16:44:59 mhu 1.2.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [0055858f1137e6acff92f20f391d627a01506822]

INTEGRATION: CWS tune03 (1.37.22); FILE MERGED 2004/07/08 16:44:59 mhu 1.37.22.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [32a0dbfdcc158b93832402d3e2dde537fade1fb3]

INTEGRATION: CWS tune03 (1.6.52); FILE MERGED 2004/08/12 17:48:29 mhu 1.6.52.1: #i29979# Adapted to new ScDPDateGroupDlg (moved to scui).


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [a813167dd2b4260203b0b5a33bf92a37674b7805]

INTEGRATION: CWS tune03 (1.6.2); FILE MERGED 2004/08/12 17:48:28 mhu 1.6.2.1: #i29979# Adapted to new ScDPDateGroupDlg (moved to scui).


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [a0b9a077de47fdecae6492edc306fba91ef3079d]

INTEGRATION: CWS tune03 (1.5.50); FILE MERGED 2004/08/09 20:26:44 mhu 1.5.50.2: RESYNC: (1.5-1.7); FILE MERGED 2004/07/08 16:44:59 mhu 1.5.50.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [557f43c0381653c7a887f0f524751114e5e1f3a2]

INTEGRATION: CWS tune03 (1.76.48); FILE MERGED 2004/08/09 20:26:15 mhu 1.76.48.2: RESYNC: (1.76-1.79); FILE MERGED 2004/07/08 16:44:59 mhu 1.76.48.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [48ca5bcf4abb2b919c1b0fc01a2aa56a675738c4]

INTEGRATION: CWS tune03 (1.4.518); FILE MERGED 2004/07/08 16:44:59 mhu 1.4.518.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [74b715fee93c96be4bcdf3b30552ff4d76efa26e]

INTEGRATION: CWS tune03 (1.6.52); FILE MERGED 2004/07/08 16:44:58 mhu 1.6.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [485a371fb2865927930e02f25559398bd72269d9]

INTEGRATION: CWS tune03 (1.20.10); FILE MERGED 2004/07/08 16:44:58 mhu 1.20.10.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [b03d95e1ab9bfbcc7966a138beccecaef29af2eb]

INTEGRATION: CWS tune03 (1.2.52); FILE MERGED 2004/07/08 16:44:58 mhu 1.2.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [2ccf9f9f6eabf9655a0f44e32f25f1bf1196a5ac]

INTEGRATION: CWS tune03 (1.4.504); FILE MERGED 2004/08/09 20:25:44 mhu 1.4.504.2: RESYNC: (1.4-1.5); FILE MERGED 2004/07/08 16:44:58 mhu 1.4.504.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [dc77996eb99afb5a7ed5f3f40acf89f534999d12]

INTEGRATION: CWS tune03 (1.4.52); FILE MERGED 2004/07/08 16:44:57 mhu 1.4.52.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [ebcc013fbcca75f96ee57d999f54ca4afc010e25]

INTEGRATION: CWS tune03 (1.4.494); FILE MERGED 2004/07/08 16:44:57 mhu 1.4.494.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-23  Rüdiger Timm  <rt@openoffice.org>  [d5682685988d2fd9719907918d1bc11f8ba9eb3d]

INTEGRATION: CWS tune03 (1.3.22); FILE MERGED 2004/07/08 16:44:56 mhu 1.3.22.1: #i29979# Added SC_DLLPUBLIC/PRIVATE (see scdllapi.h) to exported symbols/classes.


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [8ca03607e67a0a1aed3ffdd0f5dd665b2bea0015]

INTEGRATION: CWS rowlimit2 (1.22.4); FILE MERGED 2004/07/30 18:15:44 er 1.22.4.2: RESYNC: (1.22-1.23); FILE MERGED 2004/07/30 16:59:49 er 1.22.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [0ca5261f7483575f41a4253ec2d979b8f6ab6c1a]

INTEGRATION: CWS rowlimit2 (1.26.4); FILE MERGED 2004/07/30 16:59:49 er 1.26.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [f5127e0503b6e9a4d9cbf957a4c8757c2c086866]

INTEGRATION: CWS rowlimit2 (1.26.4); FILE MERGED 2004/07/30 18:15:27 er 1.26.4.2: RESYNC: (1.26-1.27); FILE MERGED 2004/07/30 16:59:49 er 1.26.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [97f53d6d8317d15fc33fdac5d44acce77879fdf8]

INTEGRATION: CWS rowlimit2 (1.45.4); FILE MERGED 2004/07/30 16:59:48 er 1.45.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [fde858e17f2c8290d2a35559d5ce66dc37b43ab1]

INTEGRATION: CWS rowlimit2 (1.37.4); FILE MERGED 2004/07/30 16:59:48 er 1.37.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [b91aa6f35fb600b9b52d4e886e2f66b7eb6d188d]

INTEGRATION: CWS rowlimit2 (1.9.4); FILE MERGED 2004/07/30 16:59:47 er 1.9.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [1fb35446b55c1f8753ef48615f414b194186e0ae]

INTEGRATION: CWS rowlimit2 (1.18.4); FILE MERGED 2004/07/30 16:59:47 er 1.18.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [4d99a2ad42592c6e09d872053d1834dc6147d833]

INTEGRATION: CWS rowlimit2 (1.12.4); FILE MERGED 2004/07/30 16:59:47 er 1.12.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [4f3b120d5f89fe7c9355abcd8988ecdec2a3a1b0]

INTEGRATION: CWS rowlimit2 (1.36.4); FILE MERGED 2004/07/30 18:14:26 er 1.36.4.2: RESYNC: (1.36-1.37); FILE MERGED 2004/07/30 16:59:46 er 1.36.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [9f61cc66cc341aa5b91f6e76f1d07790b91d1653]

INTEGRATION: CWS rowlimit2 (1.10.4); FILE MERGED 2004/07/30 16:59:46 er 1.10.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [212437c4f1ac45a4fa158d49a953ef281b022ead]

INTEGRATION: CWS rowlimit2 (1.12.4); FILE MERGED 2004/07/30 18:14:19 er 1.12.4.2: RESYNC: (1.12-1.13); FILE MERGED 2004/07/30 16:59:46 er 1.12.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [ae4dfabd542ff017bbaa3c8a2e0efadec14a8ce0]

INTEGRATION: CWS rowlimit2 (1.39.4); FILE MERGED 2004/07/30 16:59:45 er 1.39.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [4e4c796c84e2c0e73b1eceaecc925a7c63e1ca2f]

INTEGRATION: CWS rowlimit2 (1.23.4); FILE MERGED 2004/07/30 16:59:45 er 1.23.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [5ceeb4cb846a9fac966ea427a332764ca1ee4854]

INTEGRATION: CWS rowlimit2 (1.55.4); FILE MERGED 2004/07/30 18:13:59 er 1.55.4.2: RESYNC: (1.55-1.58); FILE MERGED 2004/07/30 16:59:44 er 1.55.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [7df82786e85c8b96102baf6384a34aaa830fbac1]

INTEGRATION: CWS rowlimit2 (1.24.4); FILE MERGED 2004/08/17 14:40:28 er 1.24.4.3: RESYNC: (1.25-1.28); FILE MERGED 2004/07/30 18:13:50 er 1.24.4.2: RESYNC: (1.24-1.25); FILE MERGED 2004/07/30 16:59:44 er 1.24.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [7a2fd24b61b83033c7606dfeec92d356ec088e22]

INTEGRATION: CWS rowlimit2 (1.4.4); FILE MERGED 2004/07/30 16:59:44 er 1.4.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [24c65688f290f63da2a709503642989e897d6904]

INTEGRATION: CWS rowlimit2 (1.11.4); FILE MERGED 2004/07/30 16:59:44 er 1.11.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [f09563371fb83394b06c726f76d8081414414f79]

INTEGRATION: CWS rowlimit2 (1.43.4); FILE MERGED 2004/07/30 16:59:43 er 1.43.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [e822e8d70835eaa0855cf4cf67688e54a99f15d2]

INTEGRATION: CWS rowlimit2 (1.84.4); FILE MERGED 2004/07/30 16:59:43 er 1.84.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [cf994e8536fd5c815ab18646e78547023613ad9d]

INTEGRATION: CWS rowlimit2 (1.12.4); FILE MERGED 2004/07/30 18:12:07 er 1.12.4.2: RESYNC: (1.12-1.13); FILE MERGED 2004/07/30 16:59:42 er 1.12.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [bd3ab684d96f8778caf734f5681beb941422a8a8]

INTEGRATION: CWS rowlimit2 (1.13.4); FILE MERGED 2004/07/30 16:59:41 er 1.13.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [00da70c79c39f56b5685224b2376d7684a61a241]

INTEGRATION: CWS rowlimit2 (1.36.4); FILE MERGED 2004/06/18 20:02:05 er 1.36.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [1afdee3a67d01e53c343de80aba269932126d78b]

INTEGRATION: CWS rowlimit2 (1.21.4); FILE MERGED 2004/07/30 16:59:41 er 1.21.4.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:02:04 er 1.21.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [915c7a1dd05a4678218141b2bc46d7ccce6f3c4e]

INTEGRATION: CWS rowlimit2 (1.10.4); FILE MERGED 2004/06/18 20:02:04 er 1.10.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [a7fe89d95875c0038bc8d37fa8cc5a432e5d2352]

INTEGRATION: CWS rowlimit2 (1.5.4); FILE MERGED 2004/07/30 16:59:40 er 1.5.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [7ec36670e5a22871492d4623eb74371687d6ea12]

INTEGRATION: CWS rowlimit2 (1.25.4); FILE MERGED 2004/07/30 16:59:39 er 1.25.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [52b225e8176f1b479d5d89d0f2498206e56f090c]

INTEGRATION: CWS rowlimit2 (1.3.4); FILE MERGED 2004/07/30 16:59:39 er 1.3.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [968241479c2f2459aeac7e03d6af906f6b9be160]

INTEGRATION: CWS rowlimit2 (1.5.4); FILE MERGED 2004/07/30 16:59:39 er 1.5.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [0719d884b2c910ef7a140efef7c0e752ff31a44a]

INTEGRATION: CWS rowlimit2 (1.92.2); FILE MERGED 2004/07/30 17:48:47 er 1.92.2.2: RESYNC: (1.92-1.93); FILE MERGED 2004/07/30 16:59:38 er 1.92.2.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [51ebe0459009671c57bdae2f4ae07aa668e76ae1]

INTEGRATION: CWS rowlimit2 (1.22.4); FILE MERGED 2004/07/30 16:59:37 er 1.22.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [dc21908a50e146ab5fd6ce8357f8dd082edf7624]

INTEGRATION: CWS rowlimit2 (1.14.4); FILE MERGED 2004/06/18 20:02:03 er 1.14.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [25ba3c28526b5d00c69b6213dba62b47e3ec4084]

INTEGRATION: CWS rowlimit2 (1.12.4); FILE MERGED 2004/07/30 16:59:36 er 1.12.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [be2164a9158a9354a376e61a052489e23bd399ec]

INTEGRATION: CWS rowlimit2 (1.6.4); FILE MERGED 2004/08/03 13:34:50 er 1.6.4.2: #i28834# use range taking methods whenever possible 2004/06/18 20:02:03 er 1.6.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [9ee1a3f7924a2abfbf713e1097bf54c4f8de805d]

INTEGRATION: CWS rowlimit2 (1.16.4); FILE MERGED 2004/06/18 20:02:02 er 1.16.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [84f4dbe3cc41a94141c4bdc140b767384d026389]

INTEGRATION: CWS rowlimit2 (1.27.4); FILE MERGED 2004/08/03 13:34:49 er 1.27.4.3: #i28834# use range taking methods whenever possible 2004/07/30 16:59:35 er 1.27.4.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:02:01 er 1.27.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [7f89fbdb6673c1613595772c0d732c31502ec2d9]

INTEGRATION: CWS rowlimit2 (1.9.4); FILE MERGED 2004/07/30 16:59:35 er 1.9.4.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:02:01 er 1.9.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [862e3fbd2dd0076ff15fd7d1266e72a36db62a34]

INTEGRATION: CWS rowlimit2 (1.4.4); FILE MERGED 2004/06/18 20:02:01 er 1.4.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [76c6686a336df630103445a61845f4795aa744ea]

INTEGRATION: CWS rowlimit2 (1.10.4); FILE MERGED 2004/08/17 14:33:52 er 1.10.4.2: RESYNC: (1.10-1.11); FILE MERGED 2004/06/18 20:02:01 er 1.10.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [e527fe7663469ddf389f19fa591818bca1a609fb]

INTEGRATION: CWS rowlimit2 (1.5.4); FILE MERGED 2004/07/30 17:46:37 er 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2004/06/18 20:02:00 er 1.5.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [933e14ba0cd789b9d5614a78a33db71bb66081c2]

INTEGRATION: CWS rowlimit2 (1.28.4); FILE MERGED 2004/07/30 16:59:35 er 1.28.4.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:02:00 er 1.28.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [6fc36e1baf545b3adf122662dd5ac984d1324490]

INTEGRATION: CWS rowlimit2 (1.56.4); FILE MERGED 2004/07/30 17:46:01 er 1.56.4.2: RESYNC: (1.56-1.57); FILE MERGED 2004/07/30 16:59:34 er 1.56.4.1: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [f3508852747495d42b956d1a37d79db07fd97337]

INTEGRATION: CWS rowlimit2 (1.24.4); FILE MERGED 2004/07/30 16:59:33 er 1.24.4.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:01:59 er 1.24.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [65fab76a3af9c6f7811eb93dd4509138c0a6f5a2]

INTEGRATION: CWS rowlimit2 (1.1.2); FILE ADDED 2004/08/02 14:28:12 er 1.1.2.3: #i28834# refined coupled iterator positioning; allow access behinf nMaxAccess in sums, using last available value 2004/07/30 16:59:33 er 1.1.2.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:01:59 er 1.1.2.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [16d931e0ada3a0d838d7fa3e504917c9bfa34516]

INTEGRATION: CWS rowlimit2 (1.19.4); FILE MERGED 2004/06/18 20:01:59 er 1.19.4.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [6616af804d1e726af5ac2e667be4334b8e8aa93e]

INTEGRATION: CWS rowlimit2 (1.23.6); FILE MERGED 2004/07/30 16:59:32 er 1.23.6.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:00:20 er 1.23.6.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [afb69fbe6a06c7b92c6582c50c92a46f78dd485f]

INTEGRATION: CWS rowlimit2 (1.3.6); FILE MERGED 2004/06/18 20:00:20 er 1.3.6.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [d178effe7dabed3d0d632e002077589c087f8a90]

INTEGRATION: CWS rowlimit2 (1.36.6); FILE MERGED 2004/07/30 17:42:35 er 1.36.6.2: RESYNC: (1.36-1.37); FILE MERGED 2004/06/18 20:00:20 er 1.36.6.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [d7dd4615138b9d5f1657d02a7245575d331612ac]

INTEGRATION: CWS rowlimit2 (1.76.6); FILE MERGED 2004/07/30 17:41:57 er 1.76.6.3: RESYNC: (1.76-1.77); FILE MERGED 2004/07/30 16:59:31 er 1.76.6.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:00:19 er 1.76.6.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [e899eaa38859175c4849204405fccd4c91b90d7b]

INTEGRATION: CWS rowlimit2 (1.1.2); FILE ADDED 2004/08/02 14:28:30 er 1.1.2.3: #i28834# refined coupled iterator positioning 2004/07/30 16:59:31 er 1.1.2.2: #i28834# reduce memory consumption of increased row limit; compressed arrays for flags and heights 2004/06/18 20:00:19 er 1.1.2.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [f8123fe5afccfd09a9c69d6c7bf6749ce6f74c1c]

INTEGRATION: CWS rowlimit2 (1.9.6); FILE MERGED 2004/06/18 20:00:19 er 1.9.6.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [bdeb9c0fa4086561b2aba9bcbea4471331618be0]

INTEGRATION: CWS sch03 (1.3.20); FILE MERGED 2004/08/17 09:15:47 dr 1.3.20.1: #i32576# new svx controls added in CWS dr14


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [e3b4794512397ad88ffb8427ca55afcc216d47e3]

INTEGRATION: CWS sch03 (1.4.2); FILE MERGED 2004/08/17 09:15:47 dr 1.4.2.1: #i32576# new svx controls added in CWS dr14


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [c1cf4891fde587ba8402ab6afbc7042b51229e32]

INTEGRATION: CWS sch03 (1.3.2); FILE MERGED 2004/08/18 09:33:43 dr 1.3.2.2: #i32576# missing item set handling 2004/08/17 09:15:46 dr 1.3.2.1: #i32576# new svx controls added in CWS dr14


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [33bf874dd9f0f018582b9e5e5248ad025d927f8b]

INTEGRATION: CWS sch03 (1.2.20); FILE MERGED 2004/08/17 09:15:46 dr 1.2.20.1: #i32576# new svx controls added in CWS dr14


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [193d9f94f22df06a877732ed5d8ab82eff0f3e0b]

INTEGRATION: CWS sch03 (1.4.2); FILE MERGED 2004/08/18 09:33:43 dr 1.4.2.2: #i32576# missing item set handling 2004/08/17 09:15:46 dr 1.4.2.1: #i32576# new svx controls added in CWS dr14


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [e871a0f983cd0989a5b9982b9d4c4e0ec8bb79cb]

INTEGRATION: CWS oasis2 (1.50.10); FILE MERGED 2004/07/27 14:12:36 mib 1.50.10.1: #i31910#: Don't set StreamRelPath for root storages


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [70a947799a2781526e24412f7731197bded78829]

INTEGRATION: CWS oasis2 (1.46.8); FILE MERGED 2004/07/29 13:23:42 sab 1.46.8.1: #i31252#; handle style names with spaces


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [b79865729f20979aa3071817be397602541d86e5]

INTEGRATION: CWS oasis2 (1.50.8); FILE MERGED 2004/07/29 13:23:41 sab 1.50.8.1: #i31252#; handle style names with spaces


2004-08-20  Rüdiger Timm  <rt@openoffice.org>  [c87c555ffdc708158b3e645648ca1fc235d2e7f5]

INTEGRATION: CWS oasis2 (1.97.8); FILE MERGED 2004/07/30 14:43:30 sab 1.97.8.1: #i31290#; font-decls are now font-face-decls


2004-08-16  Oliver Bolte  <obo@openoffice.org>  [cfc1d2a0c1d871cb5fb42b05a82d38c9941dc95a]

#i10000# assertion changed


2004-08-16  Oliver Bolte  <obo@openoffice.org>  [61f1c768954e417ab6f732a9938ef36c491f375a]

#i10000# pRootStorage changed to *GetRootStorage()


2004-08-16  Oliver Bolte  <obo@openoffice.org>  [c77a95f20df0645ee63efeb13f2d4885d7e3595f]

#i10000# header xlconst.hxx missing


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [539c31e723f74ce577ebb4d0bcc8298cbcd4c4ec]

INTEGRATION: CWS jmf2 (1.25.46); FILE MERGED 2004/07/19 10:43:40 ka 1.25.46.1: #i3316#: media support


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [ab1a77b8dc87f811f10f15456d6c0090a1980c8c]

INTEGRATION: CWS jmf2 (1.1.2); FILE ADDED 2004/07/22 18:38:57 ka 1.1.2.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [ddade5a059daf1826d675dcb8ef303aec09b39b3]

INTEGRATION: CWS jmf2 (1.6.32); FILE MERGED 2004/07/23 22:16:39 ka 1.6.32.3: RESYNC: (1.6-1.7); FILE MERGED 2004/07/22 18:35:55 ka 1.6.32.2: #i3316#: media support for calc 2004/07/19 10:43:39 ka 1.6.32.1: #i3316#: media support


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [689e6680330f1876d9deb3d9fb3d61d69537190e]

INTEGRATION: CWS jmf2 (1.17.224); FILE MERGED 2004/07/23 22:15:57 ka 1.17.224.2: RESYNC: (1.17-1.18); FILE MERGED 2004/07/23 09:45:48 ka 1.17.224.1: #i3316#: inserting media feature


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [23f6a2fb7dc34b77221c3c5bddbc1bba92cfe914]

INTEGRATION: CWS jmf2 (1.5.508); FILE MERGED 2004/08/02 10:57:29 ka 1.5.508.3: inserting media objects 2004/07/23 22:15:49 ka 1.5.508.2: RESYNC: (1.5-1.6); FILE MERGED 2004/07/19 10:43:38 ka 1.5.508.1: #i3316#: media support


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [910cbd976b3b2eb9645bd7303cce5050fbb0aa4f]

INTEGRATION: CWS jmf2 (1.40.34); FILE MERGED 2004/07/22 18:35:54 ka 1.40.34.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [e926ed4501930cdf69cef45cdcadebfae6dc3406]

INTEGRATION: CWS jmf2 (1.6.174); FILE MERGED 2004/07/19 10:43:38 ka 1.6.174.1: #i3316#: media support


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [7eb3f61613529bb3858d30cd2be670859d097309]

INTEGRATION: CWS jmf2 (1.24.72); FILE MERGED 2004/07/23 22:14:46 ka 1.24.72.2: RESYNC: (1.24-1.25); FILE MERGED 2004/07/22 18:35:54 ka 1.24.72.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [7d0b7de0fd4ab37d0b22bff414a4b04e6a9ca888]

INTEGRATION: CWS jmf2 (1.80.50); FILE MERGED 2004/07/29 07:15:08 ka 1.80.50.2: #i3316#: string finalization 2004/07/22 18:35:53 ka 1.80.50.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [48ffc7702c750c6d09d76b97a80bac5e4b558497]

INTEGRATION: CWS jmf2 (1.16.78); FILE MERGED 2004/07/22 18:35:52 ka 1.16.78.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [cdf0e0f00a7cfdc9e5fb30baed9afe363e8e8d06]

INTEGRATION: CWS jmf2 (1.1.2); FILE ADDED 2004/07/22 18:38:11 ka 1.1.2.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [0898c5efe244fdaf50ebedb9724e6994b90f9971]

INTEGRATION: CWS jmf2 (1.1.1.1.548); FILE MERGED 2004/07/23 09:45:48 ka 1.1.1.1.548.1: #i3316#: inserting media feature


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [287a94f6f2dabbfc19a0a04fa38c7e6a27d1630f]

INTEGRATION: CWS jmf2 (1.61.50); FILE MERGED 2004/07/23 12:56:48 ka 1.61.50.2: media cleanup 2004/07/22 18:35:52 ka 1.61.50.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [3421af90b043f4b21a40e6b584f3e4c93476d505]

INTEGRATION: CWS jmf2 (1.1.2); FILE ADDED 2004/07/29 07:27:12 ka 1.1.2.5: #i3316#: syntax 2004/07/29 07:15:07 ka 1.1.2.4: #i3316#: string finalization 2004/07/25 16:52:35 ka 1.1.2.3: syntax 2004/07/23 12:56:47 ka 1.1.2.2: media cleanup 2004/07/22 18:37:50 ka 1.1.2.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [51b814ede645a487496b1cd570560dfc66ed0a25]

INTEGRATION: CWS jmf2 (1.4.236); FILE MERGED 2004/07/22 18:35:52 ka 1.4.236.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [f4804fe8d0daa550539de01016e088d3d92816ca]

INTEGRATION: CWS jmf2 (1.4.174); FILE MERGED 2004/07/27 13:39:24 ka 1.4.174.3: m48 changes 2004/07/26 14:57:49 ka 1.4.174.2: use optimal size for media objects 2004/07/23 09:45:47 ka 1.4.174.1: #i3316#: inserting media feature


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [5ddb9ddeb485e8145998b203083dd70caa35f58c]

INTEGRATION: CWS jmf2 (1.11.36); FILE MERGED 2004/07/22 18:35:51 ka 1.11.36.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [9c0d979f2e85eb5ed336466a6394590568d886b1]

INTEGRATION: CWS jmf2 (1.18.126); FILE MERGED 2004/07/23 12:56:47 ka 1.18.126.3: media cleanup 2004/07/22 18:35:51 ka 1.18.126.2: #i3316#: media support for calc 2004/07/19 10:43:37 ka 1.18.126.1: #i3316#: media support


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [9cf0f51d0c0fe34f7d99604a62a891bdd5f11219]

INTEGRATION: CWS jmf2 (1.12.216); FILE MERGED 2004/07/23 22:06:48 ka 1.12.216.3: RESYNC: (1.12-1.13); FILE MERGED 2004/07/23 09:45:46 ka 1.12.216.2: #i3316#: inserting media feature 2004/07/19 10:43:36 ka 1.12.216.1: #i3316#: media support


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [f475570347422bd80f922b2be76e09a0aba00243]

INTEGRATION: CWS jmf2 (1.7.174); FILE MERGED 2004/07/22 18:35:50 ka 1.7.174.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [884ad74bf872c42ae6048ef697bf0608e32d86d4]

INTEGRATION: CWS jmf2 (1.1.2); FILE ADDED 2004/07/22 18:37:15 ka 1.1.2.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [db0f29b269273c3b5355652a42536d528e989799]

INTEGRATION: CWS jmf2 (1.5.174); FILE MERGED 2004/07/22 18:35:50 ka 1.5.174.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [fd568c203dc34a19ff092d1f877bc8a7c9240f57]

INTEGRATION: CWS jmf2 (1.1.1.1.548); FILE MERGED 2004/07/22 18:35:50 ka 1.1.1.1.548.1: #i3316#: media support for calc


2004-08-12  Oliver Bolte  <obo@openoffice.org>  [a0368164515765c845f405e49ec5ad20147f03ca]

INTEGRATION: CWS jmf2 (1.40.76); FILE MERGED 2004/07/23 22:05:48 ka 1.40.76.2: RESYNC: (1.40-1.41); FILE MERGED 2004/07/22 18:35:49 ka 1.40.76.1: #i3316#: media support for calc


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [157f6d86804d72a19a1f22c4c3f7592f77c92271]

INTEGRATION: CWS docking3 (1.1.2); FILE ADDED 2004/07/22 06:44:00 cd 1.1.2.1: #i31887# Added missing viewerbar


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [4f5cb8e3f20b61cbde6dd1d0aabf1c36a8c51e97]

INTEGRATION: CWS docking3 (1.6.42); FILE MERGED 2004/07/21 11:26:52 dbo 1.6.42.1: #i31722# added package manager menu item helpid Issue number: Submitted by: Reviewed by:


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [09427fb46e412c711bf66e10cf9d9ecd414c7bda]

INTEGRATION: CWS pbhelp02 (1.5.6); FILE MERGED 2004/07/13 08:50:57 pb 1.5.6.2: RESYNC: (1.5-1.6); FILE MERGED 2004/06/30 07:37:32 pb 1.5.6.1: fix: #i29824# help menu changes


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [2734220763095dd8b5e57249eaaa7dabba81ff90]

INTEGRATION: CWS encryption (1.11.6); FILE MERGED 2004/07/16 17:39:37 jmarmion 1.11.6.5: #115980# - complete password stuff for calc. 2004/07/14 10:20:29 dr 1.11.6.4: RESYNC: (1.11-1.12); FILE MERGED 2004/03/25 13:04:06 dr 1.11.6.3: #115980# storage/stream handling reworked 2004/03/23 17:39:29 dr 1.11.6.2: #115980# using interaction handler for passwords 2004/03/23 15:41:51 dr 1.11.6.1: #115980# implementation: BIFF8 standard decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [f440c1c86a68dc5055ec9e56174706c1163a36dc]

INTEGRATION: CWS encryption (1.13.6); FILE MERGED 2004/07/14 10:19:39 dr 1.13.6.2: RESYNC: (1.13-1.14); FILE MERGED 2004/03/17 12:55:26 dr 1.13.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [38d2545abbc5fd63a2aa9dfd929311dff79f715f]

INTEGRATION: CWS encryption (1.5.6); FILE MERGED 2004/04/14 10:08:16 dr 1.5.6.8: #115980# final changes 2004/03/31 12:53:32 dr 1.5.6.7: #115980# new password messages, decrypter base class handles stream position now 2004/03/29 13:23:42 dr 1.5.6.6: #115980# added Weak-XOR codec 2004/03/26 13:05:25 dr 1.5.6.5: #115980# final changes 2004/03/25 13:04:05 dr 1.5.6.4: #115980# storage/stream handling reworked 2004/03/23 15:41:51 dr 1.5.6.3: #115980# implementation: BIFF8 standard decryption 2004/03/18 18:35:28 dr 1.5.6.2: #115980# preparations for decryption 2004/03/17 12:55:26 dr 1.5.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [9344c856e557bb59087571b6aa2c35fa7916e253]

INTEGRATION: CWS encryption (1.8.6); FILE MERGED 2004/07/14 10:19:30 dr 1.8.6.3: RESYNC: (1.8-1.9); FILE MERGED 2004/03/25 13:04:05 dr 1.8.6.2: #115980# storage/stream handling reworked 2004/03/23 17:39:28 dr 1.8.6.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [0a50e98caa885e1265a23ebb10f7e66dfc00964f]

INTEGRATION: CWS encryption (1.2.72); FILE MERGED 2004/07/15 08:56:59 dr 1.2.72.3: #i10000# merge error 2004/07/14 15:54:40 dr 1.2.72.2: #i10000# merge error 2004/07/14 14:17:49 dr 1.2.72.1: #i10000# merge conflicts


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [dab91d0a9e76bb6a77de7b9e17cbf3b9677a3d69]

INTEGRATION: CWS encryption (1.60.4); FILE MERGED 2004/07/14 10:16:45 dr 1.60.4.6: RESYNC: (1.60-1.61); FILE MERGED 2004/03/31 14:20:03 dr 1.60.4.5: #115980# direct use of XclImpDecryptHelper::ReadFilepass 2004/03/31 12:53:31 dr 1.60.4.4: #115980# new password messages, decrypter base class handles stream position now 2004/03/23 17:39:28 dr 1.60.4.3: #115980# using interaction handler for passwords 2004/03/23 15:41:50 dr 1.60.4.2: #115980# implementation: BIFF8 standard decryption 2004/03/17 12:55:23 dr 1.60.4.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [98dd53c4802f13786d5f843fccf91de9187ed896]

INTEGRATION: CWS encryption (1.90.6); FILE MERGED 2004/07/14 10:15:37 dr 1.90.6.5: RESYNC: (1.90-1.93); FILE MERGED 2004/03/25 13:04:02 dr 1.90.6.4: #115980# storage/stream handling reworked 2004/03/23 17:39:27 dr 1.90.6.3: #115980# using interaction handler for passwords 2004/03/23 15:41:50 dr 1.90.6.2: #115980# implementation: BIFF8 standard decryption 2004/03/17 12:55:21 dr 1.90.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [a771e7a1e1f8ebae0b21d41ec6737b07c92df6d8]

INTEGRATION: CWS encryption (1.12.140); FILE MERGED 2004/07/14 10:15:12 dr 1.12.140.3: RESYNC: (1.12-1.13); FILE MERGED 2004/03/25 13:04:01 dr 1.12.140.2: #115980# storage/stream handling reworked 2004/03/23 17:39:27 dr 1.12.140.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [d7027fea2b33a5403a0a61aeb0c796067634f4f9]

INTEGRATION: CWS encryption (1.11.6); FILE MERGED 2004/07/14 10:31:43 dr 1.11.6.4: RESYNC: (1.11-1.12); FILE MERGED 2004/03/25 13:15:19 dr 1.11.6.3: #115980# storage/stream handling reworked 2004/03/23 17:40:55 dr 1.11.6.2: #115980# using interaction handler for passwords 2004/03/23 15:43:55 dr 1.11.6.1: #115980# implementation: BIFF8 standard decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [e342cd5225a0bd3f4248ffbae7f02f99d8317024]

INTEGRATION: CWS encryption (1.2.72); FILE MERGED 2004/07/14 14:18:13 dr 1.2.72.1: #i10000# merge conflicts


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [18145ea165c80d2e7b9e896455d96fe4a7566ce8]

INTEGRATION: CWS encryption (1.13.10); FILE MERGED 2004/07/14 10:30:45 dr 1.13.10.4: RESYNC: (1.13-1.15); FILE MERGED 2004/03/31 12:56:14 dr 1.13.10.3: #115980# new password messages, decrypter base class handles stream position now 2004/03/25 13:15:19 dr 1.13.10.2: #115980# storage/stream handling reworked 2004/03/17 12:56:14 dr 1.13.10.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [c0f2ff29a86df51176cce556c7b5d6138bdecf0e]

INTEGRATION: CWS encryption (1.4.6); FILE MERGED 2004/06/04 11:32:10 cmc 1.4.6.7: #i5362# propose using MSCodec_XorXLS95 for excel as words XOR is slightly different and leave MSCodec_Xor95 as common baseclass 2004/04/14 10:09:03 dr 1.4.6.6: #115980# final changes 2004/03/31 12:56:14 dr 1.4.6.5: #115980# new password messages, decrypter base class handles stream position now 2004/03/25 13:15:19 dr 1.4.6.4: #115980# storage/stream handling reworked 2004/03/23 15:43:55 dr 1.4.6.3: #115980# implementation: BIFF8 standard decryption 2004/03/18 18:35:16 dr 1.4.6.2: #115980# preparations for decryption 2004/03/17 12:56:14 dr 1.4.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [d71388bc39d93a79782a853025ae29614c7e413b]

INTEGRATION: CWS encryption (1.24.108); FILE MERGED 2004/07/14 10:25:50 dr 1.24.108.5: RESYNC: (1.24-1.25); FILE MERGED 2004/03/31 14:20:15 dr 1.24.108.4: #115980# direct use of XclImpDecryptHelper::ReadFilepass 2004/03/31 12:56:13 dr 1.24.108.3: #115980# new password messages, decrypter base class handles stream position now 2004/03/23 17:40:54 dr 1.24.108.2: #115980# using interaction handler for passwords 2004/03/17 12:56:13 dr 1.24.108.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [5e65904af080670a192c30434c64ac509d978296]

INTEGRATION: CWS encryption (1.7.108); FILE MERGED 2004/07/14 10:25:17 dr 1.7.108.3: RESYNC: (1.7-1.10); FILE MERGED 2004/03/29 13:24:37 dr 1.7.108.2: #115980# added Weak-XOR codec 2004/03/25 13:15:18 dr 1.7.108.1: #115980# storage/stream handling reworked


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [b48d20787a30b47714fd714b78f27462ea82e335]

INTEGRATION: CWS encryption (1.51.108); FILE MERGED 2004/07/14 10:24:17 dr 1.51.108.3: RESYNC: (1.51-1.53); FILE MERGED 2004/03/25 13:15:18 dr 1.51.108.2: #115980# storage/stream handling reworked 2004/03/23 17:40:54 dr 1.51.108.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [9983b1cf698c908427ab1fc4b1051f38e92b38dd]

INTEGRATION: CWS encryption (1.1.2); FILE ADDED 2004/07/16 17:36:05 jmarmion 1.1.2.1: #115980# - complete password stuff for calc.


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [3b988c8ed651e14d980a8e4840a33e0cf310027f]

INTEGRATION: CWS encryption (1.15.42); FILE MERGED 2004/07/16 17:36:44 jmarmion 1.15.42.1: #115980# - complete password stuff for calc.


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [8b50cbb916d2e94193021ee152dccc0c217e7c6b]

INTEGRATION: CWS encryption (1.42.84); FILE MERGED 2004/07/14 11:36:29 dr 1.42.84.2: RESYNC: (1.42-1.43); FILE MERGED 2004/03/31 12:58:46 dr 1.42.84.1: #115980# use define from errcode.hxx, don't introduce own reduntant


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [df19005b123d6dbdcd2370f3a08657b4caea7f55]

INTEGRATION: CWS encryption (1.69.36); FILE MERGED 2004/07/16 17:38:26 jmarmion 1.69.36.1: #115980# - complete password stuff for calc.


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [70836d39f79da3646dace07dbb6b26ae1afd1293]

INTEGRATION: CWS encryption (1.20.6); FILE MERGED 2004/07/14 10:35:34 dr 1.20.6.4: RESYNC: (1.20-1.21); FILE MERGED 2004/03/25 13:17:22 dr 1.20.6.3: #115980# storage/stream handling reworked 2004/03/23 17:41:18 dr 1.20.6.2: #115980# using interaction handler for passwords 2004/03/23 15:44:41 dr 1.20.6.1: #115980# implementation: BIFF8 standard decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [a136579bcded1c1fa8fae60ac4aebbc3725991d5]

INTEGRATION: CWS encryption (1.14.6); FILE MERGED 2004/07/14 10:35:25 dr 1.14.6.3: RESYNC: (1.14-1.15); FILE MERGED 2004/03/25 13:17:22 dr 1.14.6.2: #115980# storage/stream handling reworked 2004/03/23 17:41:18 dr 1.14.6.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [4a98a6d7b699a1818647605f3b33974d04a206f1]

INTEGRATION: CWS encryption (1.1.2); FILE ADDED 2004/04/14 10:09:04 dr 1.1.2.7: #115980# final changes 2004/03/31 12:56:14 dr 1.1.2.6: #115980# new password messages, decrypter base class handles stream position now 2004/03/29 13:24:37 dr 1.1.2.5: #115980# added Weak-XOR codec 2004/03/25 13:15:19 dr 1.1.2.4: #115980# storage/stream handling reworked 2004/03/23 15:43:55 dr 1.1.2.3: #115980# implementation: BIFF8 standard decryption 2004/03/18 18:35:15 dr 1.1.2.2: #115980# preparations for decryption 2004/03/17 12:56:15 dr 1.1.2.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [0c1232046bdc3fccef4fb50b18e4de876bae3633]

INTEGRATION: CWS encryption (1.6.6); FILE MERGED 2004/07/14 10:31:25 dr 1.6.6.2: RESYNC: (1.6-1.7); FILE MERGED 2004/03/25 13:15:19 dr 1.6.6.1: #115980# storage/stream handling reworked


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [62db027b8f222cc0d99afa175c2526bf0006b227]

INTEGRATION: CWS encryption (1.3.108); FILE MERGED 2004/07/14 10:30:53 dr 1.3.108.2: RESYNC: (1.3-1.4); FILE MERGED 2004/03/31 12:56:14 dr 1.3.108.1: #115980# new password messages, decrypter base class handles stream position now


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [7cf88d15ba52562b725a89bffd38de6874d8e6ef]

INTEGRATION: CWS encryption (1.8.6); FILE MERGED 2004/07/14 10:30:15 dr 1.8.6.2: RESYNC: (1.8-1.9); FILE MERGED 2004/03/23 17:40:55 dr 1.8.6.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [e80ad63c370dd7e475d3ef96337fbfe643b82472]

INTEGRATION: CWS encryption (1.2.72); FILE MERGED 2004/07/14 14:18:12 dr 1.2.72.1: #i10000# merge conflicts


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [de3ca95f01603ddd88d891f337c2a1477503a6a0]

INTEGRATION: CWS encryption (1.5.108); FILE MERGED 2004/07/14 10:29:22 dr 1.5.108.2: RESYNC: (1.5-1.6); FILE MERGED 2004/03/31 12:56:14 dr 1.5.108.1: #115980# new password messages, decrypter base class handles stream position now


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [69c0f8a9a76b018d258cae1b5f3294e5190abcac]

INTEGRATION: CWS encryption (1.4.108); FILE MERGED 2004/03/17 12:56:14 dr 1.4.108.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [0844a70c10b6d07a01c6b3940137572d6a31fcf9]

INTEGRATION: CWS encryption (1.8.6); FILE MERGED 2004/07/14 10:29:13 dr 1.8.6.2: RESYNC: (1.8-1.9); FILE MERGED 2004/03/23 17:40:55 dr 1.8.6.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [8453cea098fac3d1579840eae3daf7310f92db46]

INTEGRATION: CWS encryption (1.31.6); FILE MERGED 2004/07/14 10:26:51 dr 1.31.6.3: RESYNC: (1.31-1.34); FILE MERGED 2004/03/25 13:15:18 dr 1.31.6.2: #115980# storage/stream handling reworked 2004/03/23 17:40:55 dr 1.31.6.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [0e97e4f30fe0aba640ff61ea8b3c7307684cf3c3]

INTEGRATION: CWS encryption (1.4.140); FILE MERGED 2004/03/23 17:40:54 dr 1.4.140.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [e52cac5ac1568a5954fdb0451795909c47597022]

INTEGRATION: CWS encryption (1.6.272); FILE MERGED 2004/07/14 10:24:46 dr 1.6.272.2: RESYNC: (1.6-1.7); FILE MERGED 2004/03/23 17:40:54 dr 1.6.272.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [7c061236805f665055ef23874ada4f0ae8acaa8c]

INTEGRATION: CWS encryption (1.41.6); FILE MERGED 2004/07/14 10:23:50 dr 1.41.6.2: RESYNC: (1.41-1.43); FILE MERGED 2004/03/25 13:15:18 dr 1.41.6.1: #115980# storage/stream handling reworked


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [aa2fed420d4bafd3df23244b16bd9233f1670d40]

INTEGRATION: CWS encryption (1.11.242); FILE MERGED 2004/03/25 13:15:17 dr 1.11.242.2: #115980# storage/stream handling reworked 2004/03/23 15:43:55 dr 1.11.242.1: #115980# implementation: BIFF8 standard decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [0b727cf01eb7fb629d9ec733f1bf270c1a028bb8]

INTEGRATION: CWS encryption (1.13.282); FILE MERGED 2004/07/14 10:22:59 dr 1.13.282.4: RESYNC: (1.13-1.14); FILE MERGED 2004/03/25 13:15:17 dr 1.13.282.3: #115980# storage/stream handling reworked 2004/03/23 15:43:54 dr 1.13.282.2: #115980# implementation: BIFF8 standard decryption 2004/03/17 12:56:13 dr 1.13.282.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [fa17d0e289f428801e1f4a1d3e3e287daf631a2e]

INTEGRATION: CWS encryption (1.7.6); FILE MERGED 2004/03/25 13:04:50 dr 1.7.6.1: #115980# storage/stream handling reworked


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [73ed342a4716694e4bb389ea2812ff1e8c5660b9]

INTEGRATION: CWS encryption (1.2.280); FILE MERGED 2004/07/16 17:43:07 jmarmion 1.2.280.2: #115980# - complete password stuff for calc. 2004/03/23 17:40:19 dr 1.2.280.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [9f1f529cd63e30243fcc109dd02882ed8776eb19]

INTEGRATION: CWS encryption (1.1.2); FILE ADDED 2004/03/29 13:23:42 dr 1.1.2.3: #115980# added Weak-XOR codec 2004/03/23 15:41:51 dr 1.1.2.2: #115980# implementation: BIFF8 standard decryption 2004/03/17 12:55:28 dr 1.1.2.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [3b00181e6a930412c926092dc2119f74b474ddd1]

INTEGRATION: CWS encryption (1.6.6); FILE MERGED 2004/07/14 10:20:07 dr 1.6.6.2: RESYNC: (1.6-1.9); FILE MERGED 2004/03/25 13:04:06 dr 1.6.6.1: #115980# storage/stream handling reworked


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [f759af28ea373b243c22fb6a447962c4b566580d]

INTEGRATION: CWS encryption (1.2.72); FILE MERGED 2004/07/15 09:05:19 dr 1.2.72.2: #i10000# merge error 2004/07/14 14:17:50 dr 1.2.72.1: #i10000# merge conflicts


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [0285429838fb7b20e8c350fcc0b9ba657301beb0]

INTEGRATION: CWS encryption (1.3.4); FILE MERGED 2004/07/14 10:19:07 dr 1.3.4.2: RESYNC: (1.3-1.5); FILE MERGED 2004/03/17 12:55:26 dr 1.3.4.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [ba464c14fc67266ae4e228e9ae1b205700d1b0e3]

INTEGRATION: CWS encryption (1.8.10); FILE MERGED 2004/07/14 10:18:59 dr 1.8.10.2: RESYNC: (1.8-1.12); FILE MERGED 2004/03/17 12:55:26 dr 1.8.10.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [4cce99592beecf1eb6cc67b778f524df5a812ce7]

INTEGRATION: CWS encryption (1.10.10); FILE MERGED 2004/07/14 10:18:50 dr 1.10.10.2: RESYNC: (1.10-1.11); FILE MERGED 2004/03/17 12:55:25 dr 1.10.10.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [fee700218bdd594a2d1f6eb24fe9ab63a7d8fa28]

INTEGRATION: CWS encryption (1.13.6); FILE MERGED 2004/07/14 10:18:40 dr 1.13.6.4: RESYNC: (1.13-1.17); FILE MERGED 2004/03/25 13:04:04 dr 1.13.6.3: #115980# storage/stream handling reworked 2004/03/23 15:41:50 dr 1.13.6.2: #115980# implementation: BIFF8 standard decryption 2004/03/17 12:55:25 dr 1.13.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [29a68dd3a0795ccfa0955b80ddbf2430c2d0269c]

INTEGRATION: CWS encryption (1.8.6); FILE MERGED 2004/07/14 10:18:32 dr 1.8.6.3: RESYNC: (1.8-1.10); FILE MERGED 2004/03/31 12:53:32 dr 1.8.6.2: #115980# new password messages, decrypter base class handles stream position now 2004/03/17 12:55:24 dr 1.8.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [7578dc940f9b97e5de57d2dcd5a2c3e02918e747]

INTEGRATION: CWS encryption (1.9.6); FILE MERGED 2004/07/14 10:18:23 dr 1.9.6.3: RESYNC: (1.9-1.10); FILE MERGED 2004/03/25 13:04:04 dr 1.9.6.2: #115980# storage/stream handling reworked 2004/03/23 17:39:28 dr 1.9.6.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [eb4d35bbff7504751eeac236b1914bc8d6c34481]

INTEGRATION: CWS encryption (1.42.6); FILE MERGED 2004/07/14 10:13:35 dr 1.42.6.5: RESYNC: (1.42-1.43); FILE MERGED 2004/03/31 14:20:04 dr 1.42.6.4: #115980# direct use of XclImpDecryptHelper::ReadFilepass 2004/03/31 12:53:32 dr 1.42.6.3: #115980# new password messages, decrypter base class handles stream position now 2004/03/23 15:41:50 dr 1.42.6.2: #115980# implementation: BIFF8 standard decryption 2004/03/17 12:55:24 dr 1.42.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [fddc77530c3889f48b4029a3bd88fb021711428f]

INTEGRATION: CWS encryption (1.24.60); FILE MERGED 2004/07/14 10:16:53 dr 1.24.60.2: RESYNC: (1.24-1.25); FILE MERGED 2004/03/17 12:55:23 dr 1.24.60.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [555c06298d07d6bb68f8bfa089f4e545d608df31]

INTEGRATION: CWS encryption (1.17.6); FILE MERGED 2004/07/14 10:16:15 dr 1.17.6.3: RESYNC: (1.17-1.18); FILE MERGED 2004/03/25 13:04:03 dr 1.17.6.2: #115980# storage/stream handling reworked 2004/03/23 17:39:28 dr 1.17.6.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [588010d41b1bb26e36e0d50ae3ba06090c3404fa]

INTEGRATION: CWS encryption (1.44.4); FILE MERGED 2004/07/14 10:16:03 dr 1.44.4.3: RESYNC: (1.44-1.48); FILE MERGED 2004/03/25 13:04:03 dr 1.44.4.2: #115980# storage/stream handling reworked 2004/03/23 17:39:27 dr 1.44.4.1: #115980# using interaction handler for passwords


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [1f078d9955a5214a42d4e83656d6c0d875cd8106]

INTEGRATION: CWS encryption (1.31.6); FILE MERGED 2004/07/14 10:15:45 dr 1.31.6.2: RESYNC: (1.31-1.32); FILE MERGED 2004/03/17 12:55:22 dr 1.31.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [c495447f901b8e941b386d3ca6fe871b8c97f6ee]

INTEGRATION: CWS encryption (1.26.6); FILE MERGED 2004/07/14 10:15:28 dr 1.26.6.2: RESYNC: (1.26-1.28); FILE MERGED 2004/03/17 12:55:21 dr 1.26.6.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [87ba9d50a4008188754b7f15d6267db1813e8683]

INTEGRATION: CWS encryption (1.24.10); FILE MERGED 2004/07/14 10:15:20 dr 1.24.10.2: RESYNC: (1.24-1.27); FILE MERGED 2004/03/17 12:55:21 dr 1.24.10.1: #115980# preparations for decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [da3f6c36aff30eb1c0acbee667f08880241726a0]

INTEGRATION: CWS encryption (1.22.72); FILE MERGED 2004/07/16 17:39:37 jmarmion 1.22.72.1: #115980# - complete password stuff for calc.


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [238f596877e2cac2fc46a1979b5b4bda8b232972]

INTEGRATION: CWS encryption (1.62.6); FILE MERGED 2004/07/14 10:14:18 dr 1.62.6.6: RESYNC: (1.62-1.64); FILE MERGED 2004/03/31 12:53:31 dr 1.62.6.5: #115980# new password messages, decrypter base class handles stream position now 2004/03/29 13:23:40 dr 1.62.6.4: #115980# added Weak-XOR codec 2004/03/25 15:13:12 dr 1.62.6.3: #115980# dumper additions 2004/03/25 13:03:54 dr 1.62.6.2: #115980# storage/stream handling reworked 2004/03/23 15:41:49 dr 1.62.6.1: #115980# implementation: BIFF8 standard decryption


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [97582b259b2ebcca4bd2bffe551c4bbb0ceba85b]

INTEGRATION: CWS encryption (1.1.2); FILE ADDED 2004/07/16 17:40:25 jmarmion 1.1.2.1: #115980# - complete password stuff for calc.


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [57d6869d400aeb6cf6fdb9ac310d84dd9938cc1c]

INTEGRATION: CWS encryption (1.9.72); FILE MERGED 2004/07/16 17:41:18 jmarmion 1.9.72.1: #115980# - complete password stuff for calc.


2004-08-11  Oliver Bolte  <obo@openoffice.org>  [6890df235c73af6d5a968b5cf2eaec4d33a06013]

INTEGRATION: CWS encryption (1.3.410); FILE MERGED 2004/03/23 17:37:49 dr 1.3.410.1: #115980# using interaction handler for passwords


2004-08-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [0866268e6ab755e3532757dfcc7e8e742780a5b7]

#i10000#: HasMarked() -> AreObjectsMarked()


2004-08-04  Daniel Rentz  <dr@openoffice.org>  [21241e20407ed75fa0dd7c4b8a4944a40aa2fb82]

#i10000# changes from CWS dr14


2004-08-04  Daniel Rentz  <dr@openoffice.org>  [71426b462e7f23db3f1bca2ac0bb4a825839775c]

#i10000# disable orientation controls


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [be9eb1c30f9a05f6709b553acc38ff1a8e14bab1]

INTEGRATION: CWS aw017 (1.66.58); FILE MERGED 2004/07/29 14:09:10 aw 1.66.58.1: #i25616#


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [d4b9cb3c2a16e25a566a2e74a71f487479963f91]

INTEGRATION: CWS aw017 (1.25.12); FILE MERGED 2004/07/29 14:09:11 aw 1.25.12.1: #i25616#


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [d4ee136899ba56349259e6d10ee478b5445c75d7]

INTEGRATION: CWS aw017 (1.61.74); FILE MERGED 2004/07/29 14:09:10 aw 1.61.74.1: #i25616#


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [64ca43281fddc454cc4d94ec1df5362db74ef4a7]

INTEGRATION: CWS aw017 (1.14.14); FILE MERGED 2004/07/29 14:09:09 aw 1.14.14.1: #i25616#


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3589c5e523cbbb9bbea1b11385ae0f4b4973da32]

INTEGRATION: CWS aw017 (1.4.14); FILE MERGED 2004/07/29 14:09:09 aw 1.4.14.1: #i25616#


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [103438fe5bfc6482facb931636bb4c1f04406f08]

INTEGRATION: CWS aw017 (1.11.64); FILE MERGED 2004/07/29 14:09:09 aw 1.11.64.1: #i25616#


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9bc8d786b7d47765faad4e9b4732d8c70f03f7da]

INTEGRATION: CWS aw017 (1.20.18); FILE MERGED 2004/07/29 14:09:08 aw 1.20.18.1: #i25616#


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3bc6a6caab94581b1f4017d2b9bedf423cfa2345]

INTEGRATION: CWS aw017 (1.9.62); FILE MERGED 2004/07/29 14:08:51 aw 1.9.62.1: #i25616#


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7e925f743996717f2c414f90c636dfa97aa86c80]

INTEGRATION: CWS grouping (1.5.6); FILE MERGED 2004/07/16 10:26:28 nn 1.5.6.10: #i25110# renaming of groups and group fields 2004/07/05 17:27:02 dr 1.5.6.9: #i25110# DataPilot grouping dialogs 2004/06/29 15:03:29 dr 1.5.6.8: #i25110# const functions 2004/06/17 16:31:35 nn 1.5.6.7: #i25110# remove group dimension if all visible groups were removed 2004/06/16 18:56:31 nn 1.5.6.6: #i25110# date part grouping, continued 2004/06/10 17:42:30 nn 1.5.6.5: RESYNC: (1.5-1.6); FILE MERGED 2004/06/09 18:55:20 nn 1.5.6.4: #i25110# date part grouping 2004/05/07 16:48:40 nn 1.5.6.3: #i25110# grouping of values 2004/04/29 15:28:00 nn 1.5.6.2: #i25110# renaming of group dimensions and groups 2004/04/26 15:57:31 nn 1.5.6.1: #i25110# functions to manipulate groups


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [791f2fa79001d149307e201e1ba5157e7cd1e8fb]

INTEGRATION: CWS grouping (1.52.58); FILE MERGED 2004/07/27 11:38:43 nn 1.52.58.4: RESYNC: (1.55-1.57); FILE MERGED 2004/07/19 15:19:25 nn 1.52.58.3: resource changes 2004/07/19 14:11:59 nn 1.52.58.2: RESYNC: (1.52-1.55); FILE MERGED 2004/07/16 10:24:58 nn 1.52.58.1: #i25110# renaming of groups and group fields


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [71a0d7284ebac2e2f8c5262870f8a9f3d225b81b]

INTEGRATION: CWS grouping (1.2.438); FILE MERGED 2004/06/16 18:56:02 nn 1.2.438.5: #i25110# date part grouping, continued 2004/06/09 18:55:07 nn 1.2.438.4: #i25110# date part grouping 2004/05/07 16:48:27 nn 1.2.438.3: #i25110# grouping of values 2004/04/29 15:27:32 nn 1.2.438.2: #i25110# renaming of group dimensions and groups 2004/04/26 15:56:48 nn 1.2.438.1: #i25110# functions to manipulate groups


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [34e1a856da212d224b038abaed445e5bef81cdc0]

INTEGRATION: CWS grouping (1.3.6); FILE MERGED 2004/07/27 11:31:44 nn 1.3.6.2: RESYNC: (1.3-1.4); FILE MERGED 2004/07/05 17:25:40 dr 1.3.6.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7f62af735fd38ff8fa33344e3676ea080ddd8000]

INTEGRATION: CWS grouping (1.3.6); FILE MERGED 2004/07/27 11:31:35 nn 1.3.6.2: RESYNC: (1.3-1.4); FILE MERGED 2004/07/05 17:25:39 dr 1.3.6.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cf71b9d7ed47db811f35c48be3f5cc871af84a1d]

INTEGRATION: CWS grouping (1.11.6); FILE MERGED 2004/07/19 13:02:33 sab 1.11.6.1: #i25110#; add grouping


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e5b24941fd121f6b8ebae41040681e860013580a]

INTEGRATION: CWS grouping (1.14.6); FILE MERGED 2004/07/19 13:02:33 sab 1.14.6.1: #i25110#; add grouping


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [833f7fb5306398c5c95347e2099100ff588e3275]

INTEGRATION: CWS grouping (1.2.6); FILE MERGED 2004/07/05 14:28:55 dr 1.2.6.7: #i25110# wrong date step limit 2004/07/01 13:24:25 dr 1.2.6.6: #i25110# export of DP grouping 2004/06/30 13:57:07 dr 1.2.6.5: #i25110# export standard grouping 2004/06/25 19:14:57 dr 1.2.6.4: #i25110# import of visible grouping names, ignore calc'ed fields 2004/06/25 10:36:21 dr 1.2.6.3: #i25110# import of numeric grouping 2004/06/24 12:36:03 dr 1.2.6.2: #i25110# import of text grouping 2004/06/23 16:11:53 dr 1.2.6.1: #i25110# grouping preparations


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c9bf8a77f8bc883993d6310bbf837ba0d3fb4297]

INTEGRATION: CWS grouping (1.4.4); FILE MERGED 2004/06/10 16:13:24 nn 1.4.4.3: RESYNC: (1.4-1.5); FILE MERGED 2004/04/29 15:27:10 nn 1.4.4.2: #i25110# renaming of group dimensions and groups 2004/04/26 15:55:52 nn 1.4.4.1: #i25110# functions to manipulate groups


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [5d4902a3490016755187d9deda2c4af934ca60da]

INTEGRATION: CWS grouping (1.3.4); FILE MERGED 2004/07/27 11:21:55 nn 1.3.4.2: RESYNC: (1.3-1.4); FILE MERGED 2004/07/05 17:23:48 dr 1.3.4.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [90d62fec82165790047658fabd12c955e96087af]

INTEGRATION: CWS grouping (1.40.4); FILE MERGED 2004/07/27 11:21:47 nn 1.40.4.2: RESYNC: (1.40-1.41); FILE MERGED 2004/07/05 17:23:48 dr 1.40.4.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8fb82b243fa6b961076b423bb2504cc4c113e150]

INTEGRATION: CWS grouping (1.7.58); FILE MERGED 2004/07/27 11:21:38 nn 1.7.58.3: RESYNC: (1.8-1.9); FILE MERGED 2004/07/19 13:53:43 nn 1.7.58.2: RESYNC: (1.7-1.8); FILE MERGED 2004/07/16 10:24:27 nn 1.7.58.1: #i25110# renaming of groups and group fields


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [29ba72decfad7821a6de0367b536ab487f7761ba]

INTEGRATION: CWS grouping (1.3.4); FILE MERGED 2004/06/10 13:02:10 nn 1.3.4.3: RESYNC: (1.3-1.4); FILE MERGED 2004/04/29 15:26:32 nn 1.3.4.2: #i25110# renaming of group dimensions and groups 2004/04/26 15:54:04 nn 1.3.4.1: #i25110# functions to manipulate groups


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [54dd7a1e7805f84a636a2354aa0f5686c3d03e14]

INTEGRATION: CWS grouping (1.18.6); FILE MERGED 2004/07/19 14:21:29 nn 1.18.6.2: RESYNC: (1.18-1.19); FILE MERGED 2004/07/05 17:24:07 dr 1.18.6.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [523dd61793bb4b5e9e03a2f234f4961284730bb3]

INTEGRATION: CWS grouping (1.29.6); FILE MERGED 2004/07/05 17:27:02 dr 1.29.6.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6220b9e21899c1753d150d4104d45765f35b2b43]

INTEGRATION: CWS grouping (1.26.6); FILE MERGED 2004/07/05 17:27:01 dr 1.26.6.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [82ab51fe336eb8a7f0bcd332fc46831fbc6240bf]

INTEGRATION: CWS grouping (1.11.40); FILE MERGED 2004/07/05 17:26:34 dr 1.11.40.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e5d0fba15c5bdf782849b9ae52ef39fb3dc90fb4]

INTEGRATION: CWS grouping (1.5.428); FILE MERGED 2004/07/05 17:24:54 dr 1.5.428.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [40ef99be2d3a270ecbefb4c23f1e29219f43fd04]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/07/05 17:24:54 dr 1.1.2.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1ea2c7239d5f711491623af120d6549a627da7e4]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/07/05 17:24:53 dr 1.1.2.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8077fe7a67c3e4df865f9af2d14591f2f6b8fc83]

INTEGRATION: CWS grouping (1.4.40); FILE MERGED 2004/07/05 17:27:49 dr 1.4.40.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [fc9179c2c57b0999e56243a374ee82f66cc3a9e0]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/07/19 15:19:04 nn 1.1.2.3: resource changes 2004/07/06 18:37:42 dr 1.1.2.2: #i25110# string review 2004/07/05 17:27:49 dr 1.1.2.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [b1545172390f55920b808cb18fbf3749fdf2f9ee]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/07/05 17:27:48 dr 1.1.2.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [15afa0617259714b88eeb307ba1dd94560bd99d6]

INTEGRATION: CWS grouping (1.2.122); FILE MERGED 2004/07/05 17:26:11 dr 1.2.122.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [89ae030d346d250d74085a8fc88ee9ebe175461f]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/07/05 17:26:10 dr 1.1.2.1: #i25110# DataPilot grouping dialogs


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ce05d8c8ff05b497cfff10ee338efb8515c89bd4]

INTEGRATION: CWS grouping (1.53.6); FILE MERGED 2004/07/16 10:25:35 nn 1.53.6.1: #i25110# renaming of groups and group fields


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [37858149afffc30866e561503eba6c75eaea661c]

INTEGRATION: CWS grouping (1.72.6); FILE MERGED 2004/07/27 11:25:16 nn 1.72.6.2: RESYNC: (1.72-1.73); FILE MERGED 2004/07/19 13:02:34 sab 1.72.6.1: #i25110#; add grouping


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0e435fbc6b320e72ef5403c2ff304e6ff600359c]

INTEGRATION: CWS grouping (1.95.6); FILE MERGED 2004/07/27 11:25:06 nn 1.95.6.3: RESYNC: (1.96-1.97); FILE MERGED 2004/07/19 14:02:13 nn 1.95.6.2: RESYNC: (1.95-1.96); FILE MERGED 2004/07/19 13:02:33 sab 1.95.6.1: #i25110#; add grouping


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1707a410b7d43c3ba6f5e5e623749d9894b2875c]

INTEGRATION: CWS grouping (1.5.398); FILE MERGED 2004/07/19 13:02:32 sab 1.5.398.1: #i25110#; add grouping


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f2bc682921b9f6b8c0ca92e9cba9687ee78fffbb]

INTEGRATION: CWS grouping (1.13.6); FILE MERGED 2004/07/19 13:02:32 sab 1.13.6.1: #i25110#; add grouping


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [4a7619d5f3d0b76076b72de2a768f0ec77fc4260]

INTEGRATION: CWS grouping (1.2.6); FILE MERGED 2004/07/01 13:24:40 dr 1.2.6.8: #i25110# export of DP grouping 2004/06/30 13:57:23 dr 1.2.6.7: #i25110# export standard grouping 2004/06/28 08:14:26 dr 1.2.6.6: #i25110# more unsupported records 2004/06/25 19:15:14 dr 1.2.6.5: #i25110# import of visible grouping names, ignore calc'ed fields 2004/06/25 14:33:14 dr 1.2.6.4: #i25110# import of date grouping 2004/06/25 10:37:29 dr 1.2.6.3: #i25110# import of numeric grouping 2004/06/24 12:37:02 dr 1.2.6.2: #i25110# import of text grouping 2004/06/23 16:11:30 dr 1.2.6.1: #i25110# grouping preparations


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [de9dc7d90c77e765d5be092eefe63a59bad5eebf]

INTEGRATION: CWS grouping (1.2.6); FILE MERGED 2004/07/01 13:24:39 dr 1.2.6.8: #i25110# export of DP grouping 2004/06/30 13:57:23 dr 1.2.6.7: #i25110# export standard grouping 2004/06/25 19:15:12 dr 1.2.6.6: #i25110# import of visible grouping names, ignore calc'ed fields 2004/06/25 15:35:44 dr 1.2.6.5: #i25110# import of date grouping last changes 2004/06/25 14:33:13 dr 1.2.6.4: #i25110# import of date grouping 2004/06/25 10:37:29 dr 1.2.6.3: #i25110# import of numeric grouping 2004/06/24 12:37:01 dr 1.2.6.2: #i25110# import of text grouping 2004/06/23 16:11:29 dr 1.2.6.1: #i25110# grouping preparations


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [62109cb0f9dc03ece631690d4762c4980b902b61]

INTEGRATION: CWS grouping (1.2.6); FILE MERGED 2004/07/01 13:24:39 dr 1.2.6.5: #i25110# export of DP grouping 2004/06/30 13:57:22 dr 1.2.6.4: #i25110# export standard grouping 2004/06/25 10:37:28 dr 1.2.6.3: #i25110# import of numeric grouping 2004/06/24 12:37:01 dr 1.2.6.2: #i25110# import of text grouping 2004/06/23 16:11:29 dr 1.2.6.1: #i25110# grouping preparations


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2d264272717c825cc4411aaafb1befb7e6d9c041]

INTEGRATION: CWS grouping (1.2.6); FILE MERGED 2004/07/01 13:24:27 dr 1.2.6.7: #i25110# export of DP grouping 2004/06/30 13:57:07 dr 1.2.6.6: #i25110# export standard grouping 2004/06/25 19:14:57 dr 1.2.6.5: #i25110# import of visible grouping names, ignore calc'ed fields 2004/06/25 14:32:57 dr 1.2.6.4: #i25110# import of date grouping 2004/06/25 10:36:22 dr 1.2.6.3: #i25110# import of numeric grouping 2004/06/24 12:36:04 dr 1.2.6.2: #i25110# import of text grouping 2004/06/23 16:11:54 dr 1.2.6.1: #i25110# grouping preparations


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ae85803ddaa36bbb67834f3662693f732b5dfae0]

INTEGRATION: CWS grouping (1.2.6); FILE MERGED 2004/07/05 17:22:48 dr 1.2.6.11: #i25110# handle 'days only' with step count 1 correctly 2004/07/05 14:29:31 dr 1.2.6.10: #i25110# handle postponed fields correctly 2004/07/01 13:24:26 dr 1.2.6.9: #i25110# export of DP grouping 2004/06/30 13:57:07 dr 1.2.6.8: #i25110# export standard grouping 2004/06/28 08:14:40 dr 1.2.6.7: #i25110# more unsupported records 2004/06/25 19:14:57 dr 1.2.6.6: #i25110# import of visible grouping names, ignore calc'ed fields 2004/06/25 15:35:33 dr 1.2.6.5: #i25110# import of date grouping last changes 2004/06/25 14:32:56 dr 1.2.6.4: #i25110# import of date grouping 2004/06/25 10:36:22 dr 1.2.6.3: #i25110# import of numeric grouping 2004/06/24 12:36:04 dr 1.2.6.2: #i25110# import of text grouping 2004/06/23 16:11:53 dr 1.2.6.1: #i25110# grouping preparations


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0ae4e14e4adf476a0d778bb22f410f00e4c4ed15]

INTEGRATION: CWS grouping (1.14.6); FILE MERGED 2004/06/25 10:36:21 dr 1.14.6.2: #i25110# import of numeric grouping 2004/06/23 16:11:53 dr 1.14.6.1: #i25110# grouping preparations


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8ca33b14313ec72d3e49d3714b6cf980f37c5901]

INTEGRATION: CWS grouping (1.64.6); FILE MERGED 2004/06/30 13:57:06 dr 1.64.6.7: #i25110# export standard grouping 2004/06/28 08:14:42 dr 1.64.6.6: #i25110# more unsupported records 2004/06/25 19:14:55 dr 1.64.6.5: #i25110# import of visible grouping names, ignore calc'ed fields 2004/06/25 15:35:33 dr 1.64.6.4: #i25110# import of date grouping last changes 2004/06/25 14:32:55 dr 1.64.6.3: #i25110# import of date grouping 2004/06/25 10:36:20 dr 1.64.6.2: #i25110# import of numeric grouping 2004/06/23 16:11:52 dr 1.64.6.1: #i25110# grouping preparations


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e29ddb0cd47abc624169b2954b0a6e5450177969]

INTEGRATION: CWS grouping (1.9.70); FILE MERGED 2004/06/10 16:15:25 nn 1.9.70.3: RESYNC: (1.9-1.10); FILE MERGED 2004/04/26 15:55:52 nn 1.9.70.2: #i25110# functions to manipulate groups 2004/04/08 19:02:54 nn 1.9.70.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c562b2465ffac95f67cb96e25047b555f27e8408]

INTEGRATION: CWS grouping (1.7.296); FILE MERGED 2004/06/10 16:14:22 nn 1.7.296.5: RESYNC: (1.8-1.9); FILE MERGED 2004/05/14 17:58:55 nn 1.7.296.4: #i25110# better handling of value groups 2004/04/19 09:40:46 nn 1.7.296.3: #i25110# Page field selections restrict the members shown if grouped 2004/04/16 10:42:28 nn 1.7.296.2: RESYNC: (1.7-1.8); FILE MERGED 2004/04/08 19:02:54 nn 1.7.296.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [069cfd138d72994e95f7f62b1db62e51cce89e83]

INTEGRATION: CWS grouping (1.4.416); FILE MERGED 2004/06/16 18:52:44 nn 1.4.416.7: #i25110# date part grouping, continued 2004/06/10 16:14:10 nn 1.4.416.6: RESYNC: (1.4-1.5); FILE MERGED 2004/05/14 17:58:55 nn 1.4.416.5: #i25110# better handling of value groups 2004/05/07 16:48:11 nn 1.4.416.4: #i25110# grouping of values 2004/04/30 13:30:36 nn 1.4.416.3: #i25110# get ScDPItemData from member 2004/04/15 17:56:12 nn 1.4.416.2: #i25110# handle several grouped dimensions from the same base 2004/04/08 19:02:53 nn 1.4.416.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [37098389fb0b919fe687e9565a9de9e140a94e97]

INTEGRATION: CWS grouping (1.5.422); FILE MERGED 2004/06/16 18:52:44 nn 1.5.422.6: #i25110# date part grouping, continued 2004/06/10 16:13:59 nn 1.5.422.5: RESYNC: (1.6-1.7); FILE MERGED 2004/05/14 17:58:55 nn 1.5.422.4: #i25110# better handling of value groups 2004/04/16 10:42:21 nn 1.5.422.3: RESYNC: (1.5-1.6); FILE MERGED 2004/04/15 17:56:12 nn 1.5.422.2: #i25110# handle several grouped dimensions from the same base 2004/04/08 19:02:52 nn 1.5.422.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [79246868b8350f78d9633c52c7f8fc2dc57cf04c]

INTEGRATION: CWS grouping (1.10.6); FILE MERGED 2004/06/17 16:31:57 nn 1.10.6.4: #i25110# remove group dimension if all visible groups were removed; grouping with database data 2004/06/10 16:12:59 nn 1.10.6.3: RESYNC: (1.10-1.12); FILE MERGED 2004/06/01 10:39:49 nn 1.10.6.2: #i25110# numerical grouping of date values 2004/04/26 15:55:51 nn 1.10.6.1: #i25110# functions to manipulate groups


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c1466bfc8baabf2c52a28545812ac0b8340b5272]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/06/17 17:22:03 nn 1.1.2.13: #i25110# two-digit numbers for hours/minutes/seconds 2004/06/16 18:52:44 nn 1.1.2.12: #i25110# date part grouping, continued 2004/06/09 18:54:52 nn 1.1.2.11: #i25110# date part grouping 2004/06/01 10:39:49 nn 1.1.2.10: #i25110# numerical grouping of date values 2004/05/19 16:56:45 nn 1.1.2.9: #i25110# also look for non-integer GroupInfo parameter values 2004/05/17 16:06:58 nn 1.1.2.8: #i25110# handling of group range end, textual entries 2004/05/14 17:58:54 nn 1.1.2.7: #i25110# better handling of value groups 2004/05/07 16:48:10 nn 1.1.2.6: #i25110# grouping of values 2004/04/30 13:29:39 nn 1.1.2.5: #i25110# GetColumnCount excludes data layout 2004/04/26 15:55:51 nn 1.1.2.4: #i25110# functions to manipulate groups 2004/04/16 13:38:20 nn 1.1.2.3: #i25110# add page fields 2004/04/15 17:56:11 nn 1.1.2.2: #i25110# handle several grouped dimensions from the same base 2004/04/08 19:02:47 nn 1.1.2.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [27c9698f1b283fa358b7ffc04873c25e398720f6]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/06/30 13:56:18 dr 1.1.2.10: #i25110# + ScDPDimensionSaveData::HasGroupDimensions() 2004/06/29 15:03:18 dr 1.1.2.9: #i25110# const functions 2004/06/21 12:55:43 nn 1.1.2.8: missing include 2004/06/17 16:31:22 nn 1.1.2.7: #i25110# remove group dimension if all visible groups were removed 2004/06/16 18:52:43 nn 1.1.2.6: #i25110# date part grouping, continued 2004/06/09 18:54:52 nn 1.1.2.5: #i25110# date part grouping 2004/06/01 10:39:49 nn 1.1.2.4: #i25110# numerical grouping of date values 2004/05/07 16:48:11 nn 1.1.2.3: #i25110# grouping of values 2004/04/29 15:27:10 nn 1.1.2.2: #i25110# renaming of group dimensions and groups 2004/04/26 15:55:50 nn 1.1.2.1: #i25110# functions to manipulate groups


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3512313639faad129f34329cb3e16e135e64371a]

INTEGRATION: CWS grouping (1.2.432); FILE MERGED 2004/06/10 13:02:53 nn 1.2.432.4: RESYNC: (1.3-1.4); FILE MERGED 2004/04/19 09:40:21 nn 1.2.432.3: #i25110# Page field selections restrict the members shown if grouped 2004/04/16 10:37:03 nn 1.2.432.2: RESYNC: (1.2-1.3); FILE MERGED 2004/04/08 19:01:55 nn 1.2.432.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8f640b91ae9856d934a4b755f52aad9906acbb29]

INTEGRATION: CWS grouping (1.2.432); FILE MERGED 2004/06/16 18:51:17 nn 1.2.432.6: #i25110# date part grouping, continued 2004/06/10 13:02:43 nn 1.2.432.5: RESYNC: (1.2-1.3); FILE MERGED 2004/05/14 17:58:32 nn 1.2.432.4: #i25110# better handling of value groups 2004/04/30 13:30:26 nn 1.2.432.3: #i25110# get ScDPItemData from member 2004/04/15 17:55:51 nn 1.2.432.2: #i25110# handle several grouped dimensions from the same base 2004/04/08 19:01:54 nn 1.2.432.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [5c155dba4b9a60c4085f4beacf5c6272150bb87e]

INTEGRATION: CWS grouping (1.1.1.1.440); FILE MERGED 2004/06/16 18:51:16 nn 1.1.1.1.440.6: #i25110# date part grouping, continued 2004/06/10 13:02:33 nn 1.1.1.1.440.5: RESYNC: (1.2-1.3); FILE MERGED 2004/05/14 17:58:32 nn 1.1.1.1.440.4: #i25110# better handling of value groups 2004/04/16 10:36:56 nn 1.1.1.1.440.3: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/04/15 17:55:51 nn 1.1.1.1.440.2: #i25110# handle several grouped dimensions from the same base 2004/04/08 19:01:54 nn 1.1.1.1.440.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2b65531d528d6de02bc3bba0f5dc40d8dfad98cd]

INTEGRATION: CWS grouping (1.3.6); FILE MERGED 2004/06/17 16:30:55 nn 1.3.6.3: #i25110# remove group dimension if all visible groups were removed 2004/06/10 13:01:47 nn 1.3.6.2: RESYNC: (1.3-1.5); FILE MERGED 2004/04/26 15:54:03 nn 1.3.6.1: #i25110# functions to manipulate groups


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c67f69001284f32b9c36e3783bb87e8502739dc1]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/06/16 18:51:16 nn 1.1.2.8: #i25110# date part grouping, continued 2004/06/09 18:54:24 nn 1.1.2.7: #i25110# date part grouping 2004/06/01 10:39:26 nn 1.1.2.6: #i25110# numerical grouping of date values 2004/05/14 17:58:32 nn 1.1.2.5: #i25110# better handling of value groups 2004/05/07 16:47:50 nn 1.1.2.4: #i25110# grouping of values 2004/04/26 15:54:03 nn 1.1.2.3: #i25110# functions to manipulate groups 2004/04/15 17:55:50 nn 1.1.2.2: #i25110# handle several grouped dimensions from the same base 2004/04/08 19:01:53 nn 1.1.2.1: #i25110# grouping of elements


2004-08-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [01cbf0b8e3b02a16e2ee0bb382fed7ee538cad1e]

INTEGRATION: CWS grouping (1.1.2); FILE ADDED 2004/06/30 13:56:06 dr 1.1.2.9: #i25110# + ScDPDimensionSaveData::HasGroupDimensions() 2004/06/29 15:03:07 dr 1.1.2.8: #i25110# const functions 2004/06/17 16:30:55 nn 1.1.2.7: #i25110# remove group dimension if all visible groups were removed 2004/06/16 18:51:16 nn 1.1.2.6: #i25110# date part grouping, continued 2004/06/09 18:54:24 nn 1.1.2.5: #i25110# date part grouping 2004/06/01 10:39:25 nn 1.1.2.4: #i25110# numerical grouping of date values 2004/05/07 16:47:50 nn 1.1.2.3: #i25110# grouping of values 2004/04/29 15:26:32 nn 1.1.2.2: #i25110# renaming of group dimensions and groups 2004/04/26 15:54:03 nn 1.1.2.1: #i25110# functions to manipulate groups


2004-08-03  Daniel Rentz  <dr@openoffice.org>  [9f297d6d38130c1821e967e7dec416c052e6a347]

#i10000# merge conflict


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [3a1c299ffdcad9832c710e2573d48f0fb365d938]

INTEGRATION: CWS dr14 (1.18.206); FILE MERGED 2004/06/10 18:42:17 dr 1.18.206.4: RESYNC: (1.20-1.21); FILE MERGED 2004/05/19 12:55:23 dr 1.18.206.3: RESYNC: (1.18-1.20); FILE MERGED 2003/12/18 13:43:11 dr 1.18.206.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state 2003/11/26 14:57:35 dr 1.18.206.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [758bf4a26513ba437402d070598aa0b02d6cbb46]

INTEGRATION: CWS dr14 (1.60.20); FILE MERGED 2004/07/12 15:09:47 dr 1.60.20.4: RESYNC: (1.63-1.66); FILE MERGED 2004/06/03 14:00:59 dr 1.60.20.3: RESYNC: (1.62-1.63); FILE MERGED 2004/04/21 09:26:37 dr 1.60.20.2: RESYNC: (1.60-1.62); FILE MERGED 2004/04/14 16:03:23 dr 1.60.20.1: #i23177# page preview icon


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [918c7f58fadcb3213ad2fc172422802de63eb5b0]

INTEGRATION: CWS dr14 (1.19.198); FILE MERGED 2004/07/12 15:11:04 dr 1.19.198.5: RESYNC: (1.22-1.23); FILE MERGED 2004/06/10 18:49:29 dr 1.19.198.4: RESYNC: (1.21-1.22); FILE MERGED 2004/05/19 12:58:03 dr 1.19.198.3: RESYNC: (1.20-1.21); FILE MERGED 2004/02/13 17:09:54 dr 1.19.198.2: RESYNC: (1.19-1.20); FILE MERGED 2003/11/26 14:57:36 dr 1.19.198.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [23374f43bf98df2530bcfbb1940325997dd15958]

INTEGRATION: CWS dr14 (1.36.20); FILE MERGED 2004/06/10 18:46:03 dr 1.36.20.2: RESYNC: (1.36-1.37); FILE MERGED 2004/04/08 14:53:57 dr 1.36.20.1: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [60bbad924bb87404e2cb7de0a3e0ee452bc59288]

INTEGRATION: CWS dr14 (1.34.34); FILE MERGED 2004/07/22 16:27:40 dr 1.34.34.4: RESYNC: (1.36-1.37); FILE MERGED 2004/06/10 18:45:04 dr 1.34.34.3: RESYNC: (1.35-1.36); FILE MERGED 2004/04/21 09:29:42 dr 1.34.34.2: RESYNC: (1.34-1.35); FILE MERGED 2004/04/08 14:53:56 dr 1.34.34.1: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [7085f03e2ad9169cdef6367763b52681b17b94fc]

INTEGRATION: CWS dr14 (1.11.20); FILE MERGED 2004/07/22 16:27:30 dr 1.11.20.3: RESYNC: (1.12-1.13); FILE MERGED 2004/06/10 18:44:02 dr 1.11.20.2: RESYNC: (1.11-1.12); FILE MERGED 2004/04/08 14:53:53 dr 1.11.20.1: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [77814788eba33998944058f66d7ddace884aa200]

INTEGRATION: CWS dr14 (1.36.42); FILE MERGED 2004/07/09 17:07:52 nn 1.36.42.6: #i22640# implementation of shrink to fit 2004/07/07 18:11:16 nn 1.36.42.5: #i22928# handle cell alignment 'fill' 2004/06/10 18:43:54 dr 1.36.42.4: RESYNC: (1.38-1.39); FILE MERGED 2004/04/08 14:53:52 dr 1.36.42.3: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array 2004/02/13 17:06:10 dr 1.36.42.2: RESYNC: (1.36-1.38); FILE MERGED 2003/12/18 13:43:14 dr 1.36.42.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [c3ce6780e6082601233a3d88f36062578112200e]

INTEGRATION: CWS dr14 (1.22.32); FILE MERGED 2004/06/10 18:43:44 dr 1.22.32.7: RESYNC: (1.22-1.23); FILE MERGED 2004/04/15 15:50:22 dr 1.22.32.6: #i23675# diagonal borders step 7e: support for merged cells improved 2004/04/14 16:41:28 dr 1.22.32.5: #i23675# diagonal borders step 7d: support for merged cells improved 2004/04/14 16:00:05 dr 1.22.32.4: #i23675# diagonal borders step 7d: support for merged cells improved 2004/04/08 14:53:52 dr 1.22.32.3: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array 2004/04/01 12:08:25 dr 1.22.32.2: #i23675# diagonal borders step 7b: CellInfo uses svx::frmlnk::Style instead of SvxBorderLine 2004/03/26 17:06:16 dr 1.22.32.1: #i23675# diagonal borders step 7a: drop ScLineStruct


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [16842b48df2c6290415be28b060e0460d46d9787]

INTEGRATION: CWS dr14 (1.21.20); FILE MERGED 2004/06/14 09:36:53 dr 1.21.20.4: #100000# merge error 2004/06/10 18:42:56 dr 1.21.20.3: RESYNC: (1.22-1.23); FILE MERGED 2004/04/21 09:29:33 dr 1.21.20.2: RESYNC: (1.21-1.22); FILE MERGED 2004/04/08 14:53:49 dr 1.21.20.1: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [1cf3e0f7e9ae88872f87bb0f4ed1529d650e9dc2]

INTEGRATION: CWS dr14 (1.44.74); FILE MERGED 2004/07/22 16:27:09 dr 1.44.74.9: RESYNC: (1.56-1.57); FILE MERGED 2004/07/12 15:10:40 dr 1.44.74.8: RESYNC: (1.55-1.56); FILE MERGED 2004/06/10 18:42:27 dr 1.44.74.7: RESYNC: (1.53-1.55); FILE MERGED 2004/06/03 14:01:53 dr 1.44.74.6: RESYNC: (1.52-1.53); FILE MERGED 2004/05/19 12:55:33 dr 1.44.74.5: RESYNC: (1.51-1.52); FILE MERGED 2004/04/21 09:29:15 dr 1.44.74.4: RESYNC: (1.49-1.51); FILE MERGED 2004/03/15 18:38:52 dr 1.44.74.3: RESYNC: (1.47-1.49); FILE MERGED 2004/02/13 17:04:48 dr 1.44.74.2: RESYNC: (1.44-1.47); FILE MERGED 2003/12/18 13:43:12 dr 1.44.74.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [7d61494eee1a854285be2ddf8fec84edcb5ac101]

INTEGRATION: CWS dr14 (1.26.308); FILE MERGED 2004/06/10 18:39:41 dr 1.26.308.5: RESYNC: (1.29-1.30); FILE MERGED 2004/04/21 09:28:30 dr 1.26.308.4: RESYNC: (1.27-1.29); FILE MERGED 2004/03/15 18:40:54 dr 1.26.308.3: RESYNC: (1.26-1.27); FILE MERGED 2003/12/18 15:51:27 dr 1.26.308.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state 2003/12/18 13:41:33 dr 1.26.308.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [2b7a0b5e800e99e9e702c70808752c3dc22c1ce8]

INTEGRATION: CWS dr14 (1.78.38); FILE MERGED 2004/06/10 18:37:08 dr 1.78.38.8: RESYNC: (1.83-1.84); FILE MERGED 2004/04/21 09:27:14 dr 1.78.38.7: RESYNC: (1.82-1.83); FILE MERGED 2004/04/20 15:44:19 sab 1.78.38.6: #i23675#: add support of diagonal borders and shrink to fit 2004/03/15 18:39:57 dr 1.78.38.5: RESYNC: (1.80-1.82); FILE MERGED 2004/02/13 17:10:16 dr 1.78.38.4: RESYNC: (1.79-1.80); FILE MERGED 2004/01/05 18:21:46 dr 1.78.38.3: RESYNC: (1.78-1.79); FILE MERGED 2003/12/18 15:51:26 dr 1.78.38.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state 2003/12/18 13:41:32 dr 1.78.38.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [8ec97e801bcbcfa0078f2aefc363189d9fe30864]

INTEGRATION: CWS dr14 (1.8.62); FILE MERGED 2003/12/18 15:51:26 dr 1.8.62.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f25fd0782d94b85f208962e2f45b671f6795f78]

INTEGRATION: CWS dr14 (1.5.310); FILE MERGED 2004/05/19 12:53:39 dr 1.5.310.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/09 12:19:08 dr 1.5.310.1: #i22640# SvxAlignmentTabPage -> svx::AlignmentTabPage


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [a80e4293c0a9b29d6c0c8b4a7b8e0e3fb8ae8059]

INTEGRATION: CWS dr14 (1.2.6); FILE MERGED 2004/05/28 12:20:30 dr 1.2.6.1: #100000# dialogdiet changes


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [04b06e9e6b812113644a9dfc9ffba04dcecd1ca5]

INTEGRATION: CWS dr14 (1.10.24); FILE MERGED 2004/05/19 12:48:34 dr 1.10.24.7: RESYNC: (1.10-1.11); FILE MERGED 2004/04/15 17:39:03 dr 1.10.24.6: #i23675# diagonal borders, diagonal clipping usage 2004/04/14 15:59:10 dr 1.10.24.5: #i23675# diagonal borders step 7d: support for merged cells improved 2004/04/01 12:06:42 dr 1.10.24.4: #i32675# svx::frmlnk::[Diag]Style - classes instead of structs 2004/03/15 13:06:37 dr 1.10.24.3: #i23675# diagonal borders step 5a: draw text before borders 2004/03/12 17:17:50 dr 1.10.24.2: #i23675# diagonal borders step 6: Calc AutoFormats use diagonal frame lines 2004/03/12 15:33:21 dr 1.10.24.1: #i23675# diagonal borders step 5: AutoFormat dialog uses new svx frame drawing functionality


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [d4c0163fe1feab7c52096e28a72611a014f782fc]

INTEGRATION: CWS dr14 (1.10.20); FILE MERGED 2004/06/10 18:25:31 dr 1.10.20.2: RESYNC: (1.10-1.11); FILE MERGED 2004/04/08 14:52:07 dr 1.10.20.1: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [a77829334be87776415cd062576e02dc44aa2c6f]

INTEGRATION: CWS dr14 (1.12.78); FILE MERGED 2004/06/10 18:23:16 dr 1.12.78.4: RESYNC: (1.15-1.16); FILE MERGED 2004/06/03 14:00:11 dr 1.12.78.3: RESYNC: (1.14-1.15); FILE MERGED 2004/04/21 09:24:46 dr 1.12.78.2: RESYNC: (1.12-1.14); FILE MERGED 2004/04/08 14:52:07 dr 1.12.78.1: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8c47209354dd6bea6ef4d98f92783bffbb1c3e3]

INTEGRATION: CWS dr14 (1.3.326); FILE MERGED 2004/06/10 18:20:45 dr 1.3.326.6: RESYNC: (1.4-1.5); FILE MERGED 2004/05/28 12:20:10 dr 1.3.326.5: #100000# dialogdiet changes 2004/05/19 12:44:58 dr 1.3.326.4: RESYNC: (1.3-1.4); FILE MERGED 2004/04/14 15:58:49 dr 1.3.326.3: #i23675# diagonal borders step 7d: support for merged cells improved 2004/03/12 17:17:30 dr 1.3.326.2: #i23675# diagonal borders step 6: Calc AutoFormats use diagonal frame lines 2004/03/12 15:32:20 dr 1.3.326.1: #i23675# diagonal borders step 5: AutoFormat dialog uses new svx frame drawing functionality


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [4fbac185e3e226a29a3e9aa7ae91d87b9e5f670b]

INTEGRATION: CWS dr14 (1.12.52); FILE MERGED 2004/06/10 18:18:01 dr 1.12.52.2: RESYNC: (1.12-1.13); FILE MERGED 2004/04/08 14:51:15 dr 1.12.52.1: #100000# warning


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [fa5e88bcc290964110777694bf8da9ceb9a883a8]

INTEGRATION: CWS dr14 (1.5.4); FILE MERGED 2004/05/19 12:40:10 dr 1.5.4.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/09 12:18:52 dr 1.5.4.1: #i22640# SvxAlignmentTabPage -> svx::AlignmentTabPage


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [71c80b5ac2817b46ddf50653e0b099b01ba08790]

INTEGRATION: CWS dr14 (1.49.24); FILE MERGED 2004/06/10 18:10:44 dr 1.49.24.4: RESYNC: (1.52-1.53); FILE MERGED 2004/04/21 09:21:16 dr 1.49.24.3: RESYNC: (1.51-1.52); FILE MERGED 2004/02/13 17:24:12 dr 1.49.24.2: RESYNC: (1.49-1.51); FILE MERGED 2003/12/18 13:37:49 dr 1.49.24.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [0d3a64b586c0de5c59d09829e6e712e0120d5d87]

INTEGRATION: CWS dr14 (1.45.42); FILE MERGED 2004/07/22 16:21:26 dr 1.45.42.2: RESYNC: (1.45-1.46); FILE MERGED 2004/07/20 14:34:00 dr 1.45.42.1: #i23675# XML import of diag line styles fixed


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [5ec3edf41044510b11e60ab3d6623da52ef0f49d]

INTEGRATION: CWS dr14 (1.24.86); FILE MERGED 2004/04/20 15:44:59 sab 1.24.86.1: #i23675#: add support of diagonal borders,shrink to fit and repeated content


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [7e9f0adf35c1f553d4e72519272ac50148a6fd67]

INTEGRATION: CWS dr14 (1.48.22); FILE MERGED 2004/07/28 14:56:47 sab 1.48.22.4: #i32086#; add repeat-content to map 2004/07/22 16:21:16 dr 1.48.22.3: RESYNC: (1.49-1.50); FILE MERGED 2004/05/19 12:39:18 dr 1.48.22.2: RESYNC: (1.48-1.49); FILE MERGED 2004/04/20 15:44:58 sab 1.48.22.1: #i23675#: add support of diagonal borders,shrink to fit and repeated content


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [5b79b3039cc438311367216bd458458fdf51bcae]

INTEGRATION: CWS dr14 (1.9.206); FILE MERGED 2004/06/10 18:01:50 dr 1.9.206.2: RESYNC: (1.9-1.10); FILE MERGED 2003/12/18 13:37:14 dr 1.9.206.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [f15ca36ace3f821991ad0bb3913481bb334a7a6e]

INTEGRATION: CWS dr14 (1.11.22); FILE MERGED 2004/06/10 17:59:32 dr 1.11.22.4: RESYNC: (1.14-1.15); FILE MERGED 2004/03/15 18:52:22 dr 1.11.22.3: RESYNC: (1.12-1.14); FILE MERGED 2004/02/13 17:28:43 dr 1.11.22.2: RESYNC: (1.11-1.12); FILE MERGED 2003/12/18 13:49:41 dr 1.11.22.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [dba3948b22d71eb198e17292813f72cd62ea2255]

INTEGRATION: CWS dr14 (1.8.24); FILE MERGED 2004/06/03 13:58:47 dr 1.8.24.4: RESYNC: (1.9-1.10); FILE MERGED 2004/02/13 17:28:35 dr 1.8.24.3: RESYNC: (1.8-1.9); FILE MERGED 2003/12/18 13:55:08 dr 1.8.24.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state #i23675# Preparations for import/export of diagonal lines 2003/11/26 14:57:05 dr 1.8.24.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [121d759742a121cfe1ed6c1a07e5b33685ce23e8]

INTEGRATION: CWS dr14 (1.10.20); FILE MERGED 2004/06/10 17:58:28 dr 1.10.20.4: RESYNC: (1.13-1.15); FILE MERGED 2004/03/15 18:51:39 dr 1.10.20.3: RESYNC: (1.11-1.13); FILE MERGED 2004/02/13 17:28:03 dr 1.10.20.2: RESYNC: (1.10-1.11); FILE MERGED 2003/12/18 13:49:41 dr 1.10.20.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [214532d7028f3f5d425814a3afeaefc970b1edba]

INTEGRATION: CWS dr14 (1.7.24); FILE MERGED 2004/06/10 17:58:08 dr 1.7.24.3: RESYNC: (1.8-1.9); FILE MERGED 2004/03/15 18:51:32 dr 1.7.24.2: RESYNC: (1.7-1.8); FILE MERGED 2003/12/18 13:55:08 dr 1.7.24.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state #i23675# Preparations for import/export of diagonal lines


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [2ac674b1d5ada001217b8a578d2a1d390f22fc24]

INTEGRATION: CWS dr14 (1.8.24); FILE MERGED 2003/12/18 13:55:07 dr 1.8.24.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state #i23675# Preparations for import/export of diagonal lines


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [404129a207ba6cbcc7882fade9a58505c6df93ef]

INTEGRATION: CWS dr14 (1.12.22); FILE MERGED 2004/06/10 17:48:17 dr 1.12.22.4: RESYNC: (1.15-1.16); FILE MERGED 2004/03/15 18:57:52 dr 1.12.22.3: RESYNC: (1.13-1.15); FILE MERGED 2004/02/13 17:31:50 dr 1.12.22.2: RESYNC: (1.12-1.13); FILE MERGED 2003/12/18 13:47:09 dr 1.12.22.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [13633db20adc7dd514561a63ca563f841acbf44c]

INTEGRATION: CWS dr14 (1.8.24); FILE MERGED 2004/06/03 13:57:22 dr 1.8.24.4: RESYNC: (1.9-1.10); FILE MERGED 2004/01/05 18:58:25 dr 1.8.24.3: RESYNC: (1.8-1.9); FILE MERGED 2003/12/18 13:54:47 dr 1.8.24.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state #i23675# Preparations for import/export of diagonal lines 2003/11/26 14:56:52 dr 1.8.24.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [0b0bd2e6c90a7ea92e469c8810ebe53f80a08b24]

INTEGRATION: CWS dr14 (1.12.24); FILE MERGED 2004/07/06 14:51:36 dr 1.12.24.6: #i22928# 'fill' alignment expands to empty cells 2004/06/10 17:47:24 dr 1.12.24.5: RESYNC: (1.13-1.14); FILE MERGED 2004/03/15 18:57:18 dr 1.12.24.4: RESYNC: (1.12-1.13); FILE MERGED 2004/01/15 15:39:39 dr 1.12.24.3: #i23675# import/export of diagonal cell borders 2003/12/18 13:54:46 dr 1.12.24.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state #i23675# Preparations for import/export of diagonal lines 2003/11/26 14:56:52 dr 1.12.24.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff0f85dbe0938312ca9984ca94b7595942c5cc6d]

INTEGRATION: CWS dr14 (1.10.24); FILE MERGED 2004/03/15 18:56:11 dr 1.10.24.4: RESYNC: (1.10-1.11); FILE MERGED 2004/01/15 15:39:40 dr 1.10.24.3: #i23675# import/export of diagonal cell borders 2003/12/18 13:54:45 dr 1.10.24.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state #i23675# Preparations for import/export of diagonal lines 2003/11/26 14:56:51 dr 1.10.24.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [9bb039fdc6a7c92348539fbbaf8c14af98c3f4fa]

INTEGRATION: CWS dr14 (1.60.64); FILE MERGED 2004/06/10 17:41:36 dr 1.60.64.7: RESYNC: (1.63-1.64); FILE MERGED 2004/06/03 13:56:22 dr 1.60.64.6: RESYNC: (1.62-1.63); FILE MERGED 2004/03/26 16:15:18 dr 1.60.64.5: #100000# ByteString::operator+=(char) 2004/03/15 18:53:08 dr 1.60.64.4: RESYNC: (1.61-1.62); FILE MERGED 2004/01/05 18:56:22 dr 1.60.64.3: RESYNC: (1.60-1.61); FILE MERGED 2003/12/18 13:47:08 dr 1.60.64.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state 2003/11/26 14:56:50 dr 1.60.64.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [24f99d07d024187fb1c5a8ffaf642648fcdcadb8]

INTEGRATION: CWS dr14 (1.11.20); FILE MERGED 2004/06/15 08:07:44 dr 1.11.20.3: #100000# merge error 2004/06/10 17:38:29 dr 1.11.20.2: RESYNC: (1.11-1.12); FILE MERGED 2004/04/15 07:07:47 dr 1.11.20.1: #i23675# diagonal borders step 7d: support for merged cells improved


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [abf7316bfd99852459a9f288562d63f694fe9931]

INTEGRATION: CWS dr14 (1.19.206); FILE MERGED 2004/06/10 17:37:07 dr 1.19.206.3: RESYNC: (1.21-1.22); FILE MERGED 2004/02/13 17:32:35 dr 1.19.206.2: RESYNC: (1.19-1.21); FILE MERGED 2003/12/18 13:36:21 dr 1.19.206.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [8e4f20ebf4e6b28227aab93767f9ebd56f10f72b]

INTEGRATION: CWS dr14 (1.15.306); FILE MERGED 2004/03/15 13:05:44 dr 1.15.306.3: #i23675# diagonal borders step 6a: changed order of version info 2004/03/12 17:16:58 dr 1.15.306.2: #i23675# diagonal borders step 6: Calc AutoFormats use diagonal frame lines 2003/12/18 13:36:20 dr 1.15.306.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [d6bdf8771031851ed4a47e7e24866a599e31ea7c]

INTEGRATION: CWS dr14 (1.25.18); FILE MERGED 2004/06/10 17:31:27 dr 1.25.18.3: RESYNC: (1.26-1.27); FILE MERGED 2004/04/21 09:16:26 dr 1.25.18.2: RESYNC: (1.25-1.26); FILE MERGED 2004/04/08 14:50:38 dr 1.25.18.1: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [b80cb51aa1fc8434766b752e7c3272c26cda6a85]

INTEGRATION: CWS dr14 (1.6.182); FILE MERGED 2004/06/10 17:31:07 dr 1.6.182.2: RESYNC: (1.6-1.7); FILE MERGED 2003/12/18 13:35:08 dr 1.6.182.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [145eb9cc5148cd08a268224c71711517dd87431f]

INTEGRATION: CWS dr14 (1.22.160); FILE MERGED 2004/07/07 18:11:32 nn 1.22.160.4: #i22928# handle cell alignment 'fill' 2004/04/08 14:50:38 dr 1.22.160.3: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array 2004/01/05 19:07:38 dr 1.22.160.2: RESYNC: (1.22-1.23); FILE MERGED 2003/12/18 13:35:06 dr 1.22.160.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [42b8223287956276cb626f67d9c5f0350826b06b]

INTEGRATION: CWS dr14 (1.32.74); FILE MERGED 2004/06/10 17:29:28 dr 1.32.74.6: RESYNC: (1.38-1.39); FILE MERGED 2004/06/03 13:55:31 dr 1.32.74.5: RESYNC: (1.37-1.38); FILE MERGED 2004/05/19 12:37:24 dr 1.32.74.4: RESYNC: (1.36-1.37); FILE MERGED 2004/03/15 19:03:03 dr 1.32.74.3: RESYNC: (1.34-1.36); FILE MERGED 2004/02/13 17:34:29 dr 1.32.74.2: RESYNC: (1.32-1.34); FILE MERGED 2003/12/18 13:35:04 dr 1.32.74.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [d702ff03a443ad1e87b37a172895b0b00ab79ac9]

INTEGRATION: CWS dr14 (1.4.20); FILE MERGED 2004/07/12 14:44:32 dr 1.4.20.6: RESYNC: (1.5-1.6); FILE MERGED 2004/06/10 17:29:19 dr 1.4.20.5: RESYNC: (1.4-1.5); FILE MERGED 2004/04/15 15:49:30 dr 1.4.20.4: #i23675# diagonal borders step 7e: support for merged cells improved 2004/04/14 15:57:26 dr 1.4.20.3: #i23675# diagonal borders step 7d: support for merged cells improved 2004/04/08 14:50:38 dr 1.4.20.2: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array 2004/04/01 12:05:30 dr 1.4.20.1: #i23675# diagonal borders step 7b: CellInfo uses svx::frmlnk::Style instead of SvxBorderLine


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [d36efd63f6f44f5febe9260e9b95b7058167b562]

INTEGRATION: CWS dr14 (1.50.74); FILE MERGED 2004/06/10 17:27:32 dr 1.50.74.6: RESYNC: (1.55-1.56); FILE MERGED 2004/03/15 19:02:45 dr 1.50.74.5: RESYNC: (1.54-1.55); FILE MERGED 2004/02/13 17:33:58 dr 1.50.74.4: RESYNC: (1.52-1.54); FILE MERGED 2004/02/13 09:06:10 dr 1.50.74.3: #i23675# diagonal borders step 1: new svx::FrameSelector, new svx::frmlnk::* functions 2004/01/05 19:05:53 dr 1.50.74.2: RESYNC: (1.50-1.52); FILE MERGED 2003/11/26 14:56:23 dr 1.50.74.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [a016967bae7a12f10fb726e827572dc95612778d]

INTEGRATION: CWS dr14 (1.18.198); FILE MERGED 2004/04/21 09:14:19 dr 1.18.198.4: RESYNC: (1.18-1.19); FILE MERGED 2004/01/15 15:38:59 dr 1.18.198.3: #i23675# items for diagonal cell borders 2003/12/18 13:35:02 dr 1.18.198.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state 2003/11/26 14:56:22 dr 1.18.198.1: #i22640# new cell attribute 'shrink to fit'


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [3387c3e77c6671a000305c37a2f9d73d7b780f04]

INTEGRATION: CWS dr14 (1.18.306); FILE MERGED 2004/07/07 18:11:32 nn 1.18.306.5: #i22928# handle cell alignment 'fill' 2004/06/14 11:57:12 dr 1.18.306.4: #100000# merge error 2004/06/10 17:25:14 dr 1.18.306.3: RESYNC: (1.18-1.19); FILE MERGED 2004/04/08 14:50:37 dr 1.18.306.2: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array 2003/12/18 13:35:00 dr 1.18.306.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [697c0f138853c5b81221a79274ac806c9d9f0f46]

INTEGRATION: CWS dr14 (1.12.198); FILE MERGED 2004/06/10 17:23:59 dr 1.12.198.5: RESYNC: (1.15-1.16); FILE MERGED 2004/03/15 19:01:24 dr 1.12.198.4: RESYNC: (1.14-1.15); FILE MERGED 2004/02/13 17:33:05 dr 1.12.198.3: RESYNC: (1.13-1.14); FILE MERGED 2004/01/05 19:02:33 dr 1.12.198.2: RESYNC: (1.12-1.13); FILE MERGED 2003/12/18 13:34:58 dr 1.12.198.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [82e91769227244a866074eba64b9a368ab025c15]

INTEGRATION: CWS dr14 (1.7.44); FILE MERGED 2004/07/12 14:43:27 dr 1.7.44.2: RESYNC: (1.7-1.8); FILE MERGED 2003/12/18 13:31:34 dr 1.7.44.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [1d677f77fd9752f838c3b4098a59668166cd56bc]

INTEGRATION: CWS dr14 (1.57.48); FILE MERGED 2004/06/10 17:22:55 dr 1.57.48.3: RESYNC: (1.61-1.62); FILE MERGED 2004/04/21 09:10:39 dr 1.57.48.2: RESYNC: (1.57-1.61); FILE MERGED 2004/04/20 15:43:30 sab 1.57.48.1: #i23675#: add names of diagonal border and shrink to fit


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [b49f8d6346ae1cee2c3d4e275e2d5eab39e92639]

INTEGRATION: CWS dr14 (1.7.308); FILE MERGED 2004/04/23 15:47:40 dr 1.7.308.5: #100000# merge conflict, double which-id 2004/04/21 09:10:19 dr 1.7.308.4: RESYNC: (1.7-1.8); FILE MERGED 2004/01/15 15:38:00 dr 1.7.308.3: #i23675# SIDs for diagonal cell borders 2003/12/18 13:30:43 dr 1.7.308.2: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state 2003/11/26 14:54:47 dr 1.7.308.1: #i22640# new cell attribute '


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [272bfb3aab60106f93ec055c9548564303d4d501]

INTEGRATION: CWS dr14 (1.37.68); FILE MERGED 2004/07/22 16:16:55 dr 1.37.68.5: RESYNC: (1.40-1.41); FILE MERGED 2004/06/10 17:20:25 dr 1.37.68.4: RESYNC: (1.39-1.40); FILE MERGED 2004/04/21 09:10:11 dr 1.37.68.3: RESYNC: (1.38-1.39); FILE MERGED 2004/02/13 17:37:39 dr 1.37.68.2: RESYNC: (1.37-1.38); FILE MERGED 2003/12/18 13:30:41 dr 1.37.68.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [d46955af10123ab104eeadef56d975c89312e896]

INTEGRATION: CWS dr14 (1.9.166); FILE MERGED 2003/12/18 13:30:40 dr 1.9.166.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [89fb4e3fde558d11e90567097eebda36fc620126]

INTEGRATION: CWS dr14 (1.1.2); FILE ADDED 2004/06/14 09:49:40 dr 1.1.2.4: #100000# merge error 2004/04/15 15:48:35 dr 1.1.2.3: #i23675# diagonal borders step 7e: support for merged cells improved 2004/04/14 15:56:47 dr 1.1.2.2: #i23675# diagonal borders step 7d: support for merged cells improved 2004/04/08 14:48:36 dr 1.1.2.1: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [f9d53dfcf2cbf7b81b12ec9f47a8c4eec56ec982]

INTEGRATION: CWS dr14 (1.74.16); FILE MERGED 2004/06/10 17:14:30 dr 1.74.16.4: RESYNC: (1.75-1.76); FILE MERGED 2004/04/21 09:08:07 dr 1.74.16.3: RESYNC: (1.74-1.75); FILE MERGED 2004/04/08 14:48:36 dr 1.74.16.2: #i23675# diagonal borders step 7c: draw cell borders with svx::frmlnk::Array 2004/04/01 12:04:50 dr 1.74.16.1: #i23675# diagonal borders step 7b: CellInfo uses svx::frmlnk::Style instead of SvxBorderLine


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [5f2fb78b6e0a674edc17cfb5a7450cdd980f2401]

INTEGRATION: CWS dr14 (1.7.308); FILE MERGED 2003/11/26 14:54:46 dr 1.7.308.1: #i22640# new cell attribute '


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [eebccbf2bfeaf8b7efb75ed2bf3d746833905406]

INTEGRATION: CWS dr14 (1.4.324); FILE MERGED 2004/03/12 17:15:17 dr 1.4.324.2: #i23675# diagonal borders step 5: Calc AutoFormats use diagonal frame lines 2003/12/18 13:30:37 dr 1.4.324.1: #i22640# SvxOrientationItem replaced by SfxBoolItem for stacked state


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [6f5756cc5ca361f28aa714b9889a6a359dbed3dd]

INTEGRATION: CWS insight01 (1.2.2); FILE MERGED 2004/07/21 06:56:11 oj 1.2.2.4: RESYNC: (1.5-1.7); FILE MERGED 2004/07/06 07:59:31 oj 1.2.2.3: RESYNC: (1.4-1.5); FILE MERGED 2004/05/28 16:25:34 oj 1.2.2.2: RESYNC: (1.2-1.4); FILE MERGED 2004/04/26 13:24:23 oj 1.2.2.1: remove datasource admin dialog entry from tools menu


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [396e0095b837a0fee835dcea5ab8cfb02b1617ef]

INTEGRATION: CWS insight01 (1.25.10); FILE MERGED 2004/07/06 08:37:05 oj 1.25.10.4: RESYNC: (1.25-1.26); FILE MERGED 2004/06/03 09:33:03 oj 1.25.10.3: linux compile problem 2004/06/03 09:20:43 oj 1.25.10.2: merge to m40 2004/05/19 11:36:26 oj 1.25.10.1: #i19984# use rowset that was given


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [77bf17896e4a1e629608f0da6cb6bcce18a32b3a]

INTEGRATION: CWS insight01 (1.3.244); FILE MERGED 2004/02/20 11:28:14 oj 1.3.244.1: #i25414# extend the datadescriptor for database location and connection resource


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [18259200775da3aa915233bb0b0ffbfeab5eb19b]

INTEGRATION: CWS insight01 (1.21.58); FILE MERGED 2004/07/06 09:12:05 oj 1.21.58.2: RESYNC: (1.21-1.22); FILE MERGED 2004/06/10 11:28:45 sab 1.21.58.1: #i25410#; add ConnectionResource


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [37b3141e4fab3bdbc84a80c5e4001f609d87634b]

INTEGRATION: CWS insight01 (1.30.6); FILE MERGED 2004/07/06 09:20:03 oj 1.30.6.3: RESYNC: (1.35-1.36); FILE MERGED 2004/05/28 17:03:34 oj 1.30.6.2: RESYNC: (1.30-1.35); FILE MERGED 2004/05/19 11:36:26 oj 1.30.6.1: #i19984# use rowset that was given


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [98e1455b010481883d7a4b0989553566e92f56fb]

INTEGRATION: CWS insight01 (1.14.8); FILE MERGED 2004/07/06 09:19:18 oj 1.14.8.4: RESYNC: (1.15-1.16); FILE MERGED 2004/05/28 17:03:10 oj 1.14.8.3: RESYNC: (1.14-1.15); FILE MERGED 2004/05/19 11:36:25 oj 1.14.8.2: #i19984# use rowset that was given 2004/02/20 11:28:14 oj 1.14.8.1: #i25414# extend the datadescriptor for database location and connection resource


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [84ad7c7ffa4bf292c40d52f8ba00eee630b55ac6]

INTEGRATION: CWS insight01 (1.68.8); FILE MERGED 2004/07/21 07:09:24 oj 1.68.8.4: RESYNC: (1.72-1.73); FILE MERGED 2004/07/06 10:01:53 oj 1.68.8.3: RESYNC: (1.71-1.72); FILE MERGED 2004/05/28 17:23:57 oj 1.68.8.2: RESYNC: (1.68-1.71); FILE MERGED 2004/03/12 14:14:00 sab 1.68.8.1: #25410#; add support for database URL's


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [ac36d8d8fb3858f20c7e76686cd58856b260c953]

INTEGRATION: CWS insight01 (1.90.22); FILE MERGED 2004/07/21 07:08:40 oj 1.90.22.4: RESYNC: (1.95-1.97); FILE MERGED 2004/07/06 10:00:07 oj 1.90.22.3: RESYNC: (1.93-1.95); FILE MERGED 2004/05/28 17:23:01 oj 1.90.22.2: RESYNC: (1.90-1.93); FILE MERGED 2004/03/12 14:13:59 sab 1.90.22.1: #25410#; add support for database URL's


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [353cc7b502f5407ad3244e3380f0d0d3eb47c7c7]

INTEGRATION: CWS insight01 (1.7.248); FILE MERGED 2004/06/10 11:29:07 sab 1.7.248.1: #i25410#; add ConnectionResource


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [1b9db182099e3c8ac76c2292425210ce3ae7d6bd]

INTEGRATION: CWS insight01 (1.20.138); FILE MERGED 2004/07/06 10:02:26 oj 1.20.138.4: RESYNC: (1.21-1.22); FILE MERGED 2004/06/10 11:29:07 sab 1.20.138.3: #i25410#; add ConnectionResource 2004/05/28 17:24:07 oj 1.20.138.2: RESYNC: (1.20-1.21); FILE MERGED 2004/03/12 14:13:59 sab 1.20.138.1: #25410#; add support for database URL's


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f1fcac2385747faa886fafa59c01a2ffa729cd4]

INTEGRATION: CWS insight01 (1.14.22); FILE MERGED 2004/06/10 11:29:07 sab 1.14.22.4: #i25410#; add ConnectionResource 2004/06/03 07:31:20 oj 1.14.22.3: add return type to lcl__AddSourceLocation 2004/05/28 17:24:57 oj 1.14.22.2: RESYNC: (1.14-1.16); FILE MERGED 2004/03/12 14:13:59 sab 1.14.22.1: #25410#; add support for database URL's


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [609eb8d04cbbd0ba7f28e56dc51a0c726d95790a]

INTEGRATION: CWS insight01 (1.61.58); FILE MERGED 2004/07/06 07:44:00 oj 1.61.58.2: RESYNC: (1.61-1.62); FILE MERGED 2004/06/10 11:28:19 sab 1.61.58.1: #i25410#; add ConnectionResource


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [5a8fe5838aa5814c9291b45cab52c874c472b5ea]

INTEGRATION: CWS docking2 (1.6.16); FILE MERGED 2004/07/16 14:06:03 dfoster 1.6.16.1: #i29739# Add HIDs for Tools->Macros menu items Issue number: Submitted by: Reviewed by:


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [7fe8124c29abe12e7f9016629e7ee02186e5056a]

INTEGRATION: CWS docking2 (1.13.64); FILE MERGED 2004/07/14 07:36:00 cd 1.13.64.1: #i31427# Use new drop-down handler of toolbar for popup menu


2004-08-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [90691f28575148c3ea8e9dd5307b3a1abfe2b690]

INTEGRATION: CWS docking2 (1.9.64); FILE MERGED 2004/07/14 07:35:59 cd 1.9.64.1: #i31427# Use new drop-down handler of toolbar for popup menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [fd9482ab3f83aee94e28861d33c4bbc70153ad3c]

INTEGRATION: CWS os35 (1.2.32); FILE MERGED 2004/07/16 23:22:46 dr 1.2.32.1: #i20500# merge cells toolbar button


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [43ad813dfa77fc75f9941edd905310acefd9c5df]

INTEGRATION: CWS os35 (1.5.12); FILE MERGED 2004/07/16 23:22:29 dr 1.5.12.6: #i20500# merge cells toolbar button 2004/07/15 20:08:31 dr 1.5.12.5: RESYNC: (1.5-1.6); FILE MERGED 2004/07/13 15:07:18 dr 1.5.12.4: #i30271# new Calc Format menu 2004/07/12 17:33:48 dr 1.5.12.3: #i20340# redesigned Calc View menu 2004/07/12 16:22:15 cd 1.5.12.2: #i31348# Recent file list is now a popup menu 2004/06/30 14:25:33 os 1.5.12.1: #i30271#  format menu filled


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [2ed46b2109c7570b5419764a3c0574840a34351b]

INTEGRATION: CWS os35 (1.12.34); FILE MERGED 2004/07/12 17:33:20 dr 1.12.34.1: #i20340# redesigned Calc View menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [d4946973695642e4bcb53eff761b1eb57da60406]

INTEGRATION: CWS os35 (1.23.34); FILE MERGED 2004/07/12 17:33:16 dr 1.23.34.1: #i20340# redesigned Calc View menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [14527f93c8bac2f8ee7931f0c0ce7833545853fd]

INTEGRATION: CWS os35 (1.37.32); FILE MERGED 2004/07/16 23:21:59 dr 1.37.32.2: #i20500# merge cells toolbar button 2004/07/13 15:06:51 dr 1.37.32.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [c68533799dbd85a6325f5310e3e60d5a8c812cf0]

INTEGRATION: CWS os35 (1.21.30); FILE MERGED 2004/07/13 15:06:50 dr 1.21.30.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [139a4c5bb2bb05b871bd108ac4459eee037e25aa]

INTEGRATION: CWS os35 (1.24.34); FILE MERGED 2004/07/13 15:06:48 dr 1.24.34.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [b6d34ee184810e9358d7a3cdc222dd2e5b2e1a0f]

INTEGRATION: CWS os35 (1.13.34); FILE MERGED 2004/07/17 13:42:00 dr 1.13.34.3: #i20500# new 'toggle merge cells' slot 2004/07/17 13:18:08 dr 1.13.34.2: #i20500# new 'toggle merge cells' slot 2004/07/16 23:21:59 dr 1.13.34.1: #i20500# merge cells toolbar button


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [fdf75dc43aeea296882829627576312b314ab826]

INTEGRATION: CWS os35 (1.26.34); FILE MERGED 2004/07/16 23:21:58 dr 1.26.34.1: #i20500# merge cells toolbar button


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [801dab2d239e8e441a589a3aa15cba05ce509f89]

INTEGRATION: CWS os35 (1.63.40); FILE MERGED 2004/07/15 20:07:28 dr 1.63.40.3: RESYNC: (1.63-1.66); FILE MERGED 2004/07/13 17:00:21 dr 1.63.40.2: #112292# print range icons 2004/07/13 09:12:04 dr 1.63.40.1: #112292# icon for print preview


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [fd30e4c70a2c8d0b881c5996630d916177ac8bcf]

INTEGRATION: CWS os35 (1.14.172); FILE MERGED 2004/07/13 15:06:21 dr 1.14.172.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [598463f83f8c7f03d4b49b34f423987a2606c2ac]

INTEGRATION: CWS os35 (1.19.142); FILE MERGED 2004/07/13 15:06:20 dr 1.19.142.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [b8d94957b23adc2ed418885b3c4ac10371858182]

INTEGRATION: CWS os35 (1.13.34); FILE MERGED 2004/07/13 15:06:18 dr 1.13.34.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [c26eff82eabf5f819b0561b066dd4ea11ff400db]

INTEGRATION: CWS os35 (1.10.96); FILE MERGED 2004/07/13 15:06:17 dr 1.10.96.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [62ae5402c9b59af04b6de7d875a8ef615c21cb13]

INTEGRATION: CWS os35 (1.50.34); FILE MERGED 2004/07/16 23:21:34 dr 1.50.34.2: #i20500# merge cells toolbar button 2004/07/13 15:05:50 dr 1.50.34.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [ba4f087fc11a8f94501d37c0622282c163166b3d]

INTEGRATION: CWS os35 (1.12.186); FILE MERGED 2004/07/12 17:32:48 dr 1.12.186.1: #i20340# redesigned Calc View menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [fa8669e07b779b8f9ee869d451d3be9d44028c67]

INTEGRATION: CWS os35 (1.28.34); FILE MERGED 2004/07/17 13:17:55 dr 1.28.34.3: #i20500# new 'toggle merge cells' slot 2004/07/16 23:21:01 dr 1.28.34.2: #i20500# merge cells toolbar button 2004/07/12 17:32:45 dr 1.28.34.1: #i20340# redesigned Calc View menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [32df5d20baa9af8d2ba552210f2a356b0c2d2396]

INTEGRATION: CWS os35 (1.7.186); FILE MERGED 2004/07/15 19:50:21 dr 1.7.186.2: RESYNC: (1.7-1.8); FILE MERGED 2004/07/13 15:05:28 dr 1.7.186.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [813c3f9b77cab5409e95c07e667511d3ab8c7cf9]

INTEGRATION: CWS os35 (1.10.186); FILE MERGED 2004/07/15 19:50:14 dr 1.10.186.2: RESYNC: (1.10-1.11); FILE MERGED 2004/07/13 15:05:26 dr 1.10.186.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [e9a43e4f37da4294ed0ddad524b3e204fe7fc2d6]

INTEGRATION: CWS os35 (1.8.94); FILE MERGED 2004/07/15 19:50:07 dr 1.8.94.2: RESYNC: (1.8-1.9); FILE MERGED 2004/07/13 15:05:23 dr 1.8.94.1: #i30271# new Calc Format menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [ced8e41a774857c76837a67974e1696ed31091e5]

INTEGRATION: CWS os35 (1.14.78); FILE MERGED 2004/07/16 23:21:01 dr 1.14.78.1: #i20500# merge cells toolbar button


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [c7f44fc6389518421d6ad5c033c1ed28ebf1e015]

INTEGRATION: CWS os35 (1.40.32); FILE MERGED 2004/07/16 23:20:26 dr 1.40.32.2: #i20500# merge cells toolbar button 2004/07/12 17:32:14 dr 1.40.32.1: #i20340# redesigned Calc View menu


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [d3caf56324511d2b050bb4f9f35b561bbb87f1f6]

INTEGRATION: CWS formatpaintbrush02 (1.2.22); FILE MERGED 2004/07/13 20:26:57 iha 1.2.22.1: #i20119# format paintbrush


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [1015cc4210b0dac051b4918b76f86a6e0a10733c]

INTEGRATION: CWS formatpaintbrush02 (1.40.20); FILE MERGED 2004/07/15 18:36:29 nn 1.40.20.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [23f05387f5a93bfa659f66f09903f85c9bc4c2ba]

INTEGRATION: CWS formatpaintbrush02 (1.14.66); FILE MERGED 2004/07/15 18:36:28 nn 1.14.66.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [a0eaa1bb58cd6e191fe56a94d4e3b6f6a0332940]

INTEGRATION: CWS formatpaintbrush02 (1.18.64); FILE MERGED 2004/07/15 18:36:28 nn 1.18.64.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [4b2a6b82434b45e244ef87b7efbd87a9f1618ce0]

INTEGRATION: CWS formatpaintbrush02 (1.9.64); FILE MERGED 2004/07/16 14:53:48 nn 1.9.64.2: #i20119# change parameter to GetAttrFromMarked/SetAttrToMarked 2004/07/15 18:36:28 nn 1.9.64.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [5667ea34f067e7e31c180a4589853551dd2486b2]

INTEGRATION: CWS formatpaintbrush02 (1.56.28); FILE MERGED 2004/07/15 18:36:27 nn 1.56.28.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [8dcced8d56a14dcfdf78792ce9ffc8a990f79e3e]

INTEGRATION: CWS formatpaintbrush02 (1.21.62); FILE MERGED 2004/07/15 18:36:27 nn 1.21.62.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [cc00adb86734474e07249ba53ca0e5b4729d6ab9]

INTEGRATION: CWS formatpaintbrush02 (1.24.62); FILE MERGED 2004/07/15 18:36:26 nn 1.24.62.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [cd45d0ab5d74178bba604e4eb5d30112e751dae0]

INTEGRATION: CWS formatpaintbrush02 (1.13.66); FILE MERGED 2004/07/15 18:36:26 nn 1.13.66.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [90e89ac28c804b52c05342d510ffd022b173da53]

INTEGRATION: CWS formatpaintbrush02 (1.13.66); FILE MERGED 2004/07/15 18:35:24 nn 1.13.66.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [d65eb0c0d30a6fe6bebbe28567f259cdf78cbc71]

INTEGRATION: CWS formatpaintbrush02 (1.2.506); FILE MERGED 2004/07/15 18:35:24 nn 1.2.506.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [0f11cfdb5a748a121533be541b4fbc7737a71746]

INTEGRATION: CWS formatpaintbrush02 (1.4.168); FILE MERGED 2004/07/15 18:35:23 nn 1.4.168.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [0a292f8e4d7aceb874bcfb7cb92639846be5beb9]

INTEGRATION: CWS formatpaintbrush02 (1.13.62); FILE MERGED 2004/07/16 14:54:03 nn 1.13.62.2: #i20119# change parameter to GetAttrFromMarked/SetAttrToMarked 2004/07/15 18:35:01 nn 1.13.62.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [bc7de9d84cec9268bfa04dd615efb2bdb7128d29]

INTEGRATION: CWS formatpaintbrush02 (1.18.118); FILE MERGED 2004/07/15 18:34:44 nn 1.18.118.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [8b6656caf746863dd042d3238c99d9c66a858da0]

INTEGRATION: CWS formatpaintbrush02 (1.8.20); FILE MERGED 2004/07/15 18:34:24 nn 1.8.20.1: #i20119# format paint brush handling


2004-08-02  Kurt Zenker  <kz@openoffice.org>  [9e583a1381ecbd0242169c7c0d739a143fed86fa]

INTEGRATION: CWS formatpaintbrush02 (1.9.22); FILE MERGED 2004/07/15 18:34:24 nn 1.9.22.1: #i20119# format paint brush handling


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [45cac9b288ca7c8951bec040910de1236adbf8ff]

INTEGRATION: CWS dr19 (1.17.86); FILE MERGED 2004/06/11 12:26:54 dr 1.17.86.2: RESYNC: (1.17-1.18); FILE MERGED 2004/06/03 18:16:59 dr 1.17.86.1: #i29530# loop while scrolling outline window, type correctness


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [3c72cf48f17b4017814a418e9dcb946f627ec4aa]

INTEGRATION: CWS dr19 (1.7.122); FILE MERGED 2004/06/11 12:23:26 dr 1.7.122.2: RESYNC: (1.7-1.8); FILE MERGED 2004/06/03 18:16:58 dr 1.7.122.1: #i29530# loop while scrolling outline window, type correctness


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [789e50b8def98acdded666cc3d6311515af14332]

INTEGRATION: CWS dr19 (1.6.122); FILE MERGED 2004/06/11 11:55:43 dr 1.6.122.2: RESYNC: (1.6-1.7); FILE MERGED 2004/06/03 18:16:34 dr 1.6.122.1: #i29530# loop while scrolling outline window, type correctness


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [9ca7d15caa68dd9e9a3047a37f7495830659211a]

INTEGRATION: CWS dr19 (1.14.102); FILE MERGED 2004/06/11 11:24:55 dr 1.14.102.2: RESYNC: (1.14-1.15); FILE MERGED 2004/06/07 18:41:29 dr 1.14.102.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [50adf4ef35e6cf46ce331f4596a0afdb7dd9d8ee]

INTEGRATION: CWS dr19 (1.10.8); FILE MERGED 2004/06/07 18:43:01 dr 1.10.8.1: #i25468# new number format import, added more German/English locales


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [4ab55f2cbffcfa73446e5061181735ecd297154b]

INTEGRATION: CWS dr19 (1.11.104); FILE MERGED 2004/06/11 11:24:46 dr 1.11.104.2: RESYNC: (1.11-1.12); FILE MERGED 2004/06/07 18:41:28 dr 1.11.104.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [918f55fc78b5d90e8b34ce12d35dd4553fe6e9ad]

INTEGRATION: CWS dr19 (1.2.162); FILE MERGED 2004/06/02 13:29:36 dr 1.2.162.1: #i23153# import left/right h/f margins


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [8f7bf1a1d617bac3322e2ac4f27e1970f23930ef]

INTEGRATION: CWS dr19 (1.13.100); FILE MERGED 2004/06/11 11:23:47 dr 1.13.100.2: RESYNC: (1.13-1.15); FILE MERGED 2004/06/07 18:41:28 dr 1.13.100.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [e10b74c555164083232cead4f010df8501ffb172]

INTEGRATION: CWS dr19 (1.8.104); FILE MERGED 2004/06/11 11:23:23 dr 1.8.104.2: RESYNC: (1.8-1.9); FILE MERGED 2004/06/07 18:43:01 dr 1.8.104.1: #i25468# new number format import, added more German/English locales


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [8a2cfb913798037bdd00296a07602c114aa35349]

INTEGRATION: CWS dr19 (1.4.106); FILE MERGED 2004/06/07 18:41:27 dr 1.4.106.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [e63bec07595a072c1c61d6b4041b9a91546d4b45]

INTEGRATION: CWS dr19 (1.8.106); FILE MERGED 2004/06/11 11:23:13 dr 1.8.106.2: RESYNC: (1.8-1.9); FILE MERGED 2004/06/07 18:41:27 dr 1.8.106.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [95958bce9498092e2076108f7e5e9ac37113b23b]

INTEGRATION: CWS dr19 (1.6.106); FILE MERGED 2004/06/11 11:22:54 dr 1.6.106.2: RESYNC: (1.6-1.8); FILE MERGED 2004/06/09 11:10:03 jmarmion 1.6.106.1: #i26402# support import/export of VBA macros.


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [3fb595088cd2985b38513b2cdfbf4ab8587615c6]

INTEGRATION: CWS dr19 (1.6.104); FILE MERGED 2004/06/14 08:26:05 dr 1.6.104.3: #100000# merge/build errors 2004/06/11 11:22:44 dr 1.6.104.2: RESYNC: (1.6-1.7); FILE MERGED 2004/06/02 15:53:05 dr 1.6.104.1: #i23296# header/footer position


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [bc548736f7a801c896a236c8a0afb02885d21211]

INTEGRATION: CWS dr19 (1.9.14); FILE MERGED 2004/06/16 14:36:12 dr 1.9.14.1: #i23296# correct export of header/footer position


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [8f92a071123d5951ab71e0094a48e33d93817709]

INTEGRATION: CWS dr19 (1.24.162); FILE MERGED 2004/06/11 11:18:20 dr 1.24.162.2: RESYNC: (1.24-1.25); FILE MERGED 2004/06/07 18:41:27 dr 1.24.162.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [1fee7e5c49d7001abc80ee8d2dab742b85b42c50]

INTEGRATION: CWS dr19 (1.10.14); FILE MERGED 2004/06/16 14:36:11 dr 1.10.14.1: #i23296# correct export of header/footer position


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [90317ece14e4632834de7852f190ebd1ad0e5fc9]

INTEGRATION: CWS dr19 (1.39.102); FILE MERGED 2004/07/05 08:54:00 dr 1.39.102.3: RESYNC: (1.40-1.41); FILE MERGED 2004/06/11 11:16:39 dr 1.39.102.2: RESYNC: (1.39-1.40); FILE MERGED 2004/06/09 11:10:03 jmarmion 1.39.102.1: #i26402# support import/export of VBA macros.


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [b76490c6fdc5c47a337e673cb16a166f0eee16d5]

INTEGRATION: CWS dr19 (1.51.162); FILE MERGED 2004/06/11 11:16:29 dr 1.51.162.3: RESYNC: (1.51-1.53); FILE MERGED 2004/06/09 11:10:02 jmarmion 1.51.162.2: #i26402# support import/export of VBA macros. 2004/06/07 18:41:26 dr 1.51.162.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [f6361dec8b74d609f27ef23c81c2e754dd8eaef3]

INTEGRATION: CWS dr19 (1.10.8); FILE MERGED 2004/07/22 13:47:53 dr 1.10.8.5: #i31530# fixes in built-in number formats 2004/06/14 09:44:08 dr 1.10.8.4: #100000# build error 2004/06/08 15:04:40 dr 1.10.8.3: #i26092# default number formats: added French and Italian 2004/06/08 12:53:46 dr 1.10.8.2: #i26092# default number formats: added Hebrew, completed Asian locales 2004/06/07 18:43:25 dr 1.10.8.1: #i25468# new number format import, added more German/English locales


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [3ddb6d21135f4ac9827d9e6cf89e699dc7c657b6]

INTEGRATION: CWS dr19 (1.11.106); FILE MERGED 2004/06/14 08:26:21 dr 1.11.106.3: #100000# merge/build errors 2004/06/11 11:12:11 dr 1.11.106.2: RESYNC: (1.11-1.12); FILE MERGED 2004/06/07 18:42:08 dr 1.11.106.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [b5d2ffa87ab5989a4b36d0e30f1bd827b7409741]

INTEGRATION: CWS dr19 (1.3.106); FILE MERGED 2004/06/02 13:28:48 dr 1.3.106.1: #i23153# import left/right h/f margins


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [f25caacec9f608e1148418ba141bd7a1117ca608]

INTEGRATION: CWS dr19 (1.13.104); FILE MERGED 2004/06/11 11:11:23 dr 1.13.104.2: RESYNC: (1.13-1.14); FILE MERGED 2004/06/07 18:43:25 dr 1.13.104.1: #i25468# new number format import, added more German/English locales


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [6e71bad6f21da330272bccd81b35b7f3b9a9d9d5]

INTEGRATION: CWS dr19 (1.5.106); FILE MERGED 2004/06/07 18:42:08 dr 1.5.106.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [8f4890296820f4153e2cbeedbb17bd3f8e0aab3f]

INTEGRATION: CWS dr19 (1.8.106); FILE MERGED 2004/06/11 11:11:13 dr 1.8.106.2: RESYNC: (1.8-1.9); FILE MERGED 2004/06/07 18:42:08 dr 1.8.106.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [c577ea212638bfb1a22ef64db41e95ca11c6bbf5]

INTEGRATION: CWS dr19 (1.4.88); FILE MERGED 2004/06/23 10:02:52 dr 1.4.88.4: #i23296# #i30586# handle headers/footers overlaying sheet data 2004/06/11 11:10:50 dr 1.4.88.3: RESYNC: (1.4-1.5); FILE MERGED 2004/06/02 15:52:35 dr 1.4.88.2: #i23296# header/footer position 2004/06/02 13:28:47 dr 1.4.88.1: #i23153# import left/right h/f margins


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [16ef21907d9f3273d7187b31c883591f5fe440c9]

INTEGRATION: CWS dr19 (1.9.52); FILE MERGED 2004/07/05 08:53:16 dr 1.9.52.3: RESYNC: (1.11-1.12); FILE MERGED 2004/06/11 11:10:40 dr 1.9.52.2: RESYNC: (1.9-1.11); FILE MERGED 2004/06/09 11:11:34 jmarmion 1.9.52.1: #i26402# support import/export of VBA macros.


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [69ffc0cd641f53c2e53d387039ed53f8aaed5c9d]

INTEGRATION: CWS dr19 (1.10.104); FILE MERGED 2004/06/14 08:26:20 dr 1.10.104.3: #100000# merge/build errors 2004/06/11 11:10:30 dr 1.10.104.2: RESYNC: (1.10-1.11); FILE MERGED 2004/06/02 15:52:34 dr 1.10.104.1: #i23296# header/footer position


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [93c1115c50d95641d26d41cd65a4915a6f1f4d2a]

INTEGRATION: CWS dr19 (1.15.8); FILE MERGED 2004/07/05 08:52:57 dr 1.15.8.3: RESYNC: (1.16-1.17); FILE MERGED 2004/06/11 11:10:21 dr 1.15.8.2: RESYNC: (1.15-1.16); FILE MERGED 2004/06/08 15:38:34 dr 1.15.8.1: #i29015# fallback from filled radar chart to radar chart


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [3b74307a9d8be16ad8e8519fe73e17dcce975644]

INTEGRATION: CWS dr19 (1.11.104); FILE MERGED 2004/06/16 14:36:33 dr 1.11.104.2: #i23296# correct export of header/footer position 2004/06/07 18:42:07 dr 1.11.104.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [deec58f457df533c15ab3ff59347cbf9627538c1]

INTEGRATION: CWS dr19 (1.5.14); FILE MERGED 2004/06/23 10:02:52 dr 1.5.14.2: #i23296# #i30586# handle headers/footers overlaying sheet data 2004/06/16 14:36:33 dr 1.5.14.1: #i23296# correct export of header/footer position


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [fa052e7b48ec211fc7ac91148001e3e2fbb62d47]

INTEGRATION: CWS dr19 (1.13.14); FILE MERGED 2004/06/16 14:36:32 dr 1.13.14.1: #i23296# correct export of header/footer position


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [e77bfc1bc620d2cc98a4d468a6522520cadc1c33]

INTEGRATION: CWS dr19 (1.4.122); FILE MERGED 2004/06/11 11:08:36 dr 1.4.122.2: RESYNC: (1.4-1.5); FILE MERGED 2004/06/09 11:11:34 jmarmion 1.4.122.1: #i26402# support import/export of VBA macros.


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [ed93b0714f1011be35bb7e5056f8da9094f7d50f]

INTEGRATION: CWS dr19 (1.42.106); FILE MERGED 2004/06/11 11:04:35 dr 1.42.106.4: RESYNC: (1.42-1.43); FILE MERGED 2004/06/09 11:11:34 jmarmion 1.42.106.3: #i26402# support import/export of VBA macros. 2004/06/08 15:38:33 dr 1.42.106.2: #i29015# fallback from filled radar chart to radar chart 2004/06/07 18:43:24 dr 1.42.106.1: #i25468# new number format import, added more German/English locales


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [9bd4416c808a9d3af398668a397357435a72b4dc]

INTEGRATION: CWS dr19 (1.60.100); FILE MERGED 2004/06/11 11:07:56 dr 1.60.100.2: RESYNC: (1.60-1.61); FILE MERGED 2004/06/07 18:42:07 dr 1.60.100.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [59a93a6d450b0861775b040d43da27f30aa134e9]

INTEGRATION: CWS dr19 (1.71.102); FILE MERGED 2004/07/22 13:47:17 dr 1.71.102.4: #i31530# doc language is UI language 2004/07/05 08:51:34 dr 1.71.102.3: RESYNC: (1.72-1.73); FILE MERGED 2004/06/11 11:07:05 dr 1.71.102.2: RESYNC: (1.71-1.72); FILE MERGED 2004/06/09 11:11:33 jmarmion 1.71.102.1: #i26402# support import/export of VBA macros.


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [283f6c16c3d2369a6edd1eea6a45886c3129c51f]

INTEGRATION: CWS dr19 (1.90.104); FILE MERGED 2004/07/05 08:51:20 dr 1.90.104.4: RESYNC: (1.92-1.93); FILE MERGED 2004/06/11 11:06:42 dr 1.90.104.3: RESYNC: (1.90-1.92); FILE MERGED 2004/06/09 11:11:33 jmarmion 1.90.104.2: #i26402# support import/export of VBA macros. 2004/06/07 18:42:07 dr 1.90.104.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [688c68f72717f3de9a62813fd0241d19687ae676]

INTEGRATION: CWS dr19 (1.26.106); FILE MERGED 2004/07/20 08:43:23 jmarmion 1.26.106.4: #i19664# - fix name range problems following import of macros. 2004/07/05 08:51:07 dr 1.26.106.3: RESYNC: (1.27-1.28); FILE MERGED 2004/06/11 11:06:31 dr 1.26.106.2: RESYNC: (1.26-1.27); FILE MERGED 2004/06/09 11:11:32 jmarmion 1.26.106.1: #i26402# support import/export of VBA macros.


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [0ba060350350e60729ae5cc167237047739a16f9]

INTEGRATION: CWS dr19 (1.24.104); FILE MERGED 2004/07/20 08:43:23 jmarmion 1.24.104.4: #i19664# - fix name range problems following import of macros. 2004/07/05 08:50:51 dr 1.24.104.3: RESYNC: (1.25-1.27); FILE MERGED 2004/06/11 11:06:21 dr 1.24.104.2: RESYNC: (1.24-1.25); FILE MERGED 2004/06/09 11:11:32 jmarmion 1.24.104.1: #i26402# support import/export of VBA macros.


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [564277f9be5ff209be96a529542f31548cd91cd9]

INTEGRATION: CWS dr19 (1.12.194); FILE MERGED 2004/07/05 08:50:28 dr 1.12.194.2: RESYNC: (1.12-1.13); FILE MERGED 2004/06/07 18:42:06 dr 1.12.194.1: #i25468# detect BIFF version before starting filter, needed for new number format import


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [2ddca0f1fe692c28d1f1beceb68c7a0516a1c7b6]

INTEGRATION: CWS dr19 (1.13.354); FILE MERGED 2004/06/11 11:05:31 dr 1.13.354.2: RESYNC: (1.13-1.14); FILE MERGED 2004/06/10 17:12:25 dr 1.13.354.1: #b5060767# DCONNAME


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [478f573b43f28111fdbe2743585f79fa3543e167]

INTEGRATION: CWS dr19 (1.63.8); FILE MERGED 2004/06/11 11:05:20 dr 1.63.8.2: RESYNC: (1.63-1.64); FILE MERGED 2004/06/10 17:12:24 dr 1.63.8.1: #b5060767# DCONNAME


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [234343eca7e90afaea254a4b3e61f2041fa3416d]

INTEGRATION: CWS dr19 (1.22.20); FILE MERGED 2004/06/11 10:49:25 dr 1.22.20.2: RESYNC: (1.22-1.23); FILE MERGED 2004/06/03 18:08:19 nn 1.22.20.1: #i29813# When called from dtor, pass true to SdrModel::ClearModel


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [f4e3583573d2bc3bb74a9b23dcd7865697562516]

INTEGRATION: CWS dr19 (1.42.120); FILE MERGED 2004/06/11 10:48:04 dr 1.42.120.3: RESYNC: (1.42-1.43); FILE MERGED 2004/06/07 15:57:39 nn 1.42.120.2: #i26690# TransferTab: detect duplicate named ranges by name, not by failed Insert 2004/06/03 18:08:18 nn 1.42.120.1: #i29813# When called from dtor, pass true to SdrModel::ClearModel


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [25cfa0af37cbaad3884076bc8ad35edbbf661c44]

INTEGRATION: CWS dr19 (1.75.84); FILE MERGED 2004/06/11 10:24:50 dr 1.75.84.2: RESYNC: (1.75-1.76); FILE MERGED 2004/06/03 18:07:25 nn 1.75.84.1: #i29813# When called from dtor, pass true to SdrModel::ClearModel


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [dfb84e6180a4762b2986bf50aa05bdc1fae03b56]

INTEGRATION: CWS dr19 (1.26.18); FILE MERGED 2004/06/03 18:39:40 dr 1.26.18.1: #i25883# complex functions, thanks to Michael Meeks


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [52a2528e739bb0584ecf3b95cbcbc6aaee370814]

INTEGRATION: CWS dr19 (1.42.18); FILE MERGED 2004/06/09 12:44:10 dr 1.42.18.2: #i19434# wrong conversion entry for cubic yards 2004/06/03 18:39:40 dr 1.42.18.1: #i25883# complex functions, thanks to Michael Meeks


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [a60224913a7b0cb08b0478abec812b8b88624173]

INTEGRATION: CWS dr19 (1.35.16); FILE MERGED 2004/07/05 08:41:46 dr 1.35.16.2: RESYNC: (1.35-1.37); FILE MERGED 2004/06/03 18:39:39 dr 1.35.16.1: #i25883# complex functions, thanks to Michael Meeks


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [020b79a1bc0bb7adbb0f15eaa71024b31953a7ff]

INTEGRATION: CWS gcc340fixes01 (1.14.346); FILE MERGED 2004/07/16 14:25:57 cmc 1.14.346.1: #i31601# trivial extra this and = 0 instead of = NULL and friend problem all for gcc34


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [a568749b153f9296ad26c9059f5249e9519ed59b]

INTEGRATION: CWS gcc340fixes01 (1.19.38); FILE MERGED 2004/07/16 14:25:57 cmc 1.19.38.1: #i31601# trivial extra this and = 0 instead of = NULL and friend problem all for gcc34


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [5f68bf1ae2fd5a0653bf094f45e77cf328aa1eda]

INTEGRATION: CWS gcc340fixes01 (1.4.96); FILE MERGED 2004/07/16 14:25:57 cmc 1.4.96.1: #i31601# trivial extra this and = 0 instead of = NULL and friend problem all for gcc34


2004-07-30  Kurt Zenker  <kz@openoffice.org>  [7a8b26d387bbed142997029779c603355b5d0732]

INTEGRATION: CWS gcc340fixes01 (1.21.40); FILE MERGED 2004/07/16 14:25:56 cmc 1.21.40.1: #i31601# trivial extra this and = 0 instead of = NULL and friend problem all for gcc34


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [fad4df7e8a886c49317f368b1ca0c3445d9e5bae]

INTEGRATION: CWS sb20 (1.1.1.1.38); FILE MERGED 2004/06/14 11:52:02 sb 1.1.1.1.38.1: #i29119# sandbox.jar no longer needed by UNO.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [71da1868e8fbe4040e261f864ab9e4dde1efd834]

INTEGRATION: CWS jmarmion2 (1.55.20); FILE MERGED 2004/07/20 13:32:34 jmarmion 1.55.20.1: #i20501# add drop-down to header/footer dialog.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [00d72abae10c879bd089999f1d75473af26b05ec]

INTEGRATION: CWS jmarmion2 (1.8.20); FILE MERGED 2004/07/20 13:26:53 jmarmion 1.8.20.1: #i20501# add drop-down to header/footer dialog.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [c09ffd91fb3841bcee63788eafbd3a547cd12f7b]

INTEGRATION: CWS jmarmion2 (1.2.82); FILE MERGED 2004/07/23 11:07:06 jmarmion 1.2.82.3: #i20501# - add preview when traversing using the cursor/ up/down keys. 2004/07/22 15:38:04 jmarmion 1.2.82.2: #i20501- allow cursor keys up/down to scroll through the drop-down list. 2004/07/20 13:30:55 jmarmion 1.2.82.1: #i20501# add drop-down to header/footer dialog.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [14cc8eedca412a1c3fb84b5b8fc53065cda0a894]

INTEGRATION: CWS jmarmion2 (1.40.34); FILE MERGED 2004/07/20 13:30:54 jmarmion 1.40.34.1: #i20501# add drop-down to header/footer dialog.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [c3aa718bbe4a1ff6279210de2453a6ea98d9a349]

INTEGRATION: CWS jmarmion2 (1.3.504); FILE MERGED 2004/07/20 13:30:54 jmarmion 1.3.504.1: #i20501# add drop-down to header/footer dialog.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [06bbab9e4f55575b9ca59c3319b7a19d913568e0]

INTEGRATION: CWS jmarmion2 (1.8.82); FILE MERGED 2004/07/20 13:28:58 jmarmion 1.8.82.1: #i20501# add drop-down to header/footer dialog.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [c4a3e044a0dc966159c92b35dd87b4de58de4020]

INTEGRATION: CWS jmarmion2 (1.3.66); FILE MERGED 2004/07/23 11:07:33 jmarmion 1.3.66.2: #i20501# - add preview when traversing using the cursor/ up/down keys. 2004/07/20 13:28:57 jmarmion 1.3.66.1: #i20501# add drop-down to header/footer dialog.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [12feb1160ad0a44b64185d62376fe658e3c64a4b]

INTEGRATION: CWS sb20 (1.2.134); FILE MERGED 2004/06/15 07:30:20 sb 1.2.134.1: #i29119# sandbox.jar no longer needed by UNO.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [1da7dfa855f0f825eebc764ff616191fc4162eed]

INTEGRATION: CWS sb20 (1.2.82); FILE MERGED 2004/06/15 07:30:20 sb 1.2.82.1: #i29119# sandbox.jar no longer needed by UNO.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [adf9ce2b8bceee0de5722d6e57a8ed233efd17b1]

INTEGRATION: CWS sb20 (1.2.82); FILE MERGED 2004/06/15 07:30:19 sb 1.2.82.1: #i29119# sandbox.jar no longer needed by UNO.


2004-07-23  Rüdiger Timm  <rt@openoffice.org>  [c9746dfd0a34f2b452f1fb70d24ee6bab2b0e0f8]

INTEGRATION: CWS sb20 (1.2.82); FILE MERGED 2004/06/15 07:30:18 sb 1.2.82.1: #i29119# sandbox.jar no longer needed by UNO.


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [ea8ace03e6809588599fb9e3c8695c88b53e6f59]

INTEGRATION: CWS tableoptions (1.55.32); FILE MERGED 2004/07/14 15:24:09 nn 1.55.32.2: RESYNC: (1.55-1.56); FILE MERGED 2004/07/05 17:07:54 nn 1.55.32.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [a1c6c16ad1c2c783c4d4878f50b9d7da72dbdd23]

INTEGRATION: CWS tableoptions (1.6.34); FILE MERGED 2004/07/05 17:07:54 nn 1.6.34.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [292142c5fad94b3e895ac05c9b58794875b331da]

INTEGRATION: CWS tableoptions (1.29.34); FILE MERGED 2004/07/06 13:36:21 dr 1.29.34.2: #i25111# DataPilot Show Details dialog 2004/07/05 17:07:56 nn 1.29.34.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [598d569b5b7cd48c4bf07542c9ca634f8baa01c2]

INTEGRATION: CWS tableoptions (1.26.36); FILE MERGED 2004/07/05 17:07:55 nn 1.26.36.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [d3e612e74832305e9535358ea146b8dab8c5f1ef]

INTEGRATION: CWS tableoptions (1.11.36); FILE MERGED 2004/07/14 13:25:52 sab 1.11.36.1: #i25111#; add table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4c24a1d37e1072f1b9835b37556db071bf9475f1]

INTEGRATION: CWS tableoptions (1.8.36); FILE MERGED 2004/07/06 10:20:44 dr 1.8.36.1: #i25111# UI for new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [0fbdae9891fcf0cc9743356fed83d657e3987c02]

INTEGRATION: CWS tableoptions (1.4.36); FILE MERGED 2004/07/06 13:35:44 dr 1.4.36.1: #i25111# DataPilot Show Details dialog


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [b3aea72d951255925001a17aabf3e2f89907c13c]

INTEGRATION: CWS tableoptions (1.2.518); FILE MERGED 2004/07/05 17:07:30 nn 1.2.518.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [c1b777dedddf11075fa166603263ae056d706e6e]

INTEGRATION: CWS tableoptions (1.17.34); FILE MERGED 2004/07/06 10:21:34 dr 1.17.34.1: #i25111# UI for new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [a17e51dc9732c95c2f6f544c550132d4ac7a6659]

INTEGRATION: CWS tableoptions (1.32.36); FILE MERGED 2004/07/14 17:35:29 nn 1.32.36.4: resource changes 2004/07/14 15:11:48 nn 1.32.36.3: RESYNC: (1.32-1.34); FILE MERGED 2004/07/06 19:06:07 dr 1.32.36.2: #i25111# string review 2004/07/06 13:35:24 dr 1.32.36.1: #i25111# DataPilot Show Details dialog


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [3cf33919a89dab5739107f7eddf6da8a5ddff8f0]

INTEGRATION: CWS tableoptions (1.3.36); FILE MERGED 2004/07/06 13:35:23 dr 1.3.36.1: #i25111# DataPilot Show Details dialog


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4ab42ea7dc63d4282f3d8b691237e072e1d382fd]

INTEGRATION: CWS tableoptions (1.5.36); FILE MERGED 2004/07/06 13:35:21 dr 1.5.36.1: #i25111# DataPilot Show Details dialog


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [0b21ad9e0e14b07842e17a309f8fcb56cf231e1e]

INTEGRATION: CWS tableoptions (1.53.78); FILE MERGED 2004/07/14 17:35:28 nn 1.53.78.4: resource changes 2004/07/14 15:10:34 nn 1.53.78.3: RESYNC: (1.53-1.54); FILE MERGED 2004/07/06 19:06:07 dr 1.53.78.2: #i25111# string review 2004/07/06 10:21:35 dr 1.53.78.1: #i25111# UI for new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [7085802c343c5525331a7ffc03c748e67ae6b50f]

INTEGRATION: CWS tableoptions (1.5.94); FILE MERGED 2004/07/06 10:21:35 dr 1.5.94.1: #i25111# UI for new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [5cf3ed0189c40ce0cf0bbc7dda0008041f7dcfb3]

INTEGRATION: CWS tableoptions (1.3.36); FILE MERGED 2004/07/06 13:34:55 dr 1.3.36.1: #i25111# DatPilot Show Details dialog


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [80aa726a9bd4a681b3a7e4a9f9db77457de49bcf]

INTEGRATION: CWS tableoptions (1.3.36); FILE MERGED 2004/07/06 13:34:54 dr 1.3.36.1: #i25111# DatPilot Show Details dialog


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [921513a46eea53f9242c1b31651bdc08697d4843]

INTEGRATION: CWS tableoptions (1.72.36); FILE MERGED 2004/07/14 13:25:27 sab 1.72.36.1: #i25111#; add table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [02361a9f2437ecf9e990b234abb833ca064c917a]

INTEGRATION: CWS tableoptions (1.95.32); FILE MERGED 2004/07/14 15:09:51 nn 1.95.32.2: RESYNC: (1.95-1.96); FILE MERGED 2004/07/14 13:25:26 sab 1.95.32.1: #i25111#; add table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [2eab23b72136cc691f8c04a09ca17e2a2cc4d2b5]

INTEGRATION: CWS tableoptions (1.11.36); FILE MERGED 2004/07/14 13:25:26 sab 1.11.36.1: #i25111#; add table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [1758a998fed20a68a4b90f86581a6a694b9f663e]

INTEGRATION: CWS tableoptions (1.14.36); FILE MERGED 2004/07/14 13:25:25 sab 1.14.36.1: #i25111#; add table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [15419d05be6c600c9a39c1143d12d572f166ad8a]

INTEGRATION: CWS tableoptions (1.13.36); FILE MERGED 2004/07/14 13:25:24 sab 1.13.36.1: #i25111#; add table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [d7374ecb0de196fc6b02c6e6537775ac5524f2c6]

INTEGRATION: CWS tableoptions (1.2.36); FILE MERGED 2004/07/06 10:22:36 dr 1.2.36.1: #i25111# new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [07254f4fe2f569eabd2cb81d7fa9527593abcb60]

INTEGRATION: CWS tableoptions (1.2.36); FILE MERGED 2004/07/06 10:22:35 dr 1.2.36.1: #i25111# new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [417247e25de5980b4bb15df6030a6bcd38ee846f]

INTEGRATION: CWS tableoptions (1.2.36); FILE MERGED 2004/07/06 10:22:19 dr 1.2.36.1: #i25111# new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [a1525e4e584f5b44d015e7ccbb355ac340fc2728]

INTEGRATION: CWS tableoptions (1.2.36); FILE MERGED 2004/07/06 13:58:39 dr 1.2.36.2: #i25111# correct position for DP with page fields 2004/07/06 10:22:19 dr 1.2.36.1: #i25111# new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4df59a6e291e6fd4dc80bea6c4fc2189eadc326c]

INTEGRATION: CWS tableoptions (1.2.36); FILE MERGED 2004/07/06 10:22:18 dr 1.2.36.1: #i25111# new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [afeb0c791114e77fbd9c09478cd5890110588a56]

INTEGRATION: CWS tableoptions (1.43.34); FILE MERGED 2004/07/06 10:22:18 dr 1.43.34.1: #i25111# new DataPilot table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [65f293353fe8ccf352b62b88eedccff01687a3a4]

INTEGRATION: CWS tableoptions (1.5.34); FILE MERGED 2004/07/05 17:07:08 nn 1.5.34.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [588e2f28c249323742b7d6860f1a29b4fd6a78f5]

INTEGRATION: CWS tableoptions (1.8.36); FILE MERGED 2004/07/05 17:07:08 nn 1.8.36.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [8b32120889abf29f8b9029002e3bf673bfcb8098]

INTEGRATION: CWS tableoptions (1.12.34); FILE MERGED 2004/07/05 17:07:08 nn 1.12.34.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [ebcfb2f88b9b35b604cf588e07112ba7f7d6dce9]

INTEGRATION: CWS tableoptions (1.62.32); FILE MERGED 2004/07/14 13:24:55 sab 1.62.32.1: #i25111#; add table options


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [8080486e17ccb05cd10a771f0348322cb78f66ce]

INTEGRATION: CWS tableoptions (1.3.36); FILE MERGED 2004/07/06 13:34:28 dr 1.3.36.1: #i25111# DatPilot Show Details dialog


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [0540068ad991e50c449ce1ae25108cecbeb11a87]

INTEGRATION: CWS tableoptions (1.40.34); FILE MERGED 2004/07/06 13:34:27 dr 1.40.34.1: #i25111# DatPilot Show Details dialog


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [9a261c830229c8b399612eaed8dd470e21dd7086]

INTEGRATION: CWS tableoptions (1.4.34); FILE MERGED 2004/07/05 17:06:53 nn 1.4.34.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [d9f65335358a409962b7a55a482db7a0b3ce0ae9]

INTEGRATION: CWS tableoptions (1.4.36); FILE MERGED 2004/07/05 17:06:52 nn 1.4.36.1: #i25111# table options, drill to details


2004-07-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [bb085c9af4a380e084484065b3a59ae8f28c0935]

INTEGRATION: CWS tableoptions (1.5.34); FILE MERGED 2004/07/05 17:06:52 nn 1.5.34.1: #i25111# table options, drill to details


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [090dc5e4c5dfa118fa6a3913f940922c7ed22967]

INTEGRATION: CWS calcundo (1.25.120); FILE MERGED 2004/07/14 00:43:17 nn 1.25.120.2: RESYNC: (1.25-1.26); FILE MERGED 2004/05/26 10:44:00 nn 1.25.120.1: #i17043# undo for cut/paste with several sheets


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [f285d84d83c0ae6b1eaac6bef2e66406be53cce3]

INTEGRATION: CWS calcundo (1.7.452); FILE MERGED 2004/07/14 00:34:13 nn 1.7.452.2: RESYNC: (1.7-1.8); FILE MERGED 2004/07/13 18:18:31 nn 1.7.452.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [dcec3a80790e3950b86ea1d9c50d9cf9d2e76598]

INTEGRATION: CWS calcundo (1.17.14); FILE MERGED 2004/07/14 00:33:31 nn 1.17.14.2: RESYNC: (1.17-1.18); FILE MERGED 2004/07/13 18:18:29 nn 1.17.14.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [a5bc54f4fe609d98655c54f4881e6d5ac78d9b25]

INTEGRATION: CWS calcundo (1.3.58); FILE MERGED 2004/07/14 00:28:30 nn 1.3.58.4: RESYNC: (1.3-1.4); FILE MERGED 2004/07/13 18:21:56 nn 1.3.58.3: #i21498# undo for AutoFilter 2004/05/26 14:55:42 nn 1.3.58.2: #i25907# undo for subtotals: insert right number of rows 2004/05/26 13:14:45 nn 1.3.58.1: #106681# handle drawing objects in undo of filter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [ddd783b09226072665d52da19f072db268cd7ea2]

INTEGRATION: CWS calcundo (1.11.120); FILE MERGED 2004/07/14 00:27:50 nn 1.11.120.2: RESYNC: (1.11-1.12); FILE MERGED 2004/05/26 10:43:47 nn 1.11.120.1: #i17043# undo for cut/paste with several sheets


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [50c26f9f27cca145f31eaa942436d0cdac213b40]

INTEGRATION: CWS calcundo (1.3.452); FILE MERGED 2004/07/14 00:27:41 nn 1.3.452.2: RESYNC: (1.3-1.4); FILE MERGED 2004/07/13 18:21:55 nn 1.3.452.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [5ef98b5428749f15d1d04a2cfec6f9b98c1afd96]

INTEGRATION: CWS calcundo (1.3.58); FILE MERGED 2004/07/14 00:13:18 nn 1.3.58.3: RESYNC: (1.3-1.5); FILE MERGED 2004/07/13 18:16:12 nn 1.3.58.2: #i21498# undo for AutoFilter 2004/05/26 13:14:23 nn 1.3.58.1: #106681# handle drawing objects in undo of filter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [0d1262d564e36eb52bff3cb7af84b2e8c12c9d4f]

INTEGRATION: CWS calcundo (1.8.40); FILE MERGED 2004/07/14 00:12:57 nn 1.8.40.2: RESYNC: (1.8-1.9); FILE MERGED 2004/05/26 10:43:36 nn 1.8.40.1: #i17043# undo for cut/paste with several sheets


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [263ba1c43ddd23976397e04adea22b19dd1b06d8]

INTEGRATION: CWS calcundo (1.2.452); FILE MERGED 2004/07/14 00:12:49 nn 1.2.452.2: RESYNC: (1.2-1.3); FILE MERGED 2004/07/13 18:16:11 nn 1.2.452.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [fd95171feffe960c4a8c93e905e456db57025a43]

INTEGRATION: CWS calcundo (1.27.82); FILE MERGED 2004/07/13 23:58:25 nn 1.27.82.2: RESYNC: (1.27-1.28); FILE MERGED 2004/07/13 18:16:09 nn 1.27.82.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [fb672f6f51817413ad1e3cff8ecb89ee3a77e37a]

INTEGRATION: CWS calcundo (1.11.84); FILE MERGED 2004/07/13 23:53:12 nn 1.11.84.2: RESYNC: (1.11-1.12); FILE MERGED 2004/07/13 18:17:37 nn 1.11.84.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [6f3131830e3c0c254f6611a348526c8382f3f4f5]

INTEGRATION: CWS calcundo (1.67.14); FILE MERGED 2004/07/13 23:51:39 nn 1.67.14.2: RESYNC: (1.67-1.69); FILE MERGED 2004/07/13 18:17:24 nn 1.67.14.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [15b9a4e931a73158fb987d4ec104900fd478e7a1]

INTEGRATION: CWS calcundo (1.10.58); FILE MERGED 2004/07/13 23:51:58 nn 1.10.58.2: RESYNC: (1.10-1.11); FILE MERGED 2004/05/26 13:15:20 nn 1.10.58.1: #106681# handle drawing objects in undo of filter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [b4491a9656f7cc49d6a21f188f45dcb3d1b87e08]

INTEGRATION: CWS calcundo (1.7.120); FILE MERGED 2004/07/13 23:50:47 nn 1.7.120.2: RESYNC: (1.7-1.8); FILE MERGED 2004/07/13 18:22:25 nn 1.7.120.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [d6ad889e7a5ee725e479e7bd0a37743b2c473091]

INTEGRATION: CWS calcundo (1.9.120); FILE MERGED 2004/07/13 23:48:48 nn 1.9.120.2: RESYNC: (1.9-1.10); FILE MERGED 2004/07/13 18:22:23 nn 1.9.120.1: #i21498# undo for AutoFilter


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [b4ee52171937e34f2f557bd8fd3ab433b61047ef]

INTEGRATION: CWS calcundo (1.55.98); FILE MERGED 2004/07/13 22:51:37 nn 1.55.98.2: RESYNC: (1.55-1.56); FILE MERGED 2004/05/26 10:43:21 nn 1.55.98.1: #i17043# undo for cut/paste with several sheets


2004-07-23  Kurt Zenker  <kz@openoffice.org>  [e49b3546c1a2518140b57d1c7e10b9319f46a78a]

INTEGRATION: CWS calcundo (1.75.80); FILE MERGED 2004/07/13 19:34:58 nn 1.75.80.2: RESYNC: (1.75-1.76); FILE MERGED 2004/05/26 10:43:09 nn 1.75.80.1: #i17043# undo for cut/paste with several sheets


2004-07-14  Rüdiger Timm  <rt@openoffice.org>  [415979a2868fe3416bd423f231959bbdb172ef7d]

#i10000# [ english_us ] -> [ en-US ]


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [35573c406e10814062ed751af490888999649d06]

INTEGRATION: CWS ooo20040620 (1.8.464); FILE MERGED 2004/06/04 16:31:38 mmeeks 1.8.464.1: Issue number:  18157


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [1a032a0942bda75984648ed02615197915286988]

INTEGRATION: CWS dr21 (1.5.26); FILE MERGED 2004/07/08 08:05:57 dr 1.5.26.1: #i1834#


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [bfb3b7c43ff43d4618cdf6d98d074ccc96471c3f]

INTEGRATION: CWS dr21 (1.8.48); FILE MERGED 2004/07/08 10:09:01 dr 1.8.48.1: #i1834# moved from CWS dr20 to CWS dr21


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [413f4fefc2b1bdafa014ca1008ddf7b25e37ef8f]

INTEGRATION: CWS dr21 (1.7.48); FILE MERGED 2004/07/08 10:08:45 dr 1.7.48.1: #i1834# moved from CWS dr20 to CWS dr21


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [de66f59a321f09aca8821c3fd1ebd4d78337a071]

INTEGRATION: CWS dr21 (1.3.48); FILE MERGED 2004/07/08 10:08:26 dr 1.3.48.1: #i1834# moved from CWS dr20 to CWS dr21


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [282083d4e2f7e6bdc6b34f759c614c7270b8fbef]

INTEGRATION: CWS dr21 (1.3.48); FILE MERGED 2004/07/08 10:07:50 dr 1.3.48.1: #i1834# moved from CWS dr20 to CWS dr21


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [8bf306270927fe42f65c3671395d1cae84161856]

INTEGRATION: CWS dr21 (1.12.194); FILE MERGED 2004/07/08 10:07:22 dr 1.12.194.1: #i1834# moved from CWS dr20 to CWS dr21


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [14527b82a5a76c596c97b94d7f5a3e4ea7e3005d]

INTEGRATION: CWS dr21 (1.28.48); FILE MERGED 2004/07/08 10:07:21 dr 1.28.48.1: #i1834# moved from CWS dr20 to CWS dr21


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [80d770c87ae25e526efac94d7565509d630952c3]

INTEGRATION: CWS dr21 (1.3.48); FILE MERGED 2004/07/08 10:05:51 dr 1.3.48.1: #i1834# moved from CWS dr20 to CWS dr21


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [a3cb01ec392ada225826d2822d13800401b1ae69]

INTEGRATION: CWS dr21 (1.40.46); FILE MERGED 2004/07/08 10:05:51 dr 1.40.46.1: #i1834# moved from CWS dr20 to CWS dr21


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [0546cc97c07a06c3b3448bc705da7dbc7320a5de]

INTEGRATION: CWS dr21 (1.63.4); FILE MERGED 2004/07/09 08:55:50 dr 1.63.4.1: #i19527# german typo


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [2f86c538fa2afd03f5104383de218f4108456202]

INTEGRATION: CWS oasis (1.15.150); FILE MERGED 2004/05/12 13:00:37 sab 1.15.150.1: #i20153#; handle OASIS file format


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [5b0a4bae9bc63b22e94dc8d4250bd87bdcbdbc50]

INTEGRATION: CWS oasis (1.65.12); FILE MERGED 2004/06/13 04:24:54 mib 1.65.12.3: RESYNC: (1.65-1.68); FILE MERGED 2004/05/28 14:02:35 mib 1.65.12.2: #i20153#: OASIS file format 2004/05/12 13:00:22 sab 1.65.12.1: #i20153#; handle OASIS file format


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [4cae1bceabd046bf1bcd0c63f4a3b5b956eba850]

INTEGRATION: CWS oasis (1.49.326); FILE MERGED 2004/06/24 14:58:55 sab 1.49.326.2: #i20153#; oasis changes 2004/05/12 13:00:05 sab 1.49.326.1: #i20153#; handle OASIS file format


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [a8031e5f0fc9bf546eedeb9a0ab60b8f2ba5d5fe]

INTEGRATION: CWS oasis (1.45.72); FILE MERGED 2004/06/24 14:58:54 sab 1.45.72.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [b54fe4339f97e846d2b5475e131acdb05a9a2246]

INTEGRATION: CWS oasis (1.48.96); FILE MERGED 2004/06/24 14:58:54 sab 1.48.96.3: #i20153#; oasis changes 2004/06/13 04:15:54 mib 1.48.96.2: RESYNC: (1.48-1.49); FILE MERGED 2004/05/12 13:00:04 sab 1.48.96.1: #i20153#; handle OASIS file format


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [65b5a2be3396d781a9a5bb52149d743001e2e13b]

INTEGRATION: CWS oasis (1.72.16); FILE MERGED 2004/06/24 14:58:54 sab 1.72.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [3f0b5eefba5360378c4e4f450e3207c38c219968]

INTEGRATION: CWS oasis (1.90.14); FILE MERGED 2004/07/07 07:47:00 sab 1.90.14.4: #i20153#; make images work 2004/06/24 14:58:53 sab 1.90.14.3: #i20153#; oasis changes 2004/06/13 04:15:13 mib 1.90.14.2: RESYNC: (1.90-1.95); FILE MERGED 2004/05/12 13:00:04 sab 1.90.14.1: #i20153#; handle OASIS file format


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [febe57b065454e6d8271d295e7e16ac0411ad6d2]

INTEGRATION: CWS oasis (1.172.8); FILE MERGED 2004/07/01 13:04:43 sab 1.172.8.5: #i20153#; oasis changes 2004/06/24 14:58:53 sab 1.172.8.4: #i20153#; oasis changes 2004/06/15 17:03:34 mib 1.172.8.3: #i20153#: merge conflicts + syntax 2004/06/13 04:14:48 mib 1.172.8.2: RESYNC: (1.172-1.176); FILE MERGED 2004/05/12 13:00:03 sab 1.172.8.1: #i20153#; handle OASIS file format


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [4afafccf03cf1512addac9b6ed397e00c5b55db9]

INTEGRATION: CWS oasis (1.14.164); FILE MERGED 2004/07/07 08:47:38 sab 1.14.164.2: #i20153#; oasis changes 2004/06/24 14:58:53 sab 1.14.164.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [a298501b1b60ec0aa928b98ddf3d48e0e73b5333]

INTEGRATION: CWS oasis (1.76.16); FILE MERGED 2004/07/01 13:04:42 sab 1.76.16.2: #i20153#; oasis changes 2004/06/24 14:58:52 sab 1.76.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [fe3f5c50b85ce0ff550efa67c5d91f2136c0c3c9]

INTEGRATION: CWS oasis (1.4.460); FILE MERGED 2004/06/24 14:58:52 sab 1.4.460.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [cf63ba4e66846392090f024205bb207aa1a134c2]

INTEGRATION: CWS oasis (1.8.444); FILE MERGED 2004/06/24 14:58:52 sab 1.8.444.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [b48eee1d060fb03a371c6828183ab0011a420c9e]

INTEGRATION: CWS oasis (1.20.16); FILE MERGED 2004/07/01 13:04:42 sab 1.20.16.2: #i20153#; oasis changes 2004/06/24 14:58:52 sab 1.20.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [ca17046de3be983854c641de9c01cbcf3716af34]

INTEGRATION: CWS oasis (1.22.16); FILE MERGED 2004/07/07 08:47:38 sab 1.22.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [d1ccf7bd29fa8e47be7b0d3a63ef935de5451ec6]

INTEGRATION: CWS oasis (1.38.16); FILE MERGED 2004/07/07 08:47:38 sab 1.38.16.2: #i20153#; oasis changes 2004/06/24 14:58:51 sab 1.38.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [9df57cd918c959a8a9da0399f6390260455cdecc]

INTEGRATION: CWS oasis (1.10.16); FILE MERGED 2004/07/01 13:04:42 sab 1.10.16.2: #i20153#; oasis changes 2004/06/24 14:58:51 sab 1.10.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [0052c15e8c1b25a08e38ff895fc911d23f84a39e]

INTEGRATION: CWS oasis (1.12.16); FILE MERGED 2004/07/01 13:04:41 sab 1.12.16.2: #i20153#; oasis changes 2004/06/24 14:58:51 sab 1.12.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [0846f746aa1788d8059b025d2c75131d70f10fd4]

INTEGRATION: CWS oasis (1.11.16); FILE MERGED 2004/06/24 14:58:51 sab 1.11.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [2925a32b97ae7f4c093f03467198bc07a4d24f5e]

INTEGRATION: CWS oasis (1.18.16); FILE MERGED 2004/06/24 14:58:50 sab 1.18.16.1: #i20153#; oasis changes


2004-07-13  Rüdiger Timm  <rt@openoffice.org>  [da3a6d0f3b4908cd1f31e8fb01bddd5dd29815e5]

INTEGRATION: CWS oasis (1.22.16); FILE MERGED 2004/07/01 13:04:41 sab 1.22.16.2: #i20153#; oasis changes 2004/06/24 14:58:50 sab 1.22.16.1: #i20153#; oasis changes


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [816cbae1757a6bbab777df95694ca407d53acdbe]

INTEGRATION: CWS aw013 (1.17.36); FILE MERGED 2004/06/24 09:29:04 aw 1.17.36.2: #i29181# Issue number: Submitted by: Reviewed by: 2004/06/15 16:12:31 aw 1.17.36.1: #117095# Issue number: Submitted by: Reviewed by:


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [f388438eb8a0ed7b8a399f9bdbe1b1c41772fd22]

INTEGRATION: CWS aw013 (1.15.36); FILE MERGED 2004/06/15 16:12:31 aw 1.15.36.1: #117095# Issue number: Submitted by: Reviewed by:


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [429e19f1da6e3d18d5a42e860609b697f45a9da2]

INTEGRATION: CWS aw013 (1.5.36); FILE MERGED 2004/06/15 16:12:30 aw 1.5.36.1: #117095# Issue number: Submitted by: Reviewed by:


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [404c58e3e4daa087b0bdf0a18a2d383942483898]

INTEGRATION: CWS aw013 (1.8.14); FILE MERGED 2004/06/24 09:29:03 aw 1.8.14.2: #i29181# Issue number: Submitted by: Reviewed by: 2004/06/15 16:12:30 aw 1.8.14.1: #117095# Issue number: Submitted by: Reviewed by:


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [b27b803c91db7ff2f89a50e13924383b33ecbc14]

INTEGRATION: CWS aw013 (1.14.4); FILE MERGED 2004/06/29 13:33:34 aw 1.14.4.2: RESYNC: (1.14-1.15); FILE MERGED 2004/06/24 09:30:46 aw 1.14.4.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [6b4a5f12b387f39034582671292801ca1ecd5c3a]

INTEGRATION: CWS aw013 (1.6.470); FILE MERGED 2004/06/24 09:30:45 aw 1.6.470.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [49db52741077f46daf7f1cb121f84b31eecdf204]

INTEGRATION: CWS aw013 (1.17.182); FILE MERGED 2004/06/24 09:30:45 aw 1.17.182.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [9af17f4a4c6c00f0b42ab22f9365f9d612230342]

INTEGRATION: CWS aw013 (1.5.466); FILE MERGED 2004/06/24 09:30:45 aw 1.5.466.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [f156b0813a6221bc58fbba8db0a4aa1879d5d6b3]

INTEGRATION: CWS aw013 (1.13.180); FILE MERGED 2004/06/29 13:26:47 aw 1.13.180.2: RESYNC: (1.13-1.14); FILE MERGED 2004/06/24 09:30:45 aw 1.13.180.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [d61c98f9b3fbb13b8fc2bb4310c07e5c908db4c0]

INTEGRATION: CWS aw013 (1.35.38); FILE MERGED 2004/06/29 13:24:24 aw 1.35.38.2: RESYNC: (1.35-1.36); FILE MERGED 2004/06/15 16:18:01 aw 1.35.38.1: #117095#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [d27f104f9db4c4e92adfb8e893d3dd86092fd724]

INTEGRATION: CWS aw013 (1.11.68); FILE MERGED 2004/06/29 13:23:19 aw 1.11.68.2: RESYNC: (1.11-1.12); FILE MERGED 2004/06/15 16:18:01 aw 1.11.68.1: #117095#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [685cd0e7807a625b7dd5f839956922bcf598fd99]

INTEGRATION: CWS aw013 (1.8.20); FILE MERGED 2004/06/29 13:21:56 aw 1.8.20.3: RESYNC: (1.8-1.9); FILE MERGED 2004/06/24 09:30:44 aw 1.8.20.2: #i29181# 2004/06/15 16:18:00 aw 1.8.20.1: #117095#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [4b6b69cf92482d48e71d56cb54f255f904824c27]

INTEGRATION: CWS aw013 (1.53.8); FILE MERGED 2004/06/29 13:21:36 aw 1.53.8.2: RESYNC: (1.53-1.55); FILE MERGED 2004/06/24 09:30:44 aw 1.53.8.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [9ef1c2e7243acb1625ab6e6b9659b30971a46017]

INTEGRATION: CWS aw013 (1.23.20); FILE MERGED 2004/06/29 13:21:14 aw 1.23.20.2: RESYNC: (1.23-1.24); FILE MERGED 2004/06/24 09:30:44 aw 1.23.20.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [39db5e2089c244714cb9acccd1b74485078c719f]

INTEGRATION: CWS aw013 (1.14.42); FILE MERGED 2004/06/29 13:21:06 aw 1.14.42.2: RESYNC: (1.14-1.15); FILE MERGED 2004/06/24 09:30:43 aw 1.14.42.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [746eb0c01c4d2906fea744e6ae50c2d191a3182b]

INTEGRATION: CWS aw013 (1.3.310); FILE MERGED 2004/06/29 13:20:58 aw 1.3.310.2: RESYNC: (1.3-1.4); FILE MERGED 2004/06/24 09:30:43 aw 1.3.310.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [d0d8f9d77390dad0c68129dd5762cddc5919c2dc]

INTEGRATION: CWS aw013 (1.17.38); FILE MERGED 2004/06/29 13:19:05 aw 1.17.38.2: RESYNC: (1.17-1.18); FILE MERGED 2004/06/24 09:30:43 aw 1.17.38.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [3b8b937bb7c7e5dc8e4c5d1000da42327ee92a2d]

INTEGRATION: CWS aw013 (1.4.502); FILE MERGED 2004/06/24 09:30:42 aw 1.4.502.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [572d9c756588f20268f87477137adf1fa7d41428]

INTEGRATION: CWS aw013 (1.14.160); FILE MERGED 2004/06/24 09:30:42 aw 1.14.160.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [07d796387508c45c079d4cb13cdf9b454aaffdd2]

INTEGRATION: CWS aw013 (1.5.466); FILE MERGED 2004/06/24 09:30:42 aw 1.5.466.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [7cf4206bea0125ec8dc0c0d86096f0e60315f2da]

INTEGRATION: CWS aw013 (1.9.362); FILE MERGED 2004/06/24 09:30:42 aw 1.9.362.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [04409fc6801050563789736f2bb3c76b7d00c73b]

INTEGRATION: CWS aw013 (1.4.468); FILE MERGED 2004/06/24 09:30:41 aw 1.4.468.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [29e65c0d8357e42e7f60ea41f69d4b26b89d908b]

INTEGRATION: CWS aw013 (1.7.160); FILE MERGED 2004/06/24 09:30:41 aw 1.7.160.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [4f31603e7c2b4caacbb7e11c5868e4859543dd51]

INTEGRATION: CWS aw013 (1.10.464); FILE MERGED 2004/06/24 09:30:41 aw 1.10.464.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [bad7b2207255d5ef6f19c03392e10a31b433ac3f]

INTEGRATION: CWS aw013 (1.12.4); FILE MERGED 2004/06/29 12:52:52 aw 1.12.4.2: RESYNC: (1.12-1.13); FILE MERGED 2004/06/24 09:30:41 aw 1.12.4.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [1785637add3c1b4694f04c059c09df55ca54d968]

INTEGRATION: CWS aw013 (1.3.494); FILE MERGED 2004/06/24 09:30:40 aw 1.3.494.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [39626ac99b237ee92c906928f428ed37ee0eb3c9]

INTEGRATION: CWS aw013 (1.10.84); FILE MERGED 2004/06/24 09:30:40 aw 1.10.84.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [73d05bda9e24c7832fe33cb99be03d07c79e24b7]

INTEGRATION: CWS aw013 (1.3.132); FILE MERGED 2004/06/24 09:30:40 aw 1.3.132.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [b53b53c9f0d145c123820762ab0ec20b29f199de]

INTEGRATION: CWS aw013 (1.7.170); FILE MERGED 2004/06/24 09:30:39 aw 1.7.170.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [8a784b78734403d50f8f7a60af2d35f244b919e3]

INTEGRATION: CWS aw013 (1.18.36); FILE MERGED 2004/06/29 12:45:21 aw 1.18.36.2: RESYNC: (1.18-1.19); FILE MERGED 2004/06/24 09:30:38 aw 1.18.36.1: #i29181#


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [b4cdc9f05136a4bcfeebc78ab9dc663ed3f7d209]

INTEGRATION: CWS redlincom (1.7.84); FILE MERGED 2004/07/02 17:30:24 er 1.7.84.2: #112261# differentiate between move and deletion 2004/07/02 14:35:32 er 1.7.84.1: #112261# add comment if rejection may have resulted in references not properly restored in formulas


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [d97776fb663eb5e4601445fb224b43633fe63e51]

INTEGRATION: CWS redlincom (1.52.82); FILE MERGED 2004/07/05 12:15:24 er 1.52.82.3: #112261# hngngn.. remove one blank 2004/07/02 17:30:45 er 1.52.82.2: #112261# differentiate between move and deletion 2004/07/02 14:35:47 er 1.52.82.1: #112261# add comment if rejection may have resulted in references not properly restored in formulas


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [800a18af42d259e3bd36214bf08a6f025e99910f]

INTEGRATION: CWS redlincom (1.20.44); FILE MERGED 2004/07/02 17:30:44 er 1.20.44.2: #112261# differentiate between move and deletion 2004/07/02 14:35:46 er 1.20.44.1: #112261# add comment if rejection may have resulted in references not properly restored in formulas


2004-07-12  Rüdiger Timm  <rt@openoffice.org>  [1a3a4830bc92a29dbca9081f9d348ef2b7e28864]

INTEGRATION: CWS redlincom (1.21.44); FILE MERGED 2004/07/02 14:35:32 er 1.21.44.1: #112261# add comment if rejection may have resulted in references not properly restored in formulas


2004-07-07  Oliver Bolte  <obo@openoffice.org>  [967eff176669fc66f7b635b4aea8b92b1699c1e5]

#i10000# ico code change


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [94ad5bb7ae607ebb998c94e28aa157d037945a15]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 08:00:16 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [7d262262c15dab852a24835f8c8a7a50dab3504f]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 08:00:06 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [1693749d83cf73a7b0be2b4cc679012cbfc99863]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/28 06:40:37 cd 1.1.2.3: #i30169# Replaced wrong command in standard bar 2004/06/21 11:26:57 cd 1.1.2.2: #i20055# New toolbar design for Q 2004/06/14 07:59:54 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [ab9ef047226808d886cd4d02a22e1fb6164dd900]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 07:59:43 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [3689034840616a7b42f505ee465b61033a1953bd]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 07:59:14 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [fa14b18e09cdcf080a56b6f8c5ddcc9fbd1292f5]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 07:59:00 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [beb94d55c26008126f2d526d78a49bdb6f3ad39e]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/22 12:50:31 cd 1.1.2.1: #i30169# Added missing fullscreenbar.xml


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [f968036a5666cd30fc01856476d90b4f497776d3]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 07:57:06 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [108469f1cf1ddb157205c43be77bffc4a3edd06f]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 07:56:52 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [0d845fb8cb7c08a3c6ccd2bce5d5c233572a30e5]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 07:56:40 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [3964793288979c2a2ab452518b49bde4eb7db97d]

INTEGRATION: CWS docking1 (1.1.2); FILE ADDED 2004/06/14 07:56:28 cd 1.1.2.1: #i25236# Transition from resource to XML files for toolbars


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [10bed11e385a436ebd22f0f2ed952141193ed8f5]

INTEGRATION: CWS docking1 (1.4.4); FILE MERGED 2004/06/23 08:10:34 cd 1.4.4.1: #i25238# New toolbars popup menu


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [62c5fb6aecb59b93aa9477b73c83a1bd192eec24]

INTEGRATION: CWS docking1 (1.38.18); FILE MERGED 2004/06/23 15:16:49 mba 1.38.18.1: Provide document border size before resizing (needed for InPlace mode)


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [65eb7f6a417a6dec6d8d9031005bf8ed889be809]

INTEGRATION: CWS docking1 (1.1.1.1.444); FILE MERGED 2004/04/25 05:43:32 cd 1.1.1.1.444.1: #i26252# Transition of toolbar controllers


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [cee9123245f468b1f330c524faed51d630fcf54e]

INTEGRATION: CWS docking1 (1.4.408); FILE MERGED 2004/05/05 16:17:45 cd 1.4.408.2: #i26252# Fixed wrong item type for some slots and added state slots for CTL and vertical text 2004/04/25 05:43:31 cd 1.4.408.1: #i26252# Transition of toolbar controllers


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [2d61a94454d8fe70d1268b7940cef1035abf1a11]

INTEGRATION: CWS docking1 (1.9.300); FILE MERGED 2004/05/05 16:17:45 cd 1.9.300.3: #i26252# Fixed wrong item type for some slots and added state slots for CTL and vertical text 2004/05/02 00:31:53 cd 1.9.300.2: RESYNC: (1.9-1.10); FILE MERGED 2004/04/28 16:27:14 cd 1.9.300.1: #i26252# Fixes for toolbox controllers/items that used non-convertible items


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [70e121092eb0d55dcea5fd2f6d5807e0758f1f29]

INTEGRATION: CWS docking1 (1.4.76); FILE MERGED 2004/07/06 07:13:44 cd 1.4.76.1: #i25238# Support for inplace editing - please ask MBA


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [acc66003a207a76b71db135f8aa469c24bfa63a2]

INTEGRATION: CWS docking1 (1.7.126); FILE MERGED 2004/05/05 16:17:44 cd 1.7.126.1: #i26252# Fixed wrong item type for some slots and added state slots for CTL and vertical text


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [5dc879682b511bbc0cf3fede94c81e8639c483a8]

INTEGRATION: CWS docking1 (1.10.126); FILE MERGED 2004/05/05 16:17:44 cd 1.10.126.1: #i26252# Fixed wrong item type for some slots and added state slots for CTL and vertical text


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [08cd57d67c532252f668d7a001d0c960571b063d]

INTEGRATION: CWS docking1 (1.7.126); FILE MERGED 2004/05/02 00:26:32 cd 1.7.126.2: RESYNC: (1.7-1.8); FILE MERGED 2004/04/28 16:27:13 cd 1.7.126.1: #i26252# Fixes for toolbox controllers/items that used non-convertible items


2004-07-06  Oliver Bolte  <obo@openoffice.org>  [e23824895914ba129262d06255d3ae3956ffdaaa]

INTEGRATION: CWS docking1 (1.15.18); FILE MERGED 2004/06/14 08:17:24 cd 1.15.18.1: #i25236# Deliver toolbar layouts as XML files


2004-07-05  Oliver Bolte  <obo@openoffice.org>  [6e444331606c60242062ae833060f693bce54a92]

INTEGRATION: CWS rangename (1.63.32); FILE MERGED 2004/06/18 18:47:57 nn 1.63.32.1: #i28236# allow creation of names using the name box


2004-07-05  Oliver Bolte  <obo@openoffice.org>  [3641727f15b89cc39ae49948636a3c6605b7329c]

INTEGRATION: CWS rangename (1.52.70); FILE MERGED 2004/06/18 18:47:56 nn 1.52.70.1: #i28236# allow creation of names using the name box


2004-07-05  Oliver Bolte  <obo@openoffice.org>  [54ba0aee09155878e5b6386b933f7db814baaa57]

INTEGRATION: CWS rangename (1.13.344); FILE MERGED 2004/06/18 18:48:10 nn 1.13.344.1: #i28236# allow creation of names using the name box


2004-07-05  Oliver Bolte  <obo@openoffice.org>  [ab527d61e77cb39c4723210bcb5d2d1c6e4e7d09]

INTEGRATION: CWS rangename (1.39.24); FILE MERGED 2004/06/18 18:48:52 nn 1.39.24.1: #i28236# allow creation of names using the name box


2004-07-05  Oliver Bolte  <obo@openoffice.org>  [36c0e8765470ee694c9e897128a797b44d84e320]

INTEGRATION: CWS rangename (1.7.72); FILE MERGED 2004/06/18 18:47:06 nn 1.7.72.1: #i28236# allow creation of names using the name box


2004-07-05  Rüdiger Timm  <rt@openoffice.org>  [da28525d554ee10d69846016f1059e85d026ffbd]

INTEGRATION: CWS xsltfilter02 (1.93.26); FILE MERGED 2004/06/23 22:15:01 sus 1.93.26.2: RESYNC: (1.93-1.95); FILE MERGED 2004/06/17 11:53:57 sab 1.93.26.1: #i30209#; set boolean if there is no boolean style set


2004-07-05  Rüdiger Timm  <rt@openoffice.org>  [0e57ea2781a53582a5aed9e789f117e80e19e1b1]

INTEGRATION: CWS xsltfilter02 (1.175.30); FILE MERGED 2004/06/23 22:14:32 sus 1.175.30.2: RESYNC: (1.175-1.176); FILE MERGED 2004/06/17 10:53:06 sab 1.175.30.1: #i30251#; don't write text styles twice


2004-06-30  Hans-Joachim Lankenau  <hjs@openoffice.org>  [41396989d226d92673c4843b267b082593ab0754]

#i10000# adopt to ISO code


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [33627771b8bb4f62621e368f1a789cd15736dc21]

INTEGRATION: CWS dr18 (1.62.56); FILE MERGED 2004/06/01 17:01:36 dr 1.62.56.2: RESYNC: (1.62-1.63); FILE MERGED 2004/05/24 16:41:48 dr 1.62.56.1: #i29206# 'AutoPilot Functions' -> 'Function Wizard'


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [d54c221e1b4e062cb5cac14df34ff7d11e51c73c]

INTEGRATION: CWS dr18 (1.42.136); FILE MERGED 2004/05/24 16:41:35 dr 1.42.136.1: #i29206# 'AutoPilot Functions' -> 'Function Wizard'


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0389b5c0e8fa799db5e9d88477c5482e4d26b599]

INTEGRATION: CWS dr18 (1.2.14); FILE MERGED 2004/06/09 12:01:20 dr 1.2.14.2: RESYNC: (1.2-1.3); FILE MERGED 2004/05/25 09:37:39 dr 1.2.14.1: #i24235# allow to enter text separator directly


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c133ff43f533d4fef0a6bb5ae67e0c009bdadb6f]

INTEGRATION: CWS dr18 (1.6.350); FILE MERGED 2004/05/25 10:22:24 dr 1.6.350.1: #i24235# output device handling


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [6d80a2b3ff4e4bceff586118cac5d92f5546e236]

INTEGRATION: CWS dr18 (1.65.80); FILE MERGED 2004/06/09 11:46:18 dr 1.65.80.3: RESYNC: (1.66-1.67); FILE MERGED 2004/06/01 16:59:49 dr 1.65.80.2: RESYNC: (1.65-1.66); FILE MERGED 2004/05/26 09:54:18 dr 1.65.80.1: #i29269# form controls require TXO record


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [b9a6c19cd9d806a6d74173cb8d09b2cf56858a8a]

INTEGRATION: CWS dr18 (1.3.100); FILE MERGED 2004/05/24 16:30:15 dr 1.3.100.1: #116856# fixed loading external linked data


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [bb828fe48843e84b730b8634b78bc6381843b0b7]

INTEGRATION: CWS dr18 (1.7.100); FILE MERGED 2004/06/09 11:41:02 dr 1.7.100.3: RESYNC: (1.8-1.9); FILE MERGED 2004/06/01 16:59:26 dr 1.7.100.2: RESYNC: (1.7-1.8); FILE MERGED 2004/05/26 15:20:57 dr 1.7.100.1: #i27542# new custom shape import


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [4e1cb985d94bd4935112954616cbc0b138939d7f]

INTEGRATION: CWS dr18 (1.6.98); FILE MERGED 2004/06/09 11:39:28 dr 1.6.98.6: RESYNC: (1.7-1.8); FILE MERGED 2004/06/01 16:59:14 dr 1.6.98.5: RESYNC: (1.6-1.7); FILE MERGED 2004/05/26 15:20:57 dr 1.6.98.4: #i27542# new custom shape import 2004/05/26 11:39:41 dr 1.6.98.3: #i27542# new custom shape import 2004/05/26 09:27:48 dr 1.6.98.2: #i26521# ignore Forms.HTML:Hidden.1 controls 2004/05/25 16:42:08 dr 1.6.98.1: #i25429# skip invisible form controls


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [cb65bb23cca7f875609be8de63636da682ccf0ab]

INTEGRATION: CWS dr18 (1.31.98); FILE MERGED 2004/06/09 11:36:42 dr 1.31.98.2: RESYNC: (1.31-1.33); FILE MERGED 2004/05/25 11:27:00 dr 1.31.98.1: #113567# #114980# remove all static variables


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [844400123598831221d79d4e601112016e402a1a]

INTEGRATION: CWS dr18 (1.39.96); FILE MERGED 2004/06/09 11:34:18 dr 1.39.96.2: RESYNC: (1.39-1.40); FILE MERGED 2004/05/25 11:27:00 dr 1.39.96.1: #113567# #114980# remove all static variables


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [28a8b7359a6ef58f547b9bdb8f96a54ff4f652f3]

INTEGRATION: CWS dr18 (1.11.340); FILE MERGED 2004/06/09 11:33:49 dr 1.11.340.2: RESYNC: (1.11-1.12); FILE MERGED 2004/05/25 11:27:00 dr 1.11.340.1: #113567# #114980# remove all static variables


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f28717a880c30d7ccd0d27fb9e05b952ba79ee61]

INTEGRATION: CWS dr18 (1.7.60); FILE MERGED 2004/06/09 11:30:02 dr 1.7.60.2: RESYNC: (1.7-1.8); FILE MERGED 2004/05/25 15:30:46 dr 1.7.60.1: #i27542# catch exceptions from svx form controls importer


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [4e1c77650bee4e44184f411c1820a98b4cda410c]

INTEGRATION: CWS dr18 (1.9.46); FILE MERGED 2004/06/09 11:29:00 dr 1.9.46.2: RESYNC: (1.9-1.11); FILE MERGED 2004/05/24 16:30:04 dr 1.9.46.1: #116856# fixed loading external linked data


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c4064f2957243acde2b2f2d34cbc1682d6c73ea5]

INTEGRATION: CWS dr18 (1.14.56); FILE MERGED 2004/06/09 11:28:43 dr 1.14.56.6: RESYNC: (1.15-1.16); FILE MERGED 2004/06/01 16:58:04 dr 1.14.56.5: RESYNC: (1.14-1.15); FILE MERGED 2004/05/26 15:20:43 dr 1.14.56.4: #i27542# new custom shape import 2004/05/26 11:40:03 dr 1.14.56.3: #i27542# new custom shape import 2004/05/26 09:27:35 dr 1.14.56.2: #i26521# ignore Forms.HTML:Hidden.1 controls 2004/05/25 16:41:53 dr 1.14.56.1: #i25429# skip invisible form controls


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [06c942d2df62fd720badf5bb7eaff7a246ec78ef]

INTEGRATION: CWS dr18 (1.7.98); FILE MERGED 2004/06/09 11:27:53 dr 1.7.98.3: RESYNC: (1.8-1.9); FILE MERGED 2004/06/01 16:57:54 dr 1.7.98.2: RESYNC: (1.7-1.8); FILE MERGED 2004/05/24 16:30:03 dr 1.7.98.1: #116856# fixed loading external linked data


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a9c76479a7c9433187f07fd0483ef79b7e6d037c]

INTEGRATION: CWS dr18 (1.3.468); FILE MERGED 2004/06/09 11:26:35 dr 1.3.468.2: RESYNC: (1.3-1.4); FILE MERGED 2004/05/25 11:40:47 dr 1.3.468.1: #115223# check array index


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [d88d4354968095b3f4380067a2e0eded03df691e]

INTEGRATION: CWS dr18 (1.45.82); FILE MERGED 2004/06/09 11:26:13 dr 1.45.82.2: RESYNC: (1.45-1.47); FILE MERGED 2004/05/25 11:26:00 dr 1.45.82.1: #113567# #114980# remove all static variables


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [06001a34fc4477c3789504036e3072615bc4e0b2]

INTEGRATION: CWS dr18 (1.71.96); FILE MERGED 2004/06/09 11:26:04 dr 1.71.96.2: RESYNC: (1.71-1.72); FILE MERGED 2004/05/25 11:26:00 dr 1.71.96.1: #113567# #114980# remove all static variables


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c44c8290a19ab4bbd5c1102c3cbe650a5a38baae]

INTEGRATION: CWS dr18 (1.90.98); FILE MERGED 2004/06/09 11:25:40 dr 1.90.98.2: RESYNC: (1.90-1.92); FILE MERGED 2004/05/26 09:27:35 dr 1.90.98.1: #i26521# ignore Forms.HTML:Hidden.1 controls


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e6f838cba8477489bd9c4b444317a3dd734d3d04]

INTEGRATION: CWS dr18 (1.26.100); FILE MERGED 2004/06/09 11:25:31 dr 1.26.100.2: RESYNC: (1.26-1.27); FILE MERGED 2004/05/24 15:55:03 dr 1.26.100.1: #116856# handle formulas with OLE links


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f388a72c6482bc3eefaa32eb39dbf1a8b63e2d86]

INTEGRATION: CWS dr18 (1.12.190); FILE MERGED 2004/05/25 11:26:00 dr 1.12.190.2: #113567# #114980# remove all static variables 2004/05/24 16:30:04 dr 1.12.190.1: #116856# fixed loading external linked data


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [b473e579c5d5e6563014ef22de182052c4f3d689]

INTEGRATION: CWS dr18 (1.50.100); FILE MERGED 2004/06/09 11:25:12 dr 1.50.100.2: RESYNC: (1.50-1.52); FILE MERGED 2004/05/25 11:25:59 dr 1.50.100.1: #113567# #114980# remove all static variables


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [76efebd9cb652525e923ffe3ad0c326eefed6588]

INTEGRATION: CWS dr18 (1.17.96); FILE MERGED 2004/06/09 11:23:14 dr 1.17.96.2: RESYNC: (1.17-1.18); FILE MERGED 2004/05/26 13:34:01 er 1.17.96.1: #i23089# ReadjustRelative3DReferences: handle second reference part of Sheet1.A2:A3 as 3D


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [10946dfdff2815b975d3eb7a0dd92df42140d33b]

INTEGRATION: CWS dr18 (1.13.296); FILE MERGED 2004/06/09 11:22:00 dr 1.13.296.2: RESYNC: (1.13-1.14); FILE MERGED 2004/05/28 19:03:49 er 1.13.296.1: #i14569# UpdateNameReference: distinguish between defined name and shared formula if no sheet is specified


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [943355d2e3e28abfe859b6458137f8676a7e00cf]

INTEGRATION: CWS dr18 (1.46.14); FILE MERGED 2004/06/09 11:19:04 dr 1.46.14.2: RESYNC: (1.46-1.47); FILE MERGED 2004/05/28 19:03:47 er 1.46.14.1: #i14569# UpdateNameReference: distinguish between defined name and shared formula if no sheet is specified


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [9a624ca0ae2867c01405bb84f76096643c5eaaf8]

INTEGRATION: CWS dr18 (1.18.14); FILE MERGED 2004/06/09 10:54:07 dr 1.18.14.2: RESYNC: (1.18-1.19); FILE MERGED 2004/05/28 19:02:06 er 1.18.14.1: #i14569# UpdateNameReference: distinguish between defined name and shared formula if no sheet is specified


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [aa135fd574eb63071cc70b0eb0f9eb4d845cb93c]

INTEGRATION: CWS dr18 (1.15.88); FILE MERGED 2004/05/25 11:54:29 dr 1.15.88.1: #i25439# YIELDDISC fixed


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [90348466655cb9c727986de15b4556a8dca099b7]

INTEGRATION: CWS dr18 (1.10.138); FILE MERGED 2004/05/25 12:16:14 dr 1.10.138.1: #i25890# MULTINOMIAL with var arg list


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2223826898c3ba336141856a28a2654ac7bdc8a0]

INTEGRATION: CWS dr18 (1.13.138); FILE MERGED 2004/05/25 12:16:13 dr 1.13.138.1: #i25890# MULTINOMIAL with var arg list


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [137c779b7c2920d2cab09f5b88c11f0bb1587662]

INTEGRATION: CWS dr18 (1.35.12); FILE MERGED 2004/05/25 12:29:12 dr 1.35.12.2: #i25890# MULTINOMIAL with var arg list 2004/05/25 12:16:13 dr 1.35.12.1: #i25890# MULTINOMIAL with var arg list


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [51b668b64e2c238d628dcfcb0028b4b4372643a2]

INTEGRATION: CWS jmarmion1 (1.18.20); FILE MERGED 2004/06/28 12:42:40 jmarmion 1.18.20.1: #i27974# - add HID_FUNC_HYPERLINK.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [c130c864bcfd3ced467aa4c4ea27b10e23a38a21]

INTEGRATION: CWS jmarmion1 (1.20.90); FILE MERGED 2004/06/15 15:37:17 jmarmion 1.20.90.3: RESYNC: (1.21-1.22); FILE MERGED 2004/06/09 12:51:39 jmarmion 1.20.90.2: RESYNC: (1.20-1.21); FILE MERGED 2004/06/08 11:26:23 jmarmion 1.20.90.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [f141708a4e655553f344024ab78080138b4c9947]

INTEGRATION: CWS jmarmion1 (1.51.8); FILE MERGED 2004/06/15 15:22:08 jmarmion 1.51.8.3: RESYNC: (1.53-1.55); FILE MERGED 2004/06/09 12:47:38 jmarmion 1.51.8.2: RESYNC: (1.51-1.53); FILE MERGED 2004/06/08 11:26:22 jmarmion 1.51.8.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [c44e594b70d5e4300787079b3f5266d00042b250]

INTEGRATION: CWS jmarmion1 (1.78.112); FILE MERGED 2004/06/08 11:25:23 jmarmion 1.78.112.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [a36f18be0a87ffd2a3a49a499886f934127a149f]

INTEGRATION: CWS jmarmion1 (1.24.64); FILE MERGED 2004/06/15 13:34:10 jmarmion 1.24.64.2: RESYNC: (1.24-1.25); FILE MERGED 2004/06/08 11:24:42 jmarmion 1.24.64.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [6ade73a03f2269d429f14a1fd7f41db2f3d374e7]

INTEGRATION: CWS jmarmion1 (1.17.62); FILE MERGED 2004/06/15 13:30:43 jmarmion 1.17.62.2: RESYNC: (1.17-1.18); FILE MERGED 2004/06/08 11:23:58 jmarmion 1.17.62.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [e075c3860a180e88ca59bc8c222b7e2fc6dab03e]

INTEGRATION: CWS jmarmion1 (1.27.62); FILE MERGED 2004/06/15 13:27:17 jmarmion 1.27.62.2: RESYNC: (1.27-1.29); FILE MERGED 2004/06/08 11:23:58 jmarmion 1.27.62.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [076d647127959ebdf86060d05287b799217a7d81]

INTEGRATION: CWS jmarmion1 (1.16.62); FILE MERGED 2004/06/15 13:26:46 jmarmion 1.16.62.2: RESYNC: (1.16-1.18); FILE MERGED 2004/06/08 11:23:58 jmarmion 1.16.62.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [4b9c6ffefc09ceaceb753e03151742598b695890]

INTEGRATION: CWS jmarmion1 (1.45.62); FILE MERGED 2004/06/15 13:24:08 jmarmion 1.45.62.3: RESYNC: (1.46-1.47); FILE MERGED 2004/06/09 12:13:11 jmarmion 1.45.62.2: RESYNC: (1.45-1.46); FILE MERGED 2004/06/08 11:23:57 jmarmion 1.45.62.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [c49a71bf6432d3391947389bda62520e05842ed7]

INTEGRATION: CWS jmarmion1 (1.42.112); FILE MERGED 2004/06/08 11:23:13 jmarmion 1.42.112.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [1e4f17f96865595f92d2df0ded1c14ac019f2562]

INTEGRATION: CWS jmarmion1 (1.15.62); FILE MERGED 2004/06/15 13:20:52 jmarmion 1.15.62.2: RESYNC: (1.15-1.16); FILE MERGED 2004/06/08 11:22:08 jmarmion 1.15.62.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [54ffc52147f4b0e758917d62b92a059931965216]

INTEGRATION: CWS jmarmion1 (1.19.62); FILE MERGED 2004/06/16 08:22:41 jmarmion 1.19.62.3: #i27974# fix merge conflict. 2004/06/15 16:21:48 jmarmion 1.19.62.2: RESYNC: (1.19-1.20); FILE MERGED 2004/06/08 11:22:34 jmarmion 1.19.62.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [61c8fd072f2441cee2e7c104546a63d7b910f967]

INTEGRATION: CWS jmarmion1 (1.2.64); FILE MERGED 2004/06/15 13:03:40 jmarmion 1.2.64.2: RESYNC: (1.2-1.3); FILE MERGED 2004/06/08 11:21:26 jmarmion 1.2.64.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [64c0d730d6725f0bc7bb3afac74e3ad9898535c3]

INTEGRATION: CWS jmarmion1 (1.6.460); FILE MERGED 2004/06/08 11:21:25 jmarmion 1.6.460.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [1e62b26695149cecad1b6497c9c1c6a58e3fc878]

INTEGRATION: CWS jmarmion1 (1.9.64); FILE MERGED 2004/06/08 11:21:25 jmarmion 1.9.64.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [551f440c13cb8ed092eb00dbbd170638e7546c69]

INTEGRATION: CWS jmarmion1 (1.7.452); FILE MERGED 2004/06/08 11:21:25 jmarmion 1.7.452.1: #i27974# support hyperlink() function.


2004-06-28  Kurt Zenker  <kz@openoffice.org>  [4a6c7cebd9260dfca029ada02036545f47f6c728]

INTEGRATION: CWS jmarmion1 (1.11.62); FILE MERGED 2004/06/15 12:44:14 jmarmion 1.11.62.2: RESYNC: (1.11-1.12); FILE MERGED 2004/06/08 11:21:25 jmarmion 1.11.62.1: #i27974# support hyperlink() function.


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [5d6e475cd323cf9e1b2c338d8d2f663e53893e06]

INTEGRATION: CWS binfilterfix (1.66.82); FILE MERGED 2004/05/11 17:16:59 nn 1.66.82.1: #116569# #116577# set bIsEmpty = FALSE in AfterXMLLoading


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e2938e26535ae6c1929512ba4c01304c98f37cc5]

INTEGRATION: CWS mergebuild (1.37.68); FILE MERGED 2004/05/30 15:51:45 hjs 1.37.68.5: RESYNC: (1.38-1.39); FILE MERGED 2004/04/30 13:32:05 hjs 1.37.68.4: #i8252# fix unmerge probs 2004/04/20 23:49:22 hjs 1.37.68.3: RESYNC: (1.37-1.38); FILE MERGED 2003/11/11 19:20:04 ihi 1.37.68.2: en -> en-US 2003/11/10 17:36:06 ihi 1.37.68.1: #111234# Merge during build


2004-06-28  Hans-Joachim Lankenau  <hjs@openoffice.org>  [4c2fbf46cbe16997434b24d92587281af7ae8b79]

INTEGRATION: CWS mergebuild (1.30.68); FILE MERGED 2004/04/20 23:35:13 hjs 1.30.68.3: RESYNC: (1.30-1.31); FILE MERGED 2003/11/11 19:19:52 ihi 1.30.68.2: en -> en-US 2003/11/10 17:35:56 ihi 1.30.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a47656cfc741995525e7ae84e58a2d221dd38637]

INTEGRATION: CWS mergebuild (1.2.10); FILE MERGED 2004/05/19 11:13:15 ihi 1.2.10.1: Unmerge


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a08cb3c1fbf086105e36a7e6f3c5f8a0762109b4]

INTEGRATION: CWS mergebuild (1.1.1.1.22); FILE MERGED 2004/05/19 11:13:15 ihi 1.1.1.1.22.1: Unmerge


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [eb1b61baeb6296ea98b12aaf9616b169461fa372]

INTEGRATION: CWS mergebuild (1.1.1.1.22); FILE MERGED 2004/05/19 11:13:14 ihi 1.1.1.1.22.1: Unmerge


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [1e6a00c5901ee1153c0cee768336a3923a7bb7df]

INTEGRATION: CWS mergebuild (1.3.10); FILE MERGED 2004/06/21 12:54:41 ihi 1.3.10.2: #i8252# Removed duplicated de entry 2004/05/19 11:13:13 ihi 1.3.10.1: Unmerge


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [beac2fbee971af7dec9a6a7d8edc59f5341f24a9]

INTEGRATION: CWS mergebuild (1.1.1.1.22); FILE MERGED 2004/05/19 11:13:12 ihi 1.1.1.1.22.1: Unmerge


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [216a50dddc24a24b0852f610647e970e56623395]

INTEGRATION: CWS mergebuild (1.2.10); FILE MERGED 2004/05/19 11:13:12 ihi 1.2.10.1: Unmerge


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [3c046fa526515a1e05b6f8c6ca356d47328a9298]

INTEGRATION: CWS mergebuild (1.1.1.1.22); FILE MERGED 2004/05/19 11:13:11 ihi 1.1.1.1.22.1: Unmerge


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [80920c1d862a11d8c2d0d8e3729b2b5d314b87b4]

INTEGRATION: CWS mergebuild (1.2.10); FILE MERGED 2004/05/19 11:13:11 ihi 1.2.10.1: Unmerge


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [af8833ed744ebea886fcc418c8f096a14f44e879]

INTEGRATION: CWS mergebuild (1.19.14); FILE MERGED 2004/05/30 15:53:23 hjs 1.19.14.5: RESYNC: (1.23-1.24); FILE MERGED 2004/05/18 14:52:16 hjs 1.19.14.4: RESYNC: (1.22-1.23); FILE MERGED 2004/04/21 00:09:13 hjs 1.19.14.3: RESYNC: (1.21-1.22); FILE MERGED 2003/11/18 22:01:29 hjs 1.19.14.2: RESYNC: (1.19-1.21); FILE MERGED 2003/10/20 19:05:15 hjs 1.19.14.1: #111260# use SOLARCOMMONRESDDIR to access delivered srs files


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [cd99fb3ec1589a487245e49c6e37183363148748]

INTEGRATION: CWS mergebuild (1.31.68); FILE MERGED 2004/04/20 23:58:01 hjs 1.31.68.3: RESYNC: (1.31-1.32); FILE MERGED 2003/11/11 19:20:41 ihi 1.31.68.2: en -> en-US 2003/11/10 17:36:41 ihi 1.31.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [34a8d3b462008c80a917e7545de42c12ebb4b1f6]

INTEGRATION: CWS mergebuild (1.22.68); FILE MERGED 2004/05/30 15:52:23 hjs 1.22.68.4: RESYNC: (1.22-1.23); FILE MERGED 2004/02/05 18:00:07 hjs 1.22.68.3: #i8252# fix too much localizing 2003/11/11 19:20:40 ihi 1.22.68.2: en -> en-US 2003/11/10 17:36:40 ihi 1.22.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [b6782e33eb05ad9fe41acd8bdaea3efcc7981056]

INTEGRATION: CWS mergebuild (1.57.68); FILE MERGED 2004/05/30 15:52:04 hjs 1.57.68.7: RESYNC: (1.62-1.63); FILE MERGED 2004/05/18 14:45:49 hjs 1.57.68.6: RESYNC: (1.61-1.62); FILE MERGED 2004/04/30 13:32:10 hjs 1.57.68.5: #i8252# fix unmerge probs 2004/04/20 23:57:54 hjs 1.57.68.4: RESYNC: (1.58-1.61); FILE MERGED 2003/11/18 22:07:50 hjs 1.57.68.3: RESYNC: (1.57-1.58); FILE MERGED 2003/11/11 19:20:29 ihi 1.57.68.2: en -> en-US 2003/11/10 17:36:29 ihi 1.57.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [8393fee12ceb77f8bb6c16afb4cc9300c2e01a27]

INTEGRATION: CWS mergebuild (1.24.68); FILE MERGED 2004/04/30 13:32:10 hjs 1.24.68.4: #i8252# fix unmerge probs 2004/04/20 23:57:46 hjs 1.24.68.3: RESYNC: (1.24-1.25); FILE MERGED 2003/11/11 19:20:29 ihi 1.24.68.2: en -> en-US 2003/11/10 17:36:29 ihi 1.24.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c11ce1ac99376155d81503a95ba2eef8199d3011]

INTEGRATION: CWS mergebuild (1.20.68); FILE MERGED 2004/04/20 23:57:39 hjs 1.20.68.4: RESYNC: (1.21-1.22); FILE MERGED 2003/11/18 22:07:45 hjs 1.20.68.3: RESYNC: (1.20-1.21); FILE MERGED 2003/11/11 19:20:28 ihi 1.20.68.2: en -> en-US 2003/11/10 17:36:28 ihi 1.20.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c2c8b290279c8a873a45b299a850e33fc9fff84e]

INTEGRATION: CWS mergebuild (1.35.68); FILE MERGED 2004/04/20 23:57:23 hjs 1.35.68.3: RESYNC: (1.35-1.36); FILE MERGED 2003/11/11 19:20:27 ihi 1.35.68.2: en -> en-US 2003/11/10 17:36:28 ihi 1.35.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [43e505a23d6ad384909e9dc02fc2a6c21e1e3ef7]

INTEGRATION: CWS mergebuild (1.34.68); FILE MERGED 2004/05/18 14:45:42 hjs 1.34.68.6: RESYNC: (1.35-1.36); FILE MERGED 2004/04/20 23:57:15 hjs 1.34.68.5: RESYNC: (1.34-1.35); FILE MERGED 2004/02/23 11:25:49 ihi 1.34.68.4: Merge-While-Build update 2003/12/16 16:17:29 ihi 1.34.68.3: x-no-translate conversion 2003/11/11 19:20:26 ihi 1.34.68.2: en -> en-US 2003/11/10 17:36:27 ihi 1.34.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [11ab103122724eb36762afec6a217ceee43bd0cd]

INTEGRATION: CWS mergebuild (1.22.68); FILE MERGED 2004/04/20 23:57:07 hjs 1.22.68.4: RESYNC: (1.23-1.24); FILE MERGED 2003/11/18 22:07:40 hjs 1.22.68.3: RESYNC: (1.22-1.23); FILE MERGED 2003/11/11 19:20:26 ihi 1.22.68.2: en -> en-US 2003/11/10 17:36:27 ihi 1.22.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2db7c424ad1410e24168f8d0726465eef9476361]

INTEGRATION: CWS mergebuild (1.15.68); FILE MERGED 2004/04/20 23:56:59 hjs 1.15.68.6: RESYNC: (1.16-1.17); FILE MERGED 2004/02/23 11:25:49 ihi 1.15.68.5: Merge-While-Build update 2003/12/16 16:17:28 ihi 1.15.68.4: x-no-translate conversion 2003/11/18 22:07:34 hjs 1.15.68.3: RESYNC: (1.15-1.16); FILE MERGED 2003/11/11 19:20:25 ihi 1.15.68.2: en -> en-US 2003/11/10 17:36:27 ihi 1.15.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2575ee94e07c32a27b7b17a6b17298be5f38346b]

INTEGRATION: CWS mergebuild (1.18.68); FILE MERGED 2004/04/20 23:56:52 hjs 1.18.68.3: RESYNC: (1.18-1.19); FILE MERGED 2003/11/11 19:20:25 ihi 1.18.68.2: en -> en-US 2003/11/10 17:36:26 ihi 1.18.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [4e80feff07ca2fbbf2e530f4e05d0e9f2e3821e2]

INTEGRATION: CWS mergebuild (1.77.16); FILE MERGED 2004/05/18 14:45:34 hjs 1.77.16.6: RESYNC: (1.78-1.79); FILE MERGED 2004/04/20 23:56:44 hjs 1.77.16.5: RESYNC: (1.77-1.78); FILE MERGED 2004/02/23 11:25:48 ihi 1.77.16.4: Merge-While-Build update 2003/12/16 16:17:27 ihi 1.77.16.3: x-no-translate conversion 2003/11/11 19:20:24 ihi 1.77.16.2: en -> en-US 2003/11/10 17:36:25 ihi 1.77.16.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [6ebbeaf7a5b8e544449a882f89d652038c7f45e8]

INTEGRATION: CWS mergebuild (1.76.62); FILE MERGED 2004/04/20 23:56:30 hjs 1.76.62.6: RESYNC: (1.77-1.78); FILE MERGED 2003/12/03 17:30:38 hjs 1.76.62.5: #i8252# fixed syntax 2003/11/20 18:37:59 hjs 1.76.62.4: #i8252# removed remains of resync 2003/11/18 22:07:21 hjs 1.76.62.3: RESYNC: (1.76-1.77); FILE MERGED 2003/11/11 19:20:18 ihi 1.76.62.2: en -> en-US 2003/11/10 17:36:19 ihi 1.76.62.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [1d7e5a700fc7a6f3d882e487ab98337ec0812f3d]

INTEGRATION: CWS mergebuild (1.41.68); FILE MERGED 2004/04/20 23:56:09 hjs 1.41.68.3: RESYNC: (1.41-1.42); FILE MERGED 2003/11/11 19:20:17 ihi 1.41.68.2: en -> en-US 2003/11/10 17:36:19 ihi 1.41.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [9dee7115308d02b1ed284a7f16a88dcf67af1c22]

INTEGRATION: CWS mergebuild (1.19.68); FILE MERGED 2004/04/20 23:56:02 hjs 1.19.68.6: RESYNC: (1.20-1.21); FILE MERGED 2004/02/23 11:25:48 ihi 1.19.68.5: Merge-While-Build update 2003/12/16 16:17:27 ihi 1.19.68.4: x-no-translate conversion 2003/11/18 22:07:14 hjs 1.19.68.3: RESYNC: (1.19-1.20); FILE MERGED 2003/11/11 19:20:17 ihi 1.19.68.2: en -> en-US 2003/11/10 17:36:19 ihi 1.19.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2a7a8d239578d5d38dd420e302d75a36a01516e5]

INTEGRATION: CWS mergebuild (1.1.1.1.292); FILE MERGED 2004/03/02 15:45:57 ihi 1.1.1.1.292.1: Update Merge-While-Build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a101acd9a01190dce8840f22d978c11361832161]

INTEGRATION: CWS mergebuild (1.47.68); FILE MERGED 2004/05/18 14:45:23 hjs 1.47.68.4: RESYNC: (1.50-1.51); FILE MERGED 2004/04/20 23:55:46 hjs 1.47.68.3: RESYNC: (1.47-1.50); FILE MERGED 2003/11/11 19:20:16 ihi 1.47.68.2: en -> en-US 2003/11/10 17:36:18 ihi 1.47.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [606afbcea87d31d4c4b5830b9c9f6f06643d7690]

INTEGRATION: CWS mergebuild (1.57.68); FILE MERGED 2004/05/21 17:41:15 hjs 1.57.68.4: #i8252# fix resync problems 2004/04/20 23:55:39 hjs 1.57.68.3: RESYNC: (1.57-1.58); FILE MERGED 2003/11/11 19:20:16 ihi 1.57.68.2: en -> en-US 2003/11/10 17:36:18 ihi 1.57.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [6c0003f0edc5df59a429028fb0ea978a6a9975a6]

INTEGRATION: CWS mergebuild (1.31.68); FILE MERGED 2004/04/20 23:55:32 hjs 1.31.68.3: RESYNC: (1.31-1.32); FILE MERGED 2003/11/11 19:20:15 ihi 1.31.68.2: en -> en-US 2003/11/10 17:36:17 ihi 1.31.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e04685c16cd35e6f2eafa3cc6d4c68cf1a5857c5]

INTEGRATION: CWS mergebuild (1.28.68); FILE MERGED 2004/04/20 23:55:24 hjs 1.28.68.4: RESYNC: (1.29-1.30); FILE MERGED 2003/11/18 22:07:08 hjs 1.28.68.3: RESYNC: (1.28-1.29); FILE MERGED 2003/11/11 19:20:15 ihi 1.28.68.2: en -> en-US 2003/11/10 17:36:17 ihi 1.28.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [39186e8e6f6e7907e3f7c90b7a4ffbe88ed6748a]

INTEGRATION: CWS mergebuild (1.66.68); FILE MERGED 2004/05/21 17:41:14 hjs 1.66.68.6: #i8252# fix resync problems 2004/05/18 14:45:16 hjs 1.66.68.5: RESYNC: (1.67-1.68); FILE MERGED 2004/04/20 23:55:17 hjs 1.66.68.4: RESYNC: (1.66-1.67); FILE MERGED 2003/12/16 16:17:27 ihi 1.66.68.3: x-no-translate conversion 2003/11/11 19:20:14 ihi 1.66.68.2: en -> en-US 2003/11/10 17:36:16 ihi 1.66.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c8f6254aeac0dcd5eb1dc3dbd20933865cf20535]

INTEGRATION: CWS mergebuild (1.27.68); FILE MERGED 2004/05/18 14:45:09 hjs 1.27.68.5: RESYNC: (1.29-1.30); FILE MERGED 2004/04/30 13:32:08 hjs 1.27.68.4: #i8252# fix unmerge probs 2004/04/20 23:54:58 hjs 1.27.68.3: RESYNC: (1.27-1.29); FILE MERGED 2003/11/11 19:20:13 ihi 1.27.68.2: en -> en-US 2003/11/10 17:36:15 ihi 1.27.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [8c4b91e7791ab44b829b73eb58ce6ad3e33f9447]

INTEGRATION: CWS mergebuild (1.47.68); FILE MERGED 2004/05/18 14:45:00 hjs 1.47.68.5: RESYNC: (1.50-1.52); FILE MERGED 2004/04/30 13:32:07 hjs 1.47.68.4: #i8252# fix unmerge probs 2004/04/20 23:54:49 hjs 1.47.68.3: RESYNC: (1.47-1.50); FILE MERGED 2003/11/11 19:20:11 ihi 1.47.68.2: en -> en-US 2003/11/10 17:36:13 ihi 1.47.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [097a5a8b975f91196ce5ca49dd87dcc3578e0c99]

INTEGRATION: CWS mergebuild (1.50.68); FILE MERGED 2004/05/21 17:41:14 hjs 1.50.68.5: #i8252# fix resync problems 2004/05/18 14:44:52 hjs 1.50.68.4: RESYNC: (1.51-1.52); FILE MERGED 2004/04/20 23:54:06 hjs 1.50.68.3: RESYNC: (1.50-1.51); FILE MERGED 2003/11/11 19:20:11 ihi 1.50.68.2: en -> en-US 2003/11/10 17:36:13 ihi 1.50.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [6473bc304cf32d4dbb1ac646006c49173c3cb466]

INTEGRATION: CWS mergebuild (1.38.68); FILE MERGED 2004/05/18 14:44:45 hjs 1.38.68.4: RESYNC: (1.39-1.40); FILE MERGED 2004/04/20 23:53:59 hjs 1.38.68.3: RESYNC: (1.38-1.39); FILE MERGED 2003/11/11 19:20:11 ihi 1.38.68.2: en -> en-US 2003/11/10 17:36:13 ihi 1.38.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e13e31634ecbdfb742df5d5a3e1efef8fbdc07b3]

INTEGRATION: CWS mergebuild (1.37.68); FILE MERGED 2004/05/18 14:44:38 hjs 1.37.68.4: RESYNC: (1.38-1.39); FILE MERGED 2004/04/20 23:53:52 hjs 1.37.68.3: RESYNC: (1.37-1.38); FILE MERGED 2003/11/11 19:20:10 ihi 1.37.68.2: en -> en-US 2003/11/10 17:36:12 ihi 1.37.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [69b4ce84232675b08e006e195c240c85d6dbd773]

INTEGRATION: CWS mergebuild (1.25.68); FILE MERGED 2004/04/20 23:53:44 hjs 1.25.68.3: RESYNC: (1.25-1.26); FILE MERGED 2003/11/11 19:20:10 ihi 1.25.68.2: en -> en-US 2003/11/10 17:36:12 ihi 1.25.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [00637ba855209c2bab16ff80a9471d61cd7cbe09]

INTEGRATION: CWS mergebuild (1.38.68); FILE MERGED 2004/04/20 23:53:29 hjs 1.38.68.3: RESYNC: (1.38-1.39); FILE MERGED 2003/11/11 19:20:09 ihi 1.38.68.2: en -> en-US 2003/11/10 17:36:11 ihi 1.38.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [de6651d3233a78e8c896c9271d71e957dd346396]

INTEGRATION: CWS mergebuild (1.49.68); FILE MERGED 2004/05/18 14:44:22 hjs 1.49.68.5: RESYNC: (1.50-1.51); FILE MERGED 2004/04/30 13:32:06 hjs 1.49.68.4: #i8252# fix unmerge probs 2004/04/20 23:53:22 hjs 1.49.68.3: RESYNC: (1.49-1.50); FILE MERGED 2003/11/11 19:20:08 ihi 1.49.68.2: en -> en-US 2003/11/10 17:36:10 ihi 1.49.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [196fbc1103f742f74947f6a154c36e698a493ea0]

INTEGRATION: CWS mergebuild (1.20.68); FILE MERGED 2004/04/20 23:51:11 hjs 1.20.68.3: RESYNC: (1.20-1.21); FILE MERGED 2003/11/11 19:20:07 ihi 1.20.68.2: en -> en-US 2003/11/10 17:36:09 ihi 1.20.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [6c227162bc12e792dd2f3b1731ae073f2478a7ac]

INTEGRATION: CWS mergebuild (1.44.68); FILE MERGED 2004/05/18 14:43:45 hjs 1.44.68.7: RESYNC: (1.47-1.48); FILE MERGED 2004/04/30 13:32:06 hjs 1.44.68.6: #i8252# fix unmerge probs 2004/04/20 23:51:03 hjs 1.44.68.5: RESYNC: (1.44-1.47); FILE MERGED 2004/02/23 11:25:47 ihi 1.44.68.4: Merge-While-Build update 2003/12/16 16:17:23 ihi 1.44.68.3: x-no-translate conversion 2003/11/11 19:20:06 ihi 1.44.68.2: en -> en-US 2003/11/10 17:36:08 ihi 1.44.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [7dc21cfdf7e50d04d73596d192f7d2a61ac5e195]

INTEGRATION: CWS mergebuild (1.37.68); FILE MERGED 2004/05/18 14:43:29 hjs 1.37.68.4: RESYNC: (1.38-1.39); FILE MERGED 2004/04/20 23:50:42 hjs 1.37.68.3: RESYNC: (1.37-1.38); FILE MERGED 2003/11/11 19:20:06 ihi 1.37.68.2: en -> en-US 2003/11/10 17:36:08 ihi 1.37.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [7ca9409ed6b8b0b8ec5aaac8d60e178a2f5a42c6]

INTEGRATION: CWS mergebuild (1.25.68); FILE MERGED 2004/04/20 23:48:32 hjs 1.25.68.5: RESYNC: (1.25-1.26); FILE MERGED 2004/02/23 11:25:47 ihi 1.25.68.4: Merge-While-Build update 2003/12/16 16:17:22 ihi 1.25.68.3: x-no-translate conversion 2003/11/11 19:20:02 ihi 1.25.68.2: en -> en-US 2003/11/10 17:36:04 ihi 1.25.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [220f7d98a4124c2cb3ec0e7a495505ea70870c40]

INTEGRATION: CWS mergebuild (1.29.68); FILE MERGED 2004/04/20 23:48:16 hjs 1.29.68.3: RESYNC: (1.29-1.30); FILE MERGED 2003/11/11 19:20:01 ihi 1.29.68.2: en -> en-US 2003/11/10 17:36:04 ihi 1.29.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [015794fa7fd202ccedb8716ab86399f82440c403]

INTEGRATION: CWS mergebuild (1.26.68); FILE MERGED 2004/04/20 23:48:08 hjs 1.26.68.3: RESYNC: (1.26-1.27); FILE MERGED 2003/11/11 19:20:01 ihi 1.26.68.2: en -> en-US 2003/11/10 17:36:04 ihi 1.26.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [b38d897cdef35445fdce9cc63608a8881b7fef8e]

INTEGRATION: CWS mergebuild (1.28.68); FILE MERGED 2004/04/30 13:32:05 hjs 1.28.68.5: #i8252# fix unmerge probs 2004/04/20 23:47:29 hjs 1.28.68.4: RESYNC: (1.28-1.29); FILE MERGED 2004/02/23 11:25:46 ihi 1.28.68.3: Merge-While-Build update 2003/11/11 19:20:01 ihi 1.28.68.2: en -> en-US 2003/11/10 17:36:03 ihi 1.28.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f1341415130538ed632f585bb93a42c1947d61a5]

INTEGRATION: CWS mergebuild (1.23.68); FILE MERGED 2004/04/30 13:32:04 hjs 1.23.68.4: #i8252# fix unmerge probs 2004/04/20 23:41:39 hjs 1.23.68.3: RESYNC: (1.23-1.24); FILE MERGED 2003/11/11 19:19:59 ihi 1.23.68.2: en -> en-US 2003/11/10 17:36:02 ihi 1.23.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [cbd52737088f85531b2aaf29d65345956d5977b9]

INTEGRATION: CWS mergebuild (1.41.68); FILE MERGED 2004/04/20 23:41:00 hjs 1.41.68.3: RESYNC: (1.41-1.42); FILE MERGED 2003/11/11 19:19:59 ihi 1.41.68.2: en -> en-US 2003/11/10 17:36:02 ihi 1.41.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [ac7645c89df548feb2adca4c4262336a7dd36683]

INTEGRATION: CWS mergebuild (1.28.68); FILE MERGED 2004/04/20 23:40:52 hjs 1.28.68.4: RESYNC: (1.28-1.29); FILE MERGED 2003/12/16 16:17:21 ihi 1.28.68.3: x-no-translate conversion 2003/11/11 19:19:59 ihi 1.28.68.2: en -> en-US 2003/11/10 17:36:01 ihi 1.28.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [764fea163621142b426b7bd24dd3771262597f06]

INTEGRATION: CWS mergebuild (1.58.68); FILE MERGED 2004/04/30 13:32:04 hjs 1.58.68.4: #i8252# fix unmerge probs 2004/04/20 23:40:22 hjs 1.58.68.3: RESYNC: (1.58-1.60); FILE MERGED 2003/11/11 19:19:57 ihi 1.58.68.2: en -> en-US 2003/11/10 17:36:00 ihi 1.58.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a69937bdfd76ab524816e555357947db8932123f]

INTEGRATION: CWS mergebuild (1.19.68); FILE MERGED 2004/04/30 13:32:03 hjs 1.19.68.4: #i8252# fix unmerge probs 2004/04/20 23:39:07 hjs 1.19.68.3: RESYNC: (1.19-1.21); FILE MERGED 2003/11/11 19:19:57 ihi 1.19.68.2: en -> en-US 2003/11/10 17:36:00 ihi 1.19.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f17aba60a512f4f44931cb7bd914cc027892e163]

INTEGRATION: CWS mergebuild (1.24.68); FILE MERGED 2004/04/20 23:38:24 hjs 1.24.68.3: RESYNC: (1.24-1.25); FILE MERGED 2003/11/11 19:19:56 ihi 1.24.68.2: en -> en-US 2003/11/10 17:35:59 ihi 1.24.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [bb95fbfb246e1dbfa39dca8352dc094fcc794af2]

INTEGRATION: CWS mergebuild (1.38.16); FILE MERGED 2004/05/18 14:35:34 hjs 1.38.16.6: RESYNC: (1.39-1.40); FILE MERGED 2004/04/20 23:36:18 hjs 1.38.16.5: RESYNC: (1.38-1.39); FILE MERGED 2004/02/23 11:25:46 ihi 1.38.16.4: Merge-While-Build update 2003/12/16 16:17:20 ihi 1.38.16.3: x-no-translate conversion 2003/11/11 19:19:53 ihi 1.38.16.2: en -> en-US 2003/11/10 17:35:57 ihi 1.38.16.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0b4af05205fc2e9bd9cf26634c231f6847669648]

INTEGRATION: CWS mergebuild (1.36.68); FILE MERGED 2004/04/20 23:35:38 hjs 1.36.68.3: RESYNC: (1.36-1.38); FILE MERGED 2003/11/11 19:19:52 ihi 1.36.68.2: en -> en-US 2003/11/10 17:35:56 ihi 1.36.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0c0c74665106211f5ada4ac1e806976ce8b88063]

INTEGRATION: CWS mergebuild (1.50.68); FILE MERGED 2004/06/21 13:07:23 ihi 1.50.68.6: #i8252# Removed duplicated de entry 2004/05/21 17:41:13 hjs 1.50.68.5: #i8252# fix resync problems 2004/05/18 14:34:38 hjs 1.50.68.4: RESYNC: (1.51-1.53); FILE MERGED 2004/04/20 23:33:57 hjs 1.50.68.3: RESYNC: (1.50-1.51); FILE MERGED 2003/11/11 19:19:51 ihi 1.50.68.2: en -> en-US 2003/11/10 17:35:56 ihi 1.50.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [74fd60e2670b177485c0dcae93505418cb57a44a]

INTEGRATION: CWS mergebuild (1.29.68); FILE MERGED 2004/04/20 23:34:55 hjs 1.29.68.3: RESYNC: (1.29-1.30); FILE MERGED 2003/11/11 19:19:51 ihi 1.29.68.2: en -> en-US 2003/11/10 17:35:55 ihi 1.29.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [26644c9d81cd1f66d3989cbe9a4608a45ef2feb0]

INTEGRATION: CWS mergebuild (1.32.68); FILE MERGED 2004/04/20 23:34:31 hjs 1.32.68.4: RESYNC: (1.32-1.33); FILE MERGED 2003/12/16 16:17:19 ihi 1.32.68.3: x-no-translate conversion 2003/11/11 19:19:50 ihi 1.32.68.2: en -> en-US 2003/11/10 17:35:55 ihi 1.32.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c5d0819472c8fea1586b46002b6933981722c2f3]

INTEGRATION: CWS mergebuild (1.31.68); FILE MERGED 2004/05/18 14:34:01 hjs 1.31.68.4: RESYNC: (1.32-1.33); FILE MERGED 2004/04/20 23:34:14 hjs 1.31.68.3: RESYNC: (1.31-1.32); FILE MERGED 2003/11/11 19:19:50 ihi 1.31.68.2: en -> en-US 2003/11/10 17:35:55 ihi 1.31.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [95657733c98cbde618e5d73037eaa2710bba2987]

INTEGRATION: CWS mergebuild (1.29.68); FILE MERGED 2004/04/20 23:34:04 hjs 1.29.68.3: RESYNC: (1.29-1.30); FILE MERGED 2003/11/11 19:19:49 ihi 1.29.68.2: en -> en-US 2003/11/10 17:35:54 ihi 1.29.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f55d374da2e78d0c3cb1f8efcaedbae849935549]

INTEGRATION: CWS mergebuild (1.41.68); FILE MERGED 2004/04/30 13:32:02 hjs 1.41.68.6: #i8252# fix unmerge probs 2004/04/20 23:11:20 hjs 1.41.68.5: RESYNC: (1.41-1.42); FILE MERGED 2004/02/23 11:25:45 ihi 1.41.68.4: Merge-While-Build update 2003/12/16 16:17:18 ihi 1.41.68.3: x-no-translate conversion 2003/11/11 19:19:47 ihi 1.41.68.2: en -> en-US 2003/11/10 17:35:53 ihi 1.41.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [4e31a9664c132a53d2097c6c8e52ceebfc6387fe]

INTEGRATION: CWS mergebuild (1.12.60); FILE MERGED 2004/05/18 14:23:29 hjs 1.12.60.3: RESYNC: (1.14-1.15); FILE MERGED 2004/04/20 23:04:48 hjs 1.12.60.2: RESYNC: (1.12-1.14); FILE MERGED 2003/12/08 17:20:55 hjs 1.12.60.1: #i8252# deliver five char iso too


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f17003a492f0ea37707e44d35970802ea7a2a524]

INTEGRATION: CWS mergebuild (1.17.68); FILE MERGED 2004/04/20 22:56:16 hjs 1.17.68.3: RESYNC: (1.17-1.18); FILE MERGED 2003/11/11 19:19:44 ihi 1.17.68.2: en -> en-US 2003/11/10 17:35:50 ihi 1.17.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [68ec512aac57669aae5a3125ab11d91da26f1182]

INTEGRATION: CWS mergebuild (1.27.68); FILE MERGED 2004/04/20 22:56:05 hjs 1.27.68.3: RESYNC: (1.27-1.28); FILE MERGED 2003/11/11 19:19:43 ihi 1.27.68.2: en -> en-US 2003/11/10 17:35:49 ihi 1.27.68.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e97bd05d1919f1e15b757c30a25a77485352744e]

INTEGRATION: CWS mergebuild (1.20.14); FILE MERGED 2004/04/20 21:06:10 hjs 1.20.14.5: RESYNC: (1.20-1.21); FILE MERGED 2004/02/23 11:26:39 ihi 1.20.14.4: Merge-While-Build update 2003/12/16 16:18:35 ihi 1.20.14.3: x-no-translate conversion 2003/11/11 19:20:58 ihi 1.20.14.2: en -> en-US 2003/11/10 17:37:18 ihi 1.20.14.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [47730cc4fa79226fec6741b22817277a8e5bac22]

INTEGRATION: CWS mergebuild (1.8.32); FILE MERGED 2004/01/29 11:32:57 hjs 1.8.32.1: #i8252# chng. resmgr creation parameters from LanguageType to ::com::sun::star::lang::Locale


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [9a002d6ace9d9ee3643cdc117498d743a04eb056]

INTEGRATION: CWS mergebuild (1.23.14); FILE MERGED 2004/04/20 21:05:33 hjs 1.23.14.3: RESYNC: (1.23-1.24); FILE MERGED 2003/11/11 19:20:54 ihi 1.23.14.2: en -> en-US 2003/11/10 17:37:14 ihi 1.23.14.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [b265bf75f8f3be10467713341e3df2b7e9664306]

INTEGRATION: CWS mergebuild (1.60.14); FILE MERGED 2004/05/30 15:53:49 hjs 1.60.14.4: RESYNC: (1.61-1.62); FILE MERGED 2004/04/20 21:05:19 hjs 1.60.14.3: RESYNC: (1.60-1.61); FILE MERGED 2003/11/11 19:20:48 ihi 1.60.14.2: en -> en-US 2003/11/10 17:37:08 ihi 1.60.14.1: #111234# Merge during build


2004-06-26  Hans-Joachim Lankenau  <hjs@openoffice.org>  [dd2d4d8d8bace1a123b1028ee5f00a6a91bd52b6]

INTEGRATION: CWS mergebuild (1.33.22); FILE MERGED 2004/04/20 21:05:11 hjs 1.33.22.2: RESYNC: (1.33-1.35); FILE MERGED 2004/01/29 11:32:54 hjs 1.33.22.1: #i8252# chng. resmgr creation parameters from LanguageType to ::com::sun::star::lang::Locale


2004-06-24  Jens-Heiner Rechtien  <hr@openoffice.org>  [106630198a182a513c7c10dee9a3f4e06d60f3e9]

#i10000#: __LITTLEENDIAN -> OSL_LITENDIAN


2004-06-17  Rüdiger Timm  <rt@openoffice.org>  [a3a71b21964321d22b5ccc480eb800e98aab8f6c]

INTEGRATION: CWS ooo64bit01 (1.28.4); FILE MERGED 2004/05/02 16:52:23 svesik 1.28.4.2: RESYNC: (1.28-1.30); FILE MERGED 2004/03/15 23:18:29 fa 1.28.4.1: First bits of 64-bitness.  #i25651# & more


2004-06-17  Rüdiger Timm  <rt@openoffice.org>  [3654af7bc9a14792d54359105ac0a66f7367997c]

INTEGRATION: CWS ooo64bit01 (1.7.414); FILE MERGED 2004/03/15 23:18:30 fa 1.7.414.1: First bits of 64-bitness.  #i25651# & more


2004-06-17  Rüdiger Timm  <rt@openoffice.org>  [5d215e5440d2c2835db4534b10fb50f827aba933]

INTEGRATION: CWS ooo64bit01 (1.26.4); FILE MERGED 2004/03/15 23:18:30 fa 1.26.4.1: First bits of 64-bitness.  #i25651# & more


2004-06-17  Rüdiger Timm  <rt@openoffice.org>  [0cf4bd5c51d5b64b1176433b68459896d50658f0]

INTEGRATION: CWS ooo64bit01 (1.24.4); FILE MERGED 2004/03/15 23:18:30 fa 1.24.4.1: First bits of 64-bitness.  #i25651# & more


2004-06-16  Rüdiger Timm  <rt@openoffice.org>  [0f67f2cdc2ad036b51f275ca74c2b7b2fda3a321]

INTEGRATION: CWS ooo20040509 (1.10.26); FILE MERGED 2004/05/04 13:57:12 waratah 1.10.26.1: #i1858# correct for scoping


2004-06-15  Oliver Bolte  <obo@openoffice.org>  [a140cad04ac0b4ca5108ee31642c8b1f9333b234]

#i10000# type change to SCsCOL


2004-06-14  Rüdiger Timm  <rt@openoffice.org>  [aa7ff082522e8c94cc0d7fb26897038f9e3c4a88]

#i10000# For scope


2004-06-13  Kurt Zenker  <kz@openoffice.org>  [2db8c634e433d01b7d4169bcca7235b79eb68609]

new version for SRC680


2004-06-11  Kurt Zenker  <kz@openoffice.org>  [414d75de617937cf89df04ebe232602507af63e7]

INTEGRATION: CWS unopkg2 (1.3.36); FILE MERGED 2004/05/26 13:06:16 dbo 1.3.36.1: #i20304# added Package Manager menu item Issue number: Submitted by: Reviewed by:


2004-06-08  Oliver Bolte  <obo@openoffice.org>  [93c0d61bc2f4bd3ccd76ec4d9d5cd773647927b7]

#i10000# SCsCOL, SCsROW change missing


2004-06-08  Oliver Bolte  <obo@openoffice.org>  [fe17ca61db237f255400794d909626bc0d74b55d]

#i10000# resolve implementation conflicts global.hxx (from CWSs fieldoptions/rowtable)


2004-06-08  Oliver Bolte  <obo@openoffice.org>  [498f985e11db20b40a5cd443baab8e9352033fc0]

#i10000# resolve implementation conflicts pivot.hxx (from CWSs fieldoptions/rowtable)


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0bdec17912b9a6de4f88580155d09540f6168298]

#i10000# undo last change


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1a9914b9c78924bff41116a107693e6819f58e9b]

INTEGRATION: CWS fieldoptions (1.9.2); FILE MERGED 2004/05/12 18:11:22 sab 1.9.2.2: #i23447#; add fieldoptions 2004/05/04 16:32:38 dr 1.9.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [085fcd357486d0c04d64a9c2f861af2fffd71aa4]

INTEGRATION: CWS fieldoptions (1.6.2); FILE MERGED 2004/05/07 09:49:22 dr 1.6.2.3: #i23447# hidden members and used hierarchy 2004/05/05 14:11:14 dr 1.6.2.2: #i23447# sort options in subtotal dialog 2004/05/04 16:32:03 dr 1.6.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4808132acd6aca336b84088367ab8bb1e910ae25]

INTEGRATION: CWS fieldoptions (1.14.2); FILE MERGED 2004/05/27 08:28:56 dr 1.14.2.11: #100000# dialogdiet changes 2004/05/24 09:38:31 dr 1.14.2.10: RESYNC: (1.14-1.15); FILE MERGED 2004/05/18 09:11:53 dr 1.14.2.9: #i23447# support page+data dimension from same field 2004/05/17 19:30:52 dr 1.14.2.8: #i29203# right align page area 2004/05/07 11:49:20 dr 1.14.2.7: #i23447# DP subtotal options dialog: used hierarchy updates members list 2004/05/07 10:32:55 dr 1.14.2.6: #i23447# used hierarchy by index 2004/05/07 09:49:12 dr 1.14.2.5: #i23447# hidden members and used hierarchy 2004/05/06 11:13:52 dr 1.14.2.4: #i23447# auto show options in subtotal dialog 2004/05/05 16:02:08 dr 1.14.2.3: #i23447# layout options in subtotal dialog 2004/05/05 14:10:58 dr 1.14.2.2: #i23447# sort options in subtotal dialog 2004/05/04 16:31:15 dr 1.14.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [90346264de2c64fac3e9161a33492e30c8148d29]

INTEGRATION: CWS fieldoptions (1.30.2); FILE MERGED 2004/05/24 09:35:44 dr 1.30.2.2: RESYNC: (1.30-1.31); FILE MERGED 2004/05/04 16:24:33 dr 1.30.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7c456b0b0ac586098153b43c56f7558ee8a92974]

INTEGRATION: CWS fieldoptions (1.17.224); FILE MERGED 2004/05/04 16:33:46 dr 1.17.224.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b129707766b154844f8a8ff36d5282f08ee2bdd3]

INTEGRATION: CWS fieldoptions (1.4.326); FILE MERGED 2004/05/24 09:47:49 dr 1.4.326.2: RESYNC: (1.4-1.5); FILE MERGED 2004/05/04 16:33:21 dr 1.4.326.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [37aea69d7ee3e5c1ac6c7d0b6071f27af139f212]

INTEGRATION: CWS fieldoptions (1.3.2); FILE MERGED 2004/05/04 16:32:04 dr 1.3.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [447af4a86cf118abf365c4237f421add7f650161]

INTEGRATION: CWS fieldoptions (1.2.12); FILE MERGED 2004/05/27 08:29:26 dr 1.2.12.1: #100000# dialogdiet changes


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [70d14d17c6e11462aa9507d5a7808c1837e5e98c]

INTEGRATION: CWS fieldoptions (1.2.12); FILE MERGED 2004/05/27 08:29:25 dr 1.2.12.1: #100000# dialogdiet changes


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [68bd3ff2ab8d217f960a3c35d8ce668e579d7459]

INTEGRATION: CWS fieldoptions (1.3.332); FILE MERGED 2004/05/27 08:29:24 dr 1.3.332.7: #100000# dialogdiet changes 2004/05/07 11:49:30 dr 1.3.332.6: #i23447# DP subtotal options dialog: used hierarchy updates members list 2004/05/07 09:49:22 dr 1.3.332.5: #i23447# hidden members and used hierarchy 2004/05/06 11:14:25 dr 1.3.332.4: #i23447# auto show options in subtotal dialog 2004/05/05 16:02:22 dr 1.3.332.3: #i23447# layout options in subtotal dialog 2004/05/05 14:11:13 dr 1.3.332.2: #i23447# sort options in subtotal dialog 2004/05/04 16:32:03 dr 1.3.332.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3bd00b0bfffc48c0ca7c4f3899060580c394d28b]

INTEGRATION: CWS fieldoptions (1.31.22); FILE MERGED 2004/05/06 11:13:52 dr 1.31.22.2: #i23447# auto show options in subtotal dialog 2004/05/04 16:31:14 dr 1.31.22.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4ec891d5e7f0f241a114829563fe9bd7c3e3f93e]

INTEGRATION: CWS fieldoptions (1.2.354); FILE MERGED 2004/05/04 16:31:14 dr 1.2.354.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e46e68cfc7c930011be6b6c9cfa0f4eedcc8afe3]

INTEGRATION: CWS fieldoptions (1.4.332); FILE MERGED 2004/05/27 08:28:54 dr 1.4.332.10: #100000# dialogdiet changes 2004/05/19 10:24:04 dr 1.4.332.9: #i23447# do not set invalid hierarchy in FillLabelData() 2004/05/18 09:12:18 dr 1.4.332.8: #i23447# do not show single hierarchy in listbox 2004/05/07 11:49:19 dr 1.4.332.7: #i23447# DP subtotal options dialog: used hierarchy updates members list 2004/05/07 10:32:56 dr 1.4.332.6: #i23447# used hierarchy by index 2004/05/07 09:49:11 dr 1.4.332.5: #i23447# hidden members and used hierarchy 2004/05/06 11:13:51 dr 1.4.332.4: #i23447# auto show options in subtotal dialog 2004/05/05 16:02:08 dr 1.4.332.3: #i23447# layout options in subtotal dialog 2004/05/05 14:10:58 dr 1.4.332.2: #i23447# sort options in subtotal dialog 2004/05/04 16:31:14 dr 1.4.332.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [11fa8e5d59f095a173402e457cd2c4c40fb9006d]

INTEGRATION: CWS fieldoptions (1.2.12); FILE MERGED 2004/05/27 08:28:32 dr 1.2.12.1: #100000# dialogdiet changes


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ec5b18543cb951916e082e44cf9a8e9c6f724401]

INTEGRATION: CWS fieldoptions (1.70.2); FILE MERGED 2004/05/18 09:55:24 dr 1.70.2.2: RESYNC: (1.70-1.71); FILE MERGED 2004/05/12 18:10:35 sab 1.70.2.1: #i23447#; add fieldoptions


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [fc8455188ed6e11b66eae8778a97a0f0435cc2ab]

INTEGRATION: CWS fieldoptions (1.92.2); FILE MERGED 2004/05/18 09:55:16 dr 1.92.2.2: RESYNC: (1.92-1.93); FILE MERGED 2004/05/12 18:10:35 sab 1.92.2.1: #i23447#; add fieldoptions


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [59b4bf5b15066833829061e457c5b500a67a442e]

INTEGRATION: CWS fieldoptions (1.10.2); FILE MERGED 2004/05/12 18:10:34 sab 1.10.2.1: #i23447#; add fieldoptions


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c16faf662d9a8203362ae67edeef0aeeaf7c1b02]

INTEGRATION: CWS fieldoptions (1.13.2); FILE MERGED 2004/05/12 18:10:34 sab 1.13.2.1: #i23447#; add fieldoptions


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6bb44ba8490f9e58243ea7fa88e1b6b1469b5e1a]

INTEGRATION: CWS fieldoptions (1.11.2); FILE MERGED 2004/05/12 18:10:34 sab 1.11.2.1: #i23447#; add fieldoptions


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [17b325b04ead48e564344a62f09f12781f7cd3b2]

INTEGRATION: CWS fieldoptions (1.11.224); FILE MERGED 2004/05/17 19:13:00 dr 1.11.224.2: #i23447# remove old code, #i22541# shrink source range to used cells 2004/05/12 11:45:59 dr 1.11.224.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4bad0b4ccf94273fc3824844e650f85683897ca0]

INTEGRATION: CWS fieldoptions (1.1.2); FILE ADDED 2004/05/17 17:39:29 dr 1.1.2.14: #i23447# reimpl of pivot table export, step 6, autoshow, layout, member visibility, SXLI record 2004/05/17 15:00:37 dr 1.1.2.13: #i23447# reimpl of pivot table export, step 5: sort info, minor adjustments 2004/05/14 18:36:38 dr 1.1.2.12: #i23447# reimpl of pivot table export, step 4: page field options 2004/05/14 16:21:49 dr 1.1.2.11: #i23447# reimpl of pivot table export, step 3: general field options, data field options 2004/05/13 17:10:36 dr 1.1.2.10: #i23447# reimpl of pivot table export, step 2: raw structure of pivot tables 2004/05/13 12:04:42 dr 1.1.2.9: #i23447# reimpl of pivot table export, step 1: pivot cache 2004/05/12 19:49:41 dr 1.1.2.8: #i23447# import of SXDATETIME, SXBOOLEAN, SXERROR, SXEMPTY cache items 2004/05/12 12:09:09 dr 1.1.2.7: #i23447# import of field layout options 2004/05/12 11:42:04 dr 1.1.2.6: #i23447# reimpl of pivot table import completed 2004/05/11 18:45:27 dr 1.1.2.5: #i23447# import of field autoshow info 2004/05/11 18:19:34 dr 1.1.2.4: #i23447# import of field sort info 2004/05/11 16:02:54 dr 1.1.2.3: #i23447# import of PT fields/items reimplemented 2004/05/11 09:54:38 dr 1.1.2.2: #i23447# import of data field options #2 2004/05/10 18:26:00 dr 1.1.2.1: #i23447# import of data field options


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c7a8ab73bfb292ae65c0d2b584b5cd4c251f88b1]

INTEGRATION: CWS fieldoptions (1.8.2); FILE MERGED 2004/05/11 18:19:34 dr 1.8.2.1: #i23447# import of field sort info


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a64ed6411661b08362dcae1b0df0d038bfc0291e]

INTEGRATION: CWS fieldoptions (1.3.52); FILE MERGED 2004/05/12 11:42:04 dr 1.3.52.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6295249ec3c8b850a0af784a3a2234ccb9de9875]

INTEGRATION: CWS fieldoptions (1.13.18); FILE MERGED 2004/05/12 11:42:03 dr 1.13.18.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0a429b37855bcba06eab280ed434221ffc8d5bf3]

INTEGRATION: CWS fieldoptions (1.8.22); FILE MERGED 2004/05/13 12:04:42 dr 1.8.22.2: #i23447# reimpl of pivot table export, step 1: pivot cache 2004/05/12 11:42:03 dr 1.8.22.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [006b4fac377bc0af4cfd937a52ca354003ad178d]

INTEGRATION: CWS fieldoptions (1.1.2); FILE ADDED 2004/05/14 16:21:49 dr 1.1.2.5: #i23447# reimpl of pivot table export, step 3: general field options, data field options 2004/05/13 17:10:36 dr 1.1.2.4: #i23447# reimpl of pivot table export, step 2: raw structure of pivot tables 2004/05/12 19:49:40 dr 1.1.2.3: #i23447# import of SXDATETIME, SXBOOLEAN, SXERROR, SXEMPTY cache items 2004/05/12 14:03:37 dr 1.1.2.2: #i23447# handling of skipped object 2004/05/12 11:42:02 dr 1.1.2.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d24831739445dbc333b909ae215096e9b6daba23]

INTEGRATION: CWS fieldoptions (1.6.22); FILE MERGED 2004/05/12 13:20:18 dr 1.6.22.1: #i23447# sheet name and ScAddress handling


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [dbb3546ca453a237c466ada9e526179fc53b73a7]

INTEGRATION: CWS fieldoptions (1.5.52); FILE MERGED 2004/05/12 11:42:03 dr 1.5.52.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [98e6229c3a420ae9ba85b7f6b9dd44a1d7cac596]

INTEGRATION: CWS fieldoptions (1.90.22); FILE MERGED 2004/05/12 14:03:18 dr 1.90.22.6: #i23447# handling of skipped object 2004/05/12 13:20:03 dr 1.90.22.5: #i23447# sheet name and ScAddress handling 2004/05/12 11:41:04 dr 1.90.22.4: #i23447# reimpl of pivot table import completed 2004/05/11 16:02:28 dr 1.90.22.3: #i23447# import of PT fields/items reimplemented 2004/05/11 09:54:19 dr 1.90.22.2: #i23447# import of data field options #2 2004/05/10 18:25:24 dr 1.90.22.1: #i23447# import of data field options


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6f1c57aec4ccf0e2769986c4831991eff0d71811]

INTEGRATION: CWS fieldoptions (1.8.22); FILE MERGED 2004/05/13 12:04:42 dr 1.8.22.1: #i23447# reimpl of pivot table export, step 1: pivot cache


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8b388a04a3ff45b3dbfbd1ca363d08e3de39a3a8]

INTEGRATION: CWS fieldoptions (1.1.2); FILE ADDED 2004/05/17 19:11:29 dr 1.1.2.7: #i23447# remove old code, #i22541# shrink source range to used cells 2004/05/17 17:39:29 dr 1.1.2.6: #i23447# reimpl of pivot table export, step 6, autoshow, layout, member visibility, SXLI record 2004/05/17 15:00:31 dr 1.1.2.5: #i23447# reimpl of pivot table export, step 5: sort info, minor adjustments 2004/05/14 18:36:38 dr 1.1.2.4: #i23447# reimpl of pivot table export, step 4: page field options 2004/05/14 16:21:48 dr 1.1.2.3: #i23447# reimpl of pivot table export, step 3: general field options, data field options 2004/05/13 17:10:36 dr 1.1.2.2: #i23447# reimpl of pivot table export, step 2: raw structure of pivot tables 2004/05/13 12:04:42 dr 1.1.2.1: #i23447# reimpl of pivot table export, step 1: pivot cache


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [38543a9bffeb5fb3facb14ece23bde9396e23a96]

INTEGRATION: CWS fieldoptions (1.31.20); FILE MERGED 2004/05/17 19:11:29 dr 1.31.20.2: #i23447# remove old code, #i22541# shrink source range to used cells 2004/05/12 11:42:03 dr 1.31.20.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1c75102ea438919310e2ed0fa79643990e184f83]

INTEGRATION: CWS fieldoptions (1.3.36); FILE MERGED 2004/05/12 13:20:18 dr 1.3.36.1: #i23447# sheet name and ScAddress handling


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [772c817c58be08c8970fc6771a834a8a5dce714d]

INTEGRATION: CWS fieldoptions (1.51.52); FILE MERGED 2004/05/12 11:42:02 dr 1.51.52.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e2c7495d28d0c3b6e01209748a5630bc7867c716]

INTEGRATION: CWS fieldoptions (1.42.2); FILE MERGED 2004/05/12 11:42:02 dr 1.42.2.2: #i23447# reimpl of pivot table import completed 2004/05/11 16:02:53 dr 1.42.2.1: #i23447# import of PT fields/items reimplemented


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [cc6a56466ab0d8e6d87c480eda4e5fe1efe4b1aa]

INTEGRATION: CWS fieldoptions (1.10.2); FILE MERGED 2004/05/18 08:59:33 dr 1.10.2.8: #i23447# support page+data dimension from same field 2004/05/07 11:49:05 dr 1.10.2.7: #i23447# DP subtotal options dialog: used hierarchy updates members list 2004/05/07 10:32:30 dr 1.10.2.6: #i23447# used hierarchy by index 2004/05/07 09:48:44 dr 1.10.2.5: #i23447# hidden members and used hierarchy 2004/05/06 11:13:17 dr 1.10.2.4: #i23447# auto show options in subtotal dialog 2004/05/05 16:01:42 dr 1.10.2.3: #i23447# layout options in subtotal dialog 2004/05/05 14:10:18 dr 1.10.2.2: #i23447# sort options in subtotal dialog 2004/05/04 16:30:10 dr 1.10.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ec04b7421ba6187d24aba471342d70446cfed646]

INTEGRATION: CWS fieldoptions (1.1.2); FILE ADDED 2004/05/17 15:00:19 dr 1.1.2.12: #i23447# reimpl of pivot table export, step 5: sort info, minor adjustments 2004/05/14 18:36:50 dr 1.1.2.11: #i23447# reimpl of pivot table export, step 4: page field options 2004/05/14 16:21:37 dr 1.1.2.10: #i23447# reimpl of pivot table export, step 3: general field options, data field options 2004/05/13 17:10:24 dr 1.1.2.9: #i23447# reimpl of pivot table export, step 2: raw structure of pivot tables 2004/05/13 12:04:04 dr 1.1.2.8: #i23447# reimpl of pivot table export, step 1: pivot cache 2004/05/12 19:49:23 dr 1.1.2.7: #i23447# import of SXDATETIME, SXBOOLEAN, SXERROR, SXEMPTY cache items 2004/05/12 12:08:57 dr 1.1.2.6: #i23447# import of field layout options 2004/05/11 18:45:18 dr 1.1.2.5: #i23447# import of field autoshow info 2004/05/11 18:19:14 dr 1.1.2.4: #i23447# import of field sort info 2004/05/11 16:02:29 dr 1.1.2.3: #i23447# import of PT fields/items reimplemented 2004/05/11 09:54:19 dr 1.1.2.2: #i23447# import of data field options #2 2004/05/10 18:25:25 dr 1.1.2.1: #i23447# import of data field options


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [befdee49c97e531c1df8bd47c9c8a6cd6911ec8d]

INTEGRATION: CWS fieldoptions (1.8.22); FILE MERGED 2004/05/12 11:41:06 dr 1.8.22.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [87a73bfd7e570cd82970024ff8fb85f712f5db59]

INTEGRATION: CWS fieldoptions (1.1.2); FILE ADDED 2004/05/17 15:00:19 dr 1.1.2.9: #i23447# reimpl of pivot table export, step 5: sort info, minor adjustments 2004/05/14 16:21:37 dr 1.1.2.8: #i23447# reimpl of pivot table export, step 3: general field options, data field options 2004/05/13 17:10:24 dr 1.1.2.7: #i23447# reimpl of pivot table export, step 2: raw structure of pivot tables 2004/05/13 12:04:04 dr 1.1.2.6: #i23447# reimpl of pivot table export, step 1: pivot cache 2004/05/12 19:49:23 dr 1.1.2.5: #i23447# import of SXDATETIME, SXBOOLEAN, SXERROR, SXEMPTY cache items 2004/05/12 14:03:19 dr 1.1.2.4: #i23447# handling of skipped object 2004/05/12 13:20:04 dr 1.1.2.3: #i23447# sheet name and ScAddress handling 2004/05/12 12:08:57 dr 1.1.2.2: #i23447# import of field layout options 2004/05/12 11:41:04 dr 1.1.2.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8570096133e2a8eec91d18e529125bed1805d43c]

INTEGRATION: CWS fieldoptions (1.8.22); FILE MERGED 2004/05/18 09:54:23 dr 1.8.22.2: RESYNC: (1.8-1.9); FILE MERGED 2004/05/12 13:20:04 dr 1.8.22.1: #i23447# sheet name and ScAddress handling


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7af0f880d0215edcdbb209920c44d1a718047a93]

INTEGRATION: CWS fieldoptions (1.8.22); FILE MERGED 2004/05/12 11:41:05 dr 1.8.22.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [37c082361af7c16b2db27eaf1c0a7481f7a7c383]

INTEGRATION: CWS fieldoptions (1.9.22); FILE MERGED 2004/05/13 12:04:04 dr 1.9.22.1: #i23447# reimpl of pivot table export, step 1: pivot cache


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3583cf1cc03be152ba499d71fbed586faf908f7a]

INTEGRATION: CWS fieldoptions (1.1.2); FILE ADDED 2004/05/18 09:11:23 dr 1.1.2.8: #i22541# memleak, check top/bottom row of source area independently 2004/05/17 19:11:51 dr 1.1.2.7: #i23447# remove old code, #i22541# shrink source range to used cells 2004/05/17 17:39:03 dr 1.1.2.6: #i23447# reimpl of pivot table export, step 6, autoshow, layout, member visibility, SXLI record 2004/05/17 15:00:09 dr 1.1.2.5: #i23447# reimpl of pivot table export, step 5: sort info, minor adjustments 2004/05/14 18:36:49 dr 1.1.2.4: #i23447# reimpl of pivot table export, step 4: page field options 2004/05/14 16:21:36 dr 1.1.2.3: #i23447# reimpl of pivot table export, step 3: general field options, data field options 2004/05/13 17:10:24 dr 1.1.2.2: #i23447# reimpl of pivot table export, step 2: raw structure of pivot tables 2004/05/13 12:04:04 dr 1.1.2.1: #i23447# reimpl of pivot table export, step 1: pivot cache


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0588d5791976cb962f630aa2a875efdc4c22f9a0]

INTEGRATION: CWS fieldoptions (1.11.22); FILE MERGED 2004/05/13 12:04:03 dr 1.11.22.1: #i23447# reimpl of pivot table export, step 1: pivot cache


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ab2985c670ba39cf8e543997fd2e56f774462f37]

INTEGRATION: CWS fieldoptions (1.7.22); FILE MERGED 2004/05/12 11:41:05 dr 1.7.22.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [cd85f2c2b3c9c38c2cb2331540004a0e1114d97c]

INTEGRATION: CWS fieldoptions (1.42.22); FILE MERGED 2004/05/12 11:41:05 dr 1.42.22.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6b4194f731bec40723bdfb9857457843a68b35d8]

INTEGRATION: CWS fieldoptions (1.24.70); FILE MERGED 2004/05/13 12:04:03 dr 1.24.70.3: #i23447# reimpl of pivot table export, step 1: pivot cache 2004/05/12 11:41:05 dr 1.24.70.2: #i23447# reimpl of pivot table import completed 2004/05/11 09:54:19 dr 1.24.70.1: #i23447# import of data field options #2


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0e43b46885674969088daae0a6503e2c3941bc42]

INTEGRATION: CWS fieldoptions (1.45.36); FILE MERGED 2004/05/17 19:11:50 dr 1.45.36.3: #i23447# remove old code, #i22541# shrink source range to used cells 2004/05/12 13:20:03 dr 1.45.36.2: #i23447# sheet name and ScAddress handling 2004/05/12 11:41:05 dr 1.45.36.1: #i23447# reimpl of pivot table import completed


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [842d25a7e9cdec67a0c6a5211ad013e07b6a2f51]

INTEGRATION: CWS fieldoptions (1.50.22); FILE MERGED 2004/05/17 19:11:50 dr 1.50.22.2: #i23447# remove old code, #i22541# shrink source range to used cells 2004/05/13 12:04:02 dr 1.50.22.1: #i23447# reimpl of pivot table export, step 1: pivot cache


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [59ffa6a0a8f4b501b33d59860c85e6b1d966b496]

INTEGRATION: CWS fieldoptions (1.13.224); FILE MERGED 2004/05/12 19:49:22 dr 1.13.224.1: #i23447# import of SXDATETIME, SXBOOLEAN, SXERROR, SXEMPTY cache items


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [08e0adf47c9fe57f0384442413f984f0de98fe69]

INTEGRATION: CWS fieldoptions (1.2.2); FILE MERGED 2004/05/27 08:27:47 dr 1.2.2.7: #100000# dialogdiet changes 2004/05/07 10:32:05 dr 1.2.2.6: #i23447# used hierarchy by index 2004/05/07 09:48:18 dr 1.2.2.5: #i23447# hideen members and used hierarchy 2004/05/06 11:12:29 dr 1.2.2.4: #i23447# auto show options in subtotal dialog 2004/05/05 16:01:16 dr 1.2.2.3: #i23447# layout options in subtotal dialog 2004/05/05 14:09:19 dr 1.2.2.2: #i23447# sort options in subtotal dialog 2004/05/04 16:24:34 dr 1.2.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [70db05f13d9f517f431c56a9a716ca03dd2e1100]

INTEGRATION: CWS fieldoptions (1.62.20); FILE MERGED 2004/05/12 19:49:21 dr 1.62.20.2: #i23447# import of SXDATETIME, SXBOOLEAN, SXERROR, SXEMPTY cache items 2004/05/11 18:19:14 dr 1.62.20.1: #i23447# import of field sort info


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e52238d8c6da5957cc3bdc907b27d451e28bcaa1]

INTEGRATION: CWS fieldoptions (1.3.2); FILE MERGED 2004/05/18 08:59:03 dr 1.3.2.5: #i23447# support page+data dimension from same field 2004/05/07 11:48:45 dr 1.3.2.4: #i23447# DP subtotal options dialog: used hierarchy updates members list 2004/05/07 09:48:18 dr 1.3.2.3: #i23447# hideen members and used hierarchy 2004/05/05 14:09:18 dr 1.3.2.2: #i23447# sort options in subtotal dialog 2004/05/04 16:24:31 dr 1.3.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0759f438945b6be7f6f8e708b01f174f1c8f34a3]

INTEGRATION: CWS fieldoptions (1.5.20); FILE MERGED 2004/05/27 08:28:10 dr 1.5.20.1: #100000# dialogdiet changes


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [04a99396a88a0cad4662f99189258e63a2cc33a8]

INTEGRATION: CWS fieldoptions (1.13.2); FILE MERGED 2004/05/27 08:28:10 dr 1.13.2.4: #100000# dialogdiet changes 2004/05/07 10:32:30 dr 1.13.2.3: #i23447# used hierarchy by index 2004/05/05 14:10:19 dr 1.13.2.2: #i23447# sort options in subtotal dialog 2004/05/04 16:30:11 dr 1.13.2.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [86fd74d751c031a7cac8470e2f82c7106ad5ed34]

INTEGRATION: CWS fieldoptions (1.7.224); FILE MERGED 2004/05/07 12:46:06 nn 1.7.224.11: #i23447# treat manual sort mode as none as long as there is no manual order 2004/05/04 14:42:35 nn 1.7.224.10: #i23447# use field options API structs 2004/04/22 12:42:07 nn 1.7.224.9: #i23447# use DataPilotFieldReference API struct 2004/04/15 18:55:53 nn 1.7.224.8: RESYNC: (1.7-1.8); FILE MERGED 2004/03/18 13:35:24 nn 1.7.224.7: #i23447# field options in ScDPSaveData 2004/03/05 18:29:08 nn 1.7.224.6: #i23447# row field layout options 2004/02/19 11:04:18 nn 1.7.224.5: #i23447# AutoShow (continued) 2004/02/06 14:54:38 nn 1.7.224.4: #i23447# do column/row percentages and index in UpdateRunningTotals, after sorting 2004/02/02 16:52:54 nn 1.7.224.3: #i23447# sorting (incomplete) 2004/01/22 20:40:27 nn 1.7.224.2: #i23447# handle displayed value with several measures 2004/01/16 19:35:32 nn 1.7.224.1: #i23447# handle options for displayed value


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a6be4a78d38aef7107eabc191d1f973e7a558504]

INTEGRATION: CWS fieldoptions (1.4.344); FILE MERGED 2004/05/05 16:57:05 nn 1.4.344.14: #i23447# Calculate: handle SUBTOTAL_FUNC_NONE 2004/05/04 14:42:35 nn 1.4.344.13: #i23447# use field options API structs 2004/04/22 12:42:07 nn 1.4.344.12: #i23447# use DataPilotFieldReference API struct 2004/03/05 18:29:07 nn 1.4.344.11: #i23447# row field layout options 2004/02/19 11:19:27 nn 1.4.344.10: #i23447# DoAutoShow: nothing to do if AutoCount >= member count 2004/02/19 11:04:17 nn 1.4.344.9: #i23447# AutoShow (continued) 2004/02/13 17:08:32 nn 1.4.344.8: #i23447# DoAutoShow (empty) 2004/02/06 14:54:36 nn 1.4.344.7: #i23447# do column/row percentages and index in UpdateRunningTotals, after sorting 2004/02/05 16:35:36 nn 1.4.344.6: #i23447# calculate selected function for measure in addition to manual subtotals 2004/02/02 19:17:11 nn 1.4.344.5: #i23447# correct use of sorted/unsorted indexes 2004/02/02 16:52:54 nn 1.4.344.4: #i23447# sorting (incomplete) 2004/01/22 20:40:27 nn 1.4.344.3: #i23447# handle displayed value with several measures 2004/01/16 19:35:32 nn 1.4.344.2: #i23447# handle options for displayed value 2003/12/12 14:32:35 nn 1.4.344.1: #i23447# use subtotal state struct instead of global variables


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f33cc0a956eccc8e91b805127af4a52fbd54dc01]

INTEGRATION: CWS fieldoptions (1.3.362); FILE MERGED 2004/05/17 17:35:52 dr 1.3.362.10: #i23447# const correctness 2004/05/17 14:53:42 dr 1.3.362.9: #i23447# const correctness, array deletion 2004/05/11 09:53:17 dr 1.3.362.8: #i23447# duplicate dimension from existing dimension 2004/05/07 10:43:27 nn 1.3.362.7: #i23447# ignore UnknownPropertyException for new properties 2004/05/04 14:42:34 nn 1.3.362.6: #i23447# use field options API structs 2004/04/22 12:42:07 nn 1.3.362.5: #i23447# use DataPilotFieldReference API struct 2004/04/16 09:24:59 nn 1.3.362.4: merge errors 2004/04/15 18:55:21 nn 1.3.362.3: RESYNC: (1.3-1.4); FILE MERGED 2004/03/18 13:35:24 nn 1.3.362.2: #i23447# field options in ScDPSaveData 2004/01/16 19:35:31 nn 1.3.362.1: #i23447# handle options for displayed value


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e7999493785b786dd86228e1fa3c90b0e0be68e5]

INTEGRATION: CWS fieldoptions (1.55.14); FILE MERGED 2004/05/12 18:08:26 sab 1.55.14.5: #i23447#; add fieldoptions 2004/04/15 18:51:46 nn 1.55.14.4: RESYNC: (1.57-1.61); FILE MERGED 2004/03/18 13:35:09 nn 1.55.14.3: #i23447# field options in ScDPSaveData 2004/03/17 10:23:07 nn 1.55.14.2: RESYNC: (1.55-1.57); FILE MERGED 2004/01/16 19:35:09 nn 1.55.14.1: #i23447# handle options for displayed value


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ba24ed8593e902be28d8ae375cb344b6a73ca9ba]

INTEGRATION: CWS fieldoptions (1.2.12); FILE MERGED 2004/05/27 08:27:47 dr 1.2.12.1: #100000# dialogdiet changes


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [08662d9469967f2d985ad02c720b30366f9ebf27]

INTEGRATION: CWS fieldoptions (1.39.36); FILE MERGED 2004/05/04 16:24:35 dr 1.39.36.1: #i23447# DP data field options dialog


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [88932dfb7cbf6d5fffdf3abbb9a9217df6233ae3]

INTEGRATION: CWS fieldoptions (1.2.360); FILE MERGED 2004/05/04 14:42:16 nn 1.2.360.8: #i23447# use field options API structs 2004/04/22 12:41:51 nn 1.2.360.7: #i23447# use DataPilotFieldReference API struct 2004/04/15 18:50:34 nn 1.2.360.6: RESYNC: (1.2-1.3); FILE MERGED 2004/03/18 13:35:09 nn 1.2.360.5: #i23447# field options in ScDPSaveData 2004/03/05 18:28:49 nn 1.2.360.4: #i23447# row field layout options 2004/02/19 11:04:04 nn 1.2.360.3: #i23447# AutoShow (continued) 2004/02/02 16:52:39 nn 1.2.360.2: #i23447# sorting (incomplete) 2004/01/16 19:35:09 nn 1.2.360.1: #i23447# handle options for displayed value


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [849bbf9e49de4e3af6f0b2ab36734521c490c94f]

INTEGRATION: CWS fieldoptions (1.2.360); FILE MERGED 2004/04/22 12:41:50 nn 1.2.360.11: #i23447# use DataPilotFieldReference API struct 2004/03/05 18:28:48 nn 1.2.360.10: #i23447# row field layout options 2004/02/19 11:04:04 nn 1.2.360.9: #i23447# AutoShow (continued) 2004/02/13 17:08:10 nn 1.2.360.8: #i23447# DoAutoShow (empty) 2004/02/06 14:53:18 nn 1.2.360.7: #i23447# do column/row percentages and index in UpdateRunningTotals, after sorting 2004/02/05 16:35:25 nn 1.2.360.6: #i23447# calculate selected function for measure in addition to manual subtotals 2004/02/02 19:16:56 nn 1.2.360.5: #i23447# correct use of sorted/unsorted indexes 2004/02/02 16:52:38 nn 1.2.360.4: #i23447# sorting (incomplete) 2004/01/22 20:39:58 nn 1.2.360.3: #i23447# handle displayed value with several measures 2004/01/16 19:35:09 nn 1.2.360.2: #i23447# handle options for displayed value 2003/12/12 14:32:09 nn 1.2.360.1: #i23447# use subtotal state struct instead of global variables


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8ed79c34c820ba1d3cae7ede9803d734a4123ad1]

INTEGRATION: CWS fieldoptions (1.2.362); FILE MERGED 2004/05/17 17:35:43 dr 1.2.362.8: #i23447# const correctness 2004/05/17 14:53:23 dr 1.2.362.7: #i23447# const correctness, array deletion 2004/05/11 09:52:48 dr 1.2.362.6: #i23447# duplicate dimension from existing dimension 2004/05/04 14:42:16 nn 1.2.362.5: #i23447# use field options API structs 2004/04/22 12:41:49 nn 1.2.362.4: #i23447# use DataPilotFieldReference API struct 2004/04/15 18:50:18 nn 1.2.362.3: RESYNC: (1.2-1.3); FILE MERGED 2004/03/18 13:35:08 nn 1.2.362.2: #i23447# field options in ScDPSaveData 2004/01/16 19:35:08 nn 1.2.362.1: #i23447# handle options for displayed value


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d6579186ab6017ac8f9dd3730d3d8f450c69c787]

INTEGRATION: CWS fieldoptions (1.4.2); FILE MERGED 2004/05/12 18:08:25 sab 1.4.2.1: #i23447#; add fieldoptions


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e9fcdba89ab087f7c3efeb0a69601b5ee447db60]

INTEGRATION: CWS rowlimit (1.21.54); FILE MERGED 2004/02/26 19:06:45 jmarmion 1.21.54.4: #i1967# setp 5 changes. 2004/02/11 13:48:49 er 1.21.54.3: RESYNC: (1.22-1.23); FILE MERGED 2004/01/21 14:19:04 er 1.21.54.2: RESYNC: (1.21-1.22); FILE MERGED 2004/01/16 17:43:11 er 1.21.54.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a426e71754453335b8a65c887dec64daf3c7da6a]

INTEGRATION: CWS rowlimit (1.5.310); FILE MERGED 2004/01/16 17:43:04 er 1.5.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b7b080d5bc08f0e37483f131b41b6e3edbe18abb]

INTEGRATION: CWS rowlimit (1.7.308); FILE MERGED 2004/02/26 15:28:15 er 1.7.308.6: #i1967# type correctness 2004/02/11 13:50:42 er 1.7.308.5: RESYNC: (1.7-1.8); FILE MERGED 2004/02/04 11:28:24 er 1.7.308.4: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/23 18:15:05 er 1.7.308.3: #i1967# restructure ScAddress to use SCCOL/SCROW/SCTAB instead of one single UINT32; make converting ctors explicit 2004/01/15 12:43:16 er 1.7.308.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:07 er 1.7.308.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7e0f0a2181a6a0d29015fd76a9ea4b643522c69c]

INTEGRATION: CWS rowlimit (1.6.302); FILE MERGED 2004/02/26 15:27:11 er 1.6.302.5: #i1967# type correctness 2004/02/20 22:49:06 er 1.6.302.4: #i1967# type correctness 2004/02/11 13:55:16 er 1.6.302.3: RESYNC: (1.6-1.7); FILE MERGED 2004/02/04 11:28:18 er 1.6.302.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/13 20:04:47 er 1.6.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a97d0f928f283b31542180988554b03252ec3ee5]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/13 20:04:36 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e34acda6680756ab197c50975e080ef8f8e50f7f]

#i10000# type changes


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c25d3e27e75724d0aaee2c2abe24e6d3fe4d2051]

INTEGRATION: CWS rowlimit (1.3.334); FILE MERGED 2004/02/04 11:28:14 er 1.3.334.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/14 14:15:00 er 1.3.334.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1e346c46a2745969e71303141ecb38dbadef1777]

INTEGRATION: CWS rowlimit (1.18.178); FILE MERGED 2004/05/06 16:01:08 er 1.18.178.3: #i1967# type correctness 2004/04/23 16:43:02 er 1.18.178.2: #i1967# adapt to higher row limit 2004/01/14 14:14:59 er 1.18.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [742bf2ed048d1957a26724b0adc6afbd982a5631]

INTEGRATION: CWS rowlimit (1.17.16); FILE MERGED 2004/03/25 21:35:58 er 1.17.16.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 13:35:37 er 1.17.16.5: #i1967# void* casts and ambiguities 2004/03/04 18:16:25 er 1.17.16.4: #i1967# type correctness 2004/03/01 16:21:16 jmarmion 1.17.16.3: #i1967# step 5 changes. 2004/02/11 14:03:46 er 1.17.16.2: RESYNC: (1.17-1.18); FILE MERGED 2004/01/19 15:53:06 jmarmion 1.17.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f18fa42debf27b05ba8efaa472978270aa127b0c]

INTEGRATION: CWS rowlimit (1.32.70); FILE MERGED 2004/03/25 17:46:32 er 1.32.70.7: #i1967# consolidate ColToAlpha,AlphaToCol methods 2004/03/15 17:39:03 er 1.32.70.6: RESYNC: (1.34-1.36); FILE MERGED 2004/03/07 11:31:34 jmarmion 1.32.70.5: #i1967# step 5 changes. 2004/02/11 14:08:15 er 1.32.70.4: RESYNC: (1.33-1.34); FILE MERGED 2004/02/04 11:28:02 er 1.32.70.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/21 14:46:02 er 1.32.70.2: RESYNC: (1.32-1.33); FILE MERGED 2004/01/09 20:51:34 er 1.32.70.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [82c4089040c78217248d7d648c719fb3fc58bd6c]

INTEGRATION: CWS rowlimit (1.24.72); FILE MERGED 2004/04/29 16:16:20 er 1.24.72.14: RESYNC: (1.28-1.30); FILE MERGED 2004/03/15 17:40:53 er 1.24.72.13: RESYNC: (1.26-1.28); FILE MERGED 2004/03/11 12:05:48 er 1.24.72.12: #i1967# type correctness 2004/03/05 20:35:52 er 1.24.72.11: #i1967# type correctness 2004/03/01 17:44:05 er 1.24.72.10: #i1967# type correctness 2004/02/26 21:02:28 er 1.24.72.9: #i1967# type correctness 2004/02/26 19:42:12 er 1.24.72.8: #i1967# type correctness 2004/02/24 20:20:21 er 1.24.72.7: #i1967# type correctness 2004/02/16 13:28:20 er 1.24.72.6: #i1967# remove address typedefs of master workspace 2004/02/11 14:11:41 er 1.24.72.5: RESYNC: (1.25-1.26); FILE MERGED 2004/01/21 14:47:41 er 1.24.72.4: RESYNC: (1.24-1.25); FILE MERGED 2004/01/16 17:39:46 er 1.24.72.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:15:01 er 1.24.72.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:22 er 1.24.72.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a1f5a1c2f33e97867c2d24dff94ef2a280bc90f2]

INTEGRATION: CWS rowlimit (1.16.72); FILE MERGED 2004/03/15 17:40:20 er 1.16.72.5: RESYNC: (1.16-1.17); FILE MERGED 2004/03/05 12:16:01 er 1.16.72.4: #i1967# type correctness 2004/03/03 20:32:18 er 1.16.72.3: #i1967# type correctness 2004/01/16 17:39:43 er 1.16.72.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:53 er 1.16.72.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Rüdiger Timm  <rt@openoffice.org>  [3d5f30eef557d92f5ff15a6426273edd50b8cae5]

#i10000# No hedabu necessary here.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7da0c50e9302df7965629a7189f89222c0866563]

INTEGRATION: CWS rowlimit (1.6.328); FILE MERGED 2004/02/11 13:49:27 er 1.6.328.2: RESYNC: (1.6-1.7); FILE MERGED 2004/01/16 17:43:13 er 1.6.328.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [23c00d332b9de6516392783dea5e8d387bec7166]

INTEGRATION: CWS rowlimit (1.19.194); FILE MERGED 2004/03/17 12:24:59 er 1.19.194.6: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/11 12:07:50 er 1.19.194.5: #i1967# type correctness 2004/03/03 21:36:28 er 1.19.194.4: #i1967# type correctness 2004/02/26 19:10:14 jmarmion 1.19.194.3: #i1967# setp 5 changes. 2004/02/11 13:49:17 er 1.19.194.2: RESYNC: (1.19-1.20); FILE MERGED 2004/01/16 17:43:13 er 1.19.194.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4f215802eb1cd6c53ab9cc50e2dcf27047ef0dd8]

INTEGRATION: CWS rowlimit (1.12.26); FILE MERGED 2004/02/26 19:08:45 jmarmion 1.12.26.3: #i1967# setp 5 changes. 2004/02/11 13:49:07 er 1.12.26.2: RESYNC: (1.12-1.13); FILE MERGED 2004/01/16 17:43:12 er 1.12.26.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [461c12b60fe53cc19a6472d35a46a7bf09718c0b]

INTEGRATION: CWS rowlimit (1.5.310); FILE MERGED 2004/01/16 17:43:12 er 1.5.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [563eefc2724267ea6c3b8e0688b9bb6a837fa50e]

INTEGRATION: CWS rowlimit (1.23.202); FILE MERGED 2004/03/19 16:20:21 er 1.23.202.4: #i1967# type correctness (pass SCTAB to ScExtDocOptions::SetExtTabOptions()/GetExtTabOptions()) 2004/02/26 19:07:55 jmarmion 1.23.202.3: #i1967# setp 5 changes. 2004/02/11 13:48:58 er 1.23.202.2: RESYNC: (1.23-1.25); FILE MERGED 2004/01/16 17:43:12 er 1.23.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [25e374cb87932ea87462746a9236024625b851c1]

INTEGRATION: CWS rowlimit (1.23.16); FILE MERGED 2004/05/27 19:22:37 er 1.23.16.4: #i1967# PasteFromClip: check for OffLimits condition 2004/02/26 19:05:59 jmarmion 1.23.16.3: #i1967# setp 5 changes. 2004/02/11 13:48:40 er 1.23.16.2: RESYNC: (1.23-1.25); FILE MERGED 2004/01/16 17:43:11 er 1.23.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ac716dbec3a0e09d9b94dcfb44e373da59a748ce]

INTEGRATION: CWS rowlimit (1.20.14); FILE MERGED 2004/05/06 16:01:14 er 1.20.14.5: #i1967# type correctness 2004/03/15 17:16:30 er 1.20.14.4: RESYNC: (1.20-1.22); FILE MERGED 2004/03/03 21:36:28 er 1.20.14.3: #i1967# type correctness 2004/02/26 19:04:59 jmarmion 1.20.14.2: #i1967# setp 5 changes. 2004/01/16 17:43:10 er 1.20.14.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0e1c0e86316c67474e910ff5633d9746cc3831e0]

INTEGRATION: CWS rowlimit (1.39.12); FILE MERGED 2004/04/29 16:39:27 er 1.39.12.9: RESYNC: (1.42-1.44); FILE MERGED 2004/03/25 21:36:05 er 1.39.12.8: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/19 16:20:20 er 1.39.12.7: #i1967# type correctness (pass SCTAB to ScExtDocOptions::SetExtTabOptions()/GetExtTabOptions()) 2004/03/15 17:16:22 er 1.39.12.6: RESYNC: (1.41-1.42); FILE MERGED 2004/03/03 21:36:28 er 1.39.12.5: #i1967# type correctness 2004/02/26 19:00:05 jmarmion 1.39.12.4: #i1967# setp 5 changes. 2004/02/11 13:48:30 er 1.39.12.3: RESYNC: (1.40-1.41); FILE MERGED 2004/01/21 14:18:51 er 1.39.12.2: RESYNC: (1.39-1.40); FILE MERGED 2004/01/16 17:43:10 er 1.39.12.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4da502debe5975e42ef8377e532623beef6b5388]

INTEGRATION: CWS rowlimit (1.6.12); FILE MERGED 2004/02/13 11:33:27 er 1.6.12.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c47e69b976de691b831af2e4678e743fdbb9facd]

INTEGRATION: CWS rowlimit (1.5.202); FILE MERGED 2004/03/03 21:36:27 er 1.5.202.5: #i1967# type correctness 2004/02/26 18:42:02 jmarmion 1.5.202.4: #i1967# setp 5 changes. 2004/02/13 11:33:26 er 1.5.202.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:48:09 er 1.5.202.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/16 17:43:09 er 1.5.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [fdfb0e7486801589454669b73f6a97920fc29ef8]

INTEGRATION: CWS rowlimit (1.6.322); FILE MERGED 2004/01/16 17:43:09 er 1.6.322.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a34480d783fe883cb8f1cd10eb7c02da4c1ba673]

INTEGRATION: CWS rowlimit (1.4.304); FILE MERGED 2004/02/04 11:28:33 er 1.4.304.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/23 18:15:06 er 1.4.304.2: #i1967# restructure ScAddress to use SCCOL/SCROW/SCTAB instead of one single UINT32; make converting ctors explicit 2004/01/16 17:43:08 er 1.4.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [91d33409d811ff067fedbd33d369a6678858349a]

INTEGRATION: CWS rowlimit (1.10.16); FILE MERGED 2004/02/26 18:39:36 jmarmion 1.10.16.2: #i1967# setp 5 changes. 2004/01/16 17:43:08 er 1.10.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [cc9ab6b618eb677b9fb49b2f7f61910b463c723b]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/02/26 18:38:47 jmarmion 1.1.1.1.346.1: #i1967# setp 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b65066111e1066489ec483b7296188bd566d401d]

INTEGRATION: CWS rowlimit (1.6.302); FILE MERGED 2004/01/16 17:43:08 er 1.6.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3cc6cf5546ec09e06485b4c017c6822d431a43ae]

INTEGRATION: CWS rowlimit (1.33.124); FILE MERGED 2004/04/29 16:39:16 er 1.33.124.5: RESYNC: (1.34-1.36); FILE MERGED 2004/03/03 21:36:27 er 1.33.124.4: #i1967# type correctness 2004/02/26 18:37:56 jmarmion 1.33.124.3: #i1967# setp 5 changes. 2004/02/11 13:48:00 er 1.33.124.2: RESYNC: (1.33-1.34); FILE MERGED 2004/01/16 17:43:07 er 1.33.124.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [db9ddf00697422e46a8872005b5bac0ed5dc11c0]

INTEGRATION: CWS rowlimit (1.18.16); FILE MERGED 2004/03/25 21:36:04 er 1.18.16.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/15 17:16:15 er 1.18.16.5: RESYNC: (1.20-1.21); FILE MERGED 2004/02/26 18:37:27 jmarmion 1.18.16.4: #i1967# setp 5 changes. 2004/02/11 13:47:49 er 1.18.16.3: RESYNC: (1.19-1.20); FILE MERGED 2004/01/21 14:18:40 er 1.18.16.2: RESYNC: (1.18-1.19); FILE MERGED 2004/01/16 17:43:07 er 1.18.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ffb458d967d6f858c76d6953acf4a6d831f3c07a]

INTEGRATION: CWS rowlimit (1.13.202); FILE MERGED 2004/01/16 17:43:07 er 1.13.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d51ec9c13b20d863a7e49cd634f05aa4b9779e9c]

INTEGRATION: CWS rowlimit (1.11.156); FILE MERGED 2004/04/29 16:39:06 er 1.11.156.4: RESYNC: (1.12-1.13); FILE MERGED 2004/02/26 18:36:21 jmarmion 1.11.156.3: #i1967# setp 5 changes. 2004/02/11 13:47:28 er 1.11.156.2: RESYNC: (1.11-1.12); FILE MERGED 2004/01/16 17:43:06 er 1.11.156.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [91c303ec91e02eb3a3df1d1b799d55d4d34687e6]

INTEGRATION: CWS rowlimit (1.2.302); FILE MERGED 2004/02/26 18:35:51 jmarmion 1.2.302.4: #i1967# setp 5 changes. 2004/02/11 13:47:19 er 1.2.302.3: RESYNC: (1.2-1.3); FILE MERGED 2004/02/04 11:28:32 er 1.2.302.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/16 17:43:06 er 1.2.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ac868b20693f81f80943390a61bd7437801dc79b]

INTEGRATION: CWS rowlimit (1.35.62); FILE MERGED 2004/03/25 21:36:04 er 1.35.62.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/18 19:42:51 er 1.35.62.5: #i1967# type correctness (ScChartPositionMap using SCSIZE) 2004/03/03 21:36:26 er 1.35.62.4: #i1967# type correctness 2004/02/26 18:35:13 jmarmion 1.35.62.3: #i1967# setp 5 changes. 2004/02/11 13:47:08 er 1.35.62.2: RESYNC: (1.35-1.36); FILE MERGED 2004/01/16 17:43:06 er 1.35.62.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [248939a216ff50f1b8a371953d60d320dd096e35]

INTEGRATION: CWS rowlimit (1.8.304); FILE MERGED 2004/03/25 21:36:04 er 1.8.304.3: #i1967# use ValidCol,ValidRow,ValidTab 2004/02/26 18:32:15 jmarmion 1.8.304.2: #i1967# setp 5 changes. 2004/01/16 17:43:05 er 1.8.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4b2ac771ff4717e570bae7cbc3e764cee1e3feed]

INTEGRATION: CWS rowlimit (1.15.302); FILE MERGED 2004/04/29 16:38:57 er 1.15.302.4: RESYNC: (1.16-1.17); FILE MERGED 2004/02/26 18:31:40 jmarmion 1.15.302.3: #i1967# setp 5 changes. 2004/02/11 13:46:58 er 1.15.302.2: RESYNC: (1.15-1.16); FILE MERGED 2004/01/16 17:43:05 er 1.15.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [41db2d1929ccea7e3b2eebb078a4d7c5c497aa6f]

INTEGRATION: CWS rowlimit (1.5.334); FILE MERGED 2004/03/03 21:36:26 er 1.5.334.5: #i1967# type correctness 2004/02/26 18:30:23 jmarmion 1.5.334.4: #i1967# setp 5 changes. 2004/02/11 13:46:37 er 1.5.334.3: RESYNC: (1.6-1.7); FILE MERGED 2004/01/21 14:18:27 er 1.5.334.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/16 17:43:05 er 1.5.334.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [29082e20f6db99703269f0b53e365ae5b1a8186a]

INTEGRATION: CWS rowlimit (1.11.194); FILE MERGED 2004/03/03 21:36:25 er 1.11.194.4: #i1967# type correctness 2004/02/26 18:20:37 jmarmion 1.11.194.3: #i1967# step 5 changes. 2004/02/04 11:28:32 er 1.11.194.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/16 17:43:04 er 1.11.194.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e0431d4db794442faf846f818165437434d945c5]

INTEGRATION: CWS rowlimit (1.31.16); FILE MERGED 2004/04/29 16:38:49 er 1.31.16.10: RESYNC: (1.34-1.35); FILE MERGED 2004/04/06 14:17:07 er 1.31.16.9: #i1967# change REPEAT_NONE to SCCOL_REPEAT_NONE,SCROW_REPEAT_NONE 2004/03/16 09:47:42 er 1.31.16.8: #i1967# scope 2004/03/15 17:16:08 er 1.31.16.7: RESYNC: (1.33-1.34); FILE MERGED 2004/03/03 21:36:25 er 1.31.16.6: #i1967# type correctness 2004/02/26 18:19:07 jmarmion 1.31.16.5: #i1967# step 5 changes. 2004/02/11 13:46:27 er 1.31.16.4: RESYNC: (1.32-1.33); FILE MERGED 2004/02/04 11:28:31 er 1.31.16.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/21 14:18:14 er 1.31.16.2: RESYNC: (1.31-1.32); FILE MERGED 2004/01/16 17:43:03 er 1.31.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d36e9c32e49fc6b24af7bbcf466d88d2ae665205]

INTEGRATION: CWS rowlimit (1.19.178); FILE MERGED 2004/02/11 13:46:17 er 1.19.178.2: RESYNC: (1.19-1.20); FILE MERGED 2004/01/16 17:43:03 er 1.19.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d762f6e3f2c898c563a81ea1ae4df99d3a2df369]

INTEGRATION: CWS rowlimit (1.9.202); FILE MERGED 2004/03/03 21:36:25 er 1.9.202.3: #i1967# type correctness 2004/02/26 18:15:43 jmarmion 1.9.202.2: #i1967# step 5 changes. 2004/01/16 17:43:03 er 1.9.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [677d9b19e1de95b01e5ab077bb03337b00de7a6b]

INTEGRATION: CWS rowlimit (1.22.156); FILE MERGED 2004/03/03 21:36:24 er 1.22.156.4: #i1967# type correctness 2004/02/26 18:14:39 jmarmion 1.22.156.3: #i1967# step 5 changes. 2004/01/21 14:18:02 er 1.22.156.2: RESYNC: (1.22-1.23); FILE MERGED 2004/01/16 17:43:02 er 1.22.156.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d9f1d4b5b4a3641cc98238b73d3144ace7bd57b0]

INTEGRATION: CWS rowlimit (1.3.310); FILE MERGED 2004/01/16 17:43:02 er 1.3.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [110cab126c0c1e322b37b77a9bec19a17d05f010]

INTEGRATION: CWS rowlimit (1.1.308); FILE MERGED 2004/03/03 21:36:24 er 1.1.308.3: #i1967# type correctness 2004/02/26 18:12:41 jmarmion 1.1.308.2: #i1967# step 5 changes. 2004/01/16 17:43:02 er 1.1.308.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a0ad1238a3ffb0b303d4807c213bc92c5e700d8f]

INTEGRATION: CWS rowlimit (1.9.26); FILE MERGED 2004/03/03 21:36:24 er 1.9.26.4: #i1967# type correctness 2004/02/11 13:46:08 er 1.9.26.3: RESYNC: (1.10-1.11); FILE MERGED 2004/01/21 14:17:49 er 1.9.26.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/16 17:43:01 er 1.9.26.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e2c2fff083ea1d724bb251c2c1a6015058261d91]

INTEGRATION: CWS rowlimit (1.36.34); FILE MERGED 2004/03/11 12:07:50 er 1.36.34.7: #i1967# type correctness 2004/03/03 21:36:23 er 1.36.34.6: #i1967# type correctness 2004/02/26 18:11:08 jmarmion 1.36.34.5: #i1967# step 5 changes. 2004/02/13 11:33:26 er 1.36.34.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:45:58 er 1.36.34.3: RESYNC: (1.37-1.38); FILE MERGED 2004/01/21 14:17:37 er 1.36.34.2: RESYNC: (1.36-1.37); FILE MERGED 2004/01/16 17:43:01 er 1.36.34.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ce3a3303f8f6d7688bb634127e14f77efd6241d7]

INTEGRATION: CWS rowlimit (1.18.200); FILE MERGED 2004/03/25 21:36:03 er 1.18.200.9: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/18 17:14:30 er 1.18.200.8: #i1967# type correctness 2004/03/15 17:16:00 er 1.18.200.7: RESYNC: (1.21-1.22); FILE MERGED 2004/03/03 21:36:23 er 1.18.200.6: #i1967# type correctness 2004/02/26 18:01:08 jmarmion 1.18.200.5: #i1967# step 5 changes. 2004/02/11 13:45:47 er 1.18.200.4: RESYNC: (1.20-1.21); FILE MERGED 2004/02/04 11:28:30 er 1.18.200.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/21 14:17:23 er 1.18.200.2: RESYNC: (1.18-1.20); FILE MERGED 2004/01/16 17:43:00 er 1.18.200.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [dd0c1a3c1e9023fe631bcba3d90dc29cad5ae88d]

INTEGRATION: CWS rowlimit (1.6.180); FILE MERGED 2004/02/26 17:59:44 jmarmion 1.6.180.3: #i1967# step 5 changes. 2004/02/11 13:45:38 er 1.6.180.2: RESYNC: (1.6-1.7); FILE MERGED 2004/01/16 17:43:00 er 1.6.180.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4faddb1e19e686f1d6e8e7ab8e83c01f7ff6c220]

INTEGRATION: CWS rowlimit (1.5.28); FILE MERGED 2004/01/16 17:43:00 er 1.5.28.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [227414340442b7a93c2cf74f38b71231f9f4bb48]

INTEGRATION: CWS rowlimit (1.13.10); FILE MERGED 2004/03/15 17:15:52 er 1.13.10.2: RESYNC: (1.13-1.14); FILE MERGED 2004/02/26 17:58:19 jmarmion 1.13.10.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3da63604151b29c71b92af376651d1a8a6679871]

INTEGRATION: CWS rowlimit (1.12.178); FILE MERGED 2004/01/16 17:42:59 er 1.12.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [46a8473af2427dea79770016469ee6acfc735822]

INTEGRATION: CWS rowlimit (1.20.26); FILE MERGED 2004/05/06 16:01:14 er 1.20.26.7: #i1967# type correctness 2004/04/29 16:38:35 er 1.20.26.6: RESYNC: (1.21-1.22); FILE MERGED 2004/03/25 21:36:03 er 1.20.26.5: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/03 21:36:22 er 1.20.26.4: #i1967# type correctness 2004/02/26 17:55:19 jmarmion 1.20.26.3: #i1967# step 5 changes. 2004/02/11 13:44:55 er 1.20.26.2: RESYNC: (1.20-1.21); FILE MERGED 2004/01/16 17:42:59 er 1.20.26.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [12dd3be628e1dcb2592405684f70c8b4a0a4422a]

INTEGRATION: CWS rowlimit (1.7.26); FILE MERGED 2004/02/11 13:44:44 er 1.7.26.2: RESYNC: (1.7-1.8); FILE MERGED 2004/01/16 17:42:59 er 1.7.26.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2425006c93f8b35ec468644ac4677d57bbb1e5c3]

INTEGRATION: CWS rowlimit (1.4.16); FILE MERGED 2004/04/29 16:38:27 er 1.4.16.4: RESYNC: (1.4-1.5); FILE MERGED 2004/03/03 21:36:22 er 1.4.16.3: #i1967# type correctness 2004/02/26 17:48:28 jmarmion 1.4.16.2: #i1967# step 5 changes. 2004/01/16 17:42:58 er 1.4.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [92de47ce8ed30b5e2f33ac8fbf17787d758447da]

INTEGRATION: CWS rowlimit (1.44.70); FILE MERGED 2004/05/06 16:01:13 er 1.44.70.11: #i1967# type correctness 2004/04/29 16:38:17 er 1.44.70.10: RESYNC: (1.49-1.51); FILE MERGED 2004/03/18 17:14:29 er 1.44.70.9: #i1967# type correctness 2004/03/15 17:15:45 er 1.44.70.8: RESYNC: (1.47-1.49); FILE MERGED 2004/03/03 21:36:21 er 1.44.70.7: #i1967# type correctness 2004/02/26 17:30:36 jmarmion 1.44.70.6: #i1967# step 5 changes. 2004/02/13 11:33:26 er 1.44.70.5: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:44:31 er 1.44.70.4: RESYNC: (1.45-1.47); FILE MERGED 2004/02/04 11:28:29 er 1.44.70.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/21 14:16:32 er 1.44.70.2: RESYNC: (1.44-1.45); FILE MERGED 2004/01/16 17:42:58 er 1.44.70.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d09d5b26a876739ed1806788484a176cd0d2405b]

INTEGRATION: CWS rowlimit (1.18.202); FILE MERGED 2004/02/26 17:02:05 jmarmion 1.18.202.2: #i1967# step 5 changes 2004/01/16 17:42:57 er 1.18.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [21e7813a30eff57ce0b9ff9c883e1be73b21d3d6]

INTEGRATION: CWS rowlimit (1.21.26); FILE MERGED 2004/02/26 16:59:41 jmarmion 1.21.26.4: #i1967# step 5 changes 2004/02/11 13:44:06 er 1.21.26.3: RESYNC: (1.22-1.23); FILE MERGED 2004/01/21 14:16:17 er 1.21.26.2: RESYNC: (1.21-1.22); FILE MERGED 2004/01/16 17:42:57 er 1.21.26.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f56308c6eab7b4cdf07c42a41fb5256798ec39a7]

INTEGRATION: CWS rowlimit (1.14.56); FILE MERGED 2004/01/16 17:42:56 er 1.14.56.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [570343e8bba5029b46bd835ad29570765cd3af69]

INTEGRATION: CWS rowlimit (1.3.330); FILE MERGED 2004/03/25 21:36:03 er 1.3.330.3: #i1967# use ValidCol,ValidRow,ValidTab 2004/02/26 16:58:44 jmarmion 1.3.330.2: #i1967# step 5 changes 2004/01/16 17:42:56 er 1.3.330.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f138a81f6fa4b91399904e4895119c6577503fe4]

INTEGRATION: CWS rowlimit (1.3.324); FILE MERGED 2004/01/16 17:42:56 er 1.3.324.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f0f28efb507a9c78d020a30ca4d0287acd9649b5]

INTEGRATION: CWS rowlimit (1.4.302); FILE MERGED 2004/04/29 16:38:08 er 1.4.302.3: RESYNC: (1.4-1.5); FILE MERGED 2004/02/26 16:56:46 jmarmion 1.4.302.2: #i1967# step 5 changes 2004/01/16 17:42:55 er 1.4.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ec57a66377063c4995b54215de8fed269a5d9378]

INTEGRATION: CWS rowlimit (1.7.302); FILE MERGED 2004/05/06 16:01:13 er 1.7.302.2: #i1967# type correctness 2004/01/16 17:42:55 er 1.7.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b8e476e4f89bd25560a33d25dbca70f9ef447db6]

INTEGRATION: CWS rowlimit (1.9.304); FILE MERGED 2004/02/26 16:52:58 jmarmion 1.9.304.3: #i1967# step 5 changes 2004/02/11 13:43:54 er 1.9.304.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/16 17:42:55 er 1.9.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8a8d1fccdbcdc1aa0f948a133c74e5926ba822c4]

INTEGRATION: CWS rowlimit (1.6.12); FILE MERGED 2004/03/03 21:36:21 er 1.6.12.2: #i1967# type correctness 2004/02/26 16:49:25 jmarmion 1.6.12.1: #i1967# step 5 changes


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ec04ce71c587e1777029f685487ec306cbd5d414]

INTEGRATION: CWS rowlimit (1.10.302); FILE MERGED 2004/04/29 16:37:59 er 1.10.302.3: RESYNC: (1.10-1.11); FILE MERGED 2004/02/26 16:49:24 jmarmion 1.10.302.2: #i1967# step 5 changes 2004/01/16 17:42:55 er 1.10.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4082452108ba52d666fd7bd8ebd8b25bb5baf2d6]

INTEGRATION: CWS rowlimit (1.15.74); FILE MERGED 2004/05/06 16:01:13 er 1.15.74.5: #i1967# type correctness 2004/03/03 21:48:30 er 1.15.74.4: #i1967# type correctness 2004/03/03 21:36:20 er 1.15.74.3: #i1967# type correctness 2004/02/11 13:43:29 er 1.15.74.2: RESYNC: (1.15-1.16); FILE MERGED 2004/01/16 17:42:54 er 1.15.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [76b7c02e2fbff9bc106110fd7c22906d49beb187]

INTEGRATION: CWS rowlimit (1.25.302); FILE MERGED 2004/02/26 16:49:22 jmarmion 1.25.302.3: #i1967# step 5 changes 2004/02/11 13:43:18 er 1.25.302.2: RESYNC: (1.25-1.26); FILE MERGED 2004/01/16 17:42:54 er 1.25.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c6e83cccd12197c4ae4e266c83b96480d5c9e476]

INTEGRATION: CWS rowlimit (1.21.74); FILE MERGED 2004/04/29 16:37:51 er 1.21.74.5: RESYNC: (1.23-1.24); FILE MERGED 2004/03/03 21:36:20 er 1.21.74.4: #i1967# type correctness 2004/02/11 13:43:07 er 1.21.74.3: RESYNC: (1.22-1.23); FILE MERGED 2004/01/21 14:16:04 er 1.21.74.2: RESYNC: (1.21-1.22); FILE MERGED 2004/01/16 17:42:53 er 1.21.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b84f79600376de8cf023e2d15e1cc0bd2143f5cb]

INTEGRATION: CWS rowlimit (1.2.346); FILE MERGED 2004/03/03 21:36:20 er 1.2.346.2: #i1967# type correctness 2004/01/16 17:42:53 er 1.2.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d37a4ced650129abf1274731f295de35c236263f]

INTEGRATION: CWS rowlimit (1.16.302); FILE MERGED 2004/05/06 16:01:12 er 1.16.302.5: #i1967# type correctness 2004/04/30 14:59:37 er 1.16.302.4: #i1967# type correctness 2004/04/29 16:37:37 er 1.16.302.3: RESYNC: (1.16-1.17); FILE MERGED 2004/02/27 16:04:30 jmarmion 1.16.302.2: #i1967# step 5 changes. 2004/01/15 14:28:43 er 1.16.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f3f9adfc7e7fe31c7231b9ae4cb933b6f1f5adb7]

INTEGRATION: CWS rowlimit (1.26.304); FILE MERGED 2004/04/29 16:37:28 er 1.26.304.4: RESYNC: (1.27-1.29); FILE MERGED 2004/03/15 17:17:29 er 1.26.304.3: RESYNC: (1.26-1.27); FILE MERGED 2004/02/27 19:05:35 jmarmion 1.26.304.2: #i1967# step 5 changes. 2004/01/15 14:28:41 er 1.26.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [35a64501273b20e9f48476ba84bfbb316c53c0d9]

INTEGRATION: CWS rowlimit (1.10.26); FILE MERGED 2004/02/27 19:11:18 jmarmion 1.10.26.4: #i1967# step 5 changes. 2004/02/13 11:33:25 er 1.10.26.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:50:08 er 1.10.26.2: RESYNC: (1.10-1.11); FILE MERGED 2004/01/15 14:28:39 er 1.10.26.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [31ad67e7bbc10cc34987688c079972aa8e4815eb]

INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED 2004/01/15 14:28:37 er 1.2.338.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [843334bd1a2a490fab83d745d77e5075dfae0a12]

INTEGRATION: CWS rowlimit (1.8.178); FILE MERGED 2004/01/15 14:28:35 er 1.8.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f3aba8f3f737ff3c60a83cb22556f4990b303155]

INTEGRATION: CWS rowlimit (1.8.304); FILE MERGED 2004/04/29 16:37:10 er 1.8.304.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/15 14:28:34 er 1.8.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [76f4016339b4aea787ee2d9dd1550b0ebb7392d7]

INTEGRATION: CWS rowlimit (1.9.54); FILE MERGED 2004/03/15 17:17:05 er 1.9.54.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/15 14:28:33 er 1.9.54.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8d7ce9c80c9421fd8b02a8b60b23695ab03702ff]

INTEGRATION: CWS rowlimit (1.8.74); FILE MERGED 2004/01/15 14:28:32 er 1.8.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [eaf9aa1394f3c75c458c702945b074fd0903579a]

INTEGRATION: CWS rowlimit (1.37.34); FILE MERGED 2004/05/17 17:49:02 er 1.37.34.11: #i1967# bad pointer casts (C-style casts are boo) 2004/05/17 16:10:55 er 1.37.34.10: #i1967# not necessary to include viewfunc.hxx anymore 2004/04/29 16:37:00 er 1.37.34.9: RESYNC: (1.40-1.42); FILE MERGED 2004/03/25 22:17:08 er 1.37.34.8: #i1967# get AlphaToCol calls straight 2004/03/25 17:46:35 er 1.37.34.7: #i1967# consolidate ColToAlpha,AlphaToCol methods 2004/03/15 17:16:57 er 1.37.34.6: RESYNC: (1.39-1.40); FILE MERGED 2004/03/02 15:37:52 er 1.37.34.5: #i1967# type correctness 2004/02/27 15:57:41 jmarmion 1.37.34.4: #i1967# step 5 changes. 2004/02/11 13:49:46 er 1.37.34.3: RESYNC: (1.38-1.39); FILE MERGED 2004/01/21 14:19:34 er 1.37.34.2: RESYNC: (1.37-1.38); FILE MERGED 2004/01/15 14:28:30 er 1.37.34.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [86184fc7f6cf5cd80e7c373090909ab1c1a787e8]

INTEGRATION: CWS rowlimit (1.18.202); FILE MERGED 2004/05/06 16:01:12 er 1.18.202.6: #i1967# type correctness 2004/04/29 16:36:51 er 1.18.202.5: RESYNC: (1.19-1.21); FILE MERGED 2004/03/02 15:37:52 er 1.18.202.4: #i1967# type correctness 2004/02/27 12:42:15 jmarmion 1.18.202.3: #i1967# setp 5 changes. 2004/01/21 14:19:20 er 1.18.202.2: RESYNC: (1.18-1.19); FILE MERGED 2004/01/15 14:28:28 er 1.18.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [abb1ea1415f8cf4a738d50a0c7a9af8ad4841c6d]

INTEGRATION: CWS rowlimit (1.8.304); FILE MERGED 2004/05/06 16:01:12 er 1.8.304.5: #i1967# type correctness 2004/04/29 16:36:41 er 1.8.304.4: RESYNC: (1.8-1.9); FILE MERGED 2004/03/02 15:37:52 er 1.8.304.3: #i1967# type correctness 2004/02/27 12:12:59 jmarmion 1.8.304.2: #i1967# setp 5 changes. 2004/01/15 14:28:23 er 1.8.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [76b807b48edb1e6f3d79e4d0ad2714aba77a434f]

INTEGRATION: CWS rowlimit (1.5.302); FILE MERGED 2004/03/02 15:37:52 er 1.5.302.3: #i1967# type correctness 2004/02/27 10:31:16 jmarmion 1.5.302.2: #i1967# setp 5 changes. 2004/01/15 14:28:22 er 1.5.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [59a816068b3e4a26fe2a1fddcae1f029cdd1baaa]

INTEGRATION: CWS rowlimit (1.18.68); FILE MERGED 2004/01/15 14:28:20 er 1.18.68.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [70fda02f45d32b80364635ea4810c763a445dc66]

INTEGRATION: CWS rowlimit (1.11.56); FILE MERGED 2004/03/02 15:37:51 er 1.11.56.3: #i1967# type correctness 2004/02/27 19:17:49 jmarmion 1.11.56.2: #i1967# step 5 changes. 2004/01/15 14:28:19 er 1.11.56.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [5bd40fa0dc36867501b03ed037edec15be0f632d]

INTEGRATION: CWS rowlimit (1.2.52); FILE MERGED 2004/03/18 17:14:28 er 1.2.52.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3609142935042a6b2dc75a81e3003516763e2499]

INTEGRATION: CWS rowlimit (1.78.30); FILE MERGED 2004/05/17 17:49:02 er 1.78.30.14: #i1967# bad pointer casts (C-style casts are boo) 2004/05/06 16:01:11 er 1.78.30.13: #i1967# type correctness 2004/04/29 16:36:04 er 1.78.30.12: RESYNC: (1.82-1.83); FILE MERGED 2004/04/07 14:44:21 er 1.78.30.11: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/18 19:42:50 er 1.78.30.10: #i1967# type correctness (ScChartPositionMap using SCSIZE) 2004/03/18 17:14:27 er 1.78.30.9: #i1967# type correctness 2004/03/15 17:16:41 er 1.78.30.8: RESYNC: (1.80-1.82); FILE MERGED 2004/03/02 15:37:51 er 1.78.30.7: #i1967# type correctness 2004/02/27 16:44:51 jmarmion 1.78.30.6: #i1967# step 5 changes. 2004/02/11 13:49:37 er 1.78.30.5: RESYNC: (1.79-1.80); FILE MERGED 2004/02/04 11:28:28 er 1.78.30.4: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/15 14:28:16 er 1.78.30.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/12 12:25:25 er 1.78.30.2: RESYNC: (1.78-1.79); FILE MERGED 2003/11/28 19:48:07 er 1.78.30.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [279598d95e53578619bf0cdcd33ec49172752071]

INTEGRATION: CWS rowlimit (1.2.40); FILE MERGED 2004/03/02 15:37:51 er 1.2.40.2: #i1967# type correctness 2004/02/27 19:01:24 jmarmion 1.2.40.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [516b619e12b0c4c8721561d29b056ec770ba631d]

INTEGRATION: CWS rowlimit (1.2.324); FILE MERGED 2004/02/26 15:28:16 er 1.2.324.3: #i1967# type correctness 2004/02/04 11:28:25 er 1.2.324.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/15 12:43:21 er 1.2.324.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [547d0038be5a23992279d990a040bfc893f174a9]

INTEGRATION: CWS rowlimit (1.8.178); FILE MERGED 2004/02/26 15:28:16 er 1.8.178.4: #i1967# type correctness 2004/02/13 11:33:25 er 1.8.178.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:51:02 er 1.8.178.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/15 12:43:20 er 1.8.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [022bc8ef79bed5cf79dd002b25426fef56449725]

INTEGRATION: CWS rowlimit (1.2.328); FILE MERGED 2004/01/15 12:43:19 er 1.2.328.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [45172aaf532caea85674416f974ef739b848d06b]

INTEGRATION: CWS rowlimit (1.2.340); FILE MERGED 2004/04/29 16:35:27 er 1.2.340.5: RESYNC: (1.2-1.3); FILE MERGED 2004/03/11 12:07:49 er 1.2.340.4: #i1967# type correctness 2004/02/26 15:28:15 er 1.2.340.3: #i1967# type correctness 2004/02/04 11:28:24 er 1.2.340.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/15 12:43:17 er 1.2.340.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1f72addd762ac28467c09d65646f97fb408a9d28]

INTEGRATION: CWS rowlimit (1.4.202); FILE MERGED 2004/03/03 21:36:19 er 1.4.202.3: #i1967# type correctness 2004/02/11 13:50:52 er 1.4.202.2: RESYNC: (1.4-1.5); FILE MERGED 2004/01/15 12:43:17 er 1.4.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [79c3926d67e1b919d5fd1b51bbe811664cd82dec]

INTEGRATION: CWS rowlimit (1.4.36); FILE MERGED 2004/02/26 15:28:15 er 1.4.36.2: #i1967# type correctness 2004/01/15 12:43:15 er 1.4.36.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6a6fbdca275ebfb4cf07e2a0748a40a15513e0dc]

INTEGRATION: CWS rowlimit (1.10.302); FILE MERGED 2004/03/11 12:07:49 er 1.10.302.4: #i1967# type correctness 2004/02/26 15:28:14 er 1.10.302.3: #i1967# type correctness 2004/02/11 13:50:31 er 1.10.302.2: RESYNC: (1.10-1.11); FILE MERGED 2004/01/15 12:43:15 er 1.10.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f2d67437d0a503a51d2de5907725fa97b5221106]

INTEGRATION: CWS rowlimit (1.3.302); FILE MERGED 2004/02/26 15:28:14 er 1.3.302.2: #i1967# type correctness 2004/01/15 12:43:13 er 1.3.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1009c6b732dc94e9fee857d238f76286fa147ac4]

INTEGRATION: CWS rowlimit (1.8.16); FILE MERGED 2004/03/25 17:46:35 er 1.8.16.4: #i1967# consolidate ColToAlpha,AlphaToCol methods 2004/02/26 12:42:51 er 1.8.16.3: #i1967# type correctness 2004/01/21 14:27:29 er 1.8.16.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/14 18:02:25 er 1.8.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b57fdc0646562aeb04dcd4703090d5e584473ceb]

INTEGRATION: CWS rowlimit (1.2.302); FILE MERGED 2004/02/11 13:52:21 er 1.2.302.3: RESYNC: (1.2-1.3); FILE MERGED 2004/02/04 11:28:22 er 1.2.302.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/14 17:44:59 er 1.2.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [69b9ac691776cc67c15f60b557f4dd4568f607cb]

INTEGRATION: CWS rowlimit (1.38.24); FILE MERGED 2004/04/23 14:43:24 er 1.38.24.1: #i1967# remove hard row limit from resource, do it programmatically


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [34e96ffe2d2959fdf2feea0a76cbbb1261adc455]

INTEGRATION: CWS rowlimit (1.12.132); FILE MERGED 2004/04/23 14:43:24 er 1.12.132.4: #i1967# remove hard row limit from resource, do it programmatically 2004/03/25 17:46:34 er 1.12.132.3: #i1967# consolidate ColToAlpha,AlphaToCol methods 2004/02/26 12:24:16 er 1.12.132.2: #i1967# type correctness 2004/01/14 17:40:19 er 1.12.132.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2b0f72278872db6d47f9a6df6e81f6b73d9b7599]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/14 17:40:18 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [23f85e3ea81ce7e9e3ebf7ff7a376a3c60b8e375]

INTEGRATION: CWS rowlimit (1.14.302); FILE MERGED 2004/02/26 12:24:16 er 1.14.302.2: #i1967# type correctness 2004/01/14 17:40:18 er 1.14.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e35e91235146bdc09a94da9dcf58fbd837ecca1c]

INTEGRATION: CWS rowlimit (1.4.302); FILE MERGED 2004/01/14 17:27:30 er 1.4.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [835a79a5c6e6d300ae8167283417ed0852b76ff8]

INTEGRATION: CWS rowlimit (1.6.202); FILE MERGED 2004/02/04 11:28:21 er 1.6.202.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/14 17:23:38 er 1.6.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [5af03dba846495cce1283ba1c9e4be73fc0b8340]

INTEGRATION: CWS rowlimit (1.2.332); FILE MERGED 2004/02/26 11:46:59 er 1.2.332.2: #i1967# type correctness 2004/01/14 17:23:38 er 1.2.332.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [098f7e26004a3b12c786c2ec3024760d09d7f5ce]

INTEGRATION: CWS rowlimit (1.6.56); FILE MERGED 2004/02/26 11:46:59 er 1.6.56.2: #i1967# type correctness 2004/01/14 17:23:37 er 1.6.56.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [711619bd0c2e97c5199953cc0ac5f7a00980e19a]

INTEGRATION: CWS rowlimit (1.4.310); FILE MERGED 2004/02/26 11:46:59 er 1.4.310.2: #i1967# type correctness 2004/01/14 17:23:37 er 1.4.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [bf5ae5312eb546f773f9a7b701d39cc70406e10e]

INTEGRATION: CWS rowlimit (1.10.16); FILE MERGED 2004/02/26 11:46:58 er 1.10.16.2: #i1967# type correctness 2004/02/13 11:33:24 er 1.10.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [5bfe2efbc4aa5f5288ddffd0ee7c053a87266163]

INTEGRATION: CWS rowlimit (1.10.310); FILE MERGED 2004/01/21 14:29:45 er 1.10.310.2: RESYNC: (1.10-1.12); FILE MERGED 2004/01/14 17:23:36 er 1.10.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [96886962e64f1cc53b1a40dfeb6a3762594a863a]

INTEGRATION: CWS rowlimit (1.13.202); FILE MERGED 2004/05/17 16:29:04 er 1.13.202.6: #i1967# get rid of some 0xffff hard coded values, and don't confuse dialog columns with sheet columns 2004/05/06 16:01:11 er 1.13.202.5: #i1967# type correctness 2004/02/26 11:46:58 er 1.13.202.4: #i1967# type correctness 2004/02/04 11:28:20 er 1.13.202.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/21 14:29:12 er 1.13.202.2: RESYNC: (1.13-1.14); FILE MERGED 2004/01/14 17:23:36 er 1.13.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ec0fad6e8c6d9afa33ea0b0444f957c314cbf09e]

INTEGRATION: CWS rowlimit (1.4.336); FILE MERGED 2004/01/16 17:42:52 er 1.4.336.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:53 er 1.4.336.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:04 er 1.4.336.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7e7c6540435f29e31c8956a809071089bcf6e3d7]

INTEGRATION: CWS rowlimit (1.18.16); FILE MERGED 2004/05/17 16:08:56 er 1.18.16.4: #i1967# move TABLEID_DOC to address.hxx and assign proper value 2004/02/26 15:27:11 er 1.18.16.3: #i1967# type correctness 2004/01/16 17:42:52 er 1.18.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:52 er 1.18.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [810ca1333782ea306201e15e533ee63953a467f1]

INTEGRATION: CWS rowlimit (1.12.194); FILE MERGED 2004/02/26 19:15:20 jmarmion 1.12.194.6: #i1967# setp 5 changes. 2004/02/20 22:49:06 er 1.12.194.5: #i1967# type correctness 2004/02/16 17:26:34 er 1.12.194.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:55:37 er 1.12.194.3: RESYNC: (1.12-1.13); FILE MERGED 2004/01/16 17:42:52 er 1.12.194.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:52 er 1.12.194.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0196a0d139633f0f40553a1b4a45a821f310b302]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/02/04 11:28:19 er 1.1.1.1.346.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/16 17:42:51 er 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:51 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a65c52bb734aa39c42a9feae0c4000b1ae31cb5b]

INTEGRATION: CWS rowlimit (1.5.320); FILE MERGED 2004/02/25 01:17:33 er 1.5.320.5: #i1967# type correctness 2004/02/13 11:33:24 er 1.5.320.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:55:26 er 1.5.320.3: RESYNC: (1.5-1.6); FILE MERGED 2004/01/13 20:04:50 er 1.5.320.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:03 er 1.5.320.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [32fa4676a5c5961063694b2564c0edb25f4eb197]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/13 20:04:49 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1f4747c2bb9862aded216356d9557760173cff68]

INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED 2004/04/29 16:33:59 er 1.2.338.7: RESYNC: (1.2-1.3); FILE MERGED 2004/03/11 12:07:48 er 1.2.338.6: #i1967# type correctness 2004/02/26 15:27:11 er 1.2.338.5: #i1967# type correctness 2004/02/25 01:17:33 er 1.2.338.4: #i1967# type correctness 2004/02/20 22:49:06 er 1.2.338.3: #i1967# type correctness 2004/02/04 11:28:19 er 1.2.338.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/13 20:04:48 er 1.2.338.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [93f577d87474a9b3244dfe1cf9701a561d99ff97]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/03 21:27:25 er 1.1.1.1.346.2: #i1967# type correctness 2004/01/13 20:04:47 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [def063e27542ebd79a25a04a73db9cba1f5d0c46]

INTEGRATION: CWS rowlimit (1.2.302); FILE MERGED 2004/01/13 20:04:46 er 1.2.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:03 er 1.2.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [aace26e1b5eb8a6e169c925275c1cc8762d7d436]

INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED 2004/03/15 17:21:42 er 1.2.338.3: RESYNC: (1.2-1.3); FILE MERGED 2004/01/13 20:04:43 er 1.2.338.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:03 er 1.2.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3104a880859e86aea8dde62aa201f8ed5fb9a747]

INTEGRATION: CWS rowlimit (1.11.308); FILE MERGED 2004/02/21 00:32:46 er 1.11.308.4: #i1967# type correctness 2004/02/16 17:26:34 er 1.11.308.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:41 er 1.11.308.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:02 er 1.11.308.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [46fc7458aa35dae14eea5aa7f642e32e63cbf8ec]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/02/04 11:28:18 er 1.1.1.1.346.1: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4fd94f8db86ead5924cce427629cc740a275f3c5]

INTEGRATION: CWS rowlimit (1.3.332); FILE MERGED 2004/02/24 20:21:26 er 1.3.332.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [349b0bb213ef923ee50e27202e27ab62d505a1fa]

INTEGRATION: CWS rowlimit (1.4.332); FILE MERGED 2004/02/24 20:21:25 er 1.4.332.3: #i1967# type correctness 2004/01/13 20:04:39 er 1.4.332.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:02 er 1.4.332.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4429831144989cc2f0a0de504586a856ec473d4b]

INTEGRATION: CWS rowlimit (1.13.202); FILE MERGED 2004/04/29 16:33:29 er 1.13.202.2: RESYNC: (1.13-1.14); FILE MERGED 2004/01/13 20:04:38 er 1.13.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e4cb0c8ea9576aab7a6a683a6bcc1759b802596b]

INTEGRATION: CWS rowlimit (1.11.62); FILE MERGED 2004/02/11 13:55:07 er 1.11.62.2: RESYNC: (1.11-1.12); FILE MERGED 2004/01/13 20:04:37 er 1.11.62.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f105fbc8e386ef2df80373d1d35af93dc271d6ef]

INTEGRATION: CWS rowlimit (1.3.310); FILE MERGED 2004/02/04 11:28:18 er 1.3.310.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/13 20:04:37 er 1.3.310.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:02 er 1.3.310.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3dd9ab5cde14d79de4297c2eeebb83e808465bc5]

INTEGRATION: CWS rowlimit (1.3.334); FILE MERGED 2004/02/11 13:54:58 er 1.3.334.2: RESYNC: (1.3-1.4); FILE MERGED 2004/01/16 17:42:51 er 1.3.334.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b162d12838447ebda98bed9b92fc72a9a8689906]

INTEGRATION: CWS rowlimit (1.3.310); FILE MERGED 2004/01/13 20:04:35 er 1.3.310.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:01 er 1.3.310.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [bf131e1456c6ee48ef1348bdf90eb2b3eb6e8c72]

INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED 2004/04/07 14:44:20 er 1.2.338.2: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2003/11/28 19:48:01 er 1.2.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d121c908b042ab5b29d7580b2d8c507e88a2f0de]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/02/26 19:15:54 jmarmion 1.1.1.1.346.3: #i1967# setp 5 changes. 2004/02/04 11:28:17 er 1.1.1.1.346.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/13 20:04:35 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [12619aaaa0df931430f4a9f9d296f9e1a0c7fed4]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/21 14:32:23 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2003/11/28 19:48:01 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1e3ed33710c8862662155d4f5ef5a02138feca87]

INTEGRATION: CWS rowlimit (1.5.202); FILE MERGED 2004/04/29 16:33:09 er 1.5.202.3: RESYNC: (1.5-1.6); FILE MERGED 2004/02/24 20:21:25 er 1.5.202.2: #i1967# type correctness 2004/01/13 20:04:34 er 1.5.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [02c15ec1e7f27639b7251a04890c2fdf67ca8f0b]

INTEGRATION: CWS rowlimit (1.9.28); FILE MERGED 2004/04/29 16:33:00 er 1.9.28.3: RESYNC: (1.9-1.10); FILE MERGED 2004/01/16 17:42:51 er 1.9.28.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:33 er 1.9.28.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3098c5c8736257b478c2e8c84c6eab0c99e3ee16]

INTEGRATION: CWS rowlimit (1.5.202); FILE MERGED 2004/01/13 20:04:33 er 1.5.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4b782a652ce07a1e6d99ad5957f36ee87597dd63]

INTEGRATION: CWS rowlimit (1.8.312); FILE MERGED 2004/03/03 21:36:18 er 1.8.312.5: #i1967# type correctness 2004/02/26 19:16:36 jmarmion 1.8.312.4: #i1967# setp 5 changes. 2004/02/16 17:26:34 er 1.8.312.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:30 er 1.8.312.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:00 er 1.8.312.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ec362dca7462c684b1281889e4511aea849c9b22]

INTEGRATION: CWS rowlimit (1.6.178); FILE MERGED 2004/02/20 22:49:05 er 1.6.178.2: #i1967# type correctness 2004/01/13 20:04:29 er 1.6.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8d6d4a9f386d26c87a8ef495cb59b59d631db39a]

INTEGRATION: CWS rowlimit (1.1.308); FILE MERGED 2004/02/20 22:49:05 er 1.1.308.2: #i1967# type correctness 2004/01/13 20:04:26 er 1.1.308.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a7dd8250a1d373730d3f19eb26a679442ffa29cd]

INTEGRATION: CWS rowlimit (1.2.332); FILE MERGED 2004/02/24 20:21:25 er 1.2.332.4: #i1967# type correctness 2004/02/20 22:49:05 er 1.2.332.3: #i1967# type correctness 2004/01/13 20:04:24 er 1.2.332.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:00 er 1.2.332.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a0ac993459d821f7d85f47c77060c736bce834ae]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/16 17:42:50 er 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:00 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [725ec1a0441508bf275d05999bf9fcb450cfdced]

INTEGRATION: CWS rowlimit (1.8.26); FILE MERGED 2004/03/02 15:37:11 er 1.8.26.7: #i1967# type correctness 2004/02/27 17:34:25 er 1.8.26.6: #i1967# type correctness 2004/02/11 13:54:33 er 1.8.26.5: RESYNC: (1.9-1.10); FILE MERGED 2004/02/04 11:28:17 er 1.8.26.4: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/21 14:32:11 er 1.8.26.3: RESYNC: (1.8-1.9); FILE MERGED 2004/01/16 17:42:50 er 1.8.26.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:22 er 1.8.26.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a0080ad1e0a19e0dacb8debee49be33095a7b6db]

INTEGRATION: CWS rowlimit (1.5.180); FILE MERGED 2004/02/11 13:54:21 er 1.5.180.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/16 17:42:50 er 1.5.180.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [24511a5fcca909e109c6242f583ca3b2f13c687c]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/13 20:04:20 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [20714470764b1f96aea12257eeed54434770090b]

INTEGRATION: CWS rowlimit (1.2.310); FILE MERGED 2003/11/28 19:48:00 er 1.2.310.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [baa4406cdf6c701fd53c986d0f31ab581712e238]

INTEGRATION: CWS rowlimit (1.8.310); FILE MERGED 2004/02/26 12:23:51 er 1.8.310.2: #i1967# type correctness 2004/01/13 20:04:19 er 1.8.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a47d68b8694bffbf95179b02aac6f83561884f25]

INTEGRATION: CWS rowlimit (1.4.324); FILE MERGED 2003/11/28 19:47:59 er 1.4.324.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3f2f4c5fa454b8522fe99b1ff5265e605eb1fe99]

INTEGRATION: CWS rowlimit (1.2.332); FILE MERGED 2004/01/13 20:04:18 er 1.2.332.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [98581adcdcf1cff76637d17444dd6892cd37f036]

INTEGRATION: CWS rowlimit (1.2.334); FILE MERGED 2004/02/26 11:46:44 er 1.2.334.3: #i1967# type correctness 2004/01/13 20:04:18 er 1.2.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:59 er 1.2.334.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4bce2719ab07f7cf706af52026da1baadfcd4ad2]

INTEGRATION: CWS rowlimit (1.11.16); FILE MERGED 2003/11/28 19:47:59 er 1.11.16.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7ab963d25be7d71123d60c7c186fa488bcaf5e3b]

INTEGRATION: CWS rowlimit (1.7.322); FILE MERGED 2003/11/28 19:47:58 er 1.7.322.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [92e87cbee9435827447ddd10862a249f7e8bf47e]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/21 14:31:57 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2003/11/28 19:47:58 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2a9446b0229c6424bc031c2dbb395f21e6ac04b3]

INTEGRATION: CWS rowlimit (1.2.12); FILE MERGED 2004/02/26 19:18:37 jmarmion 1.2.12.1: #i1967# setp 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9f6563c7032c87fa8e7bdb9ce66a96ccbaa2e729]

INTEGRATION: CWS rowlimit (1.12.74); FILE MERGED 2004/05/06 16:01:10 er 1.12.74.7: #i1967# type correctness 2004/04/29 16:32:51 er 1.12.74.6: RESYNC: (1.12-1.14); FILE MERGED 2004/03/03 21:36:18 er 1.12.74.5: #i1967# type correctness 2004/02/27 17:34:25 er 1.12.74.4: #i1967# type correctness 2004/02/26 19:17:40 jmarmion 1.12.74.3: #i1967# setp 5 changes. 2004/01/16 17:42:49 er 1.12.74.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:17 er 1.12.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a743d975cf60bd93996c393b4b08a6b74f1bbf0f]

INTEGRATION: CWS rowlimit (1.3.324); FILE MERGED 2004/02/24 20:21:24 er 1.3.324.4: #i1967# type correctness 2004/02/20 22:49:05 er 1.3.324.3: #i1967# type correctness 2004/01/13 20:04:17 er 1.3.324.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:58 er 1.3.324.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [76dd7e5e330418d1b67f966a7f7cea57728ace3b]

INTEGRATION: CWS rowlimit (1.9.178); FILE MERGED 2004/04/29 16:32:43 er 1.9.178.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/13 20:04:16 er 1.9.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8658ef0ab1ab900ddbe1523e44dd8076e62bf1b9]

INTEGRATION: CWS rowlimit (1.1.302); FILE MERGED 2004/01/13 20:04:15 er 1.1.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ddf06faaaaf94364b51efda6058356a78c297c20]

INTEGRATION: CWS rowlimit (1.9.322); FILE MERGED 2004/01/13 20:04:15 er 1.9.322.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [662cb3944aa978bd67430a10681efeec2371b044]

INTEGRATION: CWS rowlimit (1.3.28); FILE MERGED 2004/01/13 20:04:13 er 1.3.28.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9b8b10b371ddfe2339408baadad7f3c702e67c8a]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/13 20:04:12 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f8fcef749b2d2f6c22182caf85146fc8d8bfb4ca]

INTEGRATION: CWS rowlimit (1.25.56); FILE MERGED 2004/04/29 16:32:21 er 1.25.56.7: RESYNC: (1.26-1.27); FILE MERGED 2004/02/25 01:17:32 er 1.25.56.6: #i1967# type correctness 2004/02/20 22:49:05 er 1.25.56.5: #i1967# type correctness 2004/02/13 11:33:23 er 1.25.56.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:53:20 er 1.25.56.3: RESYNC: (1.25-1.26); FILE MERGED 2004/01/16 17:42:49 er 1.25.56.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:11 er 1.25.56.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [de36cd59057d42b90cde9f62984cf1d2a6d9556a]

INTEGRATION: CWS rowlimit (1.7.202); FILE MERGED 2004/02/20 22:49:04 er 1.7.202.5: #i1967# type correctness 2004/02/13 11:33:23 er 1.7.202.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:53:48 er 1.7.202.3: RESYNC: (1.7-1.8); FILE MERGED 2004/01/16 17:42:49 er 1.7.202.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 20:04:11 er 1.7.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ce0eac5a5cb8522d005ce52df6eadd266947759b]

INTEGRATION: CWS rowlimit (1.4.306); FILE MERGED 2004/04/29 16:32:30 er 1.4.306.3: RESYNC: (1.5-1.6); FILE MERGED 2004/02/11 13:53:39 er 1.4.306.2: RESYNC: (1.4-1.5); FILE MERGED 2004/01/13 20:04:10 er 1.4.306.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3e1b9a9580f5940ea958413fbcaa346c85505c02]

INTEGRATION: CWS rowlimit (1.10.178); FILE MERGED 2004/02/24 20:21:24 er 1.10.178.2: #i1967# type correctness 2003/11/28 19:47:57 er 1.10.178.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0df1c5d656b3f9bfda343f24cc0d7640ee873bb3]

INTEGRATION: CWS rowlimit (1.8.302); FILE MERGED 2003/11/28 19:47:57 er 1.8.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d4687dc82e588ba9faafd4edc8a81939f97c9196]

INTEGRATION: CWS rowlimit (1.2.12); FILE MERGED 2004/02/26 19:13:39 jmarmion 1.2.12.1: #i1967# setp 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9ee50f17422134ce05bc0d9bf21554facc04ff36]

INTEGRATION: CWS rowlimit (1.3.322); FILE MERGED 2003/11/28 19:47:57 er 1.3.322.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9fa8896be7c14cdf6490e33349e6a38c1e26e550]

INTEGRATION: CWS rowlimit (1.2.332); FILE MERGED 2004/01/13 20:04:08 er 1.2.332.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6d34d3c19a456ea90edf85b5436df8f6e945d020]

INTEGRATION: CWS rowlimit (1.1.344); FILE MERGED 2003/11/28 19:47:56 er 1.1.344.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8eb09ffbb61bf42b960c83d6a5eb3ea9060699fd]

INTEGRATION: CWS rowlimit (1.4.308); FILE MERGED 2004/01/13 20:04:07 er 1.4.308.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [47ea31ae35b95d054029504ae112fbf28b9a2af5]

INTEGRATION: CWS rowlimit (1.19.160); FILE MERGED 2003/11/28 19:47:56 er 1.19.160.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [20db432c5aed728d370fd69411c5e3f24569e385]

INTEGRATION: CWS rowlimit (1.24.160); FILE MERGED 2004/01/16 17:42:48 er 1.24.160.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4248b8024e963846a82074adaf27f3c32d0280c1]

INTEGRATION: CWS rowlimit (1.9.178); FILE MERGED 2003/11/28 19:47:56 er 1.9.178.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ca9ed757a1329d75cd2b5826ae80512a6ab47c5d]

INTEGRATION: CWS rowlimit (1.23.160); FILE MERGED 2004/01/16 17:42:48 er 1.23.160.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a8250b9f366600336b340a004296c8bc69c83d49]

INTEGRATION: CWS rowlimit (1.7.302); FILE MERGED 2004/03/15 17:22:00 er 1.7.302.4: RESYNC: (1.9-1.10); FILE MERGED 2004/02/25 18:26:18 er 1.7.302.3: #i1967# correct swapped values error on the fly 2004/01/21 14:33:32 er 1.7.302.2: RESYNC: (1.7-1.9); FILE MERGED 2004/01/14 16:47:08 er 1.7.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3fc5e5ba174c558bc2c1b9fa23b0dfd0bd2deb08]

INTEGRATION: CWS rowlimit (1.3.338); FILE MERGED 2004/02/25 15:35:25 er 1.3.338.2: #i1967# type correctness 2004/01/23 18:15:04 er 1.3.338.1: #i1967# restructure ScAddress to use SCCOL/SCROW/SCTAB instead of one single UINT32; make converting ctors explicit


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c80e344efbd73e3587df94fc9b928d20373a88e8]

INTEGRATION: CWS rowlimit (1.4.340); FILE MERGED 2004/01/14 16:32:27 er 1.4.340.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a3a757258a9ea233a732004eb946726b497a5dd4]

INTEGRATION: CWS rowlimit (1.5.308); FILE MERGED 2004/02/11 13:57:19 er 1.5.308.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/14 16:32:26 er 1.5.308.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8a69e299c0eeddcb4a9a31f05d26d569136a65fc]

INTEGRATION: CWS rowlimit (1.10.16); FILE MERGED 2004/05/06 16:01:10 er 1.10.16.5: #i1967# type correctness 2004/03/15 17:22:37 er 1.10.16.4: RESYNC: (1.11-1.12); FILE MERGED 2004/02/25 15:35:25 er 1.10.16.3: #i1967# type correctness 2004/02/11 13:57:10 er 1.10.16.2: RESYNC: (1.10-1.11); FILE MERGED 2004/01/14 16:32:26 er 1.10.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [aafb8e393ec045b625751a6c011b277a2611acca]

INTEGRATION: CWS rowlimit (1.9.302); FILE MERGED 2004/04/29 16:32:12 er 1.9.302.3: RESYNC: (1.10-1.11); FILE MERGED 2004/02/11 13:56:11 er 1.9.302.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/14 16:32:25 er 1.9.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [10b1e4efcf8bd05ec749e450138eaa25bbeb0e6a]

INTEGRATION: CWS rowlimit (1.15.56); FILE MERGED 2004/03/15 17:23:15 er 1.15.56.3: RESYNC: (1.16-1.17); FILE MERGED 2004/02/11 13:58:55 er 1.15.56.2: RESYNC: (1.15-1.16); FILE MERGED 2004/01/14 15:50:20 er 1.15.56.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [16e6c03016bb123a611470bec145366812b2b2c2]

INTEGRATION: CWS rowlimit (1.4.322); FILE MERGED 2004/04/07 14:44:20 er 1.4.322.2: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/01/14 15:50:20 er 1.4.322.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d093ab5237982ff49247532282ab216cc0070993]

INTEGRATION: CWS rowlimit (1.3.202); FILE MERGED 2004/02/25 01:17:54 er 1.3.202.2: #i1967# type correctness 2004/01/16 17:42:47 er 1.3.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b8d6e8467fa39dc09e908051023262f950113024]

INTEGRATION: CWS rowlimit (1.3.338); FILE MERGED 2004/02/25 01:17:54 er 1.3.338.2: #i1967# type correctness 2004/01/14 15:50:18 er 1.3.338.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [20400f000a94fc9da17ee140b8e3725478f4238d]

INTEGRATION: CWS rowlimit (1.25.150); FILE MERGED 2004/03/25 21:36:02 er 1.25.150.5: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/18 17:14:26 er 1.25.150.4: #i1967# type correctness 2004/03/15 17:23:08 er 1.25.150.3: RESYNC: (1.25-1.26); FILE MERGED 2004/02/25 01:17:54 er 1.25.150.2: #i1967# type correctness 2004/01/14 15:50:16 er 1.25.150.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f8e102332cd382b6e6777776cbb3a1dcbbdbc237]

INTEGRATION: CWS rowlimit (1.1.302); FILE MERGED 2004/01/14 15:50:15 er 1.1.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [84e94d014b7cc712818bad895b6fed63687cea6c]

INTEGRATION: CWS rowlimit (1.16.16); FILE MERGED 2004/03/11 12:07:48 er 1.16.16.3: #i1967# type correctness 2004/02/25 01:17:54 er 1.16.16.2: #i1967# type correctness 2004/01/14 15:50:14 er 1.16.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a11b6ee95c6cf2ff98fb190c39fa7eacb4f56370]

INTEGRATION: CWS rowlimit (1.10.180); FILE MERGED 2004/04/29 16:31:51 er 1.10.180.4: RESYNC: (1.10-1.11); FILE MERGED 2004/02/25 01:17:53 er 1.10.180.3: #i1967# type correctness 2004/02/04 11:28:16 er 1.10.180.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/14 15:50:13 er 1.10.180.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f854fe887e8098ff1023f6568e0511f4bb45b023]

INTEGRATION: CWS rowlimit (1.10.178); FILE MERGED 2004/04/29 16:31:42 er 1.10.178.6: RESYNC: (1.10-1.11); FILE MERGED 2004/03/25 21:36:02 er 1.10.178.5: #i1967# use ValidCol,ValidRow,ValidTab 2004/02/27 11:01:40 er 1.10.178.4: #i1967# type correctness 2004/02/25 01:17:53 er 1.10.178.3: #i1967# type correctness 2004/02/13 11:33:23 er 1.10.178.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/14 15:50:12 er 1.10.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [981ddfa0be14aee4fd28e577aa3fea57cd732b1b]

INTEGRATION: CWS rowlimit (1.27.12); FILE MERGED 2004/05/06 16:01:09 er 1.27.12.9: #i1967# type correctness 2004/04/29 16:31:34 er 1.27.12.8: RESYNC: (1.31-1.34); FILE MERGED 2004/03/25 21:36:02 er 1.27.12.7: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/15 17:23:00 er 1.27.12.6: RESYNC: (1.30-1.31); FILE MERGED 2004/03/03 13:12:40 er 1.27.12.5: #i1967# type correctness 2004/02/25 01:17:53 er 1.27.12.4: #i1967# type correctness 2004/02/11 13:58:46 er 1.27.12.3: RESYNC: (1.28-1.30); FILE MERGED 2004/01/21 14:34:42 er 1.27.12.2: RESYNC: (1.27-1.28); FILE MERGED 2004/01/14 15:50:10 er 1.27.12.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c50740d230ba1add22cfa1324b3274a45d4ccd83]

INTEGRATION: CWS rowlimit (1.16.202); FILE MERGED 2004/03/25 21:36:02 er 1.16.202.4: #i1967# use ValidCol,ValidRow,ValidTab 2004/02/13 11:33:22 er 1.16.202.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:58:37 er 1.16.202.2: RESYNC: (1.16-1.18); FILE MERGED 2004/01/14 15:50:09 er 1.16.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [48f25a54081471e8344898df00b22fa204faf26e]

INTEGRATION: CWS rowlimit (1.13.324); FILE MERGED 2004/02/25 01:17:52 er 1.13.324.3: #i1967# type correctness 2004/02/11 13:58:28 er 1.13.324.2: RESYNC: (1.13-1.14); FILE MERGED 2004/01/14 15:50:08 er 1.13.324.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c9b05faf130fb64c1510cf7eca62fc9a207b782b]

INTEGRATION: CWS rowlimit (1.63.54); FILE MERGED 2004/03/15 17:22:45 er 1.63.54.4: RESYNC: (1.65-1.66); FILE MERGED 2004/02/25 01:17:52 er 1.63.54.3: #i1967# type correctness 2004/02/11 13:57:52 er 1.63.54.2: RESYNC: (1.63-1.65); FILE MERGED 2004/01/14 15:50:06 er 1.63.54.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [39a6ff575e3dd702335941817e4119a876903a75]

INTEGRATION: CWS rowlimit (1.45.24); FILE MERGED 2004/03/25 21:36:01 er 1.45.24.8: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/15 17:22:53 er 1.45.24.7: RESYNC: (1.46-1.48); FILE MERGED 2004/03/11 12:07:47 er 1.45.24.6: #i1967# type correctness 2004/02/25 01:17:51 er 1.45.24.5: #i1967# type correctness 2004/02/11 13:58:19 er 1.45.24.4: RESYNC: (1.45-1.46); FILE MERGED 2004/01/23 18:15:03 er 1.45.24.3: #i1967# restructure ScAddress to use SCCOL/SCROW/SCTAB instead of one single UINT32; make converting ctors explicit 2004/01/16 17:42:47 er 1.45.24.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/14 15:50:04 er 1.45.24.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [045719accc035dfa215826655a541f7a4f264538]

INTEGRATION: CWS rowlimit (1.13.202); FILE MERGED 2004/04/29 16:31:21 er 1.13.202.6: RESYNC: (1.14-1.15); FILE MERGED 2004/03/25 21:36:01 er 1.13.202.5: #i1967# use ValidCol,ValidRow,ValidTab 2004/02/25 01:17:51 er 1.13.202.4: #i1967# type correctness 2004/02/13 11:33:22 er 1.13.202.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:58:10 er 1.13.202.2: RESYNC: (1.13-1.14); FILE MERGED 2004/01/14 15:50:02 er 1.13.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8ca5d1def44463b1038456c9f28aa60cb3a6391d]

INTEGRATION: CWS rowlimit (1.9.302); FILE MERGED 2004/04/29 16:31:12 er 1.9.302.4: RESYNC: (1.9-1.10); FILE MERGED 2004/03/11 12:07:46 er 1.9.302.3: #i1967# type correctness 2004/02/25 01:17:51 er 1.9.302.2: #i1967# type correctness 2004/01/14 15:50:00 er 1.9.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c7233f0c27cde49da334a097d0138c2be1dad00e]

INTEGRATION: CWS rowlimit (1.15.302); FILE MERGED 2004/02/25 01:17:51 er 1.15.302.4: #i1967# type correctness 2004/02/13 11:33:22 er 1.15.302.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 13:58:01 er 1.15.302.2: RESYNC: (1.15-1.16); FILE MERGED 2004/01/14 15:49:57 er 1.15.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [bcae7f6f8642966ead185cefcdb3ff96f622444e]

INTEGRATION: CWS rowlimit (1.4.302); FILE MERGED 2004/02/24 20:21:39 er 1.4.302.3: #i1967# type correctness 2004/01/21 14:38:48 er 1.4.302.2: RESYNC: (1.4-1.5); FILE MERGED 2004/01/14 14:15:17 er 1.4.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [01f36f0036fb0c37a9cfabd25e9d7d9521c2a47e]

INTEGRATION: CWS rowlimit (1.6.202); FILE MERGED 2004/02/24 20:21:39 er 1.6.202.2: #i1967# type correctness 2004/01/14 14:15:15 er 1.6.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6e14b7236f88593dce7f60953d353443b88bc1db]

INTEGRATION: CWS rowlimit (1.5.310); FILE MERGED 2004/02/24 20:21:38 er 1.5.310.4: #i1967# type correctness 2004/02/11 13:59:14 er 1.5.310.3: RESYNC: (1.6-1.7); FILE MERGED 2004/01/21 14:38:33 er 1.5.310.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/14 14:15:13 er 1.5.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a6b810c46dbe85dd56140278f8b941ea8063b084]

INTEGRATION: CWS rowlimit (1.13.202); FILE MERGED 2004/04/30 15:42:28 er 1.13.202.5: #i1967# type correctness 2004/04/29 16:30:16 er 1.13.202.4: RESYNC: (1.13-1.14); FILE MERGED 2004/03/02 18:04:37 er 1.13.202.3: #i1967# type correctness 2004/02/24 20:21:38 er 1.13.202.2: #i1967# type correctness 2004/01/14 14:15:10 er 1.13.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [eb210930338a7929895ce84f585c39b50349f4b8]

INTEGRATION: CWS rowlimit (1.3.304); FILE MERGED 2004/05/06 16:01:09 er 1.3.304.5: #i1967# type correctness 2004/02/27 11:01:18 er 1.3.304.4: #i1967# type correctness 2004/02/24 20:21:38 er 1.3.304.3: #i1967# type correctness 2004/02/04 11:28:15 er 1.3.304.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/14 14:15:06 er 1.3.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d4d10c507033124318b56036db596eee0c7123ef]

INTEGRATION: CWS rowlimit (1.7.16); FILE MERGED 2004/05/06 16:01:09 er 1.7.16.6: #i1967# type correctness 2004/02/27 11:01:18 er 1.7.16.5: #i1967# type correctness 2004/02/24 20:21:38 er 1.7.16.4: #i1967# type correctness 2004/02/04 11:28:15 er 1.7.16.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/21 14:37:26 er 1.7.16.2: RESYNC: (1.7-1.8); FILE MERGED 2004/01/14 14:15:05 er 1.7.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c2f05b9d71806bd46c5364e8ebe89b16d967451b]

INTEGRATION: CWS rowlimit (1.11.178); FILE MERGED 2004/05/06 16:01:08 er 1.11.178.5: #i1967# type correctness 2004/04/29 16:29:55 er 1.11.178.4: RESYNC: (1.12-1.13); FILE MERGED 2004/02/24 20:21:37 er 1.11.178.3: #i1967# type correctness 2004/01/21 14:37:10 er 1.11.178.2: RESYNC: (1.11-1.12); FILE MERGED 2004/01/14 14:15:02 er 1.11.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0a76b20e7e98e859f9fe94d89eb393ec179ca64e]

INTEGRATION: CWS rowlimit (1.18.16); FILE MERGED 2004/05/06 16:01:08 er 1.18.16.3: #i1967# type correctness 2004/03/11 17:47:40 er 1.18.16.2: #i1967# type correctness 2004/02/24 20:21:37 er 1.18.16.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d5b898c390563bdaf25c66e4c72907133540b8ee]

INTEGRATION: CWS rowlimit (1.7.302); FILE MERGED 2004/02/04 11:28:14 er 1.7.302.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/14 14:14:59 er 1.7.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e886f3831bf48bb1190a8a6c4797775bb69cb2e4]

INTEGRATION: CWS rowlimit (1.30.24); FILE MERGED 2004/04/23 16:42:10 er 1.30.24.1: #i1967# remove unnecessary limit of start line


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [533985e849097a4410fe03ab41ec1b3e75d05a5e]

INTEGRATION: CWS rowlimit (1.2.202); FILE MERGED 2004/03/15 17:23:31 er 1.2.202.2: RESYNC: (1.2-1.3); FILE MERGED 2004/01/14 13:34:10 er 1.2.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [bf71e5fc563ac17f6654253ceeb5e58b0e8a0591]

INTEGRATION: CWS rowlimit (1.20.178); FILE MERGED 2004/02/20 23:43:57 er 1.20.178.3: #i1967# type correctness 2004/02/04 11:28:13 er 1.20.178.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/14 13:34:09 er 1.20.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [794cbd4d271a1685f5c9d9f1b0e7f4a2f8536500]

INTEGRATION: CWS rowlimit (1.36.54); FILE MERGED 2004/02/20 23:43:57 er 1.36.54.3: #i1967# type correctness 2004/02/11 14:00:15 er 1.36.54.2: RESYNC: (1.36-1.37); FILE MERGED 2004/01/14 13:34:07 er 1.36.54.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [cefb661d28114b0f49cc08c14002b1cb319c9fb5]

INTEGRATION: CWS rowlimit (1.34.14); FILE MERGED 2004/03/15 17:23:23 er 1.34.14.4: RESYNC: (1.36-1.37); FILE MERGED 2004/02/11 14:00:06 er 1.34.14.3: RESYNC: (1.35-1.36); FILE MERGED 2004/01/21 14:39:37 er 1.34.14.2: RESYNC: (1.34-1.35); FILE MERGED 2004/01/14 13:34:05 er 1.34.14.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [08f6aa9c356cd4687775c6e797957f1bf6811323]

INTEGRATION: CWS rowlimit (1.51.12); FILE MERGED 2004/04/29 16:29:20 er 1.51.12.2: RESYNC: (1.51-1.52); FILE MERGED 2004/03/25 21:36:00 er 1.51.12.1: #i1967# use ValidCol,ValidRow,ValidTab


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [62f6312fe8794c6aff794322029f5d61fae98b90]

INTEGRATION: CWS rowlimit (1.18.28); FILE MERGED 2004/02/20 23:43:56 er 1.18.28.2: #i1967# type correctness 2004/01/14 13:34:05 er 1.18.28.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c4b66e3ded1d3f17c4661e8ed8e03b9017f89f06]

INTEGRATION: CWS rowlimit (1.8.302); FILE MERGED 2004/02/20 23:43:56 er 1.8.302.3: #i1967# type correctness 2004/02/11 13:59:46 er 1.8.302.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/14 13:34:03 er 1.8.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4fd875fd9bf18bfdd6246e36db7bfeaafe287dfd]

INTEGRATION: CWS rowlimit (1.28.202); FILE MERGED 2004/01/21 14:40:08 er 1.28.202.2: RESYNC: (1.28-1.29); FILE MERGED 2004/01/14 12:34:57 er 1.28.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e9eae6e03f23c40797470941bfd27c2cf732e0f4]

INTEGRATION: CWS rowlimit (1.27.160); FILE MERGED 2004/02/20 23:13:13 er 1.27.160.3: #i1967# type correctness 2004/02/16 17:25:42 er 1.27.160.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/14 12:34:57 er 1.27.160.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [90a300a0520892df9ac6fdca211175d604e426ac]

INTEGRATION: CWS rowlimit (1.42.156); FILE MERGED 2004/02/20 23:13:13 er 1.42.156.3: #i1967# type correctness 2004/02/16 17:25:42 er 1.42.156.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/14 12:34:56 er 1.42.156.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [46dd4a9c82a2f1bbdd963221089170d3cff2f7b8]

INTEGRATION: CWS rowlimit (1.21.178); FILE MERGED 2004/02/20 23:13:13 er 1.21.178.3: #i1967# type correctness 2004/02/16 17:25:42 er 1.21.178.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/14 12:34:55 er 1.21.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [01990eb3b6f6d69bb01067992d03811578c5fd89]

INTEGRATION: CWS rowlimit (1.28.126); FILE MERGED 2004/02/20 23:13:13 er 1.28.126.2: #i1967# type correctness 2004/01/14 12:34:54 er 1.28.126.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b206d8dd5cea846684c8c71b5ba8f232ad579683]

INTEGRATION: CWS rowlimit (1.63.126); FILE MERGED 2004/02/20 23:13:13 er 1.63.126.2: #i1967# type correctness 2004/01/14 12:34:53 er 1.63.126.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [48215fcebee7965b7239e80ee5a64e06d3bfc0e0]

INTEGRATION: CWS rowlimit (1.24.178); FILE MERGED 2004/04/29 16:28:41 er 1.24.178.3: RESYNC: (1.24-1.25); FILE MERGED 2004/02/20 23:13:12 er 1.24.178.2: #i1967# type correctness 2004/02/04 11:28:12 er 1.24.178.1: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6afd2155c6bb977d501a556405c65f24617894a3]

INTEGRATION: CWS rowlimit (1.30.16); FILE MERGED 2004/03/04 18:16:30 er 1.30.16.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3d55d83b6b5602131d2b467d040b46fb8ebad272]

INTEGRATION: CWS rowlimit (1.24.22); FILE MERGED 2004/02/13 17:17:11 er 1.24.22.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a0dcbfbd866834d255440c5051e9bcc1445a9fa0]

INTEGRATION: CWS rowlimit (1.35.16); FILE MERGED 2004/03/04 18:16:29 er 1.35.16.4: #i1967# type correctness 2004/02/13 17:17:10 er 1.35.16.3: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32 2004/02/11 14:01:25 er 1.35.16.2: RESYNC: (1.35-1.36); FILE MERGED 2004/01/19 19:19:23 jmarmion 1.35.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c72de5f80bfb29409e62def3fd60f4efe14c6d36]

INTEGRATION: CWS rowlimit (1.7.324); FILE MERGED 2004/04/29 16:27:56 er 1.7.324.2: RESYNC: (1.7-1.8); FILE MERGED 2004/01/19 19:17:47 jmarmion 1.7.324.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c59570eb0e7ecf705cb81013ff8d750bc087426e]

INTEGRATION: CWS rowlimit (1.21.308); FILE MERGED 2004/03/04 18:16:29 er 1.21.308.2: #i1967# type correctness 2004/02/13 17:17:10 er 1.21.308.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [46cd11a6ae663594f6d74ab0d94d4bc97183ee08]

INTEGRATION: CWS rowlimit (1.90.16); FILE MERGED 2004/04/29 16:27:35 er 1.90.16.2: RESYNC: (1.90-1.92); FILE MERGED 2004/01/19 19:20:22 jmarmion 1.90.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7afa14bf0628ec668bec5a2d637a723bd545faef]

INTEGRATION: CWS rowlimit (1.10.304); FILE MERGED 2004/03/02 13:22:14 jmarmion 1.10.304.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [205382b3e46e591373ebc31cf70ce47c850c0388]

INTEGRATION: CWS rowlimit (1.73.202); FILE MERGED 2004/02/13 17:17:10 er 1.73.202.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [eb945fca7075febab27346beec33da38a4d871c9]

INTEGRATION: CWS rowlimit (1.171.16); FILE MERGED 2004/04/29 16:27:27 er 1.171.16.7: RESYNC: (1.172-1.174); FILE MERGED 2004/03/11 12:07:46 er 1.171.16.6: #i1967# type correctness 2004/03/04 18:16:29 er 1.171.16.5: #i1967# type correctness 2004/03/02 13:21:30 jmarmion 1.171.16.4: #i1967# step 5 changes. 2004/02/13 17:17:09 er 1.171.16.3: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32 2004/02/11 14:00:50 er 1.171.16.2: RESYNC: (1.171-1.172); FILE MERGED 2004/01/19 19:22:07 jmarmion 1.171.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4d5a72922a4d98b9a60f00c2d27ada96f1edebaf]

INTEGRATION: CWS rowlimit (1.20.202); FILE MERGED 2004/04/29 16:27:17 er 1.20.202.3: RESYNC: (1.20-1.21); FILE MERGED 2004/03/02 13:19:28 jmarmion 1.20.202.2: #i1967# step 5 changes. 2004/02/13 17:17:09 er 1.20.202.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [5b2597724efcb924a5a2d52248e5862e6a50f4c4]

INTEGRATION: CWS rowlimit (1.15.324); FILE MERGED 2004/03/04 18:16:29 er 1.15.324.2: #i1967# type correctness 2004/02/13 17:17:08 er 1.15.324.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d2e6725201bca2aeeedb344c876045fd9ab03e75]

INTEGRATION: CWS rowlimit (1.75.74); FILE MERGED 2004/03/04 18:16:28 er 1.75.74.2: #i1967# type correctness 2004/01/19 19:16:53 jmarmion 1.75.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f14ad1750d56a124bcc9a32d0de1fab9d26a9d69]

INTEGRATION: CWS rowlimit (1.18.324); FILE MERGED 2004/03/15 17:24:25 er 1.18.324.2: RESYNC: (1.18-1.19); FILE MERGED 2004/02/13 17:17:07 er 1.18.324.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d63241effc51be21ba537939fd7f7697220dc251]

INTEGRATION: CWS rowlimit (1.8.324); FILE MERGED 2004/03/15 17:24:17 er 1.8.324.2: RESYNC: (1.8-1.9); FILE MERGED 2004/03/04 18:16:28 er 1.8.324.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8007a6f0329c051369107f9bb8512cf24701b30a]

INTEGRATION: CWS rowlimit (1.22.12); FILE MERGED 2004/02/13 17:17:07 er 1.22.12.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3b23c9f32febf88bb4be4e82bf3db21ec31f2e29]

INTEGRATION: CWS rowlimit (1.6.322); FILE MERGED 2004/02/13 17:17:07 er 1.6.322.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b7d279690120d40e93e5b6db0a578f2fa730b71c]

INTEGRATION: CWS rowlimit (1.15.74); FILE MERGED 2004/03/04 18:16:28 er 1.15.74.2: #i1967# type correctness 2004/02/13 17:17:07 er 1.15.74.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6f493c32e704b73c6184e028ddc5ad9397360652]

INTEGRATION: CWS rowlimit (1.21.74); FILE MERGED 2004/02/13 17:17:06 er 1.21.74.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [99c4650a5030a085686f487f9c2ed93916e59025]

INTEGRATION: CWS rowlimit (1.37.74); FILE MERGED 2004/03/11 17:26:51 er 1.37.74.5: #i1967# type correctness 2004/03/11 12:07:45 er 1.37.74.4: #i1967# type correctness 2004/03/04 18:16:27 er 1.37.74.3: #i1967# type correctness 2004/03/02 13:18:23 jmarmion 1.37.74.2: #i1967# step 5 changes. 2004/02/13 17:17:06 er 1.37.74.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c53cf3bdd9ac9639c00b277cbf9318e34c710073]

INTEGRATION: CWS rowlimit (1.25.74); FILE MERGED 2004/01/19 19:15:59 jmarmion 1.25.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7d701e01362d0f32aee29a7b55bf38e61254fee1]

INTEGRATION: CWS rowlimit (1.36.74); FILE MERGED 2004/02/13 17:17:06 er 1.36.74.3: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32 2004/02/04 11:28:11 er 1.36.74.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/19 19:15:36 jmarmion 1.36.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [05bfe8995c7b70016117a046dfab891459ed2eec]

INTEGRATION: CWS rowlimit (1.10.16); FILE MERGED 2004/05/06 16:01:07 er 1.10.16.5: #i1967# type correctness 2004/04/29 16:26:07 er 1.10.16.4: RESYNC: (1.10-1.11); FILE MERGED 2004/03/04 18:16:27 er 1.10.16.3: #i1967# type correctness 2004/03/02 13:16:12 jmarmion 1.10.16.2: #i1967# step 5 changes. 2004/01/19 19:12:15 jmarmion 1.10.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [77dc325191c2ff4cb25e87859e62273260315068]

INTEGRATION: CWS rowlimit (1.8.324); FILE MERGED 2004/03/17 12:24:59 er 1.8.324.3: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/15 17:24:10 er 1.8.324.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/19 19:09:23 jmarmion 1.8.324.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [be1d30eb08a38d76563c916194e0a30f7cbe4e23]

INTEGRATION: CWS rowlimit (1.10.324); FILE MERGED 2004/03/17 12:24:58 er 1.10.324.3: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/15 17:24:03 er 1.10.324.2: RESYNC: (1.10-1.11); FILE MERGED 2004/02/13 17:17:06 er 1.10.324.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a81eaff05e1a0a947a929cdbddbc445710f11621]

INTEGRATION: CWS rowlimit (1.20.202); FILE MERGED 2004/02/13 17:17:06 er 1.20.202.1: #i1967# document interface uses SCCOL/SCROW/SCTAB, API and filter use sal_Int32


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0cb70ac96f0d5a86ed8a4f9167e14e30fa2c2db3]

INTEGRATION: CWS rowlimit (1.3.338); FILE MERGED 2003/11/28 19:47:55 er 1.3.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c03345f72aa05360c3e990413f7fb135280d5e8e]

INTEGRATION: CWS rowlimit (1.9.324); FILE MERGED 2004/03/15 17:23:55 er 1.9.324.2: RESYNC: (1.9-1.10); FILE MERGED 2004/03/05 12:03:58 er 1.9.324.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8af244c795ef6cfa2e5d9f0c55a0b4aa9f5c163c]

INTEGRATION: CWS rowlimit (1.16.202); FILE MERGED 2004/03/15 17:23:46 er 1.16.202.2: RESYNC: (1.16-1.17); FILE MERGED 2004/01/19 19:08:47 jmarmion 1.16.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9064472c4690143b9c3a61f57c173dc697154185]

INTEGRATION: CWS rowlimit (1.20.324); FILE MERGED 2004/03/15 17:23:39 er 1.20.324.2: RESYNC: (1.20-1.21); FILE MERGED 2004/01/19 19:08:17 jmarmion 1.20.324.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [87a752b9fe6b03304f50c0fa48ee14ea3db6b63b]

INTEGRATION: CWS rowlimit (1.61.22); FILE MERGED 2004/04/29 16:25:58 er 1.61.22.7: RESYNC: (1.64-1.65); FILE MERGED 2004/03/22 13:05:31 er 1.61.22.6: #i1967# type correctness 2004/03/19 13:47:37 er 1.61.22.5: #i1967# type correctness 2004/03/15 17:24:56 er 1.61.22.4: RESYNC: (1.63-1.64); FILE MERGED 2004/03/02 18:25:18 jmarmion 1.61.22.3: #i1967# step 5 changes 2004/02/11 14:01:45 er 1.61.22.2: RESYNC: (1.61-1.63); FILE MERGED 2004/01/19 14:52:32 jmarmion 1.61.22.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c3114b902db768a20a84b82abbe046a188170d8b]

INTEGRATION: CWS rowlimit (1.10.24); FILE MERGED 2004/03/19 13:47:37 er 1.10.24.5: #i1967# type correctness 2004/03/15 17:24:46 er 1.10.24.4: RESYNC: (1.11-1.12); FILE MERGED 2004/03/02 18:25:17 jmarmion 1.10.24.3: #i1967# step 5 changes 2004/02/11 14:01:35 er 1.10.24.2: RESYNC: (1.10-1.11); FILE MERGED 2004/01/19 14:52:05 jmarmion 1.10.24.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0a559673bf7dacfe4ebaeb3b6c0ce8bbbd9cd1b2]

INTEGRATION: CWS rowlimit (1.19.16); FILE MERGED 2004/03/19 13:47:36 er 1.19.16.4: #i1967# type correctness 2004/03/15 17:24:39 er 1.19.16.3: RESYNC: (1.19-1.20); FILE MERGED 2004/03/02 18:25:17 jmarmion 1.19.16.2: #i1967# step 5 changes 2004/01/19 14:50:58 jmarmion 1.19.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [41bfcb024d81af8a625eb69d38bc4734d71bacd3]

INTEGRATION: CWS rowlimit (1.13.202); FILE MERGED 2004/03/19 13:47:36 er 1.13.202.4: #i1967# type correctness 2004/03/15 17:24:32 er 1.13.202.3: RESYNC: (1.13-1.14); FILE MERGED 2004/03/02 18:25:16 jmarmion 1.13.202.2: #i1967# step 5 changes 2004/01/19 14:49:48 jmarmion 1.13.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0e45de0d257c925312347c11433e395b0641ef98]

INTEGRATION: CWS rowlimit (1.5.56); FILE MERGED 2004/03/04 18:16:26 er 1.5.56.2: #i1967# type correctness 2004/01/19 12:12:13 jmarmion 1.5.56.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3e7dcdba5cb6d1941fbf5672b57924718fea4246]

INTEGRATION: CWS rowlimit (1.9.202); FILE MERGED 2004/03/02 12:23:57 jmarmion 1.9.202.3: #i1967# step 5 changes. 2004/02/13 11:33:21 er 1.9.202.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/19 12:11:44 jmarmion 1.9.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f8371489cd0d5020126083d99f8f7028e937349b]

INTEGRATION: CWS rowlimit (1.2.310); FILE MERGED 2004/03/04 18:16:26 er 1.2.310.3: #i1967# type correctness 2004/03/02 11:12:35 jmarmion 1.2.310.2: #i1967# step 5 changes. 2004/02/13 11:33:21 er 1.2.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2f89acea4c5a55c84b0af04911bfdb48c87d6f49]

INTEGRATION: CWS rowlimit (1.2.310); FILE MERGED 2004/03/02 11:11:46 jmarmion 1.2.310.2: #i1967# step 5 changes. 2004/01/19 10:05:39 jmarmion 1.2.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e4aa6184983525a992dcbe8455ee53026d03fdfc]

INTEGRATION: CWS rowlimit (1.4.324); FILE MERGED 2004/01/19 10:04:35 jmarmion 1.4.324.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6e1d0aac00faa27062f4d92bbad774f283efba6d]

INTEGRATION: CWS rowlimit (1.8.16); FILE MERGED 2004/03/25 21:36:00 er 1.8.16.4: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/02 11:11:04 jmarmion 1.8.16.3: #i1967# step 5 changes. 2004/01/21 14:40:36 er 1.8.16.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/19 10:04:04 jmarmion 1.8.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [dbfdec8ea89a7c7dbe7190ce4b26e6e173517781]

INTEGRATION: CWS rowlimit (1.6.200); FILE MERGED 2004/03/19 12:04:15 er 1.6.200.3: #i1967# type correctness 2004/03/02 10:49:13 jmarmion 1.6.200.2: #i1967# step 5 changes. 2004/01/19 09:38:58 jmarmion 1.6.200.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0108e496fa0c8b9c1a96e9870826923c1efc0a94]

INTEGRATION: CWS rowlimit (1.7.200); FILE MERGED 2004/01/19 09:38:32 jmarmion 1.7.200.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0f33ac29faf67bef9b60c2fa6446d6ba21730703]

INTEGRATION: CWS rowlimit (1.4.202); FILE MERGED 2004/03/02 10:47:17 jmarmion 1.4.202.2: #i1967# step 5 changes. 2004/01/19 09:38:09 jmarmion 1.4.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b3e7d3527089d0c944c378e00a8f56995d2ccf9b]

INTEGRATION: CWS rowlimit (1.6.202); FILE MERGED 2004/03/02 10:46:42 jmarmion 1.6.202.2: #i1967# step 5 changes. 2004/01/19 09:37:39 jmarmion 1.6.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [5b88f4d2c1b69b30f8eea2cf4bb20884ca487f91]

INTEGRATION: CWS rowlimit (1.7.202); FILE MERGED 2004/03/02 10:45:44 jmarmion 1.7.202.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4e4d494cd470f3d219d2c909146dfa2e500c3855]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/25 21:35:59 er 1.1.1.1.346.2: #i1967# use ValidCol,ValidRow,ValidTab 2004/01/19 09:37:14 jmarmion 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0231ad5023fdb6e8e492b786ac0cb3c63cc85dad]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/19 12:04:14 er 1.1.1.1.346.3: #i1967# type correctness 2004/03/04 18:16:26 er 1.1.1.1.346.2: #i1967# type correctness 2004/03/02 10:44:20 jmarmion 1.1.1.1.346.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2f4da4358abf2c8c5c94eb59aa2f3716fd6db198]

INTEGRATION: CWS rowlimit (1.4.18); FILE MERGED 2004/03/21 19:39:59 jmarmion 1.4.18.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [28cf7fc50b3b25324469846543bafab46aa039b1]

INTEGRATION: CWS rowlimit (1.14.18); FILE MERGED 2004/03/19 15:58:07 er 1.14.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [cbc3ea08a243bb9936161b220e3db15faeb47e03]

INTEGRATION: CWS rowlimit (1.9.14); FILE MERGED 2004/03/19 13:47:14 er 1.9.14.4: #i1967# type correctness 2004/03/15 17:28:09 er 1.9.14.3: RESYNC: (1.10-1.11); FILE MERGED 2004/02/11 14:03:05 er 1.9.14.2: RESYNC: (1.9-1.10); FILE MERGED 2003/11/28 19:47:53 er 1.9.14.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [069beb2a4f5a30b9672d91ccd416174bc1cbc6c1]

INTEGRATION: CWS rowlimit (1.6.18); FILE MERGED 2004/03/19 15:16:11 er 1.6.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f447139f6ad80f09fda9a0b419e13115fbf1139f]

INTEGRATION: CWS rowlimit (1.7.18); FILE MERGED 2004/03/19 15:16:08 er 1.7.18.2: #i1967# type correctness 2004/03/19 13:47:14 er 1.7.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4953281baedb68d26dfec8915a1b67e765c77aa7]

INTEGRATION: CWS rowlimit (1.11.10); FILE MERGED 2004/03/19 13:47:12 er 1.11.10.3: #i1967# type correctness 2004/03/15 17:27:34 er 1.11.10.2: RESYNC: (1.11-1.13); FILE MERGED 2004/03/04 18:16:25 er 1.11.10.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [36b6bdc05622f4a6b39bc6d5f09d53f8d342d0c3]

INTEGRATION: CWS rowlimit (1.8.18); FILE MERGED 2004/03/19 18:48:16 er 1.8.18.2: #i1967# type correctness 2004/03/19 15:16:03 er 1.8.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b2e6d3702087db28c48572ca78c1847b6fef9cc5]

INTEGRATION: CWS rowlimit (1.6.18); FILE MERGED 2004/03/19 13:47:12 er 1.6.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b2953d08dce5f53ae9acf57cd6c7ad97c5a4ad1d]

INTEGRATION: CWS rowlimit (1.6.18); FILE MERGED 2004/03/19 15:58:06 er 1.6.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e71b33f56609fb9031b6ceecc8700c9ff52f7550]

INTEGRATION: CWS rowlimit (1.6.18); FILE MERGED 2004/03/19 17:10:44 er 1.6.18.3: #i1967# type correctness 2004/03/19 13:47:11 er 1.6.18.2: #i1967# type correctness 2004/03/19 12:15:36 jmarmion 1.6.18.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [408883b238ed41b8bbe72c32d1983632e10fbdfa]

INTEGRATION: CWS rowlimit (1.8.18); FILE MERGED 2004/03/19 18:48:16 er 1.8.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [be7704b280748e56a504a849976f9c26ce6f282a]

INTEGRATION: CWS rowlimit (1.5.18); FILE MERGED 2004/03/19 18:48:16 er 1.5.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [754a6552725e05cd293f7687f34ec6ebdf8cad84]

INTEGRATION: CWS rowlimit (1.32.14); FILE MERGED 2004/04/29 16:25:31 er 1.32.14.4: RESYNC: (1.34-1.35); FILE MERGED 2004/03/15 17:25:46 er 1.32.14.3: RESYNC: (1.33-1.34); FILE MERGED 2004/02/11 14:02:17 er 1.32.14.2: RESYNC: (1.32-1.33); FILE MERGED 2004/01/19 15:16:27 jmarmion 1.32.14.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8d602cc10b25c666e6bd16200884d089cc24a3a4]

INTEGRATION: CWS rowlimit (1.5.122); FILE MERGED 2004/03/19 13:47:11 er 1.5.122.3: #i1967# type correctness 2004/02/11 14:02:07 er 1.5.122.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/19 15:14:24 jmarmion 1.5.122.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ab894c4e3345e5331b0f8258b224a5bd77e5c617]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/19 09:42:00 jmarmion 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3b357504fbece9821a396fd71438b8acd71b1f45]

INTEGRATION: CWS rowlimit (1.5.338); FILE MERGED 2004/02/04 11:28:10 er 1.5.338.1: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1f9693145d44443b0cf7cdf73939f48c72ff1454]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/19 12:12:38 jmarmion 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short. 2003/11/28 19:47:53 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [96c4c615a1176c438d0100bc5dc3f18b2c961628]

INTEGRATION: CWS rowlimit (1.3.202); FILE MERGED 2004/03/02 12:09:55 jmarmion 1.3.202.3: #i1967# step 5 changes. 2004/01/19 12:13:03 jmarmion 1.3.202.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short. 2003/11/28 19:47:53 er 1.3.202.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [462bc04d962e3852dde529a6d71e8c121516d22a]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/02/13 11:33:21 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9f51798825f10236f229bf4deb533d15ea66cdfc]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/02 12:09:21 jmarmion 1.1.1.1.346.2: #i1967# step 5 changes. 2004/01/19 10:08:00 jmarmion 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a4cfa06c7b39fcf7d31079f3b2dd74d28bb17bb7]

INTEGRATION: CWS rowlimit (1.30.14); FILE MERGED 2004/03/21 19:44:26 jmarmion 1.30.14.3: #i1967# step 5 changes. 2004/03/15 17:25:03 er 1.30.14.2: RESYNC: (1.30-1.31); FILE MERGED 2003/11/28 19:47:52 er 1.30.14.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [123954fc45fb5e35ea8d141f9f75162f277e5c4d]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/01 16:39:33 er 1.1.1.1.346.1: #i1967# SCSIZE instead of USHORT (and remove unused SetOuted())


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7bf5a45dc0a53d87655a31640ea0c5c0f87d241b]

INTEGRATION: CWS rowlimit (1.2.16); FILE MERGED 2004/03/02 12:08:10 jmarmion 1.2.16.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4ed7e431ce6b79f60215f8431ed18ccd3efbd42b]

INTEGRATION: CWS rowlimit (1.5.202); FILE MERGED 2004/03/02 12:04:01 jmarmion 1.5.202.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0c538389dd38a25f0153f33751602a1bfad631cd]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/02 12:00:42 jmarmion 1.1.1.1.346.4: #i1967# step 5 changes. 2004/01/19 09:41:14 jmarmion 1.1.1.1.346.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short. 2003/12/12 12:36:06 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2003/11/28 19:47:52 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c52477563f31b4b88e05b27393693d9bf508a70f]

INTEGRATION: CWS rowlimit (1.24.16); FILE MERGED 2004/03/21 19:41:38 jmarmion 1.24.16.2: #i1967# step 5 changes. 2004/03/19 21:03:55 er 1.24.16.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [cabf107a11619bc111d1b5b474718c221a140dc0]

INTEGRATION: CWS rowlimit (1.8.16); FILE MERGED 2004/03/04 18:16:25 er 1.8.16.4: #i1967# type correctness 2004/03/01 16:23:18 jmarmion 1.8.16.3: #i1967# step 5 changes. 2004/01/19 19:23:42 jmarmion 1.8.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short. 2004/01/19 15:57:28 jmarmion 1.8.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [fdc191fd2589b3478c2b9d80486c1596dcb6c050]

INTEGRATION: CWS rowlimit (1.5.302); FILE MERGED 2004/02/13 11:33:20 er 1.5.302.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/19 15:57:51 jmarmion 1.5.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short. 2003/11/28 19:47:52 er 1.5.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8670908dfa3b4b2140b69868ce9b7593acf98b9b]

INTEGRATION: CWS rowlimit (1.4.16); FILE MERGED 2004/03/01 16:24:22 jmarmion 1.4.16.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ce44ce05e51d74850c06e13615f7c3acf7d11908]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/19 10:07:33 jmarmion 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short. 2003/11/28 19:47:51 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [75d6c2f2c0b8e580bbebea3169eeb65ac7ea3448]

INTEGRATION: CWS rowlimit (1.6.192); FILE MERGED 2004/03/19 12:04:14 er 1.6.192.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [29149fdd3c694ccd840d2989b264d30c5bd5ada7]

INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED 2004/04/29 16:25:10 er 1.2.338.2: RESYNC: (1.2-1.3); FILE MERGED 2003/11/28 19:47:51 er 1.2.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [612a2bb11a00bdc118264841653f3523827bbfdc]

INTEGRATION: CWS rowlimit (1.39.16); FILE MERGED 2004/03/21 19:22:28 jmarmion 1.39.16.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [085a94e523468ce3c64813a28154cf8c667720fa]

INTEGRATION: CWS rowlimit (1.51.16); FILE MERGED 2004/03/21 19:24:19 jmarmion 1.51.16.2: #i1967# step 5 changes. 2004/03/19 15:58:06 er 1.51.16.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a3cfee7d7bbce5209c7b13a2240d439055648c81]

INTEGRATION: CWS rowlimit (1.10.162); FILE MERGED 2004/03/21 19:19:38 jmarmion 1.10.162.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7319cc32b6fe95cc0f82341948940e45ed5dd69e]

INTEGRATION: CWS rowlimit (1.11.192); FILE MERGED 2004/03/21 19:46:57 jmarmion 1.11.192.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [330723adc96c7dfc5636eb6194d3376bcecfb5c2]

INTEGRATION: CWS rowlimit (1.2.202); FILE MERGED 2004/03/01 16:22:22 jmarmion 1.2.202.2: #i1967# step 5 changes. 2004/01/19 10:07:04 jmarmion 1.2.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ccce71b77c59c3eb92dbfc600bfb6be94f60aae2]

INTEGRATION: CWS rowlimit (1.2.200); FILE MERGED 2004/03/25 21:35:59 er 1.2.200.4: #i1967# use ValidCol,ValidRow,ValidTab 2004/01/19 09:14:35 jmarmion 1.2.200.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short. 2003/12/12 12:35:33 er 1.2.200.2: RESYNC: (1.2-1.3); FILE MERGED 2003/11/28 19:47:51 er 1.2.200.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ef050823066d42d19dae9d24518b3498ccf4f0d9]

INTEGRATION: CWS rowlimit (1.16.16); FILE MERGED 2004/03/25 21:35:59 er 1.16.16.2: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/21 19:45:45 jmarmion 1.16.16.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [dae5d5875e4c234aeebacc6799bc257226639328]

INTEGRATION: CWS rowlimit (1.13.202); FILE MERGED 2004/03/19 13:47:11 er 1.13.202.3: #i1967# type correctness 2004/03/02 18:26:57 jmarmion 1.13.202.2: #i1967# step 5 changes. 2004/01/19 15:12:26 jmarmion 1.13.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6f56169d6ac0966a6c28b18b9be435c7d2b341bc]

INTEGRATION: CWS rowlimit (1.10.202); FILE MERGED 2004/03/15 17:25:11 er 1.10.202.2: RESYNC: (1.10-1.11); FILE MERGED 2004/01/19 15:09:35 jmarmion 1.10.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8e5a646cee42373fae8c52862edc9a4868faf3d7]

INTEGRATION: CWS rowlimit (1.11.74); FILE MERGED 2004/03/01 16:04:31 jmarmion 1.11.74.2: #i1967# step 5 changes. 2004/01/19 15:52:35 jmarmion 1.11.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d5179dab31376cd3dde3c94e24fdac39ea1ed320]

INTEGRATION: CWS rowlimit (1.7.28); FILE MERGED 2004/03/01 16:03:31 jmarmion 1.7.28.2: #i1967# step 5 changes. 2004/01/19 15:51:58 jmarmion 1.7.28.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3edc44c7cc0c95ff2530960576b9f4dd0b2d8976]

INTEGRATION: CWS rowlimit (1.23.194); FILE MERGED 2004/03/01 16:03:11 jmarmion 1.23.194.3: #i1967# step 5 changes. 2004/02/11 14:03:36 er 1.23.194.2: RESYNC: (1.23-1.24); FILE MERGED 2004/01/19 15:51:34 jmarmion 1.23.194.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [66a37d4ca66210c0e4a22b9e9ffebcc147cfc7c9]

INTEGRATION: CWS rowlimit (1.3.18); FILE MERGED 2004/03/21 19:38:30 jmarmion 1.3.18.4: #i1967# step 5 changes. 2004/03/19 15:58:30 er 1.3.18.3: #i1967# type correctness 2004/03/15 17:34:23 er 1.3.18.2: RESYNC: (1.3-1.4); FILE MERGED 2003/11/28 19:47:50 er 1.3.18.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [69992052e649ba7a40bf7ea2d0203659c54eb302]

INTEGRATION: CWS rowlimit (1.15.18); FILE MERGED 2004/03/19 15:58:30 er 1.15.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [541a73040774885e2eb2ef9a0f04ed545e77c6e1]

INTEGRATION: CWS rowlimit (1.11.18); FILE MERGED 2004/03/19 15:58:29 er 1.11.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1e53fec59adfddb97f1e3be5fd4027e14a5d5421]

INTEGRATION: CWS rowlimit (1.6.18); FILE MERGED 2004/04/29 16:23:37 er 1.6.18.2: RESYNC: (1.6-1.7); FILE MERGED 2004/03/19 15:58:29 er 1.6.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b7966a86cf03c794a1bbe678727aa7edbbc09b0f]

INTEGRATION: CWS rowlimit (1.2.12); FILE MERGED 2004/06/01 10:23:03 er 1.2.12.2: #i1967# a row is a row 2004/03/19 15:58:29 er 1.2.12.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [63cf9e95dfc1cf6de671fc1b9adfc5237a9f6834]

INTEGRATION: CWS rowlimit (1.13.18); FILE MERGED 2004/03/19 20:55:18 er 1.13.18.2: #i1967# type correctness 2004/03/19 15:58:28 er 1.13.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [bd65a0ee5caf8a469d3cda3aa780ec6700e3e5c1]

INTEGRATION: CWS rowlimit (1.3.16); FILE MERGED 2004/04/29 16:24:27 er 1.3.16.2: RESYNC: (1.3-1.4); FILE MERGED 2004/03/19 15:58:28 er 1.3.16.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6df07561d3eeb6d639a04e0a2225196b26131636]

INTEGRATION: CWS rowlimit (1.8.18); FILE MERGED 2004/04/29 16:24:18 er 1.8.18.2: RESYNC: (1.8-1.9); FILE MERGED 2004/03/19 15:58:28 er 1.8.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4e1d42771c67c5ae286af9d7aa11c5366d0f8a8c]

INTEGRATION: CWS rowlimit (1.10.18); FILE MERGED 2004/03/19 15:58:28 er 1.10.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b4433a4e6dbd5e6856e32326d46896a4e7a1b290]

INTEGRATION: CWS rowlimit (1.13.16); FILE MERGED 2004/04/29 16:24:10 er 1.13.16.2: RESYNC: (1.13-1.14); FILE MERGED 2004/03/19 15:58:27 er 1.13.16.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [fdebaea49c195d95de7b383ac9b0e735730052ea]

INTEGRATION: CWS rowlimit (1.8.18); FILE MERGED 2004/03/19 15:58:27 er 1.8.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [20a4e7b322d3a2ab573b48e00dfc6b22170bea0b]

INTEGRATION: CWS rowlimit (1.3.16); FILE MERGED 2004/04/29 16:23:57 er 1.3.16.2: RESYNC: (1.3-1.4); FILE MERGED 2004/03/19 20:55:17 er 1.3.16.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [03bdd2f6621b4c359ac46e6b768d13acc45e7944]

INTEGRATION: CWS rowlimit (1.7.18); FILE MERGED 2004/03/19 20:55:17 er 1.7.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1b6016bfaae27fc6439ac7b3f973834dfdc5e677]

INTEGRATION: CWS rowlimit (1.11.18); FILE MERGED 2004/03/19 20:55:17 er 1.11.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1c359e7ce386ec0010083ba0670d08e5174a6ac5]

INTEGRATION: CWS rowlimit (1.3.324); FILE MERGED 2004/02/04 11:28:09 er 1.3.324.1: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2cceb7d7c9939b19fe923f1dff21008d526f7df5]

INTEGRATION: CWS rowlimit (1.17.18); FILE MERGED 2004/03/19 20:55:17 er 1.17.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [808e5521abf860210e95b6ba3599e05ef9e81810]

INTEGRATION: CWS rowlimit (1.57.14); FILE MERGED 2004/03/19 20:55:16 er 1.57.14.6: #i1967# type correctness 2004/03/15 17:28:45 er 1.57.14.5: RESYNC: (1.59-1.60); FILE MERGED 2004/02/11 14:03:56 er 1.57.14.4: RESYNC: (1.58-1.59); FILE MERGED 2004/02/04 11:28:08 er 1.57.14.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2003/12/12 12:37:23 er 1.57.14.2: RESYNC: (1.57-1.58); FILE MERGED 2003/11/28 19:47:49 er 1.57.14.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [bd49d74ce9fc0b4cca04f538a1a58fc935ca29e5]

INTEGRATION: CWS rowlimit (1.3.320); FILE MERGED 2004/03/25 21:35:58 er 1.3.320.2: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/19 20:55:16 er 1.3.320.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [928c214f579885c43b9b7f848709cff9406c2290]

INTEGRATION: CWS rowlimit (1.17.18); FILE MERGED 2004/03/21 19:18:26 jmarmion 1.17.18.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [42689817cbd37fbed19e0d854b39bd8d2cb63681]

INTEGRATION: CWS rowlimit (1.44.16); FILE MERGED 2004/04/29 16:23:48 er 1.44.16.2: RESYNC: (1.44-1.45); FILE MERGED 2004/04/01 16:39:03 er 1.44.16.1: #i1967# SCSIZE instead of USHORT (and remove unused SetOuted())


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [733cc4cacd0881ee4ac90aa1ce58ec58583fc1bb]

INTEGRATION: CWS rowlimit (1.71.16); FILE MERGED 2004/03/21 19:13:52 jmarmion 1.71.16.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4ff3c4f78dbd618832e7011a708cac18a52558c7]

INTEGRATION: CWS rowlimit (1.31.18); FILE MERGED 2004/03/23 11:16:55 er 1.31.18.4: #i1967# type correctness 2004/03/22 16:50:22 er 1.31.18.3: #i1967# type correctness 2004/03/22 10:45:26 jmarmion 1.31.18.2: #i1967# more step 5 changes. 2004/03/21 18:58:38 jmarmion 1.31.18.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [92d01e6d3fe139cbb333c8e1753e2610d6c09de9]

INTEGRATION: CWS rowlimit (1.90.18); FILE MERGED 2004/03/21 18:53:36 jmarmion 1.90.18.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9d144b0d95e0650676d4cd334c560604dfd0be7c]

INTEGRATION: CWS rowlimit (1.26.18); FILE MERGED 2004/03/25 21:35:57 er 1.26.18.3: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/24 15:31:21 er 1.26.18.2: #i1967# type correctness 2004/03/21 13:13:05 jmarmion 1.26.18.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6e6965c3a3852d97588a6fcfaf58741c40a872c8]

INTEGRATION: CWS rowlimit (1.24.18); FILE MERGED 2004/03/25 21:35:57 er 1.24.18.3: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/24 15:31:21 er 1.24.18.2: #i1967# type correctness 2004/03/21 13:05:38 jmarmion 1.24.18.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [39cede2ee2724fec6f001e5398578638ed620c23]

INTEGRATION: CWS rowlimit (1.50.18); FILE MERGED 2004/03/21 12:50:58 jmarmion 1.50.18.1: #i1967# step 5 changes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [28cbc1fe4fb264734f4d483802b806049bcdb340]

INTEGRATION: CWS rowlimit (1.21.18); FILE MERGED 2004/03/25 21:35:57 er 1.21.18.3: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/21 12:15:40 jmarmion 1.21.18.2: #i1967# step 5 changes. 2004/03/19 20:55:16 er 1.21.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7cfcda81239c3e9d1045e7bcd3bbd10c2b0ef35b]

INTEGRATION: CWS rowlimit (1.5.200); FILE MERGED 2004/03/25 21:35:57 er 1.5.200.5: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/19 12:04:13 er 1.5.200.4: #i1967# type correctness 2004/02/11 14:06:25 er 1.5.200.3: RESYNC: (1.5-1.6); FILE MERGED 2004/02/04 11:28:07 er 1.5.200.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/19 09:14:04 jmarmion 1.5.200.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [95d7212fe7dae2e0b0fc8320c755a634fe72ce25]

INTEGRATION: CWS rowlimit (1.6.200); FILE MERGED 2004/01/19 09:13:31 jmarmion 1.6.200.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [264e40f35e57a96cde438fe433f5cfe9a91ce15c]

INTEGRATION: CWS rowlimit (1.16.72); FILE MERGED 2004/03/18 10:22:49 er 1.16.72.4: #i1967# type correctness 2004/03/15 17:34:31 er 1.16.72.3: RESYNC: (1.16-1.17); FILE MERGED 2004/01/16 17:42:46 er 1.16.72.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:25 er 1.16.72.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4e7e6d4cba743b5f08597224535997ce1bf17508]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/15 17:36:43 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2003/12/19 20:16:24 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3de77067198b9f7fc750b9155d44520734248333]

INTEGRATION: CWS rowlimit (1.6.202); FILE MERGED 2004/03/17 12:24:58 er 1.6.202.4: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/15 17:36:35 er 1.6.202.3: RESYNC: (1.6-1.7); FILE MERGED 2004/01/13 17:19:43 er 1.6.202.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:24 er 1.6.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ead0fdd15c962fc5f61e35316cedb4cecd2bd53b]

INTEGRATION: CWS rowlimit (1.2.186); FILE MERGED 2004/03/11 17:04:25 er 1.2.186.4: #i1967# type correctness 2004/03/05 17:13:08 er 1.2.186.3: #i1967# type correctness 2004/01/12 17:14:05 er 1.2.186.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:23 er 1.2.186.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1e24bfaf2962d35091772943d593fa9e96bfc3b8]

INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED 2004/03/05 17:13:08 er 1.2.338.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9a337491bbe7f6536bca39eb30e1ea9d33f70565]

INTEGRATION: CWS rowlimit (1.3.302); FILE MERGED 2004/03/05 17:13:07 er 1.3.302.3: #i1967# type correctness 2004/02/04 11:28:06 er 1.3.302.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2003/12/19 20:16:23 er 1.3.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [5ac7bd8d4825b6b7b70867e999baeef55931cf32]

INTEGRATION: CWS rowlimit (1.4.202); FILE MERGED 2004/03/17 12:24:58 er 1.4.202.2: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2003/12/19 20:16:23 er 1.4.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [5410ac73ee04d066377f173666fe643c5743aae1]

INTEGRATION: CWS rowlimit (1.13.146); FILE MERGED 2004/03/05 17:13:07 er 1.13.146.4: #i1967# type correctness 2004/02/13 11:33:20 er 1.13.146.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:04 er 1.13.146.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:22 er 1.13.146.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4c2829d2c65eb7df0774331b86f86325598b6d4c]

INTEGRATION: CWS rowlimit (1.4.334); FILE MERGED 2004/03/11 14:35:08 er 1.4.334.4: #i1967# no streaming 2004/03/05 17:13:07 er 1.4.334.3: #i1967# type correctness 2004/01/12 17:14:04 er 1.4.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:22 er 1.4.334.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2e4f7f6e3f3d436405671f579ab19b58729557dd]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/05 17:13:07 er 1.1.1.1.346.4: #i1967# type correctness 2003/12/19 20:16:22 er 1.1.1.1.346.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/12/12 12:40:11 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2003/11/28 19:47:49 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7c2c4d1045a271eb100cce7805905a7352782987]

INTEGRATION: CWS rowlimit (1.11.18); FILE MERGED 2004/03/25 17:42:01 er 1.11.18.1: #i1967# add address.cxx and sort


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [33929c9c80b878b8b403a928e23dc4a3a8d6db6b]

INTEGRATION: CWS rowlimit (1.8.202); FILE MERGED 2004/03/18 19:04:13 er 1.8.202.6: #i1967# type correctness 2004/03/18 10:22:48 er 1.8.202.5: #i1967# type correctness 2004/03/15 17:36:06 er 1.8.202.4: RESYNC: (1.8-1.10); FILE MERGED 2004/02/13 11:33:19 er 1.8.202.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 17:19:42 er 1.8.202.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:21 er 1.8.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b41898e18cf2673d95d3c7de8bf3a6074a30f155]

INTEGRATION: CWS rowlimit (1.26.178); FILE MERGED 2004/04/07 14:44:19 er 1.26.178.7: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/25 21:35:56 er 1.26.178.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/18 10:22:48 er 1.26.178.5: #i1967# type correctness 2004/03/15 17:35:57 er 1.26.178.4: RESYNC: (1.26-1.27); FILE MERGED 2004/02/13 11:33:19 er 1.26.178.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 17:19:41 er 1.26.178.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:20 er 1.26.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [643dcd033ca916e61f0ce3dba7c5d4c0348c224c]

INTEGRATION: CWS rowlimit (1.9.16); FILE MERGED 2004/03/22 16:55:07 er 1.9.16.5: #i1967# type correctness 2004/03/18 19:04:12 er 1.9.16.4: #i1967# type correctness 2004/03/18 10:22:48 er 1.9.16.3: #i1967# type correctness 2004/03/15 17:35:48 er 1.9.16.2: RESYNC: (1.9-1.10); FILE MERGED 2004/01/13 17:19:40 er 1.9.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ed8d37787fa88e341d330d0961a3737d3c146fdc]

INTEGRATION: CWS rowlimit (1.14.44); FILE MERGED 2004/04/07 14:44:19 er 1.14.44.6: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/18 10:22:47 er 1.14.44.5: #i1967# type correctness 2004/03/15 17:35:40 er 1.14.44.4: RESYNC: (1.15-1.16); FILE MERGED 2004/01/21 14:43:43 er 1.14.44.3: RESYNC: (1.14-1.15); FILE MERGED 2004/01/13 17:19:39 er 1.14.44.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:20 er 1.14.44.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [510d0296db7e17e5abdef02c6dbf0dd22a2b2581]

INTEGRATION: CWS rowlimit (1.26.16); FILE MERGED 2004/03/25 21:35:55 er 1.26.16.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/18 10:22:41 er 1.26.16.5: #i1967# type correctness 2004/03/15 17:35:32 er 1.26.16.4: RESYNC: (1.26-1.27); FILE MERGED 2004/02/04 11:28:05 er 1.26.16.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/13 17:19:38 er 1.26.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:19 er 1.26.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1a0e354c0a90b6d0c4406deb4cebd96294eb0cd8]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/29 16:23:27 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/01/12 17:14:03 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8ae40b5ee20d07a4404a726e27b737523f6c507e]

INTEGRATION: CWS rowlimit (1.19.202); FILE MERGED 2004/03/05 17:13:06 er 1.19.202.4: #i1967# type correctness 2004/02/11 14:06:44 er 1.19.202.3: RESYNC: (1.20-1.21); FILE MERGED 2004/01/21 14:43:29 er 1.19.202.2: RESYNC: (1.19-1.20); FILE MERGED 2003/12/19 20:16:19 er 1.19.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d37bcb2123fddefabd71be5d316d7ca1f15339c1]

INTEGRATION: CWS rowlimit (1.12.26); FILE MERGED 2004/03/25 21:35:55 er 1.12.26.5: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/05 17:13:06 er 1.12.26.4: #i1967# type correctness 2004/02/11 14:06:35 er 1.12.26.3: RESYNC: (1.12-1.13); FILE MERGED 2004/02/04 11:28:04 er 1.12.26.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2003/12/19 20:16:18 er 1.12.26.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [be205288dd0cfcb1fe57d5c50e752fac63416402]

INTEGRATION: CWS rowlimit (1.2.302); FILE MERGED 2004/03/11 14:00:12 er 1.2.302.3: #i1967# no streaming 2004/01/12 17:14:03 er 1.2.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:18 er 1.2.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d871616d9bd7dcd639c8b28c3b7e15e5a0de9d3e]

INTEGRATION: CWS rowlimit (1.8.314); FILE MERGED 2004/03/17 12:24:57 er 1.8.314.4: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/15 17:35:23 er 1.8.314.3: RESYNC: (1.8-1.9); FILE MERGED 2004/03/05 17:13:06 er 1.8.314.2: #i1967# type correctness 2003/12/19 20:16:18 er 1.8.314.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [86b8d03e6ff1def5c8f730a65f374b5b8227c104]

INTEGRATION: CWS rowlimit (1.10.302); FILE MERGED 2004/05/06 16:01:06 er 1.10.302.4: #i1967# type correctness 2004/03/05 17:13:06 er 1.10.302.3: #i1967# type correctness 2004/01/12 17:14:02 er 1.10.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:17 er 1.10.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9004c2b5fb0fd553d782ff984fe7dcaaa9281e4d]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/15 17:35:15 er 1.1.1.1.346.5: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/03/11 12:07:45 er 1.1.1.1.346.4: #i1967# type correctness 2004/03/05 17:13:05 er 1.1.1.1.346.3: #i1967# type correctness 2004/01/13 17:19:38 er 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:17 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0a0638686b561e7d7f8a105fa0141632148ede3f]

INTEGRATION: CWS rowlimit (1.42.16); FILE MERGED 2004/03/25 21:35:55 er 1.42.16.9: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/25 17:46:34 er 1.42.16.8: #i1967# consolidate ColToAlpha,AlphaToCol methods 2004/03/15 17:35:06 er 1.42.16.7: RESYNC: (1.43-1.45); FILE MERGED 2004/03/11 13:52:05 er 1.42.16.6: #i1967# type correctness 2004/03/05 17:13:04 er 1.42.16.5: #i1967# type correctness 2004/02/13 11:33:18 er 1.42.16.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/21 14:43:14 er 1.42.16.3: RESYNC: (1.42-1.43); FILE MERGED 2004/01/12 17:14:01 er 1.42.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:16 er 1.42.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c612333180087b61989c483bd77a8f0ab6a85635]

INTEGRATION: CWS rowlimit (1.9.322); FILE MERGED 2003/12/19 20:16:15 er 1.9.322.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7e15bbb91fe3d7f092548d2d1e43f2b2c6f681f1]

INTEGRATION: CWS rowlimit (1.17.172); FILE MERGED 2004/03/15 17:34:58 er 1.17.172.7: RESYNC: (1.17-1.18); FILE MERGED 2004/03/11 13:38:58 er 1.17.172.6: #i1967# no streaming 2004/03/05 17:13:04 er 1.17.172.5: #i1967# type correctness 2004/01/16 17:42:45 er 1.17.172.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/13 17:19:36 er 1.17.172.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:00 er 1.17.172.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:14 er 1.17.172.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e90657dfb9594fdfc4d47a36aa01e97578892cc1]

INTEGRATION: CWS rowlimit (1.5.314); FILE MERGED 2004/04/07 14:44:18 er 1.5.314.2: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2003/12/19 20:16:14 er 1.5.314.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6cf423a26c65b454a8cd78dc795ab80d0a95ae2a]

INTEGRATION: CWS rowlimit (1.11.202); FILE MERGED 2004/04/01 13:24:16 er 1.11.202.4: #i1967# create empty memchart if <short> limits are exceeded 2004/03/18 19:42:49 er 1.11.202.3: #i1967# type correctness (ScChartPositionMap using SCSIZE) 2004/03/05 17:13:04 er 1.11.202.2: #i1967# type correctness 2003/12/19 20:16:13 er 1.11.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [dfa4f3f7a124987113552e44eb53779f934f3aa0]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/07 14:44:18 er 1.1.1.1.346.2: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/05 17:13:04 er 1.1.1.1.346.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1d457f3064196d17bc1aa2093a73bf6126949835]

INTEGRATION: CWS rowlimit (1.1.2); FILE ADDED 2004/03/25 22:21:42 er 1.1.2.2: #i1967# AlphaToCol() extra parameters not needed 2004/03/25 17:41:24 er 1.1.2.1: #i1967# moved address,range,reference related methods from ../data/global*.cxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3e9b9cdbaca91f1e5ceb38bb384d3b781372188e]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/05 17:13:03 er 1.1.1.1.346.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [01687f1b9055db4b40855b79167154acbd1f187e]

INTEGRATION: CWS rowlimit (1.12.302); FILE MERGED 2004/03/17 12:24:57 er 1.12.302.3: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/15 17:34:40 er 1.12.302.2: RESYNC: (1.12-1.13); FILE MERGED 2003/12/19 20:16:13 er 1.12.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7869dc1a398e47db3968832de2d53ef537112926]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2003/11/28 19:47:48 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [55c4e5601757f13a1d810f30b138ff7292ca070c]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/13 13:38:09 er 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:48 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c8f101bfcbfe09d2ed0fdc080b9b2ca146e9e570]

INTEGRATION: CWS rowlimit (1.2.18); FILE MERGED 2004/03/18 10:22:41 er 1.2.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [46d6dd62c5de3ca076b32c08ee5b6c2dd5e4b272]

INTEGRATION: CWS rowlimit (1.14.202); FILE MERGED 2004/03/18 10:22:41 er 1.14.202.3: #i1967# type correctness 2004/03/15 17:37:10 er 1.14.202.2: RESYNC: (1.14-1.15); FILE MERGED 2004/01/13 13:38:09 er 1.14.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1931813bb4d6b91ed06775675a750d4b6b5584ca]

INTEGRATION: CWS rowlimit (1.5.338); FILE MERGED 2004/04/07 14:44:18 er 1.5.338.5: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/17 12:24:57 er 1.5.338.4: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/15 17:37:02 er 1.5.338.3: RESYNC: (1.5-1.6); FILE MERGED 2004/01/13 13:38:07 er 1.5.338.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:47 er 1.5.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a92a2585f50c71145e87b0c28242b90d51242f60]

INTEGRATION: CWS rowlimit (1.2.302); FILE MERGED 2004/05/24 12:02:36 er 1.2.302.6: #i1967# replace the multiset equalness attempt with a unique set 2004/04/19 14:18:25 er 1.2.302.5: #i1967# get rid of SV_PTRARR_SORT, use STL multiset 2004/04/07 14:44:17 er 1.2.302.4: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/11 12:07:44 er 1.2.302.3: #i1967# type correctness 2004/03/08 08:50:56 jmarmion 1.2.302.2: #i1967# step 5 changes. 2004/01/13 13:38:05 er 1.2.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0d3bbf2e245340491f326ba981ea6263be66dc37]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/07 14:44:17 er 1.1.1.1.346.1: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3e2b781d07d52be98538a220497e5ee1123167a7]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/07 14:44:17 er 1.1.1.1.346.2: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2003/11/28 19:47:47 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4dc7c85dac6add375ad53d9082e7f2fded6af738]

INTEGRATION: CWS rowlimit (1.10.74); FILE MERGED 2004/01/12 17:14:32 er 1.10.74.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:40 er 1.10.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [03d07987287dd4092b56890640f8ece03b53f94e]

INTEGRATION: CWS rowlimit (1.2.346); FILE MERGED 2004/03/05 20:36:22 er 1.2.346.2: #i1967# type correctness 2004/02/04 11:28:03 er 1.2.346.1: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [83f1c5fb7123489bf9eeed017f03424f162ef2fc]

INTEGRATION: CWS rowlimit (1.6.202); FILE MERGED 2004/03/31 17:49:32 er 1.6.202.4: #i1967# replace some USHRT_MAX with appropriate SCCOL_MAX,SCROW_MAX,SCTAB_MAX 2004/03/05 20:36:22 er 1.6.202.3: #i1967# type correctness 2004/02/04 11:28:03 er 1.6.202.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/09 20:51:39 er 1.6.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c001ceaed46008f8947b7ed322f7e52f5e549895]

INTEGRATION: CWS rowlimit (1.5.334); FILE MERGED 2004/04/07 14:44:16 er 1.5.334.5: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/04/06 14:17:06 er 1.5.334.4: #i1967# change REPEAT_NONE to SCCOL_REPEAT_NONE,SCROW_REPEAT_NONE 2004/03/05 20:36:22 er 1.5.334.3: #i1967# type correctness 2004/01/12 17:14:32 er 1.5.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:39 er 1.5.334.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [33a16da91e3145707bd01a7091a76aa43965b0f3]

INTEGRATION: CWS rowlimit (1.8.202); FILE MERGED 2004/03/25 21:35:54 er 1.8.202.7: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/15 17:39:21 er 1.8.202.6: RESYNC: (1.8-1.9); FILE MERGED 2004/03/11 12:07:44 er 1.8.202.5: #i1967# type correctness 2004/03/05 20:36:22 er 1.8.202.4: #i1967# type correctness 2004/01/16 17:42:44 er 1.8.202.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:32 er 1.8.202.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:38 er 1.8.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8e35522de417ab44c5fadc10b31b1339d4f4c587]

INTEGRATION: CWS rowlimit (1.15.178); FILE MERGED 2004/03/31 17:49:32 er 1.15.178.5: #i1967# replace some USHRT_MAX with appropriate SCCOL_MAX,SCROW_MAX,SCTAB_MAX 2004/03/25 21:35:54 er 1.15.178.4: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 12:07:43 er 1.15.178.3: #i1967# type correctness 2004/03/05 20:36:21 er 1.15.178.2: #i1967# type correctness 2004/01/09 20:51:38 er 1.15.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2761e993531bca3e17c3f9058888b39fa4210a6a]

INTEGRATION: CWS rowlimit (1.24.16); FILE MERGED 2004/05/27 18:44:57 er 1.24.16.12: #i1967# ExtendMerge, IsBlockEmpty: check for valid column numbers 2004/05/06 16:01:06 er 1.24.16.11: #i1967# type correctness 2004/04/29 16:23:15 er 1.24.16.10: RESYNC: (1.25-1.26); FILE MERGED 2004/03/25 21:35:53 er 1.24.16.9: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/18 18:29:37 er 1.24.16.8: #i1967# type correctness 2004/03/11 12:07:43 er 1.24.16.7: #i1967# type correctness 2004/03/07 11:32:52 jmarmion 1.24.16.6: #i1967# step 5 changes 2004/02/13 11:33:17 er 1.24.16.5: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 14:08:59 er 1.24.16.4: RESYNC: (1.24-1.25); FILE MERGED 2004/01/16 17:42:44 er 1.24.16.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:31 er 1.24.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:37 er 1.24.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6f86e336b28171cde5c62b36ff0fc766f9fe3e24]

INTEGRATION: CWS rowlimit (1.7.16); FILE MERGED 2004/04/06 14:17:06 er 1.7.16.8: #i1967# change REPEAT_NONE to SCCOL_REPEAT_NONE,SCROW_REPEAT_NONE 2004/03/25 21:35:53 er 1.7.16.7: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 12:07:42 er 1.7.16.6: #i1967# type correctness 2004/03/07 11:32:52 jmarmion 1.7.16.5: #i1967# step 5 changes 2004/02/11 14:08:50 er 1.7.16.4: RESYNC: (1.7-1.8); FILE MERGED 2004/01/16 17:42:43 er 1.7.16.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:31 er 1.7.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:37 er 1.7.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b54f281f61454c9df7895a0aa047fea6ef9ff125]

INTEGRATION: CWS rowlimit (1.6.178); FILE MERGED 2004/01/09 20:51:36 er 1.6.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ef972d62da0ab6b1f866cc2b234389a9e18bd0dc]

INTEGRATION: CWS rowlimit (1.1.338); FILE MERGED 2004/03/07 11:32:52 jmarmion 1.1.338.2: #i1967# step 5 changes 2004/01/09 20:51:36 er 1.1.338.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f0ef6931d980510d8e88d09cad2a511955242018]

INTEGRATION: CWS rowlimit (1.4.330); FILE MERGED 2004/03/15 17:39:12 er 1.4.330.5: RESYNC: (1.4-1.5); FILE MERGED 2004/03/11 12:07:42 er 1.4.330.4: #i1967# type correctness 2004/03/07 11:32:51 jmarmion 1.4.330.3: #i1967# step 5 changes 2004/01/12 17:14:30 er 1.4.330.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:36 er 1.4.330.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7fb0daccaa0581f44fa91de2ddc6f861863107fa]

INTEGRATION: CWS rowlimit (1.4.304); FILE MERGED 2004/03/25 21:35:53 er 1.4.304.7: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/18 18:29:36 er 1.4.304.6: #i1967# type correctness 2004/03/11 13:02:49 er 1.4.304.5: #i1967# resolve ambiguity 2004/03/11 12:07:42 er 1.4.304.4: #i1967# type correctness 2004/03/07 11:32:51 jmarmion 1.4.304.3: #i1967# step 5 changes 2004/01/12 17:14:29 er 1.4.304.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:35 er 1.4.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9a92774f67756d560a76957badeda2e9e9468838]

INTEGRATION: CWS rowlimit (1.3.194); FILE MERGED 2004/03/31 17:49:32 er 1.3.194.5: #i1967# replace some USHRT_MAX with appropriate SCCOL_MAX,SCROW_MAX,SCTAB_MAX 2004/03/11 12:07:41 er 1.3.194.4: #i1967# type correctness 2004/03/07 11:32:51 jmarmion 1.3.194.3: #i1967# step 5 changes 2004/01/09 20:51:35 er 1.3.194.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/11/28 19:47:46 er 1.3.194.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [056e25de8defe125f1d023afbbd0b8395914c56c]

INTEGRATION: CWS rowlimit (1.3.334); FILE MERGED 2004/03/25 17:46:33 er 1.3.334.5: #i1967# consolidate ColToAlpha,AlphaToCol methods 2004/03/11 12:07:41 er 1.3.334.4: #i1967# type correctness 2004/03/07 11:32:50 jmarmion 1.3.334.3: #i1967# step 5 changes 2004/01/16 17:42:43 er 1.3.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:34 er 1.3.334.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7d212c889402ff3ea59c60729d3ce2bf4bdfb07a]

INTEGRATION: CWS rowlimit (1.5.202); FILE MERGED 2004/03/11 12:07:41 er 1.5.202.5: #i1967# type correctness 2004/03/07 11:32:50 jmarmion 1.5.202.4: #i1967# step 5 changes 2004/01/16 17:41:47 er 1.5.202.3: #i1967# typedef size_t SCSIZE 2004/01/09 20:50:31 er 1.5.202.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t 2003/11/28 19:47:46 er 1.5.202.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f213fbe5b37120d54ee18dc4736e559e5643ce90]

INTEGRATION: CWS rowlimit (1.9.12); FILE MERGED 2004/04/07 14:44:16 er 1.9.12.1: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8a8d3607877da6e5d921c925e3fe514ff15da5e0]

INTEGRATION: CWS rowlimit (1.11.330); FILE MERGED 2004/04/29 16:22:40 er 1.11.330.11: RESYNC: (1.12-1.13); FILE MERGED 2004/03/31 17:49:31 er 1.11.330.10: #i1967# replace some USHRT_MAX with appropriate SCCOL_MAX,SCROW_MAX,SCTAB_MAX 2004/03/25 17:46:33 er 1.11.330.9: #i1967# consolidate ColToAlpha,AlphaToCol methods 2004/03/15 14:29:57 er 1.11.330.8: #i1967# ScAddress::Format: remove superfluous local variables hiding member variables 2004/03/11 12:07:41 er 1.11.330.7: #i1967# type correctness 2004/03/07 11:31:34 jmarmion 1.11.330.6: #i1967# step 5 changes. 2004/02/04 11:28:03 er 1.11.330.5: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/23 18:15:02 er 1.11.330.4: #i1967# restructure ScAddress to use SCCOL/SCROW/SCTAB instead of one single UINT32; make converting ctors explicit 2004/01/09 20:51:34 er 1.11.330.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/12/12 12:42:34 er 1.11.330.2: RESYNC: (1.11-1.12); FILE MERGED 2003/11/28 19:47:46 er 1.11.330.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f49a2766801376c36247a8b7af88b5fd973ba77f]

INTEGRATION: CWS rowlimit (1.3.338); FILE MERGED 2004/03/25 21:35:52 er 1.3.338.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 12:07:40 er 1.3.338.5: #i1967# type correctness 2004/03/07 11:31:33 jmarmion 1.3.338.4: #i1967# step 5 changes. 2004/02/11 14:08:06 er 1.3.338.3: RESYNC: (1.3-1.4); FILE MERGED 2004/01/16 17:42:43 er 1.3.338.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:33 er 1.3.338.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [dfb41d4e0141e0e40dff6ebd0f8f6200d739b125]

INTEGRATION: CWS rowlimit (1.23.16); FILE MERGED 2004/03/11 12:07:40 er 1.23.16.7: #i1967# type correctness 2004/03/07 11:31:33 jmarmion 1.23.16.6: #i1967# step 5 changes. 2004/02/11 14:07:55 er 1.23.16.5: RESYNC: (1.24-1.26); FILE MERGED 2004/02/04 11:28:02 er 1.23.16.4: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/21 14:45:43 er 1.23.16.3: RESYNC: (1.23-1.24); FILE MERGED 2004/01/12 17:14:29 er 1.23.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:33 er 1.23.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b980d9426e92dcadb15d8062dd7f6bd023324326]

INTEGRATION: CWS rowlimit (1.5.328); FILE MERGED 2004/04/29 16:22:20 er 1.5.328.2: RESYNC: (1.5-1.6); FILE MERGED 2004/01/16 17:42:42 er 1.5.328.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [48c45e22582d15e10f96171aeebcecd432de9b7c]

INTEGRATION: CWS rowlimit (1.3.304); FILE MERGED 2004/04/29 16:22:11 er 1.3.304.4: RESYNC: (1.3-1.4); FILE MERGED 2004/03/11 12:07:40 er 1.3.304.3: #i1967# type correctness 2004/01/16 17:42:42 er 1.3.304.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:32 er 1.3.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [678ec57493b011e1648c3c8a84eb299073605215]

INTEGRATION: CWS rowlimit (1.6.202); FILE MERGED 2004/04/29 16:22:03 er 1.6.202.2: RESYNC: (1.6-1.7); FILE MERGED 2004/01/16 17:42:42 er 1.6.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [05db3c8e4659eed80535cf6dda196eb6b03bab13]

INTEGRATION: CWS rowlimit (1.5.322); FILE MERGED 2004/05/06 16:01:06 er 1.5.322.5: #i1967# type correctness 2004/04/29 16:21:39 er 1.5.322.4: RESYNC: (1.6-1.7); FILE MERGED 2004/03/15 17:38:56 er 1.5.322.3: RESYNC: (1.5-1.6); FILE MERGED 2004/03/07 11:31:33 jmarmion 1.5.322.2: #i1967# step 5 changes. 2004/01/09 20:51:32 er 1.5.322.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [0bb1e06b20615acf21649f8ec732fd85b3a094e3]

INTEGRATION: CWS rowlimit (1.9.304); FILE MERGED 2004/05/06 16:01:05 er 1.9.304.5: #i1967# type correctness 2004/04/29 16:21:31 er 1.9.304.4: RESYNC: (1.9-1.10); FILE MERGED 2004/03/11 12:07:39 er 1.9.304.3: #i1967# type correctness 2004/03/07 11:31:32 jmarmion 1.9.304.2: #i1967# step 5 changes. 2004/01/09 20:51:32 er 1.9.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2e6fd4df3a9d98ff01ce835e2b44dcb00ca1d030]

INTEGRATION: CWS rowlimit (1.52.12); FILE MERGED 2004/03/25 21:35:52 er 1.52.12.9: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 12:07:38 er 1.52.12.8: #i1967# type correctness 2004/03/07 11:31:32 jmarmion 1.52.12.7: #i1967# step 5 changes. 2004/02/13 11:33:17 er 1.52.12.6: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 14:07:45 er 1.52.12.5: RESYNC: (1.53-1.54); FILE MERGED 2004/01/21 14:45:28 er 1.52.12.4: RESYNC: (1.52-1.53); FILE MERGED 2004/01/16 17:42:41 er 1.52.12.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:28 er 1.52.12.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:31 er 1.52.12.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e8115b5f4b3690a0e97e4c86a82db634a80ae4cc]

INTEGRATION: CWS rowlimit (1.21.28); FILE MERGED 2004/03/25 21:35:52 er 1.21.28.5: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 12:07:38 er 1.21.28.4: #i1967# type correctness 2004/03/07 11:31:32 jmarmion 1.21.28.3: #i1967# step 5 changes. 2004/02/04 11:28:01 er 1.21.28.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/09 20:51:31 er 1.21.28.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a2a0917d8eb0e64fa21a2080b11ee29275bcf761]

INTEGRATION: CWS rowlimit (1.31.16); FILE MERGED 2004/03/25 21:35:51 er 1.31.16.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/15 17:38:43 er 1.31.16.5: RESYNC: (1.32-1.34); FILE MERGED 2004/03/11 12:07:38 er 1.31.16.4: #i1967# type correctness 2004/02/11 14:07:35 er 1.31.16.3: RESYNC: (1.31-1.32); FILE MERGED 2004/01/12 17:14:27 er 1.31.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:30 er 1.31.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e5d761da1cf55e58de10c6bb3c7dee2a50a5720b]

INTEGRATION: CWS rowlimit (1.4.302); FILE MERGED 2004/04/07 14:44:15 er 1.4.302.5: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/15 17:38:35 er 1.4.302.4: RESYNC: (1.5-1.6); FILE MERGED 2004/01/21 14:45:13 er 1.4.302.3: RESYNC: (1.4-1.5); FILE MERGED 2004/01/12 17:14:27 er 1.4.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:30 er 1.4.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [83228e4b42d77c9709d8769a04c9681458354685]

INTEGRATION: CWS rowlimit (1.10.322); FILE MERGED 2004/01/09 20:51:29 er 1.10.322.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c35f371a6314ad720ee26e6c3ce1c8b28bf216a3]

INTEGRATION: CWS rowlimit (1.19.28); FILE MERGED 2004/03/11 12:07:37 er 1.19.28.4: #i1967# type correctness 2004/03/07 11:31:31 jmarmion 1.19.28.3: #i1967# step 5 changes. 2004/01/12 17:14:26 er 1.19.28.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:29 er 1.19.28.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ccb93bd68867ccdf9a2d2e87c99a793cd00d842a]

INTEGRATION: CWS rowlimit (1.11.178); FILE MERGED 2004/05/06 16:01:05 er 1.11.178.8: #i1967# type correctness 2004/03/25 21:35:51 er 1.11.178.7: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/16 09:37:23 er 1.11.178.6: #i1967# add compiler.hxx 2004/03/11 12:07:37 er 1.11.178.5: #i1967# type correctness 2004/03/07 11:31:31 jmarmion 1.11.178.4: #i1967# step 5 changes. 2004/02/04 11:28:01 er 1.11.178.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/09 20:51:28 er 1.11.178.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/11/28 19:47:45 er 1.11.178.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b8a205c3c84c553bec933c4580bdbdc4f1fd969d]

INTEGRATION: CWS rowlimit (1.19.32); FILE MERGED 2004/05/03 08:51:33 er 1.19.32.10: #i1967# type correctness 2004/04/29 16:21:21 er 1.19.32.9: RESYNC: (1.21-1.23); FILE MERGED 2004/03/25 21:35:51 er 1.19.32.8: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/15 17:38:23 er 1.19.32.7: RESYNC: (1.20-1.21); FILE MERGED 2004/03/11 12:07:37 er 1.19.32.6: #i1967# type correctness 2004/02/13 11:33:16 er 1.19.32.5: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 14:07:26 er 1.19.32.4: RESYNC: (1.19-1.20); FILE MERGED 2004/02/04 11:28:00 er 1.19.32.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/16 17:42:41 er 1.19.32.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:28 er 1.19.32.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4a74b96d0ec8e6722872f6dce61334a767057d0d]

INTEGRATION: CWS rowlimit (1.40.14); FILE MERGED 2004/03/25 21:35:50 er 1.40.14.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/07 11:30:13 jmarmion 1.40.14.5: #i1967# step 5 changes. 2004/02/11 14:07:16 er 1.40.14.4: RESYNC: (1.41-1.42); FILE MERGED 2004/01/21 14:44:55 er 1.40.14.3: RESYNC: (1.40-1.41); FILE MERGED 2004/01/12 17:14:26 er 1.40.14.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:28 er 1.40.14.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [fe76b224c3bd6757ceb80eca40ce3954df780f9a]

INTEGRATION: CWS rowlimit (1.9.16); FILE MERGED 2004/03/25 21:35:50 er 1.9.16.4: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 12:07:37 er 1.9.16.3: #i1967# type correctness 2004/01/16 17:41:47 er 1.9.16.2: #i1967# typedef size_t SCSIZE 2004/01/09 20:50:31 er 1.9.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4f68cfdb41c287bb69451611e61e24630804cd41]

INTEGRATION: CWS rowlimit (1.2.344); FILE MERGED 2004/03/15 17:38:15 er 1.2.344.2: RESYNC: (1.2-1.3); FILE MERGED 2004/01/09 20:51:27 er 1.2.344.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1560d57f160451c314602fb008acadec09ec8306]

INTEGRATION: CWS rowlimit (1.12.74); FILE MERGED 2004/03/11 12:07:36 er 1.12.74.5: #i1967# type correctness 2004/03/07 11:30:13 jmarmion 1.12.74.4: #i1967# step 5 changes. 2004/02/13 11:33:16 er 1.12.74.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:25 er 1.12.74.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:27 er 1.12.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [03443c6e612b98f337177ec89f80195269c3b20f]

INTEGRATION: CWS rowlimit (1.9.202); FILE MERGED 2004/04/29 16:21:02 er 1.9.202.8: RESYNC: (1.10-1.11); FILE MERGED 2004/04/07 14:44:15 er 1.9.202.7: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/18 18:29:36 er 1.9.202.6: #i1967# type correctness 2004/03/15 17:38:06 er 1.9.202.5: RESYNC: (1.9-1.10); FILE MERGED 2004/03/11 12:07:36 er 1.9.202.4: #i1967# type correctness 2004/03/07 11:30:12 jmarmion 1.9.202.3: #i1967# step 5 changes. 2004/01/16 17:35:03 er 1.9.202.2: #i1967# typedef size_t SCSIZE 2004/01/09 20:50:30 er 1.9.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [87b4d1a9e228d14bd08445ca9eb80f8010db4cef]

INTEGRATION: CWS rowlimit (1.18.302); FILE MERGED 2004/04/07 14:44:14 er 1.18.302.6: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/25 21:35:49 er 1.18.302.5: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 12:07:35 er 1.18.302.4: #i1967# type correctness 2004/03/07 11:30:12 jmarmion 1.18.302.3: #i1967# step 5 changes. 2004/01/16 17:35:03 er 1.18.302.2: #i1967# typedef size_t SCSIZE 2004/01/09 20:50:29 er 1.18.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a0a06fc4ac84ac176f9d68d3c150aa7a581972b6]

INTEGRATION: CWS rowlimit (1.10.186); FILE MERGED 2004/04/07 14:44:14 er 1.10.186.6: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/18 18:29:35 er 1.10.186.5: #i1967# type correctness 2004/03/11 12:07:35 er 1.10.186.4: #i1967# type correctness 2004/03/08 13:19:33 er 1.10.186.3: #i1967# type correctness 2004/01/16 17:35:02 er 1.10.186.2: #i1967# typedef size_t SCSIZE 2004/01/09 20:50:29 er 1.10.186.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [19de36c648712a920a0a475de602bcbb2d397730]

INTEGRATION: CWS rowlimit (1.18.146); FILE MERGED 2004/03/15 17:37:58 er 1.18.146.4: RESYNC: (1.18-1.19); FILE MERGED 2004/03/07 11:30:12 jmarmion 1.18.146.3: #i1967# step 5 changes. 2004/01/13 17:04:13 er 1.18.146.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:26 er 1.18.146.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f05655b07a8e78da74177e91023f2ca60b451e58]

INTEGRATION: CWS rowlimit (1.18.146); FILE MERGED 2004/04/07 14:44:13 er 1.18.146.6: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/17 12:24:56 er 1.18.146.5: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/15 17:37:45 er 1.18.146.4: RESYNC: (1.18-1.19); FILE MERGED 2004/03/07 11:30:11 jmarmion 1.18.146.3: #i1967# step 5 changes. 2004/02/04 11:27:59 er 1.18.146.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/09 20:51:26 er 1.18.146.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [edd59691a6c341300a7c3a7028ab98804e64b9c3]

INTEGRATION: CWS rowlimit (1.4.202); FILE MERGED 2004/05/24 12:02:49 er 1.4.202.9: #i1967# replace the multiset equalness attempt with a unique set 2004/04/19 14:18:37 er 1.4.202.8: #i1967# get rid of SV_PTRARR_SORT, use STL multiset 2004/04/07 14:44:12 er 1.4.202.7: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/25 21:35:49 er 1.4.202.6: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/11 12:07:35 er 1.4.202.5: #i1967# type correctness 2004/03/07 11:30:11 jmarmion 1.4.202.4: #i1967# step 5 changes. 2004/01/15 17:56:06 er 1.4.202.3: #i1967# MAX...COUNT 2004/01/12 17:14:25 er 1.4.202.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:25 er 1.4.202.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2c1147f2d2955a45e9657c8b97dced8874f835fb]

INTEGRATION: CWS rowlimit (1.6.308); FILE MERGED 2004/04/29 16:20:53 er 1.6.308.6: RESYNC: (1.6-1.7); FILE MERGED 2004/03/11 12:07:35 er 1.6.308.5: #i1967# type correctness 2004/03/07 11:30:11 jmarmion 1.6.308.4: #i1967# step 5 changes. 2004/02/13 11:33:16 er 1.6.308.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/16 17:42:40 er 1.6.308.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:25 er 1.6.308.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [75e8b0201c6875bd3570255d96228d79f46d49c3]

INTEGRATION: CWS rowlimit (1.13.16); FILE MERGED 2004/03/16 09:40:38 er 1.13.16.7: #i1967# scope 2004/03/11 12:07:34 er 1.13.16.6: #i1967# type correctness 2004/03/07 11:30:10 jmarmion 1.13.16.5: #i1967# step 5 changes. 2004/02/13 11:33:16 er 1.13.16.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/02/11 14:07:06 er 1.13.16.3: RESYNC: (1.13-1.14); FILE MERGED 2004/01/16 17:35:02 er 1.13.16.2: #i1967# typedef size_t SCSIZE 2004/01/09 20:50:28 er 1.13.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7faede2bae365ca47333feb7a494b688e669238f]

INTEGRATION: CWS rowlimit (1.27.12); FILE MERGED 2004/03/03 13:13:46 er 1.27.12.2: #i1967# type correctness 2004/02/27 12:46:38 er 1.27.12.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2493608d4acf698f4e1f933066ef992cb4fd9a93]

INTEGRATION: CWS rowlimit (1.5.12); FILE MERGED 2004/03/15 17:39:29 er 1.5.12.2: RESYNC: (1.5-1.6); FILE MERGED 2004/03/03 13:13:46 er 1.5.12.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e4a4f1f2d0307c844fd25bc302e2e15734c16a2d]

INTEGRATION: CWS rowlimit (1.11.324); FILE MERGED 2003/11/28 19:47:28 er 1.11.324.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9db1a5faed8b0ec592573152e8f42cd3bc35e646]

INTEGRATION: CWS rowlimit (1.5.74); FILE MERGED 2004/01/12 17:15:10 er 1.5.74.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c203cb18323d0802c64769701b09ec4f7af7bac9]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/02/04 11:26:27 er 1.1.1.1.346.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2003/11/28 19:47:28 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [081f600362aae92e5de162a61d6ddfa1674a7634]

INTEGRATION: CWS rowlimit (1.2.18); FILE MERGED 2004/03/18 10:22:17 er 1.2.18.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [75d8d3738534e4f8f02b3e977d25c46273b56040]

INTEGRATION: CWS rowlimit (1.12.302); FILE MERGED 2003/11/28 19:47:27 er 1.12.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9e52ecce70f7bda8f6360a3ef8368f35679ab317]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2003/11/28 19:47:27 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [af95463a10cfb98e0e96258a5151f2e7ff47b94e]

INTEGRATION: CWS rowlimit (1.3.178); FILE MERGED 2003/12/12 12:44:49 er 1.3.178.2: RESYNC: (1.3-1.4); FILE MERGED 2003/11/28 19:47:27 er 1.3.178.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [32457ff69e87091d49f9b84dd190011eb1ca2b16]

INTEGRATION: CWS rowlimit (1.20.16); FILE MERGED 2004/04/07 14:44:12 er 1.20.16.13: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/11 12:05:48 er 1.20.16.12: #i1967# type correctness 2004/03/09 18:48:21 er 1.20.16.11: #i1967# type correctness 2004/03/09 18:37:01 er 1.20.16.10: #i1967# type correctness 2004/03/07 11:37:16 jmarmion 1.20.16.9: #i1967# step 5 changes. 2004/03/05 20:35:52 er 1.20.16.8: #i1967# type correctness 2004/03/05 12:22:13 er 1.20.16.7: #i1967# type correctness 2004/02/20 22:54:29 er 1.20.16.6: #i1967# type correctness 2004/02/11 14:12:04 er 1.20.16.5: RESYNC: (1.21-1.22); FILE MERGED 2004/01/21 14:47:09 er 1.20.16.4: RESYNC: (1.20-1.21); FILE MERGED 2004/01/16 17:39:48 er 1.20.16.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:15:08 er 1.20.16.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:05 er 1.20.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ebdd8ca9670c99e3722be7ab68cc06e045c36903]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/15 17:41:56 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/03/11 12:05:48 er 1.1.1.1.346.1: #i1967# type correctness


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [064f8ac2e22f92e91d4c0807329c1fc4d42f33e4]

INTEGRATION: CWS rowlimit (1.1.338); FILE MERGED 2004/02/24 20:20:21 er 1.1.338.3: #i1967# type correctness 2004/01/16 17:39:48 er 1.1.338.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:15:07 er 1.1.338.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [37b174912d9c1813a775ef87d4fc5b8f1ae6dfca]

INTEGRATION: CWS rowlimit (1.6.302); FILE MERGED 2003/11/28 19:47:27 er 1.6.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [bace9188b7ff86a94e10d5a32fc53f7ef8993fc7]

INTEGRATION: CWS rowlimit (1.2.18); FILE MERGED 2004/03/17 12:23:34 er 1.2.18.1: #i1967# type correctness (ScMatrix parameters are SCSIZE now)


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [409427907fd0262a4aab5273bc6c958debcb386c]

INTEGRATION: CWS rowlimit (1.1.338); FILE MERGED 2003/11/28 19:47:26 er 1.1.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9eeb6e9f86ae0329ab7c50f38fa49b858c20966a]

INTEGRATION: CWS rowlimit (1.6.202); FILE MERGED 2004/03/25 20:28:42 er 1.6.202.7: #i1967# use ValidCol,ValidRow,ValidTab 2004/03/19 16:19:55 er 1.6.202.6: #i1967# type correctness (pass SCTAB to ScExtDocOptions::SetExtTabOptions()/GetExtTabOptions()) 2004/03/15 17:41:22 er 1.6.202.5: RESYNC: (1.7-1.8); FILE MERGED 2004/01/16 17:39:47 er 1.6.202.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:15:07 er 1.6.202.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/12 12:44:36 er 1.6.202.2: RESYNC: (1.6-1.7); FILE MERGED 2003/11/28 19:47:26 er 1.6.202.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [996b0393d447d3f5b5c5a83eed5d60e49b9f51c9]

INTEGRATION: CWS rowlimit (1.3.74); FILE MERGED 2004/01/16 17:39:47 er 1.3.74.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:26 er 1.3.74.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3b02af4a6d25890892a483f84c8ab4d96a075bf9]

INTEGRATION: CWS rowlimit (1.3.302); FILE MERGED 2004/02/04 11:26:27 er 1.3.302.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/12 17:15:06 er 1.3.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [957c12505fec31cc0dcf265ef55b8fdbfe9f6ad7]

INTEGRATION: CWS rowlimit (1.5.302); FILE MERGED 2004/01/12 17:15:05 er 1.5.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:25 er 1.5.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [eac4aa9efa38e197835a37edd2e34a72b31c4bb2]

INTEGRATION: CWS rowlimit (1.2.334); FILE MERGED 2004/01/12 17:15:04 er 1.2.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:25 er 1.2.334.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [760c4ef99f66bd2259a0dfbc6f62ae171cb65e03]

INTEGRATION: CWS rowlimit (1.2.16); FILE MERGED 2004/03/05 17:11:41 er 1.2.16.2: #i1967# type correctness 2004/01/12 17:15:03 er 1.2.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [159cf7a5f9deb54f61975e4b4416af17628402d4]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/29 16:16:52 er 1.1.1.1.346.8: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/03/11 12:05:48 er 1.1.1.1.346.7: #i1967# type correctness 2004/03/03 21:35:26 er 1.1.1.1.346.6: #i1967# type correctness 2004/02/26 17:29:22 jmarmion 1.1.1.1.346.5: #i1967# step 5 changes. 2004/01/16 17:39:47 er 1.1.1.1.346.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:15:03 er 1.1.1.1.346.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:04 er 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/11/28 19:47:24 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [79226ad2a9833f0dd4d25e223f0269741157c493]

INTEGRATION: CWS rowlimit (1.1.2); FILE ADDED 2004/02/04 11:26:27 er 1.1.2.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2003/11/28 19:46:36 er 1.1.2.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3f3857d48e2ada135ab59c420fa8d55073918a2f]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/29 16:16:43 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2003/11/28 19:47:24 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [5c502a6370f71916b358967e5461d13cb7768d34]

INTEGRATION: CWS rowlimit (1.2.304); FILE MERGED 2004/03/11 12:05:48 er 1.2.304.6: #i1967# type correctness 2004/03/07 11:38:44 jmarmion 1.2.304.5: #i1967# step 5 changes. 2004/02/26 19:42:13 er 1.2.304.4: #i1967# type correctness 2004/02/26 17:29:21 jmarmion 1.2.304.3: #i1967# step 5 changes. 2004/02/20 22:54:28 er 1.2.304.2: #i1967# type correctness 2004/01/12 17:15:03 er 1.2.304.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [be6db8a762d75c8b8d77e3e1febc6975937208f8]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2003/11/28 19:47:24 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2a4ab57a8664c2b3d08f16efedea94a54ec9047b]

INTEGRATION: CWS rowlimit (1.2.346); FILE MERGED 2003/11/28 19:47:24 er 1.2.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [abded2d76e6c538daacdf925b07088a571f54d90]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/02/20 22:54:28 er 1.1.1.1.346.4: #i1967# type correctness 2004/01/16 17:39:46 er 1.1.1.1.346.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:04 er 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/11/28 19:47:23 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [16097e54c15069abb79e435bbfe7f2f579dcf166]

INTEGRATION: CWS rowlimit (1.2.322); FILE MERGED 2004/01/16 17:39:11 er 1.2.322.2: #i1967# typedef size_t SCSIZE 2004/01/09 20:50:00 er 1.2.322.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [dc119ca96490b68a0608395a724831a2b36045b3]

INTEGRATION: CWS rowlimit (1.2.40); FILE MERGED 2003/11/28 19:47:23 er 1.2.40.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [ef6e9b98055a671543f8e76932046aa3adaf736d]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/29 16:14:32 er 1.1.1.1.346.4: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/01/16 17:39:46 er 1.1.1.1.346.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:15:02 er 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:23 er 1.1.1.1.346.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [dece456c57ed111e65f1cdc8692b30e0949f3d54]

INTEGRATION: CWS rowlimit (1.4.74); FILE MERGED 2003/11/28 19:47:22 er 1.4.74.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a7604b32592b000d1ebd136ca21ffcab73a34753]

INTEGRATION: CWS rowlimit (1.5.302); FILE MERGED 2003/11/28 19:47:22 er 1.5.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [47d5fd5ccd24b3c644a22529785d2202bf807e73]

INTEGRATION: CWS rowlimit (1.2.334); FILE MERGED 2004/01/12 17:15:00 er 1.2.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:21 er 1.2.334.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c999eca88b838f9e1eafc8af473799a441672386]

INTEGRATION: CWS rowlimit (1.5.302); FILE MERGED 2004/01/16 17:39:45 er 1.5.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:59 er 1.5.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [da4fe1085284c93cdf18ec942ae24117446f9591]

INTEGRATION: CWS rowlimit (1.13.310); FILE MERGED 2003/11/28 19:47:21 er 1.13.310.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7cdb9ac31162c11676d0305568f27e4ae377d942]

INTEGRATION: CWS rowlimit (1.8.302); FILE MERGED 2004/02/11 14:11:31 er 1.8.302.4: RESYNC: (1.9-1.10); FILE MERGED 2004/01/12 17:14:58 er 1.8.302.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/12 12:43:58 er 1.8.302.2: RESYNC: (1.8-1.9); FILE MERGED 2003/11/28 19:47:21 er 1.8.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [525636d52f35d178d74e4ed6b251ca4775284406]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/04/29 16:16:02 er 1.1.1.1.346.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2004/01/16 17:39:45 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d64f6f15e51caedafdf57a301b8614c4502f9290]

INTEGRATION: CWS rowlimit (1.2.304); FILE MERGED 2003/11/28 19:47:20 er 1.2.304.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [4ba51414fb43dbc07a5bcd68fc8d51569c324d75]

INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED 2004/04/29 16:15:43 er 1.2.338.3: RESYNC: (1.2-1.3); FILE MERGED 2004/01/12 17:14:58 er 1.2.338.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:20 er 1.2.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [d3e916ce5514e0afa34e3fb367ae3ddfce179887]

INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED 2004/04/29 16:15:35 er 1.2.338.6: RESYNC: (1.2-1.3); FILE MERGED 2004/03/11 12:05:47 er 1.2.338.5: #i1967# type correctness 2004/03/07 11:39:33 jmarmion 1.2.338.4: #i1967# step 5 changes. 2004/02/24 20:20:20 er 1.2.338.3: #i1967# type correctness 2004/01/12 17:14:57 er 1.2.338.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:20 er 1.2.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9b3f05f60edf7bebee248a3c5324b305fdf5a5c5]

INTEGRATION: CWS rowlimit (1.15.56); FILE MERGED 2004/03/15 17:40:36 er 1.15.56.5: RESYNC: (1.15-1.16); FILE MERGED 2004/02/27 15:58:23 jmarmion 1.15.56.4: #i1967# step 5 changes. 2004/01/16 17:39:45 er 1.15.56.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:57 er 1.15.56.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:19 er 1.15.56.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c7c0057446fd4cfd16ca8a7588554e7d26301721]

INTEGRATION: CWS rowlimit (1.69.26); FILE MERGED 2004/04/29 16:15:22 er 1.69.26.28: RESYNC: (1.74-1.75); FILE MERGED 2004/04/07 14:44:12 er 1.69.26.27: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/04/06 14:17:05 er 1.69.26.26: #i1967# change REPEAT_NONE to SCCOL_REPEAT_NONE,SCROW_REPEAT_NONE 2004/04/05 14:45:21 er 1.69.26.25: #i1967# move BCA_BRDCST_ALWAYS,BCA_LISTEN_ALWAYS to address.hxx 2004/03/31 17:47:27 er 1.69.26.24: #i1967# replace some USHRT_MAX with appropriate SCCOL_MAX,SCROW_MAX,SCTAB_MAX 2004/03/18 17:34:00 er 1.69.26.23: #i1967# type correctness 2004/03/15 17:40:28 er 1.69.26.22: RESYNC: (1.72-1.74); FILE MERGED 2004/03/11 12:05:47 er 1.69.26.21: #i1967# type correctness 2004/03/09 20:00:36 er 1.69.26.20: #i1967# type correctness 2004/03/09 19:46:40 er 1.69.26.19: #i1967# type correctness 2004/03/09 19:00:40 er 1.69.26.18: #i1967# type correctness 2004/03/09 18:48:21 er 1.69.26.17: #i1967# type correctness 2004/03/09 18:37:00 er 1.69.26.16: #i1967# type correctness 2004/03/07 11:44:24 jmarmion 1.69.26.15: #i1967# step 5 changes. 2004/03/05 20:35:51 er 1.69.26.14: #i1967# type correctness 2004/03/03 15:54:05 er 1.69.26.13: #i1967# type correctness 2004/02/27 17:20:20 er 1.69.26.12: #i1967# type correctness 2004/02/24 23:03:46 er 1.69.26.11: #i1967# type correctness 2004/02/20 22:54:28 er 1.69.26.10: #i1967# type correctness 2004/02/16 17:23:26 er 1.69.26.9: #i1967# type changes 2004/02/11 14:11:22 er 1.69.26.8: RESYNC: (1.71-1.72); FILE MERGED 2004/02/04 11:26:26 er 1.69.26.7: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/16 17:39:44 er 1.69.26.6: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/15 19:51:38 er 1.69.26.5: #i1967# move SC_TAB_APPEND constant from document.hxx to address.hxx 2004/01/12 17:14:56 er 1.69.26.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:04 er 1.69.26.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/12/12 12:43:39 er 1.69.26.2: RESYNC: (1.69-1.71); FILE MERGED 2003/11/28 19:47:19 er 1.69.26.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c78b9932559714f2f435d582d4f31e8eba527c41]

INTEGRATION: CWS rowlimit (1.3.324); FILE MERGED 2004/01/16 17:39:10 er 1.3.324.3: #i1967# typedef size_t SCSIZE 2004/01/09 20:50:00 er 1.3.324.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t 2003/11/28 19:47:18 er 1.3.324.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [b3882aa9f5063ad55bc110003679297cc54ce1a1]

INTEGRATION: CWS rowlimit (1.6.310); FILE MERGED 2004/02/04 11:26:25 er 1.6.310.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/12 17:14:56 er 1.6.310.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8736a0534089e7c45560721b1be311a0ce6a5494]

INTEGRATION: CWS rowlimit (1.2.302); FILE MERGED 2004/01/12 17:14:55 er 1.2.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:18 er 1.2.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [21b7b516c5bdb5f43cdbf74b17fd218c872b9e69]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/12 17:14:55 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [afbffd6215aec43644eb9f16147d8eeaedb5486b]

INTEGRATION: CWS rowlimit (1.1.344); FILE MERGED 2004/01/12 17:14:55 er 1.1.344.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [17950f7a703ef6404bb5878c774650d66317042b]

INTEGRATION: CWS rowlimit (1.5.334); FILE MERGED 2004/03/05 17:11:40 er 1.5.334.6: #i1967# type correctness 2004/03/05 12:22:13 er 1.5.334.5: #i1967# type correctness 2004/02/26 19:42:12 er 1.5.334.4: #i1967# type correctness 2004/01/12 17:14:54 er 1.5.334.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:12 er 1.5.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/11/28 19:47:18 er 1.5.334.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1298be0636a50860acee4f8fdbf9b5fe76657370]

INTEGRATION: CWS rowlimit (1.3.324); FILE MERGED 2004/04/29 16:14:58 er 1.3.324.4: RESYNC: (1.3-1.4); FILE MERGED 2004/03/01 17:44:06 er 1.3.324.3: #i1967# type correctness 2004/02/27 12:13:37 jmarmion 1.3.324.2: #i1967# setp 5 changes. 2004/01/16 17:39:44 er 1.3.324.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [2451ceec69abb52cadb9ad48c46cbf91e0df3f98]

INTEGRATION: CWS rowlimit (1.3.340); FILE MERGED 2004/02/20 22:54:28 er 1.3.340.3: #i1967# type correctness 2004/01/16 17:39:43 er 1.3.340.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:17 er 1.3.340.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [6dd97b0c27e40d4a26dfa1c09bbcd223d547d3f4]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/03/05 17:11:39 er 1.1.1.1.346.4: #i1967# type correctness 2004/02/26 21:02:28 er 1.1.1.1.346.3: #i1967# type correctness 2004/01/12 17:14:54 er 1.1.1.1.346.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/12/19 20:16:11 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [9f8392da649c1335083bd9d4f00dfbec9073ad03]

INTEGRATION: CWS rowlimit (1.4.308); FILE MERGED 2004/03/05 12:22:13 er 1.4.308.3: #i1967# type correctness 2004/01/12 17:14:53 er 1.4.308.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:17 er 1.4.308.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [3b42f55f412cbc8a43a2bfa30fe4fd3fc8e78e77]

INTEGRATION: CWS rowlimit (1.8.302); FILE MERGED 2004/04/07 14:44:11 er 1.8.302.9: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/11 12:05:47 er 1.8.302.8: #i1967# type correctness 2004/03/08 12:33:19 er 1.8.302.7: #i1967# type correctness 2004/03/07 11:41:47 jmarmion 1.8.302.6: #i1967# step 5 changes. 2004/03/05 20:35:51 er 1.8.302.5: #i1967# type correctness 2004/02/20 22:54:28 er 1.8.302.4: #i1967# type correctness 2004/01/16 17:37:29 er 1.8.302.3: #i1967# typedef size_t SCSIZE 2004/01/09 20:49:59 er 1.8.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t 2003/11/28 19:47:17 er 1.8.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [c2acd4df90c19cb43d79c861be48c04682c0c858]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/12 17:14:52 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [861b9192343716088d0f48d0f1ef9311497d8058]

INTEGRATION: CWS rowlimit (1.18.72); FILE MERGED 2004/03/15 17:40:12 er 1.18.72.7: RESYNC: (1.19-1.20); FILE MERGED 2004/03/05 12:22:13 er 1.18.72.6: #i1967# type correctness 2004/02/16 17:23:26 er 1.18.72.5: #i1967# type changes 2004/02/13 11:31:31 er 1.18.72.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/21 14:47:25 er 1.18.72.3: RESYNC: (1.18-1.19); FILE MERGED 2004/01/16 17:39:43 er 1.18.72.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:52 er 1.18.72.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [74152c777b063bc3369043d7b1b128f359ddf141]

INTEGRATION: CWS rowlimit (1.2.340); FILE MERGED 2004/01/16 17:39:42 er 1.2.340.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [304860953fc106ef4e8b54eb6df96e04455a415a]

INTEGRATION: CWS rowlimit (1.3.314); FILE MERGED 2004/04/07 14:44:11 er 1.3.314.2: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/01/12 17:14:52 er 1.3.314.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [8d43a55e079dd588959db20ded5800040da42b48]

INTEGRATION: CWS rowlimit (1.3.332); FILE MERGED 2004/03/18 19:40:01 er 1.3.332.2: #i1967# type correctness (ScChartPositionMap using SCSIZE) 2004/01/12 17:14:51 er 1.3.332.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [f0f2e62c301507f1edfbd709cfa2e144e7ce6441]

INTEGRATION: CWS rowlimit (1.18.36); FILE MERGED 2004/04/29 16:14:49 er 1.18.36.2: RESYNC: (1.18-1.19); FILE MERGED 2004/01/12 17:14:51 er 1.18.36.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [80b481887577d532d21b5e4da50824b3ee82d896]

INTEGRATION: CWS rowlimit (1.10.178); FILE MERGED 2004/04/07 14:44:10 er 1.10.178.6: #i1967# #i5062# replace Sfx(Broadcaster|Listener) with Svt(Broadcaster|Listener) for mass objects like formula cells 2004/03/17 12:23:33 er 1.10.178.5: #i1967# type correctness (ScMatrix parameters are SCSIZE now) 2004/03/15 17:39:45 er 1.10.178.4: RESYNC: (1.10-1.11); FILE MERGED 2004/03/05 12:22:13 er 1.10.178.3: #i1967# type correctness 2004/02/04 11:26:25 er 1.10.178.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/12 17:14:50 er 1.10.178.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [e3426e3b99b6be0cbed4c6ccdce5418a6b3c5923]

INTEGRATION: CWS rowlimit (1.3.302); FILE MERGED 2003/11/28 19:47:16 er 1.3.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [13764a9a18d99bd96bc6334218e6def2d1eb3baa]

INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED 2004/01/12 17:14:50 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [1dbb3cad8a2c4664fb34f488d766d904545a5987]

INTEGRATION: CWS rowlimit (1.2.334); FILE MERGED 2004/04/29 16:14:41 er 1.2.334.3: RESYNC: (1.2-1.3); FILE MERGED 2004/01/16 17:39:42 er 1.2.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:16 er 1.2.334.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [92cd7f58664d820d28d1e01a881bca8182829673]

INTEGRATION: CWS rowlimit (1.4.302); FILE MERGED 2004/03/11 12:05:47 er 1.4.302.4: #i1967# type correctness 2004/02/20 22:54:27 er 1.4.302.3: #i1967# type correctness 2004/01/16 17:37:28 er 1.4.302.2: #i1967# typedef size_t SCSIZE 2004/01/09 20:49:59 er 1.4.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; arrays have size_t


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [bee876c2f3f92b0f625d3a1c5c35f50f884b149d]

INTEGRATION: CWS rowlimit (1.5.334); FILE MERGED 2003/11/28 19:47:16 er 1.5.334.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [7f530b3f74e53d54456cc7ef7884a161fa302b26]

INTEGRATION: CWS rowlimit (1.2.40); FILE MERGED 2003/11/28 19:47:15 er 1.2.40.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [513e436379a854818a32cd7c98e388251d6d5c20]

INTEGRATION: CWS rowlimit (1.1.2); FILE ADDED 2004/05/17 16:09:39 er 1.1.2.28: #i1967# move TABLEID_DOC from viewfunc.hxx and assign proper value 2004/05/06 15:59:37 er 1.1.2.27: #i1967# remove some TODOs 2004/04/06 14:17:05 er 1.1.2.26: #i1967# change REPEAT_NONE to SCCOL_REPEAT_NONE,SCROW_REPEAT_NONE 2004/04/05 14:45:58 er 1.1.2.25: #i1967# move BCA_BRDCST_ALWAYS,BCA_LISTEN_ALWAYS from document.hxx and adjust to SCROW_MAX 2004/04/01 21:01:59 er 1.1.2.24: #i1967# xub_StrLen cast 2004/04/01 17:11:52 er 1.1.2.23: #i1967# switch to signed types and 64k rows 2004/03/25 22:23:05 er 1.1.2.22: #i1967# AlphaToCol() extra parameters not needed 2004/03/25 17:46:14 er 1.1.2.21: #i1967# consolidate ColToAlpha,AlphaToCol methods 2004/03/11 13:57:24 er 1.1.2.20: #i1967# MSC confuses numeric_limit max() with macro max() 2004/03/11 12:57:09 er 1.1.2.19: #i1967# hngngn.. resolve size_t Max() ambiguity too 2004/03/11 12:39:05 er 1.1.2.18: #i1967# resolve size_t Min() ambiguity 2004/03/11 12:05:46 er 1.1.2.17: #i1967# type correctness 2004/03/08 13:17:29 er 1.1.2.16: #i1967# restructure some portions 2004/02/20 16:42:32 er 1.1.2.15: #i1967# correct copy&paste error 2004/02/16 13:14:56 er 1.1.2.14: #i1967# MAXCOLROWCOUNT = MAXROWCOUNT 2004/02/04 11:26:25 er 1.1.2.13: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/26 15:10:59 er 1.1.2.12: #i1967# implement ScAddress::Set() method 2004/01/23 18:14:14 er 1.1.2.11: #i1967# restructure ScAddress to use SCCOL/SCROW/SCTAB instead of one single UINT32; make converting ctors explicit 2004/01/16 17:35:39 er 1.1.2.10: #i1967# typedef size_t SCSIZE 2004/01/15 19:51:39 er 1.1.2.9: #i1967# move SC_TAB_APPEND constant from document.hxx to address.hxx 2004/01/15 18:02:17 er 1.1.2.8: #i1967# MAX...COUNT 2004/01/15 15:15:13 er 1.1.2.7: #i1967# add SCCOLROW, SCsCOLROW 2004/01/15 11:03:09 er 1.1.2.6: #i1967# define SC_ROWLIMIT_MORE_THAN_64K 0 2004/01/13 16:48:53 er 1.1.2.5: #i1967# add ValidTab with maxtab 2004/01/12 17:14:50 er 1.1.2.4: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/09 20:51:03 er 1.1.2.3: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/12/19 20:16:11 er 1.1.2.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT 2003/11/28 19:46:26 er 1.1.2.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [caea01bca643d786cbe4312d4410b0473a9c6650]

INTEGRATION: CWS rowlimit (1.4.302); FILE MERGED 2004/03/15 17:39:53 er 1.4.302.2: RESYNC: (1.4-1.5); FILE MERGED 2003/11/28 19:47:15 er 1.4.302.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [811b100a146b7447346511f10a735abebe98b8ab]

INTEGRATION: CWS sb18 (1.3.30); FILE MERGED 2004/05/18 09:55:22 sb 1.3.30.1: #i21150# Missing includes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [a331234079a4abe683a6e0787fee20c7c8cd8291]

INTEGRATION: CWS sb18 (1.1.1.1.30); FILE MERGED 2004/05/18 09:55:22 sb 1.1.1.1.30.1: #i21150# Missing includes.


2004-06-04  Oliver Bolte  <obo@openoffice.org>  [116071c8e742f529f3378a72aad2525032fc9140]

INTEGRATION: CWS sb18 (1.5.26); FILE MERGED 2004/05/18 09:56:52 sb 1.5.26.1: #i21150# javamaker now directly generates .class files instead of .java files.


2004-06-03  Oliver Bolte  <obo@openoffice.org>  [2668064baf2b2b395152674444edfa2bb0e2b025]

INTEGRATION: CWS calcfixer (1.3.102); FILE MERGED 2004/05/06 16:41:15 er 1.3.102.1: #i26407# loosen dbase filter detection to recognize headers wrongly padded with 0x00 to reach an even boundary


2004-06-03  Oliver Bolte  <obo@openoffice.org>  [c906919f275ddb322a1b37a5e611f5f870e38372]

INTEGRATION: CWS calcfixer (1.27.70); FILE MERGED 2004/05/06 17:20:23 er 1.27.70.1: #i25924#,#i17664# DoubleRefToPosSingleRef: a singleton (B2:B2) is always valid


2004-06-03  Oliver Bolte  <obo@openoffice.org>  [4bcc6486e8e2b29d04232a2dbe48ee66e234f1d4]

INTEGRATION: CWS calcfixer (1.16.70); FILE MERGED 2004/05/10 18:03:03 er 1.16.70.2: #71669# correct description 2004/05/10 17:49:46 er 1.16.70.1: #71669# ScGetDiffDate360: implementation follows PSA 30/360, NSDA 30/360


2004-06-03  Oliver Bolte  <obo@openoffice.org>  [38d9a11756da9e69afa7842b63df49ffd61fc65e]

INTEGRATION: CWS calcfixer (1.27.70); FILE MERGED 2004/05/06 15:33:42 er 1.27.70.1: #i26411# ScDBCount2: allow 0 (missing field) as second parameter again


2004-05-19  Rüdiger Timm  <rt@openoffice.org>  [d67bd763c92104ce99fdb0ca521595e59f32a967]

INTEGRATION: CWS scriptingf4 (1.10.14); FILE MERGED 2004/04/27 14:15:16 toconnor 1.10.14.1: #i28384# - implement Macro Selector specification


2004-05-19  Rüdiger Timm  <rt@openoffice.org>  [88b0ce6d1df9ced1add525562aa3377ce2acbe9b]

INTEGRATION: CWS scriptingf4 (1.2.22); FILE MERGED 2004/04/29 14:17:31 dfoster 1.2.22.3: #i26923# 2004/04/28 10:16:46 dfoster 1.2.22.2: #i26923# 2004/03/24 13:18:32 dfoster 1.2.22.1: #i26923# Implmentation of the Script Organizer spec.


2004-05-19  Rüdiger Timm  <rt@openoffice.org>  [bbab299dc6d63786897cf14c7649568809586411]

INTEGRATION: CWS scriptingf4 (1.10.138); FILE MERGED 2004/04/27 14:15:15 toconnor 1.10.138.1: #i28384# - implement Macro Selector specification


2004-05-19  Rüdiger Timm  <rt@openoffice.org>  [9b651ecf9cdf04a80fb709f64daa129da3838976]

INTEGRATION: CWS scriptingf4 (1.5.138); FILE MERGED 2004/04/27 14:15:15 toconnor 1.5.138.1: #i28384# - implement Macro Selector specification


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [23e50d16820532a0e4bf25a8a65df1742ba6a686]

INTEGRATION: CWS bmpres01 (1.22.26); FILE MERGED 2004/04/27 14:32:05 ka 1.22.26.1: using new resource structure for images


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [3f7301f524e5c6ffaa64084ec72ad96fcdd52f7c]

INTEGRATION: CWS bmpres01 (1.3.364); FILE MERGED 2004/02/13 10:29:28 ka 1.3.364.1: #i22149#: support for alpha masks


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [6f1cff8cc83dd389de116438566cd1dc2d5b35ec]

INTEGRATION: CWS bmpres01 (1.22.150); FILE MERGED 2004/04/27 14:32:05 ka 1.22.150.1: using new resource structure for images


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [5075aab7db94896f5e683de8222969f3740701a3]

INTEGRATION: CWS bmpres01 (1.3.112); FILE MERGED 2004/04/27 14:32:04 ka 1.3.112.1: using new resource structure for images


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [9f9a77a112d8dd3b9ec60255ca75ca8d6165d47d]

INTEGRATION: CWS bmpres01 (1.60.24); FILE MERGED 2004/04/27 21:53:53 ka 1.60.24.2: RESYNC: (1.60-1.62); FILE MERGED 2004/04/27 14:32:03 ka 1.60.24.1: using new resource structure for images


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [5460fdedce599561a7453ff2df732059a2521b39]

INTEGRATION: CWS bmpres01 (1.3.112); FILE MERGED 2004/04/27 14:32:03 ka 1.3.112.1: using new resource structure for images


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [3e116620f2c12a9526dd37774f542ab5f8318709]

INTEGRATION: CWS bmpres01 (1.38.56); FILE MERGED 2004/04/27 14:32:01 ka 1.38.56.1: using new resource structure for images


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [d028f2206b5880929360f682f8fe81693009e304]

INTEGRATION: CWS bmpres01 (1.2.112); FILE MERGED 2004/04/27 14:32:01 ka 1.2.112.1: using new resource structure for images


2004-05-19  Kurt Zenker  <kz@openoffice.org>  [353bb1d1f33c0aa7614679a20055be181a62c0b3]

INTEGRATION: CWS bmpres01 (1.6.364); FILE MERGED 2004/04/27 14:32:00 ka 1.6.364.1: using new resource structure for images


2004-05-18  Kurt Zenker  <kz@openoffice.org>  [42d6bdf3eeee2de9efe365e73f171fc98c5c0775]

INTEGRATION: CWS bmpres01 (1.4.14); FILE MERGED 2004/04/27 14:31:03 ka 1.4.14.1: using new resource structure for images


2004-05-18  Kurt Zenker  <kz@openoffice.org>  [ded7e3a6d26e9e81847e951e3071586f3ee077ed]

INTEGRATION: CWS bmpres01 (1.4.16); FILE MERGED 2004/04/27 14:31:03 ka 1.4.16.1: using new resource structure for images


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [30b5471734010c62a985301dd5302ff7e664d6b4]

INTEGRATION: CWS dr17 (1.7.62); FILE MERGED 2004/04/20 13:39:20 dr 1.7.62.1: #i27658# added ScFuncDesc::GetParamList()


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [592edc2518049958dfb11a0ad1910df0a280f049]

INTEGRATION: CWS dr17 (1.3.452); FILE MERGED 2004/04/17 18:16:39 dr 1.3.452.1: #i26500# do not delete a void*


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [1a3ff916bbfded8c63e53f070b63707da130acbb]

INTEGRATION: CWS dr17 (1.65.38); FILE MERGED 2004/04/20 12:20:45 dr 1.65.38.2: #i27879# export of spin buttons and scroll bars - min/max handling corrected 2004/04/16 13:55:08 dr 1.65.38.1: #i27879# export of scrollbar/spinbutton


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [ef654fd8ceb46f0df5255c37e3b30bca9e8c1734]

INTEGRATION: CWS dr17 (1.9.90); FILE MERGED 2004/04/19 16:10:09 dr 1.9.90.2: #i27879# import of spin buttons and scroll bars 2004/04/19 07:58:57 dr 1.9.90.1: #116397# chart import: use palette colors instead of RGB values


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [3bdd2f3093c0247cd436eb89e414fae5a0def30a]

INTEGRATION: CWS dr17 (1.7.62); FILE MERGED 2004/04/16 13:54:39 dr 1.7.62.2: #i27879# export of scrollbar/spinbutton 2004/04/16 13:02:32 dr 1.7.62.1: #i27879# import of scrollbar/spinbutton


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [37d9ff218bec7d384147ef8df29109c767f427cb]

INTEGRATION: CWS dr17 (1.6.62); FILE MERGED 2004/04/16 13:02:33 dr 1.6.62.1: #i27879# import of scrollbar/spinbutton


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [bb303ab815909d7e6e07157fc3ddc76e9eb3c0d7]

INTEGRATION: CWS dr17 (1.35.38); FILE MERGED 2004/04/16 13:54:39 dr 1.35.38.1: #i27879# export of scrollbar/spinbutton


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [d71b1f587237abfb742dc7c7946f59211740a36a]

INTEGRATION: CWS dr17 (1.8.134); FILE MERGED 2004/04/17 18:05:16 dr 1.8.134.1: #i27379# loop if final </pre> tag is missing


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [72591c245af9912f4b287db63c3d892a3298335f]

INTEGRATION: CWS dr17 (1.8.4); FILE MERGED 2004/04/16 13:54:39 dr 1.8.4.1: #i27879# export of scrollbar/spinbutton


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [625e9ee90f5419ddebbaa5255230b9a5f4ea0d7e]

INTEGRATION: CWS dr17 (1.18.90); FILE MERGED 2004/04/17 18:04:58 dr 1.18.90.1: #i27379# loop if final </pre> tag is missing


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [d3d062b1ab8f5999f00c057b4d2654f764331dc8]

INTEGRATION: CWS dr17 (1.9.108); FILE MERGED 2004/04/19 16:09:53 dr 1.9.108.2: #i27879# import of spin buttons and scroll bars 2004/04/19 07:59:37 dr 1.9.108.1: #116397# chart import: use palette colors instead of RGB values


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [0cbf6e0d77ee051ba1291c840bd3057ba0596d72]

INTEGRATION: CWS dr17 (1.14.8); FILE MERGED 2004/04/19 16:09:53 dr 1.14.8.2: #i27879# import of spin buttons and scroll bars 2004/04/16 13:03:32 dr 1.14.8.1: #i27879# import of scrollbar/spinbutton


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [abe1d209126e9a24c1381a2e5e815402836e7921]

INTEGRATION: CWS dr17 (1.7.62); FILE MERGED 2004/04/17 17:54:12 dr 1.7.62.1: #115849# no assertion on creation of link manager


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [5c2c6d7ca5f2217d108116564af40588bc66884f]

INTEGRATION: CWS dr17 (1.62.60); FILE MERGED 2004/04/19 16:09:52 dr 1.62.60.3: #i27879# import of spin buttons and scroll bars 2004/04/17 18:20:45 dr 1.62.60.2: #i25430# system path delimiter, typos 2004/04/16 12:58:22 dr 1.62.60.1: #100000#


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [8bc234cd38117315d494d5d5750831101a3998ab]

INTEGRATION: CWS dr17 (1.36.58); FILE MERGED 2004/04/20 13:39:03 dr 1.36.58.1: #i27658# added ScFuncDesc::GetParamList()


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [8d20b534009019545411ab97056732df66a4ef25]

INTEGRATION: CWS dr17 (1.30.4); FILE MERGED 2004/04/20 13:38:48 dr 1.30.4.1: #i27658# added ScFuncDesc::GetParamList()


2004-05-18  Rüdiger Timm  <rt@openoffice.org>  [e41ef23ab4ee4cd5f1f562811cbdc08b8f866bee]

INTEGRATION: CWS dr17 (1.61.14); FILE MERGED 2004/04/17 18:30:40 dr 1.61.14.1: #i19526# typo in German EOMONTH descr


2004-05-17  Kurt Zenker  <kz@openoffice.org>  [983f85b6281f7a429da1af106a3118b2f09cfecd]

INTEGRATION: CWS os17 (1.7.48); FILE MERGED 2004/04/29 11:57:05 os 1.7.48.1: #i18735# activate and select the sheet under the mouse on the call of the context menu


2004-05-17  Kurt Zenker  <kz@openoffice.org>  [45a1613b06d8af05fe01ba76a06aa7a59baacd69]

INTEGRATION: CWS os17 (1.11.94); FILE MERGED 2004/03/15 13:34:03 os 1.11.94.3: RESYNC: (1.13-1.14); FILE MERGED 2004/02/27 14:50:38 os 1.11.94.2: RESYNC: (1.11-1.13); FILE MERGED 2003/11/07 17:58:25 nn 1.11.94.1: #i18735# Update selection before opening context menu


2004-05-17  Kurt Zenker  <kz@openoffice.org>  [c4e6536b12faa8cb0b3c5ce9332b851bbe5bf4e1]

INTEGRATION: CWS os17 (1.44.6); FILE MERGED 2004/04/28 12:03:22 os 1.44.6.4: RESYNC: (1.49-1.51); FILE MERGED 2004/03/15 13:33:55 os 1.44.6.3: RESYNC: (1.47-1.49); FILE MERGED 2004/02/27 14:49:46 os 1.44.6.2: RESYNC: (1.44-1.47); FILE MERGED 2003/11/07 16:54:41 nn 1.44.6.1: #i18735# Update selection before opening context menu


2004-05-17  Kurt Zenker  <kz@openoffice.org>  [3adc19b7a80d12b8ed9bdc9b8a9af240eeb1e859]

INTEGRATION: CWS os17 (1.12.6); FILE MERGED 2004/04/28 11:58:05 os 1.12.6.2: RESYNC: (1.12-1.14); FILE MERGED 2003/11/07 16:54:06 nn 1.12.6.1: #i18735# Update selection before opening context menu


2004-05-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [4a8f0bfd9a959f11718aa173e34e48222944ce35]

#i10000#: wrong includes


2004-05-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [83eb918a21603e8aa0acf6de4ddff31ca0b03211]

#i10000#: cast


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [9060b2bd7bfba1b44f42494e2d3789066ed80f4e]

INTEGRATION: CWS fwkbugfix02 (1.4.12); FILE MERGED 2004/04/30 08:12:04 mav 1.4.12.2: #116056# interfaces review 2004/04/20 07:41:16 mav 1.4.12.1: #116056# interfaces review


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f4c784019709f052e1baf1fb9625a7ef4938cb9e]

INTEGRATION: CWS fwkbugfix02 (1.6.12); FILE MERGED 2004/04/30 08:12:03 mav 1.6.12.2: #116056# interfaces review 2004/04/20 07:41:16 mav 1.6.12.1: #116056# interfaces review


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [7be003a9399370e4cf59fe49497784ed35052bb3]

INTEGRATION: CWS fwkbugfix02 (1.1.12); FILE MERGED 2004/04/20 08:22:21 mav 1.1.12.1: #116056# interfaces review


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [7c778dae2551c5c4524ae7307aefaefe13d48dad]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:43:10 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [58829a886d27956bce77a568a2e528b8dad86e7e]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:42:55 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [383301231f4f77f6cbdcb58c7be195b86924213a]

INTEGRATION: CWS dialogdiet01 (1.22.32); FILE MERGED 2004/04/22 01:25:28 mwu 1.22.32.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [4a34beb51d0800aa4431579a83c8551c6e8f0362]

INTEGRATION: CWS dialogdiet01 (1.13.268); FILE MERGED 2004/04/22 01:25:17 mwu 1.13.268.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [c28c2278643349f631ce35853d030a3450488585]

INTEGRATION: CWS dialogdiet01 (1.20.28); FILE MERGED 2004/04/22 01:25:28 mwu 1.20.28.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [86a5dd1e7f6258b0684ade161c08535220cd053e]

INTEGRATION: CWS dialogdiet01 (1.6.30); FILE MERGED 2004/04/22 01:25:28 mwu 1.6.30.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [4b1c33d22cd347ad728dc09be19072c98e85d083]

INTEGRATION: CWS dialogdiet01 (1.4.370); FILE MERGED 2004/04/22 01:25:27 mwu 1.4.370.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [d9a7a997568b102f07865428f1d8cfb84a02b8b9]

INTEGRATION: CWS dialogdiet01 (1.10.72); FILE MERGED 2004/04/22 01:25:27 mwu 1.10.72.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [116523b56b2a2125bfedd0778e4b193a30f54123]

INTEGRATION: CWS dialogdiet01 (1.35.14); FILE MERGED 2004/04/22 01:25:27 mwu 1.35.14.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [fac68490bb9e747bc79905d3ee43c92c1dbde912]

INTEGRATION: CWS dialogdiet01 (1.21.40); FILE MERGED 2004/04/22 01:25:27 mwu 1.21.40.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [b66fc279824fd1227fcac32985635a09556b5ffd]

INTEGRATION: CWS dialogdiet01 (1.20.30); FILE MERGED 2004/04/22 01:25:26 mwu 1.20.30.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f256fa983b13bb0a8066c8cec75211d977e792da]

INTEGRATION: CWS dialogdiet01 (1.3.376); FILE MERGED 2004/04/22 01:25:26 mwu 1.3.376.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [5d68df4621192445ebd86bd9b1850fc0a75866db]

INTEGRATION: CWS dialogdiet01 (1.4.70); FILE MERGED 2004/04/22 01:25:26 mwu 1.4.70.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [414ef3a766318cc0bbcf92149b66b7c8995d2414]

INTEGRATION: CWS dialogdiet01 (1.18.268); FILE MERGED 2004/04/22 01:25:26 mwu 1.18.268.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [864dc8b2138d144a8520f9d807d51abb2f9f7997]

INTEGRATION: CWS dialogdiet01 (1.19.368); FILE MERGED 2004/04/22 01:25:25 mwu 1.19.368.2: dialogdiet01_2004_04_22 2004/02/27 06:01:03 mwu 1.19.368.1: dialogdiet01 2004_02_27


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [49b4e390618c1a3188182db7d03a7b2298361131]

INTEGRATION: CWS dialogdiet01 (1.11.16); FILE MERGED 2004/04/23 07:45:45 mwu 1.11.16.2: dialogdiet01 m33 sd 20040422 2004/04/22 01:25:25 mwu 1.11.16.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f72145e3e8cd4e0717e4d5ed59e38316beca0071]

INTEGRATION: CWS dialogdiet01 (1.16.30); FILE MERGED 2004/04/22 01:25:25 mwu 1.16.30.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [5786c66a46b9e4c8170828cf2c1cb6f8701e788f]

INTEGRATION: CWS dialogdiet01 (1.26.28); FILE MERGED 2004/04/22 01:25:25 mwu 1.26.28.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [4685fbfce57bc285960a931f4e862f5529e6a5db]

INTEGRATION: CWS dialogdiet01 (1.8.244); FILE MERGED 2004/04/22 01:25:24 mwu 1.8.244.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [0702f175f9c1aec25844554ee9f079a381abe1d1]

INTEGRATION: CWS dialogdiet01 (1.5.106); FILE MERGED 2004/04/22 01:25:24 mwu 1.5.106.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f089c9222790a94c575ea42ae43f8d4c27bba277]

INTEGRATION: CWS dialogdiet01 (1.5.372); FILE MERGED 2004/02/27 06:01:03 mwu 1.5.372.1: dialogdiet01 2004_02_27


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [1c15322d5f585e2981181bc6be28e8d342d6dd55]

INTEGRATION: CWS dialogdiet01 (1.12.62); FILE MERGED 2004/04/22 01:25:24 mwu 1.12.62.2: dialogdiet01_2004_04_22 2004/02/27 06:01:02 mwu 1.12.62.1: dialogdiet01 2004_02_27


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [e9f4f9c16813cede74d6f672cb98dcebb46250ac]

INTEGRATION: CWS dialogdiet01 (1.5.62); FILE MERGED 2004/04/22 01:25:24 mwu 1.5.62.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [4dbf755f29a5cb11b545c558ca29f2017a407c1b]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:35:36 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f906e750e7d809b427f4bae11d25c5ead22229bf]

INTEGRATION: CWS dialogdiet01 (1.2.118); FILE MERGED 2004/04/22 01:25:23 mwu 1.2.118.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [09c620d73bb2861aba43a9c07583594b7627abe3]

INTEGRATION: CWS dialogdiet01 (1.1.1.1.412); FILE MERGED 2004/04/22 01:25:23 mwu 1.1.1.1.412.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [8a2d9d69a2ca2032e1426afdde48057e6ef0e995]

INTEGRATION: CWS dialogdiet01 (1.3.30); FILE MERGED 2004/04/23 07:45:45 mwu 1.3.30.2: dialogdiet01 m33 sd 20040422 2004/04/22 01:25:23 mwu 1.3.30.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [904b35f0d58a0283f3d7a8f66de6773698948c23]

INTEGRATION: CWS dialogdiet01 (1.10.30); FILE MERGED 2004/04/23 07:45:45 mwu 1.10.30.1: dialogdiet01 m33 sd 20040422


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [880cc2388e98320ddde0e9429181b2490829c9ed]

INTEGRATION: CWS dialogdiet01 (1.4.400); FILE MERGED 2004/02/27 06:01:02 mwu 1.4.400.1: dialogdiet01 2004_02_27


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [3195c380595b126187b68770ccdbb28b74cf508e]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:36:09 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [00254f2112ee73e76a085c46da922428c1c99eec]

INTEGRATION: CWS dialogdiet01 (1.5.32); FILE MERGED 2004/02/27 06:01:02 mwu 1.5.32.1: dialogdiet01 2004_02_27


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [0ebb09f44ae4fa3cd760a763e9ebff9ae66391a4]

INTEGRATION: CWS dialogdiet01 (1.5.96); FILE MERGED 2004/04/22 01:25:23 mwu 1.5.96.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [bc7cb304600d45304bd0df9a57ecb02b4f583530]

INTEGRATION: CWS dialogdiet01 (1.2.398); FILE MERGED 2004/04/22 01:25:22 mwu 1.2.398.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f3c3ce29d631dad250f179f4eb219017a5d8714c]

INTEGRATION: CWS dialogdiet01 (1.10.72); FILE MERGED 2004/04/22 01:25:22 mwu 1.10.72.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [6f6f1e58c4eda4b75e59c844687777b47ed2f9da]

INTEGRATION: CWS dialogdiet01 (1.7.244); FILE MERGED 2004/04/22 01:25:21 mwu 1.7.244.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [3dff8f024d1580ab4c3732f32eb08a8165a2b24f]

INTEGRATION: CWS dialogdiet01 (1.1.1.1.412); FILE MERGED 2004/04/22 01:25:21 mwu 1.1.1.1.412.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [28722f8dbf5803369b86758e3d921c144ab64e9c]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:40:40 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [e7f1f079ad2a4bcd0648590bcfa9580f701b8cb2]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:40:55 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [1c84fc313e37afb1ffe4bb8d1ef1d1e586291817]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:41:11 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [835aff63972e32315c3f6db8ae11ac7389a2a13a]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:41:28 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [5d3b0cdd0ea5ba7a9ad15677618d426760c2da48]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:40:26 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [8202695cf56cf7a870062bece0bd4dc9929a1c57]

INTEGRATION: CWS dialogdiet01 (1.2.32); FILE MERGED 2004/02/27 06:01:01 mwu 1.2.32.1: dialogdiet01 2004_02_27


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [24eb975d76fed80e4bbe78f0003338114cabbd16]

INTEGRATION: CWS dialogdiet01 (1.2.398); FILE MERGED 2004/04/22 01:25:21 mwu 1.2.398.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f01c49222c8a29c5c34ec3d7ecb7c3be2bb8bb17]

INTEGRATION: CWS dialogdiet01 (1.3.374); FILE MERGED 2004/04/22 01:25:21 mwu 1.3.374.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f1be0b0f36bf40eae7bf88e380748d97c8cdd3fe]

INTEGRATION: CWS dialogdiet01 (1.8.114); FILE MERGED 2004/04/22 01:25:21 mwu 1.8.114.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [73e347f1f9910e862c091151e5aaa0d30d905916]

INTEGRATION: CWS dialogdiet01 (1.2.398); FILE MERGED 2004/04/22 01:25:20 mwu 1.2.398.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [1ff7adb4441891e4dceb5ce98bcb633c27bcf9ff]

INTEGRATION: CWS dialogdiet01 (1.3.388); FILE MERGED 2004/04/22 01:25:20 mwu 1.3.388.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [879c1008776fd8133eb7ae727eeaf7bc6d0c6fd5]

INTEGRATION: CWS dialogdiet01 (1.7.372); FILE MERGED 2004/04/22 01:25:20 mwu 1.7.372.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f82ae225f77aa3dfbf26dd011e7d0403a97469cb]

INTEGRATION: CWS dialogdiet01 (1.8.376); FILE MERGED 2004/04/22 01:25:19 mwu 1.8.376.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [919266b54610363e8f27a30a7ff0690859c35a0f]

INTEGRATION: CWS dialogdiet01 (1.10.28); FILE MERGED 2004/04/22 01:25:19 mwu 1.10.28.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [0c68166db50071520901e4fac549cf4e8e27a886]

INTEGRATION: CWS dialogdiet01 (1.5.118); FILE MERGED 2004/04/22 01:25:18 mwu 1.5.118.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [2e0c07bdd4f5dfe13b6c4af78c5acb520d4c95d8]

INTEGRATION: CWS dialogdiet01 (1.33.16); FILE MERGED 2004/04/23 07:45:44 mwu 1.33.16.2: dialogdiet01 m33 sd 20040422 2004/04/22 01:25:18 mwu 1.33.16.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [71e708f2fbb5e06a6e0fc53ae5e1e39e43f994f2]

INTEGRATION: CWS dialogdiet01 (1.66.38); FILE MERGED 2004/04/22 01:25:18 mwu 1.66.38.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [998bbae7717e1df35d90741717f3ac78c47f1584]

INTEGRATION: CWS dialogdiet01 (1.48.40); FILE MERGED 2004/04/22 01:25:17 mwu 1.48.40.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [b45957c0a610f0c6508df336ce433b5875506a09]

INTEGRATION: CWS dialogdiet01 (1.16.38); FILE MERGED 2004/04/22 01:25:17 mwu 1.16.38.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [d9ea0390f5b2161c35b161bff6c4c113d1675865]

INTEGRATION: CWS dialogdiet01 (1.10.16); FILE MERGED 2004/04/22 01:25:17 mwu 1.10.16.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [9786b374f68d25c5d1c3d3ecb4bc162547603c67]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:36:58 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [c41414319d726bccb4f8fb97512241e04782adf9]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/23 07:45:44 mwu 1.1.2.2: dialogdiet01 m33 sd 20040422 2004/04/22 01:37:13 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [462dbb2c0d7cd6f8cee861fa125ea70f15cd0220]

INTEGRATION: CWS dialogdiet01 (1.8.16); FILE MERGED 2004/04/23 07:45:44 mwu 1.8.16.1: dialogdiet01 m33 sd 20040422


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [7efd9e9d22a41cce9d02a78ff015db924b81ff29]

INTEGRATION: CWS dialogdiet01 (1.3.118); FILE MERGED 2004/04/22 01:25:17 mwu 1.3.118.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f8af196aa293c27a527069cacccaf901faa04095]

INTEGRATION: CWS dialogdiet01 (1.9.114); FILE MERGED 2004/04/22 01:25:16 mwu 1.9.114.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [470b97ed8432acc0640c8a31fa14525ffdc9fbb6]

INTEGRATION: CWS dialogdiet01 (1.18.244); FILE MERGED 2004/04/22 01:25:16 mwu 1.18.244.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [afc9122d54fd9378f202df53076285f7113daea1]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:39:28 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [6d0bf0cdaab67a770040b9be4d22e337e6971381]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:39:12 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [b18a6cb7b760415b04bf12178d3b03b0c79f9fa3]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:38:17 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [71bd1fdbbef59a3f9fd4977cbed54c206e69f2e3]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:38:51 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [e919bd43d859543243c1e35e327c215b8446ce7d]

INTEGRATION: CWS dialogdiet01 (1.1.1.1.412); FILE MERGED 2004/04/22 01:25:16 mwu 1.1.1.1.412.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [995e000a60c7c10bdec7a32c3766708a5cb1a26a]

INTEGRATION: CWS dialogdiet01 (1.5.62); FILE MERGED 2004/02/27 06:01:01 mwu 1.5.62.1: dialogdiet01 2004_02_27


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [6de0ce1d94f4dd11022f8f9d42985a9a609a5952]

INTEGRATION: CWS dialogdiet01 (1.37.28); FILE MERGED 2004/04/22 01:25:15 mwu 1.37.28.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [70de253a40af103827ec1d0d5f95da97eb4cbc25]

INTEGRATION: CWS dialogdiet01 (1.45.40); FILE MERGED 2004/04/22 01:25:15 mwu 1.45.40.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [0d993364d25a1eecae001d9eecbeb64edabdd54f]

INTEGRATION: CWS dialogdiet01 (1.36.38); FILE MERGED 2004/04/23 07:45:43 mwu 1.36.38.1: dialogdiet01 m33 sd 20040422


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [06ed6609ecc46a7e7c3ea5bcf46982f2cc5259c0]

INTEGRATION: CWS dialogdiet01 (1.14.46); FILE MERGED 2004/04/22 01:25:14 mwu 1.14.46.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [e07acb1c8db4038d550339e05d6b802736b9cef5]

INTEGRATION: CWS dialogdiet01 (1.1.2); FILE ADDED 2004/04/22 01:42:09 mwu 1.1.2.1: dialogdiet01


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [53d92a78cca4cdcfa6c9ae901ef3bc75f96ce2ff]

INTEGRATION: CWS dialogdiet01 (1.29.14); FILE MERGED 2004/04/23 07:45:43 mwu 1.29.14.1: dialogdiet01 m33 sd 20040422


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [bd5abf1208e60c3268f410122f8c2a1b3e220a4f]

INTEGRATION: CWS dialogdiet01 (1.17.40); FILE MERGED 2004/04/22 01:25:14 mwu 1.17.40.1: dialogdiet01_2004_04_22


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f7d733fa6ea1de7e9cc6d0c7260b1633f4403729]

INTEGRATION: CWS dialogdiet01 (1.10.12); FILE MERGED 2004/04/08 01:44:52 mwu 1.10.12.1: DialogDiet 2004_04_08


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [e6ce4ed4cd940730bbcd6af9be2a3417a4f0a997]

INTEGRATION: CWS aw009 (1.13.98); FILE MERGED 2004/04/26 10:51:15 aw 1.13.98.1: #116168#, #116235#


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [f3d4f623257f0ea5eb5efaa11f2eb428037a3f22]

INTEGRATION: CWS aw009 (1.26.98); FILE MERGED 2004/04/26 10:51:15 aw 1.26.98.1: #116168#, #116235#


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [9673c31cad9b5e4e0d92632f4e49176b84b0c42b]

INTEGRATION: CWS aw009 (1.21.128); FILE MERGED 2004/04/26 10:51:14 aw 1.21.128.1: #116168#, #116235#


2004-05-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [2a628249fa71dc036cef654612cfc8ffbc413409]

INTEGRATION: CWS aw009 (1.7.24); FILE MERGED 2004/04/27 17:00:45 aw 1.7.24.1: #114898# Issue number: Submitted by: Reviewed by:


2004-05-07  Rüdiger Timm  <rt@openoffice.org>  [2e0ea242e493d5d8ecb2e4e38fd4aa41c3bfc982]

INTEGRATION: CWS frmcontrols03 (1.34.34); FILE MERGED 2004/04/28 14:09:07 fs 1.34.34.3: RESYNC: (1.35-1.36); FILE MERGED 2004/03/23 13:53:44 fs 1.34.34.2: RESYNC: (1.34-1.35); FILE MERGED 2004/02/26 15:48:32 nn 1.34.34.1: #i25683# position FormShell above or below own sub shells depending on who got the focus last


2004-05-07  Rüdiger Timm  <rt@openoffice.org>  [61d73f5eb2dd744e17a5c6fbd90658c9a616103a]

INTEGRATION: CWS frmcontrols03 (1.47.32); FILE MERGED 2004/04/28 14:08:42 fs 1.47.32.3: RESYNC: (1.50-1.51); FILE MERGED 2004/03/23 13:53:36 fs 1.47.32.2: RESYNC: (1.47-1.50); FILE MERGED 2004/02/26 15:48:32 nn 1.47.32.1: #i25683# position FormShell above or below own sub shells depending on who got the focus last


2004-05-07  Rüdiger Timm  <rt@openoffice.org>  [2f835f08e919d9db71614c412b2466da9f3bb828]

INTEGRATION: CWS frmcontrols03 (1.13.270); FILE MERGED 2004/04/28 14:07:20 fs 1.13.270.2: RESYNC: (1.13-1.14); FILE MERGED 2004/02/26 15:45:28 nn 1.13.270.1: #i25683# position FormShell above or below own sub shells depending on who got the focus last


2004-05-07  Rüdiger Timm  <rt@openoffice.org>  [45d9e7b516276995ce5d995a35854d94fce416d5]

INTEGRATION: CWS frmcontrols03 (1.36.36); FILE MERGED 2004/03/23 13:59:15 fs 1.36.36.2: RESYNC: (1.36-1.37); FILE MERGED 2004/02/26 15:48:59 nn 1.36.36.1: #i25683# position FormShell above or below own sub shells depending on who got the focus last


2004-05-03  Rüdiger Timm  <rt@openoffice.org>  [017316b96b5f57fe2510cee5956df1e3172b2110]

INTEGRATION: CWS binfilter (1.16.92); FILE MERGED 2004/04/05 15:08:24 aw 1.16.92.2: RESYNC: (1.16-1.18); FILE MERGED 2004/03/30 15:28:23 er 1.16.92.1: #115964# make LockPaint/UnlockPaint work also if both levels are set/removed independently in not related order


2004-05-03  Rüdiger Timm  <rt@openoffice.org>  [33fe8690b8bf0f074575e36ff4cf181bdb2b1b64]

INTEGRATION: CWS binfilter (1.63.2); FILE MERGED 2004/04/05 15:04:16 aw 1.63.2.5: RESYNC: (1.67-1.69); FILE MERGED 2004/02/05 16:09:50 aw 1.63.2.4: RESYNC: (1.66-1.67); FILE MERGED 2003/10/30 13:45:42 aw 1.63.2.3: RESYNC: (1.64-1.66); FILE MERGED 2003/08/08 12:17:40 aw 1.63.2.2: RESYNC: (1.63-1.64); FILE MERGED 2003/07/08 17:19:21 aw 1.63.2.1: #110680#


2004-05-03  Rüdiger Timm  <rt@openoffice.org>  [3675d54fc176a3d3f08fca24ebdf02315219b174]

INTEGRATION: CWS binfilter (1.86.18); FILE MERGED 2004/04/05 15:04:08 aw 1.86.18.5: RESYNC: (1.90-1.91); FILE MERGED 2004/02/05 16:09:19 aw 1.86.18.4: RESYNC: (1.89-1.90); FILE MERGED 2003/10/30 13:45:34 aw 1.86.18.3: RESYNC: (1.87-1.89); FILE MERGED 2003/08/08 12:17:34 aw 1.86.18.2: RESYNC: (1.86-1.87); FILE MERGED 2003/07/08 17:19:21 aw 1.86.18.1: #110680#


2004-05-03  Rüdiger Timm  <rt@openoffice.org>  [1b91f43f5ca1b4816fbe71ec6c181f9fd4e0c2f2]

INTEGRATION: CWS binfilter (1.73.92); FILE MERGED 2003/07/08 17:19:20 aw 1.73.92.1: #110680#


2004-05-03  Rüdiger Timm  <rt@openoffice.org>  [9a2811e0853f2e7af94f1732a97327d606902798]

INTEGRATION: CWS binfilter (1.166.10); FILE MERGED 2004/04/05 15:03:57 aw 1.166.10.5: RESYNC: (1.171-1.173); FILE MERGED 2004/02/05 16:08:59 aw 1.166.10.4: RESYNC: (1.169-1.171); FILE MERGED 2003/10/30 13:45:23 aw 1.166.10.3: RESYNC: (1.168-1.169); FILE MERGED 2003/08/08 12:17:29 aw 1.166.10.2: RESYNC: (1.166-1.168); FILE MERGED 2003/07/08 17:19:19 aw 1.166.10.1: #110680#


2004-04-29  Oliver Bolte  <obo@openoffice.org>  [e6a3c9bef2e39ed7e3d4ca5fc605d377be9b42c2]

INTEGRATION: CWS os12 (1.35.44); FILE MERGED 2004/02/19 22:54:13 os 1.35.44.3: RESYNC: (1.36-1.37); FILE MERGED 2003/10/22 16:24:59 os 1.35.44.2: RESYNC: (1.35-1.36); FILE MERGED 2003/07/09 13:05:11 os 1.35.44.1: #103299# SvxAddressItem removed


2004-04-29  Oliver Bolte  <obo@openoffice.org>  [884c259f4b975a76c11a94e11e54c2195efeea75]

INTEGRATION: CWS os12 (1.17.60); FILE MERGED 2004/02/19 23:12:42 os 1.17.60.2: RESYNC: (1.17-1.18); FILE MERGED 2003/07/09 13:04:50 os 1.17.60.1: #103299# SvxAddressItem removed


2004-04-29  Oliver Bolte  <obo@openoffice.org>  [dffeb8d73e3b7a7c176d5ad5eeba6c8069e7bd2e]

INTEGRATION: CWS os12 (1.12.44); FILE MERGED 2003/10/22 16:46:08 os 1.12.44.2: RESYNC: (1.12-1.13); FILE MERGED 2003/07/09 13:04:26 os 1.12.44.1: #103299# SvxAddressItem removed


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [67e00a737d213513fd35c5447f2fbc4439a9c575]

INTEGRATION: CWS tl01 (1.2.72); FILE MERGED 2004/04/21 09:39:39 tl 1.2.72.1: #109443# entry for Hangul/Hanja conversion added


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [134aad208b22a3df165b54d675e827b9586e7e13]

INTEGRATION: CWS tl01 (1.20.256); FILE MERGED 2004/02/11 14:55:19 gt 1.20.256.4: RESYNC: (1.22-1.23); FILE MERGED 2004/01/29 21:34:39 gt 1.20.256.3: RESYNC: (1.21-1.22); FILE MERGED 2003/10/13 09:19:28 tl 1.20.256.2: RESYNC: (1.20-1.21); FILE MERGED 2003/10/07 14:34:58 dr 1.20.256.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [07ace922d3438ed7d415a152a9efb585abe735a7]

INTEGRATION: CWS tl01 (1.5.264); FILE MERGED 2003/10/07 14:34:57 dr 1.5.264.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [c2a5de56c99214f86f5a253a41f74368cf5d9c12]

INTEGRATION: CWS tl01 (1.18.154); FILE MERGED 2003/10/07 14:34:55 dr 1.18.154.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [c70fa01f7680084ea0dd73face739f0e3bf13fdc]

INTEGRATION: CWS tl01 (1.25.256); FILE MERGED 2004/02/11 14:50:00 gt 1.25.256.2: RESYNC: (1.25-1.26); FILE MERGED 2003/10/07 14:34:53 dr 1.25.256.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [06b68b95b2c68d65b939a3700a257fdb86196b79]

INTEGRATION: CWS tl01 (1.21.26); FILE MERGED 2004/04/20 14:34:05 tl 1.21.26.4: RESYNC: (1.23-1.24); FILE MERGED 2004/02/11 14:49:51 gt 1.21.26.3: RESYNC: (1.22-1.23); FILE MERGED 2004/01/29 21:30:08 gt 1.21.26.2: RESYNC: (1.21-1.22); FILE MERGED 2003/10/07 14:34:52 dr 1.21.26.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [b3e4be094e089de58d7f7c8d8849dcba61c10c0b]

INTEGRATION: CWS tl01 (1.7.262); FILE MERGED 2004/02/11 14:57:29 gt 1.7.262.2: RESYNC: (1.7-1.8); FILE MERGED 2003/10/07 14:33:37 dr 1.7.262.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [7e22ca331fe67582a00e5b82e816d66cbac54870]

INTEGRATION: CWS tl01 (1.47.76); FILE MERGED 2004/04/20 14:29:08 tl 1.47.76.4: RESYNC: (1.49-1.50); FILE MERGED 2004/02/11 14:58:18 gt 1.47.76.3: RESYNC: (1.48-1.49); FILE MERGED 2004/01/29 13:29:15 gt 1.47.76.2: merge with SRC680m21 2003/10/07 14:33:12 dr 1.47.76.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [16ab45e6f70ae49636937390af9d8ea337d989c7]

INTEGRATION: CWS tl01 (1.4.290); FILE MERGED 2003/10/07 14:32:28 dr 1.4.290.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [b8714d4ea228070620a6be1c05729438bc43497e]

INTEGRATION: CWS tl01 (1.16.256); FILE MERGED 2004/02/06 10:23:14 os 1.16.256.5: SetPrintRanges corrected 2004/02/06 08:01:39 gt 1.16.256.4: merge again... 2004/01/29 21:47:38 gt 1.16.256.3: RESYNC: (1.17-1.18); FILE MERGED 2003/11/21 05:24:15 tl 1.16.256.2: RESYNC: (1.16-1.17); FILE MERGED 2003/10/07 14:32:26 dr 1.16.256.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [96c0acdcca0848723a9948442a52b8398274099c]

INTEGRATION: CWS tl01 (1.6.256); FILE MERGED 2004/02/11 15:02:50 gt 1.6.256.2: RESYNC: (1.6-1.7); FILE MERGED 2003/10/07 14:32:24 dr 1.6.256.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [d6109fe2da27407dc9130888fc44e2926818c7c7]

INTEGRATION: CWS tl01 (1.1.1.1.300); FILE MERGED 2003/10/07 14:32:22 dr 1.1.1.1.300.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [62f8b776f0f0a7d8a4fdde1bc4a748b4af19b8c8]

INTEGRATION: CWS tl01 (1.12.6); FILE MERGED 2003/11/03 12:31:37 tl 1.12.6.2: RESYNC: (1.12-1.13); FILE MERGED 2003/10/07 14:31:10 dr 1.12.6.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [763e9c8c5563620b023082730329f6fa25cffcf1]

INTEGRATION: CWS tl01 (1.4.286); FILE MERGED 2004/04/20 13:46:10 tl 1.4.286.3: RESYNC: (1.5-1.6); FILE MERGED 2004/02/11 15:20:26 gt 1.4.286.2: RESYNC: (1.4-1.5); FILE MERGED 2003/10/07 14:30:39 dr 1.4.286.1: #112060# Hangul/Hanja Conversion in Calc


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [4f510682b3ffe46cff4d961e4c0db508cd6a62fe]

INTEGRATION: CWS cso001 (1.35.96); FILE MERGED 2004/03/23 12:51:25 hjs 1.35.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [d6f5e55a45e36843b342116480ff84929185bce1]

INTEGRATION: CWS cso001 (1.78.96); FILE MERGED 2004/03/23 12:51:25 hjs 1.78.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [6a1e4e60540416701a65119124bdead60d71b8c9]

INTEGRATION: CWS cso001 (1.50.74); FILE MERGED 2004/03/23 12:51:25 hjs 1.50.74.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [18f6d06b0c06a8f5fb7f93cf84b5f66061e52580]

INTEGRATION: CWS cso001 (1.67.96); FILE MERGED 2004/03/23 12:51:24 hjs 1.67.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [203086db4d53a6229b64d3abd35984ca7744348f]

INTEGRATION: CWS cso001 (1.29.26); FILE MERGED 2004/03/23 12:51:23 hjs 1.29.26.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [569cecb585776a64204557847c5a75842122c348]

INTEGRATION: CWS cso001 (1.49.70); FILE MERGED 2004/03/23 12:51:22 hjs 1.49.70.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [a0caf2341ff13e76ba87c37ea103671bd7afccc1]

INTEGRATION: CWS cso001 (1.51.96); FILE MERGED 2004/03/23 12:51:21 hjs 1.51.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [b1207f258a3fcad3588ec5fc69c0399682416cdd]

INTEGRATION: CWS cso001 (1.39.96); FILE MERGED 2004/03/23 12:51:21 hjs 1.39.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [54fbf293a8cf58bcc6c9883f2a1a0cfb0ffa98c7]

INTEGRATION: CWS cso001 (1.38.96); FILE MERGED 2004/03/23 12:51:21 hjs 1.38.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [73177a61ba3b308ed428c15bf28da9e4672ac9c1]

INTEGRATION: CWS cso001 (1.50.96); FILE MERGED 2004/03/23 12:51:20 hjs 1.50.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [b08eca4204b50b2a8f7b49535b3b36868be0d7fd]

INTEGRATION: CWS cso001 (1.46.94); FILE MERGED 2004/03/23 12:51:20 hjs 1.46.94.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [937ae75868c9a38e779e84d1e05c9039edfea60f]

INTEGRATION: CWS cso001 (1.38.96); FILE MERGED 2004/03/23 12:51:19 hjs 1.38.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [8a99452e0f2f1b52676ae26b8e669707120f9efd]

INTEGRATION: CWS cso001 (1.39.96); FILE MERGED 2004/03/23 12:51:19 hjs 1.39.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [b16d3f3a93db3fff5409331edc84ac8406f73186]

INTEGRATION: CWS cso001 (1.51.96); FILE MERGED 2004/03/23 12:51:18 hjs 1.51.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [34119aa93e5cc9449eff30f0e58b93c5b00ad18e]

INTEGRATION: CWS cso001 (1.32.96); FILE MERGED 2004/03/23 12:51:18 hjs 1.32.96.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [3e82ced2f738bc8dee81303ee907da3020688227]

INTEGRATION: CWS cso001 (1.1.1.1.10); FILE MERGED 2004/03/23 12:45:37 hjs 1.1.1.1.10.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [e413c8f8f26cad15fe91ca6fa9e7b58fd0aff7d3]

INTEGRATION: CWS cso001 (1.1.1.1.10); FILE MERGED 2004/03/23 12:45:36 hjs 1.1.1.1.10.1: #116006# merge


2004-04-27  Oliver Bolte  <obo@openoffice.org>  [62dc5687176120f86121025ba38390de87f0cc03]

INTEGRATION: CWS cso001 (1.2.10); FILE MERGED 2004/03/23 12:45:36 hjs 1.2.10.1: #116006# merge


2004-04-23  Kurt Zenker  <kz@openoffice.org>  [d5c6f858c70e3e1703856990037b5c58fefe5d47]

#i10000# #i27526#: cast to disambiguate


2004-04-21  Sander Vesik  <svesik@openoffice.org>  [974556a5deef95e2b0780e28a365411e6766e3e6]

INTEGRATION: CWS ooo20040329 (1.5.6); FILE MERGED 2004/03/26 15:29:52 mh 1.5.6.1: add: comment for #i26518#


2004-04-21  Sander Vesik  <svesik@openoffice.org>  [a56b8114004403a64e003b5b73c392a04efa0f53]

INTEGRATION: CWS ooo20040329 (1.4.4); FILE MERGED 2004/03/26 15:28:56 mh 1.4.4.1: add: comment for #i26518#


2004-04-20  Sander Vesik  <svesik@openoffice.org>  [4b250e2cb41f9a7a5fb0568b8ee4fce0b6215b2b]

INTEGRATION: CWS sab013 (1.24.230); FILE MERGED 2004/02/10 14:09:06 sab 1.24.230.1: #i22714#; allow negative positions of the cells


2004-04-20  Sander Vesik  <svesik@openoffice.org>  [1f85158118c7dbdf359a8d67381800d151bc4f5d]

INTEGRATION: CWS sab013 (1.5.388); FILE MERGED 2004/02/10 12:55:43 sab 1.5.388.1: #111055#; set defaults of calculation settings if there is no calculation settings element


2004-04-20  Sander Vesik  <svesik@openoffice.org>  [4dd4c5092a688f05736382f7e40f0c55fb567302]

INTEGRATION: CWS sab013 (1.20.354); FILE MERGED 2004/03/31 12:15:08 sab 1.20.354.2: RESYNC: (1.20-1.21); FILE MERGED 2004/02/10 12:55:42 sab 1.20.354.1: #111055#; set defaults of calculation settings if there is no calculation settings element


2004-04-19  Sander Vesik  <svesik@openoffice.org>  [32e12e291f81942900a9c7df1f5ea3f22a1c40f7]

INTEGRATION: CWS nn02 (1.43.34); FILE MERGED 2004/04/14 10:07:35 nn 1.43.34.1: #114007# UpdateFixX/UpdateFixY: check if sheet exists


2004-04-19  Sander Vesik  <svesik@openoffice.org>  [5311a0e712ed9bcc6ad2e561b01b0f2fd91c0c9e]

INTEGRATION: CWS nn02 (1.33.34); FILE MERGED 2004/04/14 16:34:46 nn 1.33.34.1: #i19358# Draw: SetLayoutMode


2004-04-19  Sander Vesik  <svesik@openoffice.org>  [5544c1b34e2a17ae10d6fcf0b4727125dbdbdc5c]

INTEGRATION: CWS nn02 (1.44.116); FILE MERGED 2004/04/14 16:04:21 sab 1.44.116.1: #116349#; test Index against -1 before calling GetEntryContextId


2004-04-19  Sander Vesik  <svesik@openoffice.org>  [cdd1d5d9407e5d3e280989d9b5cb6d37483eb171]

INTEGRATION: CWS nn02 (1.48.88); FILE MERGED 2004/04/14 16:04:21 sab 1.48.88.1: #116349#; test Index against -1 before calling GetEntryContextId


2004-04-19  Sander Vesik  <svesik@openoffice.org>  [f7273558b3200a8e7145dadcd20261f56dbd2f73]

INTEGRATION: CWS nn02 (1.173.30); FILE MERGED 2004/04/14 16:04:20 sab 1.173.30.1: #116349#; test Index against -1 before calling GetEntryContextId


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [6eaeb26b7f80ce2df7b506ac3c90b31cabfa29c5]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:28:50 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [98f308fbdfa474ce50733e9a79815b8c83995706]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:28:35 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [e87e3a3ce25bc8751d31fc7cc8095758d6207fed]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:28:18 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [a9c3fdb2a183771e6f6dc88a7939547ce6b273b4]

INTEGRATION: CWS pagefields (1.19.70); FILE MERGED 2004/03/03 10:21:42 sab 1.19.70.3: RESYNC: (1.20-1.21); FILE MERGED 2004/02/05 10:22:38 sab 1.19.70.2: RESYNC: (1.19-1.20); FILE MERGED 2003/12/05 13:58:20 nn 1.19.70.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [d4ae9e676239a336d32b3cefb6b2df2d3e10ad3c]

INTEGRATION: CWS pagefields (1.3.298); FILE MERGED 2004/02/05 10:21:44 sab 1.3.298.2: RESYNC: (1.3-1.4); FILE MERGED 2003/12/05 13:58:19 nn 1.3.298.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [521dfd14d7858f703cd5aecebdc83adfb60a68bd]

INTEGRATION: CWS pagefields (1.44.68); FILE MERGED 2004/03/30 14:37:26 sab 1.44.68.5: RESYNC: (1.48-1.50); FILE MERGED 2004/03/04 11:28:24 nn 1.44.68.4: #i22164# adapt page field drop-down to ScFilterListBox changes from calcrtl 2004/03/03 10:21:23 sab 1.44.68.3: RESYNC: (1.45-1.48); FILE MERGED 2004/02/05 10:21:25 sab 1.44.68.2: RESYNC: (1.44-1.45); FILE MERGED 2003/12/05 13:58:19 nn 1.44.68.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [5c01b0ce316f94448f76511e5a5d1bb1a9c5075a]

INTEGRATION: CWS pagefields (1.4.298); FILE MERGED 2003/12/05 13:58:19 nn 1.4.298.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [f1ad7485e4d6883b9fee2faf818feb2fb4e02dfc]

INTEGRATION: CWS pagefields (1.19.38); FILE MERGED 2004/03/30 14:39:17 sab 1.19.38.4: RESYNC: (1.19-1.20); FILE MERGED 2004/03/30 10:58:04 sab 1.19.38.3: #i26987#; use SheetDescriptor and only change QueryParam 2004/03/02 16:15:07 sab 1.19.38.2: #i22164#; use ScDPObject instead of ScPivotParam 2004/02/27 14:46:51 sab 1.19.38.1: #i22164#; support page fields, remove use of ScPivotParam, support DataPilotItems


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [e452aa149cbe70eedf16145387ef2f64bb3af13d]

INTEGRATION: CWS pagefields (1.8.300); FILE MERGED 2004/04/08 10:52:39 sab 1.8.300.8: #i26987#; don't throw exception 2004/04/07 14:05:26 sab 1.8.300.7: #i26987#; remove double initialisation of bFound 2004/04/07 06:08:54 sab 1.8.300.6: #i26987#; remove double initialisation of nItem 2004/04/06 15:40:04 sab 1.8.300.5: #i26987#; use new methods HasShowDetails 2004/04/06 14:30:20 sab 1.8.300.4: #i26987#; use DataPilotSource to access the items 2004/03/05 13:41:49 sab 1.8.300.3: #i22164#; selectedpage is better than currentpage 2004/03/02 16:15:30 sab 1.8.300.2: #i22164#; don't use auto_ptr 2004/02/27 14:46:50 sab 1.8.300.1: #i22164#; support page fields, remove use of ScPivotParam, support DataPilotItems


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [509415cbc70a8ea8ea9019a165a43dc170f7d0d7]

INTEGRATION: CWS pagefields (1.2.336); FILE MERGED 2003/12/05 13:57:58 nn 1.2.336.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [cd4d44a64117726da28ce0aa6bc855a8b0054da1]

INTEGRATION: CWS pagefields (1.2.334); FILE MERGED 2003/12/05 13:57:32 nn 1.2.334.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [a75a43634fb97a6a1be1319b897d5db1e2e60d98]

INTEGRATION: CWS pagefields (1.5.196); FILE MERGED 2004/02/26 17:18:41 dr 1.5.196.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [593b64339ef71950763f0972f0e26d6c3056b252]

INTEGRATION: CWS pagefields (1.12.72); FILE MERGED 2004/03/30 14:45:44 sab 1.12.72.2: RESYNC: (1.12-1.13); FILE MERGED 2003/12/05 13:57:31 nn 1.12.72.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [f91962be3f88df0ce0ed2bb9a075069c67b3a3cd]

INTEGRATION: CWS pagefields (1.9.172); FILE MERGED 2004/02/26 17:18:41 dr 1.9.172.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [9de7412d00480b37f2b047fe299634dd830b7b15]

INTEGRATION: CWS pagefields (1.4.302); FILE MERGED 2004/03/03 10:26:50 sab 1.4.302.2: RESYNC: (1.4-1.5); FILE MERGED 2003/12/05 13:57:31 nn 1.4.302.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [a212aad081d0992cb83c42f6c052796e4ea0eb49]

INTEGRATION: CWS pagefields (1.9.298); FILE MERGED 2003/12/05 13:57:45 nn 1.9.298.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [ba84af046709ae53a5153a14c9a8e6309a64e2b9]

INTEGRATION: CWS pagefields (1.13.196); FILE MERGED 2004/02/26 17:18:27 dr 1.13.196.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [a7363e42c01f2093732ede6bdf52af84457b369a]

INTEGRATION: CWS pagefields (1.51.46); FILE MERGED 2004/03/08 15:35:33 dr 1.51.46.3: #i22164# use line break for 'Row Fields' label 2004/03/05 13:46:36 sab 1.51.46.2: #i22164#; change names like specified 2004/02/26 17:18:26 dr 1.51.46.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [a908e317287d32ac9b9be68b078191693d3d5750]

INTEGRATION: CWS pagefields (1.4.302); FILE MERGED 2004/02/26 17:18:26 dr 1.4.302.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [40dd7ba4e801adb0edc3f6a35aec42bbbf7120e5]

INTEGRATION: CWS pagefields (1.12.36); FILE MERGED 2004/03/08 15:35:33 dr 1.12.36.2: #i22164# use line break for 'Row Fields' label 2004/02/26 17:18:26 dr 1.12.36.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [aa0e3f9617b25f5f8339eb586134f844cb79c9e5]

INTEGRATION: CWS pagefields (1.7.172); FILE MERGED 2004/02/26 17:18:01 dr 1.7.172.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [c3a947e1b24a9846ad71234eb3e8f2021e29a165]

INTEGRATION: CWS pagefields (1.67.50); FILE MERGED 2004/03/30 14:51:47 sab 1.67.50.3: RESYNC: (1.68-1.69); FILE MERGED 2004/03/03 10:29:29 sab 1.67.50.2: RESYNC: (1.67-1.68); FILE MERGED 2004/02/27 14:46:05 sab 1.67.50.1: #i22164#; support page fields


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [abfdb947011dce3d4836bfbac9e5ab707929feaf]

INTEGRATION: CWS pagefields (1.90.52); FILE MERGED 2004/03/30 14:51:36 sab 1.90.52.2: RESYNC: (1.90-1.91); FILE MERGED 2004/02/27 14:46:04 sab 1.90.52.1: #i22164#; support page fields


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [7ced9351a79a4bceecc574d09be0333d314a898a]

INTEGRATION: CWS pagefields (1.9.310); FILE MERGED 2004/02/27 14:46:04 sab 1.9.310.1: #i22164#; support page fields


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [ef14c616783e33be4142459f10dac2f136a0b34a]

INTEGRATION: CWS pagefields (1.12.320); FILE MERGED 2004/02/27 14:46:04 sab 1.12.320.2: #i22164#; support page fields 2003/12/05 13:58:44 nn 1.12.320.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [d6408a8109fe811d150a19af736479d1428ddbe7]

INTEGRATION: CWS pagefields (1.14.52); FILE MERGED 2004/03/30 14:50:48 sab 1.14.52.2: RESYNC: (1.14-1.15); FILE MERGED 2004/02/27 14:46:03 sab 1.14.52.1: #i22164#; support page fields


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [8334387df85818bff84e939306b789341d359522]

INTEGRATION: CWS pagefields (1.10.54); FILE MERGED 2004/02/27 14:46:02 sab 1.10.54.1: #i22164#; support page fields


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff99543beca817ec83631e6543aa3a325b198ffb]

INTEGRATION: CWS pagefields (1.7.8); FILE MERGED 2004/02/27 12:26:16 dr 1.7.8.1: #i22164# import of DP page field selection


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [f223ea171f19367324ce604dfd72b2a1932e87a3]

INTEGRATION: CWS pagefields (1.39.156); FILE MERGED 2004/03/30 14:53:41 sab 1.39.156.4: RESYNC: (1.40-1.41); FILE MERGED 2004/03/03 10:29:52 sab 1.39.156.3: RESYNC: (1.39-1.40); FILE MERGED 2004/02/27 17:30:14 dr 1.39.156.2: #i22164# export of DP page field selection 2004/02/27 12:26:16 dr 1.39.156.1: #i22164# import of DP page field selection


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [020f81a7856cf8a397e31c30fcf2526b95623c70]

INTEGRATION: CWS pagefields (1.12.52); FILE MERGED 2004/02/26 17:17:46 dr 1.12.52.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [e1625cea0d9d6a182f4df0d98af0d10a283e6f4b]

INTEGRATION: CWS pagefields (1.7.196); FILE MERGED 2003/12/05 16:29:17 nn 1.7.196.2: #i22164# handle numerical page fields 2003/12/05 13:57:08 nn 1.7.196.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [c63f5d30bac657241cca0bc2ad6bdc8096981cdd]

INTEGRATION: CWS pagefields (1.5.324); FILE MERGED 2003/12/05 13:57:07 nn 1.5.324.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [94eef205736fdee018e078a5e737e6d28729ecf3]

INTEGRATION: CWS unopkg1 (1.38.22); FILE MERGED 2004/03/24 11:25:46 dbo 1.38.22.3: RESYNC: (1.40-1.41); FILE MERGED 2004/03/02 16:50:01 dbo 1.38.22.2: RESYNC: (1.38-1.40); FILE MERGED 2004/01/27 16:38:14 kso 1.38.22.1: #112920# - Added support for property "RuntimeUID".


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [8abf15397d54e0a291912d0280920486041b8f87]

INTEGRATION: CWS pagefields (1.3.300); FILE MERGED 2003/12/05 13:57:06 nn 1.3.300.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [4a750651ed7343c8e6823c81b9e06ba2094c104f]

INTEGRATION: CWS unopkg1 (1.55.36); FILE MERGED 2004/03/24 11:37:29 dbo 1.55.36.3: RESYNC: (1.57-1.58); FILE MERGED 2004/03/02 17:09:03 dbo 1.55.36.2: RESYNC: (1.55-1.57); FILE MERGED 2004/01/27 16:38:12 kso 1.55.36.1: #112920# - Added support for property "RuntimeUID".


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [dbb90f591191c0d79b9c6a8d92792f0fe041c575]

INTEGRATION: CWS pagefields (1.6.196); FILE MERGED 2003/12/05 13:57:06 nn 1.6.196.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [55bb6d994023882d73d13ad1e251e9deacbdab17]

INTEGRATION: CWS pagefields (1.3.336); FILE MERGED 2004/04/06 15:39:28 sab 1.3.336.3: #i26987#; add new methods HasIsVisible and HasShowDetails 2004/04/06 14:29:20 sab 1.3.336.2: #i26987#; add new method GetExistingMemberByName 2003/12/05 13:57:05 nn 1.3.336.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [00b8dcf2a165c7c1bb114be6ce9a2a005d166d18]

INTEGRATION: CWS pagefields (1.5.318); FILE MERGED 2004/03/30 15:11:20 sab 1.5.318.3: RESYNC: (1.5-1.6); FILE MERGED 2004/03/05 13:47:47 sab 1.5.318.2: #i22164#; correct size for page fields 2003/12/05 13:57:05 nn 1.5.318.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [ed16af89d7631508a10024f5432584271151eff3]

INTEGRATION: CWS pagefields (1.9.300); FILE MERGED 2004/02/26 17:17:46 dr 1.9.300.3: #i22164# add page fields to DP layout dialog 2003/12/05 16:29:17 nn 1.9.300.2: #i22164# handle numerical page fields 2003/12/05 13:57:04 nn 1.9.300.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [b6e9a01fcd0820a0b1ebc4019edfd7761e7404dc]

INTEGRATION: CWS pagefields (1.3.12); FILE MERGED 2004/04/08 09:55:23 sw 1.3.12.2: #i26830# 2004/04/07 12:27:26 sw 1.3.12.1: #i26830#


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [d513f6c883802201c81040fa14b240d455631018]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:02:27 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [112fa9a51f66df952bcc652c494b087d28c1a222]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:02:57 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [8affd1eaf4e960d60d5d3d721fd60d81c18eec83]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:02:42 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [6a86d0960f2bc7fb739a8073ac66d504168f1140]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:01:30 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [b75b67b052325ff0120ac3c5a24102fe3781b2f3]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:01:50 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [008788a127d3f314ab69a5f3356a6093971e1141]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:00:05 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [7d195dc13f2d0ae7fad5087c997d18be062ec695]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 16:00:22 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [825bc05d591b97ea158ef2564b827270f8719b7c]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 15:47:57 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [6b26db777bdccc769bccde1acaecec0bedccdb69]

INTEGRATION: CWS pagefields (1.1.2); FILE ADDED 2004/03/05 15:47:43 sab 1.1.2.1: #i22164#; complex test for data pilot


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [283582eeb932715063947e550de9e3e9a9540212]

INTEGRATION: CWS pagefields (1.54.28); FILE MERGED 2004/03/30 15:16:48 sab 1.54.28.6: RESYNC: (1.57-1.58); FILE MERGED 2004/03/05 13:08:13 sab 1.54.28.5: #i22164#; selectedpage is better than currentpage 2004/03/03 10:33:22 sab 1.54.28.4: RESYNC: (1.55-1.57); FILE MERGED 2004/02/27 14:32:19 sab 1.54.28.3: #i22164#; new data pilot properties 2004/02/05 11:11:23 sab 1.54.28.2: RESYNC: (1.54-1.55); FILE MERGED 2003/12/05 13:56:29 nn 1.54.28.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [afa8e8091de9d2a9a9b1d82b15d50035c8cf4557]

INTEGRATION: CWS pagefields (1.1.1.1.342); FILE MERGED 2004/02/26 17:17:30 dr 1.1.1.1.342.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [068cb070e42e3789946d6ec2bdf963888f1b9f51]

INTEGRATION: CWS pagefields (1.25.38); FILE MERGED 2004/03/30 15:14:33 sab 1.25.38.4: RESYNC: (1.26-1.29); FILE MERGED 2004/03/03 10:33:03 sab 1.25.38.3: RESYNC: (1.25-1.26); FILE MERGED 2004/02/27 14:44:16 sab 1.25.38.2: #i22164#; add SCCOLROW 2004/02/26 17:17:29 dr 1.25.38.1: #i22164# add page fields to DP layout dialog


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [927ada666014a2013c9e1e2bb42f87404189324b]

INTEGRATION: CWS pagefields (1.2.334); FILE MERGED 2003/12/05 16:29:03 nn 1.2.334.2: #i22164# handle numerical page fields 2003/12/05 13:56:29 nn 1.2.334.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [3f5fa38cd6ab2aa468834f0f2f9e23d93459dc39]

INTEGRATION: CWS pagefields (1.1.1.1.342); FILE MERGED 2003/12/05 13:56:28 nn 1.1.1.1.342.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [a3d239e6b975c19c16427bfd06b70950e33c9883]

INTEGRATION: CWS pagefields (1.2.336); FILE MERGED 2004/04/06 15:39:06 sab 1.2.336.3: #i26987#; add new methods HasIsVisible and HasShowDetails 2004/04/06 14:28:52 sab 1.2.336.2: #i26987#; add new method GetExistingMemberByName 2003/12/05 13:56:28 nn 1.2.336.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [6929d497ada3c15d8079222325f72148f63972d4]

INTEGRATION: CWS pagefields (1.2.334); FILE MERGED 2003/12/05 13:56:27 nn 1.2.334.1: #i22164# page field handling


2004-04-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff771d555ba1f0fc991ec582240170fd93b3a2fb]

INTEGRATION: CWS pagefields (1.3.320); FILE MERGED 2004/03/02 16:14:27 sab 1.3.320.2: #i22164#; don't use auto_ptr 2004/02/27 14:44:01 sab 1.3.320.1: #i22164#; add datapilotitems and page fields


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [4b68a57ad2292af3f7cd4225a07fcc222da01d4e]

INTEGRATION: CWS sj05 (1.33.70); FILE MERGED 2004/02/13 14:57:14 sj 1.33.70.2: RESYNC: (1.33-1.34); FILE MERGED 2004/02/03 16:13:15 cl 1.33.70.1: #i20484# added new CustomShape ui


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [846de957b6307565aace2757ab2c0b474a20be02]

INTEGRATION: CWS sj05 (1.58.50); FILE MERGED 2004/02/13 15:07:16 sj 1.58.50.2: RESYNC: (1.58-1.60); FILE MERGED 2004/02/03 16:13:11 cl 1.58.50.1: #i20484# added new CustomShape ui


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [5b07d9b8f7ee3cb6e77042b8e9af9436abb6e87e]

INTEGRATION: CWS sj05 (1.13.148); FILE MERGED 2004/02/03 16:13:10 cl 1.13.148.1: #i20484# added new CustomShape ui


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [4c4830584e09382c75590fc33fca9b2fb7beee35]

INTEGRATION: CWS sj05 (1.9.250); FILE MERGED 2004/02/13 15:17:17 sj 1.9.250.2: RESYNC: (1.9-1.10); FILE MERGED 2004/02/03 16:13:06 cl 1.9.250.1: #i20484# added new CustomShape ui


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [bf56c19db80d671931815e6c44927d14ae4151da]

INTEGRATION: CWS sj05 (1.9.40); FILE MERGED 2004/02/03 16:13:04 cl 1.9.40.1: #i20484# added new CustomShape ui


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [f7045b6f7fe913747d81892f2ecb7f0b4e6452ee]

INTEGRATION: CWS sj05 (1.9.148); FILE MERGED 2004/02/03 16:13:01 cl 1.9.148.1: #i20484# added new CustomShape ui


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [3c65786d5eaa19e6991cdace1294e3e46c63a30a]

INTEGRATION: CWS sj05 (1.15.66); FILE MERGED 2004/02/13 15:24:02 sj 1.15.66.3: RESYNC: (1.15-1.17); FILE MERGED 2004/02/09 15:03:34 cl 1.15.66.2: #i20484# added new CustomShape ui 2004/02/03 16:13:00 cl 1.15.66.1: #i20484# added new CustomShape ui


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [55f3296936a29139af8f39076d44b1357af26d5b]

INTEGRATION: CWS sj05 (1.5.30); FILE MERGED 2004/03/15 13:25:08 sj 1.5.30.5: RESYNC: (1.12-1.13); FILE MERGED 2004/02/13 15:36:14 sj 1.5.30.4: RESYNC: (1.10-1.12); FILE MERGED 2003/11/27 18:41:41 sj 1.5.30.3: RESYNC: (1.5-1.10); FILE MERGED 2003/10/24 09:34:58 sj 1.5.30.2: now storing mirror flags in a item 2003/09/12 16:41:07 sj 1.5.30.1: added autoshape functionality


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [3a67f2088e35fa64385f65c6a8d51aafbf48ec38]

INTEGRATION: CWS sj05 (1.7.52); FILE MERGED 2004/02/03 15:59:48 cl 1.7.52.1: #i20484# added new CustomShape ui


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [945daf8949eb1261af97f4a262e5029a3a2a9ece]

INTEGRATION: CWS numinput (1.9.284); FILE MERGED 2004/03/15 09:57:24 nn 1.9.284.2: RESYNC: (1.9-1.10); FILE MERGED 2004/03/11 18:46:58 nn 1.9.284.1: #i22345# SetString: don't always overwrite existing number formats


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [f2e6950be7710e2feb069a90125cc9f3a39e648f]

INTEGRATION: CWS frmvalidation (1.2.112); FILE MERGED 2004/03/12 09:02:59 fs 1.2.112.1: moved the services/interfaces related to binding controls to external values from drafts.com.sun.star.form/component to com.sun.star.form.binding


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [b8cc82141b4981f340f9379c6242f648215c5368]

INTEGRATION: CWS frmvalidation (1.4.106); FILE MERGED 2004/03/12 09:02:59 fs 1.4.106.1: moved the services/interfaces related to binding controls to external values from drafts.com.sun.star.form/component to com.sun.star.form.binding


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [edff4f27c301839d5a7d98930e087ac219bb1795]

INTEGRATION: CWS frmvalidation (1.2.112); FILE MERGED 2004/03/12 09:02:58 fs 1.2.112.1: moved the services/interfaces related to binding controls to external values from drafts.com.sun.star.form/component to com.sun.star.form.binding


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [9077e7e65aeae485ebd8e7ac2d6bf7e32e2ab72e]

INTEGRATION: CWS frmvalidation (1.4.106); FILE MERGED 2004/03/12 09:02:58 fs 1.4.106.1: moved the services/interfaces related to binding controls to external values from drafts.com.sun.star.form/component to com.sun.star.form.binding


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [11ef83f66a0966c249087481f6f0ed97e0b9a4cf]

INTEGRATION: CWS frmvalidation (1.5.108); FILE MERGED 2004/03/23 11:07:50 fs 1.5.108.2: RESYNC: (1.5-1.6); FILE MERGED 2004/03/12 09:01:57 fs 1.5.108.1: moved the services/interfaces related to binding controls to external values from drafts.com.sun.star.form/component to com.sun.star.form.binding


2004-04-02  Rüdiger Timm  <rt@openoffice.org>  [406aacffc27699c48415855a6e352c148054884e]

INTEGRATION: CWS frmvalidation (1.57.32); FILE MERGED 2004/03/23 11:42:35 fs 1.57.32.2: RESYNC: (1.57-1.58); FILE MERGED 2004/03/12 09:00:55 fs 1.57.32.1: moved the services related to binding controls to external values from drafts.com.sun.star.form/component to com.sun.star.form.binding


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [543614fccb7445196c7bb7f899c6527524777d3e]

INTEGRATION: CWS sab008 (1.1.2); FILE ADDED 2004/01/30 15:36:55 sab 1.1.2.1: #111653#; add description of DocumentSettings


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [ef243a615fd7c74e571a5ae17a0c2d742c847dd4]

INTEGRATION: CWS sab008 (1.11.82); FILE MERGED 2004/03/05 11:12:24 sab 1.11.82.3: #115009#; add own TableChanged event 2004/02/11 12:22:24 sab 1.11.82.2: RESYNC: (1.11-1.12); FILE MERGED 2004/01/23 12:26:54 sab 1.11.82.1: #115009#; add broadcast for a table change


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [3e88cc283ab1fe75884597bf5b78907f617794fc]

INTEGRATION: CWS sab008 (1.29.104); FILE MERGED 2004/03/08 18:07:00 dr 1.29.104.4: RESYNC: (1.33-1.34); FILE MERGED 2004/02/11 12:21:17 sab 1.29.104.3: RESYNC: (1.32-1.33); FILE MERGED 2004/01/26 10:11:30 sab 1.29.104.2: RESYNC: (1.29-1.32); FILE MERGED 2003/08/29 12:05:21 dr 1.29.104.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [617fd16660c5289cae0481837d5cf4ccce073a7e]

INTEGRATION: CWS sab008 (1.44.46); FILE MERGED 2004/03/15 11:21:50 dr 1.44.46.5: RESYNC: (1.48-1.49); FILE MERGED 2004/03/08 18:06:11 dr 1.44.46.4: RESYNC: (1.47-1.48); FILE MERGED 2004/02/11 12:19:25 sab 1.44.46.3: RESYNC: (1.45-1.47); FILE MERGED 2004/01/26 10:08:01 sab 1.44.46.2: RESYNC: (1.44-1.45); FILE MERGED 2004/01/23 12:26:12 sab 1.44.46.1: #115009#; overload PreNotify to send enhanced mouse events over API


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [9ea56855c831d49cd1e94a77ee2ffee2e70217cb]

INTEGRATION: CWS sab008 (1.10.230); FILE MERGED 2003/10/23 16:39:56 jmarmion 1.10.230.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [47fd15cba11b37e0b81988b02f48fc1b04d73443]

INTEGRATION: CWS sab008 (1.21.50); FILE MERGED 2004/02/11 12:18:03 sab 1.21.50.3: RESYNC: (1.22-1.23); FILE MERGED 2004/01/26 10:07:02 sab 1.21.50.2: RESYNC: (1.21-1.22); FILE MERGED 2003/10/23 16:38:53 jmarmion 1.21.50.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [41e6b902e1eb90e89e42a3c6d7adb263d66e15d4]

INTEGRATION: CWS sab008 (1.16.230); FILE MERGED 2004/03/05 11:12:02 sab 1.16.230.3: #115009#; add own TableChanged event 2004/02/26 16:28:43 sab 1.16.230.2: #115009#; handle empty and destroyed listener 2004/01/23 12:34:18 sab 1.16.230.1: #115009#; add XEnhancedMouseClickBroadcaster, add XActivationBroadcaster


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [d393618e10d65d9afbafd2ddc6afcef86dbf00f6]

INTEGRATION: CWS sab008 (1.26.232); FILE MERGED 2004/03/08 18:08:21 dr 1.26.232.2: RESYNC: (1.26-1.27); FILE MERGED 2004/01/23 11:11:26 sab 1.26.232.1: #i8868#; add scale to x and scale to y


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [87d95a7e3b80a1e947c60e0ddfc838d78a4dd96c]

INTEGRATION: CWS sab008 (1.9.24); FILE MERGED 2004/03/08 18:08:13 dr 1.9.24.3: RESYNC: (1.9-1.10); FILE MERGED 2004/02/17 12:35:23 sab 1.9.24.2: #111653#; add forgotten comma 2004/01/30 15:35:44 sab 1.9.24.1: #111653#; add service com.sun.star.sheet.DocumentSettings


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [98f20ea0f687ef91b62348a5e3af8a733735375c]

INTEGRATION: CWS sab008 (1.8.232); FILE MERGED 2004/02/20 10:31:43 sab 1.8.232.2: #115031#; change PropertyName RefreshDelay to RefreshPeriod also on AreaLinks 2004/01/23 12:28:12 sab 1.8.232.1: #115031#; change propertyname from RefreshDelay to RefreshPeriod


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [5f8b2c90c98d17981f324b1a4efff4c676f4fd6b]

INTEGRATION: CWS sab008 (1.36.20); FILE MERGED 2004/03/08 18:07:55 dr 1.36.20.5: RESYNC: (1.39-1.40); FILE MERGED 2004/02/11 12:24:53 sab 1.36.20.4: RESYNC: (1.38-1.39); FILE MERGED 2004/01/26 10:15:18 sab 1.36.20.3: RESYNC: (1.37-1.38); FILE MERGED 2003/11/06 11:13:03 sab 1.36.20.2: RESYNC: (1.36-1.37); FILE MERGED 2003/10/23 16:38:10 jmarmion 1.36.20.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [4f1c6ddef5045c8be86fef3c99af8a07e3b1a3f6]

INTEGRATION: CWS sab008 (1.18.128); FILE MERGED 2004/01/29 18:19:57 sab 1.18.128.3: #76694#; move property FROM_SELECTION from DatabaseImportDescriptor into XDatabaseRange; enable Database Refreshlistener 2004/01/26 10:14:59 sab 1.18.128.2: RESYNC: (1.18-1.19); FILE MERGED 2004/01/23 12:33:08 sab 1.18.128.1: #76694#; change propertyname Native to IsNative, add XRefreshable, add FromSelection, add RefreshPeriod


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [f43b100a7499fdab88907cdea70435a001dab993]

INTEGRATION: CWS sab008 (1.78.18); FILE MERGED 2004/03/15 11:22:17 dr 1.78.18.6: RESYNC: (1.81-1.82); FILE MERGED 2004/03/08 18:07:33 dr 1.78.18.5: RESYNC: (1.80-1.81); FILE MERGED 2004/02/20 13:35:40 sab 1.78.18.4: #i20889#; make getRanges work 2004/02/11 12:24:44 sab 1.78.18.3: RESYNC: (1.79-1.80); FILE MERGED 2004/01/26 10:14:24 sab 1.78.18.2: RESYNC: (1.78-1.79); FILE MERGED 2004/01/23 12:30:30 sab 1.78.18.1: #i20889#; add protected attribute on Scenarios, add XScenarioEnhanced, add new properties to scenario


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [8ef3503a1f81a4248e2697f32f58e7c98d0a57f3]

INTEGRATION: CWS sab008 (1.47.44); FILE MERGED 2004/02/11 12:26:25 sab 1.47.44.4: RESYNC: (1.48-1.49); FILE MERGED 2004/01/26 10:18:22 sab 1.47.44.3: RESYNC: (1.47-1.48); FILE MERGED 2003/11/18 15:18:08 dr 1.47.44.2: #i8868# final string changes 2003/08/29 12:05:02 dr 1.47.44.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [e67b2d6b9ae2f96a6065bfd68180b1be3bace5e5]

INTEGRATION: CWS sab008 (1.4.238); FILE MERGED 2004/01/26 10:25:14 sab 1.4.238.5: RESYNC: (1.4-1.5); FILE MERGED 2003/10/13 14:55:47 dr 1.4.238.4: #i8868# scale printout to width/height, fixed texts for all ctrls 2003/09/25 10:38:17 dr 1.4.238.3: #i8868# scale printout to width/height 2003/09/24 15:15:03 dr 1.4.238.2: #i8868# scale printout to width/height 2003/08/29 12:04:40 dr 1.4.238.1: #112022# #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [24d665270b091108f0513f7e4705c315453d0464]

INTEGRATION: CWS sab008 (1.44.44); FILE MERGED 2004/01/26 10:24:26 sab 1.44.44.6: RESYNC: (1.44-1.46); FILE MERGED 2003/11/18 15:40:13 dr 1.44.44.5: #i8868# final string changes 2003/10/13 14:55:48 dr 1.44.44.4: #i8868# scale printout to width/height, fixed texts for all ctrls 2003/09/25 10:38:17 dr 1.44.44.3: #i8868# scale printout to width/height 2003/09/24 15:15:04 dr 1.44.44.2: #i8868# scale printout to width/height 2003/08/29 12:04:40 dr 1.44.44.1: #112022# #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [d1c4e1e9406b4d76358539fbf495a1ded9a9361a]

INTEGRATION: CWS sab008 (1.5.238); FILE MERGED 2003/10/13 14:55:47 dr 1.5.238.3: #i8868# scale printout to width/height, fixed texts for all ctrls 2003/09/24 15:15:03 dr 1.5.238.2: #i8868# scale printout to width/height 2003/08/29 12:04:40 dr 1.5.238.1: #112022# #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [3a592cc0b8401daf58ccfe7fcffc36c63fb2986b]

INTEGRATION: CWS sab008 (1.2.274); FILE MERGED 2003/10/23 16:36:13 jmarmion 1.2.274.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [91b1bda5ed0169eb1cf28bc4881eeef01be2b6a9]

INTEGRATION: CWS sab008 (1.4.238); FILE MERGED 2003/10/13 14:55:27 dr 1.4.238.4: #i8868# scale printout to width/height, fixed texts for all ctrls 2003/09/25 10:36:53 dr 1.4.238.3: #i8868# scale printout to width/height 2003/09/24 15:13:51 dr 1.4.238.2: #i8868# scale printout to width/height 2003/08/29 12:03:41 dr 1.4.238.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [acb1d913f386918d801c71984bbbf41d2a0610b1]

INTEGRATION: CWS sab008 (1.2.260); FILE MERGED 2003/10/23 16:34:53 jmarmion 1.2.260.2: #i20889# - add protection to scenarios 2003/10/14 12:12:02 dr 1.2.260.1: #i20889# new checkbox for protection


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [8aae0c0e94e424c40176f7640b3b78d8d77ccc8e]

INTEGRATION: CWS sab008 (1.8.104); FILE MERGED 2004/01/26 10:30:03 sab 1.8.104.2: RESYNC: (1.8-1.9); FILE MERGED 2003/08/29 12:03:40 dr 1.8.104.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [d708409e0d974431cc591afee3fe7cd6ab42ff17]

INTEGRATION: CWS sab008 (1.12.50); FILE MERGED 2004/01/23 12:25:32 sab 1.12.50.1: #115009#; overload PreNotify to send enhanced mouse events over API


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [54c9cd617264ae9caf098ae03eaa4478ba986d2b]

INTEGRATION: CWS sab008 (1.25.20); FILE MERGED 2004/02/11 12:29:20 sab 1.25.20.2: RESYNC: (1.25-1.26); FILE MERGED 2004/01/29 18:16:00 sab 1.25.20.1: #76694#; it is a ScRefreshTimer* and no ScDBData*


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [8b0def69a09e7b5dcf6b5fc124310c70ff5c1c1a]

INTEGRATION: CWS sab008 (1.10.104); FILE MERGED 2004/01/29 18:17:46 sab 1.10.104.1: #76694#; it is a ScRefreshTimer* and no ScDBData*


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [0b138f2411acfaa333da205f55bfb5fc0c67e1c3]

INTEGRATION: CWS sab008 (1.26.18); FILE MERGED 2004/03/08 18:10:00 dr 1.26.18.4: RESYNC: (1.30-1.31); FILE MERGED 2004/02/11 12:34:34 sab 1.26.18.3: RESYNC: (1.28-1.30); FILE MERGED 2004/01/26 10:34:58 sab 1.26.18.2: RESYNC: (1.26-1.28); FILE MERGED 2003/10/23 16:33:51 jmarmion 1.26.18.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [04988458c6f6eb503dd04c56d578e05e581118ed]

INTEGRATION: CWS sab008 (1.13.128); FILE MERGED 2004/02/11 12:33:41 sab 1.13.128.2: RESYNC: (1.13-1.14); FILE MERGED 2004/01/29 18:18:13 sab 1.13.128.1: #76694#; add Database Refreshlistener support


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [f381b459f207f9e4a53f6843926b3189f10bc153]

INTEGRATION: CWS sab008 (1.36.44); FILE MERGED 2004/01/26 10:38:20 sab 1.36.44.3: RESYNC: (1.36-1.37); FILE MERGED 2003/11/20 14:29:02 jmarmion 1.36.44.2: #i22473# - string for scenario protect feature. 2003/10/14 12:12:34 dr 1.36.44.1: #i20889# new checkbox for protection


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [6ab2bd9fb3e730340b2a6fa8b51b6fe561936d7a]

INTEGRATION: CWS sab008 (1.2.260); FILE MERGED 2003/10/14 12:12:34 dr 1.2.260.1: #i20889# new checkbox for protection


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [2a5f0b21e16cd7b494c8ac7c37b6073a352a5207]

INTEGRATION: CWS sab008 (1.7.258); FILE MERGED 2004/03/05 10:19:36 jmarmion 1.7.258.3: #i20889# scenario protection:default prevent changes to true even when disabled. 2003/10/23 16:32:29 jmarmion 1.7.258.2: #i20889# - add protection to scenarios 2003/10/14 12:12:33 dr 1.7.258.1: #i20889# new checkbox for protection


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [c91cc48bff27165bc60abfac875e374e9a080202]

INTEGRATION: CWS sab008 (1.21.104); FILE MERGED 2004/01/28 13:39:21 sab 1.21.104.1: #114855#; use GetRows to get the rows instead of GetCols


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [7a6c08a8852d0fadce6544f9995d25235c807a88]

INTEGRATION: CWS sab008 (1.3.264); FILE MERGED 2004/01/23 12:23:33 sab 1.3.264.1: #i20889#; add protected attribute on Scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [571ccd8a95e0e8cc51baea3cc2797b7b19ef8619]

INTEGRATION: CWS sab008 (1.7.252); FILE MERGED 2004/01/23 12:23:32 sab 1.7.252.1: #i20889#; add protected attribute on Scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [23617ed254209f021ba7557714270a12be6338a3]

INTEGRATION: CWS sab008 (1.66.48); FILE MERGED 2004/02/11 12:37:02 sab 1.66.48.3: RESYNC: (1.67-1.68); FILE MERGED 2004/01/26 10:42:25 sab 1.66.48.2: RESYNC: (1.66-1.67); FILE MERGED 2004/01/23 12:22:52 sab 1.66.48.1: #i20889#; add protected attribute on Scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [31ac0b847270c8bd94f46fa6758288d5e178c490]

INTEGRATION: CWS sab008 (1.89.48); FILE MERGED 2004/01/26 10:42:12 sab 1.89.48.2: RESYNC: (1.89-1.90); FILE MERGED 2004/01/23 12:22:51 sab 1.89.48.1: #i20889#; add protected attribute on Scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [5ab26a818c4dd97820d6d83300115ea7fb12cc4c]

INTEGRATION: CWS sab008 (1.169.48); FILE MERGED 2004/02/11 12:36:54 sab 1.169.48.3: RESYNC: (1.171-1.172); FILE MERGED 2004/01/26 10:41:54 sab 1.169.48.2: RESYNC: (1.169-1.171); FILE MERGED 2004/01/23 12:22:13 sab 1.169.48.1: #i20889#; add protected attribute on Scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [9d33008416bc5842aec2340d64ffbf3239d18989]

INTEGRATION: CWS sab008 (1.20.128); FILE MERGED 2004/01/23 12:21:19 sab 1.20.128.1: #76694#; change propertyname Native to IsNative


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [197390865dd7328cf167b280e1973b4c75a5878f]

INTEGRATION: CWS sab008 (1.13.44); FILE MERGED 2004/01/26 10:41:41 sab 1.13.44.2: RESYNC: (1.13-1.14); FILE MERGED 2004/01/23 12:20:51 sab 1.13.44.1: #76694#; change propertyname Native to IsNative


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [46d2d8402fbaf2e1b4aa6edb40841ebc545dd5fa]

INTEGRATION: CWS sab008 (1.58.20); FILE MERGED 2004/03/08 18:11:41 dr 1.58.20.5: RESYNC: (1.63-1.64); FILE MERGED 2004/02/11 12:37:48 sab 1.58.20.4: RESYNC: (1.61-1.63); FILE MERGED 2004/01/26 10:44:42 sab 1.58.20.3: RESYNC: (1.59-1.61); FILE MERGED 2003/11/06 11:16:17 sab 1.58.20.2: RESYNC: (1.58-1.59); FILE MERGED 2003/10/23 16:30:56 jmarmion 1.58.20.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [425a5e96dae2fc61136a0d0ae5b5ebb5cddca791]

INTEGRATION: CWS sab008 (1.30.24); FILE MERGED 2004/03/08 18:12:38 dr 1.30.24.5: RESYNC: (1.33-1.34); FILE MERGED 2004/02/11 12:38:18 sab 1.30.24.4: RESYNC: (1.32-1.33); FILE MERGED 2004/01/26 10:48:57 sab 1.30.24.3: RESYNC: (1.31-1.32); FILE MERGED 2003/11/06 11:16:30 sab 1.30.24.2: RESYNC: (1.30-1.31); FILE MERGED 2003/10/23 16:29:34 jmarmion 1.30.24.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [9ef9ceee2afee5bd91efdafb1b4520a52358461a]

INTEGRATION: CWS sab008 (1.2.266); FILE MERGED 2003/10/23 16:28:50 jmarmion 1.2.266.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [f816e26e6ea892117dfffa0250f797f79864a51c]

INTEGRATION: CWS sab008 (1.2.68); FILE MERGED 2004/03/08 18:19:34 dr 1.2.68.2: RESYNC: (1.2-1.3); FILE MERGED 2004/03/08 16:47:49 dr 1.2.68.1: #115852# imp/exp of 'scale to width/height'


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [d8e0748662f60bb0ae4faf1748c11ce9ec0977b0]

INTEGRATION: CWS sab008 (1.2.68); FILE MERGED 2004/03/08 18:18:27 dr 1.2.68.2: RESYNC: (1.2-1.3); FILE MERGED 2004/03/08 16:47:50 dr 1.2.68.1: #115852# imp/exp of 'scale to width/height'


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [26b97bfb37d7d20f8eeac058d4a1f95ffa6dd493]

INTEGRATION: CWS sab008 (1.42.88); FILE MERGED 2004/03/08 18:17:30 dr 1.42.88.3: RESYNC: (1.43-1.44); FILE MERGED 2004/01/26 10:58:42 sab 1.42.88.2: RESYNC: (1.42-1.43); FILE MERGED 2003/10/23 16:27:30 jmarmion 1.42.88.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [5e9da5b178f297fadaaaaee9e3ebfa2c22bf5b73]

INTEGRATION: CWS sab008 (1.1.1.1.274); FILE MERGED 2004/01/29 18:15:03 sab 1.1.1.1.274.1: #76694#; add Database Refreshlistener support


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [15e3add51be1d9f67db83d4fe3022962595c6ac7]

INTEGRATION: CWS sab008 (1.22.120); FILE MERGED 2004/02/26 14:52:18 sab 1.22.120.5: #i20889#; initialize bIsEditable 2004/02/26 13:59:00 sab 1.22.120.4: #i20889#; initialize bIsEditable 2004/02/11 12:45:42 sab 1.22.120.3: RESYNC: (1.24-1.25); FILE MERGED 2004/01/26 11:10:06 sab 1.22.120.2: RESYNC: (1.22-1.24); FILE MERGED 2003/10/23 16:26:16 jmarmion 1.22.120.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [d1026d37a4c27867a9e772e0a941536d975d1d22]

INTEGRATION: CWS sab008 (1.4.230); FILE MERGED 2004/02/11 12:45:22 sab 1.4.230.2: RESYNC: (1.4-1.5); FILE MERGED 2003/08/29 12:02:52 dr 1.4.230.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [371acfa64f5fa8dc1aea3ae596183d23f6c8e110]

INTEGRATION: CWS sab008 (1.2.252); FILE MERGED 2003/08/29 12:02:51 dr 1.2.252.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [109db93ba8f411bba58a9bcc7d459bfde3a995ad]

INTEGRATION: CWS sab008 (1.18.48); FILE MERGED 2004/03/08 18:21:31 dr 1.18.48.4: RESYNC: (1.20-1.21); FILE MERGED 2004/02/11 12:44:01 sab 1.18.48.3: RESYNC: (1.19-1.20); FILE MERGED 2003/11/06 11:18:46 sab 1.18.48.2: RESYNC: (1.18-1.19); FILE MERGED 2003/10/23 16:25:14 jmarmion 1.18.48.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [a287f17207c73e3b0abb8cb95eada5ea2fe85af2]

INTEGRATION: CWS sab008 (1.18.120); FILE MERGED 2003/11/18 15:17:42 dr 1.18.120.2: #i8868# final string changes 2003/08/29 12:02:51 dr 1.18.120.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [8bb8d680ccd8a9c23f229b07e2a8edf0ec59eaa4]

INTEGRATION: CWS sab008 (1.6.236); FILE MERGED 2003/11/18 15:17:41 dr 1.6.236.2: #i8868# final string changes 2003/08/29 12:02:50 dr 1.6.236.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [41a43ceb6344e65392d279aeb6943ca7f522cd40]

INTEGRATION: CWS sab008 (1.2.22); FILE MERGED 2004/03/04 13:16:01 sw 1.2.22.2: #115035# 2004/02/19 12:15:03 sw 1.2.22.1: #111653#


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [6f209d1f07f8714f747c7c56221e44b278aa422f]

INTEGRATION: CWS sab008 (1.2.22); FILE MERGED 2004/03/04 13:16:01 sw 1.2.22.1: #115035#


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [a9cfb1376f478e70b7ebabf6920f257a75d02d19]

INTEGRATION: CWS sab008 (1.2.22); FILE MERGED 2004/03/04 13:16:00 sw 1.2.22.1: #115035#


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [a64cd82e037d639728de7af220dfbcb806175985]

INTEGRATION: CWS sab008 (1.6.230); FILE MERGED 2004/01/29 18:14:37 sab 1.6.230.2: #115009#; add exceptions and fix case problems 2004/01/23 12:17:56 sab 1.6.230.1: #115009#; add XEnhancedMouseClickBroadcaster and XActivationBroadcaster


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [4b94c90052abc7ba10b11262d875083296d6a716]

INTEGRATION: CWS sab008 (1.3.260); FILE MERGED 2004/02/20 13:34:57 sab 1.3.260.4: #i20889#; remove merge problem 2004/02/11 12:49:01 sab 1.3.260.3: RESYNC: (1.4-1.5); FILE MERGED 2004/01/26 11:12:29 sab 1.3.260.2: RESYNC: (1.3-1.4); FILE MERGED 2004/01/23 12:13:50 sab 1.3.260.1: #i20889#; add some new properties for scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [67b53fb8be8acfcc46b16a3e9f7b022af1bba24d]

INTEGRATION: CWS sab008 (1.54.20); FILE MERGED 2004/03/08 18:24:14 dr 1.54.20.4: RESYNC: (1.56-1.57); FILE MERGED 2004/02/11 12:48:52 sab 1.54.20.3: RESYNC: (1.55-1.56); FILE MERGED 2004/01/26 11:12:16 sab 1.54.20.2: RESYNC: (1.54-1.55); FILE MERGED 2004/01/23 12:12:54 sab 1.54.20.1: #i8868#;#i20889#;#76694#;#111775#;#115031#; add some new properties


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [af00806d4493f07219a3adf8007ef4c4c771cbc9]

INTEGRATION: CWS sab008 (1.8.24); FILE MERGED 2004/03/08 18:23:42 dr 1.8.24.2: RESYNC: (1.8-1.9); FILE MERGED 2004/01/30 15:35:32 sab 1.8.24.1: #111653#; add service com.sun.star.sheet.DocumentSettings


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [ced7f484a3df7f0b27323dd2f0fcdd6cfc8d8d1a]

INTEGRATION: CWS sab008 (1.7.232); FILE MERGED 2003/08/29 12:02:25 dr 1.7.232.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [4c1f526d87e9e70ff6c0033a62c29031babfff65]

INTEGRATION: CWS sab008 (1.38.4); FILE MERGED 2004/03/05 11:11:28 sab 1.38.4.1: #115009#; add own TableChanged event


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [bc087f782c3a000780726100516cab34a88bb95d]

INTEGRATION: CWS sab008 (1.1.1.1.274); FILE MERGED 2003/08/29 12:02:25 dr 1.1.1.1.274.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [9df4a56f5bff09bee04f0da9e6ca5896d2fc9bd0]

INTEGRATION: CWS sab008 (1.1.1.1.274); FILE MERGED 2004/01/29 18:12:59 sab 1.1.1.1.274.1: #76694#; add Database Refreshlistener support


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [7682131df9f99da903880eafbd078d05abf8aebe]

INTEGRATION: CWS sab008 (1.4.260); FILE MERGED 2004/02/11 12:48:20 sab 1.4.260.3: RESYNC: (1.4-1.5); FILE MERGED 2003/11/18 15:17:53 dr 1.4.260.2: #i8868# final string changes 2003/08/29 12:02:23 dr 1.4.260.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [77d53ddc52c62129451b288226b79241c42f471c]

INTEGRATION: CWS sab008 (1.24.48); FILE MERGED 2004/03/15 11:36:32 dr 1.24.48.5: RESYNC: (1.27-1.28); FILE MERGED 2004/03/08 18:23:18 dr 1.24.48.4: RESYNC: (1.26-1.27); FILE MERGED 2004/02/11 12:48:09 sab 1.24.48.3: RESYNC: (1.25-1.26); FILE MERGED 2004/01/26 11:11:09 sab 1.24.48.2: RESYNC: (1.24-1.25); FILE MERGED 2003/10/23 16:23:13 jmarmion 1.24.48.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [a2fc95a68b863ce0bf995c80f4a26bade63f1c62]

INTEGRATION: CWS sab008 (1.68.44); FILE MERGED 2004/03/15 11:36:14 dr 1.68.44.6: RESYNC: (1.73-1.74); FILE MERGED 2004/03/08 18:22:57 dr 1.68.44.5: RESYNC: (1.72-1.73); FILE MERGED 2004/02/11 12:47:48 sab 1.68.44.4: RESYNC: (1.71-1.72); FILE MERGED 2004/01/26 11:10:44 sab 1.68.44.3: RESYNC: (1.69-1.71); FILE MERGED 2003/11/06 11:27:36 sab 1.68.44.2: RESYNC: (1.68-1.69); FILE MERGED 2003/10/23 16:24:09 jmarmion 1.68.44.1: #i20889# - add protection to scenarios


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [8f1d19fb3da3389be244abebd13c55808087616d]

INTEGRATION: CWS sab008 (1.4.230); FILE MERGED 2004/01/29 18:12:34 sab 1.4.230.2: #76694#; add Refreshlistener support 2004/01/23 12:16:45 sab 1.4.230.1: #76694#; add XRefreshable


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [c514f5ed8e70a505331667cf4281b5dd9e8dc654]

INTEGRATION: CWS sab008 (1.18.24); FILE MERGED 2004/01/23 12:15:30 sab 1.18.24.1: #i20889#; add XSceanrioEnhanced


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [246a9fbf344397160be45a0c25969c9f62f8a04b]

INTEGRATION: CWS sab008 (1.2.262); FILE MERGED 2003/08/29 12:02:22 dr 1.2.262.1: #i8868# 1st prototype: scale printout to width/height


2004-03-19  Oliver Bolte  <obo@openoffice.org>  [bc9ef2ed8884c1619c2bfd57126938667088b053]

INTEGRATION: CWS sb15 (1.9.46); FILE MERGED 2004/02/26 17:41:22 tbe 1.9.46.1: #i24360# Remove INET_PROT_VND_SUN_STAR_SCRIPT


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [b87821555f16270273b0a11cc5bff69e516a2e95]

INTEGRATION: CWS nn01 (1.42.2); FILE MERGED 2004/03/10 19:07:24 nn 1.42.2.1: #115112# handle RTL in OLE objects


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [1b7c7b0fdf2e2944e86907b60b98d9c66fc201af]

INTEGRATION: CWS nn01 (1.34.54); FILE MERGED 2004/03/10 19:07:23 nn 1.34.54.1: #115112# handle RTL in OLE objects


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [91d55ee7ee8c2cd89ee70dd121d14d25d390fb7a]

INTEGRATION: CWS nn01 (1.16.56); FILE MERGED 2004/03/10 19:07:23 nn 1.16.56.1: #115112# handle RTL in OLE objects


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [6f29bf3eb54193f33acf35da6f619cb8aaad3cda]

INTEGRATION: CWS nn01 (1.27.14); FILE MERGED 2004/03/12 11:16:09 nn 1.27.14.1: #i26376# setAllPropertiesToDefault: restore default BoxInfoItem


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [456ad3382340453a681f14e61e1642a8c116e849]

INTEGRATION: CWS nn01 (1.60.56); FILE MERGED 2004/03/08 12:49:29 nn 1.60.56.1: #i24515# merge changes from CWS calcpp2


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [2e845907680a255d570cf0a76bde74e21c8e1b9f]

INTEGRATION: CWS nn01 (1.10.258); FILE MERGED 2004/03/10 19:07:03 nn 1.10.258.1: #115112# handle RTL in OLE objects


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [d824413d03a47a2815fbbf1fd1c40dd610c85262]

INTEGRATION: CWS nn01 (1.31.2); FILE MERGED 2004/03/10 19:07:02 nn 1.31.2.1: #115112# handle RTL in OLE objects


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [7efbb7ba4cab4329ab5ba7973fb6dceae7b4ee5d]

INTEGRATION: CWS nn01 (1.51.56); FILE MERGED 2004/03/08 12:33:36 nn 1.51.56.1: #i23720# merge changes from CWS calcpp2


2004-03-17  Oliver Bolte  <obo@openoffice.org>  [bc921d0582d83f3ff98affd9a6143393d12d15f5]

INTEGRATION: CWS nn01 (1.21.2); FILE MERGED 2004/03/10 19:06:46 nn 1.21.2.1: #115112# handle RTL in OLE objects


2004-03-12  Jens-Heiner Rechtien  <hr@openoffice.org>  [7a5c4b84ebde9673792df1b32e2daaf604b359c1]

#i10000#: for scope


2004-03-11  Jens-Heiner Rechtien  <hr@openoffice.org>  [00baddb2e756edaaee2518b1250c2c91ceb964db]

#i10000#: for scope


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d1c7fe29f671a3c22b6981373c4a890749ac50c8]

INTEGRATION: CWS mbaqfixes (1.20.16); FILE MERGED 2004/02/23 17:11:33 mba 1.20.16.1: #115453#: errornous local variable caused crash


2004-03-08  Dan Williams  <fa@openoffice.org>  [7af53111b315c4ae4d199f61b42ecae3d0b2a89b]

Correct variable scoping in 'for' statements to be ISO C++ compliant.  You technically cannot declare a variable like 'for ( int i=0; ...; ...) {} i = 1' and then use it later outside of the for() statement.


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [98fe702d5c47dbd977dcf4031141b8c936e8010c]

INTEGRATION: CWS cac (1.5.44); FILE MERGED 2003/11/14 11:28:09 dr 1.5.44.3: #100000# resync error 2003/11/07 09:25:25 dr 1.5.44.2: RESYNC: (1.5-1.6); FILE MERGED 2003/11/05 08:46:47 dr 1.5.44.1: #i4070# use ScMatrix class directly


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7cd4541f7c359dfe641abcf475e2ffe1bc2dd67d]

INTEGRATION: CWS cac (1.19.48); FILE MERGED 2003/11/06 11:23:52 er 1.19.48.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [535797f0b39c9bf32e3faa37e8bc9215178c5718]

INTEGRATION: CWS cac (1.43.20); FILE MERGED 2003/09/02 12:23:10 er 1.43.20.2: RESYNC: (1.43-1.44); FILE MERGED 2003/07/01 15:49:25 er 1.43.20.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1622b666cb5326ff527457567aafee71a902e24c]

INTEGRATION: CWS cac (1.8.174); FILE MERGED 2003/10/30 15:29:21 er 1.8.174.3: RESYNC: (1.8-1.9); FILE MERGED 2003/10/29 17:28:42 er 1.8.174.2: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/07/01 15:49:23 er 1.8.174.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [70d3960cabcfa972f21e9b644081fe9f64448cab]

INTEGRATION: CWS cac (1.77.72); FILE MERGED 2003/10/30 15:28:06 er 1.77.72.2: RESYNC: (1.77-1.78); FILE MERGED 2003/07/01 15:49:22 er 1.77.72.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e4e79a324296516d6bb4db417e3db4a4162f45d1]

INTEGRATION: CWS cac (1.1.1.1.218); FILE MERGED 2003/11/05 19:02:01 er 1.1.1.1.218.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [36351172217ee9c1dbb1306a0aa7943919dc1e62]

INTEGRATION: CWS cac (1.2.182); FILE MERGED 2003/11/05 19:02:00 er 1.2.182.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [27f24cd4e224b39be0948c0557dbcec79b5bdee2]

INTEGRATION: CWS cac (1.2.192); FILE MERGED 2003/11/06 12:31:14 er 1.2.192.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9f61f4028dd8180438f6227a10a910a013962853]

INTEGRATION: CWS cac (1.3.182); FILE MERGED 2003/11/05 19:02:00 er 1.3.182.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5120a53500b1ec120e2b0984b54761aad7d24664]

INTEGRATION: CWS cac (1.1.1.1.218); FILE MERGED 2003/11/05 19:01:59 er 1.1.1.1.218.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c2ff68a035b42cea6d3ea91c9ab04f8e4f17f247]

INTEGRATION: CWS cac (1.7.174); FILE MERGED 2003/11/05 19:01:59 er 1.7.174.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f24f65f89c5584d16a8a902a76f17572a6c8964c]

INTEGRATION: CWS cac (1.6.174); FILE MERGED 2003/11/06 12:31:02 er 1.6.174.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [947285261e8a603e1e8de4e8e47cca68d8b0697c]

INTEGRATION: CWS cac (1.25.16); FILE MERGED 2003/07/01 15:49:20 er 1.25.16.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [bed8bb0b3fe207f9ca05436d9ab3b34b0c22315f]

INTEGRATION: CWS cac (1.62.16); FILE MERGED 2003/10/30 15:34:21 er 1.62.16.2: RESYNC: (1.62-1.63); FILE MERGED 2003/07/01 15:49:19 er 1.62.16.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6e698e75d6676df6adf6e100c5a8fcc116dde643]

INTEGRATION: CWS cac (1.44.48); FILE MERGED 2003/07/01 15:49:19 er 1.44.48.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3eb04fe78d3310dcedf1fa515ff62f20d35ab09c]

INTEGRATION: CWS cac (1.33.16); FILE MERGED 2003/11/14 12:54:31 dr 1.33.16.2: RESYNC: (1.33-1.34); FILE MERGED 2003/11/06 10:12:08 er 1.33.16.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [8896b52437ca8dccf699ba497b97f8d1479e3c12]

INTEGRATION: CWS cac (1.8.196); FILE MERGED 2003/11/03 14:36:07 dr 1.8.196.3: #i4070# use ScMatrix class directly 2003/10/30 14:04:03 dr 1.8.196.2: #i4070# direct use of class ScMatrix 2003/10/29 17:28:40 er 1.8.196.1: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f09cdb2948ebd7a5caa054fcb97744985d28ef3f]

INTEGRATION: CWS cac (1.10.196); FILE MERGED 2003/11/03 14:36:06 dr 1.10.196.1: #i4070# use ScMatrix class directly


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [cd2173c4a1c255ba28f01ad548afd8831f0c8010]

INTEGRATION: CWS cac (1.8.54); FILE MERGED 2003/11/14 13:01:35 dr 1.8.54.3: RESYNC: (1.10-1.11); FILE MERGED 2003/10/30 15:40:36 er 1.8.54.2: RESYNC: (1.8-1.10); FILE MERGED 2003/10/30 14:03:03 dr 1.8.54.1: #i4070# direct use of class ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [a174614de9ad717fb044171a5216ac0c83ab263a]

INTEGRATION: CWS cac (1.8.12); FILE MERGED 2003/11/14 13:00:20 dr 1.8.12.3: RESYNC: (1.9-1.10); FILE MERGED 2003/10/30 15:39:41 er 1.8.12.2: RESYNC: (1.8-1.9); FILE MERGED 2003/10/30 14:03:02 dr 1.8.12.1: #i4070# direct use of class ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [448cb1aab8f36936e09caeb692e5c2478ae80fa5]

INTEGRATION: CWS cac (1.4.42); FILE MERGED 2003/11/14 12:59:28 dr 1.4.42.2: RESYNC: (1.4-1.5); FILE MERGED 2003/11/03 14:35:08 dr 1.4.42.1: #i4070# use ScMatrix class directly


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [4909c814378cb1849408eb52e4343820c0c010d0]

INTEGRATION: CWS cac (1.5.12); FILE MERGED 2003/11/14 12:57:47 dr 1.5.12.4: RESYNC: (1.6-1.7); FILE MERGED 2003/11/03 14:35:07 dr 1.5.12.3: #i4070# use ScMatrix class directly 2003/10/30 15:38:23 er 1.5.12.2: RESYNC: (1.5-1.6); FILE MERGED 2003/10/30 14:03:02 dr 1.5.12.1: #i4070# direct use of class ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [3c39c0c6cec8633545163c67195cd8dd7cdb3681]

INTEGRATION: CWS cac (1.34.48); FILE MERGED 2003/11/14 12:55:48 dr 1.34.48.3: RESYNC: (1.35-1.36); FILE MERGED 2003/10/30 15:37:36 er 1.34.48.2: RESYNC: (1.34-1.35); FILE MERGED 2003/10/30 14:03:01 dr 1.34.48.1: #i4070# direct use of class ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [eb2749e9d850a4078301bc01acc6400ed8486c84]

INTEGRATION: CWS cac (1.9.12); FILE MERGED 2003/11/14 13:08:55 dr 1.9.12.3: RESYNC: (1.11-1.12); FILE MERGED 2003/10/30 15:45:14 er 1.9.12.2: RESYNC: (1.9-1.11); FILE MERGED 2003/10/30 14:02:00 dr 1.9.12.1: #i4070# direct use of class ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7d90c0a8d61a14d060efb4a18fee4854467e007e]

INTEGRATION: CWS cac (1.7.42); FILE MERGED 2003/11/14 13:07:20 dr 1.7.42.3: RESYNC: (1.7-1.8); FILE MERGED 2003/11/05 10:32:43 dr 1.7.42.2: #i4070# convert empty cells in DDE link to 0 2003/11/03 14:34:17 dr 1.7.42.1: #i4070# use ScMatrix class directly


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [869d2098e7671df87965e2a5010b315622b3b0e4]

INTEGRATION: CWS cac (1.4.22); FILE MERGED 2003/11/14 13:05:39 dr 1.4.22.3: RESYNC: (1.4-1.5); FILE MERGED 2003/10/30 14:01:59 dr 1.4.22.2: #i4070# direct use of class ScMatrix 2003/10/29 17:28:39 er 1.4.22.1: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b8e704c97544032e9400a9c7c9bb311c2a575ee1]

INTEGRATION: CWS cac (1.7.12); FILE MERGED 2003/11/14 13:05:29 dr 1.7.12.4: RESYNC: (1.9-1.10); FILE MERGED 2003/11/03 14:34:16 dr 1.7.12.3: #i4070# use ScMatrix class directly 2003/10/30 15:43:15 er 1.7.12.2: RESYNC: (1.7-1.9); FILE MERGED 2003/10/30 14:01:59 dr 1.7.12.1: #i4070# direct use of class ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d4d1bad4138d17844f6cd74ceb7eda557498cb96]

INTEGRATION: CWS cac (1.63.40); FILE MERGED 2003/11/14 13:04:15 dr 1.63.40.5: RESYNC: (1.66-1.67); FILE MERGED 2003/10/30 15:42:35 er 1.63.40.4: RESYNC: (1.65-1.66); FILE MERGED 2003/10/30 14:01:58 dr 1.63.40.3: #i4070# direct use of class ScMatrix 2003/09/02 12:44:58 er 1.63.40.2: RESYNC: (1.63-1.65); FILE MERGED 2003/07/01 15:49:17 er 1.63.40.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1f56904149f35d60f7ebbf452a0746abc9643e36]

INTEGRATION: CWS cac (1.21.28); FILE MERGED 2003/11/14 13:03:25 dr 1.21.28.3: RESYNC: (1.21-1.22); FILE MERGED 2003/11/03 14:34:16 dr 1.21.28.2: #i4070# use ScMatrix class directly 2003/07/01 15:49:16 er 1.21.28.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec197abb86d299f03f83abff7cf288f98c2f0ffc]

INTEGRATION: CWS cac (1.15.72); FILE MERGED 2003/10/20 19:51:19 er 1.15.72.6: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte 2003/10/17 20:04:49 er 1.15.72.5: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/10/02 18:42:53 er 1.15.72.4: #i4070# #i19765# ImpTokenIterator.nStop: general jump/subroutine ability 2003/09/02 12:48:13 er 1.15.72.3: RESYNC: (1.15-1.16); FILE MERGED Resolve conflicts between cws_srx645_cac and SRC680:m3 2003/07/14 16:01:19 er 1.15.72.2: #i4070# array conditions, first wave 2003/07/01 15:49:12 er 1.15.72.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5f646171d1f4f685432f5a13ec5d27b83fd8ed0a]

INTEGRATION: CWS cac (1.3.72); FILE MERGED 2003/07/15 14:15:48 er 1.3.72.1: #i4070# remove old fp-handling leftovers


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8678a09ddabcc89ac2ac722189e29165f51c67d]

INTEGRATION: CWS cac (1.6.72); FILE MERGED 2003/10/30 13:06:12 er 1.6.72.4: #4070# add GetError 2003/10/29 17:28:35 er 1.6.72.3: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/09/11 14:38:23 er 1.6.72.2: #i4070# handle empty FALSE jump path as empty matrix element 2003/07/14 16:01:18 er 1.6.72.1: #i4070# array conditions, first wave


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b611044e39d734f6caa87306cd47993eb0c0223d]

INTEGRATION: CWS cac (1.1.2); FILE ADDED 2003/11/05 19:18:01 er 1.1.2.7: #i4070# generate parameter classification documentation if OSL_DEBUG_LEVEL>1 (debug=t) and environment variable OOO_CALC_GENPARCLASSDOC defined 2003/10/21 14:17:00 er 1.1.2.6: #i4070# don't use memory.h 2003/10/20 19:51:19 er 1.1.2.5: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte 2003/10/20 11:21:28 er 1.1.2.4: #i4070# SUNWS7 compiler needs a little help from friends 2003/10/17 20:04:49 er 1.1.2.3: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/10/02 18:55:36 er 1.1.2.2: #i4070# #i19765# const RawData 2003/10/02 18:25:42 er 1.1.2.1: #i4070# #i19765# parameter classification


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b4ee95f1db9956be561f4d4e167b011c27d0c4e9]

INTEGRATION: CWS cac (1.8.12); FILE MERGED 2003/10/02 18:38:50 er 1.8.12.1: #i4070# #i19765# add parclass.cxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [61cd4e2d166a6aae1bf3ae24195e7cbd272fadb1]

INTEGRATION: CWS cac (1.8.72); FILE MERGED 2003/10/29 18:45:50 er 1.8.72.7: #4070# GetNewMat: set error interpreter 2003/10/29 17:28:34 er 1.8.72.6: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/10/02 18:49:06 er 1.8.72.5: #i4070# #i19765# matrix parameter conversion, subroutine jumps and parameter handling 2003/09/11 14:38:22 er 1.8.72.4: #i4070# handle empty FALSE jump path as empty matrix element 2003/07/25 18:45:04 er 1.8.72.3: #i4070# vacation check-in. Note that currently any svDoubleRef pushed (parameter or result) is automatically converted to svMatrix if in matrix formula, so that functions that expect a real reference don't work anymore. Parameter classification needs to be implemented. 2003/07/15 10:33:29 er 1.8.72.2: #i4070# declaration scope 2003/07/14 16:01:17 er 1.8.72.1: #i4070# array conditions, first wave


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [77cc6b622e40c23ccd4f7326fa6a614e09d196c3]

INTEGRATION: CWS cac (1.26.48); FILE MERGED 2003/10/29 17:28:33 er 1.26.48.9: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/10/20 19:51:18 er 1.26.48.8: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte 2003/10/17 20:04:48 er 1.26.48.7: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/10/02 18:49:05 er 1.26.48.6: #i4070# #i19765# matrix parameter conversion, subroutine jumps and parameter handling 2003/09/11 14:38:21 er 1.26.48.5: #i4070# handle empty FALSE jump path as empty matrix element 2003/07/25 18:45:04 er 1.26.48.4: #i4070# vacation check-in. Note that currently any svDoubleRef pushed (parameter or result) is automatically converted to svMatrix if in matrix formula, so that functions that expect a real reference don't work anymore. Parameter classification needs to be implemented. 2003/07/15 14:15:48 er 1.26.48.3: #i4070# remove old fp-handling leftovers 2003/07/14 16:01:17 er 1.26.48.2: #i4070# array conditions, first wave 2003/07/01 15:49:12 er 1.26.48.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [203396b62d4230cf9f095d946b2fee0dac38b921]

INTEGRATION: CWS cac (1.8.40); FILE MERGED 2003/10/29 17:28:33 er 1.8.40.3: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/09/11 12:41:50 er 1.8.40.2: #i4070# ScHarMean, ScGeoMean: correct count if array parameter 2003/07/14 16:01:16 er 1.8.40.1: #i4070# array conditions, first wave


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1724f2bfd32a780791f3c7e98140d3d26b364b7e]

INTEGRATION: CWS cac (1.13.56); FILE MERGED 2003/10/30 15:45:21 er 1.13.56.3: RESYNC: (1.13-1.14); FILE MERGED 2003/10/29 17:28:32 er 1.13.56.2: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/07/25 18:45:03 er 1.13.56.1: #i4070# vacation check-in. Note that currently any svDoubleRef pushed (parameter or result) is automatically converted to svMatrix if in matrix formula, so that functions that expect a real reference don't work anymore. Parameter classification needs to be implemented.


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [19bb61393bc620244bf329fbb6b98c299622ffbe]

INTEGRATION: CWS cac (1.25.72); FILE MERGED 2003/10/29 17:28:32 er 1.25.72.7: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/10/17 20:04:47 er 1.25.72.6: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/10/02 18:49:03 er 1.25.72.5: #i4070# #i19765# matrix parameter conversion, subroutine jumps and parameter handling 2003/09/11 14:38:20 er 1.25.72.4: #i4070# handle empty FALSE jump path as empty matrix element 2003/07/25 18:45:03 er 1.25.72.3: #i4070# vacation check-in. Note that currently any svDoubleRef pushed (parameter or result) is automatically converted to svMatrix if in matrix formula, so that functions that expect a real reference don't work anymore. Parameter classification needs to be implemented. 2003/07/14 16:01:15 er 1.25.72.2: #i4070# array conditions, first wave 2003/07/01 15:49:11 er 1.25.72.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [78f42dc22c02678b419fedbe1dcf6a64edb53132]

INTEGRATION: CWS cac (1.8.186); FILE MERGED 2003/10/29 17:28:31 er 1.8.186.1: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [eb8f7b43c9af063d0621388b6a610f860255393c]

INTEGRATION: CWS cac (1.1.1.1.218); FILE MERGED 2003/07/01 15:49:10 er 1.1.1.1.218.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [247816583ded818bc9841bd40f7122ae8baa4fa3]

INTEGRATION: CWS cac (1.41.14); FILE MERGED 2003/11/05 19:15:59 er 1.41.14.4: #i4070# generate parameter classification documentation 2003/10/20 19:51:17 er 1.41.14.3: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte 2003/10/17 20:04:46 er 1.41.14.2: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/07/01 15:49:09 er 1.41.14.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [86846c38290e2066c0afb809a897d4c60b5e57af]

INTEGRATION: CWS cac (1.1.1.1.218); FILE MERGED 2003/07/01 15:49:08 er 1.1.1.1.218.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [2d66a366abe5d4aaca2e1d5b8333c05798e6dc80]

INTEGRATION: CWS cac (1.12.174); FILE MERGED 2003/10/29 17:28:31 er 1.12.174.3: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/10/20 19:51:16 er 1.12.174.2: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte 2003/07/01 15:49:07 er 1.12.174.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [96ef616aaee30bb9d484852297282a2df3809663]

INTEGRATION: CWS cac (1.1.2); FILE ADDED 2003/11/05 19:18:50 er 1.1.2.7: #i4070# generate parameter classification documentation if OSL_DEBUG_LEVEL>1 (debug=t) and environment variable OOO_CALC_GENPARCLASSDOC defined 2003/10/20 19:51:16 er 1.1.2.6: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte 2003/10/20 11:47:26 er 1.1.2.5: #i4070# struct is struct and not class ... 2003/10/20 11:21:27 er 1.1.2.4: #i4070# SUNWS7 compiler needs a little help from friends 2003/10/17 20:04:45 er 1.1.2.3: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/10/02 18:55:44 er 1.1.2.2: #i4070# #i19765# const RawData 2003/10/02 18:25:21 er 1.1.2.1: #i4070# #i19765# parameter classification


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [518f443e487f53916e9257db364f585e4a10c24f]

INTEGRATION: CWS cac (1.1.2); FILE ADDED 2003/10/31 11:03:01 er 1.1.2.5: #i4070# initialize result matrix in case of a premature end of the interpreter due to errors 2003/10/29 17:28:29 er 1.1.2.4: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/10/02 18:44:04 er 1.1.2.3: #i4070# #i19765# general jump/subroutine ability 2003/09/11 14:38:18 er 1.1.2.2: #i4070# handle empty FALSE jump path as empty matrix element 2003/07/14 16:01:13 er 1.1.2.1: #i4070# array conditions, first wave


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [49311ef0ed5fa3fa68ae31b687ae6c445eef6119]

INTEGRATION: CWS cac (1.14.72); FILE MERGED 2003/10/29 17:28:29 er 1.14.72.7: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/10/17 20:04:45 er 1.14.72.6: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/10/02 18:45:26 er 1.14.72.5: #i4070# #i19765# matrix parameter conversion 2003/07/25 18:45:02 er 1.14.72.4: #i4070# vacation check-in. Note that currently any svDoubleRef pushed (parameter or result) is automatically converted to svMatrix if in matrix formula, so that functions that expect a real reference don't work anymore. Parameter classification needs to be implemented. 2003/07/15 14:15:47 er 1.14.72.3: #i4070# remove old fp-handling leftovers 2003/07/14 16:01:12 er 1.14.72.2: #i4070# array conditions, first wave 2003/07/01 15:49:07 er 1.14.72.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5eb4a345d8db2a1607de9b583bcc4bccd8c7103f]

INTEGRATION: CWS cac (1.5.210); FILE MERGED 2003/11/03 14:33:00 dr 1.5.210.2: #i4070# use ScMatrix class directly 2003/10/29 17:28:29 er 1.5.210.1: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [1b1250696d67d45f414dd44be7aaeb191bac4900]

INTEGRATION: CWS cac (1.8.72); FILE MERGED 2003/07/01 15:49:04 er 1.8.72.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [621da9e34e2e521ec0a4b5e268a30d0b2b9bc120]

INTEGRATION: CWS cac (1.4.202); FILE MERGED 2003/07/01 15:49:04 er 1.4.202.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [ef6df2576b6bc2d058b6344484ab3b0abc3ab9b1]

INTEGRATION: CWS cac (1.31.50); FILE MERGED 2003/11/05 19:14:54 er 1.31.50.4: #i4070# generate parameter classification documentation; ScFuncDesc const correctness 2003/10/02 18:51:07 er 1.31.50.3: #i4070# #i19765# ScParameterClassification::Init()/Exit() 2003/09/02 12:49:24 er 1.31.50.2: RESYNC: (1.31-1.32); FILE MERGED 2003/07/01 15:49:04 er 1.31.50.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [2aeb174538c784ab8039e0804214f52c7c837eef]

INTEGRATION: CWS cac (1.5.194); FILE MERGED 2003/07/01 15:49:03 er 1.5.194.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [9c1a4da8d8786ea6a767c0fc14edbf548b8dc15f]

INTEGRATION: CWS cac (1.30.22); FILE MERGED 2003/11/03 14:32:40 dr 1.30.22.3: #i4070# use ScMatrix class directly 2003/10/30 14:00:52 dr 1.30.22.2: #i4070# direct use of class ScMatrix 2003/10/29 17:28:27 er 1.30.22.1: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [dab27f79511e3d8e44def17559bb83916b1e1fde]

INTEGRATION: CWS cac (1.4.174); FILE MERGED 2003/07/01 15:49:02 er 1.4.174.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [c48d128d808a7345c74e41da88c9952543c2857f]

INTEGRATION: CWS cac (1.11.48); FILE MERGED 2003/07/01 15:49:02 er 1.11.48.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [f15b7156389d4e98be5a6dce8bac5d0dcf519807]

INTEGRATION: CWS cac (1.2.216); FILE MERGED 2003/07/01 15:49:02 er 1.2.216.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [5120f1b14a2b64221e69ddae78db3fb65fbc7178]

INTEGRATION: CWS cac (1.9.72); FILE MERGED 2003/07/01 15:49:00 er 1.9.72.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [bb541ea0d4fad31da4811733e715eee9085bc474]

INTEGRATION: CWS cac (1.18.14); FILE MERGED 2003/10/29 17:28:27 er 1.18.14.3: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/07/14 16:01:11 er 1.18.14.2: #i4070# array conditions, first wave 2003/07/01 15:49:00 er 1.18.14.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [ffd17b91e056758491f159036062ec9912ffc708]

INTEGRATION: CWS cac (1.18.14); FILE MERGED 2003/10/29 17:28:27 er 1.18.14.2: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/07/15 14:15:46 er 1.18.14.1: #i4070# remove old fp-handling leftovers


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [89dcbe781f531192438a48202d28fd82cf696af9]

INTEGRATION: CWS cac (1.1.2); FILE ADDED 2003/10/17 20:04:44 er 1.1.2.5: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/10/02 18:41:20 er 1.1.2.4: #i4070# #i19765# ImpTokenIterator.nStop: general jump/subroutine ability 2003/09/02 13:57:44 er 1.1.2.3: #i4070# resync to SRC680:m3 2003/07/14 16:01:10 er 1.1.2.2: #i4070# array conditions, first wave 2003/07/01 15:48:58 er 1.1.2.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [592357cbc1b062374abaa10afb88a728944ec79b]

INTEGRATION: CWS cac (1.7.14); FILE MERGED 2003/10/29 17:28:24 er 1.7.14.6: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/10/20 20:07:50 er 1.7.14.5: #i4070# #i4485# resolve ScByteToken ctor ambiguity 2003/10/20 19:51:14 er 1.7.14.4: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte 2003/10/17 20:04:43 er 1.7.14.3: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/07/14 16:01:10 er 1.7.14.2: #i4070# array conditions, first wave 2003/07/01 15:48:57 er 1.7.14.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [6592604dc45a91e0740d199ba5281f36926b5c7e]

INTEGRATION: CWS cac (1.1.1.1.218); FILE MERGED 2003/07/15 14:15:45 er 1.1.1.1.218.1: #i4070# remove old fp-handling leftovers


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [a5ab841d830250475b70489b0de805db91a466c1]

INTEGRATION: CWS cac (1.1.2); FILE ADDED 2003/11/03 14:31:57 dr 1.1.2.4: #i4070# use ScMatrix class directly 2003/10/30 13:22:17 er 1.1.2.3: #4070# GetError also for MatValue 2003/10/30 13:06:23 er 1.1.2.2: #4070# add GetError 2003/10/29 16:19:02 er 1.1.2.1: #4070# move from sc/source/core/inc


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [87a96518c069f8bfcaa5f00236a4f9c2c8679c90]

INTEGRATION: CWS cac (1.8.202); FILE MERGED 2003/07/01 15:48:57 er 1.8.202.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [730b18acac9cca6c0c2a900f4093b85ef5834503]

INTEGRATION: CWS cac (1.1.2); FILE ADDED 2003/10/29 16:27:18 er 1.1.2.1: #4070# simple intrusive refcounting template


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [e8b0d0f68bcb2ad407f3dcc3d8521832236b39c0]

INTEGRATION: CWS cac (1.24.12); FILE MERGED 2003/11/05 19:03:04 er 1.24.12.1: #i4070# ScFuncDesc const correctness


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [65c406da00b96ad3040502d86571a93652b3a04f]

INTEGRATION: CWS cac (1.1.2); FILE ADDED 2003/07/14 16:01:10 er 1.1.2.2: #i4070# array conditions, first wave 2003/07/01 15:48:56 er 1.1.2.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [b5d994e7f00f13ca73868b7b2dc9624d18dd23a6]

INTEGRATION: CWS cac (1.68.12); FILE MERGED 2003/11/03 14:31:57 dr 1.68.12.4: #i4070# use ScMatrix class directly 2003/10/30 16:01:17 er 1.68.12.3: RESYNC: (1.68-1.69); FILE MERGED 2003/10/30 14:00:42 dr 1.68.12.2: #i4070# direct use of class ScMatrix 2003/10/29 17:28:24 er 1.68.12.1: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [07c59aa27d3f942bf34ae455b82c98092102b54d]

INTEGRATION: CWS cac (1.15.72); FILE MERGED 2003/10/29 17:28:23 er 1.15.72.5: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/10/20 19:51:14 er 1.15.72.4: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte 2003/10/20 11:26:48 er 1.15.72.3: #i4070# SUNWS7 compiler needs a little help from friends 2003/10/17 20:04:43 er 1.15.72.2: #i4070# #i4485# parameter classification and ForceArray inheritance; nested array calculation for all parameter types 2003/07/01 15:48:55 er 1.15.72.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [7ec4fdac91d0e936dcca3d647d16a86052d2334a]

INTEGRATION: CWS cac (1.10.48); FILE MERGED 2003/10/29 17:28:23 er 1.10.48.2: #4070# get rid of ScInterpreter's maddening GetNewMat/ResetNewMat handling (TLOT); introduce refcounting for ScMatrix 2003/07/01 15:48:55 er 1.10.48.1: #i4070# untangle compiler.hxx -> tokenarray.hxx, errorcodes.hxx


2004-03-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [d721feaeef458a534f5b22dcf2a4065185851824]

INTEGRATION: CWS cac (1.4.174); FILE MERGED 2003/10/20 19:51:13 er 1.4.174.1: #i4070# ocExternal AddIn parameter classification #i4485# ScRawToken bHasForceArray moved to union creating struct sbyte


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [09033891709ed859cecf1f2db285abfe722b6790]

#100000#


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [a8d4c596024775375414d6e4af4a9ae71d6414e2]

INTEGRATION: CWS calc18 (1.19.134); FILE MERGED 2003/12/05 09:41:42 dr 1.19.134.2: RESYNC: (1.19-1.20); FILE MERGED 2003/11/14 11:29:52 dr 1.19.134.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [1a4487bef58593d959f5cb18a9cd1190414d83bf]

INTEGRATION: CWS calc18 (1.38.150); FILE MERGED 2004/02/11 12:30:19 dr 1.38.150.4: RESYNC: (1.40-1.41); FILE MERGED 2004/01/12 11:39:50 dr 1.38.150.3: RESYNC: (1.39-1.40); FILE MERGED 2003/12/05 09:41:36 dr 1.38.150.2: RESYNC: (1.38-1.39); FILE MERGED 2003/10/01 10:26:39 jmarmion 1.38.150.1: #109648# fix excel import of split column position.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [aee0db7aaf99ffab0e7f649f1bb40b5ecad991e5]

INTEGRATION: CWS calc18 (1.11.110); FILE MERGED 2004/02/11 12:26:48 dr 1.11.110.3: RESYNC: (1.12-1.13); FILE MERGED 2004/01/12 11:37:25 dr 1.11.110.2: RESYNC: (1.11-1.12); FILE MERGED 2003/11/05 13:32:54 dr 1.11.110.1: #i17953# change size of last column/row


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [160d49c35aa4b7794f2a3c802f1b7c0e019d35c1]

INTEGRATION: CWS calc18 (1.78.20); FILE MERGED 2004/02/11 12:31:39 dr 1.78.20.3: RESYNC: (1.79-1.80); FILE MERGED 2003/12/05 09:41:59 dr 1.78.20.2: RESYNC: (1.78-1.79); FILE MERGED 2003/11/14 11:29:41 dr 1.78.20.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [d52cee77d6687898796492b7025ebab851469f46]

INTEGRATION: CWS calc18 (1.27.80); FILE MERGED 2004/01/12 11:43:18 dr 1.27.80.2: RESYNC: (1.27-1.28); FILE MERGED 2003/10/13 11:56:03 dr 1.27.80.1: #i20957# Height -> Row Height


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [1b81cce3882119645ba1618f98257c92f1d895d3]

INTEGRATION: CWS calc18 (1.15.4); FILE MERGED 2004/02/11 12:41:50 dr 1.15.4.2: RESYNC: (1.15-1.16); FILE MERGED 2003/11/14 11:29:22 dr 1.15.4.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [9f0a856258ac5c563d053035bcaafc5baa604c7f]

INTEGRATION: CWS calc18 (1.26.2); FILE MERGED 2004/02/11 12:41:38 dr 1.26.2.4: RESYNC: (1.28-1.30); FILE MERGED 2004/01/12 11:56:16 dr 1.26.2.3: RESYNC: (1.27-1.28); FILE MERGED 2003/12/05 09:44:12 dr 1.26.2.2: RESYNC: (1.26-1.27); FILE MERGED 2003/11/14 11:29:22 dr 1.26.2.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [3ca182b86f1fed67f30487203d095ae515a4e35a]

INTEGRATION: CWS calc18 (1.44.134); FILE MERGED 2004/02/11 12:40:51 dr 1.44.134.4: RESYNC: (1.45-1.46); FILE MERGED 2003/12/05 09:44:06 dr 1.44.134.3: RESYNC: (1.44-1.45); FILE MERGED 2003/11/14 11:29:21 dr 1.44.134.2: #i19600# do not try to access external docs in filters 2003/10/13 15:00:57 dr 1.44.134.1: #112610# Make ScAddress(UINT32) ctor explicit


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [0643f472958b3903cf2e96901ed856f342ec7189]

INTEGRATION: CWS calc18 (1.8.282); FILE MERGED 2003/11/14 11:28:47 dr 1.8.282.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [3b5dc5f032b20388abfdc390f53986ad4a77114a]

INTEGRATION: CWS calc18 (1.58.8); FILE MERGED 2004/02/11 12:45:19 dr 1.58.8.6: RESYNC: (1.61-1.63); FILE MERGED 2003/12/05 09:46:35 dr 1.58.8.5: RESYNC: (1.60-1.61); FILE MERGED 2003/11/18 10:30:51 dr 1.58.8.4: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:14:56 dr 1.58.8.3: RESYNC: (1.58-1.60); FILE MERGED 2003/11/05 13:10:08 dr 1.58.8.2: #i20671# correct active pane if frozen 2003/11/05 08:48:03 dr 1.58.8.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [9776e14fe3c121a21ae1814cec49900932d55242]

INTEGRATION: CWS calc18 (1.9.4); FILE MERGED 2004/02/11 16:57:17 dr 1.9.4.4: #100000# merge conflict resolved 2004/02/11 12:45:10 dr 1.9.4.3: RESYNC: (1.10-1.11); FILE MERGED 2003/12/05 09:46:28 dr 1.9.4.2: RESYNC: (1.9-1.10); FILE MERGED 2003/11/18 10:30:52 dr 1.9.4.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [652fefd56f75f3fc24590208dbad753469abeb4b]

INTEGRATION: CWS calc18 (1.19.2); FILE MERGED 2003/11/18 10:30:51 dr 1.19.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [0d864e0aed2f0bb9fde8f87f4fd84e10a0121b10]

INTEGRATION: CWS calc18 (1.13.158); FILE MERGED 2003/11/18 10:30:50 dr 1.13.158.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [c02bf91307b7493d7fe2e252446916a166009a3f]

INTEGRATION: CWS calc18 (1.3.2); FILE MERGED 2003/12/03 10:41:08 jmarmion 1.3.2.2: #113971# - add more trace events. 2003/11/17 12:09:05 jmarmion 1.3.2.1: #113971# - add chart import trace.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [55c55a960e6c456fa1f59d345a4f18245c8afe07]

INTEGRATION: CWS calc18 (1.11.2); FILE MERGED 2004/02/11 12:46:37 dr 1.11.2.2: RESYNC: (1.11-1.12); FILE MERGED 2003/11/18 10:30:23 dr 1.11.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [8584558e55591fa446a90d0f3b1e06ff5a2a3067]

INTEGRATION: CWS calc18 (1.7.46); FILE MERGED 2003/11/18 10:30:22 dr 1.7.46.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:20:26 dr 1.7.46.2: RESYNC: (1.7-1.9); FILE MERGED 2003/11/05 08:47:34 dr 1.7.46.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [044fa196665d68a4a44d245ba4a601540050f78f]

INTEGRATION: CWS calc18 (1.5.26); FILE MERGED 2003/11/18 10:30:22 dr 1.5.26.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [f15e4cdac01813a60e9bd5d292c50626ba9f7b92]

INTEGRATION: CWS calc18 (1.2.2); FILE MERGED 2003/11/18 10:30:22 dr 1.2.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [a3266ee5ad11d7bf3890f113193ca34c21e772aa]

INTEGRATION: CWS calc18 (1.5.24); FILE MERGED 2004/02/11 12:46:14 dr 1.5.24.2: RESYNC: (1.5-1.6); FILE MERGED 2003/12/03 10:40:30 jmarmion 1.5.24.1: #113971# - add more trace events.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [f03e71dbc55ca3db7df51f09e7b3e56eeb910dab]

INTEGRATION: CWS calc18 (1.9.8); FILE MERGED 2004/02/11 12:46:05 dr 1.9.8.5: RESYNC: (1.10-1.11); FILE MERGED 2003/11/18 10:30:21 dr 1.9.8.4: #113975# type correctness for Excel/Calc cell address components 2003/11/14 11:28:25 dr 1.9.8.3: #i19600# do not try to access external docs in filters 2003/11/07 09:19:22 dr 1.9.8.2: RESYNC: (1.9-1.10); FILE MERGED 2003/11/05 08:47:34 dr 1.9.8.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [8c441890206f34b8631372eac1afaa61f07b89db]

INTEGRATION: CWS calc18 (1.7.2); FILE MERGED 2003/11/18 10:30:20 dr 1.7.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [46b538e9b9e7c7680604c464f8ca8fdd66b7a6ed]

INTEGRATION: CWS calc18 (1.3.34); FILE MERGED 2003/12/12 09:32:09 dr 1.3.34.1: #114388# import of BIFF5 encoded byte strings broken


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [9c869a98f19dd1d5eef9181fc7a111b636079cc1]

INTEGRATION: CWS calc18 (1.5.2); FILE MERGED 2003/11/18 10:30:20 dr 1.5.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [b2889e0b5c86b770e896c0f581f9b3f42b9ba82a]

INTEGRATION: CWS calc18 (1.4.24); FILE MERGED 2004/02/11 12:45:56 dr 1.4.24.3: RESYNC: (1.4-1.5); FILE MERGED 2003/12/03 10:40:06 jmarmion 1.4.24.2: #113971# - add more trace events. 2003/11/18 10:30:19 dr 1.4.24.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [0336e6086f98c981e56338e5d9d9ed27f6b5d65c]

INTEGRATION: CWS calc18 (1.7.2); FILE MERGED 2003/11/18 10:30:18 dr 1.7.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [e6658e866d420a1870000c9b993a70ea4fef1ba7]

INTEGRATION: CWS calc18 (1.3.158); FILE MERGED 2003/11/05 08:47:33 dr 1.3.158.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [661bccdd0629bc55c79e8d59bdd6a6ef210b29e7]

INTEGRATION: CWS calc18 (1.4.112); FILE MERGED 2003/11/18 10:30:18 dr 1.4.112.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:17:07 dr 1.4.112.2: RESYNC: (1.4-1.5); FILE MERGED 2003/11/05 08:47:33 dr 1.4.112.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [65b60037a751002095975e949e527b2fc5fffd2a]

INTEGRATION: CWS calc18 (1.3.8); FILE MERGED 2003/11/18 10:30:17 dr 1.3.8.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:16:50 dr 1.3.8.2: RESYNC: (1.3-1.4); FILE MERGED 2003/11/05 12:10:14 dr 1.3.8.1: #i22107# export of relative file URLs in HLINK


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [c59157113e66039b62e5e0b2408c0d38f24ad5ef]

INTEGRATION: CWS calc18 (1.30.10); FILE MERGED 2003/11/07 09:16:42 dr 1.30.10.2: RESYNC: (1.30-1.32); FILE MERGED 2003/11/05 08:47:32 dr 1.30.10.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [7dec39b0ed4c0479e794e56444237ac9c7773b3e]

INTEGRATION: CWS calc18 (1.29.118); FILE MERGED 2003/11/07 09:16:34 dr 1.29.118.2: RESYNC: (1.29-1.30); FILE MERGED 2003/11/05 08:47:32 dr 1.29.118.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [fbd45b4dab605dbff6c539fb2c9942d64fcc1ada]

INTEGRATION: CWS calc18 (1.35.8); FILE MERGED 2004/01/12 12:02:10 dr 1.35.8.3: RESYNC: (1.36-1.37); FILE MERGED 2003/11/07 09:15:27 dr 1.35.8.2: RESYNC: (1.35-1.36); FILE MERGED 2003/09/30 12:33:51 jmarmion 1.35.8.1: #109751# fix export of merged cells with multi-line text.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [4822829b3027ae22e6a671489e94e11c7219dc67]

INTEGRATION: CWS calc18 (1.39.118); FILE MERGED 2004/02/11 12:45:29 dr 1.39.118.2: RESYNC: (1.39-1.40); FILE MERGED 2003/11/18 10:30:16 dr 1.39.118.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [dcd985a75da5ecbb2a88c01d8790b1897496bf3c]

INTEGRATION: CWS calc18 (1.10.158); FILE MERGED 2003/11/18 10:30:16 dr 1.10.158.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [79fc8a27b2f587bd01b788cb16d20795ccaf49aa]

INTEGRATION: CWS calc18 (1.6.2); FILE MERGED 2003/11/18 10:29:23 dr 1.6.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [f510e2c75b96492583a1ad9a78494c111fd51e47]

INTEGRATION: CWS calc18 (1.3.2); FILE MERGED 2003/12/03 10:43:44 jmarmion 1.3.2.2: #113971# - add more trace events. 2003/11/17 12:20:08 jmarmion 1.3.2.1: #113971# - add chart import trace.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [ef8605cf1a83dfb4a216b601de0f578fa5117326]

INTEGRATION: CWS calc18 (1.12.2); FILE MERGED 2004/02/11 12:49:17 dr 1.12.2.2: RESYNC: (1.12-1.13); FILE MERGED 2003/11/18 10:28:32 dr 1.12.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [4b1bfe403d54b091cc203a013eb87ecae4c82f9e]

INTEGRATION: CWS calc18 (1.7.46); FILE MERGED 2004/02/11 17:30:35 dr 1.7.46.5: #100000# merge conflict resolved 2004/02/11 12:49:08 dr 1.7.46.4: RESYNC: (1.9-1.10); FILE MERGED 2003/11/18 10:28:31 dr 1.7.46.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:26:25 dr 1.7.46.2: RESYNC: (1.7-1.9); FILE MERGED 2003/11/05 08:46:48 dr 1.7.46.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [c8a6d78bc800846b889687871a406ff191d661f5]

INTEGRATION: CWS calc18 (1.2.2); FILE MERGED 2003/11/07 14:39:24 dr 1.2.2.1: #112803# B4/B5/B6 ISO/JIS and other paper sizes


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [1882a0a11ecd233c31447f7e27951824d237c071]

INTEGRATION: CWS calc18 (1.5.26); FILE MERGED 2003/11/18 10:28:31 dr 1.5.26.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [9e6ce9d0bddf7cd08e0bcf2eb71625de49c630be]

INTEGRATION: CWS calc18 (1.12.2); FILE MERGED 2003/11/19 08:37:22 dr 1.12.2.2: #113783# CTL font import 2003/11/18 10:28:30 dr 1.12.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [931f6466a165d3787ef997bc7e604088260c6e0a]

INTEGRATION: CWS calc18 (1.4.34); FILE MERGED 2003/12/12 10:34:26 dr 1.4.34.1: #114388# import of BIFF5 encoded byte strings broken


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [56e059aa6493856b22bed321686769d13c55b080]

INTEGRATION: CWS calc18 (1.6.8); FILE MERGED 2003/11/18 10:28:30 dr 1.6.8.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:25:43 dr 1.6.8.2: RESYNC: (1.6-1.7); FILE MERGED 2003/11/05 08:46:47 dr 1.6.8.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [ac0e30b98aa8a7cfabea59cc2c8929771909f2ff]

INTEGRATION: CWS calc18 (1.2.2); FILE MERGED 2003/11/18 10:28:30 dr 1.2.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [c20e7efca7d6b575e209dcdcdb8b8c28ae5483ca]

INTEGRATION: CWS calc18 (1.5.10); FILE MERGED 2003/11/18 10:28:29 dr 1.5.10.4: #113975# type correctness for Excel/Calc cell address components 2003/11/14 11:28:09 dr 1.5.10.3: #i19600# do not try to access external docs in filters 2003/11/07 09:25:25 dr 1.5.10.2: RESYNC: (1.5-1.6); FILE MERGED 2003/11/05 08:46:47 dr 1.5.10.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [efb667795c66fea71d6b8da33b4e5bce27e3ce76]

INTEGRATION: CWS calc18 (1.8.2); FILE MERGED 2003/11/14 11:28:08 dr 1.8.2.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [957506b4aac43b8c0daa551f06a545e63904515b]

INTEGRATION: CWS calc18 (1.9.2); FILE MERGED 2004/02/11 17:30:34 dr 1.9.2.6: #100000# merge conflict resolved 2004/02/11 12:48:48 dr 1.9.2.5: RESYNC: (1.10-1.12); FILE MERGED 2003/12/05 09:48:44 dr 1.9.2.4: RESYNC: (1.9-1.10); FILE MERGED 2003/12/03 10:44:08 jmarmion 1.9.2.3: #113971# - add more trace events. 2003/11/18 10:28:29 dr 1.9.2.2: #113975# type correctness for Excel/Calc cell address components 2003/11/17 12:19:08 jmarmion 1.9.2.1: #113971# - add chart import trace.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [70df06642ba03e9dc2ef7f635fc478bc392e795a]

INTEGRATION: CWS calc18 (1.7.2); FILE MERGED 2003/12/03 10:43:15 jmarmion 1.7.2.3: #113971# - add more trace events. 2003/11/18 10:28:28 dr 1.7.2.2: #113975# type correctness for Excel/Calc cell address components 2003/11/11 17:24:15 jmarmion 1.7.2.1: #i21492# - fix zero termination for URL fields.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [8815e7e9a9fb87d7da9d83fead92845b6ff8ad74]

INTEGRATION: CWS calc18 (1.10.2); FILE MERGED 2003/11/19 09:30:50 dr 1.10.2.1: #114008# export of CJK/CTL fonts


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [252dcac4df3c1944897f6ad56090cf4995a16aa3]

INTEGRATION: CWS calc18 (1.7.46); FILE MERGED 2003/11/18 10:28:28 dr 1.7.46.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:24:15 dr 1.7.46.2: RESYNC: (1.7-1.8); FILE MERGED 2003/11/05 08:46:47 dr 1.7.46.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [6b7c541797de8a4f2d07eda81dd5ea7f379b152e]

INTEGRATION: CWS calc18 (1.2.2); FILE MERGED 2003/11/18 10:28:28 dr 1.2.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [2d84f614e59317692f5d52cfb825fd9e413adf76]

INTEGRATION: CWS calc18 (1.4.112); FILE MERGED 2003/11/18 10:28:27 dr 1.4.112.4: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:23:56 dr 1.4.112.3: RESYNC: (1.4-1.5); FILE MERGED 2003/11/05 10:11:13 dr 1.4.112.2: #112908# handle docs consisting of unexportable sheets only 2003/11/05 08:46:46 dr 1.4.112.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [8621ac8bb5a6024589bb9573f977bcfbf21acc85]

INTEGRATION: CWS calc18 (1.5.8); FILE MERGED 2003/11/18 10:28:27 dr 1.5.8.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:23:37 dr 1.5.8.2: RESYNC: (1.5-1.6); FILE MERGED 2003/11/05 12:10:04 dr 1.5.8.1: #i22107# export of relative file URLs in HLINK


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [fadc69fde2c74738658d775e8d660265e497016f]

INTEGRATION: CWS calc18 (1.41.2); FILE MERGED 2003/12/03 10:42:49 jmarmion 1.41.2.3: #113971# - add more trace events. 2003/11/18 10:28:26 dr 1.41.2.2: #113975# type correctness for Excel/Calc cell address components 2003/11/17 12:17:51 jmarmion 1.41.2.1: #113971# - add chart import trace.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [46a399d2d62582be4aa575437390c77c6cdc9ac0]

INTEGRATION: CWS calc18 (1.15.134); FILE MERGED 2003/11/07 09:23:30 dr 1.15.134.2: RESYNC: (1.15-1.16); FILE MERGED 2003/11/05 08:46:46 dr 1.15.134.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [9e57cf7adb5557375a3030984d2613b9c6322555]

INTEGRATION: CWS calc18 (1.55.6); FILE MERGED 2004/02/11 17:30:34 dr 1.55.6.6: #100000# merge conflict resolved 2004/02/11 12:48:04 dr 1.55.6.5: RESYNC: (1.58-1.59); FILE MERGED 2003/12/05 09:48:35 dr 1.55.6.4: RESYNC: (1.57-1.58); FILE MERGED 2003/11/18 10:28:26 dr 1.55.6.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:23:12 dr 1.55.6.2: RESYNC: (1.55-1.57); FILE MERGED 2003/11/05 08:46:46 dr 1.55.6.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [0742aad01aa174256f73b46196746984c2d5a466]

INTEGRATION: CWS calc18 (1.15.148); FILE MERGED 2004/02/11 12:47:55 dr 1.15.148.2: RESYNC: (1.15-1.16); FILE MERGED 2003/11/05 08:46:45 dr 1.15.148.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [0f59b0e63a13f50018390d09f64cf77fa29526ec]

INTEGRATION: CWS calc18 (1.42.118); FILE MERGED 2003/11/18 10:28:26 dr 1.42.118.4: #113975# type correctness for Excel/Calc cell address components 2003/11/10 13:41:33 dr 1.42.118.3: #112621# do not show scenario border in impoerted docs 2003/11/07 09:23:05 dr 1.42.118.2: RESYNC: (1.42-1.43); FILE MERGED 2003/11/05 08:46:45 dr 1.42.118.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [f136a118caedb086d4229f7f4b3ea3a8b9b48b16]

INTEGRATION: CWS calc18 (1.66.6); FILE MERGED 2003/12/05 09:48:27 dr 1.66.6.5: RESYNC: (1.67-1.69); FILE MERGED 2003/11/18 10:28:25 dr 1.66.6.4: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:22:59 dr 1.66.6.3: RESYNC: (1.66-1.67); FILE MERGED 2003/11/05 08:46:45 dr 1.66.6.2: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot 2003/09/30 12:34:45 jmarmion 1.66.6.1: #109751# fix export of merged cells with multi-line text.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [c3f6bd64dad8daa444a1680f8f6b33fb46db00da]

INTEGRATION: CWS calc18 (1.28.2); FILE MERGED 2004/02/11 17:30:33 dr 1.28.2.5: #100000# merge conflict resolved 2004/02/11 12:47:46 dr 1.28.2.4: RESYNC: (1.29-1.30); FILE MERGED 2003/12/05 09:48:21 dr 1.28.2.3: RESYNC: (1.28-1.29); FILE MERGED 2003/11/18 10:28:24 dr 1.28.2.2: #113975# type correctness for Excel/Calc cell address components 2003/11/17 12:11:08 jmarmion 1.28.2.1: #113971# - add chart import trace.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [03c2a68e82173ecc12bf25d91314f45bfaeba7f7]

INTEGRATION: CWS calc18 (1.86.8); FILE MERGED 2004/02/11 12:47:37 dr 1.86.8.4: RESYNC: (1.87-1.89); FILE MERGED 2003/11/18 10:28:24 dr 1.86.8.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:22:39 dr 1.86.8.2: RESYNC: (1.86-1.87); FILE MERGED 2003/11/05 08:46:44 dr 1.86.8.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [09dedb2b6574ce11d35721288da9c4171240c8da]

INTEGRATION: CWS calc18 (1.25.2); FILE MERGED 2003/12/03 10:42:25 jmarmion 1.25.2.2: #113971# - add more trace events. 2003/11/18 10:28:24 dr 1.25.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [b5a68bf9f9d720d4ae7eb40da28ac0b268b432e0]

INTEGRATION: CWS calc18 (1.22.2); FILE MERGED 2003/12/03 10:42:04 jmarmion 1.22.2.2: #113971# - add more trace events. 2003/11/18 10:28:23 dr 1.22.2.1: #113975# type correctness for Excel/Calc cell address components


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [6189743d56291b4deff539d5bed8931bc370e5ba]

INTEGRATION: CWS calc18 (1.48.8); FILE MERGED 2003/11/18 10:28:23 dr 1.48.8.4: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:22:10 dr 1.48.8.3: RESYNC: (1.48-1.49); FILE MERGED 2003/11/05 08:46:44 dr 1.48.8.2: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot 2003/09/30 12:35:23 jmarmion 1.48.8.1: #109751# fix export of merged cells with multi-line text.


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [b6876db109de7fbbad40a1b92c79d120f99fa2ac]

INTEGRATION: CWS calc18 (1.18.118); FILE MERGED 2003/11/18 10:28:22 dr 1.18.118.3: #113975# type correctness for Excel/Calc cell address components 2003/11/07 09:21:44 dr 1.18.118.2: RESYNC: (1.18-1.20); FILE MERGED 2003/11/05 08:46:43 dr 1.18.118.1: #112908# visible/selected sheet handling; ScExtDocOptions to XclRoot


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [c91eec6f6131787b31aede3de7d44a938ee9967f]

INTEGRATION: CWS calc18 (1.60.8); FILE MERGED 2004/01/13 09:07:56 dr 1.60.8.5: #100000# const correctness 2003/12/05 09:48:08 dr 1.60.8.4: RESYNC: (1.60-1.61); FILE MERGED 2003/11/05 08:42:53 dr 1.60.8.3: dump EXTERNNAME 2003/10/31 12:17:16 dr 1.60.8.2: support for PLS 2003/10/29 11:17:46 dr 1.60.8.1: additions in formula dumper - token classes


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [919ff72529578e7392abc5d8ff15c4cd6a8bcd7e]

INTEGRATION: CWS calc18 (1.50.32); FILE MERGED 2004/02/11 12:50:58 dr 1.50.32.4: RESYNC: (1.53-1.54); FILE MERGED 2004/01/12 12:06:38 dr 1.50.32.3: RESYNC: (1.52-1.53); FILE MERGED 2003/12/05 09:50:52 dr 1.50.32.2: RESYNC: (1.50-1.52); FILE MERGED 2003/10/13 15:00:43 dr 1.50.32.1: #112610# Make ScAddress(UINT32) ctor explicit


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [1de9920feb0a2b78520538440913388d2be124ee]

INTEGRATION: CWS calc18 (1.19.22); FILE MERGED 2004/02/11 12:50:33 dr 1.19.22.2: RESYNC: (1.19-1.20); FILE MERGED 2003/11/14 11:27:37 dr 1.19.22.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [df0538244232b313c5df19221c082bc972c820c3]

INTEGRATION: CWS calc18 (1.9.262); FILE MERGED 2003/11/14 11:27:09 dr 1.9.262.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [5c04952c4474be09e1407462cc261c1e2d4caced]

INTEGRATION: CWS calc18 (1.6.158); FILE MERGED 2003/12/05 09:52:10 dr 1.6.158.2: RESYNC: (1.6-1.7); FILE MERGED 2003/11/05 08:44:22 dr 1.6.158.1: #112908# excel export: visible/selected sheet handling


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [3532feeaf8df1363029e395a7962b8734e7855c4]

INTEGRATION: CWS calc18 (1.24.34); FILE MERGED 2004/02/11 12:54:59 dr 1.24.34.3: RESYNC: (1.25-1.26); FILE MERGED 2004/01/12 12:08:55 dr 1.24.34.2: RESYNC: (1.24-1.25); FILE MERGED 2003/10/13 15:00:25 dr 1.24.34.1: #112610# Make ScAddress(UINT32) ctor explicit


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [8658378b2680af941e1a2b4b8b341aa5fc8d9793]

INTEGRATION: CWS calc18 (1.69.16); FILE MERGED 2004/02/11 12:54:31 dr 1.69.16.3: RESYNC: (1.71-1.72); FILE MERGED 2003/12/05 09:51:42 dr 1.69.16.2: RESYNC: (1.69-1.71); FILE MERGED 2003/11/14 11:27:09 dr 1.69.16.1: #i19600# do not try to access external docs in filters


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [0772efe374412441f5d0439508878b92ff397da3]

INTEGRATION: CWS calc18 (1.24.32); FILE MERGED 2003/12/05 09:39:27 dr 1.24.32.2: RESYNC: (1.24-1.25); FILE MERGED 2003/11/10 11:45:31 dr 1.24.32.1: #i22280# BIN,DEC,OCT,HEX use doubles for limits now


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [bde8a3652b6414c80b76563c08a14e36edeca0fb]

INTEGRATION: CWS calc18 (1.40.32); FILE MERGED 2004/02/11 12:24:18 dr 1.40.32.2: RESYNC: (1.40-1.41); FILE MERGED 2003/11/10 11:45:30 dr 1.40.32.1: #i22280# BIN,DEC,OCT,HEX use doubles for limits now


2004-03-02  Rüdiger Timm  <rt@openoffice.org>  [f799a7ece885b18c006d367c148c4086e991cbbe]

INTEGRATION: CWS calc18 (1.33.32); FILE MERGED 2003/11/10 11:45:30 dr 1.33.32.2: #i22280# BIN,DEC,OCT,HEX use doubles for limits now 2003/11/10 10:54:59 dr 1.33.32.1: #i15348# fixed RANDBETWEEN


2004-02-26  Kurt Zenker  <kz@openoffice.org>  [02d9a11fbdd79e4f3d3c2038bec193fd83dc09ea]

INTEGRATION: CWS sb13 (1.20.36); FILE MERGED 2004/02/06 08:36:26 sb 1.20.36.1: #i19699# Adapted to tightened tools/string.hxx.


2004-02-26  Kurt Zenker  <kz@openoffice.org>  [931ddb1b47b531999b1d41877d2cc7a7d270fa3a]

INTEGRATION: CWS sb13 (1.26.358); FILE MERGED 2004/02/06 17:41:42 nn 1.26.358.2: #i19699# STR_STANDARD was wrong all the time, use STR_STYLENAME_STANDARD 2004/02/06 08:36:26 sb 1.26.358.1: #i19699# Adapted to tightened tools/string.hxx.


2004-02-26  Kurt Zenker  <kz@openoffice.org>  [d22c58970e92a183a55bced2843e964a9da5b888]

INTEGRATION: CWS sb13 (1.3.362); FILE MERGED 2004/02/06 08:36:24 sb 1.3.362.1: #i19699# Adapted to tightened tools/string.hxx.


2004-02-26  Kurt Zenker  <kz@openoffice.org>  [85e32195ef60767e999ba4507850670ebf84d25f]

INTEGRATION: CWS sb13 (1.4.104); FILE MERGED 2004/02/06 08:36:23 sb 1.4.104.1: #i19699# Adapted to tightened tools/string.hxx.


2004-02-26  Kurt Zenker  <kz@openoffice.org>  [8d13108d5f8dbeeb70a5b12c631b684481e371ce]

INTEGRATION: CWS sb13 (1.1.1.1.400); FILE MERGED 2004/02/06 08:36:21 sb 1.1.1.1.400.1: #i19699# Adapted to tightened tools/string.hxx.


2004-02-26  Kurt Zenker  <kz@openoffice.org>  [43bdc81b130c6ab8d9b0bb81d92df9fdc103311f]

INTEGRATION: CWS sb13 (1.43.38); FILE MERGED 2004/02/06 08:36:20 sb 1.43.38.1: #i19699# Adapted to tightened tools/string.hxx.


2004-02-26  Kurt Zenker  <kz@openoffice.org>  [b4a267372273f2cfdd5ab9a3e850153d19ce3fba]

INTEGRATION: CWS sb13 (1.33.36); FILE MERGED 2004/02/06 08:36:19 sb 1.33.36.1: #i19699# Adapted to tightened tools/string.hxx.


2004-02-26  Kurt Zenker  <kz@openoffice.org>  [70e0120dd92ab5ad77b54f063cb71cf4ef833345]

INTEGRATION: CWS sb13 (1.31.54); FILE MERGED 2004/02/06 17:41:20 nn 1.31.54.2: #i19699# STR_STANDARD was wrong all the time, use STR_STYLENAME_STANDARD 2004/02/06 08:36:18 sb 1.31.54.1: #i19699# Adapted to tightened tools/string.hxx.


2004-02-25  Kurt Zenker  <kz@openoffice.org>  [0f4fd66050c9d0601a07b137edb262b4e0b7d93c]

INTEGRATION: CWS layoutmanager (1.1.2); FILE ADDED 2004/02/03 12:40:25 cd 1.1.2.1: #i25017# XML based user interface configuration files for our modules


2004-02-25  Kurt Zenker  <kz@openoffice.org>  [0e5a7473da701c32a024b48fefc30ef0fba03f95]

INTEGRATION: CWS layoutmanager (1.4.12); FILE MERGED 2004/01/26 09:17:06 as 1.4.12.1: #111770 correct handling of service names


2004-02-25  Kurt Zenker  <kz@openoffice.org>  [3dc886aecf45a18c5de1eceecf77e7b4a33e293f]

INTEGRATION: CWS layoutmanager (1.2.282); FILE MERGED 2003/11/24 09:17:26 cd 1.2.282.1: #111899# Support QueryValue for Calc items


2004-02-25  Kurt Zenker  <kz@openoffice.org>  [ce29d03cfbe422fa0bac6707558270f37bbf20a5]

INTEGRATION: CWS layoutmanager (1.2.144); FILE MERGED 2003/11/24 09:15:17 cd 1.2.144.1: #111899# Support QueryValue for Calc items


2004-02-25  Kurt Zenker  <kz@openoffice.org>  [a9c542ed33bb4b14d0ab681aa919b42b1f771800]

INTEGRATION: CWS layoutmanager (1.3.248); FILE MERGED 2004/02/19 18:44:39 cd 1.3.248.3: RESYNC: (1.4-1.5); FILE MERGED 2003/11/24 19:12:39 cd 1.3.248.2: RESYNC: (1.3-1.4); FILE MERGED #100000# Merge conflict resolved 2003/10/01 15:34:16 cd 1.3.248.1: #111899# Added slot to get updates for font list


2004-02-25  Kurt Zenker  <kz@openoffice.org>  [b43e92adfb8aabd243cc9fa923c3c737b8d2121a]

INTEGRATION: CWS layoutmanager (1.12.12); FILE MERGED 2004/02/19 18:46:06 cd 1.12.12.2: RESYNC: (1.12-1.13); FILE MERGED 2004/02/03 15:17:34 cd 1.12.12.1: #i25017# Deliver new ui configuration files


2004-02-20  Oliver Bolte  <obo@openoffice.org>  [471fbbe0d15d0d06e6b62ec3b581cc75a6fb291d]

INTEGRATION: CWS vcl17 (1.29.150); FILE MERGED 2004/02/11 12:39:46 pl 1.29.150.3: RESYNC: (1.32-1.33); FILE MERGED 2004/01/21 16:25:52 pl 1.29.150.2: RESYNC: (1.29-1.32); FILE MERGED 2003/12/15 13:05:18 ssa 1.29.150.1: #i21775# always perform rotation when landscape printing is requested


2004-02-16  Rüdiger Timm  <rt@openoffice.org>  [730d18d04f8e8a4162c91db45ea13044c7d9f09c]

#i10000# Correct list of needed modules (svtools instead of svtool, no such module sv and tk).


2004-02-16  Oliver Bolte  <obo@openoffice.org>  [fbdc8e5724db4bf80354c8e78e198277128b2888]

INTEGRATION: CWS sab003 (1.3.10); FILE MERGED 2003/07/02 14:42:12 sab 1.3.10.1: #110564#; close component-description tag


2004-02-16  Oliver Bolte  <obo@openoffice.org>  [192042fabb356863cb23fdf8c440915bf7d6343d]

INTEGRATION: CWS sab003 (1.18.180); FILE MERGED 2003/07/03 10:02:08 sab 1.18.180.1: #109117#; set new and old value in change tracking import


2004-02-16  Oliver Bolte  <obo@openoffice.org>  [f11a102325a6e18812a0a6c460c425234eb626b7]

INTEGRATION: CWS sab003 (1.9.180); FILE MERGED 2003/07/03 10:02:08 sab 1.9.180.1: #109117#; set new and old value in change tracking import


2004-02-16  Oliver Bolte  <obo@openoffice.org>  [e8b3dbba14f145670fdb931afc400ff6b1deaee1]

INTEGRATION: CWS sab003 (1.16.56); FILE MERGED 2003/07/03 10:02:07 sab 1.16.56.1: #109117#; set new and old value in change tracking import


2004-02-16  Oliver Bolte  <obo@openoffice.org>  [3a79054966de3f72985c8ae8d682187d57ce9a50]

INTEGRATION: CWS sab003 (1.20.180); FILE MERGED 2003/07/03 10:02:07 sab 1.20.180.1: #109117#; set new and old value in change tracking import


2004-02-16  Oliver Bolte  <obo@openoffice.org>  [a41aae46c355a393093241480ba0711b406c4772]

INTEGRATION: CWS sab003 (1.17.24); FILE MERGED 2003/07/03 09:58:28 sab 1.17.24.1: #109117#; give possibility to set new value


2004-02-16  Oliver Bolte  <obo@openoffice.org>  [1d63ffa1f297b747142efa429cf58107d76f6e67]

INTEGRATION: CWS sab003 (1.17.56); FILE MERGED 2004/02/10 18:11:50 sab 1.17.56.3: RESYNC: (1.18-1.19); FILE MERGED 2003/11/05 10:35:52 sab 1.17.56.2: RESYNC: (1.17-1.18); FILE MERGED 2003/07/03 09:57:21 sab 1.17.56.1: #109117#; give possibility to set new value


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [d81b624123243c8a9812cf4e6a35dc9066c2d592]

INTEGRATION: CWS chart01 (1.8.78); FILE MERGED 2004/02/05 09:15:05 bm 1.8.78.7: using own DevChart method (not delivered one, because of dependency) 2004/01/21 16:03:24 bm 1.8.78.6: chart2 API split up into public and private part drafts removed from public chart2 API ScModelObj createInstance supports com.sun.star.chart2.XDataProvider 2004/01/19 14:46:43 bm 1.8.78.5: commented stuff removed 2004/01/19 11:08:13 bm 1.8.78.4: Control usage of new chart via config item (instead of define) 2004/01/12 15:36:43 bm 1.8.78.3: RESYNC: (1.9-1.10); FILE MERGED 2003/10/28 09:35:27 bm 1.8.78.2: RESYNC: (1.8-1.9); FILE MERGED 2003/07/25 18:27:55 er 1.8.78.1: #i17416# new Chart's test environment (TEST_NEW_CHART defined)


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [6e436b37a19dc5ae860f7a053736f25dd8953341]

INTEGRATION: CWS chart01 (1.9.6); FILE MERGED 2004/01/21 16:03:27 bm 1.9.6.1: chart2 API split up into public and private part drafts removed from public chart2 API ScModelObj createInstance supports com.sun.star.chart2.XDataProvider


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [823fe03677fa113e7e60dc81168dc107f1a71c11]

INTEGRATION: CWS chart01 (1.11.70); FILE MERGED 2004/01/12 15:21:20 bm 1.11.70.3: RESYNC: (1.13-1.14); FILE MERGED 2003/10/28 09:31:37 bm 1.11.70.2: RESYNC: (1.11-1.13); FILE MERGED 2003/07/25 18:33:58 er 1.11.70.1: #i17416# new Chart's API test environment


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [a4cd5d629415307bed20d4dbacf6d6b6965fdf7e]

INTEGRATION: CWS chart01 (1.38.10); FILE MERGED 2004/02/04 10:10:36 bm 1.38.10.2: RESYNC: (1.38-1.39); FILE MERGED 2004/01/21 16:03:26 bm 1.38.10.1: chart2 API split up into public and private part drafts removed from public chart2 API ScModelObj createInstance supports com.sun.star.chart2.XDataProvider


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [7d477fd49d25884f35aa1f2f244ef158603c9097]

INTEGRATION: CWS chart01 (1.1.2); FILE ADDED 2004/01/21 16:03:26 bm 1.1.2.2: chart2 API split up into public and private part drafts removed from public chart2 API ScModelObj createInstance supports com.sun.star.chart2.XDataProvider 2003/07/25 18:33:43 er 1.1.2.1: #i17416# new Chart's API test environment


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [e919f779d79981b78d9f39dbc618c6f30f137603]

INTEGRATION: CWS chart01 (1.1.2); FILE ADDED 2004/02/05 09:14:23 bm 1.1.2.1: Config Item to determine whether to use old or new chart (thionly for temporary use)


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [c27780dc4f4c44fc70ce9ee89900a86a422ed17d]

INTEGRATION: CWS chart01 (1.55.28); FILE MERGED 2004/01/21 16:03:22 bm 1.55.28.1: chart2 API split up into public and private part drafts removed from public chart2 API ScModelObj createInstance supports com.sun.star.chart2.XDataProvider


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [5a9492b78ef7e2e269beba62bf46dbf376ba2cca]

INTEGRATION: CWS chart01 (1.8.6); FILE MERGED 2004/01/21 16:03:21 bm 1.8.6.1: chart2 API split up into public and private part drafts removed from public chart2 API ScModelObj createInstance supports com.sun.star.chart2.XDataProvider


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [329431c245d8731db2dc3d56d6fab84bde7549ba]

INTEGRATION: CWS chart01 (1.15.36); FILE MERGED 2004/01/21 16:03:20 bm 1.15.36.1: chart2 API split up into public and private part drafts removed from public chart2 API ScModelObj createInstance supports com.sun.star.chart2.XDataProvider


2004-02-11  Rüdiger Timm  <rt@openoffice.org>  [08930d7d898eeeece15cc367b910907930dd39ec]

INTEGRATION: CWS chart01 (1.1.2); FILE ADDED 2004/01/21 16:03:19 bm 1.1.2.2: chart2 API split up into public and private part drafts removed from public chart2 API ScModelObj createInstance supports com.sun.star.chart2.XDataProvider 2003/07/25 18:33:17 er 1.1.2.1: #i17416# new Chart's API test environment


2004-02-10  Björn Milcke  <bm@openoffice.org>  [a08b5a78c480ee7bf925914ebdad13658b2d19cb]

necessary changes due to dialog restructuring (see CWS SRC680/dialogdiet)


2004-02-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [b4f718a1be8749f0b451ff2d099f8d12e585c135]

#100000#: remove ofa.ilb from dependencies


2004-02-04  Björn Milcke  <bm@openoffice.org>  [abedd2e46bff83f591062b796a12ec7315b3f608]

project apphelper no longer exists


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [3049bf1eb8a4ae834f16afab6f4f90b5baa6a3fa]

INTEGRATION: CWS ooo20031216 (1.9.328); FILE MERGED 2003/12/13 13:38:01 waratah 1.9.328.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [4945c1c4e871a4dfbde777ea80a3867583d909e5]

INTEGRATION: CWS ooo20031216 (1.2.322); FILE MERGED 2003/12/13 13:38:01 waratah 1.2.322.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f7ddcf12049ad6c07f907c3c74e2b4325f0fb68]

INTEGRATION: CWS ooo20031216 (1.9.222); FILE MERGED 2003/12/13 13:38:00 waratah 1.9.222.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [6a1c25707fe05cc24e3829b1482df7542d0b7485]

INTEGRATION: CWS ooo20031216 (1.6.330); FILE MERGED 2003/12/13 13:38:00 waratah 1.6.330.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [763d7a061830c5dbf44d2516cb8c74ef173de9b3]

INTEGRATION: CWS ooo20031216 (1.13.222); FILE MERGED 2004/02/03 11:18:58 mh 1.13.222.2: RESYNC: (1.13-1.14); FILE MERGED 2003/12/13 13:37:59 waratah 1.13.222.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [9da82ba376d550d07821cfe9c6d0c6e25188e912]

INTEGRATION: CWS ooo20031216 (1.5.330); FILE MERGED 2004/02/03 12:24:48 mh 1.5.330.2: RESYNC: (1.5-1.6); FILE MERGED 2003/12/13 13:37:58 waratah 1.5.330.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [ae8ef3090a6c404e2bc81649c9bb240ae3e878a9]

INTEGRATION: CWS ooo20031216 (1.3.324); FILE MERGED 2003/12/13 13:37:58 waratah 1.3.324.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [51c7993ff369862dc191482d6eee233f8f151e75]

INTEGRATION: CWS ooo20031216 (1.7.12); FILE MERGED 2003/12/13 13:37:57 waratah 1.7.12.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [b4678e8330fa9d2c1ff584d74dc6d72b4ee8ed35]

INTEGRATION: CWS ooo20031216 (1.2.50); FILE MERGED 2003/12/15 09:00:56 waratah 1.2.50.1: #i1858# implement typename where it is needed


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [cc0cbb3c31ecbf6c1e00ff53ec4151a6642794ad]

INTEGRATION: CWS ooo20031216 (1.3.344); FILE MERGED 2003/12/13 13:37:55 waratah 1.3.344.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [06c4f2d18d334a11cc1a4a3656d3d56bfd583a15]

INTEGRATION: CWS ooo20031216 (1.5.220); FILE MERGED 2003/12/13 13:37:54 waratah 1.5.220.1: #i1858# replace some NULL constants with 0 (zero),  used with non-pointers


2004-02-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [34d4de9d099bf4fc1bc8c519a0949ac0a37c1762]

INTEGRATION: CWS ooo20031216 (1.40.42); FILE MERGED 2004/01/09 16:55:33 pjanik 1.40.42.2: #i23939#: Fix compilation on Win32. 2004/01/09 09:17:35 pjanik 1.40.42.1: #i23939#: Do not add L modifier after constants.


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8edd209f28afd4e8f98c271b4c29328af8d373b9]

INTEGRATION: CWS dialogdiet (1.21.50); FILE MERGED 2003/11/28 15:49:00 mba 1.21.50.1: #i22972#: ofalib removed


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [81ccbef65d7375811cda30ec015b72eff1b73638]

INTEGRATION: CWS dialogdiet (1.6.322); FILE MERGED 2004/01/13 02:56:46 mwu 1.6.322.1: DialogDiet 2004_01_13


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1fd1fc6d36b087cd3cc9fd6fb65876d0ed1411e7]

INTEGRATION: CWS dialogdiet (1.23.194); FILE MERGED 2003/11/28 15:42:00 mba 1.23.194.1: #i22969#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [5952da726e55e4b2c8fe76f559c1c64f165db133]

INTEGRATION: CWS dialogdiet (1.23.4); FILE MERGED 2003/11/28 15:41:59 mba 1.23.4.1: #i22969#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1d9ce7568855450c982168d82b1d1dd5c5844610]

INTEGRATION: CWS dialogdiet (1.17.146); FILE MERGED 2004/01/19 22:02:10 mba 1.17.146.2: RESYNC: (1.17-1.19); FILE MERGED 2004/01/13 02:56:46 mwu 1.17.146.1: DialogDiet 2004_01_13


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a49673e2ec45ff7cdb9ed868d501c30531756b1c]

INTEGRATION: CWS dialogdiet (1.5.336); FILE MERGED 2003/11/28 15:41:40 mba 1.5.336.1: #i22969#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [daaa495f0bc816e4676689f6cc7405d66b3d7ea2]

INTEGRATION: CWS dialogdiet (1.19.170); FILE MERGED 2004/01/13 02:56:45 mwu 1.19.170.1: DialogDiet 2004_01_13


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [15f20f71813931759d1736909866f87f8af92ec2]

INTEGRATION: CWS dialogdiet (1.44.66); FILE MERGED 2004/01/23 09:12:21 mba 1.44.66.3: #i22972#: obsolete include 2004/01/19 22:00:09 mba 1.44.66.2: RESYNC: (1.44-1.45); FILE MERGED 2003/11/28 15:41:20 mba 1.44.66.1: #i22969#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f4a97961af455954616edff3115d9bbf340da570]

INTEGRATION: CWS dialogdiet (1.15.70); FILE MERGED 2003/11/28 15:40:59 mba 1.15.70.1: #i22969#: obsolete implementation removed


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9571fd702fa501e9855e87af3cdfb151117535b4]

INTEGRATION: CWS dialogdiet (1.25.296); FILE MERGED 2004/01/13 02:56:45 mwu 1.25.296.1: DialogDiet 2004_01_13


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e777e0011200c55f3bcad60f94f47d4414df6ed6]

INTEGRATION: CWS dialogdiet (1.21.70); FILE MERGED 2004/01/19 21:59:39 mba 1.21.70.2: RESYNC: (1.21-1.22); FILE MERGED 2003/11/28 15:40:34 mba 1.21.70.1: #i22969#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ae62047d42c32a40833b652a09cc0048fc577aad]

INTEGRATION: CWS dialogdiet (1.58.28); FILE MERGED 2004/01/19 22:09:15 mba 1.58.28.2: RESYNC: (1.58-1.59); FILE MERGED 2003/11/28 15:40:15 mba 1.58.28.1: #i22972#: include svx instead of offmgr


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [d6a318fccf8622b1ccee348fc8ec09a728fd6504]

INTEGRATION: CWS dialogdiet (1.47.116); FILE MERGED 2004/01/19 22:06:54 mba 1.47.116.2: RESYNC: (1.47-1.48); FILE MERGED 2003/11/28 15:40:14 mba 1.47.116.1: #i22972#: include svx instead of offmgr


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6451218ed1a0f968bcf8ec7520fe73504d79a72d]

INTEGRATION: CWS dialogdiet (1.9.302); FILE MERGED 2003/11/28 15:39:27 mba 1.9.302.1: #i22972#: access to StandardColorTable moved to svx


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [b66487b9fdefbe31e16e10a6c5626f5981583176]

INTEGRATION: CWS dialogdiet (1.2.194); FILE MERGED 2003/11/28 15:39:09 mba 1.2.194.1: #i22972#: access to StandardColorTable moved to svx


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f5961b46a015528ce011a82cfc4ff03e9db99e9a]

INTEGRATION: CWS dialogdiet (1.4.324); FILE MERGED 2004/01/08 14:25:11 mba 1.4.324.1: #i24117#: replace derivation from SvxPostItDialog by containment


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c512866e75194c118198266be8b0531443ef8f3e]

INTEGRATION: CWS dialogdiet (1.1.1.1.340); FILE MERGED 2004/01/08 14:24:43 mba 1.1.1.1.340.1: #i24117#: replace derivation from SvxPostItDialog by containment


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [dddaf110e9aabf1dca2edf08d076e87ae3d904f9]

INTEGRATION: CWS dialogdiet (1.3.304); FILE MERGED 2004/01/13 02:56:44 mwu 1.3.304.1: DialogDiet 2004_01_13


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6f0a975be8dd946d64108e010c1800061d6801c0]

INTEGRATION: CWS dialogdiet (1.4.300); FILE MERGED 2003/11/28 15:38:14 mba 1.4.300.1: #i22972#: SbxSelectionList moved to sc


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec5781617dfe0bb4b98b58079f587d00a2f06351]

INTEGRATION: CWS dialogdiet (1.2.336); FILE MERGED 2004/01/13 02:56:43 mwu 1.2.336.2: DialogDiet 2004_01_13 2003/11/28 15:37:35 mba 1.2.336.1: #i22969#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [afe477a0d2294efca614726f9badd190e257cd73]

INTEGRATION: CWS dialogdiet (1.58.118); FILE MERGED 2004/01/19 22:15:50 mba 1.58.118.2: RESYNC: (1.58-1.59); FILE MERGED 2003/11/28 15:37:14 mba 1.58.118.1: #i22972#: include svx instead of offmgr


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ea812a5d1f6d5dbb64faa74597aa247b4eb7d633]

INTEGRATION: CWS dialogdiet (1.18.194); FILE MERGED 2004/01/13 02:56:43 mwu 1.18.194.2: DialogDiet 2004_01_13 2003/11/28 15:36:48 mba 1.18.194.1: #i22969#: use DialogFactory for SvtTextTabDialog


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c4d12d356143b23f56e79c43d1180f9e1d1ef4a2]

INTEGRATION: CWS dialogdiet (1.19.118); FILE MERGED 2004/01/19 22:15:26 mba 1.19.118.2: RESYNC: (1.19-1.20); FILE MERGED 2003/11/28 15:36:20 mba 1.19.118.1: #i22972#: include svx instead of offmgr


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [4cc7cd1eda7dc15197932a63cbd5fc94a5a96854]

INTEGRATION: CWS dialogdiet (1.3.318); FILE MERGED 2004/01/13 02:56:42 mwu 1.3.318.2: DialogDiet 2004_01_13 2003/11/28 15:35:53 mba 1.3.318.1: #i22969#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [feb8d39cd7bece39ac612f23ed7ec8705a2a6c27]

INTEGRATION: CWS dialogdiet (1.9.296); FILE MERGED 2004/01/13 02:56:42 mwu 1.9.296.1: DialogDiet 2004_01_13


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1cb9bdee19cd3ad688d97e0115c026f41db92b08]

INTEGRATION: CWS dialogdiet (1.2.340); FILE MERGED 2004/01/17 01:32:32 mwu 1.2.340.3: DialogDiet 2004_01_17 2004/01/13 02:56:41 mwu 1.2.340.2: DialogDiet 2004_01_13 2003/11/28 15:35:33 mba 1.2.340.1: #i22969#: use DialogFactory for SvtTextTabDialog


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2dbc062069771ad5b9a1b0781edee34aede3f928]

INTEGRATION: CWS dialogdiet (1.2.318); FILE MERGED 2004/01/13 02:56:41 mwu 1.2.318.2: DialogDiet 2004_01_13 2003/11/28 15:34:37 mba 1.2.318.1: #i22969#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c3024caf9aaf85546902e2aee00673d23252bb7d]

INTEGRATION: CWS dialogdiet (1.26.48); FILE MERGED 2004/01/19 22:16:03 mba 1.26.48.2: RESYNC: (1.26-1.28); FILE MERGED 2003/11/28 15:32:40 mba 1.26.48.1: #i22972#: OfaPtrItem moved to svx


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [67d2477c5e25310274521e8fc8ff8dcd5bb98299]

INTEGRATION: CWS dialogdiet (1.16.194); FILE MERGED 2003/12/15 10:49:09 cd 1.16.194.2: #i22972# Fixed wrong include statement 2003/11/28 15:32:10 mba 1.16.194.1: #i22972#: ofa removed


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6a7a72212f7d1276ebe5069d69cf44ddb33522aa]

INTEGRATION: CWS dialogdiet (1.13.318); FILE MERGED 2003/11/28 15:31:44 mba 1.13.318.1: #i22972#: access to StandardColorTable moved to svx


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [626bd6e831ec7f84e500f43ab34f1ac8b9e60481]

INTEGRATION: CWS dialogdiet (1.63.48); FILE MERGED 2003/11/28 15:31:25 mba 1.63.48.1: #i22972#: FilterOptions moved to svtools


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c42be3e229f74beac04674908292e66df4688f72]

INTEGRATION: CWS dialogdiet (1.13.194); FILE MERGED 2003/11/28 15:31:04 mba 1.13.194.1: #i22972#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [dfe13ce8d80e4f03140a4faaaaa033e8c12d61ee]

INTEGRATION: CWS dialogdiet (1.8.4); FILE MERGED 2003/11/28 15:30:09 mba 1.8.4.1: #i22972#: ChooseMacro moved to SFX


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [4c43901a144428bba755b6e5f8db6f9fe4202e6d]

INTEGRATION: CWS dialogdiet (1.36.48); FILE MERGED 2004/01/26 14:32:23 mba 1.36.48.2: #i22972#: SvxErrorHandler needs to be created by apps 2003/11/28 15:27:28 mba 1.36.48.1: #i22969#: use DialogFactory for Internationalisation TabPage


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f0d02dc10080181de3a321f3ad861623094f4c8c]

INTEGRATION: CWS dialogdiet (1.15.50); FILE MERGED 2003/11/28 15:29:31 mba 1.15.50.1: #i22972#: Moved some initialisations from Offapp to DLL::Init


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f9e17a1d8d736f02d9a1c5f09db7a93429dab9bf]

INTEGRATION: CWS dialogdiet (1.34.4); FILE MERGED 2004/01/23 08:51:41 mba 1.34.4.2: #i22972#: obsolete include 2003/11/28 15:28:58 mba 1.34.4.1: #i22972#: obsolete include


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [81f05eb1d41c3eccb8fbeb5ae743511b0f27a299]

INTEGRATION: CWS dialogdiet (1.49.4); FILE MERGED 2003/11/28 15:28:24 mba 1.49.4.1: #i22972#: AutoCorrCfg moved to SVX


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [be0fdd66cb6e6218d40b2f03069d03d83b998d74]

INTEGRATION: CWS dialogdiet (1.60.2); FILE MERGED 2003/12/01 17:59:58 mba 1.60.2.2: RESYNC: (1.60-1.61); FILE MERGED 2003/11/28 15:19:51 mba 1.60.2.1: #i22972#: FilterOptions moved to svtools


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cde775a6a2a6b65e1df5a9654a5fdd919ed38da4]

INTEGRATION: CWS dialogdiet (1.17.4); FILE MERGED 2003/11/28 15:19:39 mba 1.17.4.1: #i22972#: FilterOptions moved to svtools


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2120d4143e96a8e7855a5d83dbf0916b863f6584]

INTEGRATION: CWS dialogdiet (1.23.186); FILE MERGED 2003/11/28 15:19:38 mba 1.23.186.1: #i22972#: FilterOptions moved to svtools


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6a0e8795537ce60472bba3d0a3bd4ca90ecc6c9b]

INTEGRATION: CWS dialogdiet (1.9.4); FILE MERGED 2003/12/01 18:00:36 mba 1.9.4.2: RESYNC: (1.9-1.10); FILE MERGED 2003/11/28 15:19:17 mba 1.9.4.1: #i22972#: FilterOptions moved to svtools


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c46ea92c4d495129a37690f68c35a96bfd7d6297]

INTEGRATION: CWS dialogdiet (1.15.184); FILE MERGED 2003/11/28 15:19:16 mba 1.15.184.1: #i22972#: FilterOptions moved to svtools


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [10066988537a964c561b5a4b4fb98da135d34bf0]

INTEGRATION: CWS dialogdiet (1.87.2); FILE MERGED 2003/11/28 15:19:16 mba 1.87.2.1: #i22972#: FilterOptions moved to svtools


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ce628fc4bb7a1f0b59a1db4268eecdb3c6ff2819]

INTEGRATION: CWS dialogdiet (1.21.46); FILE MERGED 2004/01/23 08:44:45 mba 1.21.46.4: #i22972#: missing include 2004/01/19 22:29:11 mba 1.21.46.3: RESYNC: (1.22-1.24); FILE MERGED 2003/12/01 18:01:13 mba 1.21.46.2: RESYNC: (1.21-1.22); FILE MERGED 2003/11/28 15:18:15 mba 1.21.46.1: #i22972#: access to StandardColorTable moved to svx


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c0c655c9cfb77179608744191dd737376d33ef58]

INTEGRATION: CWS dialogdiet (1.30.148); FILE MERGED 2004/01/19 22:28:47 mba 1.30.148.2: RESYNC: (1.30-1.31); FILE MERGED 2003/12/15 10:43:07 cd 1.30.148.1: #i22972# Fixed wrong include statement


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6062ef6c287a10eca22434029bcfb7b440df13ca]

INTEGRATION: CWS dialogdiet (1.6.28); FILE MERGED 2003/11/28 15:17:48 mba 1.6.28.1: #i22972#: include svx instead of offmgr


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7e4286ad2253bae1f79a0bef3d72bf846150c282]

INTEGRATION: CWS dialogdiet (1.2.326); FILE MERGED 2003/11/28 15:17:47 mba 1.2.326.1: #i22972#: include svx instead of offmgr


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2bbff721b997c65aadb7aa67174307cd408ea694]

INTEGRATION: CWS dialogdiet (1.8.40); FILE MERGED 2003/12/02 15:19:58 mba 1.8.40.1: #i22972#: offmgr removed


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [225e50fe6603f264b148c3f13cd81aa7f97ea7bd]

INTEGRATION: CWS calcrtl (1.1.2); FILE ADDED 2003/12/04 15:09:20 sab 1.1.2.1: #106948#, add own service of uno::Shape


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f752c961a9ca24a5477ed9eb02836d52d6598d8e]

INTEGRATION: CWS calcrtl (1.19.26); FILE MERGED 2003/10/29 19:43:15 nn 1.19.26.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [065f7fd74df0f77e3f8fdca5e26d7cb99ac51d7d]

INTEGRATION: CWS calcrtl (1.11.90); FILE MERGED 2003/11/27 11:13:33 nn 1.11.90.2: RESYNC: (1.11-1.12); FILE MERGED 2003/07/30 18:23:39 nn 1.11.90.1: #106948# RTL: insert objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3c3093d2dd82d99c826b39c92e41e820ea2a0cab]

INTEGRATION: CWS calcrtl (1.23.34); FILE MERGED 2003/07/30 18:23:39 nn 1.23.34.1: #106948# RTL: insert objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8fe1c9cc5c61c819eb8eb4242df568bbc53f3a00]

INTEGRATION: CWS calcrtl (1.21.18); FILE MERGED 2004/01/13 12:05:35 sab 1.21.18.2: RESYNC: (1.21-1.22); FILE MERGED 2003/10/31 18:42:49 nn 1.21.18.1: #106948# adjust edit area to text alignment


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2542b56f15385d49c19cab884c70b7cb39d5051a]

INTEGRATION: CWS calcrtl (1.22.82); FILE MERGED 2003/11/27 11:13:27 nn 1.22.82.2: RESYNC: (1.22-1.23); FILE MERGED 2003/10/29 19:43:16 nn 1.22.82.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [94f4ce6ff69a4a0df34830dcf4584f1fa137dfc0]

INTEGRATION: CWS calcrtl (1.38.26); FILE MERGED 2004/01/13 12:03:52 sab 1.38.26.3: RESYNC: (1.38-1.40); FILE MERGED 2003/10/31 18:42:47 nn 1.38.26.2: #106948# adjust edit area to text alignment 2003/06/30 17:21:44 nn 1.38.26.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f309135a20088456ae5a6eb75c5b64ec59127919]

INTEGRATION: CWS calcrtl (1.5.34); FILE MERGED 2003/07/30 18:23:39 nn 1.5.34.1: #106948# RTL: insert objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f182b94dac56035df0d0896f44addf70836a5fc8]

INTEGRATION: CWS calcrtl (1.5.34); FILE MERGED 2003/07/11 10:23:51 nn 1.5.34.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [d8c60617d586407c20974fba75748743261a2f44]

INTEGRATION: CWS calcrtl (1.32.6); FILE MERGED 2003/10/08 09:14:59 nn 1.32.6.2: RESYNC: (1.32-1.33); FILE MERGED 2003/07/30 14:50:11 nn 1.32.6.1: #106948# initialize RTL flag for new sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [38dec4b3fa5adb640a8dbeaa7e3d2e1b2461d55f]

INTEGRATION: CWS calcrtl (1.11.28); FILE MERGED 2003/11/11 11:34:29 dr 1.11.28.3: #106948# changes for RTL UI 2003/07/25 16:50:45 nn 1.11.28.2: #106948# RTL handling of drawing objects 2003/07/11 10:33:40 nn 1.11.28.1: #106948# RTL ordering of view elements


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec05b9e3caf3af2f5576b597a522cad12dd092c1]

INTEGRATION: CWS calcrtl (1.2.82); FILE MERGED 2003/07/29 18:12:28 nn 1.2.82.1: #106948# RTL scroll bar handling


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3c715d333b7eb162704f4379b409c9501656625a]

INTEGRATION: CWS calcrtl (1.33.6); FILE MERGED 2003/10/31 18:42:48 nn 1.33.6.3: #106948# adjust edit area to text alignment 2003/10/08 09:14:54 nn 1.33.6.2: RESYNC: (1.33-1.35); FILE MERGED 2003/06/30 17:21:43 nn 1.33.6.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [b29ab6890c1364d624ce4011d46533d3ce24e229]

INTEGRATION: CWS calcrtl (1.15.84); FILE MERGED 2003/11/13 10:41:19 dr 1.15.84.7: #106948# do not move pointer after context menu 2003/11/11 11:34:28 dr 1.15.84.6: #106948# changes for RTL UI 2003/11/10 14:50:23 ssa 1.15.84.5: #106948# correct splitting in mirrored mode 2003/11/06 14:44:59 dr 1.15.84.4: #106948# TabBar supports permanent mirrored layout 2003/07/30 18:23:38 nn 1.15.84.3: #106948# RTL: insert objects 2003/07/29 18:12:27 nn 1.15.84.2: #106948# RTL scroll bar handling 2003/07/11 10:33:39 nn 1.15.84.1: #106948# RTL ordering of view elements


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7c9d0a96fd1f824d664b02cc875644de06053bcb]

INTEGRATION: CWS calcrtl (1.2.122); FILE MERGED 2003/11/10 14:50:25 ssa 1.2.122.2: #106948# correct splitting in mirrored mode 2003/07/11 10:33:39 nn 1.2.122.1: #106948# RTL ordering of view elements


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7fc9f06a3439d62adabebf22c575914b874ae9d3]

INTEGRATION: CWS calcrtl (1.5.114); FILE MERGED 2004/01/13 12:02:50 sab 1.5.114.5: RESYNC: (1.5-1.6); FILE MERGED 2003/11/13 10:41:19 dr 1.5.114.4: #106948# do not move pointer after context menu 2003/11/13 10:27:13 dr 1.5.114.3: #106948# move mouse pointer if mirrored state changes 2003/11/11 11:34:27 dr 1.5.114.2: #106948# changes for RTL UI 2003/07/11 10:33:38 nn 1.5.114.1: #106948# RTL ordering of view elements


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [29808e2de30991c38d162154a046bd86fce51899]

INTEGRATION: CWS calcrtl (1.29.6); FILE MERGED 2004/01/13 12:02:30 sab 1.29.6.4: RESYNC: (1.30-1.32); FILE MERGED 2003/11/27 11:13:19 nn 1.29.6.3: RESYNC: (1.29-1.30); FILE MERGED 2003/10/29 19:19:53 nn 1.29.6.2: #106948# for RTL, start page layout from the right edge 2003/06/30 17:21:43 nn 1.29.6.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [bea33db02da842ad83e1c39f43c2448f7a9671e6]

INTEGRATION: CWS calcrtl (1.8.86); FILE MERGED 2004/01/13 12:01:34 sab 1.8.86.3: RESYNC: (1.9-1.10); FILE MERGED 2003/11/27 11:12:43 nn 1.8.86.2: RESYNC: (1.8-1.9); FILE MERGED 2003/07/11 10:27:20 nn 1.8.86.1: #106948# handle drawing objects in RTL mode


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0ffff58e5b2ab96729dc65db1c0b4cf08fd69846]

INTEGRATION: CWS calcrtl (1.35.34); FILE MERGED 2003/11/04 16:18:27 nn 1.35.34.9: RESYNC: (1.35-1.36); FILE MERGED 2003/10/31 18:42:47 nn 1.35.34.8: #106948# adjust edit area to text alignment 2003/10/23 16:46:36 nn 1.35.34.7: #106948# horizontal alignment of rotated text 2003/10/20 19:02:09 nn 1.35.34.6: #106948# look at both sides if painting only one column 2003/10/17 19:59:25 nn 1.35.34.5: #106948# mark edit cells in right row 2003/10/17 19:52:35 nn 1.35.34.4: #106948# clipping of formatted text 2003/10/10 18:59:30 nn 1.35.34.3: #106948# text alignment continued 2003/08/14 19:20:15 nn 1.35.34.2: #106948# continue long text in both directions 2003/06/30 17:21:42 nn 1.35.34.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e102d848b9eb709862c5df4e55baacc2d2e38c04]

INTEGRATION: CWS calcrtl (1.17.2.2.16); FILE MERGED 2004/01/13 12:00:59 sab 1.17.2.2.16.7: RESYNC: (1.18-1.20); FILE MERGED 2003/08/14 19:20:13 nn 1.17.2.2.16.6: #106948# continue long text in both directions 2003/06/30 17:21:41 nn 1.17.2.2.16.5: #106948# RTL layout, continued implementation 2003/06/12 14:26:25 nn 1.17.2.2.16.4: #106948# RTL layout: shadow is not mirrored 2003/03/14 19:39:45 nn 1.17.2.2.16.3: #106948# RTL layout: shadow, borders and markers 2003/03/10 14:14:24 nn 1.17.2.2.16.2: RESYNC: (1.17.2.2-1.17.2.3); FILE MERGED 2003/03/10 14:03:07 nn 1.17.2.2.16.1: #106948# RTL layout: background and grid


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9a41b5229ba8051c3d43f86b03bf423c141c4082]

INTEGRATION: CWS calcrtl (1.6.12); FILE MERGED 2003/07/11 10:33:38 nn 1.6.12.1: #106948# RTL ordering of view elements


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [bee3205b06f2790c5b66a4b27f2a8568c2889e70]

INTEGRATION: CWS calcrtl (1.1.1.1.126); FILE MERGED 2003/06/30 17:21:41 nn 1.1.1.1.126.2: #106948# RTL layout, continued implementation 2003/03/14 19:38:12 nn 1.1.1.1.126.1: #106948# handle RTL layout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ac1a170c9ebe2f37553c6eaba8bc178aeed981ae]

INTEGRATION: CWS calcrtl (1.10.34); FILE MERGED 2004/01/13 12:00:07 sab 1.10.34.4: RESYNC: (1.11-1.12); FILE MERGED 2003/07/11 10:33:38 nn 1.10.34.3: #106948# RTL ordering of view elements 2003/06/30 17:40:44 nn 1.10.34.2: RESYNC: (1.10-1.11); FILE MERGED 2003/06/30 17:21:41 nn 1.10.34.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [85a867dbb8944912adc8049a5c34313e94e0e8d4]

INTEGRATION: CWS calcrtl (1.17.2.1.56); FILE MERGED 2003/11/27 11:12:23 nn 1.17.2.1.56.8: RESYNC: (1.19-1.20); FILE MERGED 2003/10/31 18:42:48 nn 1.17.2.1.56.7: #106948# adjust edit area to text alignment 2003/10/27 17:31:45 nn 1.17.2.1.56.6: #106948# RTL for list validity button 2003/10/08 09:14:48 nn 1.17.2.1.56.5: RESYNC: (1.18-1.19); FILE MERGED 2003/07/29 15:17:29 nn 1.17.2.1.56.4: #106948# RTL paint of background area 2003/07/11 10:33:37 nn 1.17.2.1.56.3: #106948# RTL ordering of view elements 2003/06/30 17:21:40 nn 1.17.2.1.56.2: #106948# RTL layout, continued implementation 2003/03/10 14:02:32 nn 1.17.2.1.56.1: #106948# set output data mirror width


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9482ee6ae530fa9bf04262777090a678ab68280f]

INTEGRATION: CWS calcrtl (1.6.26); FILE MERGED 2003/11/27 11:12:15 nn 1.6.26.4: RESYNC: (1.6-1.7); FILE MERGED 2003/07/30 18:22:41 nn 1.6.26.3: #106948# RTL anchor 2003/07/25 16:50:44 nn 1.6.26.2: #106948# RTL handling of drawing objects 2003/07/11 10:28:38 nn 1.6.26.1: #106948# handle drawing objects in RTL mode


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8673f395e876423f6e5b527d0b08d94c7924e3ea]

INTEGRATION: CWS calcrtl (1.41.26); FILE MERGED 2004/01/13 11:59:27 sab 1.41.26.6: RESYNC: (1.44-1.45); FILE MERGED 2003/11/26 13:51:07 pb 1.41.26.5: fix: #106948# explicit mirroring of filterbox 2003/10/08 09:14:41 nn 1.41.26.4: RESYNC: (1.43-1.44); FILE MERGED 2003/07/11 10:33:37 nn 1.41.26.3: #106948# RTL ordering of view elements 2003/06/30 17:40:33 nn 1.41.26.2: RESYNC: (1.41-1.43); FILE MERGED 2003/06/30 17:21:39 nn 1.41.26.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [b677516035fffa2f07de84f86cc46ff0c3683515]

INTEGRATION: CWS calcrtl (1.1.1.1.126); FILE MERGED 2003/03/10 13:59:45 nn 1.1.1.1.126.1: #106948# handle negative difference for RTL layout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9e7f8baa3fd864e2281053e3a807a57ae36a4bf5]

INTEGRATION: CWS calcrtl (1.20.6); FILE MERGED 2004/01/13 11:59:08 sab 1.20.6.5: RESYNC: (1.21-1.22); FILE MERGED 2003/11/27 11:12:07 nn 1.20.6.4: RESYNC: (1.20-1.21); FILE MERGED 2003/07/30 18:22:41 nn 1.20.6.3: #106948# RTL anchor 2003/07/11 12:10:34 nn 1.20.6.2: #106948# gcc needs a variable 2003/07/11 10:27:20 nn 1.20.6.1: #106948# handle drawing objects in RTL mode


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [357357aa99a35d8e490acba5da366c6be1cb5c34]

INTEGRATION: CWS calcrtl (1.9.86); FILE MERGED 2003/07/11 10:33:37 nn 1.9.86.2: #106948# RTL ordering of view elements 2003/06/30 17:21:39 nn 1.9.86.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [492dafc56c2e1ed1b7918b4cb722dda55db2944a]

INTEGRATION: CWS calcrtl (1.4.82); FILE MERGED 2003/10/08 09:14:24 nn 1.4.82.2: RESYNC: (1.4-1.5); FILE MERGED 2003/06/30 17:21:38 nn 1.4.82.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [433eb973eea474af26a2a57f9db10702e9c78f8f]

INTEGRATION: CWS calcrtl (1.9.34); FILE MERGED 2003/11/27 11:14:10 nn 1.9.34.2: RESYNC: (1.9-1.10); FILE MERGED 2003/10/30 13:28:55 sab 1.9.34.1: #106948#; add new properties to a shape


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [352d4f18eeb56ef2e9e2705174465b1e8b9f5eef]

INTEGRATION: CWS calcrtl (1.77.34); FILE MERGED 2004/01/27 13:20:43 sab 1.77.34.6: #106948#; use the constants of WritingMode2 2004/01/26 17:56:22 sab 1.77.34.5: #106948#; the TableLayout is a short 2004/01/13 12:05:50 sab 1.77.34.4: RESYNC: (1.78-1.79); FILE MERGED 2004/01/12 17:46:37 sab 1.77.34.3: #114392#; TableLayout is of type writingmode and not sal_Int16 2003/11/04 16:19:04 nn 1.77.34.2: RESYNC: (1.77-1.78); FILE MERGED 2003/07/03 11:35:23 sab 1.77.34.1: #106948#; add new property TableLayout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [d3b53b5a8815bdb9a76a1cbec38bba1e8f4142c9]

INTEGRATION: CWS calcrtl (1.8.6); FILE MERGED 2003/07/11 10:21:34 nn 1.8.6.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ac839549ea0cac68eea50875ebaeb10acbb208fd]

INTEGRATION: CWS calcrtl (1.4.34); FILE MERGED 2003/10/29 19:42:38 nn 1.4.34.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [22e00292b8925c90826b3916a102e9952c923ff9]

INTEGRATION: CWS calcrtl (1.7.90); FILE MERGED 2003/10/29 19:42:37 nn 1.7.90.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [66149a228a30d6fa2339764e681e0a1866ae545b]

INTEGRATION: CWS calcrtl (1.10.84); FILE MERGED 2003/10/29 19:42:37 nn 1.10.84.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f1a33dc4915ae1a3889de224221c49b6cbffacff]

INTEGRATION: CWS calcrtl (1.45.18); FILE MERGED 2004/01/13 12:11:39 sab 1.45.18.3: RESYNC: (1.47-1.48); FILE MERGED 2003/10/08 09:20:25 nn 1.45.18.2: RESYNC: (1.45-1.47); FILE MERGED 2003/07/11 10:20:43 nn 1.45.18.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [5b460354b670027671d6a242a29c1027910a12ff]

INTEGRATION: CWS calcrtl (1.45.18); FILE MERGED 2004/01/13 12:09:57 sab 1.45.18.3: RESYNC: (1.47-1.48); FILE MERGED 2003/10/08 09:19:18 nn 1.45.18.2: RESYNC: (1.45-1.47); FILE MERGED 2003/07/11 10:20:43 nn 1.45.18.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e6750b8e0c6386778882b6d112caad78142bbbb8]

INTEGRATION: CWS calcrtl (1.12.26); FILE MERGED 2003/10/31 18:41:01 nn 1.12.26.1: #106948# adjust edit area to text alignment


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [af8cf94bac159881667b214d49dea81345fba6cc]

INTEGRATION: CWS calcrtl (1.5.100); FILE MERGED 2003/07/11 10:21:10 nn 1.5.100.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [87422ec3a1f24af637bfd6bf525df27951bc3639]

INTEGRATION: CWS calcrtl (1.6.84); FILE MERGED 2003/10/29 19:41:09 nn 1.6.84.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6e0ee394851a48488b6c11bc38c887efead4245a]

INTEGRATION: CWS calcrtl (1.10.28); FILE MERGED 2003/10/08 09:25:59 nn 1.10.28.2: RESYNC: (1.10-1.11); FILE MERGED 2003/07/29 18:12:14 nn 1.10.28.1: #106948# RTL scroll bar handling


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c83b5727b0f346bd8521fd60fbb91baa499d36fd]

INTEGRATION: CWS calcrtl (1.3.114); FILE MERGED 2003/11/13 10:41:03 dr 1.3.114.2: #106948# do not move pointer after context menu 2003/11/13 10:26:15 dr 1.3.114.1: #106948# move mouse pointer if mirrored state changes


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8f051e980b1e1ee85c278413b17c94d0414edfe]

INTEGRATION: CWS calcrtl (1.6.2.1.16); FILE MERGED 2004/01/13 12:20:59 sab 1.6.2.1.16.6: RESYNC: (1.8-1.9); FILE MERGED 2003/11/27 11:15:05 nn 1.6.2.1.16.5: RESYNC: (1.7-1.8); FILE MERGED 2003/10/23 16:46:54 nn 1.6.2.1.16.4: #106948# horizontal alignment of rotated text 2003/08/14 19:19:35 nn 1.6.2.1.16.3: #106948# continue long text in both directions 2003/03/10 14:15:56 nn 1.6.2.1.16.2: RESYNC: (1.6.2.1-1.6.2.2); FILE MERGED 2003/03/10 14:00:18 nn 1.6.2.1.16.1: #106948# RTL layout flag, mirror width


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [015cd08213020c1f28fe0e416e5c236cd153691d]

INTEGRATION: CWS calcrtl (1.5.12); FILE MERGED 2003/07/11 10:31:22 nn 1.5.12.1: #106948# RTL ordering of view elements


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3b5997c546c4985998106b8953b956068e233417]

INTEGRATION: CWS calcrtl (1.1.1.1.126); FILE MERGED 2003/07/11 10:31:22 nn 1.1.1.1.126.2: #106948# RTL ordering of view elements 2003/06/30 17:18:25 nn 1.1.1.1.126.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7074cc2324da1430add377c92e4ef6a6430b080d]

INTEGRATION: CWS calcrtl (1.25.18); FILE MERGED 2003/10/29 19:41:08 nn 1.25.18.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2a37b6f3ccebf75b2bdbc5531fd74ad60fccbc9e]

INTEGRATION: CWS calcrtl (1.7.34); FILE MERGED 2003/06/30 17:14:34 nn 1.7.34.1: #106948# table flag for RTL layout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7666ce67693c4fac409805b27464510702a56067]

INTEGRATION: CWS calcrtl (1.1.1.1.126); FILE MERGED 2003/07/11 10:31:22 nn 1.1.1.1.126.2: #106948# RTL ordering of view elements 2003/06/30 17:18:24 nn 1.1.1.1.126.1: #106948# RTL layout, continued implementation


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [00bbef8981e61f06d4fd0cea3ad3e3a7e6c24e92]

INTEGRATION: CWS calcrtl (1.5.90); FILE MERGED 2003/07/25 16:50:31 nn 1.5.90.2: #106948# RTL handling of drawing objects 2003/07/11 10:26:05 nn 1.5.90.1: #106948# handle drawing objects in RTL mode


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e6e2681e3f5bcaf735f3a74f585a12ccc7fb4bc0]

INTEGRATION: CWS calcrtl (1.8.34); FILE MERGED 2004/01/13 12:24:13 sab 1.8.34.3: RESYNC: (1.9-1.10); FILE MERGED 2003/10/08 09:27:24 nn 1.8.34.2: RESYNC: (1.8-1.9); FILE MERGED 2003/07/30 18:24:08 nn 1.8.34.1: #106948# RTL: insert objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9610fc19258096062db15c6940fd2a5a2c261196]

INTEGRATION: CWS calcrtl (1.3.86); FILE MERGED 2003/07/30 18:24:08 nn 1.3.86.1: #106948# RTL: insert objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [478fb69f33cc346bf43ed53f4b1d3931652e4e2c]

INTEGRATION: CWS calcrtl (1.16.34); FILE MERGED 2003/10/29 19:41:56 nn 1.16.34.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [079889d07686e76c7494c6b7caaf8122754113d0]

INTEGRATION: CWS calcrtl (1.44.6); FILE MERGED 2003/11/27 11:16:25 nn 1.44.6.4: RESYNC: (1.44-1.45); FILE MERGED 2003/10/29 19:41:56 nn 1.44.6.3: #106948# handle text alignment in repaint 2003/07/11 10:21:58 nn 1.44.6.2: #106948# menu function to mirror sheet 2003/06/30 17:15:25 nn 1.44.6.1: #106948# table flag for RTL layout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0e7771e49d0b31c2bcbd4c3bf972e27975f8e0ba]

INTEGRATION: CWS calcrtl (1.46.6); FILE MERGED 2003/11/27 11:17:00 nn 1.46.6.3: RESYNC: (1.48-1.49); FILE MERGED 2003/06/30 17:54:55 nn 1.46.6.2: RESYNC: (1.46-1.48); FILE MERGED 2003/06/30 17:16:51 nn 1.46.6.1: #106948# RTL layout: cell editing


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a5b9e2c216b54da923b586bfef83e4a9ab6eecc5]

INTEGRATION: CWS calcrtl (1.8.82); FILE MERGED 2003/07/30 18:24:46 nn 1.8.82.1: #106948# RTL: RequestObjAreaPixel


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2efc2af483538e6a1fea0535f70ee57bc5ab73cd]

INTEGRATION: CWS calcrtl (1.34.28); FILE MERGED 2004/01/13 12:32:58 sab 1.34.28.2: RESYNC: (1.34-1.35); FILE MERGED 2003/10/30 13:29:35 sab 1.34.28.1: #106948#; rtl load/save of shapes


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [29f16a3b213bc1cdf9908b901b853da63e919bd3]

INTEGRATION: CWS calcrtl (1.46.18); FILE MERGED 2003/10/08 09:34:16 nn 1.46.18.2: RESYNC: (1.46-1.47); FILE MERGED 2003/07/03 11:36:04 sab 1.46.18.1: #106948#; add new property TableLayout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cd3a600be14c4d3d6ff756e8e93c0c9fb3c72233]

INTEGRATION: CWS calcrtl (1.66.46); FILE MERGED 2004/01/13 12:32:26 sab 1.66.46.2: RESYNC: (1.66-1.67); FILE MERGED 2003/10/30 13:29:33 sab 1.66.46.1: #106948#; rtl load/save of shapes


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec40998a7dda6d186113a8d2cf6156b37ff0e298]

INTEGRATION: CWS calcrtl (1.169.46); FILE MERGED 2004/01/13 12:31:41 sab 1.169.46.2: RESYNC: (1.169-1.171); FILE MERGED 2003/10/30 13:29:30 sab 1.169.46.1: #106948#; rtl load/save of shapes


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0c8de5e0afcaca09741b4b404357dd9f152a2b36]

INTEGRATION: CWS calcrtl (1.20.84); FILE MERGED 2003/10/30 13:29:29 sab 1.20.84.1: #106948#; rtl load/save of shapes


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2951fd9dc178da7bf2075a3ed7cfbd1b2f1d6ca1]

INTEGRATION: CWS calcrtl (1.21.82); FILE MERGED 2003/12/04 10:34:18 sab 1.21.82.2: #106948#; only substract width if it is NegativePage 2003/10/30 13:29:28 sab 1.21.82.1: #106948#; rtl load/save of shapes


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [77283df2e19cdb36131ad9a328b2066b1ffe64dd]

INTEGRATION: CWS calcrtl (1.58.18); FILE MERGED 2003/11/27 11:18:06 nn 1.58.18.3: RESYNC: (1.59-1.61); FILE MERGED 2003/11/04 16:23:07 nn 1.58.18.2: RESYNC: (1.58-1.59); FILE MERGED 2003/10/10 15:19:47 dr 1.58.18.1: #106948# RTL layout support


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [282c9e114b71bd2c8542ada684e43dbe818b09cf]

INTEGRATION: CWS calcrtl (1.9.18); FILE MERGED 2003/11/27 14:53:28 nn 1.9.18.2: #100000# GetBoundRect() to GetCurrentBoundRect() again 2003/10/10 15:19:47 dr 1.9.18.1: #106948# RTL layout support


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [26377de574d4606f6016caa97f87d72ce96628ab]

INTEGRATION: CWS calcrtl (1.9.20); FILE MERGED 2003/11/27 11:24:26 nn 1.9.20.3: RESYNC: (1.10-1.11); FILE MERGED 2003/11/04 16:23:55 nn 1.9.20.2: RESYNC: (1.9-1.10); FILE MERGED 2003/10/09 13:37:34 dr 1.9.20.1: #106948# import of mirrored sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [91490913fd9e8390f4d022da01470abb85d3e9b3]

INTEGRATION: CWS calcrtl (1.7.20); FILE MERGED 2003/11/27 11:24:17 nn 1.7.20.2: RESYNC: (1.7-1.8); FILE MERGED 2003/10/10 15:33:57 dr 1.7.20.1: #i1967# first preparations for >32000 rows


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1eaca9c433c5ab018954b56a8ab610bb4ff91198]

INTEGRATION: CWS calcrtl (1.7.56); FILE MERGED 2003/11/27 11:24:09 nn 1.7.56.3: RESYNC: (1.8-1.9); FILE MERGED 2003/11/04 16:23:48 nn 1.7.56.2: RESYNC: (1.7-1.8); FILE MERGED 2003/10/10 15:33:56 dr 1.7.56.1: #i1967# first preparations for >32000 rows


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2e480b4c91ce7c9a36f78010c725cf0bd68bb86e]

INTEGRATION: CWS calcrtl (1.4.22); FILE MERGED 2003/11/04 16:23:41 nn 1.4.22.2: RESYNC: (1.4-1.5); FILE MERGED 2003/10/10 15:19:31 dr 1.4.22.1: #106948# RTL layout support


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6940eb668df1590114fe24fe172b6a6d56e31175]

INTEGRATION: CWS calcrtl (1.9.20); FILE MERGED 2003/11/27 11:23:15 nn 1.9.20.2: RESYNC: (1.9-1.10); FILE MERGED 2003/10/10 15:33:57 dr 1.9.20.1: #i1967# first preparations for >32000 rows


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [d0215ccba140c95b9ce95992cae2d3bf348d1097]

INTEGRATION: CWS calcrtl (1.3.88); FILE MERGED 2003/11/04 16:23:33 nn 1.3.88.3: RESYNC: (1.3-1.4); FILE MERGED 2003/10/10 15:19:29 dr 1.3.88.2: #106948# RTL layout support 2003/10/09 13:37:32 dr 1.3.88.1: #106948# import of mirrored sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [529307dce8f144bc54df6d2fc9a3f211ade15a3f]

INTEGRATION: CWS calcrtl (1.30.22); FILE MERGED 2003/11/27 11:20:11 nn 1.30.22.3: RESYNC: (1.31-1.32); FILE MERGED 2003/11/04 16:23:26 nn 1.30.22.2: RESYNC: (1.30-1.31); FILE MERGED 2003/10/10 15:19:29 dr 1.30.22.1: #106948# RTL layout support


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [5c062cef9f9bb2a10960999b4e844fdf4e99d68d]

INTEGRATION: CWS calcrtl (1.5.86); FILE MERGED 2003/10/10 15:19:28 dr 1.5.86.1: #106948# RTL layout support


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0e0a5e9353fff8a379ed1b1170f52224a96f2f32]

INTEGRATION: CWS calcrtl (1.39.34); FILE MERGED 2003/10/09 13:37:31 dr 1.39.34.1: #106948# import of mirrored sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e6929b6d13c7c2568906c34e50c031aa93bb47d2]

INTEGRATION: CWS calcrtl (1.10.20); FILE MERGED 2003/11/27 11:31:14 nn 1.10.20.3: RESYNC: (1.11-1.12); FILE MERGED 2003/11/04 16:25:15 nn 1.10.20.2: RESYNC: (1.10-1.11); FILE MERGED 2003/10/09 13:36:21 dr 1.10.20.1: #106948# import of mirrored sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [92c18e60379308afee4532473776345c9d6e0ff9]

INTEGRATION: CWS calcrtl (1.7.56); FILE MERGED 2003/11/27 11:30:54 nn 1.7.56.3: RESYNC: (1.8-1.9); FILE MERGED 2003/11/04 16:25:09 nn 1.7.56.2: RESYNC: (1.7-1.8); FILE MERGED 2003/10/10 15:33:29 dr 1.7.56.1: #i1967# first preparations for >32000 rows


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0490c6fd7dff78e6b2a1af6617d626c41d8ec3b7]

INTEGRATION: CWS calcrtl (1.1.2); FILE ADDED 2003/11/20 14:22:15 dr 1.1.2.2: #111027# textboxes still too small on import 2003/10/10 15:18:56 dr 1.1.2.1: #106948# RTL layout support


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8fb46c3821837812873d54a9b6f980651bda750d]

INTEGRATION: CWS calcrtl (1.7.14); FILE MERGED 2003/11/27 11:29:42 nn 1.7.14.4: RESYNC: (1.8-1.10); FILE MERGED 2003/11/04 16:24:41 nn 1.7.14.3: RESYNC: (1.7-1.8); FILE MERGED 2003/10/10 15:18:55 dr 1.7.14.2: #106948# RTL layout support 2003/10/09 13:36:20 dr 1.7.14.1: #106948# import of mirrored sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [938a0eb3a7c465096e7a474c9c07e06013546bf2]

INTEGRATION: CWS calcrtl (1.20.46); FILE MERGED 2003/11/27 11:27:46 nn 1.20.46.3: RESYNC: (1.21-1.22); FILE MERGED 2003/11/04 16:24:21 nn 1.20.46.2: RESYNC: (1.20-1.21); FILE MERGED 2003/10/10 15:18:55 dr 1.20.46.1: #106948# RTL layout support


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [939f5ac806bae27649d68819a135cfa9bf4ed6be]

INTEGRATION: CWS calcrtl (1.55.18); FILE MERGED 2004/01/13 12:37:10 sab 1.55.18.4: RESYNC: (1.57-1.58); FILE MERGED 2003/11/27 11:25:27 nn 1.55.18.3: RESYNC: (1.56-1.57); FILE MERGED 2003/11/04 16:24:01 nn 1.55.18.2: RESYNC: (1.55-1.56); FILE MERGED 2003/10/09 13:36:17 dr 1.55.18.1: #106948# import of mirrored sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [b8f2781f862f776979f0416746ef2ed2a85885d2]

INTEGRATION: CWS calcrtl (1.27.14); FILE MERGED 2003/11/27 11:27:16 nn 1.27.14.3: RESYNC: (1.27-1.29); FILE MERGED 2003/10/10 15:18:55 dr 1.27.14.2: #106948# RTL layout support 2003/10/09 13:36:16 dr 1.27.14.1: #106948# import of mirrored sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7ec3cdf9323395798155e42f4bc0716600da099c]

INTEGRATION: CWS calcrtl (1.86.20); FILE MERGED 2003/11/27 11:27:05 nn 1.86.20.2: RESYNC: (1.86-1.87); FILE MERGED 2003/10/10 15:18:54 dr 1.86.20.1: #106948# RTL layout support


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3e32418bae121487d4551fb43c3584741124927c]

INTEGRATION: CWS calcrtl (1.19.34); FILE MERGED 2004/01/13 12:40:18 sab 1.19.34.3: RESYNC: (1.19-1.20); FILE MERGED 2003/10/31 18:40:29 nn 1.19.34.2: #106948# adjust edit area to text alignment 2003/06/30 17:17:12 nn 1.19.34.1: #106948# RTL layout: cell editing


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [404308284af1956bf573dfd253fee0e66dd6fc94]

INTEGRATION: CWS calcrtl (1.11.34); FILE MERGED 2003/11/27 11:31:33 nn 1.11.34.2: RESYNC: (1.11-1.12); FILE MERGED 2003/07/25 16:50:20 nn 1.11.34.1: #106948# RTL handling of drawing objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [99fa4a94086f517deb6fd795b8f4794d38d89b57]

INTEGRATION: CWS calcrtl (1.22.26); FILE MERGED 2004/01/13 12:46:37 sab 1.22.26.4: RESYNC: (1.22-1.24); FILE MERGED 2003/10/23 16:47:08 nn 1.22.26.3: #106948# horizontal alignment of rotated text 2003/07/25 16:50:02 nn 1.22.26.2: #106948# RTL handling of drawing objects 2003/07/11 10:25:33 nn 1.22.26.1: #106948# handle drawing objects in RTL mode


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f76c5bba5f2fd45aa42150883a36741801dad8b]

INTEGRATION: CWS calcrtl (1.6.82); FILE MERGED 2004/01/13 12:46:21 sab 1.6.82.4: RESYNC: (1.6-1.7); FILE MERGED 2003/10/28 13:48:58 nn 1.6.82.3: #106948# handle RTL and text alignment in ExtendPrintArea 2003/07/30 14:48:55 nn 1.6.82.2: #106948# initialize RTL flag for new sheets 2003/06/30 17:14:02 nn 1.6.82.1: #106948# table flag for RTL layout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [b5526d906d1c6b528d54411a3877533c6e070a44]

INTEGRATION: CWS calcrtl (1.4.82); FILE MERGED 2003/07/30 14:49:30 nn 1.4.82.1: #106948# page style default for writing mode depends on system language


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [76f8645173314d634a6e3d79742f27ea3a82f68b]

INTEGRATION: CWS calcrtl (1.31.12); FILE MERGED 2004/01/13 12:45:19 sab 1.31.12.3: RESYNC: (1.32-1.33); FILE MERGED 2003/10/08 09:47:41 nn 1.31.12.2: RESYNC: (1.31-1.32); FILE MERGED 2003/07/30 14:48:54 nn 1.31.12.1: #106948# initialize RTL flag for new sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec84041a9a57d1cb7ab68ff73377853155dcc64c]

INTEGRATION: CWS calcrtl (1.3.118); FILE MERGED 2003/08/14 19:19:17 nn 1.3.118.3: #106948# continue long text in both directions 2003/06/30 17:14:03 nn 1.3.118.2: #106948# table flag for RTL layout 2003/06/12 14:26:45 nn 1.3.118.1: #106948# RTL layout: shadow is not mirrored


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [5074bf80ab56d81e899efb393b6b662e4c599ac1]

INTEGRATION: CWS calcrtl (1.20.34); FILE MERGED 2004/01/13 12:45:06 sab 1.20.34.5: RESYNC: (1.22-1.24); FILE MERGED 2003/11/27 11:32:05 nn 1.20.34.4: RESYNC: (1.21-1.22); FILE MERGED 2003/11/03 12:57:10 nn 1.20.34.3: #106948# handle RTL in MoveAreaTwips 2003/10/08 09:47:36 nn 1.20.34.2: RESYNC: (1.20-1.21); FILE MERGED 2003/07/25 16:50:00 nn 1.20.34.1: #106948# RTL handling of drawing objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [21349eabc6584ba3cdec2c00856531bf0593aee2]

INTEGRATION: CWS calcrtl (1.49.18); FILE MERGED 2004/01/13 12:44:52 sab 1.49.18.6: RESYNC: (1.50-1.53); FILE MERGED 2003/10/29 19:38:34 nn 1.49.18.5: #106948# handle text alignment in repaint 2003/10/08 09:47:30 nn 1.49.18.4: RESYNC: (1.49-1.50); FILE MERGED 2003/07/25 16:50:00 nn 1.49.18.3: #106948# RTL handling of drawing objects 2003/07/11 10:25:32 nn 1.49.18.2: #106948# handle drawing objects in RTL mode 2003/06/30 17:14:02 nn 1.49.18.1: #106948# table flag for RTL layout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cadce9d2665f04db4eee2e68f77d5a8f34fea6a3]

INTEGRATION: CWS calcrtl (1.17.34); FILE MERGED 2003/11/04 16:25:53 nn 1.17.34.3: RESYNC: (1.18-1.19); FILE MERGED 2003/10/08 09:47:06 nn 1.17.34.2: RESYNC: (1.17-1.18); FILE MERGED 2003/07/25 16:50:01 nn 1.17.34.1: #106948# RTL handling of drawing objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [fc7b919fb02120606e9eba7a1b49b5780e1e7c20]

INTEGRATION: CWS calcrtl (1.38.34); FILE MERGED 2004/01/13 12:43:58 sab 1.38.34.4: RESYNC: (1.39-1.41); FILE MERGED 2003/11/04 16:25:45 nn 1.38.34.3: RESYNC: (1.38-1.39); FILE MERGED 2003/07/30 14:48:54 nn 1.38.34.2: #106948# initialize RTL flag for new sheets 2003/07/25 16:50:01 nn 1.38.34.1: #106948# RTL handling of drawing objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [291242e8bc662a5367c5a45b4fd369cca022173d]

INTEGRATION: CWS calcrtl (1.12.26); FILE MERGED 2004/01/13 12:43:24 sab 1.12.26.2: RESYNC: (1.12-1.13); FILE MERGED 2003/10/29 19:38:34 nn 1.12.26.1: #106948# handle text alignment in repaint


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [79f13e2ab0c4e61c7dc45980ead2cbc2199c6507]

INTEGRATION: CWS calcrtl (1.24.82); FILE MERGED 2003/11/04 16:28:33 nn 1.24.82.3: RESYNC: (1.25-1.26); FILE MERGED 2003/10/08 09:48:05 nn 1.24.82.2: RESYNC: (1.24-1.25); FILE MERGED 2003/07/11 10:18:37 nn 1.24.82.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [07704f2d04f652c04ba16d2095001c38ac2bc681]

INTEGRATION: CWS calcrtl (1.3.86); FILE MERGED 2003/11/04 16:26:39 nn 1.3.86.2: RESYNC: (1.3-1.4); FILE MERGED 2003/07/11 10:18:39 nn 1.3.86.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ed009256f4cc782af67fec737fac546b6bb1ec61]

INTEGRATION: CWS calcrtl (1.1.2); FILE ADDED 2004/01/20 11:21:28 sw 1.1.2.1: #114392#


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [5a3662b1738626387b2583d2277347e4d4ebbb1c]

INTEGRATION: CWS calcrtl (1.1.2); FILE ADDED 2004/01/28 15:21:28 sw 1.1.2.4: #114392# 2004/01/27 14:13:58 sw 1.1.2.3: #114392# 2004/01/27 12:51:52 sw 1.1.2.2: #114392# 2004/01/20 11:22:05 sw 1.1.2.1: #114392#


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2527f9c09430ad5f730eb1e4151f87bb44be278b]

INTEGRATION: CWS calcrtl (1.3.112); FILE MERGED 2004/01/13 12:49:38 sab 1.3.112.2: RESYNC: (1.3-1.4); FILE MERGED 2003/07/03 11:35:01 sab 1.3.112.1: #106948#; add new property TableLayout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [796efb8b6823f90638389f4c5eb53c64b666fdcd]

INTEGRATION: CWS calcrtl (1.51.6); FILE MERGED 2004/01/13 12:49:25 sab 1.51.6.5: RESYNC: (1.54-1.55); FILE MERGED 2003/11/04 16:36:04 nn 1.51.6.4: RESYNC: (1.53-1.54); FILE MERGED 2003/10/30 13:28:30 sab 1.51.6.3: #106948#; add new properties to a shape 2003/10/08 09:53:55 nn 1.51.6.2: RESYNC: (1.51-1.53); FILE MERGED 2003/07/03 11:35:00 sab 1.51.6.1: #106948#; add new property TableLayout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc01723cde86cf0c54a974f7335bfe31784485e6]

INTEGRATION: CWS calcrtl (1.19.82); FILE MERGED 2004/01/13 12:47:12 sab 1.19.82.2: RESYNC: (1.19-1.21); FILE MERGED 2003/06/30 17:13:09 nn 1.19.82.1: #106948# table flag for RTL layout


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [162c23e5879d0bca5f85b343ea21e7f41f0fcfc2]

INTEGRATION: CWS calcrtl (1.35.82); FILE MERGED 2003/10/08 09:52:28 nn 1.35.82.2: RESYNC: (1.35-1.37); FILE MERGED 2003/07/11 10:17:31 nn 1.35.82.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [795af0fb7fdb29e5fc3fad1d72f3d83ed71e83ec]

INTEGRATION: CWS calcrtl (1.4.112); FILE MERGED 2003/07/11 10:17:31 nn 1.4.112.1: #106948# menu function to mirror sheet


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [fc01550d42170354398c17496ebce54059865660]

INTEGRATION: CWS calcrtl (1.23.6); FILE MERGED 2004/01/13 12:47:58 sab 1.23.6.4: RESYNC: (1.24-1.25); FILE MERGED 2003/10/29 19:37:55 nn 1.23.6.3: #106948# handle text alignment in repaint 2003/10/08 09:53:19 nn 1.23.6.2: RESYNC: (1.23-1.24); FILE MERGED 2003/07/30 14:47:39 nn 1.23.6.1: #106948# initialize RTL flag for new sheets


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ef55ea017f24f1a4b90df1cc100aedbaf49f5441]

INTEGRATION: CWS calcrtl (1.8.84); FILE MERGED 2003/11/27 11:32:20 nn 1.8.84.2: RESYNC: (1.8-1.9); FILE MERGED 2003/07/25 16:49:30 nn 1.8.84.1: #106948# RTL handling of drawing objects


2004-02-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [8f3a73c3608e089af2576f6f4b386878b0c669a4]

INTEGRATION: CWS calcrtl (1.67.6); FILE MERGED 2004/01/13 12:47:45 sab 1.67.6.8: RESYNC: (1.70-1.71); FILE MERGED 2003/11/27 11:32:12 nn 1.67.6.7: RESYNC: (1.69-1.70); FILE MERGED 2003/11/04 16:35:34 nn 1.67.6.6: RESYNC: (1.68-1.69); FILE MERGED 2003/10/08 09:52:53 nn 1.67.6.5: RESYNC: (1.67-1.68); FILE MERGED 2003/08/14 19:18:56 nn 1.67.6.4: #106948# continue long text in both directions 2003/07/30 14:47:39 nn 1.67.6.3: #106948# initialize RTL flag for new sheets 2003/07/25 16:49:30 nn 1.67.6.2: #106948# RTL handling of drawing objects 2003/06/30 17:13:09 nn 1.67.6.1: #106948# table flag for RTL layout


2004-02-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [a790d6dc3d5ee0b9f9cdbaccde2d8cc0f2ecff13]

INTEGRATION: CWS geordi2q14 (1.22.70); FILE MERGED 2004/01/29 18:37:16 hr 1.22.70.1: #111934#: merge CWS ooo111fix2


2004-02-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [ffc4ef09b04c8df25038628e0f18af2edacebe01]

INTEGRATION: CWS geordi2q14 (1.9.34); FILE MERGED 2004/01/29 18:37:14 hr 1.9.34.1: #111934#: merge CWS ooo111fix2


2004-02-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [7f330baca052f4310f4d9672520bf54faf9bf27e]

INTEGRATION: CWS geordi2q14 (1.8.34); FILE MERGED 2004/01/29 18:37:13 hr 1.8.34.1: #111934#: merge CWS ooo111fix2


2004-02-02  Jens-Heiner Rechtien  <hr@openoffice.org>  [32aac8aa2c827c116834345d73d080b9f31a5c9d]

INTEGRATION: CWS geordi2q14 (1.12.90); FILE MERGED 2004/01/29 18:37:11 hr 1.12.90.1: #111934#: merge CWS ooo111fix2


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [15c14699e3697450b61522f3b5a3789bbcbb0730]

INTEGRATION: CWS filtercfg (1.4.30); FILE MERGED 2003/11/10 08:11:33 as 1.4.30.1: #111770# dont register for generic uno services


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [cada96ac2def527267a25a670cdec59b98d4f135]

INTEGRATION: CWS filtercfg (1.2.30); FILE MERGED 2003/11/10 08:11:32 as 1.2.30.1: #111770# dont register for generic uno services


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [a8338b79210d48506e2c86e85f051827a280948d]

INTEGRATION: CWS filtercfg (1.36.30); FILE MERGED 2004/01/13 20:54:18 as 1.36.30.3: RESYNC: (1.37-1.38); FILE MERGED 2003/11/19 12:18:07 as 1.36.30.2: RESYNC: (1.36-1.37); FILE MERGED 2003/11/10 08:11:32 as 1.36.30.1: #111770# dont register for generic uno services


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [65d9934f23bfed0d3c20cfcce8a111f51a8a902e]

INTEGRATION: CWS filtercfg (1.7.30); FILE MERGED 2003/10/30 16:42:08 mba 1.7.30.1: #102620#: create SfxFilters on demand


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [c4ad32e7d3c40b4cb685f2ba53e83ebdd8b71e2a]

INTEGRATION: CWS filtercfg (1.15.30); FILE MERGED 2003/10/30 16:42:07 mba 1.15.30.1: #102620#: create SfxFilters on demand


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [bfb5b7e93556c007333a9d3db632edec9e5cdcdc]

INTEGRATION: CWS filtercfg (1.26.28); FILE MERGED 2004/01/13 21:07:21 as 1.26.28.3: RESYNC: (1.27-1.28); FILE MERGED 2003/12/08 09:29:26 as 1.26.28.2: RESYNC: (1.26-1.27); FILE MERGED 2003/10/30 16:42:07 mba 1.26.28.1: #102620#: create SfxFilters on demand


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [f07adf0a433ec8015c27ded1a67125d836536fb7]

INTEGRATION: CWS filtercfg (1.63.30); FILE MERGED 2003/10/30 16:42:06 mba 1.63.30.1: #102620#: create SfxFilters on demand


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [134480c63742731a9b4511b4b89d1cf17c97537b]

INTEGRATION: CWS filtercfg (1.15.276); FILE MERGED 2003/10/30 16:42:05 mba 1.15.276.1: #102620#: create SfxFilters on demand


2004-01-28  Kurt Zenker  <kz@openoffice.org>  [623a0ee3ba3c2a5f839693d2475d266599b4e81d]

INTEGRATION: CWS filtercfg (1.15.30); FILE MERGED 2003/10/30 16:42:05 mba 1.15.30.1: #102620#: create SfxFilters on demand


2004-01-28  Björn Milcke  <bm@openoffice.org>  [4aff7a5879536e1bd9b00bac381cd346650e355a]

static_cast from enum to different enum not allowed on Solaris


2004-01-28  Björn Milcke  <bm@openoffice.org>  [6f0d4af86d6d86085432d75536ddb93d10c05249]

static_cast from enum to different enum not allowed on Solaris


2004-01-28  Björn Milcke  <bm@openoffice.org>  [c671cc3eafeac65ca43b23f6f5ae7d4ba7e854f9]

+create default data


2004-01-26  Björn Milcke  <bm@openoffice.org>  [dc2730629afea6733089e1074a982885d5985ede]

drafts namespace of API removed public API moved to offapi Calc as DataEditor - first integration


2004-01-26  Björn Milcke  <bm@openoffice.org>  [e1f48a03acb5349a02bc7de299f2b90e483e2c12]

Helper for data series issues (e.g. getting a sequence with a specific role)


2004-01-23  Ingrid Halama  <iha@openoffice.org>  [5a75bbb1f4580739946c4c3c67eae1fc988f7e0c]

don't create lines with only one point


2004-01-23  Ingrid Halama  <iha@openoffice.org>  [4596038204a30d3c75ff45fb55fd18822081e83d]

correct clipping in case of logarithmic area chart


2004-01-23  Ingrid Halama  <iha@openoffice.org>  [3bf10ad3c85f6bfb01d9bf34f16bfc3cb3cbc3da]

integrated net chart


2004-01-23  Ingrid Halama  <iha@openoffice.org>  [fa489b7cfcae13944309306d3451c4131ac0d89c]

no axes for pie


2004-01-23  Ingrid Halama  <iha@openoffice.org>  [b0995e94eaf68c2f8304dfdc0fcc082bc70e3010]

no 3D polar grid


2004-01-23  Ingrid Halama  <iha@openoffice.org>  [4665cb40f0b0904fbfcc3c91031a49adb0f55e50]

only labels for first polar radius axis


2004-01-23  Ingrid Halama  <iha@openoffice.org>  [ab33c7210f5354101bd188863eda2bd5ba7337a8]

crash caused by shared pointer


2004-01-22  Ingrid Halama  <iha@openoffice.org>  [3712378d0d612547a916eeba3ad97a20789d81d6]

handle null


2004-01-22  Ingrid Halama  <iha@openoffice.org>  [845d754413d911a8b267dce40661707c406c30ae]

restructure of cartesian axis, integrate polar axis


2004-01-22  Björn Milcke  <bm@openoffice.org>  [5948b37d04b071438e5604ccc6148dfa397be800]

Edit Chart Data menu item is handled here (pops up the embedded Calc document)


2004-01-21  Björn Milcke  <bm@openoffice.org>  [bde38e70b1f6028b9867f2eb2c742eb7253de6e1]

API changed (drafts removed)


2004-01-20  Björn Milcke  <bm@openoffice.org>  [c4b67303a350a01e16fb6fec55d9e45871495e74]

no longer deliver API -- it is private now.  The public part is in offapi.


2004-01-19  Björn Milcke  <bm@openoffice.org>  [b6ef6e3294b7b04f977ebbab3c017b96f2e4f0f9]

check if source and destination are valid


2004-01-19  Ingrid Halama  <iha@openoffice.org>  [e61b69d3d8c755f899742d542090eaa8d63e3172]

iterate through existing axes


2004-01-19  Björn Milcke  <bm@openoffice.org>  [f36410026b32a4d10df88617eb7034aa4be3f8ce]

use straight lines for net chart


2004-01-19  Björn Milcke  <bm@openoffice.org>  [b1cf49d73a942e9874db724b8935c78a8bca3d24]

change default back to column


2004-01-19  Björn Milcke  <bm@openoffice.org>  [80795a7d480831dcc43da7143408e358791ac7d6]

deliver DevChartConfig to use from other apps.  Note: No libs are needed, the header contains everything necessary.


2004-01-19  Björn Milcke  <bm@openoffice.org>  [ccf687e16321ed5469d3950da19ae2ac60e2a598]

New behaviour of activation of the new chart


2004-01-17  Ingrid Halama  <iha@openoffice.org>  [851a5aa29622e644695e90aaf6922a3f7dbb73bc]

introduced polarcoordinate system + axis + grids + some cleanup


2004-01-12  Ingrid Halama  <iha@openoffice.org>  [dab4ee986193a46fcc7768df5f0946b82d6732c0]

changed matching: first category (index 0) matches with real number 1.0


2004-01-12  Björn Milcke  <bm@openoffice.org>  [c4ed99255434af302986ed7e8fdceb49292b2140]

model classes for net (radar) chart


2004-01-12  Björn Milcke  <bm@openoffice.org>  [b5d51cff7e8651606ebd14017a0eceda18cf2008]

template for net (radar) charts


2004-01-12  Björn Milcke  <bm@openoffice.org>  [7629c79c44015c16ef7c1e46a0835d1fca48cb65]

GPF if series for splines (both cubic, or b-splines) contain only one value


2004-01-08  Ingrid Halama  <iha@openoffice.org>  [973bc51dc051338ca066f72b248a2908e1119809]

paint axes above grids


2004-01-07  Rüdiger Timm  <rt@openoffice.org>  [8454e6f4360acde55cac1cc2fbba5a7b69faccbe]

INTEGRATION: CWS geordi2q12 (1.10.348); FILE MERGED 2004/01/07 12:27:04 hr 1.10.348.1: #111934#: merge CWS mnemonics -> SRC680


2004-01-07  Rüdiger Timm  <rt@openoffice.org>  [693b95840bc1ca3e16c26ce13026f056b7528974]

INTEGRATION: CWS geordi2q12 (1.7.340); FILE MERGED 2004/01/07 12:27:00 hr 1.7.340.1: #111934#: merge CWS mnemonics -> SRC680


2004-01-07  Rüdiger Timm  <rt@openoffice.org>  [77642f1d55c46e8470c05bb6572d049a001b399e]

INTEGRATION: CWS geordi2q12 (1.11.216); FILE MERGED 2004/01/07 12:26:57 hr 1.11.216.1: #111934#: merge CWS mnemonics -> SRC680


2004-01-06  Ingrid Halama  <iha@openoffice.org>  [09684c69c7e70d545f331d39e1bb6ecf3f344e88]

3D data labels


2004-01-06  Ingrid Halama  <iha@openoffice.org>  [3310f481e9c387da504542b22de5cd50ab8c54b8]

enable 3D data labels


2004-01-06  Ingrid Halama  <iha@openoffice.org>  [d0a5e5186dae27bfc4d48237dbc8d324d7f76aad]

added method transformSceneToScreenPosition


2004-01-06  Ingrid Halama  <iha@openoffice.org>  [2c0eff5004b35dbfa961505f52f562121b6c4fc9]

added method getDataPointLabelIfLabel


2004-01-06  Ingrid Halama  <iha@openoffice.org>  [cf5a2e04ef1f02415f2bc9c06e62263c3ef4d923]

workaround for buggy 3D pie segments


2004-01-06  Ingrid Halama  <iha@openoffice.org>  [30aed822be6ba1a75a06b5801889efcca0147019]

handle NULL


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [8e719a7b313ca644eeb171fcda4032575c10749d]

INTEGRATION: CWS vclcleanup02 (1.21.70); FILE MERGED 2003/12/04 16:56:57 mt 1.21.70.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [01addaf556aefda2d754b98ab663769f6ae2a35d]

INTEGRATION: CWS vclcleanup02 (1.38.210); FILE MERGED 2003/12/05 16:32:20 mt 1.38.210.2: RESYNC: (1.38-1.39); FILE MERGED 2003/12/04 16:56:57 mt 1.38.210.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [6ad9b56c9c604a43d57134ce8ac72105620774fc]

INTEGRATION: CWS vclcleanup02 (1.18.4); FILE MERGED 2003/12/11 09:16:25 mt 1.18.4.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [3aaf1dc21d8a4394245a548f28628cb0d83b9600]

INTEGRATION: CWS vclcleanup02 (1.36.56); FILE MERGED 2003/12/11 09:16:25 mt 1.36.56.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [5d08d9562b263bc2c0af96d88ad057aad6d823e2]

INTEGRATION: CWS vclcleanup02 (1.18.216); FILE MERGED 2003/12/11 09:16:24 mt 1.18.216.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [467f1f59916cf4ac20fad4d377364bf52718cc00]

INTEGRATION: CWS vclcleanup02 (1.11.170); FILE MERGED 2003/12/11 09:16:24 mt 1.11.170.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [bdf7ae9a85469d7c3f6fb3f3ca4b2d289b85a65c]

INTEGRATION: CWS vclcleanup02 (1.44.82); FILE MERGED 2003/12/11 09:16:23 mt 1.44.82.2: #i23061# VCL cleanup, removed headers, methods and types... 2003/12/04 16:56:56 mt 1.44.82.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [8a2640a9cd499b65d6acf24798ca7768d125a1e8]

INTEGRATION: CWS vclcleanup02 (1.21.86); FILE MERGED 2003/12/04 16:56:56 mt 1.21.86.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [ccc32bcc2a8fb89ce9180607b7277c46f9699ebb]

INTEGRATION: CWS vclcleanup02 (1.2.348); FILE MERGED 2003/12/04 16:56:56 mt 1.2.348.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [e4ca4bbf3e8fa8e60e3866f619c2a9f105ddc38f]

INTEGRATION: CWS vclcleanup02 (1.10.326); FILE MERGED 2003/12/11 09:16:22 mt 1.10.326.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [dc3b422ceac243282dc22464f2ddd3a370e8fed3]

INTEGRATION: CWS vclcleanup02 (1.13.218); FILE MERGED 2003/12/11 09:16:22 mt 1.13.218.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [74d53e9c45d8a6c2eefb7b14616863de9d44e097]

INTEGRATION: CWS vclcleanup02 (1.6.58); FILE MERGED 2003/12/11 09:16:21 mt 1.6.58.2: #i23061# VCL cleanup, removed headers, methods and types... 2003/12/04 16:56:55 mt 1.6.58.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [749297455d2410b3f713a30ae002b3dbcff653eb]

INTEGRATION: CWS vclcleanup02 (1.1.1.1.362); FILE MERGED 2003/12/11 09:16:20 mt 1.1.1.1.362.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [6721bed51fc14ef29b98938501365b4abd1e62d2]

INTEGRATION: CWS vclcleanup02 (1.2.324); FILE MERGED 2003/12/11 09:16:19 mt 1.2.324.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [d787ecc97f53193793c9acd9dac56c50da6fea0e]

INTEGRATION: CWS vclcleanup02 (1.10.80); FILE MERGED 2003/12/11 09:16:19 mt 1.10.80.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [da6149be87d89e733ef46f11e79fec8d218e448f]

INTEGRATION: CWS vclcleanup02 (1.7.318); FILE MERGED 2003/12/11 09:16:17 mt 1.7.318.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [95eee912eda7d84a042d4a4831d6a29bdc269754]

INTEGRATION: CWS vclcleanup02 (1.4.318); FILE MERGED 2003/12/04 16:56:54 mt 1.4.318.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [17b0255b1131eeaf14fa37d08ea7d715bc6e9bed]

INTEGRATION: CWS vclcleanup02 (1.17.154); FILE MERGED 2003/12/11 09:16:17 mt 1.17.154.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [7d22b1c693842c408addedc2f9eabe0c6d859dce]

INTEGRATION: CWS vclcleanup02 (1.34.44); FILE MERGED 2003/12/04 16:56:53 mt 1.34.44.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [97b3c6faf68a4a909bfc730fef29ed6e8bea671c]

INTEGRATION: CWS vclcleanup02 (1.28.218); FILE MERGED 2003/12/12 07:07:49 mt 1.28.218.1: #i23061# VCL cleanup...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [3bea50f253e39d8a85da7c3a0bd762810e3c5fe7]

INTEGRATION: CWS vclcleanup02 (1.11.194); FILE MERGED 2003/12/12 07:07:48 mt 1.11.194.1: #i23061# VCL cleanup...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [548bbd6553a5b2c8720954d02a87ee3c8f566240]

INTEGRATION: CWS vclcleanup02 (1.6.218); FILE MERGED 2003/12/11 09:16:15 mt 1.6.218.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [77f70477f519a95192863ec6fd2d82ce05dc5c0e]

INTEGRATION: CWS vclcleanup02 (1.36.42); FILE MERGED 2003/12/11 09:16:14 mt 1.36.42.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [6e597ff5657e0f08c633855c72e1b4495b7f9da6]

INTEGRATION: CWS vclcleanup02 (1.10.218); FILE MERGED 2003/12/04 16:56:53 mt 1.10.218.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [3b1f3a7d3eb47ad2312050029d5810dc1a8daca6]

INTEGRATION: CWS vclcleanup02 (1.19.218); FILE MERGED 2003/12/04 16:56:52 mt 1.19.218.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [93983f63b64625c1b374014355914004e803c786]

INTEGRATION: CWS vclcleanup02 (1.42.4); FILE MERGED 2003/12/11 09:16:12 mt 1.42.4.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [7618ff9ce5ad0686c3e0a37812b8d05dcaf64806]

INTEGRATION: CWS vclcleanup02 (1.9.58); FILE MERGED 2003/12/11 09:16:11 mt 1.9.58.2: #i23061# VCL cleanup, removed headers, methods and types... 2003/12/04 16:56:52 mt 1.9.58.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [5d21108475a24d5d99f092995424c4bd04591f11]

INTEGRATION: CWS vclcleanup02 (1.32.82); FILE MERGED 2003/12/11 09:16:10 mt 1.32.82.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [da3487fb5bb0e7bf4c62204aa4db21d08b31e7df]

INTEGRATION: CWS vclcleanup02 (1.50.82); FILE MERGED 2003/12/05 16:30:35 mt 1.50.82.2: RESYNC: (1.50-1.52); FILE MERGED 2003/12/04 16:56:51 mt 1.50.82.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [fa584bf851cc6369043185cf327bf04bfaf2b1b7]

INTEGRATION: CWS vclcleanup02 (1.4.318); FILE MERGED 2003/12/11 09:16:09 mt 1.4.318.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [25a6bf0800cc00a608ad1eb2d1398b605d855827]

INTEGRATION: CWS vclcleanup02 (1.39.54); FILE MERGED 2003/12/05 16:29:51 mt 1.39.54.2: RESYNC: (1.39-1.40); FILE MERGED 2003/12/04 16:56:50 mt 1.39.54.1: #i23061# Removed/Changed old StarView stuff


2004-01-06  Vladimir Glazounov  <vg@openoffice.org>  [ab4a6b6eda6fec917cb14dd48d550dc8af34584a]

INTEGRATION: CWS vclcleanup02 (1.20.4); FILE MERGED 2003/12/11 09:16:08 mt 1.20.4.1: #i23061# VCL cleanup, removed headers, methods and types...


2004-01-05  Oliver Bolte  <obo@openoffice.org>  [f75cc1a2cec3571da46b5e9652058fc804228ca7]

INTEGRATION: CWS qadev15 (1.1.2); FILE ADDED 2003/12/16 15:04:08 sw 1.1.2.1: #114449#


2004-01-05  Oliver Bolte  <obo@openoffice.org>  [31d53ffce4738b0afc2342164273efab508f5f66]

INTEGRATION: CWS qadev15 (1.1.2); FILE ADDED 2003/12/16 15:05:41 sw 1.1.2.1: #114449#


2004-01-05  Oliver Bolte  <obo@openoffice.org>  [f76c82f690e602475fc8e65e2bd54fc67535d4fe]

INTEGRATION: CWS qadev15 (1.1.2); FILE ADDED 2003/12/16 15:04:58 sw 1.1.2.1: #114449#


2004-01-05  Oliver Bolte  <obo@openoffice.org>  [dfbeece6e8fc381cde8e0c212a33b92a5b92406d]

INTEGRATION: CWS qadev15 (1.1.2); FILE ADDED 2003/12/16 15:03:26 sw 1.1.2.1: #114449#


2004-01-05  Oliver Bolte  <obo@openoffice.org>  [bafba438e20c3b45589255a66a9dbd8f63efe60d]

INTEGRATION: CWS qadev15 (1.1.2); FILE ADDED 2003/12/16 15:01:51 sw 1.1.2.1: #114449#


2004-01-05  Oliver Bolte  <obo@openoffice.org>  [cb6047b0fd14c0b3c3ce8de5e3c1f7dec10610d8]

INTEGRATION: CWS qadev15 (1.1.2); FILE ADDED 2003/12/16 15:02:20 sw 1.1.2.1: #114449#


2004-01-05  Oliver Bolte  <obo@openoffice.org>  [89bc17709ea221ebcae419808f0d97bacb37850a]

INTEGRATION: CWS qadev15 (1.1.2); FILE ADDED 2003/12/16 15:01:21 sw 1.1.2.1: #114449#


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [53111c9b87594ef587f53c4329cb1322aef80973]

no space in the middle of a single ring chart


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [1c3dddfa9b5a3c0e911a1bd27909bb044c296a57]

added DataPoint labels


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [dabb4f46a45a3c0203ad6a6277766db1e7b4d2b0]

additional LABEL_ALIGN_ments used e.g. for Data Labels in PieChart


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [0653f850d0de1cc3346ca9801cd6b9e1b831e781]

changed matching: first category index matches to real number 1.0 (not 0.0 anymore)


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [692d675ac55bce7ae3798c044f3ac4afa021a348]

corrected method createArea3D


2004-01-05  Rüdiger Timm  <rt@openoffice.org>  [ffe8316fc75e014642a0d35798c3d933de24ccb4]

INTEGRATION: CWS os24 (1.2.332); FILE MERGED 2003/12/01 11:16:19 os 1.2.332.1: #i21659# preselect Name edit field


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [98bcfc59c572f7666533669bc06e4c61330e792a]

changed matching: first category index matches to real number 1.0 (not 0.0 anymore)


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [353cbcb25662c88719614eca0243895d1beae23a]

cleanup: removed unused includes


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [3f681d4283c8853565a50e7ee7a641b047ac7ca7]

cleanup: removed unused includes, removed warnings


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [fbbb400f351d9810c06ba81069a49b8d71bc0d91]

cleanup: removed unused includes, removed warnings


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [8fb66516d388040521df92d7eb6a6a0efdd37e76]

vcl cleanup: exchanged include vcl/gen.hxx -> tools/gen.hxx


2004-01-05  Ingrid Halama  <iha@openoffice.org>  [3bf69614cadd769de952ff15f1f749f1c078f538]

changed matching: first category index matches to real number 1.0 (not 0.0 anymore)


2003-12-19  Björn Milcke  <bm@openoffice.org>  [609caa2c9d58e9472c05ec24cb1df5b508095992]

private methods for statistics properties (mean-value line works)


2003-12-19  Björn Milcke  <bm@openoffice.org>  [b2651e71ab459e2c81705c127ef3c6506c782f4f]

private methods for statistics properties


2003-12-19  Björn Milcke  <bm@openoffice.org>  [82afe26029318f0904333769289423c1b39e7828]

getRepresentation: do not show 1*...


2003-12-19  Björn Milcke  <bm@openoffice.org>  [f6f0b275b6597842f9016b325fa19ba25063844f]

some local functions of StatisticsItemConverter -> RegressionCurveHelper


2003-12-19  Björn Milcke  <bm@openoffice.org>  [ae3620bc78b6ccda55bfedfbe47ac68dae3cb667]

some local functions -> RegressionCurveHelper


2003-12-19  Björn Milcke  <bm@openoffice.org>  [265815ecd96e2f36dc40406785f8b869fa70a460]

+Gradient/Hatch at series/data point +mean-value line


2003-12-18  Björn Milcke  <bm@openoffice.org>  [1ee6c82216a555543b6e76fc2753c6f83519fe8e]

map correct properties to the box-symbol in 3d line charts


2003-12-18  Björn Milcke  <bm@openoffice.org>  [7f4776f2d2dd71ab27db99be810a051c76129d94]

moved old api from model to controller


2003-12-18  Björn Milcke  <bm@openoffice.org>  [56632f872cdc5f21c4672295291875f10e16776a]

moved from model/oldapi


2003-12-18  Ingrid Halama  <iha@openoffice.org>  [4b04dd52237661fe37320394afeedc8710ec8348]

added ItemConverter for all-titles


2003-12-18  Ingrid Halama  <iha@openoffice.org>  [021a1f7b1d68f98569d7035a9120d7f39102f45f]

added new class AllTitleItemConverter


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [af851962536605385a103ee766ebc2f5812cfadc]

INTEGRATION: CWS geordi2q11 (1.5.366); FILE MERGED 2003/12/15 16:47:45 hr 1.5.366.1: #111934#: join CWS calc20


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [5c1aab19862c3c4b3622f0e69708677ddec2696a]

INTEGRATION: CWS geordi2q11 (1.5.336); FILE MERGED 2003/12/16 15:13:48 hr 1.5.336.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [98d895fe567fd5a04414d27036e0586eaf716f1a]

INTEGRATION: CWS geordi2q11 (1.21.30); FILE MERGED 2003/12/15 16:47:45 hr 1.21.30.1: #111934#: join CWS calc20


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [b28ad42c4ebdca2b40361f747d4e19cfaa423580]

INTEGRATION: CWS geordi2q11 (1.13.66); FILE MERGED 2003/12/16 15:13:47 hr 1.13.66.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [9cce649f6a31bd0468f9d34196a546cde0582caf]

INTEGRATION: CWS geordi2q11 (1.18.234); FILE MERGED 2003/12/16 15:13:46 hr 1.18.234.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [da0732691252893e19ec77e005103d6eb8a3f9a3]

INTEGRATION: CWS geordi2q11 (1.31.158); FILE MERGED 2003/12/16 15:13:45 hr 1.31.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [fa79c25e4b512262ebcde39f82322a874eedd8f8]

INTEGRATION: CWS geordi2q11 (1.58.66); FILE MERGED 2003/12/16 15:13:44 hr 1.58.66.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [d57be9f9050a919eaedc62704d54263ffecb50ec]

INTEGRATION: CWS geordi2q11 (1.24.158); FILE MERGED 2003/12/16 15:13:44 hr 1.24.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [aed916873fc6cad48cf38d0f1a2dbe3a9f9270fb]

INTEGRATION: CWS geordi2q11 (1.21.66); FILE MERGED 2003/12/16 15:13:43 hr 1.21.66.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [38255d1726cedc1d8f12d71e159edb42d1f5921e]

INTEGRATION: CWS geordi2q11 (1.35.158); FILE MERGED 2003/12/16 15:13:43 hr 1.35.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [d5df53271dd0e7b0ba009d929f6e77360ac73e4d]

INTEGRATION: CWS geordi2q11 (1.34.158); FILE MERGED 2003/12/16 15:13:42 hr 1.34.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [7c66cae32ce3f225da08d00056ea2b0e985d72f3]

INTEGRATION: CWS geordi2q11 (1.23.66); FILE MERGED 2003/12/16 15:13:42 hr 1.23.66.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [c564c3aadf78b7d2ea8ee3424458322d38fc82fe]

INTEGRATION: CWS geordi2q11 (1.16.66); FILE MERGED 2003/12/16 15:13:41 hr 1.16.66.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [1507e24a4074aab427f93c614a3d738211f5e972]

INTEGRATION: CWS geordi2q11 (1.18.158); FILE MERGED 2003/12/16 15:13:41 hr 1.18.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [af2b2df4ac1d7a979022165d96e64b0215272405]

INTEGRATION: CWS geordi2q11 (1.77.96); FILE MERGED 2003/12/16 15:13:40 hr 1.77.96.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [976ce1fdeb722b650dd6e81b8fd9eac0325eca0d]

INTEGRATION: CWS geordi2q11 (1.77.56); FILE MERGED 2003/12/16 15:13:34 hr 1.77.56.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [6643740eb53322af36d0c2f379987230f6d15623]

INTEGRATION: CWS geordi2q11 (1.41.158); FILE MERGED 2003/12/16 15:13:33 hr 1.41.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [db62804e630b5438164554b0d8cb8c0c8dca47f3]

INTEGRATION: CWS geordi2q11 (1.20.66); FILE MERGED 2003/12/16 15:13:33 hr 1.20.66.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [c603138a2dbfc6a404206d3904f6e1a842aac554]

INTEGRATION: CWS geordi2q11 (1.47.136); FILE MERGED 2003/12/16 15:13:32 hr 1.47.136.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [0facefe28ed75ef4d2e57f1b63b62581d25565fc]

INTEGRATION: CWS geordi2q11 (1.57.138); FILE MERGED 2003/12/16 15:13:32 hr 1.57.138.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [ca09c52e9dbf454df12700e99d22d15d14bfdf2c]

INTEGRATION: CWS geordi2q11 (1.31.158); FILE MERGED 2003/12/16 15:13:32 hr 1.31.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [edf24bd3c0320d01fdec7dd7d088481f5b54635a]

INTEGRATION: CWS geordi2q11 (1.29.66); FILE MERGED 2003/12/16 15:13:31 hr 1.29.66.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [ff56fd2fe775143a0d89a9d4b481c86455ba280c]

INTEGRATION: CWS geordi2q11 (1.66.158); FILE MERGED 2003/12/16 15:13:31 hr 1.66.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [ccbc9197db335dd1df69a823dc2b452d51957249]

INTEGRATION: CWS geordi2q11 (1.27.158); FILE MERGED 2003/12/16 15:13:29 hr 1.27.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [0d0ea493763395b4a4e74d226f472e6c6981091e]

INTEGRATION: CWS geordi2q11 (1.47.156); FILE MERGED 2003/12/16 15:13:28 hr 1.47.156.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [c06628f82be9dd7cc0092e33998e52b850c1e72c]

INTEGRATION: CWS geordi2q11 (1.50.158); FILE MERGED 2003/12/16 15:13:28 hr 1.50.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [6d144b8eee104e157c634725319d373cb5c31a70]

INTEGRATION: CWS geordi2q11 (1.38.158); FILE MERGED 2003/12/16 15:13:27 hr 1.38.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [337f67e7bc48ef6c052d5a41e1fe1e1a9060bb9d]

INTEGRATION: CWS geordi2q11 (1.37.158); FILE MERGED 2003/12/16 15:13:27 hr 1.37.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [5d47c75f36cadc8fb303ac06aa657dd7cec984f9]

INTEGRATION: CWS geordi2q11 (1.25.158); FILE MERGED 2003/12/16 15:13:26 hr 1.25.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [01c04f7ba4e968dd390e158ce65707efd8fb37ab]

INTEGRATION: CWS geordi2q11 (1.38.158); FILE MERGED 2003/12/16 15:13:25 hr 1.38.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [58c58056a6e40ff08d99d3c7286b54424287fd01]

INTEGRATION: CWS geordi2q11 (1.49.158); FILE MERGED 2003/12/16 15:13:25 hr 1.49.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [317031b5f82b66973c5b0b57238251f527523d6a]

INTEGRATION: CWS geordi2q11 (1.4.342); FILE MERGED 2003/12/16 15:13:24 hr 1.4.342.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [1f6c8bf8910c7008664a29857b78745af5632f72]

INTEGRATION: CWS geordi2q11 (1.11.210); FILE MERGED 2003/12/16 15:13:24 hr 1.11.210.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [70dc7f49a55a0be0075fbf10776e7fd944e9f1f6]

INTEGRATION: CWS geordi2q11 (1.20.158); FILE MERGED 2003/12/16 15:13:23 hr 1.20.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [9aff3810554e238dfdae289365edc9b41b9d5851]

INTEGRATION: CWS geordi2q11 (1.4.362); FILE MERGED 2003/12/16 15:13:23 hr 1.4.362.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [c42db87a8e24071a13bfa78b7e953be453993deb]

INTEGRATION: CWS geordi2q11 (1.45.20); FILE MERGED 2003/12/16 15:13:23 hr 1.45.20.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [fb8bbc76af0eca1db0357e83e0e491f0e277c47c]

INTEGRATION: CWS geordi2q11 (1.37.158); FILE MERGED 2003/12/16 15:13:22 hr 1.37.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [79bb1a85eca458fc4554e631492f7a595c06f734]

INTEGRATION: CWS geordi2q11 (1.8.20); FILE MERGED 2003/12/16 15:13:22 hr 1.8.20.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [6efe217a1ccfa0e0485ce4c83bb77e772867b233]

INTEGRATION: CWS geordi2q11 (1.37.158); FILE MERGED 2003/12/16 15:13:21 hr 1.37.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [9667414a95c2f64136cb7d32343352f541acf312]

INTEGRATION: CWS geordi2q11 (1.25.158); FILE MERGED 2003/12/16 15:13:20 hr 1.25.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [9e5df7f7a3c8670c0ef8c0362ad2df608d9aa7f2]

INTEGRATION: CWS geordi2q11 (1.29.158); FILE MERGED 2003/12/16 15:13:20 hr 1.29.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [0e6ec62927a6368071361987c9c25a9c57145624]

INTEGRATION: CWS geordi2q11 (1.26.158); FILE MERGED 2003/12/16 15:13:19 hr 1.26.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [ae525be7261a29902d12951e1cd0407a31eda805]

INTEGRATION: CWS geordi2q11 (1.28.158); FILE MERGED 2003/12/16 15:13:19 hr 1.28.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [bc0b264e047da20d7f090ee0717598f550a9fa63]

INTEGRATION: CWS geordi2q11 (1.23.158); FILE MERGED 2003/12/16 15:13:18 hr 1.23.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [2546ebc606eb2842e50b317509847bbaec003773]

INTEGRATION: CWS geordi2q11 (1.41.158); FILE MERGED 2003/12/16 15:13:17 hr 1.41.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [da1515360b30e2d9f35bd4c114eb904f48481b1d]

INTEGRATION: CWS geordi2q11 (1.28.158); FILE MERGED 2003/12/16 15:13:17 hr 1.28.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [465ac693392b46173ab1503996720f4b8bcb0c30]

INTEGRATION: CWS geordi2q11 (1.58.158); FILE MERGED 2003/12/16 15:13:16 hr 1.58.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [58a82f253be8c62e07dbcce38ca1ab2b7e9cd3c4]

INTEGRATION: CWS geordi2q11 (1.19.158); FILE MERGED 2003/12/16 15:13:15 hr 1.19.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [e07f2efaeda8d9de64e4febee88956dd142796a8]

INTEGRATION: CWS geordi2q11 (1.24.158); FILE MERGED 2003/12/16 15:13:13 hr 1.24.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [e45b52ba1c73e678eecea9d04d45674c99caec54]

INTEGRATION: CWS geordi2q11 (1.38.96); FILE MERGED 2003/12/16 15:13:12 hr 1.38.96.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [f8c3885c377802fa9eaf0b58897a6cf3d50f27c3]

INTEGRATION: CWS geordi2q11 (1.5.342); FILE MERGED 2003/12/16 15:13:11 hr 1.5.342.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [3f348144fc4aa7d2d74fe3b902f61c2f341e9c4c]

INTEGRATION: CWS geordi2q11 (1.36.158); FILE MERGED 2003/12/16 15:13:11 hr 1.36.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [523262e853737084d504232b432a670611047ce9]

INTEGRATION: CWS geordi2q11 (1.30.158); FILE MERGED 2003/12/16 15:13:10 hr 1.30.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [c89380e84aa7010d1ec54c491b1011cda4668b17]

INTEGRATION: CWS geordi2q11 (1.50.158); FILE MERGED 2003/12/16 15:13:09 hr 1.50.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [c526f10671c36a335f86dd4ac4cf109326bd9221]

INTEGRATION: CWS geordi2q11 (1.29.158); FILE MERGED 2003/12/16 15:13:09 hr 1.29.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [056110f2f61e8c851c9fda1335faf3f8ae2081a7]

INTEGRATION: CWS geordi2q11 (1.7.20); FILE MERGED 2003/12/16 15:13:08 hr 1.7.20.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [bc722c8ddc8e9d378874d0f6da2b88374596e918]

INTEGRATION: CWS geordi2q11 (1.32.158); FILE MERGED 2003/12/16 15:13:08 hr 1.32.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [acf4a3b549e9698a6b414a2e32e82a9377b7e373]

INTEGRATION: CWS geordi2q11 (1.31.158); FILE MERGED 2003/12/16 15:13:07 hr 1.31.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [600af870dcd7e452320eb51cf0c91b716edde21b]

INTEGRATION: CWS geordi2q11 (1.29.158); FILE MERGED 2003/12/16 15:13:07 hr 1.29.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [6f7fea07f4d4c63ed8947a4f80aa4711a00d52e9]

INTEGRATION: CWS geordi2q11 (1.4.366); FILE MERGED 2003/12/16 15:13:06 hr 1.4.366.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [cb55fad7f26b46a87eab12dc40840d345cf7459f]

INTEGRATION: CWS geordi2q11 (1.23.20); FILE MERGED 2003/12/16 15:13:05 hr 1.23.20.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [a6fbfbe54ccbe2813b21a2fab26dbf30ddbeb822]

INTEGRATION: CWS geordi2q11 (1.8.20); FILE MERGED 2003/12/15 16:47:44 hr 1.8.20.1: #111934#: join CWS calc20


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [d885c8ddf9ea6c4227054cc4e1158916972b52e1]

INTEGRATION: CWS geordi2q11 (1.8.58); FILE MERGED 2003/12/15 16:47:43 hr 1.8.58.1: #111934#: join CWS calc20


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [b004ec51b6299a328a6d04b25deb6c5e735bc1f2]

INTEGRATION: CWS geordi2q11 (1.8.96); FILE MERGED 2003/12/16 15:13:04 hr 1.8.96.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [0448e5fecef2a2f0785a4cad64b765c9eaaebdd7]

INTEGRATION: CWS geordi2q11 (1.14.74); FILE MERGED 2003/12/16 15:13:04 hr 1.14.74.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [0d08a946f070e2aed7c2b8182f5fa3b089882667]

INTEGRATION: CWS geordi2q11 (1.41.158); FILE MERGED 2003/12/16 15:13:03 hr 1.41.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [a01016a5ef02d4548bbad2693698b175cfa02705]

INTEGRATION: CWS geordi2q11 (1.22.188); FILE MERGED 2003/12/15 16:47:42 hr 1.22.188.1: #111934#: join CWS calc20


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [d0a907c4140653ce2b040917c8747a3e9f4f41fe]

INTEGRATION: CWS geordi2q11 (1.7.96); FILE MERGED 2003/12/16 15:13:02 hr 1.7.96.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [688986b8dfa9ca641321bbf0ff389e229c89672d]

INTEGRATION: CWS geordi2q11 (1.23.20); FILE MERGED 2003/12/15 16:47:42 hr 1.23.20.1: #111934#: join CWS calc20


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [bacec5bc51b2e15a46a42bede2995734f4edb04c]

INTEGRATION: CWS geordi2q11 (1.18.94); FILE MERGED 2003/12/16 15:12:59 hr 1.18.94.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [b81c326858f169d0241bbbd640cdea548ff0c8db]

INTEGRATION: CWS geordi2q11 (1.17.158); FILE MERGED 2003/12/16 15:12:58 hr 1.17.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [87095624884ea911ae420ae7a00e7c9c610c5b4f]

INTEGRATION: CWS geordi2q11 (1.27.158); FILE MERGED 2003/12/16 15:12:57 hr 1.27.158.1: #111934#: join CWS ooo111fix1


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [73de3a1c64da97f9f90a344ec83af6573bc1cece]

line properties for page background


2003-12-17  Björn Milcke  <bm@openoffice.org>  [3ccffb038559b721568eb96ceec937ee0e32c5bd]

values for testing regression


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [c9bc96f1ce99203637b05c214c86e7658bfa0a65]

INTEGRATION: CWS geordi2q11 (1.20.38); FILE MERGED 2003/12/16 15:18:32 hr 1.20.38.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [6fa93ed4424f949d25f05088bf4d01815582d2a9]

INTEGRATION: CWS geordi2q11 (1.2.46); FILE MERGED 2003/12/16 15:18:31 hr 1.2.46.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [d9c4d45a3424136d8b541dbb017cbd35ec03e72a]

INTEGRATION: CWS geordi2q11 (1.23.38); FILE MERGED 2003/12/16 15:18:30 hr 1.23.38.1: #111934#: join CWS ooo111fix1


2003-12-17  Vladimir Glazounov  <vg@openoffice.org>  [de18036feec7d72da64b670ad8e2a27255ead83f]

INTEGRATION: CWS geordi2q11 (1.60.34); FILE MERGED 2003/12/16 15:18:27 hr 1.60.34.1: #111934#: join CWS ooo111fix1


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [94c498ae0784527b11e04bf379bda1d43611b24d]

integrated Datalabel; removed false points in line chart


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [80fd0e88341c2fd44acc3cdc7dd5244d1ee7f08c]

no labels for 3D


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [2ca8f3c87a667a544570e1ca2ef0a1ea39962488]

set linestyle to solid if noone;added member m_bHasLines


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [71efd189e3631b597c1d63b08b1b8c7baf2385e8]

added member m_bHasLines


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [e915ac72b6e379b02d5a7b4180ef435207467aa7]

compiler error on windows ( aXValues[i] = ++i )


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [99f24e099bf16d3570b236918d1f61841f4a4934]

rename ExponentialRegressionCurve->..Calculator + LogarithmicRegressionCurve -> ..Calculator


2003-12-17  Björn Milcke  <bm@openoffice.org>  [7cdf8a49f51094fd1833c855219a31b02eb90a8f]

regression curves reimplemented


2003-12-17  Björn Milcke  <bm@openoffice.org>  [dabd3b18b1a35cde9018d5aef2e9cf913f39685d]

model object for regression curves, that does not do calculations, but it may return a calculator object


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [5bea372acd78204e789b3ce140c9e0f12702bc9c]

added parameter LabelAlignment for data point label creation


2003-12-17  Björn Milcke  <bm@openoffice.org>  [992b2970b2a3db4a9a202c172143a0861c2e3b60]

COMMENT


2003-12-17  Björn Milcke  <bm@openoffice.org>  [4dc75a78cf25494639a16f8d367cc60412635b0a]

COMMENT


2003-12-17  Björn Milcke  <bm@openoffice.org>  [9283bea6a79f4dbb560c093a7c5151a83ed27d76]

wrong header-barrier-name


2003-12-17  Björn Milcke  <bm@openoffice.org>  [cd54dfc89208646b9637e32ed4b76424c08e1fdb]

error


2003-12-17  Björn Milcke  <bm@openoffice.org>  [196f82a18247203620b6c0fc17ba087e4ec8d845]

+DataSequenceToDoubleSequence


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [928096d717b8ed3ae1b328658e7d4354dd953958]

moved createion of LabelsGroupShape tp base class


2003-12-17  Björn Milcke  <bm@openoffice.org>  [39417ac1960e1555cc47b31b0592f335c8a3da8a]

COMMENT


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [0e889a9f7d550c747202dd12c8eca9b94ee1779c]

pointer to reference


2003-12-17  Björn Milcke  <bm@openoffice.org>  [0320c997e6cd204fe5af5835b94dfb4d9c5cf9cf]

COMMENT


2003-12-17  Björn Milcke  <bm@openoffice.org>  [8dbe446e5f46d6a0e1724a8fcb3b3d7205b787a1]

COMMENT


2003-12-17  Björn Milcke  <bm@openoffice.org>  [20816d54af715b5cea6d18ce06179bb2e5e01c6f]

COMMENT


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [f2b43205ae246f57528448bba74685e093e155e0]

regression curves and error bars only for 2D


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [182a9fd05cbbd47b5eb0ebe96b55be15692adc97]

added regression curves


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [10e760b519317996fb3785a72f52dd9c70c74a70]

added m_xSeriesTarget, m_xErrorBarTarget and m_xTextTarget for error bars above area; prepare labels above area


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [34f181275fe0a9537a3b53befda5d7d51b8c555e]

error bars above area


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [1a6c2c1dfd8ad84ea8da437d9c796073384c2e88]

added error bars


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [ab99e942f3531515a5208d213d7495694936fc43]

added method createErrorBar_Y; check index before access


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [e2b51d11a12162ad1d42e3d67ed180087ba09c91]

added method createErrorBar_Y


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [f6da235f548ccc9b690ce71d0274429f9ef16755]

return NAN if wrong index


2003-12-17  Ingrid Halama  <iha@openoffice.org>  [0091d10fd4755bb51921718c5b2570e26ba41bfc]

added method getAxisType


2003-12-16  Björn Milcke  <bm@openoffice.org>  [e1ab89fcc9e414a788263e516a50e84c64ccdcc2]

set default attributes for regression lines/mean value line


2003-12-16  Björn Milcke  <bm@openoffice.org>  [9b9f9f3abc62661c82a30eb25a2d3a3dd4bc6cc7]

helper for filtering invalid tuples in the sequence for regression calculation


2003-12-16  Eike Rathke  <er@openoffice.org>  [0518b991284a153daa017c92fd2c21eb39a40ba6]

#i1967# temporary typedefs to ease resyncs of new code into cws_src680_rowlimit, to be removed upon integration of that CWS


2003-12-16  Vladimir Glazounov  <vg@openoffice.org>  [a837717770bd69e4d33ac6606a15180f796100eb]

INTEGRATION: CWS aw007 (1.30.10); FILE MERGED 2003/12/10 15:11:38 aw 1.30.10.1: #114135# Added necessary changes in SC together with NN to make all possible painting processes using the DrawingLayer use a SdrView


2003-12-16  Vladimir Glazounov  <vg@openoffice.org>  [6fe46da73f1337fa3fd0dc7df52f956a441b90f1]

INTEGRATION: CWS aw007 (1.22.170); FILE MERGED 2003/12/10 15:11:37 aw 1.22.170.1: #114135# Added necessary changes in SC together with NN to make all possible painting processes using the DrawingLayer use a SdrView


2003-12-16  Vladimir Glazounov  <vg@openoffice.org>  [ccfb6fabb871eac0c40c4fc50065bbcfcf25de30]

INTEGRATION: CWS aw007 (1.9.10); FILE MERGED 2003/12/10 15:11:37 aw 1.9.10.1: #114135# Added necessary changes in SC together with NN to make all possible painting processes using the DrawingLayer use a SdrView


2003-12-16  Vladimir Glazounov  <vg@openoffice.org>  [b76c8a23e0a3faaebf23c36ce582424702fbd10d]

INTEGRATION: CWS aw007 (1.18.214); FILE MERGED 2003/12/10 15:11:36 aw 1.18.214.1: #114135# Added necessary changes in SC together with NN to make all possible painting processes using the DrawingLayer use a SdrView


2003-12-16  Vladimir Glazounov  <vg@openoffice.org>  [f0695f34a12cb6a171bdc0b166b5b80f3f075995]

INTEGRATION: CWS aw007 (1.37.52); FILE MERGED 2003/12/10 15:11:35 aw 1.37.52.1: #114135# Added necessary changes in SC together with NN to make all possible painting processes using the DrawingLayer use a SdrView


2003-12-16  Vladimir Glazounov  <vg@openoffice.org>  [d1c3ace664a3a0040be29d898eb88e11ab161a53]

INTEGRATION: CWS aw007 (1.8.10); FILE MERGED 2003/12/10 15:11:35 aw 1.8.10.1: #114135# Added necessary changes in SC together with NN to make all possible painting processes using the DrawingLayer use a SdrView


2003-12-16  Vladimir Glazounov  <vg@openoffice.org>  [fba989631a082c14a65f7f3d9621ca1b50144c8d]

INTEGRATION: CWS aw007 (1.26.68); FILE MERGED 2003/12/10 15:11:34 aw 1.26.68.1: #114135# Added necessary changes in SC together with NN to make all possible painting processes using the DrawingLayer use a SdrView


2003-12-16  Ingrid Halama  <iha@openoffice.org>  [1c1efae5c3b919bf0c0477c9e41c744f8b9e85d5]

handle NULL


2003-12-16  Ingrid Halama  <iha@openoffice.org>  [8bcf9dcbe6c5ee00c0ac18e3f5b7b927f1e04043]

don't assert exception for area chart


2003-12-16  Ingrid Halama  <iha@openoffice.org>  [ed5efcc597afd159a4959dff564aeab3c2ea58b2]

handle NULL


2003-12-16  Ingrid Halama  <iha@openoffice.org>  [8ad16f82d478e21de420d7bb41d9a850a41e3c71]

changed comment


2003-12-16  Ingrid Halama  <iha@openoffice.org>  [6b9f021d662a1ea7f21352e8179bff7e0df49a0f]

correct handling of invalid regression curve points + more points per curve


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [f6e89d29c693515500e59485209e8d1814cd9c0e]

integrated Regression Lines


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [9a444f8e61dc5ecf7661f34bca626e87ab0c4d06]

renamed OBJECTTYPE_DATA_FUNCTION -> OBJECTTYPE_DATA_CURVE


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [dd830f6735df20278e8618ff304971f192da2edc]

don't do scaling for NAN or INF


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [506a953358ee99a949f7f52beffe6bba0c11aa15]

moved Clipping from charttypes to main


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [ffeb7e04b10113f868aed59f270df82779df09ca]

moved method getTransformedClip(Double)Rect from AreaChart AreaPositionHelper


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [c0e5be9ef68d1f3d5bed50a200c284bb2a19093c]

added RegressionCurves; moved method getTransformedClip(Double)Rect to PlottingPositionHelper; moved member m_bCategoryXAxis and MinimumAndMaximumSupplier method specialization to VSeriesPlotter


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [ef30b79334b16cd6c8e3ad8902b71e0ce1c64886]

moved member m_bCategoryXAxis and MinimumAndMaximumSupplier method specialization to VSeriesPlotter


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [6a0a27ccc83cb06045f289a02ae3f894277390e7]

for RegressionLine integration added methods createRegressionCurvesShapes; + member m_bCategoryXAxis -> more global MinimumAndMaximumSupplier


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [9e235869fd286eea13a17bc7611103d699c651df]

for RegressionLine integration added methods createRegressionCurvesShapes; and member bCategoryXAxis


2003-12-15  Ingrid Halama  <iha@openoffice.org>  [b4b6d670a2fff1c818dad77f14603bca03db98fc]

for RegressionLine integration added methods getDataCurveCID, setCategoryXAxis(), getModel()


2003-12-15  Björn Milcke  <bm@openoffice.org>  [e6beaeec92ca66d0e0a68a73d6a68952f83cb335]

error-indicator is both per default now.  Handle error plus/minus as ambiguous values in InsertStat dlg


2003-12-15  Björn Milcke  <bm@openoffice.org>  [a3bee3a278c15f9a9ce021b17eac26f0c106cfac]

no border per default


2003-12-15  Björn Milcke  <bm@openoffice.org>  [09b9677e1fb70ea2a6707e3977f96cdbc62b097f]

support scatter chart without lines


2003-12-15  Björn Milcke  <bm@openoffice.org>  [987dd583608c38ff4b15261f41ab34be3262f0a6]

map LineStyles of ErrorBars to shapes


2003-12-15  Björn Milcke  <bm@openoffice.org>  [c3a046f9fe2448bc2dfe5efd6461c034f2a84c71]

cleanup


2003-12-15  Björn Milcke  <bm@openoffice.org>  [9626eb7f2a8d03703c921f3e488274657019c795]

error bar creation moved from PlotterBase to VSeriesPlotter


2003-12-15  Björn Milcke  <bm@openoffice.org>  [0b137c2cf5fac22950df32e250b64d6181336417]

clipping of error bars


2003-12-15  Björn Milcke  <bm@openoffice.org>  [30437c92ee5f04deff8c3ea39748afd43749207e]

superfluous parameter in createErrorBar method


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [9a710b42385f149ec085d887efa4e8f916292c62]

use another group shape for error bars for slection


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [114739decb889ba2b2b2a8b7f14d39d8a1a87323]

added method getErrorBarsCID and member m_xErrorBarsShape


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [697bbabf7e3828c8b70a92cc33696b0f38425753]

added method getErrorBarsCID


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [04270dac457ce4bdfe9e9b478588a9f4b86b75d6]

added method getErrorBarsGroupShape


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [fdedfbadabd2ca79f5b630db85541e150c4a6c8a]

added ItemConverter for error bars


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [0f8c12feac1d34fe7e29d77e78ccdc42c1d18194]

title and legend shapes in front of diagram


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [62d2d18e615c66b177edac6a03da67afdb27d100]

integrated axis title


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [e1bd4ddb008580295203e08c7d63891e7bc59d15]

removed unused variable


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [8dc7ec4f00154fa04ab267fe9e773cc58362cdcb]

do not add inner border space


2003-12-12  Ingrid Halama  <iha@openoffice.org>  [8866dde177fb17a3375c9fe9326beb10a6c7baa1]

additional rotation parameter


2003-12-12  Björn Milcke  <bm@openoffice.org>  [33c67a3e361134a6df69fca0b31ad7839e00f680]

do logic scaling (e.g. logarithmic) after error-bar calculation


2003-12-12  Björn Milcke  <bm@openoffice.org>  [4856272b2a7e3fdda74f058f09af0610f4f0b10f]

error bars implemented


2003-12-12  Björn Milcke  <bm@openoffice.org>  [2c77caa2faa3adf788cfc10e091c0a0495d9872e]

warning removed (implicit double -> int)


2003-12-12  Björn Milcke  <bm@openoffice.org>  [3f3055b3e3c2375626a3fdc92695e06d3ccb6976]

some statistics functions


2003-12-12  Björn Milcke  <bm@openoffice.org>  [4a4f5c21762fb2b47fe1a816e511a53eccb8feba]

+getAll(X|Y)


2003-12-11  Björn Milcke  <bm@openoffice.org>  [28da1d91f53e42d2dc620db587d17fff541c5094]

First test of error bar properties


2003-12-11  Björn Milcke  <bm@openoffice.org>  [f91171af177f9bf7fe6d6e5259c04c6dc977785d]

unnecessary auto_ptr changed to stack-object comment added


2003-12-11  Björn Milcke  <bm@openoffice.org>  [e2dc9004c9d10cffe54ca05e8244d11ffd36eff4]

interpret first data sequence as x-values todo: do this chart-type dependent


2003-12-11  Björn Milcke  <bm@openoffice.org>  [bbe11da12e8c36bd899ec20f7a0623c771042d31]

delete RelativePosition if default position is selected in dialog


2003-12-11  Björn Milcke  <bm@openoffice.org>  [62bb4680268e820ac5bafeb8eb2ce51852acf612]

ErrorBar struct->XPropertySet


2003-12-11  Björn Milcke  <bm@openoffice.org>  [6ffef057bf19cbac25d97256ea36c8bd3e06c63f]

property-set for error bar properties


2003-12-11  Björn Milcke  <bm@openoffice.org>  [1d6da184e0f909c22643142753fe0e1fb2c33500]

PropertyHelper moved to tools


2003-12-11  Björn Milcke  <bm@openoffice.org>  [365c48583d77f3b88618905acf6595418f9751ca]

merged with PropertyHelper from model/inc


2003-12-11  Björn Milcke  <bm@openoffice.org>  [940f528303ae16d2defd3a4e3d0620e804357fff]

virtual DTOR added to avoid warning unused aTestM4 is still a warning


2003-12-11  Björn Milcke  <bm@openoffice.org>  [f6680e5f15f4c0653e928bcf8019d620938917cd]

moved here from model


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [72515c0c3bc4b738d269223a066baa9cdc65ee80]

added second angle to drag-rotate + some cleanup


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [f0d6f899dadf42fb36efc3a7ddee3bbe8f758c6c]

added method implementation executeDispatch_PositionAndSize


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [ee77ce76e628adb8d5f5eca78af0c683bbe31867]

added slot SID_ATTR_TRANSFORM with method executeDispatch_PositionAndSize


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [a12004aaaf8fc32ccbcbf1defd6457c9f7be3a22]

added method executeDispatch_PositionAndSize


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [0ab68297363a433dd43dcc81bb4717bd0576779d]

moved object positioning in end drag to PositionAndSizeHelper::moveObject


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [d584ef73d29dbc38bbc16c5cf8f47f22ebd2650a]

set correct working area for Pos&Size dialog; added method getPositionAndSizeItemSetFromMarkedObject


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [aa837a51a500430b32c202c3441cbe65408a7eb7]

added method getPositionAndSizeItemSetFromMarkedObject


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [a84d18c1106084b415eda225e670892513a9c119]

added ConfigurationAccess and PositionAndSizeHelper


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [485769e0f7f1cec375006a0524c4a14f19a947f2]

new PositionAndSizeHelper


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [eb4088cd8d1aac5c5dad0beecb2d2364125f5176]

new: ConfigurationAccess for PositionAndSize-Dialog


2003-12-10  Björn Milcke  <bm@openoffice.org>  [db69cb1f626b45cc757d82c3dc618e31d3dd63e4]

+symbols


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [0db854c83824fecf38cc1c55f7fd33ec36e700ca]

new Dialog for Position And Size


2003-12-10  Björn Milcke  <bm@openoffice.org>  [fd1a699b8358ef13a7a6bb2ef9c0cb7b1471d4f0]

if there is no regression curve in the container, the type is NONE


2003-12-10  Björn Milcke  <bm@openoffice.org>  [0bcff14ff490c661d2a603a26b5987e1e65897dd]

statistics dialog implemented


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [09de3365219e77cc8fad40725c4287f1d9526d56]

correct drag end position for rotated title


2003-12-10  Ingrid Halama  <iha@openoffice.org>  [05e42af34d25cadb52502d61a65062bba235ab4f]

free positioning should be relative to page


2003-12-10  Björn Milcke  <bm@openoffice.org>  [3a6e9566981ab83a74351c408f613e96f6b438fe]

sub-converters removed


2003-12-10  Björn Milcke  <bm@openoffice.org>  [cef3cce5bdb76ada5a180eb7068552cac48b0294]

error-bar is only created if KIND_ERROR is not NONE sub-converters removed


2003-12-10  Björn Milcke  <bm@openoffice.org>  [ec03170d0b49ef6411d92b8247e75debefcdb996]

items implemented. ToDo: choosing no error category may create a default errorbar later


2003-12-09  Ingrid Halama  <iha@openoffice.org>  [be5e48c36d5a0e5541eed397893642f11c9cdbf0]

added slot SID_3D_VIEW with method executeDispatch_RotateDiagram


2003-12-09  Ingrid Halama  <iha@openoffice.org>  [3c752a13174ec6e8e6be73742ab16e24123a92b9]

added ChartController_Position


2003-12-09  Ingrid Halama  <iha@openoffice.org>  [03729d5d79d9dad0b02446abd6a3728f11cd38d5]

added method  executeDispatch_RotateDiagram


2003-12-09  Ingrid Halama  <iha@openoffice.org>  [52e21712b06a192b4152264211f32e566fa2f880]

new Dialog for Diagram Rotation


2003-12-09  Ingrid Halama  <iha@openoffice.org>  [e95d5cc252b3e1fb2a5efbb5538755f2a47d1746]

new Dialog for Diagram Rotation


2003-12-09  Björn Milcke  <bm@openoffice.org>  [751234d1ff11255a821469f4010c9951ca0a4f6d]

statistics


2003-12-09  Björn Milcke  <bm@openoffice.org>  [65a102317066b58066dde061ebe314fed2d95ef4]

statistics dialog


2003-12-09  Björn Milcke  <bm@openoffice.org>  [6b47c2cb1f05db60cfa08643437aa3e9ccc9385a]

Diagram is no longer an XRegressionCurveContainer


2003-12-09  Ingrid Halama  <iha@openoffice.org>  [f38d21e9f36e1e15e0230a3ea3f816e0740d071a]

added existing translations


2003-12-09  Ingrid Halama  <iha@openoffice.org>  [386003238f21c7a0c0c1b38a515a2d0f9d668197]

no area properties for scatter chart


2003-12-09  Björn Milcke  <bm@openoffice.org>  [53121703d23ea29eac4824ce3d76522846cc4c9b]

get axis titles


2003-12-09  Björn Milcke  <bm@openoffice.org>  [9fc50dd380b406f29235e85b29acd9878db27178]

Axis is an XTitled now


2003-12-08  Ingrid Halama  <iha@openoffice.org>  [23981ebad5b1a9ad42e641d8517c802fd2d9433e]

rename DataCaption -> DataPointLabel


2003-12-08  Ingrid Halama  <iha@openoffice.org>  [af0a7aac66589c90cf89ca59a09185885cebacb7]

resize diagram via mouse


2003-12-08  Ingrid Halama  <iha@openoffice.org>  [3a5e8d4d60cf4c72aea58bb37f08aa52513a699a]

paint only a single rectangle while 3D resize


2003-12-08  Björn Milcke  <bm@openoffice.org>  [ac38264970f745bc05754aef1cb2b4f84c8898e9]

+regression, DataCaption=>DataPointLabel


2003-12-06  Ingrid Halama  <iha@openoffice.org>  [60b33f143e2a98d1daf778120a9ceaf55a0fbb39]

moving legend,title & diagram + rotating diagram via mouse - cleanup pending ...


2003-12-06  Ingrid Halama  <iha@openoffice.org>  [6c7f38e4fa8883457dc09fc958940c55d1ee46b4]

use diagram size from model data


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [ab50cffa54c701ee50d009bc6c78d9a169a0b548]

name change: GetBoundRect->GetCurrentBoundRect


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [40f20af95549fa9098972b65f32032cc7f6d3bd0]

change destruction order (crash after edit title)


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [c1ad94435c51bfda2c830709081fe10a77a60de6]

check for Null pointer


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [5bc29824548d84ab4be93ceeea4a85f6899cfe33]

name change: SetItemSet->SetMergedItemSet


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [663d626ca52741d8c625d7c74bf8f485a90f31f7]

added method getSelectedObject


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [39211693f214628751390ffb6afe3d5a707bce99]

background color handling; added method getSelectedObject


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [f974a6a7797c684e1fd43441eadc753983e9ae9c]

added Rotation


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [5b1fef3d2263b76c5e468091df3d0c1c6efdecf0]

SceneProperties are maybevoid (2D)


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [9254717e19fe32b178e7b11e6639eecc7a5b3c6f]

#112587# changed matrix multiplication operator


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [90fe2c7e4afa68423ecea00f03fc0f509d668e90]

use free positioning and scene properties from model


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [ba1b5241cf18cfb87f572d63b5a6018ae1f4d78b]

free positions of diagram and title


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [abf4f43413305b44fd22b76c59a029b0fd478ba6]

#112587# changed matrix multiplication operator


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [e3af18a132e09ff78590dd49996eade7062be055]

don't use 32 vertical segments; disabled special rounded edge geometry ...


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [546d06fe27018a4840239bd60dd7ce4f0e59f709]

removed unused code


2003-12-04  Ingrid Halama  <iha@openoffice.org>  [9f1f51d924a0e259b5e51a5e26dcaa188399d047]

use positioning from model and calculate remaining space


2003-12-04  Björn Milcke  <bm@openoffice.org>  [12cdc5c7d8663f6fc5c2688eaaa41725db9a8ea3]

RelativePoint -> RelativePosition


2003-12-04  Björn Milcke  <bm@openoffice.org>  [b8a9d11947b42bda499acc5d7c871bd8a70befc8]

RelativePoint -> RelativePosition +property RelativeSize


2003-12-02  Rüdiger Timm  <rt@openoffice.org>  [e757b5b985a6dfd3632838e972031c4e3685bd05]

INTEGRATION: CWS ooo20031110 (1.6.160); FILE MERGED 2003/11/11 14:37:46 waratah 1.6.160.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [661fadb967399e8911e6c139de4ca6c96be59f22]

INTEGRATION: CWS ooo20031110 (1.24.26); FILE MERGED 2003/11/05 11:52:27 waratah 1.24.26.1: #i21906# add class keyword after friend for permissive on gcc


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [40ca9f5072da639fdded653f8138a8ba09d2cf66]

INTEGRATION: CWS ooo20031110 (1.33.26); FILE MERGED 2003/11/16 03:32:54 waratah 1.33.26.1: #i22277# implement const wrapper for large constant Added todo and a few comments to make a little easier to understand


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [feab8b2bec16df8ba9666a6c5702df17bfba60fa]

INTEGRATION: CWS ooo20031110 (1.38.160); FILE MERGED 2003/11/11 14:37:47 waratah 1.38.160.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [f9e0f28ede4e3db43f667dfa59b7f7835bdadf36]

INTEGRATION: CWS ooo20031110 (1.9.270); FILE MERGED 2003/11/11 14:37:45 waratah 1.9.270.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [91a10ebb86272273bbc1e6bf72e2ab5143a22431]

INTEGRATION: CWS ooo20031110 (1.9.14); FILE MERGED 2003/11/11 14:37:45 waratah 1.9.14.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [8092aba250ab380a72e4a90250118ca9d4550e18]

INTEGRATION: CWS ooo20031110 (1.15.292); FILE MERGED 2003/11/07 11:02:41 waratah 1.15.292.1: #i21906# add sal_Bool where missing on function definitions


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [42f496fd1117f55ec3c618a0043373fcc8f7be77]

INTEGRATION: CWS ooo20031110 (1.6.272); FILE MERGED 2003/11/11 14:37:44 waratah 1.6.272.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [955fff6004d1b75be027d7ae12fc77f477f086e1]

INTEGRATION: CWS ooo20031110 (1.28.292); FILE MERGED 2003/11/11 14:37:42 waratah 1.28.292.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [2c930d5ba0e5200dec3481020ccbe621b405188f]

INTEGRATION: CWS ooo20031110 (1.22.122); FILE MERGED 2003/11/07 11:04:00 waratah 1.22.122.1: #i21906# add integer type where it is missing in definitions


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [bdf0ba02796941298ea3175933edda464a41eb54]

INTEGRATION: CWS ooo20031110 (1.34.122); FILE MERGED 2003/11/11 14:37:42 waratah 1.34.122.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [9f325f288797833f82e45fe8ae53a5ab3be2275c]

INTEGRATION: CWS ooo20031110 (1.43.292); FILE MERGED 2003/11/11 14:37:42 waratah 1.43.292.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [4e98c3ba7d2014901f3d738a5f74a2cc4bb04b2b]

INTEGRATION: CWS ooo20031110 (1.169.42); FILE MERGED 2003/11/11 14:37:41 waratah 1.169.42.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [317b425e5579460238e2986081aca4e6c6ed1b54]

INTEGRATION: CWS ooo20031110 (1.13.88); FILE MERGED 2003/11/11 14:37:41 waratah 1.13.88.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [2a46729bf93b619f77f08d5cf16f908a5d432771]

INTEGRATION: CWS ooo20031110 (1.9.272); FILE MERGED 2003/11/11 14:37:40 waratah 1.9.272.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [49c2e68ecf8454bf83df496cbcc50a92c535a6f4]

INTEGRATION: CWS ooo20031110 (1.7.168); FILE MERGED 2003/11/11 14:37:39 waratah 1.7.168.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [38e360d1f88dea14effabc8ff4cb70e2c19c1f44]

INTEGRATION: CWS ooo20031110 (1.6.168); FILE MERGED 2003/11/07 11:00:48 waratah 1.6.168.1: #i21906# add class keyword after friend


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [cfa8c18b8969ac3b9f922edba9fce91b09ae18c7]

INTEGRATION: CWS ooo20031110 (1.1.1.1.314); FILE MERGED 2003/11/07 11:00:47 waratah 1.1.1.1.314.1: #i21906# add class keyword after friend


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [3b23a84a0fa9f7c3958c8442b0a883f522919740]

INTEGRATION: CWS ooo20031110 (1.2.166); FILE MERGED 2003/11/07 11:00:47 waratah 1.2.166.1: #i21906# add class keyword after friend


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [8fc20b3ee1205301f421447ed69a3b41ce2f6c60]

INTEGRATION: CWS ooo20031110 (1.14.128); FILE MERGED 2003/11/07 11:00:46 waratah 1.14.128.1: #i21906# add class keyword after friend


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [9d24a68ee1326708b1c618f862ce2f82e6d66c86]

INTEGRATION: CWS ooo20031110 (1.66.14); FILE MERGED 2003/12/01 15:02:19 mh 1.66.14.2: RESYNC: (1.66-1.67); FILE MERGED 2003/11/07 11:03:58 waratah 1.66.14.1: #i21906# add integer type where it is missing in definitions


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [786858c13c3b3eb12080c5edc71ffec18e2d8ce7]

INTEGRATION: CWS ooo20031110 (1.8.138); FILE MERGED 2003/11/11 14:37:38 waratah 1.8.138.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [a55dbd262e2705a07b27dddbc80eb5f38f714414]

INTEGRATION: CWS ooo20031110 (1.25.168); FILE MERGED 2003/11/11 14:37:37 waratah 1.25.168.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [ea3b7e0851f020ca5ee9579a87f112c6fef9e174]

INTEGRATION: CWS ooo20031110 (1.41.112); FILE MERGED 2003/11/11 14:37:37 waratah 1.41.112.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [778ad64683154c046be7513f5d7c363d667a473d]

INTEGRATION: CWS ooo20031110 (1.22.160); FILE MERGED 2003/11/11 14:37:35 waratah 1.22.160.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [6509adb6e9385ad3e3c143efab4988a4c36947a8]

INTEGRATION: CWS ooo20031110 (1.11.298); FILE MERGED 2003/11/11 21:06:03 waratah 1.11.298.1: #i22301# Add missing braces to loop


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [57a0a558fc04edf2693af91fd3cf39fcc532e0d0]

INTEGRATION: CWS ooo20031110 (1.21.14); FILE MERGED 2003/11/07 11:02:42 waratah 1.21.14.1: #i21906# add sal_Bool where missing on function definitions


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [d06fe7283b88851149488a4a9df0a6d7f58c704e]

INTEGRATION: CWS ooo20031110 (1.50.42); FILE MERGED 2003/11/11 14:37:34 waratah 1.50.42.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [b542ac556157811ad33f218f3479ac6850c0abe9]

INTEGRATION: CWS ooo20031110 (1.30.122); FILE MERGED 2003/11/11 14:37:34 waratah 1.30.122.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [da3cbe0a8218e6ae4d0c7995b4907802d80476c3]

INTEGRATION: CWS ooo20031110 (1.8.272); FILE MERGED 2003/11/11 14:37:33 waratah 1.8.272.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [3fe740a6959a9bc3882540398b2f8ed81948bd5c]

INTEGRATION: CWS ooo20031110 (1.12.160); FILE MERGED 2003/11/11 14:37:33 waratah 1.12.160.1: #i22301# Correct for scoping rules


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [3afcbf38e4ad1c2825271ea3df5d120aae1175ef]

INTEGRATION: CWS ooo20031110 (1.3.144); FILE MERGED 2003/11/07 11:02:43 waratah 1.3.144.1: #i21906# add sal_Bool where missing on function definitions


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [2f2a8f4f2ee698369c01d372e12c79bca58029fa]

INTEGRATION: CWS ooo20031110 (1.6.168); FILE MERGED 2003/11/07 11:00:45 waratah 1.6.168.1: #i21906# add class keyword after friend


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [6e1c9aae2710afa5db084139f9a2588f1492a63c]

INTEGRATION: CWS dr9 (1.19.86); FILE MERGED 2003/08/01 15:40:17 dr 1.19.86.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [ee85de49a60db367903e4837e518bd2c82d78bb7]

INTEGRATION: CWS dr9 (1.9.102); FILE MERGED 2003/11/21 13:52:16 dr 1.9.102.1: #i22589# enable 'Remove Print Area' slot, if 'Print Entire Sheet' enabled at sheet


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [de60bad736df2ae47547e819520908d721123690]

INTEGRATION: CWS dr9 (1.17.60); FILE MERGED 2003/08/01 15:40:16 dr 1.17.60.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [4249a53cff4a77002a7220a55879a3080f79a8c3]

INTEGRATION: CWS dr9 (1.29.86); FILE MERGED 2003/08/01 15:40:16 dr 1.29.86.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [6370a1769cdd5b4bbe3b7d2da93f47837d7fa11f]

INTEGRATION: CWS dr9 (1.3.212); FILE MERGED 2003/08/01 15:40:15 dr 1.3.212.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [5bf25f8092ac1bba69a86366d3bd8d679e8cfa82]

INTEGRATION: CWS dr9 (1.77.110); FILE MERGED 2003/10/28 09:29:33 dr 1.77.110.3: RESYNC: (1.77-1.78); FILE MERGED 2003/08/19 12:04:51 sab 1.77.110.2: #i4063#; add automatic print ranges 2003/08/01 15:39:41 dr 1.77.110.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [da7e122845c367a37297592b9152db98a489e663]

INTEGRATION: CWS dr9 (1.44.12); FILE MERGED 2003/10/15 16:00:33 dr 1.44.12.3: #i4063# final strings 2003/10/15 15:36:10 dr 1.44.12.2: #i4063# final strings 2003/08/01 15:39:23 dr 1.44.12.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [dc3f5fca64907badbe75d3d98f89972eb0ee7237]

INTEGRATION: CWS dr9 (1.6.102); FILE MERGED 2003/08/01 15:39:23 dr 1.6.102.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [61229d4ce7e6d7fff36902e8e3763fb41cab0d67]

INTEGRATION: CWS dr9 (1.16.212); FILE MERGED 2003/11/21 14:23:57 dr 1.16.212.2: RESYNC: (1.16-1.17); FILE MERGED 2003/08/01 15:38:59 dr 1.16.212.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [820fd44d2834874acb8c44cf1f1a57ab5780e024]

INTEGRATION: CWS dr9 (1.25.88); FILE MERGED 2003/09/23 09:17:42 dr 1.25.88.2: RESYNC: (1.25-1.26); FILE MERGED 2003/08/01 15:38:48 dr 1.25.88.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [9e1111bc70c4d6deb6dbb2bbc0e5e5368182464f]

INTEGRATION: CWS dr9 (1.7.246); FILE MERGED 2003/08/19 12:02:17 sab 1.7.246.1: #i4063#; add automatic print ranges


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [cfc4ec8090cabcf86d310eeae4c6b8d0cbf79c0d]

INTEGRATION: CWS dr9 (1.28.234); FILE MERGED 2003/08/19 12:02:15 sab 1.28.234.1: #i4063#; add automatic print ranges


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [3b5401b73ac39ba77222340418111df226624ed3]

INTEGRATION: CWS dr9 (1.64.56); FILE MERGED 2003/09/23 09:21:04 dr 1.64.56.2: RESYNC: (1.64-1.66); FILE MERGED 2003/08/19 12:00:59 sab 1.64.56.1: #i4063#; add automatic print ranges


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [5b8bfb7a07f6f44680b4e0cc631b86a965259522]

INTEGRATION: CWS dr9 (1.87.56); FILE MERGED 2003/09/23 09:20:55 dr 1.87.56.2: RESYNC: (1.87-1.89); FILE MERGED 2003/08/19 12:00:58 sab 1.87.56.1: #i4063#; add automatic print ranges


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [aadac2633066672e45aa80ed4991e54ebab63e48]

INTEGRATION: CWS dr9 (1.168.4); FILE MERGED 2003/09/23 09:20:45 dr 1.168.4.2: RESYNC: (1.168-1.169); FILE MERGED 2003/08/19 12:00:34 sab 1.168.4.1: #i4063#; add automatic print ranges


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [a8d8a3e1749208c22886deda0f1a3f352dd495b0]

INTEGRATION: CWS dr9 (1.53.44); FILE MERGED 2003/11/24 08:43:28 dr 1.53.44.6: #100000# merge conflict 2003/11/21 14:33:01 dr 1.53.44.5: RESYNC: (1.56-1.57); FILE MERGED 2003/10/28 09:35:08 dr 1.53.44.4: RESYNC: (1.55-1.56); FILE MERGED 2003/09/23 09:27:43 dr 1.53.44.3: RESYNC: (1.54-1.55); FILE MERGED 2003/08/20 11:32:10 dr 1.53.44.2: RESYNC: (1.53-1.54); FILE MERGED 2003/08/01 15:38:13 dr 1.53.44.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [c0ff5fcc3c5a3f80965f43edde6adc87955c0aad]

INTEGRATION: CWS dr9 (1.64.2); FILE MERGED 2003/11/21 14:32:43 dr 1.64.2.3: RESYNC: (1.66-1.67); FILE MERGED 2003/09/23 09:27:37 dr 1.64.2.2: RESYNC: (1.64-1.66); FILE MERGED 2003/08/01 15:38:12 dr 1.64.2.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [87d644d61b930262486c1a473d909d42700ae4ac]

INTEGRATION: CWS dr9 (1.59.44); FILE MERGED 2003/09/23 09:26:53 dr 1.59.44.2: RESYNC: (1.59-1.60); FILE MERGED 2003/08/01 15:38:32 dr 1.59.44.1: #i4063# extended NAME


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [62852e0d6e09a2eb41507a2194082f19f4c96629]

INTEGRATION: CWS dr9 (1.1.1.1.256); FILE MERGED 2003/08/01 15:37:50 dr 1.1.1.1.256.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [6f154e7489b19a3fd2d6983aaee64cf7e61733ce]

INTEGRATION: CWS dr9 (1.22.102); FILE MERGED 2003/08/01 15:37:33 dr 1.22.102.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [34b29e1985d7d98e2250b231b1f8824c44a2962c]

INTEGRATION: CWS dr9 (1.6.212); FILE MERGED 2003/08/01 15:37:33 dr 1.6.212.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [86948467a816b9097e2bc57cd8643bad479e4544]

INTEGRATION: CWS dr9 (1.49.94); FILE MERGED 2003/09/23 09:31:10 dr 1.49.94.2: RESYNC: (1.49-1.50); FILE MERGED 2003/08/01 15:37:32 dr 1.49.94.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [d6d530447421bf26af0d4aafedf366441e7e2cd3]

INTEGRATION: CWS dr9 (1.38.110); FILE MERGED 2003/10/28 09:36:41 dr 1.38.110.2: RESYNC: (1.38-1.39); FILE MERGED 2003/08/01 15:37:32 dr 1.38.110.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [d7b25883e230503b8045e30e00ad3562d40db711]

INTEGRATION: CWS dr9 (1.3.242); FILE MERGED 2003/08/19 11:59:48 sab 1.3.242.1: #i4063#; add automatic print ranges


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [5bd78eaaf4ca978c12a0163e54af00b96907842d]

INTEGRATION: CWS dr9 (1.51.86); FILE MERGED 2003/10/28 09:47:51 dr 1.51.86.3: RESYNC: (1.53-1.54); FILE MERGED 2003/09/23 09:38:19 dr 1.51.86.2: RESYNC: (1.51-1.53); FILE MERGED 2003/08/19 11:59:47 sab 1.51.86.1: #i4063#; add automatic print ranges


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [2be0636f47f1dacbf263de91d1f85a150197cb77]

INTEGRATION: CWS dr9 (1.19.212); FILE MERGED 2003/08/01 15:37:03 dr 1.19.212.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [5dcfae8b046e659277d52acc641ab43fb42f02cf]

INTEGRATION: CWS dr9 (1.1.1.1.256); FILE MERGED 2003/08/01 15:37:03 dr 1.1.1.1.256.1: #i4063# print entire sheet option


2003-12-01  Rüdiger Timm  <rt@openoffice.org>  [6c45836d755f760d2c2449b8f8acabcd9c2a1e7e]

INTEGRATION: CWS dr9 (1.67.86); FILE MERGED 2003/10/28 09:47:19 dr 1.67.86.4: RESYNC: (1.68-1.69); FILE MERGED 2003/09/23 09:37:11 dr 1.67.86.3: RESYNC: (1.67-1.68); FILE MERGED 2003/08/19 11:59:04 sab 1.67.86.2: #i4063#; better comment 2003/08/01 15:37:02 dr 1.67.86.1: #i4063# print entire sheet option


2003-11-27  Björn Milcke  <bm@openoffice.org>  [0b91cf350a2f641ddb2cc8aea3f37bc6e9dedf61]

legend AutoPosition -> AnchorPositiob


2003-11-27  Björn Milcke  <bm@openoffice.org>  [8783e48c0271d9dd4527e77c011445e91be8af69]

service documentation


2003-11-27  Björn Milcke  <bm@openoffice.org>  [8afe8abeefca200f9046d6c7d0e89f17ddfff055]

scene properties at diagram


2003-11-26  Björn Milcke  <bm@openoffice.org>  [9dc49f6aac1b50e65de9953e3a167866c2ed65ff]

positions at model objects


2003-11-26  Ingrid Halama  <iha@openoffice.org>  [a35eaaf26fe7787a945c535b7aa6bbe870c493af]

handle negativ values completly as abs


2003-11-26  Ingrid Halama  <iha@openoffice.org>  [7c9b44860aab74cbbaa37e98c7811fb2421cbf92]

.


2003-11-26  Ingrid Halama  <iha@openoffice.org>  [54040e7f2c3694d5e9bc4f059094c0b667321bc5]

ensure max > min


2003-11-26  Ingrid Halama  <iha@openoffice.org>  [89afb8a3bddb68b20182d6ee646690e58c0a8294]

don't divide through 0


2003-11-26  Björn Milcke  <bm@openoffice.org>  [8b4a974a9765333f9ce737e80fcd408cf0b0f5ca]

relative font sizes for data points


2003-11-26  Björn Milcke  <bm@openoffice.org>  [ab297c6f3efc935489ac6baf381913e66198be52]

access to 0-pointer in execute_Paint (thread-safety still missing)


2003-11-26  Björn Milcke  <bm@openoffice.org>  [8c2bd700b9f2c684bec4aa7a06f0adbf3da27415]

three scale-groups for 3d pie


2003-11-25  Ingrid Halama  <iha@openoffice.org>  [e06f8f4fc83d6c8207b40a4ccb58408f444fc181]

correct Y scaling for xy scatter chart


2003-11-25  Ingrid Halama  <iha@openoffice.org>  [31e7dee7ab84ef4fe35531f529509e1d5cfcffec]

correct drag mode in selection handling


2003-11-25  Ingrid Halama  <iha@openoffice.org>  [75438c1789d540ee2ec1a9e421023142dd448f1b]

group 3D walls together for better selection handling


2003-11-25  Björn Milcke  <bm@openoffice.org>  [bcd078cde702f633a89c93d801f45a4323b7b576]

FontSizes with ReferenceSize implemented for dialog


2003-11-25  Rüdiger Timm  <rt@openoffice.org>  [5500a45c04887016015f2c3d5041367dcf05224e]

INTEGRATION: CWS valgrind01 (1.44.162); FILE MERGED 2003/11/04 18:05:54 hr 1.44.162.1: #i20184#: ScDocFunc::PutCell(): ensure initialization of bHeight


2003-11-25  Björn Milcke  <bm@openoffice.org>  [a2268d04fa1af19968a7cd7967ccb1a82414f145]

DeepStacking for LineChart


2003-11-25  Björn Milcke  <bm@openoffice.org>  [27583359019c06a3ff33595f2b1f3e3fb967a75a]

compilation error on Linux


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [f3d977679167e8d6a81b1c7a524416c12e5adf20]

INTEGRATION: CWS aw003 (1.11.138); FILE MERGED 2003/06/06 13:02:52 aw 1.11.138.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [4a42d4af93a839419e6d8bfe16dd7d8d0acc2957]

INTEGRATION: CWS aw003 (1.29.20); FILE MERGED 2003/10/14 08:09:58 aw 1.29.20.2: #111111# 2003/06/04 17:05:43 aw 1.29.20.1: #109985# Necessary changes to make SC use the DrawingLayer for painting the draw objects. Now, RedrawOneLayer() is used from sc.


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [46603e4491d152e5c64a78950ed841fe654913ca]

INTEGRATION: CWS aw003 (1.3.160); FILE MERGED 2003/07/24 14:05:34 aw 1.3.160.1: #110094# Adaptions for DrawingLayer changes


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [0705c070c6108f341d86cba0bb02107f0ec1eb92]

INTEGRATION: CWS aw003 (1.8.134); FILE MERGED 2003/10/14 08:09:58 aw 1.8.134.2: #111111# 2003/06/04 17:05:43 aw 1.8.134.1: #109985# Necessary changes to make SC use the DrawingLayer for painting the draw objects. Now, RedrawOneLayer() is used from sc.


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [d9963f10aa0ffc0c3375e1fe8f2c31e88471fef1]

INTEGRATION: CWS aw003 (1.4.140); FILE MERGED 2003/10/23 14:40:26 aw 1.4.140.3: #111111# Changed GetBoundRect() to GetCurrentBoundRect() and GetLastBoundRect() 2003/10/07 11:24:12 aw 1.4.140.2: #111097# 2003/07/25 16:17:08 aw 1.4.140.1: #110094# Changed Paint calls on objects to DoPaintObject to identify such cases


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [87cdf60cd1685fb413ea4f38d868717ce12921f6]

INTEGRATION: CWS aw003 (1.19.46); FILE MERGED 2003/10/16 08:14:41 aw 1.19.46.1: #111111#


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [ab724b45a61a9ed749880d569ee2b581e89a76fb]

INTEGRATION: CWS aw003 (1.6.18); FILE MERGED 2003/10/14 08:09:57 aw 1.6.18.3: #111111# 2003/10/07 11:24:09 aw 1.6.18.2: #111097# 2003/06/04 17:05:43 aw 1.6.18.1: #109985# Necessary changes to make SC use the DrawingLayer for painting the draw objects. Now, RedrawOneLayer() is used from sc.


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [a59e20ace5a852c1534f59aae97299a4807c5df2]

INTEGRATION: CWS aw003 (1.20.20); FILE MERGED 2003/10/23 14:40:26 aw 1.20.20.3: #111111# Changed GetBoundRect() to GetCurrentBoundRect() and GetLastBoundRect() 2003/10/07 11:24:08 aw 1.20.20.2: #111097# 2003/07/25 16:17:08 aw 1.20.20.1: #110094# Changed Paint calls on objects to DoPaintObject to identify such cases


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [9f6fa55ead5ae1684002af5935bfcdfdbf97be71]

INTEGRATION: CWS aw003 (1.2.174); FILE MERGED 2003/07/24 14:05:34 aw 1.2.174.1: #110094# Adaptions for DrawingLayer changes


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [589c3c7e20898740f2bf59935401c8da73df90a6]

INTEGRATION: CWS aw003 (1.9.26); FILE MERGED 2003/10/23 14:40:25 aw 1.9.26.1: #111111# Changed GetBoundRect() to GetCurrentBoundRect() and GetLastBoundRect()


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [5db0b5401257f76ed8f49bd4b5cb44f38e9c11f8]

INTEGRATION: CWS aw003 (1.8.20); FILE MERGED 2003/06/04 17:05:42 aw 1.8.20.1: #109985# Necessary changes to make SC use the DrawingLayer for painting the draw objects. Now, RedrawOneLayer() is used from sc.


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [8317aff52b41bef9a2185f07fa208bb0b721a148]

INTEGRATION: CWS aw003 (1.7.26); FILE MERGED 2003/06/04 17:05:41 aw 1.7.26.1: #109985# Necessary changes to make SC use the DrawingLayer for painting the draw objects. Now, RedrawOneLayer() is used from sc.


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [d81069416568741a52e2c2519a5a97e419815dfd]

INTEGRATION: CWS aw003 (1.2.164); FILE MERGED 2003/07/25 16:17:07 aw 1.2.164.1: #110094# Changed Paint calls on objects to DoPaintObject to identify such cases


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [1ee0e441ce161c65dd5e30ca22e59a22d4ba6e94]

INTEGRATION: CWS aw003 (1.13.130); FILE MERGED 2003/06/06 13:02:51 aw 1.13.130.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [0908f21f8dd4c506e80c5c96679531c4d041a0ff]

INTEGRATION: CWS aw003 (1.6.130); FILE MERGED 2003/06/06 13:02:51 aw 1.6.130.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [4cd19b5dbe3dd0b30646baefc861d3e2bccbc799]

INTEGRATION: CWS aw003 (1.4.138); FILE MERGED 2003/06/06 13:02:50 aw 1.4.138.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [f9ca68a8f3a7613b80f5c18038eec9bf09429b17]

INTEGRATION: CWS aw003 (1.17.20); FILE MERGED 2003/06/06 13:02:49 aw 1.17.20.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [31bf7c05b7655f881c0031c822fb1e419b2ef8b8]

INTEGRATION: CWS aw003 (1.54.10); FILE MERGED 2003/11/21 10:31:33 aw 1.54.10.6: RESYNC: (1.59-1.60); FILE MERGED 2003/11/04 17:18:52 aw 1.54.10.5: RESYNC: (1.58-1.59); FILE MERGED 2003/10/07 18:40:13 aw 1.54.10.4: RESYNC: (1.56-1.58); FILE MERGED 2003/08/20 10:46:16 aw 1.54.10.3: RESYNC: (1.55-1.56); FILE MERGED 2003/06/30 17:13:31 aw 1.54.10.2: RESYNC: (1.54-1.55); FILE MERGED 2003/06/06 13:02:48 aw 1.54.10.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [3e6dc3694194c88572d8ec8abbadcbeed96cc3fc]

INTEGRATION: CWS aw003 (1.9.16); FILE MERGED 2003/10/23 14:40:23 aw 1.9.16.1: #111111# Changed GetBoundRect() to GetCurrentBoundRect() and GetLastBoundRect()


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [85d45a71683c05bf440dea6245ab683b3510568c]

INTEGRATION: CWS aw003 (1.6.152); FILE MERGED 2003/10/23 14:40:21 aw 1.6.152.1: #111111# Changed GetBoundRect() to GetCurrentBoundRect() and GetLastBoundRect()


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [a2c903149a1c595800ef7c0463218dd71aa9bfbe]

INTEGRATION: CWS aw003 (1.3.8); FILE MERGED 2003/11/21 10:41:41 aw 1.3.8.5: RESYNC: (1.8-1.9); FILE MERGED 2003/11/04 17:20:42 aw 1.3.8.4: RESYNC: (1.7-1.8); FILE MERGED 2003/10/07 18:48:31 aw 1.3.8.3: RESYNC: (1.5-1.7); FILE MERGED 2003/08/20 10:51:11 aw 1.3.8.2: RESYNC: (1.3-1.5); FILE MERGED 2003/07/02 08:21:35 aw 1.3.8.1: #110094#


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [f7940b5595cdcde9b0a2bf1fee0655473583a40e]

INTEGRATION: CWS aw003 (1.25.26); FILE MERGED 2003/11/21 10:39:17 aw 1.25.26.4: RESYNC: (1.27-1.28); FILE MERGED 2003/10/07 18:47:03 aw 1.25.26.3: RESYNC: (1.26-1.27); FILE MERGED 2003/06/30 17:20:17 aw 1.25.26.2: RESYNC: (1.25-1.26); FILE MERGED 2003/06/06 13:02:47 aw 1.25.26.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [ff2f7e2d4ac98490c26510989b799009841cd76f]

INTEGRATION: CWS aw003 (1.11.26); FILE MERGED 2003/07/24 14:05:33 aw 1.11.26.2: #110094# Adaptions for DrawingLayer changes 2003/06/06 13:02:45 aw 1.11.26.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [61a68dc30c0c1e9dab2eda2b51ad25baf8462c92]

INTEGRATION: CWS aw003 (1.20.26); FILE MERGED 2003/11/07 13:45:17 aw 1.20.26.4: #111111# SetChanged(...) parameter change 2003/10/23 14:40:18 aw 1.20.26.3: #111111# Changed GetBoundRect() to GetCurrentBoundRect() and GetLastBoundRect() 2003/10/07 18:51:37 aw 1.20.26.2: RESYNC: (1.20-1.21); FILE MERGED 2003/06/06 13:02:44 aw 1.20.26.1: #109820# 2nd run of changes for ItemSet isolation


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [4649409616942fd35b6914ccb3bdbbdee25f683f]

INTEGRATION: CWS aw003 (1.19.138); FILE MERGED 2003/10/23 14:40:18 aw 1.19.138.3: #111111# Changed GetBoundRect() to GetCurrentBoundRect() and GetLastBoundRect() 2003/10/07 18:51:17 aw 1.19.138.2: RESYNC: (1.19-1.20); FILE MERGED 2003/06/04 17:05:40 aw 1.19.138.1: #109985# Necessary changes to make SC use the DrawingLayer for painting the draw objects. Now, RedrawOneLayer() is used from sc.


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [5e99eb17547f6fa07a59ebb81b17d8f4adc461dc]

INTEGRATION: CWS aw003 (1.17.138); FILE MERGED 2003/10/23 14:40:17 aw 1.17.138.3: #111111# Changed GetBoundRect() to GetCurrentBoundRect() and GetLastBoundRect() 2003/10/07 18:51:10 aw 1.17.138.2: RESYNC: (1.17-1.18); FILE MERGED 2003/07/24 14:05:32 aw 1.17.138.1: #110094# Adaptions for DrawingLayer changes


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [b0d5a538efe3f1612690581a0d5a09ab022cdb74]

INTEGRATION: CWS aw003 (1.8.132); FILE MERGED 2003/11/07 13:44:45 aw 1.8.132.1: #111111# SetChanged(...) parameter change


2003-11-24  Rüdiger Timm  <rt@openoffice.org>  [0b96cfe3c04880c3223b6cf2e42a329ccdb5cda8]

INTEGRATION: CWS aw003 (1.67.20); FILE MERGED 2003/11/04 17:29:38 aw 1.67.20.3: RESYNC: (1.68-1.69); FILE MERGED 2003/10/07 18:59:27 aw 1.67.20.2: RESYNC: (1.67-1.68); FILE MERGED 2003/06/04 17:05:39 aw 1.67.20.1: #109985# Necessary changes to make SC use the DrawingLayer for painting the draw objects. Now, RedrawOneLayer() is used from sc.


2003-11-24  Björn Milcke  <bm@openoffice.org>  [f8124d3df4afa9eec16366ac994b5c6293e23bf7]

data for a circle in an xy-chart


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [87d8f032680c5fc57115e983bb76f5ca0c587e26]

start enable dragging and rotation


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [08117770121889302583ddb983bc4c2dee74f6f9]

added methods isDragableObjectHitTwice and changeSelection


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [34615b9d15623c8793f14a79a1400e1be8ff62da]

correct z positioning for 3D line chart


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [16f015bf0c4598237c440ace3a1d57ef0f961e2b]

enable three scale groups in tree


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [31cb88ff5d7946f750884beeea37d79a5346ded7]

enable symbols for scatter chart


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [826abe235cf20558d060db490b7cfbfe91f9e5ef]

return NAN if no x value is available


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [ddc99a747812d2d0ec8cd9eaef30257330119867]

provide correct x maximum and minimum for continuous(not category) x-axis


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [61ea57443097f192301d6ea160f8e23af80afb5f]

remove random x values


2003-11-22  Ingrid Halama  <iha@openoffice.org>  [a5cdf21c07bd3326dce62153bda46596a2535408]

introduced flag bCategoryXAxis to distinguish line and scatter charts even if having data series with x-values


2003-11-21  Björn Milcke  <bm@openoffice.org>  [f9c1afa859ce154cfd9767210f0fad81a71be89f]

line-symbols for scatter chart


2003-11-21  Björn Milcke  <bm@openoffice.org>  [82e7e2acbc05314d6a5690ad35fb5c1606ffaee6]

+XYDataInterpreter


2003-11-21  Björn Milcke  <bm@openoffice.org>  [cbddde08e2eb0c87a283d7f1d6f1ab0ae2984178]

use XYDataInterpreter if USE_XY_DATA is defined


2003-11-21  Björn Milcke  <bm@openoffice.org>  [4a6cfe14da16ee9d076e88f6fa5c5e633c91fdab]

getStackMode -> getYStackMode +getZStackMode


2003-11-21  Björn Milcke  <bm@openoffice.org>  [b12782400f13b9688df2e2ef208bc05f2a4b49ce]

skeletton for stock chart type template


2003-11-20  Björn Milcke  <bm@openoffice.org>  [a446ae21b695104cb78ce241bdb379cf72fc6468]

Line- and Scatter subtypes added (symbols, curve type)


2003-11-20  Ingrid Halama  <iha@openoffice.org>  [40f272c040b3bc4503cf0ab5e9c203b99f51b72d]

enable ScatterChart


2003-11-20  Björn Milcke  <bm@openoffice.org>  [ffec233ff223c2b333abdccf1b6db5c2294c0d73]

let charttype templates determine by themselves, if a diagram was crated by them


2003-11-20  Björn Milcke  <bm@openoffice.org>  [a429f8849f27a122b1262db0bff3240c78dcac6f]

scatter chart type


2003-11-20  Ingrid Halama  <iha@openoffice.org>  [3fd62307d82d5c77523b32dd8668ebbcbc63472a]

use SplineOrder and CurveResolution from model


2003-11-19  Ingrid Halama  <iha@openoffice.org>  [8b74240946a9bd66b553b270a8fb69e295d4fc8f]

add ChartType-Model to 'ChartType-View' to get charttype specific values (e.g. spline type)


2003-11-19  Björn Milcke  <bm@openoffice.org>  [e25097063edac019555b7e8ed6d470565677fcbc]

+properties CurveResolution, SplineOrder


2003-11-19  Björn Milcke  <bm@openoffice.org>  [141c08856ddd21f7d58febb0c3a6d207bacb7bf9]

todo-comment


2003-11-19  Björn Milcke  <bm@openoffice.org>  [3fa28d692782cdf707834c87c7f31abdf3ff8745]

+Property CurveStyle for LineChartType


2003-11-19  Ingrid Halama  <iha@openoffice.org>  [1240d35d736a9acf81b564cffecf811ce791b56c]

font resize for axis


2003-11-19  Björn Milcke  <bm@openoffice.org>  [f9b12c5ed5e180d6261a1ea82b8421c7bb16d3c6]

+ ReferenceDiagramSize


2003-11-19  Ingrid Halama  <iha@openoffice.org>  [3689cb2c3a19741f43fdbea378a71f637c800d15]

coorected cube creation


2003-11-19  Ingrid Halama  <iha@openoffice.org>  [f7855132858bb7e54cbe237928067a9afec267b1]

handle reverse oriented axes properly; corrected fCompleteHeight; changed test geometries


2003-11-19  Ingrid Halama  <iha@openoffice.org>  [de6397e971282dd808dc42f4303f79cef6b40fe4]

handle reverse oriented axes properly


2003-11-19  Ingrid Halama  <iha@openoffice.org>  [e4eaa38993557cbb9d1370941e68cabe2183d413]

removed unused code


2003-11-19  Ingrid Halama  <iha@openoffice.org>  [b89d8c26b0e1895e65434449fa872e14393b74ef]

added methods isMathematicalOrientationX/Y/Z


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [0bbbd639953161b9a6fdf2c97f59bae937b0f383]

new defaults for 3rd scale


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [86b22bd0ceb783349a374b48ba188bb0ddf98c42]

manipulate z value only in case of 3D


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [18368696bee9cde72660c46eee3e0500da6cf84e]

don't keep DrawViewWrapper during resize to avoid crash; delete wrapper in destructor


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [c5b28fbd5644d8b9824fc2b2c805a50fddcced2b]

crash while having minimal page sizes


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [b0d64fca7dbf95804a7dc6fa8c479d1b0808b481]

set D3DSceneTwoSidedLighting to true for correct 3D linechart display


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [19b6756f64b4f40f030a4fe8ac83546cafb37154]

during rebuild of view only delete the view and its single draw page; keep draw model and draw view alive -> dialog can be kept alive during view rebuild


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [480b460f2eadacdd4a4e7f12c92d911fb7ba965a]

added method ReInit for using an updated first page


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [178096a6491f63d176f8862a7119ac4dde4e11f2]

added virtual destructor and member m_xDrawPages for removing draw page in destructor


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [23e02120483e95c6337c6d67ecbf4b1bcae8cf67]

changed signature of createGroupShape


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [0fdaa42c6fcc570d6cea36baab6e44d971dbe706]

symbols in front of lines - use getSeriesGroupShapeFront/BackChild


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [80df5a4ecca5e7118ab2bded010d7b9445d97a46]

symbols in front of lines - added getSeriesGroupShapeFront/BackChild


2003-11-17  Ingrid Halama  <iha@openoffice.org>  [24ffa5a27f0fa7e1fdb978bb8b6e3a8189b2ea27]

symbols in front of lines - added m_xShapeFront/BackChild


2003-11-15  Ingrid Halama  <iha@openoffice.org>  [25793d2cd90fa78cc2812794cfbccba213e61f3a]

autoscale dimension 3 also; changed z positioning


2003-11-15  Ingrid Halama  <iha@openoffice.org>  [085d23b53f53c2677cd108d806b79f1d149e2a56]

autoscale dimension 3 also


2003-11-15  Ingrid Halama  <iha@openoffice.org>  [087c705d56cd7579d6d9a709d5f25b8dfea3fbbc]

added logig z


2003-11-15  Ingrid Halama  <iha@openoffice.org>  [3211a60c240e12056d4a149296cf1b29ccc1634d]

changed  z scaling


2003-11-15  Ingrid Halama  <iha@openoffice.org>  [192582b236e8f38bf632087aed7be5c91c815c78]

dont loose z values for b splines


2003-11-15  Ingrid Halama  <iha@openoffice.org>  [10c283519293b2d71c50f2c749755c440a4930f0]

check Nullpointer


2003-11-14  Ingrid Halama  <iha@openoffice.org>  [fefae980c6abd15ed064c12d2a1bc0bb129690b9]

sort polygon before splinecalculation for scatter chart (need better algorithm in future)


2003-11-14  Björn Milcke  <bm@openoffice.org>  [adf6910cb45e3bc6dfc7cf1a8fe0d47a75728f04]

relative font sizes for titles


2003-11-14  Björn Milcke  <bm@openoffice.org>  [9174ea1f1d6c13855e00724c57fce41652bb1f05]

CharHeight is float not double


2003-11-14  Björn Milcke  <bm@openoffice.org>  [71aa4b24674d9c3f987379b047cce6f10510c8e0]

bigger default size for ReferencePageSize


2003-11-14  Björn Milcke  <bm@openoffice.org>  [2951b0e98128e6d64f9bca5491eff65476e7e5c1]

+CJK characters


2003-11-14  Björn Milcke  <bm@openoffice.org>  [42c0e03b91dbe1f5ff74c7d5b9d7b2ad85766130]

support for CJK and CTL properties


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [dd182873d79b67269b9cae77fd59bc5561fa10c9]

added scatter chart support


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [40b965efb69a103308bab9cb941172890744afa5]

#112350#


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [9345866b70264e51578ebd49f80464ac3e52a304]

remove spline default + ..


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [6d91c220601a75695e5ead3aaad4373b336827d4]

use size and color from model for symbol creation


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [f60c831add62741f6e1828a696298ccb6f50b91b]

use main color for symbol fillcolor


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [bbbf47be9fc762dd00b5737b228e570e82616cae]

added color to method  createSymbol


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [3a4dac283b86bc9f72b2cc51ed06d29f20aeb19b]

added color paramter to method  createSymbol


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [fc7048621f267402e3d281e81c975c8b298e6a3a]

added symbol information to dialog


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [7109cd31e98ef7122da2859171faac089744240b]

changed symbol information handling


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [cb70ae04c6fe54c1be859ba3358af9d28f3f56fd]

added method GetSymbolGraphic


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [6abb6e847897326c102d372345f5935ce59d8404]

remove shadowed variable warning


2003-11-13  Björn Milcke  <bm@openoffice.org>  [1729f72756a9a94818a69a0b2167cf272ccb23b6]

SymbolProperties extended by aSize and nFillColor


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [396401962afd2f6c37da8ab3bf1fb78ccadba2a2]

added signature for getSymbol methods


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [b9cc1238a2b096db3c73e22962510d20a9f38f46]

corrected include saver


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [25f786ad848369a6aafde098db527ff5de511198]

read symbol properties from model;; removed ShapeApperance


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [0097287d18a4844aa9573e038bcf031968b438f0]

removed ShapeApperance


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [3fe0c738879da5b037ea865b77ec2a70b43a4639]

removed ShapeApperance


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [6b48b198a9eea883407110c9f06dda9de081dadc]

moved SymbolType here from ShapeApperance;; removed ShapeApperance


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [6e49507037e4164ef3e753eb951a18f158f7d588]

removed unused code


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [68780366d015eb2027b17f40db5138a68ed52114]

corrected include saver


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [a2ab949fbc9ca4c6a52f477d0f8733a2227785d2]

moved Geometry3D here from ShapeApperance


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [49971c26d3834ced03d9b9c1b3d71c7b5102e29b]

removed ShapeAppearance


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [1e30cd95778890b665fbb1dc9ded25df0946675d]

read symbol propertie sfrom model;; renamed LineProperties -> VLineProperties


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [225bb1e62b3aaea56c0c1c7b192c990d0d879896]

renamed LineProperties -> VLineProperties


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [13fe58fae0f1678d4e744d1084832215f781b7e1]

removed ShapeAppearance; added ShapeAppearance


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [793e6da982940f35096b90124397fc2af29ef565]

moved and renamed LineProperties -> VLineProperties


2003-11-13  Ingrid Halama  <iha@openoffice.org>  [9d41d6544b5f4b2289d6a66b6bc8da979c0fcc90]

provoke compiler error if include saver is not completed


2003-11-13  Björn Milcke  <bm@openoffice.org>  [ad568c194fc07630262e0401fa786b8d896d717a]

property Symbol -> SymbolProperties


2003-11-12  Björn Milcke  <bm@openoffice.org>  [9652622dd24f781cd8577da6538eaab315b2645f]

relative sizes to resize fonts without changing the model


2003-11-12  Ingrid Halama  <iha@openoffice.org>  [06efea9ceb38f2a6a1df830086fbc1a727ed0cc0]

enable symbols for LineCharts


2003-11-12  Ingrid Halama  <iha@openoffice.org>  [ce0eabb46e7089e47b0cb24dd59558c52354df33]

add symbols to proprtydialog


2003-11-12  Ingrid Halama  <iha@openoffice.org>  [226eebcd852e0d6c6e45d05cd39b2a37e763e7c5]

added method getSymbolTypeOfPoint


2003-11-12  Ingrid Halama  <iha@openoffice.org>  [c0c924fdeccdf4d7e31a5eaf2eba7453728fb79b]

changed methods createSymbol2/3D


2003-11-12  Ingrid Halama  <iha@openoffice.org>  [fda5dc7b1d6e60141b9f302a64aff31c5297dafa]

added DataPointSymbolSupplier


2003-11-12  Ingrid Halama  <iha@openoffice.org>  [305771d9449ecdda205cff18ec973331e47d036c]

add symbols to proprtydialog


2003-11-12  Björn Milcke  <bm@openoffice.org>  [4d68cb834409a3414fa36368aa4a2a45037e98da]

property Dimension of base class must be overloaded -- merging is not easy


2003-11-12  Björn Milcke  <bm@openoffice.org>  [0fd6a7c00868123d493625e46f309c9ce183280c]

+SymbolProperties


2003-11-11  Björn Milcke  <bm@openoffice.org>  [5cacda1abf222b4bbada3b020703c0beba88ff5a]

changeDiagram: copy properties of floor and wall to new diagram


2003-11-11  Björn Milcke  <bm@openoffice.org>  [d641c4663caf683287453a6cdb6e6f7f4637db83]

+PropertyHelper (helper method to copy all properties of a property set to another one)


2003-11-11  Björn Milcke  <bm@openoffice.org>  [e5f0c2d1e681ff4d975096fcfd1d9d0c24e21b2b]

helper method to copy all properties of a property set to another one


2003-11-11  Björn Milcke  <bm@openoffice.org>  [c80eb926bf12a737c9bff14e7160c5907db1b097]

avoid exceptions for properties that are not available


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [2f44debdfa3c7e78a2d0c787224c0f4703941b29]

added license text


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [c648561818464e737859c2abf57569a1b736f6a0]

fill object dialog dependent on charttype


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [ba29a389f07cbe68779d45cc9c59913e55194946]

moved local helping methods to new class ChartTypeHelper


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [c5e9b9965a51a4d4ddb8942b6ca96db26b3c00cb]

react on NULL input


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [324e98c9b0e0a91fb6b9b45f46596183574e4a2e]

added ChartTypeHelper


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [8eaeb98f10c8c5a1f32585e7995ead9a7dbaedda]

new


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [0a92fce1acdeb010aaf13242f0302d1ab6e32f80]

use model properties for 3D wall and floor


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [e911dac202fab35e0b6038c0af65d9764fe44dd5]

changed methods: createCube and createStripe


2003-11-10  Ingrid Halama  <iha@openoffice.org>  [12533d9baa88263d74fc2077e351fa484fb74719]

added diagram floor


2003-11-08  Ingrid Halama  <iha@openoffice.org>  [ea156d1fa00b73da1ab1429e179797ac2d17cb1c]

comment out unused code -> cleanup pending


2003-11-08  Ingrid Halama  <iha@openoffice.org>  [af8e0119c4714384366c72249cfeb61014253f15]

only comment


2003-11-08  Ingrid Halama  <iha@openoffice.org>  [072fa75a9f57e8c71e09e6a61539728520777017]

more properly initialize the dialog (e.g. pages dependent on charttype)


2003-11-08  Ingrid Halama  <iha@openoffice.org>  [709a266f47c7106f1cd30d13a9fda471abc8ab67]

added Splines


2003-11-08  Ingrid Halama  <iha@openoffice.org>  [51f13775694de0b402174c9fafd304a4057fe529]

added spline calculation (from old chart)


2003-11-08  Ingrid Halama  <iha@openoffice.org>  [7ed4608127b79f5d7b7db9ebd96b06120e2b8aaf]

added method getChartTypeOfSeries


2003-11-08  Ingrid Halama  <iha@openoffice.org>  [840497419ef572ca89eff7b0cd498631744afa6a]

some cleanup


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [9069c41482f28f455a042a3a09a1b6a118ffa014]

INTEGRATION: CWS geordi2q08 (1.22.284); FILE MERGED 2003/10/31 16:25:29 rt 1.22.284.1: #111934#: join CWS calc19


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [48929d040d4a9aaa08d104debc6e74b6077d72c4]

INTEGRATION: CWS geordi2q08 (1.16.284); FILE MERGED 2003/10/31 16:25:26 rt 1.16.284.1: #111934#: join CWS calc19


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [ebdb958513feb89dd5121f35196638241c4c3567]

INTEGRATION: CWS geordi2q08 (1.10.284); FILE MERGED 2003/10/31 16:25:25 rt 1.10.284.1: #111934#: join CWS calc19


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [0ad5e81ed6efd857aab3bc1862078d705f34df25]

INTEGRATION: CWS geordi2q08 (1.8.174); FILE MERGED 2003/10/31 16:25:23 rt 1.8.174.1: #111934#: join CWS calc19


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [5cb018ed77b378c25698bf02d3651c3fb1d64fd7]

INTEGRATION: CWS geordi2q08 (1.6.174); FILE MERGED 2003/10/31 16:25:21 rt 1.6.174.1: #111934#: join CWS calc19


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [520c8e78df1f38be355113861324c16035432153]

INTEGRATION: CWS geordi2q08 (1.33.130); FILE MERGED 2003/10/31 16:25:21 rt 1.33.130.1: #111934#: join CWS calc19


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [0dba441de526e7abb1d1238089f9716731adf5bd]

INTEGRATION: CWS geordi2q08 (1.48.134); FILE MERGED 2003/10/31 16:25:20 rt 1.48.134.1: #111934#: join CWS calc19


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [9cc8cde94e4e396f07e16b66927994c136e89f7e]

INTEGRATION: CWS calc17 (1.2.2); FILE MERGED 2003/10/27 16:02:27 dr 1.2.2.1: #100000# wrong extra semicolon


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [d9fd056f13a0e32100b4e18493c1177ff4dbfcfa]

INTEGRATION: CWS calc17 (1.2.2); FILE MERGED 2003/10/27 15:23:39 dr 1.2.2.1: #100000# wrong extra semicolon


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [3d52407a623c5d9198ca50a198833d3ad67b6adb]

INTEGRATION: CWS calc17 (1.76.30); FILE MERGED 2003/09/25 09:19:17 dr 1.76.30.1: #111786# typo


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [b3af63cfb2cda6a95f5ce5641111a1b336810c7e]

INTEGRATION: CWS calc17 (1.7.28); FILE MERGED 2003/09/25 09:05:17 dr 1.7.28.1: #111720# enable error box in validations by default


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [5c5c82bc68e8192ea92077a970a4a24ee0961433]

INTEGRATION: CWS calc17 (1.56.26); FILE MERGED 2003/10/27 11:46:54 dr 1.56.26.4: RESYNC: (1.58-1.59); FILE MERGED 2003/09/22 16:54:55 dr 1.56.26.3: #100887# reduce SST with hash table 2003/09/18 06:57:01 dr 1.56.26.2: RESYNC: (1.56-1.58); FILE MERGED 2003/08/13 15:10:51 dr 1.56.26.1: #110887# string handling changes


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [03cb924c03b4b8b4ccf10795026f75ac20eba9f6]

INTEGRATION: CWS calc17 (1.11.100); FILE MERGED 2003/08/18 14:15:09 dr 1.11.100.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [4845b625058395a3ad216763b3823bebeff5f79a]

INTEGRATION: CWS calc17 (1.18.4); FILE MERGED 2003/10/02 13:09:12 dr 1.18.4.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [ea3560eb2c59b1c96f2f462f40928fe46e90b581]

INTEGRATION: CWS calc17 (1.2.4); FILE MERGED 2003/09/09 09:58:55 jmarmion 1.2.4.1: #112154# add selected trace features to excel import.


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8f0a587fd42d6e6b61183af88cfb51565ab88d1]

INTEGRATION: CWS calc17 (1.8.28); FILE MERGED 2003/10/27 11:47:44 dr 1.8.28.6: RESYNC: (1.9-1.10); FILE MERGED 2003/10/02 13:06:18 dr 1.8.28.5: #101529# new NAME import, update of imp/exp link managers 2003/09/19 07:43:17 dr 1.8.28.4: #100887# preparations for SST optimisation 2003/09/18 06:59:10 dr 1.8.28.3: RESYNC: (1.8-1.9); FILE MERGED 2003/08/18 14:14:37 dr 1.8.28.2: #111865# page settings reimplemented 2003/08/13 15:08:34 dr 1.8.28.1: #110887# string handling changes


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [a3ad6b7d2f80769fbae969ac09b867fe09f1b457]

INTEGRATION: CWS calc17 (1.6.28); FILE MERGED 2003/10/02 13:17:05 dr 1.6.28.5: #112538# auto colors for BIFF3/BIFF4 2003/09/23 09:00:39 dr 1.6.28.4: #112154# resync fix: moved some constants 2003/09/18 06:59:05 dr 1.6.28.3: RESYNC: (1.6-1.7); FILE MERGED 2003/09/09 09:59:48 jmarmion 1.6.28.2: #112154# add selected trace features to excel import. 2003/08/18 14:14:36 dr 1.6.28.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [8a174c0586a6a6ecdcd18dcde3c959e03015bb18]

INTEGRATION: CWS calc17 (1.7.4); FILE MERGED 2003/10/27 11:47:39 dr 1.7.4.2: RESYNC: (1.7-1.8); FILE MERGED 2003/09/09 09:59:22 jmarmion 1.7.4.1: #112154# add selected trace features to excel import.


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [532f0cb5543793a804ea7de54a9236cfae78c939]

INTEGRATION: CWS calc17 (1.1.2); FILE ADDED 2003/08/18 14:14:32 dr 1.1.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [e675aa855540dbd62a76380aefbabb22020bf059]

INTEGRATION: CWS calc17 (1.1.2); FILE ADDED 2003/10/02 13:06:17 dr 1.1.2.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [e049e9532b0da5725805d32023448b7d52794d3a]

INTEGRATION: CWS calc17 (1.2.4); FILE MERGED 2003/09/18 08:46:31 dr 1.2.4.1: merge conflict after resync


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [255a47b0979cb081c4c806fc78bffc6ad25863bc]

INTEGRATION: CWS calc17 (1.7.100); FILE MERGED 2003/10/02 13:06:15 dr 1.7.100.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 06:58:33 dr 1.7.100.2: RESYNC: (1.7-1.9); FILE MERGED 2003/08/18 14:14:36 dr 1.7.100.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [1a8e90459b193cb578a32bb66d9ffc0202f3aa12]

INTEGRATION: CWS calc17 (1.6.4); FILE MERGED 2003/09/22 09:48:27 jmarmion 1.6.4.1: #109555# do not overwrite column default formatting


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [6d617a793f6ebc6bc085bb6b442f0acaa53b0b6c]

INTEGRATION: CWS calc17 (1.5.2); FILE MERGED 2003/10/02 13:06:15 dr 1.5.2.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 06:58:09 dr 1.5.2.2: RESYNC: (1.5-1.6); FILE MERGED 2003/08/18 14:14:36 dr 1.5.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [c6d407a7df21cd452c49735a91523a5419b5a9d7]

INTEGRATION: CWS calc17 (1.1.2); FILE ADDED 2003/08/18 14:14:31 dr 1.1.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [21a7037e456c690ed9997364172d704231ab7bd5]

INTEGRATION: CWS calc17 (1.4.4); FILE MERGED 2003/10/02 13:06:14 dr 1.4.4.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [cba5046a158c292660a446ed826d1f65424e244b]

INTEGRATION: CWS calc17 (1.3.84); FILE MERGED 2003/10/02 13:06:13 dr 1.3.84.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 06:57:55 dr 1.3.84.2: RESYNC: (1.3-1.4); FILE MERGED 2003/08/18 14:14:35 dr 1.3.84.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [c638de5b9560cc4ca1d776131ffc725bea259a36]

INTEGRATION: CWS calc17 (1.3.84); FILE MERGED 2003/09/18 06:57:50 dr 1.3.84.2: RESYNC: (1.3-1.4); FILE MERGED 2003/08/18 14:14:35 dr 1.3.84.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [8d2f2e49331c02c48a26222621f6e14e8d960dba]

INTEGRATION: CWS calc17 (1.6.78); FILE MERGED 2003/09/18 06:57:45 dr 1.6.78.2: RESYNC: (1.6-1.7); FILE MERGED 2003/08/22 09:06:04 jmarmion 1.6.78.1: #111767# omit the export of the default built-in number formats.


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [3977d3d0c2a9c0b600a6b27f59027317127fbaa4]

INTEGRATION: CWS calc17 (1.1.2); FILE ADDED 2003/09/22 16:54:42 dr 1.1.2.2: #100887# reduce SST with hash table 2003/09/19 07:43:16 dr 1.1.2.1: #100887# preparations for SST optimisation


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [191242b6efd334e082aa3d1109d1438da980197d]

INTEGRATION: CWS calc17 (1.3.124); FILE MERGED 2003/08/13 15:08:33 dr 1.3.124.1: #110887# string handling changes


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [a754308ae358ce4d632587555b24f13122fa149b]

INTEGRATION: CWS calc17 (1.6.4); FILE MERGED 2003/10/02 13:06:12 dr 1.6.4.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [c9569275aa19d1b565961c0e96761c7a57afdc9b]

INTEGRATION: CWS calc17 (1.4.78); FILE MERGED 2003/10/02 13:06:11 dr 1.4.78.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [51ed96702eb7d6f79d324597358679e9f8392d8c]

INTEGRATION: CWS calc17 (1.4.84); FILE MERGED 2003/10/02 13:06:10 dr 1.4.84.5: #101529# new NAME import, update of imp/exp link managers 2003/09/22 16:54:41 dr 1.4.84.4: #100887# reduce SST with hash table 2003/09/19 07:43:16 dr 1.4.84.3: #100887# preparations for SST optimisation 2003/09/18 06:57:39 dr 1.4.84.2: RESYNC: (1.4-1.6); FILE MERGED 2003/08/13 15:08:33 dr 1.4.84.1: #110887# string handling changes


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [89cc054610dfe81033574e9d67f478c1ed4a1ee1]

INTEGRATION: CWS calc17 (1.2.124); FILE MERGED 2003/09/22 16:54:41 dr 1.2.124.4: #100887# reduce SST with hash table 2003/09/19 07:43:15 dr 1.2.124.3: #100887# preparations for SST optimisation 2003/09/18 06:57:33 dr 1.2.124.2: RESYNC: (1.2-1.3); FILE MERGED 2003/08/18 14:14:35 dr 1.2.124.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [9e747ac76abea3221d3caab07badca2dac44c82e]

INTEGRATION: CWS calc17 (1.30.4); FILE MERGED 2003/10/27 11:47:02 dr 1.30.4.2: RESYNC: (1.30-1.31); FILE MERGED 2003/09/22 16:54:41 dr 1.30.4.1: #100887# reduce SST with hash table


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [085ffb17afad81fcf5dc58eaf1f397e8400ab9db]

INTEGRATION: CWS calc17 (1.29.84); FILE MERGED 2003/10/02 13:06:09 dr 1.29.84.2: #101529# new NAME import, update of imp/exp link managers 2003/08/18 14:14:34 dr 1.29.84.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [4c0bfb6fe0921707ba8b67ce88356992062f75d5]

INTEGRATION: CWS calc17 (1.6.124); FILE MERGED 2003/10/02 13:06:08 dr 1.6.124.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [9f4dc4a587fed6aa25ceab791f582489ecfc4b22]

INTEGRATION: CWS calc17 (1.22.2); FILE MERGED 2003/10/02 13:06:07 dr 1.22.2.2: #101529# new NAME import, update of imp/exp link managers 2003/08/18 14:14:34 dr 1.22.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [1bb683b94019dd2100692ba1620d0dbdeb739785]

INTEGRATION: CWS calc17 (1.7.100); FILE MERGED 2003/09/26 06:00:52 dr 1.7.100.1: #111667# HTML import: fill/merge empty cells in tables


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [13bbefa09a4d91376af83f01de58f4d942d81777]

INTEGRATION: CWS calc17 (1.4.2); FILE MERGED 2003/10/02 13:06:06 dr 1.4.2.4: #101529# new NAME import, update of imp/exp link managers 2003/09/22 16:54:40 dr 1.4.2.3: #100887# reduce SST with hash table 2003/09/18 06:57:16 dr 1.4.2.2: RESYNC: (1.4-1.6); FILE MERGED 2003/08/18 14:14:33 dr 1.4.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [0e8430cfda2cf923a95521b5660aa9b3c83721b8]

INTEGRATION: CWS calc17 (1.3.244); FILE MERGED 2003/10/02 13:06:05 dr 1.3.244.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [be98887b6219e3721ca8ea76d788cce0d7549361]

INTEGRATION: CWS calc17 (1.34.100); FILE MERGED 2003/09/19 07:43:15 dr 1.34.100.3: #100887# preparations for SST optimisation 2003/09/18 06:57:11 dr 1.34.100.2: RESYNC: (1.34-1.35); FILE MERGED 2003/08/18 14:14:33 dr 1.34.100.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [bb53e7dade182a7a5401e81ca96516d91aa61484]

INTEGRATION: CWS calc17 (1.49.2); FILE MERGED 2003/10/02 13:06:04 dr 1.49.2.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 06:57:06 dr 1.49.2.2: RESYNC: (1.49-1.50); FILE MERGED 2003/08/18 14:14:33 dr 1.49.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [bd076c612f23b8a774f1bf57183738613f28524e]

INTEGRATION: CWS calc17 (1.14.84); FILE MERGED 2003/08/18 14:14:32 dr 1.14.84.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [7e46188d879ea9ed3aad5c9e7192c22bfcd40ccb]

INTEGRATION: CWS calc17 (1.16.28); FILE MERGED 2003/09/26 06:00:32 dr 1.16.28.1: #111667# HTML import: fill/merge empty cells in tables


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [1be03539679baba710e7ee2564558a07a202be63]

INTEGRATION: CWS calc17 (1.3.114); FILE MERGED 2003/09/18 06:59:33 dr 1.3.114.2: RESYNC: (1.3-1.5); FILE MERGED 2003/08/18 14:13:19 dr 1.3.114.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [07bfe6da3c0e52a7d8971a5467beb6d6d68fe304]

INTEGRATION: CWS calc17 (1.2.4); FILE MERGED 2003/09/09 10:00:44 jmarmion 1.2.4.1: #112154# add selected trace features to excel import.


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [d9113f1e7366f7a772ba68e354c96652b107558a]

INTEGRATION: CWS calc17 (1.8.28); FILE MERGED 2003/10/27 11:48:34 dr 1.8.28.5: RESYNC: (1.10-1.11); FILE MERGED 2003/10/02 12:47:58 dr 1.8.28.4: #101529# new NAME import, update of imp/exp link managers 2003/09/18 07:02:24 dr 1.8.28.3: RESYNC: (1.8-1.10); FILE MERGED 2003/08/18 14:11:50 dr 1.8.28.2: #111865# page settings reimplemented 2003/08/13 15:10:23 dr 1.8.28.1: #110887# string handling changes


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [9e3be28ed70fbe9be6117078d248d5fda1b33920]

INTEGRATION: CWS calc17 (1.7.4); FILE MERGED 2003/10/02 13:16:56 dr 1.7.4.1: #112538# auto colors for BIFF3/BIFF4


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [c23529cf5de883642c7a079423f68ffe13144bf4]

INTEGRATION: CWS calc17 (1.7.4); FILE MERGED 2003/10/27 11:48:29 dr 1.7.4.2: RESYNC: (1.7-1.8); FILE MERGED 2003/09/09 10:01:07 jmarmion 1.7.4.1: #112154# add selected trace features to excel import.


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [20efa337b46022da67f4d2f52a197887fa0296c8]

INTEGRATION: CWS calc17 (1.1.2); FILE ADDED 2003/08/18 14:11:44 dr 1.1.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [ac5665cabbfd26bd8f0f34366d5344334574b8f5]

INTEGRATION: CWS calc17 (1.9.78); FILE MERGED 2003/10/27 11:48:16 dr 1.9.78.6: RESYNC: (1.10-1.11); FILE MERGED 2003/09/25 15:24:22 jmarmion 1.9.78.5: #109555# change DBG_ASSERT() text to be more accurate than previous check-in of same issue. 2003/09/22 09:48:57 jmarmion 1.9.78.4: #109555# do not overwrite column default formatting 2003/09/18 07:01:59 dr 1.9.78.3: RESYNC: (1.9-1.10); FILE MERGED 2003/09/09 10:01:29 jmarmion 1.9.78.2: #112154# add selected trace features to excel import. 2003/08/18 14:11:50 dr 1.9.78.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [efb3e30a8e6715b8399fee84a47103069cbb1017]

INTEGRATION: CWS calc17 (1.5.2); FILE MERGED 2003/10/02 12:47:56 dr 1.5.2.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 07:01:44 dr 1.5.2.2: RESYNC: (1.5-1.6); FILE MERGED 2003/08/18 14:11:50 dr 1.5.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [b815c6bb6c92310131f1e26e698116d25a20c551]

INTEGRATION: CWS calc17 (1.1.2); FILE ADDED 2003/09/09 10:01:56 jmarmion 1.1.2.2: #112154# add selected trace features to excel import. 2003/08/18 14:11:43 dr 1.1.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [cfbeaeb6d1f67a359910979b17e6200019161717]

INTEGRATION: CWS calc17 (1.5.4); FILE MERGED 2003/10/02 12:47:55 dr 1.5.4.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [8ca42ca2de76c7bb0845397dca674f82084e1b85]

INTEGRATION: CWS calc17 (1.5.84); FILE MERGED 2003/10/02 12:47:54 dr 1.5.84.4: #101529# new NAME import, update of imp/exp link managers 2003/09/18 07:01:27 dr 1.5.84.3: RESYNC: (1.5-1.7); FILE MERGED 2003/08/18 14:11:49 dr 1.5.84.2: #111865# page settings reimplemented 2003/08/13 15:10:23 dr 1.5.84.1: #110887# string handling changes


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [2e1a1d0bb66d359a9ee119697faed9b00b71d09c]

INTEGRATION: CWS calc17 (1.5.2); FILE MERGED 2003/10/27 11:48:11 dr 1.5.2.5: RESYNC: (1.7-1.8); FILE MERGED 2003/10/06 07:07:15 dr 1.5.2.4: RESYNC: (1.6-1.7); FILE MERGED 2003/10/02 12:47:52 dr 1.5.2.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 07:01:22 dr 1.5.2.2: RESYNC: (1.5-1.6); FILE MERGED 2003/09/09 10:02:18 jmarmion 1.5.2.1: #112154# add selected trace features to excel import.


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [f23b8878792e2ba350dd4fe3ce26c0108f6a9a59]

INTEGRATION: CWS calc17 (1.4.84); FILE MERGED 2003/10/02 12:47:51 dr 1.4.84.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 07:01:16 dr 1.4.84.2: RESYNC: (1.4-1.6); FILE MERGED 2003/08/18 14:11:49 dr 1.4.84.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [13c86bf85420b4a7f0ca552bf75c2534bdb3072c]

INTEGRATION: CWS calc17 (1.8.78); FILE MERGED 2003/09/19 07:42:38 dr 1.8.78.4: #100887# preparations for SST optimisation 2003/09/18 07:01:08 dr 1.8.78.3: RESYNC: (1.8-1.9); FILE MERGED 2003/08/22 09:07:14 jmarmion 1.8.78.2: #111767# - omit the export of the default built-in number formats. 2003/08/18 14:11:48 dr 1.8.78.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [00e6ef8593e4556d3d903852b14620a4c579343b]

INTEGRATION: CWS calc17 (1.1.2); FILE ADDED 2003/09/22 16:54:12 dr 1.1.2.2: #100887# reduce SST with hash table 2003/09/19 07:42:38 dr 1.1.2.1: #100887# preparations for SST optimisation


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [5937270ee77f0e6aee366c1f1ac12786ed1166cf]

INTEGRATION: CWS calc17 (1.7.4); FILE MERGED 2003/10/02 12:47:50 dr 1.7.4.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [bd18046a09bca4435ad4c08f755f400ce9cfa353]

INTEGRATION: CWS calc17 (1.1.2); FILE ADDED 2003/08/18 14:11:43 dr 1.1.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [2cd719f83771b8cc255af58d8ad2d128f94c6c2e]

INTEGRATION: CWS calc17 (1.4.78); FILE MERGED 2003/10/02 12:47:49 dr 1.4.78.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [3779b303928651fbc254ea595b306ff9528e6065]

INTEGRATION: CWS calc17 (1.6.26); FILE MERGED 2003/10/27 11:48:05 dr 1.6.26.6: RESYNC: (1.8-1.9); FILE MERGED 2003/10/02 12:47:48 dr 1.6.26.5: #101529# new NAME import, update of imp/exp link managers 2003/09/22 16:54:12 dr 1.6.26.4: #100887# reduce SST with hash table 2003/09/19 07:42:37 dr 1.6.26.3: #100887# preparations for SST optimisation 2003/09/18 07:01:01 dr 1.6.26.2: RESYNC: (1.6-1.8); FILE MERGED 2003/08/13 15:10:22 dr 1.6.26.1: #110887# string handling changes


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [692b7bc008cec91a02d2686111f56c7602dde60e]

INTEGRATION: CWS calc17 (1.3.124); FILE MERGED 2003/10/06 13:35:00 dr 1.3.124.9: #100887# reduce SST - compiler compatibility 2003/09/26 05:59:03 dr 1.3.124.8: #110405# INetURLObject 2003/09/23 09:49:28 dr 1.3.124.7: #100887# reduce SST with hash table, last changes 2003/09/22 16:54:11 dr 1.3.124.6: #100887# reduce SST with hash table 2003/09/18 08:46:07 dr 1.3.124.5: merge conflict after resync 2003/09/18 07:00:54 dr 1.3.124.4: RESYNC: (1.3-1.5); FILE MERGED 2003/08/18 14:11:48 dr 1.3.124.3: #111865# page settings reimplemented 2003/08/13 15:04:51 dr 1.3.124.2: #111781# set validity with macro to error type INFO 2003/08/13 14:51:26 dr 1.3.124.1: #111781# set validity with macro to error type INFO


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [d8d26952c9df3265bf83d7c79b83e4ff150a683d]

INTEGRATION: CWS calc17 (1.39.84); FILE MERGED 2003/10/02 12:47:45 dr 1.39.84.6: #101529# new NAME import, update of imp/exp link managers 2003/09/25 15:19:46 jmarmion 1.39.84.5: #109555# - fix for BIFF5 when applying column default XFs 2003/09/18 06:59:38 dr 1.39.84.4: RESYNC: (1.39-1.40); FILE MERGED 2003/09/09 10:02:38 jmarmion 1.39.84.3: #112154# add selected trace features to excel import. 2003/08/19 15:18:32 dr 1.39.84.2: #111865# missing page settings records in BIFF4 2003/08/18 14:11:48 dr 1.39.84.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [16324f54b8ff5c24493e0a6e29d1344fbab926b5]

INTEGRATION: CWS calc17 (1.15.100); FILE MERGED 2003/10/02 12:47:43 dr 1.15.100.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [3ebe2a72bf02c8a5b8a662cc1a9bea58351abdd4]

INTEGRATION: CWS calc17 (1.19.4); FILE MERGED 2003/10/27 11:48:01 dr 1.19.4.4: RESYNC: (1.20-1.21); FILE MERGED 2003/09/19 07:42:36 dr 1.19.4.3: #100887# preparations for SST optimisation 2003/09/18 07:00:48 dr 1.19.4.2: RESYNC: (1.19-1.20); FILE MERGED 2003/08/18 14:11:47 dr 1.19.4.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [60c059f3586713686a3974ac1000c5e56bd4d08a]

INTEGRATION: CWS calc17 (1.54.2); FILE MERGED 2003/10/27 11:47:56 dr 1.54.2.4: RESYNC: (1.55-1.56); FILE MERGED 2003/10/02 12:47:41 dr 1.54.2.3: #101529# new NAME import, update of imp/exp link managers 2003/09/09 10:03:03 jmarmion 1.54.2.2: #112154# add selected trace features to excel import. 2003/08/18 14:11:47 dr 1.54.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [2cd7a7f66ed5bffc66cf39414edeb713168a7f17]

INTEGRATION: CWS calc17 (1.42.84); FILE MERGED 2003/10/02 12:47:41 dr 1.42.84.3: #101529# new NAME import, update of imp/exp link managers 2003/08/22 09:23:20 jmarmion 1.42.84.2: #111896# modify active tab if scenarios present before it. 2003/08/18 14:11:47 dr 1.42.84.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [cdc8886e7ceff7bb7050361cc8ad37212afff15c]

INTEGRATION: CWS calc17 (1.64.26); FILE MERGED 2003/10/02 12:47:39 dr 1.64.26.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 07:00:37 dr 1.64.26.2: RESYNC: (1.64-1.66); FILE MERGED 2003/08/18 14:11:46 dr 1.64.26.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc9d2bb4be47469d2b9eab9c1aea386840bfb899]

INTEGRATION: CWS calc17 (1.26.82); FILE MERGED 2003/10/06 07:07:08 dr 1.26.82.2: RESYNC: (1.26-1.27); FILE MERGED 2003/10/02 12:47:37 dr 1.26.82.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [4d7b4c6cf0bd93fd9fc042d3bc30dd54a6f0249a]

INTEGRATION: CWS calc17 (1.85.2); FILE MERGED 2003/10/02 12:47:35 dr 1.85.2.4: #101529# new NAME import, update of imp/exp link managers 2003/09/18 07:00:30 dr 1.85.2.3: RESYNC: (1.85-1.86); FILE MERGED 2003/09/09 10:03:21 jmarmion 1.85.2.2: #112154# add selected trace features to excel import. 2003/08/18 14:11:46 dr 1.85.2.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec1572d1b3c11ab9ef7261c65cbb16a2b9bd7c46]

INTEGRATION: CWS calc17 (1.23.122); FILE MERGED 2003/10/02 12:47:32 dr 1.23.122.3: #101529# new NAME import, update of imp/exp link managers 2003/09/18 07:00:25 dr 1.23.122.2: RESYNC: (1.23-1.24); FILE MERGED 2003/09/09 10:03:39 jmarmion 1.23.122.1: #112154# add selected trace features to excel import.


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [b4d100e7f2dbca322cd0f70229f36be84a4fa0f6]

INTEGRATION: CWS calc17 (1.21.84); FILE MERGED 2003/10/02 12:47:30 dr 1.21.84.1: #101529# new NAME import, update of imp/exp link managers


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [72c80c16b739ebc9696b08be892a9477cd4219b6]

INTEGRATION: CWS calc17 (1.47.28); FILE MERGED 2003/09/22 16:54:11 dr 1.47.28.3: #100887# reduce SST with hash table 2003/09/18 07:00:14 dr 1.47.28.2: RESYNC: (1.47-1.48); FILE MERGED 2003/08/18 14:11:45 dr 1.47.28.1: #111865# page settings reimplemented


2003-11-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [be37b60b834804454a27a0827a6250617d8c4337]

INTEGRATION: CWS calc17 (1.18.84); FILE MERGED 2003/10/27 11:47:51 dr 1.18.84.3: RESYNC: (1.18-1.19); FILE MERGED 2003/09/22 09:49:22 jmarmion 1.18.84.2: #109555# do not overwrite column default formatting 2003/08/18 14:11:44 dr 1.18.84.1: #111865# page settings reimplemented


2003-11-04  Björn Milcke  <bm@openoffice.org>  [342f8da8f541c11e1f9122701576f4c1b98e4e96]

when copying legend, do not use old entries


2003-11-04  Björn Milcke  <bm@openoffice.org>  [94ed0fb708fa605d6878faf4af00b57204c1d33e]

DiagramHelper::changeDiagram


2003-11-04  Ingrid Halama  <iha@openoffice.org>  [7bd2b7a12e7e2627ef41d06df264bd1b31193cb8]

mark handles for series selection


2003-11-04  Ingrid Halama  <iha@openoffice.org>  [3f7d4b635c98029109ef01027c51584fb39efd7a]

handle unstacked series; removed unused normal polygon code


2003-11-04  Björn Milcke  <bm@openoffice.org>  [05f8742dbd20bd9f4a989c1d0bf9e1fd47c675a4]

-ChartTypeItemConverter


2003-11-04  Björn Milcke  <bm@openoffice.org>  [54c7030e0f7c5c25903a60a6ab043a255d92ba97]

include algorithm was missing for find_if


2003-11-04  Ingrid Halama  <iha@openoffice.org>  [833418d592a810bce5fb940160591dde3661f5a3]

added clipping for lines and stripes; removed problem with grids lying in front of series


2003-11-04  Ingrid Halama  <iha@openoffice.org>  [ace7ff0775fb62ce8171261a1c0d7cd6f648d303]

added Clipping


2003-11-04  Ingrid Halama  <iha@openoffice.org>  [f9c8dcd0d14adbb291a0706d568045102a3b1308]

added function getPointFromPoly


2003-11-04  Björn Milcke  <bm@openoffice.org>  [50e760070a21a6bd2934c328937a8d4d6433fa78]

const member may not be initialized in CTOR's body


2003-11-04  Björn Milcke  <bm@openoffice.org>  [fd8ddd6451fbc734cde37fd9188d83b5931d9b4f]

-GetNewPropertySet


2003-11-04  Björn Milcke  <bm@openoffice.org>  [2bb09c0b65bc4e31a16e21178279ce91088a9b9c]

-ChartTypeItemConverter


2003-11-04  Björn Milcke  <bm@openoffice.org>  [0abb7b09e6e99fdc90f757539de35cf25e078bd6]

ChartType concept: the template creates the diagram.  To determine with which template an existing Diagram was probably created, the data series tree is searched and according to the result the template is guessed. OldApi chart type support SubGrid added


2003-11-04  Ingrid Halama  <iha@openoffice.org>  [9de8c0e5a4ad04634389fa45e769e1591c861ce0]

added ==operator for Position3D


2003-11-03  Ingrid Halama  <iha@openoffice.org>  [f576d5a6586d74a9c19bcadacbabb244f47b2de0]

create a correct border for 3D stripe


2003-11-03  Ingrid Halama  <iha@openoffice.org>  [d1b9ccebbe3ac5ec465646bd3a1597d12553385d]

enable Line Width, Style and Transparency in method createLine3D (used e.g. for grids)


2003-11-02  Ingrid Halama  <iha@openoffice.org>  [8c435735c97cd54b0623d5e9b19ca8532be6f002]

added line chart


2003-10-31  Ingrid Halama  <iha@openoffice.org>  [c2d4516c409e2977acfb8e92946e2f13a925d64d]

rebuild after title edit


2003-10-31  Björn Milcke  <bm@openoffice.org>  [81683cfa724ac3a314fad7d725b1221dbb67273e]

change fill-style of area (and color to different one)


2003-10-31  Ingrid Halama  <iha@openoffice.org>  [5a5bf1f0a0a4742c033133236534e382d0ba28f7]

selection handling for single legendentries -> pretend to be a series


2003-10-31  Ingrid Halama  <iha@openoffice.org>  [67451b56e5fbf3a5cf163976aa499c9386b90a19]

correct selection handling for single legendentries (added a group shape around each entry)


2003-10-30  Ingrid Halama  <iha@openoffice.org>  [f4f63febc14ef285ac724e4bb55b2a71cf9be433]

correct mark handles for legend object


2003-10-30  Ingrid Halama  <iha@openoffice.org>  [a941f355a646ea420cc77d269f11677b1471293b]

rename indicator for mark handle object from Handles to MarkHandles


2003-10-30  Ingrid Halama  <iha@openoffice.org>  [7d4c3864726ef9f34f2522aab885171e8afdfa16]

correct automatic position for rotated title


2003-10-30  Ingrid Halama  <iha@openoffice.org>  [7e4b4fae841d1a1bd60280c43789316115a4173c]

prevent deleting view in text edit mode


2003-10-30  Björn Milcke  <bm@openoffice.org>  [04117df1f6531af9eb7d46497def0e677e627b75]

deliver libraries for installation set


2003-10-29  Björn Milcke  <bm@openoffice.org>  [c92bcb1c63d19243bdc71a6b637c981c5ac0008f]

XAnchor removed from AnchorPoint


2003-10-29  Oliver Bolte  <obo@openoffice.org>  [7df6247db704b349569521b3a32279a4ad365faa]

#100000# broken for unxsols4.pro


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [2ab6150c9a7e8b338c350caf40db04045fca44d4]

change auto position of diagram in respect to legend


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [d7f4f127719d7ef9eb66ccabf35149ed777ac44c]

changed right mouse click handling (context for contextmenu spec)


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [8894958e48fc022c69ec588dac3c9df81cdd580b]

paint problem with title after editing


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [6f4456fac7ff4ede1003e8cee4e5f7b8edf7751f]

added text-edit-outliner support


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [4ed8afd7648e915ee14cadef12ab75ab6c05523d]

method name change: DrawViewWrapper::G/getTextEditObject()


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [92538e2f22aa53db6e33397afbf3c51ec3621d4f]

method name change: G/getTextEditObject()


2003-10-28  Björn Milcke  <bm@openoffice.org>  [b02b7a0798d6bde11e2d602a8dfa528ba12a2003]

VLegend::changePosition changed (reference size)


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [c6c316844a5e94feaf3afe5e8352763b6c3b5ec8]

added text-edit-outliner support


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [732bd79aa5bb6f1d450a2397ae79aff243204db8]

added SID_TEXTEDIT support


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [4d7ca3e82c609b41ed7b2695071a8f99727f9b5e]

added ChartController_TextEdit.obj


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [0ed4bf950e16d025aa2389500cc249aba1fc2c23]

added Start/EndTextEdit and KeyInput


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [e04ec475d01b27285cf816d5ea411319d0401f00]

move method getObjectPropertySet to file/class ObjectIdentifier


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [fd6d7c4af5d3fbceb225e568f7f8b4fcb2be26a7]

move method executeDispatch_InsertSpecialCharacter to file ChartController_TextEdit.cxx


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [37da96cbb8686eb2df889c1ae06b267d4249fa09]

direct text edit and InsertSpecialCharacter dialog


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [d647edbe4ee5241ca07bcdfc615648b710c2f4b8]

added KeyInput


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [8db3473ef0ed97726b58fcdc146105e66666380e]

added Start/EndTextEdit and KeyInput


2003-10-28  Björn Milcke  <bm@openoffice.org>  [61ddc4a1977852f683bdfb4bbec760d2093589ee]

VLegend::changePosition changed (reference size)


2003-10-28  Björn Milcke  <bm@openoffice.org>  [3f1aea82ca799ace091b20897d90eb29d19efe81]

changePosition: make the relative position relative to rReferenceSize instead of rOutAvailableSpace.  Also make the same amount of space to the other side of the legend (only for standard positions)


2003-10-28  Ingrid Halama  <iha@openoffice.org>  [643d73555444dadd5881f4629a9093869c9aecc2]

change auto position of title and diagram


2003-10-22  Björn Milcke  <bm@openoffice.org>  [f481f7f3f1deba8b0c644c8daf5bfcc8eb7eea82]

unused variable removed


2003-10-22  Björn Milcke  <bm@openoffice.org>  [c32f46e2c0dc1bb16a70bf23289f27e7425a54f7]

+testChartType


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [13293bdb74240228d070b7719df4d0ce2569800f]

INTEGRATION: CWS formcelllinkage (1.8.268); FILE MERGED 2003/10/01 09:50:30 fs 1.8.268.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [0f002492441c0ffa01aaf2f73781b01a3396b22c]

INTEGRATION: CWS formcelllinkage (1.12.6); FILE MERGED 2003/10/01 09:50:29 fs 1.12.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [21b1abedf3428790af24c50cf374b4898249a2ac]

INTEGRATION: CWS formcelllinkage (1.1.6); FILE ADDED 2003/10/01 09:50:29 fs 1.1.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [df73f38b31a4072ec6fbc113facaeb08a8146a79]

INTEGRATION: CWS formcelllinkage (1.36.6); FILE MERGED 2003/10/01 09:50:28 fs 1.36.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [4ac6233752b240e4f44eed178b3b88d463fe5e3c]

INTEGRATION: CWS formcelllinkage (1.1.6); FILE ADDED 2003/10/01 09:50:28 fs 1.1.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [533dc6f146e587bd8e99f4de0401ee8f42e43232]

INTEGRATION: CWS formcelllinkage (1.1.6); FILE ADDED 2003/10/01 09:50:27 fs 1.1.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [eca67f34b113efe12935194f55265675a8901bee]

INTEGRATION: CWS formcelllinkage (1.77.160); FILE MERGED 2003/10/01 09:50:27 fs 1.77.160.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [6fbf1b2a6b4a4f1c789f0bfd42af4a2c3139aed9]

INTEGRATION: CWS formcelllinkage (1.1.6); FILE ADDED 2003/10/01 09:50:26 fs 1.1.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [c43151d1b136b4c2e732c78f1433c7d766d4e4e5]

INTEGRATION: CWS formcelllinkage (1.1.6); FILE ADDED 2003/10/01 09:50:25 fs 1.1.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [d706766620bf796d044785116e77ef6e9453e04e]

INTEGRATION: CWS formcelllinkage (1.58.10); FILE MERGED 2003/10/01 09:50:24 fs 1.58.10.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [61010e1130ad1a21c562b730aada0487c6df3e83]

INTEGRATION: CWS formcelllinkage (1.9.10); FILE MERGED 2003/10/01 09:50:23 fs 1.9.10.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [179d650a32876b6d524ffc572838e65ebb75843b]

INTEGRATION: CWS formcelllinkage (1.7.48); FILE MERGED 2003/10/01 09:50:23 fs 1.7.48.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [94d524b72cb380e3ce3a41837efa9cf6b449c5bc]

INTEGRATION: CWS formcelllinkage (1.4.76); FILE MERGED 2003/10/01 09:50:22 fs 1.4.76.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [ddd2d2884bd30e7994d2c15ed14a1a96fae6d345]

INTEGRATION: CWS formcelllinkage (1.4.12); FILE MERGED 2003/10/01 09:50:22 fs 1.4.12.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [59ac0ca07c25e35da8bbf7a763b93cd502ced5e2]

INTEGRATION: CWS formcelllinkage (1.3.76); FILE MERGED 2003/10/01 09:50:22 fs 1.3.76.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [5ba4daa6315abb28e83e1ddb3e85f0452ceb78b2]

INTEGRATION: CWS formcelllinkage (1.30.12); FILE MERGED 2003/10/01 09:50:21 fs 1.30.12.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [2dda2d75f83406ba5c4d380d18e576eb47fa087b]

INTEGRATION: CWS formcelllinkage (1.10.10); FILE MERGED 2003/10/02 13:37:50 fs 1.10.10.1: #100000# corrected merge error


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [fff36d122c335461a0ea7c91bc147b07017f3d68]

INTEGRATION: CWS formcelllinkage (1.7.48); FILE MERGED 2003/10/01 09:50:20 fs 1.7.48.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [0133eb4f0206e64d72382bd43c1d503dc4a08432]

INTEGRATION: CWS formcelllinkage (1.4.76); FILE MERGED 2003/10/01 09:50:19 fs 1.4.76.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [49b011fa358631bfb631c216db58a3fec71e18eb]

INTEGRATION: CWS formcelllinkage (1.10.10); FILE MERGED 2003/10/01 09:50:19 fs 1.10.10.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [f48f5977be923167051083b8bf8bcd0365f7abbd]

INTEGRATION: CWS formcelllinkage (1.7.6); FILE MERGED 2003/10/01 09:50:18 fs 1.7.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [e69c32011e1bc93ac6f0271dbb6242dce8a772d9]

INTEGRATION: CWS formcelllinkage (1.8.10); FILE MERGED 2003/10/01 09:50:18 fs 1.8.10.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [aeae2be8deeb48bbe6c2481d5fc2d1ba9d9c1e1f]

INTEGRATION: CWS formcelllinkage (1.20.34); FILE MERGED 2003/10/01 09:50:18 fs 1.20.34.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [0e633b031a5382dba8511aa19672be1d05363c15]

INTEGRATION: CWS formcelllinkage (1.55.8); FILE MERGED 2003/10/01 09:50:17 fs 1.55.8.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [23144a3c06ebfd5682044f112802176cd712b49f]

INTEGRATION: CWS formcelllinkage (1.18.120); FILE MERGED 2003/10/01 09:50:17 fs 1.18.120.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [15734664b61503ad354d4331217bb47159f18cc9]

INTEGRATION: CWS formcelllinkage (1.18.36); FILE MERGED 2003/10/01 09:50:16 fs 1.18.36.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [a5117e8fdf34fd4dac7686e10daae3a339db70e1]

INTEGRATION: CWS formcelllinkage (1.38.160); FILE MERGED 2003/10/01 09:50:16 fs 1.38.160.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [f3a08d251d6d0cfa8a32b4f548c043e5f14b46c5]

INTEGRATION: CWS formcelllinkage (1.53.22); FILE MERGED 2003/10/01 09:50:14 fs 1.53.22.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [d3fa61d717b5eab3e15c6074e4fd9324c9fe3300]

INTEGRATION: CWS formcelllinkage (1.7.268); FILE MERGED 2003/10/01 09:50:14 fs 1.7.268.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [a483254da5765b77b3612fb33e0ba7facd756d95]

INTEGRATION: CWS formcelllinkage (1.1.6); FILE ADDED 2003/10/01 09:50:13 fs 1.1.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [74d15edf6786a192d21ab978b97b07440c2745e7]

INTEGRATION: CWS formcelllinkage (1.68.34); FILE MERGED 2003/10/01 09:50:13 fs 1.68.34.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [70326aa131611bb14afe337e2410a4b566d9498f]

INTEGRATION: CWS formcelllinkage (1.17.262); FILE MERGED 2003/10/01 09:50:12 fs 1.17.262.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Oliver Bolte  <obo@openoffice.org>  [d710cf417561128fd488de19e30ff0fc0b5c66ee]

INTEGRATION: CWS formcelllinkage (1.1.6); FILE ADDED 2003/10/01 09:50:12 fs 1.1.6.1: #i18994# merging the changes from the CWS fs002


2003-10-21  Björn Milcke  <bm@openoffice.org>  [ff209b19175b3413a2a39c88eb573afe635312e8]

In case there is no legend in isVisible() do not pop up an assertion


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [ece09d16c5792fc26bc25f9da1db4dae5d056485]

INTEGRATION: CWS qdiet01 (1.3.292); FILE MERGED 2003/10/09 10:35:34 mh 1.3.292.1: del: unused file, #i18390#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [94e478754c15f4c115d2d66443338ee25a58026d]

INTEGRATION: CWS qdiet01 (1.57.60); FILE MERGED 2003/10/09 10:15:25 mh 1.57.60.1: remove old header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [ba0ccccba1a0ed9b7a7ac49720ad7c3e0c515864]

INTEGRATION: CWS qdiet01 (1.20.60); FILE MERGED 2003/10/09 10:15:25 mh 1.20.60.1: remove old header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [fd1a26cc11d8638db6600f8c18b593e814822d48]

INTEGRATION: CWS qdiet01 (1.22.60); FILE MERGED 2003/10/09 10:15:24 mh 1.22.60.1: remove old header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [95e7fc7212a89c10b6546bb228629e6880c40292]

INTEGRATION: CWS qdiet01 (1.15.60); FILE MERGED 2003/10/09 10:19:34 mh 1.15.60.1: remove old header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [dfe5c08b64f7e7a11e725d824a4397a2b560af58]

INTEGRATION: CWS qdiet01 (1.19.60); FILE MERGED 2003/10/09 10:15:24 mh 1.19.60.1: remove old header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [1fc8e680dcd808a9be18bfeb66f9e9f4bc314db0]

INTEGRATION: CWS qdiet01 (1.28.60); FILE MERGED 2003/10/09 10:15:23 mh 1.28.60.1: remove old header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [2ddd972bbf67da67494da07b85fc2d684637b211]

INTEGRATION: CWS qdiet01 (1.4.36); FILE MERGED 2003/10/09 10:33:53 mh 1.4.36.1: del: unused file, #i18390#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [359a9d675d9077c3c26e7b6c440c44abba41da4a]

INTEGRATION: CWS qdiet01 (1.5.290); FILE MERGED 2003/10/09 10:35:32 mh 1.5.290.1: del: unused file, #i18390#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [acdfb5230a4671f44163f3d00ba84a3c24328f66]

INTEGRATION: CWS qdiet01 (1.2.296); FILE MERGED 2003/10/09 10:19:33 mh 1.2.296.1: remove old header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [d9f54e73126c79ba10c8dd2f98f036b07ac43447]

INTEGRATION: CWS qdiet01 (1.2.162); FILE MERGED 2003/10/09 10:35:32 mh 1.2.162.1: del: unused file, #i18390#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [2b189d39f676dd539f8f8a0a1b7710700ea7562b]

INTEGRATION: CWS qdiet01 (1.3.162); FILE MERGED 2003/10/09 10:30:01 mh 1.3.162.1: del: unused file, #i18390#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [bd0710a4bbbca8d42c26a6d7964c91f47f736d2d]

INTEGRATION: CWS qdiet01 (1.1.1.1.308); FILE MERGED 2003/10/09 10:30:00 mh 1.1.1.1.308.1: del: unused file, #i18390#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [a2b41d047f5b79a4e5264752a1e50dd94625eaae]

INTEGRATION: CWS qdiet01 (1.2.162); FILE MERGED 2003/10/09 10:35:31 mh 1.2.162.1: del: unused file, #i18390#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [622e0d9461e6f8982daeb6da09694b112871250c]

INTEGRATION: CWS qdiet01 (1.8.290); FILE MERGED 2003/10/09 10:35:30 mh 1.8.290.1: del: unused file, #i18390#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [b69592e03c15ca78562a58bea5590b2efc0b9d34]

INTEGRATION: CWS qdiet01 (1.10.190); FILE MERGED 2003/10/10 09:44:12 mh 1.10.190.2: RESYNC: (1.10-1.11); FILE MERGED 2003/10/09 10:25:56 mh 1.10.190.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [1b69334fff99b43255dda59f41978e0d96cd9ab9]

INTEGRATION: CWS qdiet01 (1.1.1.1.308); FILE MERGED 2003/10/09 10:25:55 mh 1.1.1.1.308.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [ab2b4ab0a097b3daa37872c26fe40049ee669b75]

INTEGRATION: CWS qdiet01 (1.5.270); FILE MERGED 2003/10/09 10:25:54 mh 1.5.270.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [a5fd1bed5acee394383eba5ae92c3ba02d17a3cc]

INTEGRATION: CWS qdiet01 (1.24.188); FILE MERGED 2003/10/10 09:43:51 mh 1.24.188.2: RESYNC: (1.24-1.25); FILE MERGED 2003/10/09 10:25:52 mh 1.24.188.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [e93cbcff8e56a567c1a6145f46c117124eb38811]

INTEGRATION: CWS qdiet01 (1.3.266); FILE MERGED 2003/10/09 10:25:51 mh 1.3.266.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [fb8f7b585f4b0e4d04675db180a0f49e955c260e]

INTEGRATION: CWS qdiet01 (1.2.272); FILE MERGED 2003/10/09 10:25:51 mh 1.2.272.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [151b59dc144d8d3b24a7feb1fe078ce19adc76fe]

INTEGRATION: CWS qdiet01 (1.1.1.1.308); FILE MERGED 2003/10/09 10:25:50 mh 1.1.1.1.308.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [19b8c14a18f3557e28b80d62255379300a453d83]

INTEGRATION: CWS qdiet01 (1.4.304); FILE MERGED 2003/10/09 10:25:50 mh 1.4.304.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [07c1238c2efd31391ca3a30e55c08ce4a469a700]

INTEGRATION: CWS qdiet01 (1.6.266); FILE MERGED 2003/10/09 10:25:49 mh 1.6.266.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [ed690f2859527c3568d5099ad4c04b70c1932243]

INTEGRATION: CWS qdiet01 (1.6.264); FILE MERGED 2003/10/09 10:25:49 mh 1.6.264.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [5429095bec5cd696544592333000b5b337d8f658]

INTEGRATION: CWS qdiet01 (1.9.264); FILE MERGED 2003/10/09 10:25:49 mh 1.9.264.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [7035c9ffe12fd247b4354d911d815e9bf20d7e28]

INTEGRATION: CWS qdiet01 (1.1.1.1.308); FILE MERGED 2003/10/09 10:25:48 mh 1.1.1.1.308.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [0bef84afae2fa640003f0a6fe554f02d1ff5ef96]

INTEGRATION: CWS qdiet01 (1.6.154); FILE MERGED 2003/10/09 10:25:48 mh 1.6.154.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [2d30c2ecb69f2158e64ae13ea7d6ec53906ff7e7]

INTEGRATION: CWS qdiet01 (1.3.266); FILE MERGED 2003/10/09 10:25:48 mh 1.3.266.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [ef42b1279fb4a8aea872a25cdae43ede1e781899]

INTEGRATION: CWS qdiet01 (1.1.1.1.308); FILE MERGED 2003/10/09 10:25:47 mh 1.1.1.1.308.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [ef96a1cdb65b98fa3d5912faffc7fdb73c4dbed6]

INTEGRATION: CWS qdiet01 (1.11.188); FILE MERGED 2003/10/10 09:47:39 mh 1.11.188.2: RESYNC: (1.11-1.12); FILE MERGED 2003/10/09 10:25:47 mh 1.11.188.1: correct header, #i19939#


2003-10-20  Oliver Bolte  <obo@openoffice.org>  [6631e3ec71d957586691b47d5d69b2672945fcd6]

INTEGRATION: CWS qdiet01 (1.4.154); FILE MERGED 2003/10/09 10:25:46 mh 1.4.154.1: correct header, #i19939#


2003-10-20  Björn Milcke  <bm@openoffice.org>  [0ed91548827318790c160f3c8d396186f8b22953]

changePosition corrected


2003-10-20  Björn Milcke  <bm@openoffice.org>  [b79a58b62012b6ec8554bdf2cd75eac45e121f10]

positioning concept applied to legend


2003-10-17  Björn Milcke  <bm@openoffice.org>  [ea6936eed903097b988e41873ddafb8ab5a49ebf]

warnings removed (Linux)


2003-10-17  Björn Milcke  <bm@openoffice.org>  [ad4a919c6fb255b132efb4617981b02663da7e6d]

PropertyMapper::setMultiProperties: take a property set rahter than a shape as param


2003-10-17  Björn Milcke  <bm@openoffice.org>  [8bee045ffbc98f43aa2dff655a190e66e20b99a9]

render PageBackground as shape, the page is not accessible


2003-10-17  Björn Milcke  <bm@openoffice.org>  [149cb0e110b496cdb9bb0812a5353cd337e11ba7]

dispose, page background


2003-10-17  Björn Milcke  <bm@openoffice.org>  [f1969328f0110521e9b07ce9369aef2663908e6b]

+Area test


2003-10-17  Björn Milcke  <bm@openoffice.org>  [058c289c0c89825d6d1ee41a83d7797bc217846a]

model representation of the former ChartArea


2003-10-17  Björn Milcke  <bm@openoffice.org>  [fad3a10e16a7be069e12a57d3f810d46d046f8f0]

+PageBackground


2003-10-17  Björn Milcke  <bm@openoffice.org>  [9e0b51066b9887d11f059f77fae87bf2404a816d]

 catch exceptions when properties are not found


2003-10-17  Björn Milcke  <bm@openoffice.org>  [c47fc0e1002bcf1e52a5ecdda68477b5b25538a5]

+page


2003-10-17  Björn Milcke  <bm@openoffice.org>  [35e2f7554bbac422bfacb96271133dd36e44339a]

-OSL_TRACE


2003-10-16  Björn Milcke  <bm@openoffice.org>  [62f76a36265a826680ce264e1867e766f4bdb19f]

enable Format/Legend menu


2003-10-16  Björn Milcke  <bm@openoffice.org>  [8cee3ff338b52b94eb1044a9383233520fd63179]

enable Insert/Legend menu


2003-10-16  Björn Milcke  <bm@openoffice.org>  [564834117da0e0b48b60539a66247d79e37cb7c4]

Model-Legend: +Property "Show" to determine whether it is shown or not.


2003-10-16  Björn Milcke  <bm@openoffice.org>  [236b21818e5f276372b74778b2469191768ff687]

using utl::OEventListenerAdapter in ChartDocumentWrapper => +UNOTOOLSLIB


2003-10-16  Björn Milcke  <bm@openoffice.org>  [8029cdb006dbd0520f6ba1bdf5f3e39bc2041009]

redundant comments removed


2003-10-16  Björn Milcke  <bm@openoffice.org>  [a1efc65678b5e31f04b93bc00af969d342645f2e]

closing enabled again


2003-10-16  Björn Milcke  <bm@openoffice.org>  [ba6bbb59be5e0c43d76f37814a22bebc4c149103]

allow legend entries with more than one line


2003-10-15  Björn Milcke  <bm@openoffice.org>  [53c609a0cf10fda0c856968a5bdc3588d3394f4f]

calling close() causes an error: Investigate!


2003-10-15  Björn Milcke  <bm@openoffice.org>  [d65717816ed08ff74b9736244b4b098f7e5ef166]

+test for legend


2003-10-15  Björn Milcke  <bm@openoffice.org>  [81720d0725904e9a73317eacf4a0441739bab396]

balanced LegendExpansion possible


2003-10-15  Björn Milcke  <bm@openoffice.org>  [8f795beac2c4dd558e65ce3a0a86b2e8b1893c53]

Multicolumn-Legend.  Readability improved


2003-10-15  Kurt Zenker  <kz@openoffice.org>  [840ac2173b16b91c40b3410e48ac294e7617b6f4]

INTEGRATION: CWS extleading (1.35.86); FILE MERGED 2003/07/07 08:09:36 fme 1.35.86.1: #110641# Feature - External leading


2003-10-14  Björn Milcke  <bm@openoffice.org>  [f59560ced1ac8c571cb76cef2e06f462424a0138]

first version of flat legend


2003-10-14  Björn Milcke  <bm@openoffice.org>  [76232c758b3750ed4a3a1cb679e87f2b8b14bde2]

exceptions -> assertion


2003-10-14  Björn Milcke  <bm@openoffice.org>  [fbc6802add912e318b3b76f914cca077b259c0e0]

Legend Positioning


2003-10-10  Björn Milcke  <bm@openoffice.org>  [ef9ff62d630d64087abc307082fd14fcd6f1744b]

unotools needed (ItemConverter uses OEventListenerAdapter)


2003-10-10  Björn Milcke  <bm@openoffice.org>  [b6415b7515c0a0b5dd68bde480e041dbed87b641]

some minor changes for legend


2003-10-09  Björn Milcke  <bm@openoffice.org>  [e368f0b16e559c11ae85e9d192d381fa185bac1e]

legend properties


2003-10-09  Björn Milcke  <bm@openoffice.org>  [662c66d55cc78768b4498f6909fbff7434f030b1]

getSeriesByIdentifier: identifiers must be equal (prefix is not enough, e.g. @ser1 is prefix of @ser10)


2003-10-08  Björn Milcke  <bm@openoffice.org>  [e17a4d4498dc9e8e20501a2defded158a9013abc]

first implementation of legend


2003-10-08  Björn Milcke  <bm@openoffice.org>  [f2b61c7dfb6be0608fd4484878c920f55a397e1c]

label for "Marmelade" missing


2003-10-08  Björn Milcke  <bm@openoffice.org>  [44aef8a7fe569563096a2b78ad30e5c4d1025e87]

enable after() method again to close the document


2003-10-08  Rüdiger Timm  <rt@openoffice.org>  [96a230adb426abd9c0a6d1299d030f97f5d3110e]

#100000# needs header from sch


2003-10-07  Björn Milcke  <bm@openoffice.org>  [a5384dba162d2ea37114468646abebed2d33ee02]

ItemConverter rework/compiler warnings removed (gcc Linux)


2003-10-07  Björn Milcke  <bm@openoffice.org>  [f2409df50399865537a25e78845c6d8f0102e980]

compiler warnings removed (gcc Linux)


2003-10-07  Björn Milcke  <bm@openoffice.org>  [560cb6db2a946650ada4312bac101ca419ab1beb]

; after } in inline-methods are illegal


2003-10-07  Björn Milcke  <bm@openoffice.org>  [2f542088223f9229386689bf027d584ddb3810be]

preparation for ItemConverter to be moved to a different module


2003-10-07  Björn Milcke  <bm@openoffice.org>  [c0c73404b8248a86a7e50f55a4ac1715fc20580f]

MinimumAndMaximumSupplier: virtual inlines removed => abstract


2003-10-07  Vladimir Glazounov  <vg@openoffice.org>  [1375220b0fd4689d97e72a7072803474c77c888a]

INTEGRATION: CWS net2003 (1.13.100); FILE MERGED 2003/08/12 15:34:39 obo 1.13.100.1: #11136# .net 2003 (cast)


2003-10-07  Björn Milcke  <bm@openoffice.org>  [ab418266f4ef1a762aac7086e720e2dc3b4149e5]

implementation of IsValid was missing


2003-10-06  Björn Milcke  <bm@openoffice.org>  [742639856ee6864f74be556924dc9a2a71560d0e]

TextRotation


2003-10-06  Björn Milcke  <bm@openoffice.org>  [9c161f1970d19a0f88f991b3940394cb048afd24]

Axis: +one Line- and Character Property


2003-10-06  Björn Milcke  <bm@openoffice.org>  [e50e45611eae2e3633ffb3fb36d87ca4acdecab3]

use global LineProperties instead of own ones (esp. due to global ids)


2003-10-06  Björn Milcke  <bm@openoffice.org>  [bd032204ee4ce5114f42d531996e74bd345d1585]

+Origin, Logarithmic


2003-10-06  Björn Milcke  <bm@openoffice.org>  [7f1d61227fb014c11984cd23dc72835318b0d099]

TitleHelper problems


2003-10-06  Björn Milcke  <bm@openoffice.org>  [79e114097d618fa856d8a6c13c3baaf2578845fe]

LIBPATTERN was invalid for Solaris


2003-10-06  Björn Milcke  <bm@openoffice.org>  [d3c7b33203b5c37a7766ffe9cdb71e56086b5299]

missing return-value


2003-10-06  Björn Milcke  <bm@openoffice.org>  [6f96a3c4e729e64210287b7366b9ff4fcae5ca64]

correct version name of office


2003-10-06  Björn Milcke  <bm@openoffice.org>  [9acc1bc8616f03500a78092c2cdc939b6a500a0d]

some changes due to project-name switch, and adaption for OOo


2003-10-06  Björn Milcke  <bm@openoffice.org>  [c7623b4823e31f0eff82a64c7a43d8f50c3a5dd4]

initial import


2003-09-25  Hans-Joachim Lankenau  <hjs@openoffice.org>  [039524721a56387ce25a6738acabdea4b6c40c2f]

INTEGRATION: CWS os20 (1.10.256); FILE MERGED 2003/09/15 11:53:49 os 1.10.256.1: #110356# SID_SHOW_HIDDEN/SID_SHOW_FORMS removed


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [bfeee789946532f4ef1348c4318dd0f57d07c5f5]

INTEGRATION: CWS fwkq1 (1.17.50); FILE MERGED 2003/09/12 15:43:24 mba 1.17.50.5: #112213#: check readonly state of Medium 2003/08/28 15:26:31 mba 1.17.50.4: RESYNC: (1.18-1.19); FILE MERGED 2003/07/17 12:15:01 mba 1.17.50.3: #110843#: get rid of factories 2003/07/15 15:06:36 mba 1.17.50.2: RESYNC: (1.17-1.18); FILE MERGED 2003/07/14 16:28:14 mba 1.17.50.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [d58aaccc1f05033cd05569387364fc0cdea4d51f]

INTEGRATION: CWS fwkq1 (1.1.2); FILE ADDED 2003/07/14 16:29:59 mba 1.1.2.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [1f16a954d2cc0412181396f296e8e3fe49ea0e2d]

INTEGRATION: CWS fwkq1 (1.1.1.1.220); FILE MERGED 2003/07/14 16:28:14 mba 1.1.1.1.220.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [5b736e444a16ac77d2aa21eedee4c405092e275f]

INTEGRATION: CWS fwkq1 (1.20.176); FILE MERGED 2003/07/14 16:28:13 mba 1.20.176.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [1586f0611ff9abf0298efc1733d636362c42964f]

INTEGRATION: CWS fwkq1 (1.16.74); FILE MERGED 2003/07/14 16:28:12 mba 1.16.74.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [afb2b0da14196995af190973f4a0e4c991110276]

INTEGRATION: CWS fwkq1 (1.13.50); FILE MERGED 2003/07/14 16:28:12 mba 1.13.50.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [21fa48a1237f5a6ea2ef3cf960db5b474a778bb2]

INTEGRATION: CWS fwkq1 (1.3.66); FILE MERGED 2003/07/14 16:28:11 mba 1.3.66.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [5c3df6bebde0ef029e44783a0699f5ecd34b599a]

INTEGRATION: CWS fwkq1 (1.1.2); FILE ADDED 2003/07/14 16:26:59 mba 1.1.2.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [599c789f2b9cc29351b79f5be576c00d7d441cb6]

INTEGRATION: CWS fwkq1 (1.1.2); FILE ADDED 2003/09/12 15:43:20 mba 1.1.2.5: #112213#: check readonly state of Medium 2003/08/26 15:28:04 mba 1.1.2.4: #110843#: real typedection services for all types, no default detector 2003/08/19 15:54:23 mba 1.1.2.3: #110843#: small bug in filterdetection 2003/07/17 12:59:56 mba 1.1.2.2: #110843#: optimize type detection 2003/07/14 16:26:59 mba 1.1.2.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [9f1e923332c38d026cca75788111608a4d76fd8f]

INTEGRATION: CWS fwkq1 (1.11.66); FILE MERGED 2003/07/14 16:28:10 mba 1.11.66.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [f2cc15d2bee2bf53798559733c0423f0ddcc28ef]

INTEGRATION: CWS fwkq1 (1.8.176); FILE MERGED 2003/07/14 16:28:10 mba 1.8.176.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [e9ddaa5a8f36089be17d0114507c9f6d05375a24]

INTEGRATION: CWS fwkq1 (1.4.182); FILE MERGED 2003/07/14 16:28:10 mba 1.4.182.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [78f0c7fd769f2a785ae42cc9c034fb1fec6045de]

INTEGRATION: CWS fwkq1 (1.35.18); FILE MERGED 2003/07/17 12:14:59 mba 1.35.18.2: #110843#: get rid of factories 2003/07/14 16:28:09 mba 1.35.18.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [9c313346c772a2f951e2bb05aee6835c521f04bf]

INTEGRATION: CWS fwkq1 (1.1.2); FILE ADDED 2003/07/14 16:27:13 mba 1.1.2.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [ee13fd7d87eb16da01245d5dd8b86f553a43acc2]

INTEGRATION: CWS fwkq1 (1.10.178); FILE MERGED 2003/07/14 16:28:09 mba 1.10.178.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [5637e1879e35f5d5e8fa48500a81aa7260a60dcf]

INTEGRATION: CWS fwkq1 (1.14.66); FILE MERGED 2003/07/14 16:28:08 mba 1.14.66.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [ad48eab0f0790cc49b77bc06f12e4f993037f75b]

INTEGRATION: CWS fwkq1 (1.7.176); FILE MERGED 2003/07/14 16:28:08 mba 1.7.176.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [aa1e2457e0750f99e5f3342e7120506a28bee415]

INTEGRATION: CWS fwkq1 (1.6.176); FILE MERGED 2003/07/14 16:28:07 mba 1.6.176.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [37e0cc2309820ffa0f108887bf86988630ac1ca7]

INTEGRATION: CWS fwkq1 (1.5.178); FILE MERGED 2003/07/14 16:28:06 mba 1.5.178.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [ea33353e07a367f90172890608cfc456aebd52bf]

INTEGRATION: CWS fwkq1 (1.24.18); FILE MERGED 2003/07/14 16:28:06 mba 1.24.18.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [81ebca907c148b804b69e0b4fd90484dd8707a90]

INTEGRATION: CWS fwkq1 (1.8.74); FILE MERGED 2003/07/14 16:28:05 mba 1.8.74.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [f2d6c1992e44ef55018516a215f11fffe4ebd244]

INTEGRATION: CWS fwkq1 (1.14.178); FILE MERGED 2003/07/14 16:28:04 mba 1.14.178.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [30c0c1e8c5b756291114cec027d78ae40bdcc5f8]

INTEGRATION: CWS fwkq1 (1.25.52); FILE MERGED 2003/07/14 16:28:03 mba 1.25.52.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [a598f12c7a937695e30c5021fd4d0d3fcce3b294]

INTEGRATION: CWS fwkq1 (1.62.18); FILE MERGED 2003/07/14 16:28:03 mba 1.62.18.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [7a6c9688f75dff58d7bfc2510a501bbe95f5cb5d]

INTEGRATION: CWS fwkq1 (1.35.24); FILE MERGED 2003/07/14 16:28:01 mba 1.35.24.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [fb0ff7fd32e827d219c767dd39524787103897eb]

INTEGRATION: CWS fwkq1 (1.14.74); FILE MERGED 2003/07/14 16:28:00 mba 1.14.74.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [25ad82dc828c50d8e5493a3becd63426b89ddbcf]

INTEGRATION: CWS fwkq1 (1.11.66); FILE MERGED 2003/07/14 16:28:00 mba 1.11.66.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [3beef4c88975b6ad27f3c8e4916f9fe11735c177]

INTEGRATION: CWS fwkq1 (1.7.72); FILE MERGED 2003/08/13 15:54:06 mba 1.7.72.2: RESYNC: (1.7-1.8); FILE MERGED 2003/07/14 16:27:58 mba 1.7.72.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [f4e5bf819a2793a51fd77be4c0b95ba864196a5e]

INTEGRATION: CWS fwkq1 (1.4.208); FILE MERGED 2003/07/14 16:27:57 mba 1.4.208.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [e179a67aaa44718c9ea33cc02c1a1c5056ac1ebc]

INTEGRATION: CWS fwkq1 (1.2.12); FILE MERGED 2003/08/13 15:58:37 mba 1.2.12.3: RESYNC: (1.3-1.5); FILE MERGED 2003/07/15 15:17:30 mba 1.2.12.2: RESYNC: (1.2-1.3); FILE MERGED 2003/07/14 16:27:56 mba 1.2.12.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [17ea05a25c5e5e427b036c86001ed299d7a7fccd]

INTEGRATION: CWS fwkq1 (1.26.30); FILE MERGED 2003/07/14 16:27:55 mba 1.26.30.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [d63eeca86aac42ab48aa9b3fade32da6daf10dec]

INTEGRATION: CWS fwkq1 (1.20.74); FILE MERGED 2003/07/14 16:27:53 mba 1.20.74.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [bc185f1cebdaca08a0f0c11092a82c29b0931ec6]

INTEGRATION: CWS fwkq1 (1.19.182); FILE MERGED 2003/07/14 16:27:53 mba 1.19.182.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [486ef63eff385ca6922928aa53b83440f01d9961]

INTEGRATION: CWS fwkq1 (1.17.182); FILE MERGED 2003/07/14 16:27:52 mba 1.17.182.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [47d3bec2f6fc596fcb752e83eb8e012ebe08198f]

INTEGRATION: CWS fwkq1 (1.10.74); FILE MERGED 2003/08/28 15:37:56 mba 1.10.74.3: RESYNC: (1.10-1.11); FILE MERGED 2003/08/19 08:05:49 mba 1.10.74.2: #110843#: legacy files removed 2003/07/14 16:27:52 mba 1.10.74.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [f433ee09578a5be1768bbfd10c26e997b3a42c7f]

INTEGRATION: CWS fwkq1 (1.12.24); FILE MERGED 2003/07/14 16:27:51 mba 1.12.24.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [b066c13d56dbae2ae8ac9759ab4dbe98f3321cd6]

INTEGRATION: CWS fwkq1 (1.2.74); FILE MERGED 2003/07/14 16:27:50 mba 1.2.74.1: #110843#: get rid of factories


2003-09-19  Rüdiger Timm  <rt@openoffice.org>  [cc3d79aaf8a4605a600375d76c78be0e0e71ee53]

INTEGRATION: CWS fwkq1 (1.14.18); FILE MERGED 2003/07/17 12:14:58 mba 1.14.18.1: #110843#: get rid of factories


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [8a4cb9e53d8ca2d3a9e3d4d8f10f1fa49c957587]

INTEGRATION: CWS buildopt02 (1.19.18); FILE MERGED 2003/09/15 10:11:12 rt 1.19.18.1: #112240# clean up


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [9e2a245f7ef57166e4a06a3da80815dacdd57099]

INTEGRATION: CWS buildopt02 (1.6.150); FILE MERGED 2003/09/12 16:06:05 rt 1.6.150.1: #112240# obsolete dir jobs removed


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [092d276d6e7bc011d3f71e35446afc628046a664]

INTEGRATION: CWS calc16 (1.55.46); FILE MERGED 2003/09/15 11:26:33 dr 1.55.46.6: RESYNC: (1.56-1.57); FILE MERGED 2003/08/04 14:08:43 dr 1.55.46.5: merge conflicts 2003/08/04 12:08:13 dr 1.55.46.4: RESYNC: (1.55-1.56); FILE MERGED 2003/07/18 17:10:42 dr 1.55.46.3: #110656# export of cond. formats reworked 2003/07/17 15:20:13 dr 1.55.46.2: #110656# import of cond. formats reworked 2003/07/11 09:46:25 jmarmion 1.55.46.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [45a207e0e21afacf2726260d4defde8136b5d5f1]

INTEGRATION: CWS calc16 (1.17.64); FILE MERGED 2003/07/17 10:34:42 jmarmion 1.17.64.1: #i16010# Disable Change Tracking if User Names stream not present in Excel import


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [2e58e4aa351df3fd74f9de25458c9bff5d6de903]

INTEGRATION: CWS calc16 (1.7.20); FILE MERGED 2003/08/04 12:09:13 dr 1.7.20.2: RESYNC: (1.7-1.8); FILE MERGED 2003/07/17 15:19:51 dr 1.7.20.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [0865b55ed8bf2522fdeab376c0bd39257ef4bb5a]

INTEGRATION: CWS calc16 (1.5.48); FILE MERGED 2003/08/08 11:52:47 dr 1.5.48.5: #110656# adjust color count for palette export 2003/08/04 12:09:08 dr 1.5.48.4: RESYNC: (1.5-1.6); FILE MERGED 2003/07/18 17:10:06 dr 1.5.48.3: #110656# export of cond. formats reworked 2003/07/17 15:19:51 dr 1.5.48.2: #110656# import of cond. formats reworked 2003/07/11 09:42:33 jmarmion 1.5.48.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [795a2be36550d85726c8061aca40098c603341a8]

INTEGRATION: CWS calc16 (1.2.48); FILE MERGED 2003/08/04 12:08:53 dr 1.2.48.2: RESYNC: (1.2-1.3); FILE MERGED 2003/07/15 14:56:04 dr 1.2.48.1: #110190# ignore old Edit fields


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [e396e1778d0a1492f6f83f2f6d5c5ef377019165]

INTEGRATION: CWS calc16 (1.1.2); FILE ADDED 2003/09/15 14:23:28 dr 1.1.2.3: #110656# merge conflict 2003/07/18 17:10:06 dr 1.1.2.2: #110656# export of cond. formats reworked 2003/07/17 15:19:50 dr 1.1.2.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [f8f29e8a7cdfdb5c20c6f68436a0394ea04dde0d]

INTEGRATION: CWS calc16 (1.7.64); FILE MERGED 2003/09/15 11:27:03 dr 1.7.64.6: RESYNC: (1.7-1.8); FILE MERGED 2003/07/17 15:19:49 dr 1.7.64.5: #110656# import of cond. formats reworked 2003/07/11 12:58:15 jmarmion 1.7.64.4: #i14890# - use the Excel defaults on import of xls with no Top/Bottom/Right/Left Margins 2003/07/11 10:57:21 jmarmion 1.7.64.3: #110260# Remove usage of com::sun::star::awt::CharSet 2003/07/11 10:39:56 jmarmion 1.7.64.2: #110246# Support for Excel built-in Hyperlink/Followed_Hyperlink cell styles 2003/07/11 09:43:15 jmarmion 1.7.64.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [3396e0b1bfbf23c7d778ca2a82200a0a1265df23]

INTEGRATION: CWS calc16 (1.5.48); FILE MERGED 2003/07/18 17:10:05 dr 1.5.48.2: #110656# export of cond. formats reworked 2003/07/17 15:19:49 dr 1.5.48.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [d92ee6f456a0520e878354059ebab012129b566b]

INTEGRATION: CWS calc16 (1.4.48); FILE MERGED 2003/08/11 11:28:08 dr 1.4.48.2: RESYNC: (1.4-1.5); FILE MERGED 2003/07/17 15:19:49 dr 1.4.48.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [381819bd87159c227ecd5c945ef489f82817a413]

INTEGRATION: CWS calc16 (1.3.48); FILE MERGED 2003/08/08 09:31:44 jmarmion 1.3.48.1: #i15367# - Cached results of DDE links not imported


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [4ae75f94d353b770937115f3e335ae59625ca7a2]

INTEGRATION: CWS calc16 (1.3.48); FILE MERGED 2003/08/12 07:05:34 dr 1.3.48.2: #i15367# missing dtor declaration 2003/08/08 09:31:15 jmarmion 1.3.48.1: #i15367# - Cached results of DDE links not imported


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [db96dedd1ad5a5f9f5cdc8474ad712c263192478]

INTEGRATION: CWS calc16 (1.3.48); FILE MERGED 2003/07/17 15:19:48 dr 1.3.48.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [0b2e1bf28b972b69d2fda6f46ec0fc2b8ba646ce]

INTEGRATION: CWS calc16 (1.6.42); FILE MERGED 2003/07/18 17:10:05 dr 1.6.42.3: #110656# export of cond. formats reworked 2003/07/17 15:19:48 dr 1.6.42.2: #110656# import of cond. formats reworked 2003/07/11 09:42:10 jmarmion 1.6.42.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [cea3164336e6dd1962bb8ea903250477033151e9]

INTEGRATION: CWS calc16 (1.4.48); FILE MERGED 2003/09/15 11:26:46 dr 1.4.48.3: RESYNC: (1.4-1.5); FILE MERGED 2003/07/15 14:06:43 jmarmion 1.4.48.2: #105281# Missed Header/footer export of escapement on previous check-in 2003/07/11 09:41:48 jmarmion 1.4.48.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [507bf64776f9e4c297094631ec178297ecab449c]

INTEGRATION: CWS calc16 (1.2.88); FILE MERGED 2003/07/18 17:10:05 dr 1.2.88.2: #110656# export of cond. formats reworked 2003/07/17 15:19:48 dr 1.2.88.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [0165e28f718659b9845540d8e305a82c98c9d9fc]

INTEGRATION: CWS calc16 (1.28.48); FILE MERGED 2003/08/04 12:08:38 dr 1.28.48.2: RESYNC: (1.28-1.29); FILE MERGED 2003/07/18 17:10:04 dr 1.28.48.1: #110656# export of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [76ed19336f927e20e9259e865df409d4c23c0c20]

INTEGRATION: CWS calc16 (1.21.78); FILE MERGED 2003/08/11 11:27:52 dr 1.21.78.2: RESYNC: (1.21-1.22); FILE MERGED 2003/07/11 12:59:52 jmarmion 1.21.78.1: #i14890# - use the Excel defaults on import of xls with no Top/Bottom/Right/Left Margins


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [c6a7282a665ade900a08ae11aa6dfdc9fc1471ef]

INTEGRATION: CWS calc16 (1.3.78); FILE MERGED 2003/09/15 11:26:41 dr 1.3.78.5: RESYNC: (1.4-1.5); FILE MERGED 2003/08/11 11:27:46 dr 1.3.78.4: RESYNC: (1.3-1.4); FILE MERGED 2003/07/18 17:10:04 dr 1.3.78.3: #110656# export of cond. formats reworked 2003/07/17 15:19:47 dr 1.3.78.2: #110656# import of cond. formats reworked 2003/07/11 09:40:25 jmarmion 1.3.78.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [029d09f044db44c62eaaae51bcb9ebe8857386dd]

INTEGRATION: CWS calc16 (1.34.64); FILE MERGED 2003/07/11 09:41:11 jmarmion 1.34.64.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [a79079a6e87bfdb72274459bbbdac6fbd474c7fe]

INTEGRATION: CWS calc16 (1.48.48); FILE MERGED 2003/08/11 11:27:29 dr 1.48.48.2: RESYNC: (1.48-1.49); FILE MERGED 2003/07/17 15:19:47 dr 1.48.48.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [129e13e2c75082c760b3d16482318555cf2d9388]

INTEGRATION: CWS calc16 (1.3.78); FILE MERGED 2003/09/15 11:27:37 dr 1.3.78.2: RESYNC: (1.3-1.4); FILE MERGED 2003/07/18 17:10:33 dr 1.3.78.1: #110656# export of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [ed8a8113b4017a638ce7cf93d343d1d38cf9417c]

INTEGRATION: CWS calc16 (1.7.20); FILE MERGED 2003/09/15 11:28:36 dr 1.7.20.4: RESYNC: (1.8-1.9); FILE MERGED 2003/08/04 12:10:18 dr 1.7.20.3: RESYNC: (1.7-1.8); FILE MERGED 2003/07/17 15:18:57 dr 1.7.20.2: #110656# import of cond. formats reworked 2003/07/11 10:38:38 jmarmion 1.7.20.1: #110246# Support for Excel built-in Hyperlink/Followed_Hyperlink cell styles


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [48e5ef6974db9cb1e91f0b72f73d10ffc2d81aef]

INTEGRATION: CWS calc16 (1.5.48); FILE MERGED 2003/08/04 14:08:30 dr 1.5.48.5: merge conflicts 2003/08/04 12:10:12 dr 1.5.48.4: RESYNC: (1.5-1.6); FILE MERGED 2003/07/18 17:09:20 dr 1.5.48.3: #110656# export of cond. formats reworked 2003/07/17 15:18:57 dr 1.5.48.2: #110656# import of cond. formats reworked 2003/07/11 09:45:37 jmarmion 1.5.48.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [e1b663aa49ed2b429a840715a693fbe7ecee5a11]

INTEGRATION: CWS calc16 (1.9.42); FILE MERGED 2003/07/31 10:16:17 dr 1.9.42.4: #109904# fix moved to srx645/dr10aig, remove it here to prevent merge conflict 2003/07/18 17:09:19 dr 1.9.42.3: #110656# export of cond. formats reworked 2003/07/17 15:18:57 dr 1.9.42.2: #110656# import of cond. formats reworked 2003/07/14 15:59:47 jmarmion 1.9.42.1: #i13557# #109904# add CJK date/time formats and correct other date/time formats


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [22a93ab26665a7c09f0974f2cb546135c11a8762]

INTEGRATION: CWS calc16 (1.4.48); FILE MERGED 2003/08/11 11:29:30 dr 1.4.48.2: RESYNC: (1.4-1.5); FILE MERGED 2003/07/17 15:18:56 dr 1.4.48.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [65ee5ba3cc096ee67908821394d8d910e42c4c80]

INTEGRATION: CWS calc16 (1.4.48); FILE MERGED 2003/08/08 09:32:38 jmarmion 1.4.48.1: #i15367# - Cached results of DDE links not imported


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [5d31b04895484199ae308673573d3faa5dc55340]

INTEGRATION: CWS calc16 (1.5.48); FILE MERGED 2003/09/15 11:28:14 dr 1.5.48.3: RESYNC: (1.5-1.6); FILE MERGED 2003/08/08 09:32:17 jmarmion 1.5.48.2: #i15367# - Cached results of DDE links not imported 2003/07/18 17:09:19 dr 1.5.48.1: #110656# export of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [5eadbd57686507fac2e436c40e02b2c79cb67b9d]

INTEGRATION: CWS calc16 (1.3.24); FILE MERGED 2003/08/11 11:29:22 dr 1.3.24.3: RESYNC: (1.4-1.5); FILE MERGED 2003/08/04 12:09:57 dr 1.3.24.2: RESYNC: (1.3-1.4); FILE MERGED 2003/07/15 14:55:37 dr 1.3.24.1: #110190# ignore old Edit fields


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [3d2943998b6b83cef6e646da44e026c074995cfc]

INTEGRATION: CWS calc16 (1.4.48); FILE MERGED 2003/09/15 11:28:09 dr 1.4.48.3: RESYNC: (1.4-1.5); FILE MERGED 2003/07/18 17:09:19 dr 1.4.48.2: #110656# export of cond. formats reworked 2003/07/17 15:18:56 dr 1.4.48.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [09d6a8043c61475a3c4c0f994848c7644b39bd7f]

INTEGRATION: CWS calc16 (1.8.42); FILE MERGED 2003/08/11 09:16:46 jmarmion 1.8.42.6: #i17050# determine if a CJK or CTL script is present in the itemset 2003/08/08 11:52:36 dr 1.8.42.5: #110656# adjust color count for palette export 2003/07/18 17:09:18 dr 1.8.42.4: #110656# export of cond. formats reworked 2003/07/17 15:18:55 dr 1.8.42.3: #110656# import of cond. formats reworked 2003/07/11 10:39:12 jmarmion 1.8.42.2: #110246# Support for Excel built-in Hyperlink/Followed_Hyperlink cell styles 2003/07/11 09:45:18 jmarmion 1.8.42.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [fa65ec3a6d0a2df6ecfbbdfbb66be211b4cb3bc4]

INTEGRATION: CWS calc16 (1.5.48); FILE MERGED 2003/09/15 11:28:02 dr 1.5.48.5: RESYNC: (1.6-1.7); FILE MERGED 2003/08/04 12:09:40 dr 1.5.48.4: RESYNC: (1.5-1.6); FILE MERGED 2003/07/18 17:09:18 dr 1.5.48.3: #110656# export of cond. formats reworked 2003/07/15 14:07:11 jmarmion 1.5.48.2: #105281# Missed Header/footer export of escapement on previous check-in 2003/07/11 09:44:49 jmarmion 1.5.48.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [970f4c86b1b7e935c816408734c0b073544d7886]

INTEGRATION: CWS calc16 (1.3.88); FILE MERGED 2003/09/15 11:27:55 dr 1.3.88.3: RESYNC: (1.3-1.4); FILE MERGED 2003/09/15 09:54:39 dr 1.3.88.2: #110656# missing 2nd formula for 'Between' operator in cond.form. 2003/07/18 17:09:17 dr 1.3.88.1: #110656# export of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [1b11e966fda3cbf94e56167faa945cb92eab66ee]

INTEGRATION: CWS calc16 (1.39.48); FILE MERGED 2003/07/17 15:18:55 dr 1.39.48.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [48552d68057e9599220a08227c8903437c4edc6e]

INTEGRATION: CWS calc16 (1.53.20); FILE MERGED 2003/08/11 11:28:53 dr 1.53.20.2: RESYNC: (1.53-1.54); FILE MERGED 2003/07/11 12:56:57 jmarmion 1.53.20.1: #i14890# - use the Excel defaults on import of xls with no Top/Bottom/Right/Left Margins


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [38fd09084c65b42e83787cfb08da94ff5a520402]

INTEGRATION: CWS calc16 (1.63.58); FILE MERGED 2003/09/15 11:27:42 dr 1.63.58.4: RESYNC: (1.64-1.65); FILE MERGED 2003/08/08 10:12:13 jmarmion 1.63.58.3: #i17918# export the results of all formula cells 2003/08/04 12:09:35 dr 1.63.58.2: RESYNC: (1.63-1.64); FILE MERGED 2003/07/11 09:44:25 jmarmion 1.63.58.1: #105281# Excel export of escapement


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [4fd98584c1da9119adb86acaec94d58830d16b09]

INTEGRATION: CWS calc16 (1.83.24); FILE MERGED 2003/08/11 11:28:46 dr 1.83.24.3: RESYNC: (1.84-1.85); FILE MERGED 2003/08/04 12:09:30 dr 1.83.24.2: RESYNC: (1.83-1.84); FILE MERGED 2003/07/17 15:18:55 dr 1.83.24.1: #110656# import of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [861ed8070a6a0a43145db7e0f7b6b7e6150a9f58]

INTEGRATION: CWS calc16 (1.23.86); FILE MERGED 2003/08/08 09:33:12 jmarmion 1.23.86.2: #i15367# - Cached results of DDE links not imported 2003/07/15 14:54:52 dr 1.23.86.1: #110189# tNameX has 6 bytes in BIFF8


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [ff9734fcf0d7233ab9f4e6942c9b2fa0036747bc]

INTEGRATION: CWS calc16 (1.46.64); FILE MERGED 2003/08/04 12:09:24 dr 1.46.64.2: RESYNC: (1.46-1.47); FILE MERGED 2003/07/18 17:09:17 dr 1.46.64.1: #110656# export of cond. formats reworked


2003-09-16  Rüdiger Timm  <rt@openoffice.org>  [f5bc57c761b38a2de37ec794b3b75ae467e8cf0a]

INTEGRATION: CWS calc16 (1.59.20); FILE MERGED 2003/08/08 11:51:10 dr 1.59.20.5: dump base address of arrays and shared formulas 2003/07/25 12:41:38 dr 1.59.20.4: +FILEPASS 2003/07/17 15:16:54 dr 1.59.20.3: #110656# CF, CONDFMT 2003/07/17 12:04:45 dr 1.59.20.2: #110656# CF, CONDFMT 2003/07/11 10:37:27 jmarmion 1.59.20.1: #110246# Support for Excel built-in Hyperlink/Followed_Hyperlink cell styles


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [63cf315742bd5819a73ffba688416d5b5ce559fc]

INTEGRATION: CWS dr7ui (1.33.74); FILE MERGED 2003/08/28 06:59:32 dr 1.33.74.3: RESYNC: (1.33-1.34); FILE MERGED 2003/08/27 13:38:03 dr 1.33.74.2: #i6327# deselect tables with keyboard 2003/08/07 12:33:54 dr 1.33.74.1: #i6330# select multiple tables with keyboard


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [591a810aaab0994bdbee1403148df88037290675]

INTEGRATION: CWS dr7ui (1.4.200); FILE MERGED 2003/08/07 12:33:54 dr 1.4.200.1: #i6330# select multiple tables with keyboard


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [f008d5d7910714fdca998431e95a94f2eeb5f58c]

INTEGRATION: CWS dr7ui (1.10.50); FILE MERGED 2003/08/07 12:33:18 dr 1.10.50.1: #i6330# select multiple tables with keyboard


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [87f05553d9bd52e4d0671bb6e816ed253b9fac4d]

INTEGRATION: CWS dr7ui (1.7.206); FILE MERGED 2003/08/07 14:16:42 dr 1.7.206.1: #16060# double click in listbox fires OK event


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [d1d223019d4ffc32919cbd08262240439b170427]

INTEGRATION: CWS dr7ui (1.9.54); FILE MERGED 2003/08/07 10:08:59 dr 1.9.54.1: #111629# exceptions for XAccessibleTable functions


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [4a896adb32c3b8cd5b542517c590d6bac44f3bda]

INTEGRATION: CWS dr7ui (1.3.206); FILE MERGED 2003/08/07 08:23:22 dr 1.3.206.1: #109080# set struct page font inside


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [df642b2c30393fa3b92abab37b8702e733639806]

INTEGRATION: CWS dr7ui (1.8.206); FILE MERGED 2003/08/07 14:28:13 dr 1.8.206.2: #i16060# double click in listbox fires OK event 2003/08/07 14:17:09 dr 1.8.206.1: #16060# double click in listbox fires OK event


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [7014f493f9cd81dce5e165a5fb895256670dfec1]

INTEGRATION: CWS dr7ui (1.14.54); FILE MERGED 2003/08/07 10:09:23 dr 1.14.54.1: #111629# #111636# exceptions for XAccessibleText/XAccessibleTable functions


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [aaa30bea480d7c3dcefff04613501de4ef627efc]

INTEGRATION: CWS dr7ui (1.24.200); FILE MERGED 2003/08/07 12:32:59 dr 1.24.200.1: #i6330# select multiple tables with keyboard


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [a4885ffb192dd461c5a0c04e3ed7247211e72730]

INTEGRATION: CWS dr7ui (1.11.200); FILE MERGED 2003/08/07 12:32:59 dr 1.11.200.1: #i6330# select multiple tables with keyboard


2003-09-04  Oliver Bolte  <obo@openoffice.org>  [cb3297c3528e31cdd733a80958574a3d3db07f50]

INTEGRATION: CWS dr7ui (1.35.200); FILE MERGED 2003/08/28 07:11:54 dr 1.35.200.2: RESYNC: (1.35-1.36); FILE MERGED 2003/08/07 12:32:30 dr 1.35.200.1: #i6330# select multiple tables with keyboard


2003-08-27  Kurt Zenker  <kz@openoffice.org>  [9479f48c192c2faa3353a687df10dfea4ded476a]

INTEGRATION: CWS geordi2q02 (1.17.238); FILE MERGED 2003/08/25 12:00:46 hr 1.17.238.1: #111934#: joined from CWS mshapes01


2003-08-27  Kurt Zenker  <kz@openoffice.org>  [f2ce55979cd8cbc49e3817b7d5e6b2338fc7515b]

INTEGRATION: CWS geordi2q02 (1.52.2); FILE MERGED 2003/08/25 12:00:45 hr 1.52.2.1: #111934#: joined from CWS mshapes01


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [ca4fb3764664a4d48c9770932d9f568b5edae7fc]

INTEGRATION: CWS ause04 (1.9.20); FILE MERGED 2003/07/10 12:36:48 hjs 1.9.20.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [ad29eef5bbbafa6fa0cffd7554049f9cc0c3d41d]

INTEGRATION: CWS ause04 (1.11.8); FILE MERGED 2003/07/10 12:36:47 hjs 1.11.8.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [07fc88eab8f8f7f1f0529c3ecc18f97d7335f158]

INTEGRATION: CWS ause04 (1.7.12); FILE MERGED 2003/08/12 10:40:41 gh 1.7.12.1: remove old hid.lst particles and add new ones


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [2d6a665b33e01c7c1f73f9205f9d051a0b2104e6]

INTEGRATION: CWS ause04 (1.2.180); FILE MERGED 2003/07/09 18:42:47 hjs 1.2.180.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [76a93d64ae7fad792ff52e29da801569c5516b5c]

INTEGRATION: CWS ause04 (1.2.206); FILE MERGED 2003/07/09 18:42:47 hjs 1.2.206.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [66a8bccd4caf2109af28ae88cd26cc98ab8cce42]

INTEGRATION: CWS ause04 (1.1.1.1.216); FILE MERGED 2003/07/09 18:42:46 hjs 1.1.1.1.216.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [15d07dab8dd14bcd3ec0b7dbba4647a7eeedd152]

INTEGRATION: CWS ause04 (1.1.1.1.216); FILE MERGED 2003/07/09 18:42:45 hjs 1.1.1.1.216.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [80fbfb84b7a5608be1c05f1bb71d6392bb6d7da6]

INTEGRATION: CWS ause04 (1.3.178); FILE MERGED 2003/07/09 18:42:44 hjs 1.3.178.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [b7c5df897bbaafa1ded4bffdd09e9182878c7aac]

INTEGRATION: CWS ause04 (1.1.1.1.216); FILE MERGED 2003/07/09 18:42:43 hjs 1.1.1.1.216.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [8323e3d091d71ae5c90a222ce02b95da6a680183]

INTEGRATION: CWS ause04 (1.3.212); FILE MERGED 2003/07/09 18:42:42 hjs 1.3.212.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [8ac6c53b2985b8183363e187691a77920c0d1c8b]

INTEGRATION: CWS ause04 (1.4.172); FILE MERGED 2003/07/09 18:42:41 hjs 1.4.172.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [803db14771325dfeaa09e9c97571b77b79f5866a]

INTEGRATION: CWS ause04 (1.2.178); FILE MERGED 2003/07/09 18:42:40 hjs 1.2.178.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [bb2f0be2da0c8b044ffde5ea6c0b4e61531ebaec]

INTEGRATION: CWS ause04 (1.1.1.1.216); FILE MERGED 2003/07/09 18:42:39 hjs 1.1.1.1.216.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [5f4ced3598b798624a2d4f96a4863f5bd94debc2]

INTEGRATION: CWS ause04 (1.3.180); FILE MERGED 2003/07/09 18:42:39 hjs 1.3.180.1: #108794# replace SRCFILES with SRC1FILES


2003-08-25  Kurt Zenker  <kz@openoffice.org>  [401308c9f9208a778130a711713d8d8d05418fe2]

INTEGRATION: CWS ause04 (1.10.70); FILE MERGED 2003/08/12 10:40:36 gh 1.10.70.1: remove old hid.lst particles and add new ones


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e6646b342f350a3610e836b902d88f79590977d3]

INTEGRATION: CWS dr6 (1.11.28); FILE MERGED 2003/07/30 11:43:08 dr 1.11.28.2: #i3653# fixed imp/exp of 'allow blank cell' in validation 2003/07/18 15:58:32 sab 1.11.28.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0a037f3762746744c5e197600d0fe8daed9b1a42]

INTEGRATION: CWS dr6 (1.11.28); FILE MERGED 2003/07/30 11:43:08 dr 1.11.28.2: #i3653# fixed imp/exp of 'allow blank cell' in validation 2003/07/18 15:58:32 sab 1.11.28.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e3730ae256b5e8fc4a82b7376dd40927833e962d]

INTEGRATION: CWS dr6 (1.35.52); FILE MERGED 2003/07/30 11:43:07 dr 1.35.52.2: #i3653# fixed imp/exp of 'allow blank cell' in validation 2003/07/18 15:54:17 sab 1.35.52.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2e99bf8397cbc72ed9558ab99fd6613530172809]

INTEGRATION: CWS dr6 (1.33.44); FILE MERGED 2003/07/16 15:43:23 dr 1.33.44.2: #i3653# show dropdown only in list validation 2003/07/15 17:13:45 nn 1.33.44.1: #i3653# show drop-down button for list validity


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [329d3aef30afda62db934f1362c6cef299ac9d8c]

INTEGRATION: CWS dr6 (1.18.66); FILE MERGED 2003/07/15 17:13:45 nn 1.18.66.1: #i3653# show drop-down button for list validity


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f048b152cba3b56de553b590b686f8b3ca8b68b5]

INTEGRATION: CWS dr6 (1.43.16); FILE MERGED 2003/07/15 17:13:44 nn 1.43.16.2: #i3653# show drop-down button for list validity 2003/07/14 15:16:17 dr 1.43.16.1: #i3653# EndPopupMode to ~ScFilterFloatingWindow


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2f734256374fa2e1af36bbb3779a34d7fe30d32b]

INTEGRATION: CWS dr6 (1.14.2); FILE MERGED 2003/07/18 13:00:16 dr 1.14.2.2: #i3653# list validation: use API constants for list type 2003/07/04 12:38:14 dr 1.14.2.1: #i3653# additions for list validation


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [391c68170204e0c8705c6c703d1a48577d3c85a2]

INTEGRATION: CWS dr6 (1.20.60); FILE MERGED 2003/07/16 09:09:30 dr 1.20.60.1: #i3653# List validation: Enable SID_DATA_SELECT slot in empty columns


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e0247b5e5cefba67561625e40ed71613b1061738]

INTEGRATION: CWS dr6 (1.7.4); FILE MERGED 2003/07/18 16:01:25 sab 1.7.4.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c8101bb1a97569c425a1aafdd970e1c2444a55a4]

INTEGRATION: CWS dr6 (1.73.2); FILE MERGED 2003/07/30 11:44:19 dr 1.73.2.4: #i3653# final string changes 2003/07/25 12:39:45 dr 1.73.2.3: RESYNC: (1.74-1.76); FILE MERGED 2003/07/07 12:38:05 dr 1.73.2.2: RESYNC: (1.73-1.74); FILE MERGED 2003/07/04 12:37:25 dr 1.73.2.1: #i3653# additions for list validation


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [51ac2a3e15d51c7379c4ba806128ac8adbeb2dd4]

INTEGRATION: CWS dr6 (1.2.30); FILE MERGED 2003/07/10 06:40:26 dr 1.2.30.2: #i3653# list validity 2003/07/04 12:36:58 dr 1.2.30.1: #i3653# additions for list validation


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [7b56c27e101917d6b1ca43754187a72ba17095b0]

INTEGRATION: CWS dr6 (1.2.30); FILE MERGED 2003/07/04 12:36:57 dr 1.2.30.1: #i3653# additions for list validation


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [44edde488c98438c0b854fd6a4b5ec58b08831f3]

INTEGRATION: CWS dr6 (1.11.44); FILE MERGED 2003/07/15 17:13:27 nn 1.11.44.2: #i3653# show drop-down button for list validity 2003/07/14 15:14:59 dr 1.11.44.1: #i3653# unused members


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [471e74fd980c0f0efadeb43928f57e47d40c2dec]

INTEGRATION: CWS dr6 (1.35.6); FILE MERGED 2003/07/30 11:43:48 dr 1.35.6.4: #i3653# final string changes 2003/07/25 12:44:55 dr 1.35.6.3: RESYNC: (1.36-1.37); FILE MERGED 2003/07/07 12:43:31 dr 1.35.6.2: RESYNC: (1.35-1.36); FILE MERGED 2003/07/04 12:40:56 dr 1.35.6.1: #i3653# additions for list validation


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [29da93761c5d8541c828039c2c3a0211641ee5fd]

INTEGRATION: CWS dr6 (1.6.28); FILE MERGED 2003/08/13 10:23:19 dr 1.6.28.5: #111771# suppress assertion when editing old XML files 2003/07/18 13:00:03 dr 1.6.28.4: #i3653# list validation: use API constants for list type 2003/07/11 15:04:40 dr 1.6.28.3: #i3653# List validation 2003/07/10 06:40:16 dr 1.6.28.2: #i3653# list validity 2003/07/04 12:40:55 dr 1.6.28.1: #i3653# additions for list validation


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [d89fadb3d1deeae47afa9fa6b0ab18c586dc2d6c]

INTEGRATION: CWS dr6 (1.64.10); FILE MERGED 2003/07/18 15:59:22 sab 1.64.10.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [d85d7cb445f34a70a38a3e482fd69c48060c8041]

INTEGRATION: CWS dr6 (1.87.10); FILE MERGED 2003/07/18 15:59:21 sab 1.87.10.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [09961e5618ad3d99b922cf328b202ffe45e5dd08]

INTEGRATION: CWS dr6 (1.74.18); FILE MERGED 2003/07/18 15:56:31 sab 1.74.18.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2ea2bbf0c82518aac60e6acf11a34c8a7e70fecb]

INTEGRATION: CWS dr6 (1.20.68); FILE MERGED 2003/07/18 15:54:18 sab 1.20.68.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [ef802543f133de90f811c98c2776ee1ab050e141]

INTEGRATION: CWS dr6 (1.55.24); FILE MERGED 2003/07/25 12:45:45 dr 1.55.24.2: RESYNC: (1.55-1.56); FILE MERGED 2003/07/04 12:18:38 dr 1.55.24.1: #i3653# moved string token handling to ScGlobal


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [180725987d4b7c09f91c22ce3df2397669833f63]

INTEGRATION: CWS dr6 (1.1.2); FILE ADDED 2003/07/04 12:32:38 dr 1.1.2.1: #i3653# added token array helper functions


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0aadbdb3319ca5a1d73949acc325beaf02d0ac5b]

INTEGRATION: CWS dr6 (1.7.44); FILE MERGED 2003/07/04 12:30:10 dr 1.7.44.1: #i3653# changed string handling


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c4e3fe80239c1d79d19802a87eaadd01782a41ef]

INTEGRATION: CWS dr6 (1.2.68); FILE MERGED 2003/07/04 12:30:10 dr 1.2.68.1: #i3653# changed string handling


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [08fb2c159cf6a2859b893c806553b7d11c9201e1]

INTEGRATION: CWS dr6 (1.4.24); FILE MERGED 2003/07/04 12:30:09 dr 1.4.24.1: #i3653# changed string handling


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [fedcd63715f72c4846765be044980cd0f7956e4e]

INTEGRATION: CWS dr6 (1.3.58); FILE MERGED 2003/08/13 10:57:24 dr 1.3.58.2: RESYNC: (1.3-1.4); FILE MERGED 2003/07/04 12:32:16 dr 1.3.58.1: #i3653# moved string token handling to ScGlobal


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [9701a7e30a2333a0a639befd0accb0b0e177e49c]

INTEGRATION: CWS dr6 (1.15.44); FILE MERGED 2003/07/04 12:18:01 dr 1.15.44.1: #i3653# moved string token handling to ScGlobal


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2f43bdc6ecd29eeddcd11e6191dfa7d5123d2a6a]

INTEGRATION: CWS dr6 (1.10.68); FILE MERGED 2003/07/04 12:18:01 dr 1.10.68.1: #i3653# moved string token handling to ScGlobal


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [010d7a8fe816e7d9526c8ae88bcdc0e18c5817a3]

INTEGRATION: CWS dr6 (1.3.58); FILE MERGED 2003/07/04 12:17:17 dr 1.3.58.1: #i3653# moved string token handling to ScGlobal


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [35a240ecb7358f498aefc3b13ddc1e0d2d146519]

INTEGRATION: CWS dr6 (1.8.2); FILE MERGED 2003/07/25 15:12:37 dr 1.8.2.1: #i3653# solve cwsresync incompatibility


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [60f7d9288f288018d28d705ed8882915581a4dff]

INTEGRATION: CWS dr6 (1.1.2); FILE ADDED 2003/07/04 12:13:12 dr 1.1.2.1: #i3653# added token array helper functions


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [67a5187bc21a86ded6aec3bb306478a9273bf849]

INTEGRATION: CWS dr6 (1.3.68); FILE MERGED 2003/07/04 12:14:23 dr 1.3.68.1: #i3653# changed string handling


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [3ec8ac13d1344add67c145619a0075f7ac8d5f5f]

INTEGRATION: CWS dr6 (1.5.24); FILE MERGED 2003/07/04 12:14:23 dr 1.5.24.1: #i3653# changed string handling


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [3ccb9aecef65b254fd97948de197a453b94d008b]

INTEGRATION: CWS dr6 (1.4.24); FILE MERGED 2003/07/18 12:59:38 dr 1.4.24.2: #i3653# list validation: use API constants for list type 2003/07/04 12:15:10 dr 1.4.24.1: #i3653# added list validation import/export


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [b1d14c7e93265ff73229910ac7886f02c5d74628]

INTEGRATION: CWS dr6 (1.5.24); FILE MERGED 2003/07/29 08:39:49 dr 1.5.24.2: RESYNC: (1.5-1.6); FILE MERGED 2003/07/04 12:14:22 dr 1.5.24.1: #i3653# changed string handling


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [d5d30e841017a7fe6be0a3f65417ed8a20781d68]

INTEGRATION: CWS dr6 (1.3.68); FILE MERGED 2003/07/18 12:59:39 dr 1.3.68.2: #i3653# list validation: use API constants for list type 2003/07/04 12:15:10 dr 1.3.68.1: #i3653# added list validation import/export


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [cdf34b141a635361c2a1157be519ef2679ca0fd8]

INTEGRATION: CWS dr6 (1.18.24); FILE MERGED 2003/08/13 10:58:40 dr 1.18.24.2: RESYNC: (1.18-1.19); FILE MERGED 2003/07/04 12:13:11 dr 1.18.24.1: #i3653# added token array helper functions


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [4dceeb4c196f3a23c55af0a4499539e17535dc52]

INTEGRATION: CWS dr6 (1.63.36); FILE MERGED 2003/07/25 12:47:46 dr 1.63.36.2: RESYNC: (1.63-1.64); FILE MERGED 2003/07/04 12:13:10 dr 1.63.36.1: #i3653# added token array helper functions


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [be868de3d9c02ec0066a69c3841d0e0da8112a23]

INTEGRATION: CWS dr6 (1.15.68); FILE MERGED 2003/07/10 06:39:52 dr 1.15.68.2: #i3653# new functions: ScTokenArray::(First|Next)NoSpaces 2003/07/04 11:46:37 dr 1.15.68.1: #i3653# remove filter specific function


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [747fb7c9e05a2e3c022e7b0bc17acbaf32b00bd0]

INTEGRATION: CWS dr6 (1.9.68); FILE MERGED 2003/07/30 11:42:15 dr 1.9.68.7: #i3653# allow range lists, ignore rest of formula 2003/07/18 12:59:13 dr 1.9.68.6: #i3653# list validation: use API constants for list type 2003/07/16 15:43:00 dr 1.9.68.5: #i3653# show dropdown only in list validation 2003/07/14 15:14:27 dr 1.9.68.4: #i3653# list validation 2003/07/11 15:04:21 dr 1.9.68.3: #i3653# List validation: create selection list 2003/07/10 06:38:43 dr 1.9.68.2: #i3653# list validity 2003/07/04 11:45:47 dr 1.9.68.1: #i3653# added show/sort selection list


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [ca42f7669767c145b867584db5b22312a2497857]

INTEGRATION: CWS dr6 (1.31.46); FILE MERGED 2003/07/04 11:45:22 dr 1.31.46.1: #i3653# added string token handling helpers


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [b3bf0a8d094e07959f42b83809b813c3ba425d29]

INTEGRATION: CWS dr6 (1.49.52); FILE MERGED 2003/07/16 15:43:00 dr 1.49.52.2: #i3653# show dropdown only in list validation 2003/07/16 09:09:09 dr 1.49.52.1: #i3653# List validation: Enable SID_DATA_SELECT slot in empty columns


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0616d4c5db3190c1c10e8eb6f489ae5510714c13]

INTEGRATION: CWS dr6 (1.17.68); FILE MERGED 2003/07/11 15:04:22 dr 1.17.68.1: #i3653# List validation: create selection list


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [e9272c5f224fac61a817cb67bac969535cdd8a03]

INTEGRATION: CWS dr6 (1.11.68); FILE MERGED 2003/07/10 06:39:30 dr 1.11.68.1: #i3653# changed lcl_HasRelRef


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2a1aae3dcd505d6d76be48cc02a6637ac5184c8f]

INTEGRATION: CWS dr6 (1.4.8); FILE MERGED 2003/07/18 12:58:45 dr 1.4.8.5: #i3653# list validation: use API constants for list type 2003/07/16 15:42:27 dr 1.4.8.4: #i3653# show dropdown only in list validation 2003/07/11 15:04:03 dr 1.4.8.3: #i3653# List validation: create selection list 2003/07/10 06:38:19 dr 1.4.8.2: #i3653# list validity 2003/07/04 11:44:47 dr 1.4.8.1: #i3653# added show/sort selection list


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2a7cec197f3979a58211c091a511ad4824929547]

INTEGRATION: CWS dr6 (1.51.44); FILE MERGED 2003/07/18 15:38:44 sab 1.51.44.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [6b02b45405e735aea65fa6c3bbacb0fd537aa797]

INTEGRATION: CWS dr6 (1.35.170); FILE MERGED 2003/07/18 12:58:44 dr 1.35.170.3: #i3653# list validation: use API constants for list type 2003/07/04 11:44:08 dr 1.35.170.2: #i3653# new IDs for list validity dialog 2003/07/04 11:05:55 dr 1.35.170.1: #i3653# new IDs for list validity dialog


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a083577c8197d0bde3e95c8e907a635d0ab46bad]

INTEGRATION: CWS dr6 (1.2.68); FILE MERGED 2003/07/11 15:03:34 dr 1.2.68.1: #i3653# added ComplRefData::IsDeleted


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [c768c9810b4941742dedc4461eb0a43394c6df52]

INTEGRATION: CWS dr6 (1.23.44); FILE MERGED 2003/07/04 11:04:53 dr 1.23.44.1: #i3653# added string token handling helpers


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [db7fa48d8845eaa7e83191e8da108d2c95eae62a]

INTEGRATION: CWS dr6 (1.3.42); FILE MERGED 2003/07/18 15:38:44 sab 1.3.42.1: #i3653#; add ShowList property


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [4b084de91a8a45a716e8e72a8bb18e58f62e3190]

INTEGRATION: CWS dr6 (1.67.44); FILE MERGED 2003/07/16 09:08:31 dr 1.67.44.1: #i3653# List validation: Enable SID_DATA_SELECT slot in empty columns


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [25fcc42eb8c63ab6c50ed912dcc1cdef38fd6b4c]

INTEGRATION: CWS dr6 (1.15.68); FILE MERGED 2003/07/10 06:37:39 dr 1.15.68.2: #i3653# new functions: ScTokenArray::(First|Next)NoSpaces 2003/07/04 11:04:08 dr 1.15.68.1: #i3653# move filter specific function to filter


2003-08-19  Hans-Joachim Lankenau  <hjs@openoffice.org>  [18276bdca2e48872a236e770b9272b6dc2b58b53]

INTEGRATION: CWS dr6 (1.17.68); FILE MERGED 2003/07/11 15:03:06 dr 1.17.68.1: #i3653# warning removed


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [b04113a87e40a10f30f5fd6af77827ed73ace10b]

INTEGRATION: CWS geordi2q01 (1.18.50); FILE MERGED 2003/08/18 13:17:35 hr 1.18.50.1: #i18350#: join changes from CWS ooo11rc3


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a6a5580dfb4f8425345785c55de28d0f6c3179e1]

INTEGRATION: CWS geordi2q01 (1.2.262); FILE MERGED 2003/08/18 14:01:35 hr 1.2.262.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [2d7d4366f58d2f6dd7234b76a67e5f40a7e28a14]

INTEGRATION: CWS geordi2q01 (1.11.74); FILE MERGED 2003/08/18 14:01:35 hr 1.11.74.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [dd6e1db80d8288db9402e463b2e4d911c741cbf1]

INTEGRATION: CWS geordi2q01 (1.64.72); FILE MERGED 2003/08/18 14:01:34 hr 1.64.72.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0bd627a814fb97ede05cc5b541a0ec4608a25392]

INTEGRATION: CWS geordi2q01 (1.87.72); FILE MERGED 2003/08/18 14:01:33 hr 1.87.72.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0ab45bec4aff206f4e911fb2e4d7dfbb6c6be14c]

INTEGRATION: CWS geordi2q01 (1.168.22); FILE MERGED 2003/08/18 14:01:32 hr 1.168.22.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [574c9075b103a31f6ce2df5e767825349181c2a3]

INTEGRATION: CWS geordi2q01 (1.11.256); FILE MERGED 2003/08/18 14:01:32 hr 1.11.256.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [7d2be793e1d146f2d526b7dfd257c18a1c41e89e]

INTEGRATION: CWS geordi2q01 (1.14.236); FILE MERGED 2003/08/18 14:03:11 hr 1.14.236.1: #111861#: join changes from CWS sab007


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [4bff9b1a9bc85cf7dafb3cbaf0aefcefe2186d44]

INTEGRATION: CWS geordi2q01 (1.35.110); FILE MERGED 2003/08/18 14:01:31 hr 1.35.110.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [44ad5d7a02913715b3698f3dc17205c665f639a3]

INTEGRATION: CWS geordi2q01 (1.24.242); FILE MERGED 2003/08/18 14:01:31 hr 1.24.242.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [11d44d82d3535f50287188b1f868308433038ce9]

INTEGRATION: CWS geordi2q01 (1.35.230); FILE MERGED 2003/08/18 14:01:30 hr 1.35.230.1: #111861#: join changes from CWS sab006


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f89f94f1c02af57c1d3bbb9d98671ce88c0db3bd]

INTEGRATION: CWS geordi2q01 (1.7.248); FILE MERGED 2003/08/18 13:17:34 hr 1.7.248.1: #i18350#: join changes from CWS ooo11rc3


2003-08-18  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0db12f1d3ae9050d532d625aa15f9b8d9e7b802a]

INTEGRATION: CWS geordi2q01 (1.6.264); FILE MERGED 2003/08/18 13:17:33 hr 1.6.264.1: #i18350#: join changes from CWS ooo11rc3


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [90f5efe8a8bbbdbc60f65356c52a6bfd7351007c]

INTEGRATION: CWS filtertracer01 (1.1.2); FILE ADDED 2003/07/15 12:05:59 dr 1.1.2.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [fca6a01a79cf6a5a7015a9700d42de20bdc9df02]

INTEGRATION: CWS filtertracer01 (1.6.36); FILE MERGED 2003/07/15 12:05:57 dr 1.6.36.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [c4ee0c3145814ea692c786193bd80e4c4bee9798]

INTEGRATION: CWS filtertracer01 (1.4.36); FILE MERGED 2003/07/15 12:05:57 dr 1.4.36.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [7bd1262e0e2374b4f460c25074641acbfe8ff733]

INTEGRATION: CWS filtertracer01 (1.5.52); FILE MERGED 2003/07/15 12:05:57 dr 1.5.52.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [61ecf7621fefbf95e7a5a5e695e41bf77cc6dcbf]

INTEGRATION: CWS filtertracer01 (1.21.66); FILE MERGED 2003/07/15 12:05:56 dr 1.21.66.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [0191b9e4eec283e76d89dd631ab79d8acfc1f958]

INTEGRATION: CWS filtertracer01 (1.3.66); FILE MERGED 2003/07/15 12:05:56 dr 1.3.66.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [b22c23a9d54ce4fc43aa868919d3b683aae1940d]

INTEGRATION: CWS filtertracer01 (1.3.36); FILE MERGED 2003/07/15 12:05:55 dr 1.3.36.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [968b9ed81b7cd5db28659839b8dd24ccd142218a]

INTEGRATION: CWS filtertracer01 (1.48.36); FILE MERGED 2003/07/15 12:05:55 dr 1.48.36.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [38ee6b0b14ad2588c58dc4aba348e64356413517]

INTEGRATION: CWS filtertracer01 (1.1.2); FILE ADDED 2003/07/15 12:05:07 dr 1.1.2.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [d11ed94d6f965076c2afac0b59690854c51c4b1f]

INTEGRATION: CWS filtertracer01 (1.6.36); FILE MERGED 2003/07/15 12:05:04 dr 1.6.36.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [509714ecc0ab949060dd5a411f4ada010abf9b81]

INTEGRATION: CWS filtertracer01 (1.4.36); FILE MERGED 2003/07/15 12:05:03 dr 1.4.36.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [cff6f9c4a76235c172e6b9cbca19b0c8334581df]

INTEGRATION: CWS filtertracer01 (1.3.12); FILE MERGED 2003/07/28 16:49:36 sj 1.3.12.2: RESYNC: (1.3-1.4); FILE MERGED 2003/07/15 12:05:02 dr 1.3.12.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [09a1aee283dbcee5c7b70ae9d72d4194d32841ab]

INTEGRATION: CWS filtertracer01 (1.6.36); FILE MERGED 2003/07/15 12:05:01 dr 1.6.36.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [034fcd0cb39ce2f8b697c476a074025347dcb5e2]

INTEGRATION: CWS filtertracer01 (1.18.36); FILE MERGED 2003/07/15 12:05:00 dr 1.18.36.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [4891669131488fd8f9bfcf56fd81d7d668a50fcd]

INTEGRATION: CWS filtertracer01 (1.53.8); FILE MERGED 2003/07/15 12:05:00 dr 1.53.8.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [50a7305eaca661fdba8f97b0dc34845398584deb]

INTEGRATION: CWS filtertracer01 (1.83.12); FILE MERGED 2003/07/28 16:49:13 sj 1.83.12.2: RESYNC: (1.83-1.84); FILE MERGED 2003/07/15 12:04:59 dr 1.83.12.1: filter tracer


2003-08-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [6d3a437f8092aabc7abbd596cd12f1352fdec8fd]

INTEGRATION: CWS filtertracer01 (1.11.66); FILE MERGED 2003/07/15 12:04:58 dr 1.11.66.1: filter tracer


2003-08-07  Rüdiger Timm  <rt@openoffice.org>  [0c7863ad54698aeed2f98338f282743c8944bd2b]

#100000# '#if SUPD < 650' condition removed in order to make SRC680 identical to SRX645


2003-07-28  Daniel Rentz  <dr@openoffice.org>  [8fbbc0864a4fff3e9989a77ff6967ee12f140ac1]

#100000# #111063# export of h/f text fields broken


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [39f344b6e5730529caf031e393192abcbdaceeeb]

INTEGRATION: CWS dr8aig (1.55.60); FILE MERGED 2003/07/24 09:56:22 dr 1.55.60.4: #110947# correct size of ftPictFmla in OLE objects 2003/07/24 09:27:11 dr 1.55.60.3: #110947# correct size of ftPictFmla in OLE objects 2003/07/23 17:20:20 dr 1.55.60.2: #110947# missing dtor 2003/07/23 15:19:14 dr 1.55.60.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [2706ae328a370516861d1fce066b63393a90cd7b]

INTEGRATION: CWS dr8aig (1.7.102); FILE MERGED 2003/07/23 15:19:14 dr 1.7.102.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [c9047351e9fcce77203cd1c33f21f29bbc22b184]

INTEGRATION: CWS dr8aig (1.7.38); FILE MERGED 2003/07/23 15:18:50 dr 1.7.38.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [0d0c9e3dadc7cf3f820bf64d3c2163ea75e2ba49]

INTEGRATION: CWS dr8aig (1.5.62); FILE MERGED 2003/07/23 15:18:50 dr 1.5.62.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [033bf5d1045215ac25868c997ca2d21e642af39d]

INTEGRATION: CWS dr8aig (1.3.62); FILE MERGED 2003/07/23 15:18:50 dr 1.3.62.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [c0b5bf03be4186322e27d5f318bd3e179131b041]

INTEGRATION: CWS dr8aig (1.2.62); FILE MERGED 2003/07/23 15:18:49 dr 1.2.62.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [61acaed4ab386bc6c61f4550a9251718d990b334]

INTEGRATION: CWS dr8aig (1.28.62); FILE MERGED 2003/07/23 17:19:54 dr 1.28.62.2: #110947# missing dtor 2003/07/23 15:18:48 dr 1.28.62.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [6c6996d9a6d01ea5e62d6b2a82558d64e33f903a]

INTEGRATION: CWS dr8aig (1.4.102); FILE MERGED 2003/07/23 15:18:47 dr 1.4.102.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [0ad8ebdd1077bc0e7e157709799c09d230c85a30]

INTEGRATION: CWS dr8aig (1.7.38); FILE MERGED 2003/07/23 15:17:45 dr 1.7.38.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [69dbcbf78d07eae14212374255827c51ebaa074c]

INTEGRATION: CWS dr8aig (1.5.62); FILE MERGED 2003/07/23 15:17:46 dr 1.5.62.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [145cdf13c1d0d9823910657e0ae69f65b070e8ac]

INTEGRATION: CWS dr8aig (1.3.62); FILE MERGED 2003/07/23 15:17:45 dr 1.3.62.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [f88b390e35ac71dc1b8c76d30216673c9381e78d]

INTEGRATION: CWS dr8aig (1.3.40); FILE MERGED 2003/07/23 15:17:48 dr 1.3.40.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [082991ab4f4f7d115a28c15edfdc74aef4f03190]

INTEGRATION: CWS dr8aig (1.3.104); FILE MERGED 2003/07/23 15:17:47 dr 1.3.104.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [08ceeb397981e584a7e1819d4dd0a9633c542caa]

INTEGRATION: CWS dr8aig (1.63.72); FILE MERGED 2003/07/23 15:17:47 dr 1.63.72.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [187e88e9b26d271b8cca4a2e1cdb62ab73558b08]

INTEGRATION: CWS dr8aig (1.83.42); FILE MERGED 2003/07/23 15:17:47 dr 1.83.42.1: #110947# export of form controls


2003-07-24  Vladimir Glazounov  <vg@openoffice.org>  [4768fd0fcdc4d3e5f05a5369e9ef175fff678ea0]

INTEGRATION: CWS dr8aig (1.46.80); FILE MERGED 2003/07/23 15:17:46 dr 1.46.80.1: #110947# export of form controls


2003-07-22  Vladimir Glazounov  <vg@openoffice.org>  [9d98851874eb246774a2086e47f32a533fd04c60]

INTEGRATION: CWS mergem13s2 (1.75.6); FILE MERGED 2003/07/22 12:52:07 ihi 1.75.6.1: rc3 merge


2003-07-22  Vladimir Glazounov  <vg@openoffice.org>  [65ca7f52e0dee6e8a0ccb4e5a42e145312442d10]

INTEGRATION: CWS mergem13s2 (1.75.6); FILE MERGED 2003/07/22 12:52:01 ihi 1.75.6.1: rc3 merge


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [bc92f76d9fc2ae98a291524ad0953fa63771aba1]

INTEGRATION: CWS mergerc3 (1.19.2); FILE MERGED 2003/07/16 17:01:05 ihi 1.19.2.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [129ec407a48ea1a946e0c60fd8885ca4af4c5638]

INTEGRATION: CWS mergerc3 (1.22.2); FILE MERGED 2003/07/16 17:01:03 ihi 1.22.2.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [529d819c0c89505663f591a4419c06a70b1a4679]

INTEGRATION: CWS mergerc3 (1.59.2); FILE MERGED 2003/07/16 17:00:59 ihi 1.59.2.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [c5d51bc6863f4eedca6de796a63257a790b048e9]

INTEGRATION: CWS mergerc3 (1.30.10); FILE MERGED 2003/07/16 16:58:33 ihi 1.30.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [242ef316ee793eb9e9586572fa728cebd6190344]

INTEGRATION: CWS mergerc3 (1.21.10); FILE MERGED 2003/07/16 16:58:33 ihi 1.21.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [f85e4ec856ce8177d0a3c68c114d0a1569129267]

INTEGRATION: CWS mergerc3 (1.56.10); FILE MERGED 2003/07/16 16:58:22 ihi 1.56.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f5a8cd812afa2df048c6566e6477bfca7168489]

INTEGRATION: CWS mergerc3 (1.23.10); FILE MERGED 2003/07/16 16:58:22 ihi 1.23.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [b0252483eb3ba8c002db358cd1d044b6e597bce8]

INTEGRATION: CWS mergerc3 (1.19.10); FILE MERGED 2003/07/16 16:58:22 ihi 1.19.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [b28fd16d76a17ada67ffc1a3e6aebcad87bc73fa]

INTEGRATION: CWS mergerc3 (1.34.10); FILE MERGED 2003/07/16 16:58:21 ihi 1.34.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [06cbca6b6b653ff91dafd102cc3ae72e8c8ef131]

INTEGRATION: CWS mergerc3 (1.33.10); FILE MERGED 2003/07/16 16:58:21 ihi 1.33.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [04b0bc0861105fc213cbe18d5ee1f71cfe940229]

INTEGRATION: CWS mergerc3 (1.21.10); FILE MERGED 2003/07/16 16:58:20 ihi 1.21.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [b4ad15309d6a121def6bd2c83074bb3f387baa75]

INTEGRATION: CWS mergerc3 (1.14.10); FILE MERGED 2003/07/16 16:58:20 ihi 1.14.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [dcd9f1e3a35cebe8787256c6b9f28fdbcf1b1f4d]

INTEGRATION: CWS mergerc3 (1.17.10); FILE MERGED 2003/07/16 16:58:19 ihi 1.17.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [a90e9cc15bb2c2c80b9ed0b5cf919c49d0ade5cd]

INTEGRATION: CWS mergerc3 (1.74.8); FILE MERGED 2003/07/16 16:58:19 ihi 1.74.8.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [81086c4c7ea03d91fa15b56a023ec9d31f9eb3bd]

INTEGRATION: CWS mergerc3 (1.74.10); FILE MERGED 2003/07/16 16:58:13 ihi 1.74.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [a174f165d64eaa8ad02ce3a0c30fedc5cc81362a]

INTEGRATION: CWS mergerc3 (1.40.10); FILE MERGED 2003/07/16 16:58:13 ihi 1.40.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [32eeaa8107b711162b53c3ae46979b7678baa443]

INTEGRATION: CWS mergerc3 (1.18.10); FILE MERGED 2003/07/16 16:58:13 ihi 1.18.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [36efbc43b07736a29355153d84784bab800d96f1]

INTEGRATION: CWS mergerc3 (1.46.10); FILE MERGED 2003/07/16 16:58:12 ihi 1.46.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [2edd42d1e2088861ff25e45be71ce039a1b65337]

INTEGRATION: CWS mergerc3 (1.56.10); FILE MERGED 2003/07/16 16:58:12 ihi 1.56.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [99f5efdb10e0cca68a690e2dd3f13ba06aefc92a]

INTEGRATION: CWS mergerc3 (1.30.10); FILE MERGED 2003/07/16 16:58:11 ihi 1.30.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [a2213fc1e8418a2140879f3bb4af92c8ab008bff]

INTEGRATION: CWS mergerc3 (1.27.10); FILE MERGED 2003/07/16 16:58:11 ihi 1.27.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [ca6b89f478dadc2ba951b7fec3ba2c6226341158]

INTEGRATION: CWS mergerc3 (1.65.10); FILE MERGED 2003/07/16 16:58:11 ihi 1.65.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [c05ad05251c1cc441caf6982b5507c34031ba3db]

INTEGRATION: CWS mergerc3 (1.26.10); FILE MERGED 2003/07/16 16:58:09 ihi 1.26.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [3d38e3bbf71f6935681e2930cec4de01b40378a0]

INTEGRATION: CWS mergerc3 (1.46.10); FILE MERGED 2003/07/16 16:58:08 ihi 1.46.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [9f37bf81ec04754b46c4ef920f0daac418655fd5]

INTEGRATION: CWS mergerc3 (1.49.10); FILE MERGED 2003/07/16 16:58:07 ihi 1.49.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [5613d61f86f396e4ab4da3f717bdedbd8e129aee]

INTEGRATION: CWS mergerc3 (1.37.10); FILE MERGED 2003/07/16 16:58:07 ihi 1.37.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [588e7251f342ed20fcd811c10c564b3d7c2c4fd7]

INTEGRATION: CWS mergerc3 (1.36.10); FILE MERGED 2003/07/16 16:58:07 ihi 1.36.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [48ca8ee2d9e786e0fa5114af1e8ffc3e3bb0cd81]

INTEGRATION: CWS mergerc3 (1.24.10); FILE MERGED 2003/07/16 16:58:06 ihi 1.24.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [dfc35caaf84abf02521ec6cc3a9647096bbba83f]

INTEGRATION: CWS mergerc3 (1.37.10); FILE MERGED 2003/07/16 16:58:06 ihi 1.37.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [c774abab0985a59bafc53d622c089f66037c3831]

INTEGRATION: CWS mergerc3 (1.48.10); FILE MERGED 2003/07/16 16:58:05 ihi 1.48.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [35163de034800b0269e9348fe8d80ec7f93af4c2]

INTEGRATION: CWS mergerc3 (1.19.10); FILE MERGED 2003/07/16 16:58:05 ihi 1.19.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [4d3041e5710c4f3ecd909f6b8fac0e52d30c8aaf]

INTEGRATION: CWS mergerc3 (1.43.10); FILE MERGED 2003/07/16 16:58:04 ihi 1.43.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [10cca1355da967427471f2c3597e4ebe2a3911e6]

INTEGRATION: CWS mergerc3 (1.36.10); FILE MERGED 2003/07/16 16:58:04 ihi 1.36.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [b1bde4620bb898595b471694904be830811e9004]

INTEGRATION: CWS mergerc3 (1.36.10); FILE MERGED 2003/07/16 16:58:03 ihi 1.36.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [d046634ece69d4ca20bdebab12a5c9c181c8dfd3]

INTEGRATION: CWS mergerc3 (1.24.10); FILE MERGED 2003/07/16 16:58:02 ihi 1.24.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8722525d27480ed20eb622d1812d64a42db1ecd]

INTEGRATION: CWS mergerc3 (1.28.10); FILE MERGED 2003/07/16 16:58:02 ihi 1.28.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [0558082df35ca227f22bee4eb94dbe60909fcf14]

INTEGRATION: CWS mergerc3 (1.25.10); FILE MERGED 2003/07/16 16:58:01 ihi 1.25.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [93c10b3af6bdb342dda3b020a6d285215f898fa7]

INTEGRATION: CWS mergerc3 (1.27.10); FILE MERGED 2003/07/16 16:58:01 ihi 1.27.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [7863621cd8b608736df924f5892b3b4635974c58]

INTEGRATION: CWS mergerc3 (1.22.10); FILE MERGED 2003/07/16 16:58:00 ihi 1.22.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [3a7848a417bd9f7c9e072bee7a994545e27a118a]

INTEGRATION: CWS mergerc3 (1.40.10); FILE MERGED 2003/07/16 16:58:00 ihi 1.40.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [29b4276657a11443144ec6054ecb4b6280c30da3]

INTEGRATION: CWS mergerc3 (1.27.10); FILE MERGED 2003/07/16 16:57:59 ihi 1.27.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [4ee4c9c30143258ce471821e0263f365c0dcac9d]

INTEGRATION: CWS mergerc3 (1.57.10); FILE MERGED 2003/07/16 16:57:59 ihi 1.57.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [eec2f8ac5eba6e5f7d203202b564d7e92ce77aed]

INTEGRATION: CWS mergerc3 (1.18.10); FILE MERGED 2003/07/16 16:57:58 ihi 1.18.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [def34787ee251e921cf4760bdf3b3f8efee4ed37]

INTEGRATION: CWS mergerc3 (1.23.10); FILE MERGED 2003/07/16 16:57:58 ihi 1.23.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [aeca99fbdf0ae10457c1a8b75b0ea93df48fc1e2]

INTEGRATION: CWS mergerc3 (1.36.8); FILE MERGED 2003/07/16 16:57:56 ihi 1.36.8.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [fab609ca579b63c42e53d2ab5e667f598c9fa312]

INTEGRATION: CWS mergerc3 (1.35.10); FILE MERGED 2003/07/16 16:57:56 ihi 1.35.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [e1cb5fe9c75cad4ae4795b0a701ba2bcaa2bad4d]

INTEGRATION: CWS mergerc3 (1.29.10); FILE MERGED 2003/07/16 16:57:56 ihi 1.29.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [c9ffa33648c0cb98f38da514dfceeb209a1872fa]

INTEGRATION: CWS mergerc3 (1.49.10); FILE MERGED 2003/07/16 16:57:55 ihi 1.49.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [fc5f77d5e632f844c31fb8bb7fc15f05cdb3eb43]

INTEGRATION: CWS mergerc3 (1.28.10); FILE MERGED 2003/07/16 16:57:55 ihi 1.28.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [d2dea66833cc8710f94e3cc97c76da5bf9f604d6]

INTEGRATION: CWS mergerc3 (1.31.10); FILE MERGED 2003/07/16 16:57:54 ihi 1.31.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [9bb65779bce72e039b7afdfcc92f55274a0b43c2]

INTEGRATION: CWS mergerc3 (1.30.10); FILE MERGED 2003/07/16 16:57:54 ihi 1.30.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [0feb67dfc7260dc3cd83499ff32af1c2e6c6a932]

INTEGRATION: CWS mergerc3 (1.28.10); FILE MERGED 2003/07/16 16:57:54 ihi 1.28.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [692be6d2b2a1ab4bf3d50984a6d104a5f62da483]

INTEGRATION: CWS mergerc3 (1.40.10); FILE MERGED 2003/07/16 16:57:52 ihi 1.40.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [33c50ad1a7ae23cc90493c9d15ce9e54f55f86a8]

INTEGRATION: CWS mergerc3 (1.16.10); FILE MERGED 2003/07/16 16:57:51 ihi 1.16.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [b1108d8e348ab1d80e6af198752a05fd7bfb8d37]

INTEGRATION: CWS mergerc3 (1.26.10); FILE MERGED 2003/07/16 16:57:50 ihi 1.26.10.1: rc-3 merge all languages


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [62f65dfda1fcbdb700d21dd7422695e4be1ae194]

INTEGRATION: CWS sab004 (1.32.70); FILE MERGED 2003/07/15 12:58:32 sab 1.32.70.1: #110797#; Stop editing text before closing the view


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [50ee8d6f67639ef8a05e046f8b189d2dc224578e]

INTEGRATION: CWS sab004 (1.27.70); FILE MERGED 2003/07/15 12:57:40 sab 1.27.70.1: #110797#; dipose AccessibleShape before releasing


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [33333a49ba9a7ee1a186132adc80b3d7ad017b67]

INTEGRATION: CWS sab004 (1.62.50); FILE MERGED 2003/07/15 12:57:39 sab 1.62.50.1: #110797#; dipose AccessibleShape before releasing


2003-07-17  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8fb35c640d352b4f951ff2cdbd727f7cc6ff5fd]

INTEGRATION: CWS sab004 (1.12.196); FILE MERGED 2003/07/16 08:55:44 sab 1.12.196.2: #108865#; the assertions should say what happens 2003/07/15 16:31:43 sab 1.12.196.1: #108865#; use new API to get sort properties


2003-07-09  Vladimir Glazounov  <vg@openoffice.org>  [4fd0f1143f95b7122a0f85f350ff8106f00d2972]

INTEGRATION: CWS calc15 (1.11.182); FILE MERGED 2003/07/02 16:31:08 nn 1.11.182.1: #110572# use return value from parent class in edit field Notify methods


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [70bc9cbcf16649b5940d1a99cf8600d1718356b8]

INTEGRATION: CWS rc2merge (1.29.26); FILE MERGED 2003/07/03 14:30:58 ihi 1.29.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [99dcfdd1e95886054e7878cde463835e787dbed1]

INTEGRATION: CWS rc2merge (1.20.26); FILE MERGED 2003/07/03 14:30:58 ihi 1.20.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [41000e9dde8d01a15498cdd48fb75040709b4c39]

INTEGRATION: CWS rc2merge (1.54.26); FILE MERGED 2003/07/03 14:30:40 ihi 1.54.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3f28960c452f2589eeeffbcc3c0f235c5cbeb5a5]

INTEGRATION: CWS rc2merge (1.22.26); FILE MERGED 2003/07/03 14:30:39 ihi 1.22.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a9c4358d04fd40e1bcf92e4bbb3d906fdc1559cc]

INTEGRATION: CWS rc2merge (1.18.26); FILE MERGED 2003/07/03 14:30:39 ihi 1.18.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [4082ab7e27b6fe65dd34d3c78b55766c1ff113ad]

INTEGRATION: CWS rc2merge (1.33.26); FILE MERGED 2003/07/03 14:30:38 ihi 1.33.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2f78b2aafb2094ad070dbf913edced4cc553b209]

INTEGRATION: CWS rc2merge (1.32.26); FILE MERGED 2003/07/03 14:30:38 ihi 1.32.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [bc6a5afbc6e5ae301aa051b6949ed9e54ea5b5d8]

INTEGRATION: CWS rc2merge (1.20.26); FILE MERGED 2003/07/03 14:30:37 ihi 1.20.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [14b0d5024980acf4d88e07c5cc6429b0d5503305]

INTEGRATION: CWS rc2merge (1.13.26); FILE MERGED 2003/07/03 14:30:37 ihi 1.13.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [d7fbf9db905a44a8d32a6ee69505ee221ae1ce11]

INTEGRATION: CWS rc2merge (1.16.26); FILE MERGED 2003/07/03 14:30:36 ihi 1.16.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [7d2eb2f13585f34e00288098aa9cfd850a626d24]

INTEGRATION: CWS rc2merge (1.73.14); FILE MERGED 2003/07/03 14:30:35 ihi 1.73.14.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [94dca9a4d3f7f1ce25f2e8baf0a5d722092dac73]

INTEGRATION: CWS rc2merge (1.73.26); FILE MERGED 2003/07/03 14:30:25 ihi 1.73.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2a4a05d2b1b9d0354f337917b8d41d82504b6750]

INTEGRATION: CWS rc2merge (1.39.26); FILE MERGED 2003/07/03 14:30:25 ihi 1.39.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [bea849d2efb9f14808ed00e6a4b7581205dbc508]

INTEGRATION: CWS rc2merge (1.17.26); FILE MERGED 2003/07/03 14:30:24 ihi 1.17.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [23d3e166b7abe1fb594b332eba2480cf8a68201b]

INTEGRATION: CWS rc2merge (1.45.26); FILE MERGED 2003/07/03 14:30:24 ihi 1.45.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a819c8d4b60cc00d498e79c9ae3113dd1591895e]

INTEGRATION: CWS rc2merge (1.55.26); FILE MERGED 2003/07/03 14:30:23 ihi 1.55.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [189e981ad256572c4286f6f7c540459ec4c15cd9]

INTEGRATION: CWS rc2merge (1.29.26); FILE MERGED 2003/07/03 14:30:22 ihi 1.29.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [6d5a43591ed5d6ce479b8cc3a8e24e0eb5b82843]

INTEGRATION: CWS rc2merge (1.26.26); FILE MERGED 2003/07/03 14:30:22 ihi 1.26.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [2aec1afda1a1f9e1fc775aea63e0f3abfca8a3bb]

INTEGRATION: CWS rc2merge (1.64.26); FILE MERGED 2003/07/03 14:30:20 ihi 1.64.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [0c09a2b3c42139f1111c8c3d6432c937ff158d32]

INTEGRATION: CWS rc2merge (1.25.26); FILE MERGED 2003/07/03 14:30:17 ihi 1.25.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [4f0bcbee56cf86fb013116cdd9bd5999eca48a6c]

INTEGRATION: CWS rc2merge (1.45.26); FILE MERGED 2003/07/03 14:30:16 ihi 1.45.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [3d37450ee666f2c90bbba47734ec7176f607a633]

INTEGRATION: CWS rc2merge (1.48.26); FILE MERGED 2003/07/03 14:30:15 ihi 1.48.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [16d7b517d955b3b3600edcdb4790fa93e3e2cae3]

INTEGRATION: CWS rc2merge (1.36.26); FILE MERGED 2003/07/03 14:30:14 ihi 1.36.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cf838910163c3bfce26ca18d0c0c1f846ff7b8c5]

INTEGRATION: CWS rc2merge (1.35.26); FILE MERGED 2003/07/03 14:30:14 ihi 1.35.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [e709fd3971fd75207adc449538da774907fa86ba]

INTEGRATION: CWS rc2merge (1.23.26); FILE MERGED 2003/07/03 14:30:13 ihi 1.23.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9ce925f6783a6aeeb281d75ff3677c0e984dbf1d]

INTEGRATION: CWS rc2merge (1.36.26); FILE MERGED 2003/07/03 14:30:11 ihi 1.36.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [457fb87c9647b756d808174ef787a22d6346b51b]

INTEGRATION: CWS rc2merge (1.47.26); FILE MERGED 2003/07/03 14:30:10 ihi 1.47.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [194f5e33543127460e16121c9b01e8135cb539ea]

INTEGRATION: CWS rc2merge (1.18.26); FILE MERGED 2003/07/03 14:30:08 ihi 1.18.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff8f65c84034d3ad5942542cc40987b0b29138b0]

INTEGRATION: CWS rc2merge (1.42.26); FILE MERGED 2003/07/03 14:30:07 ihi 1.42.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [77bc7362261cb71203f9e0f85bf3e0fb8c231e15]

INTEGRATION: CWS rc2merge (1.35.26); FILE MERGED 2003/07/03 14:30:06 ihi 1.35.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [50ccf05db3294b6dfa88c08121e99e0f34a5a961]

INTEGRATION: CWS rc2merge (1.35.26); FILE MERGED 2003/07/03 14:30:04 ihi 1.35.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [1f4d8d53a6f9fcefe150b314ad5a9d890439bb1e]

INTEGRATION: CWS rc2merge (1.23.26); FILE MERGED 2003/07/03 14:30:01 ihi 1.23.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [623e1d36c357de410262898554c6880971d570af]

INTEGRATION: CWS rc2merge (1.27.26); FILE MERGED 2003/07/03 14:30:00 ihi 1.27.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a306c5f08bf85075fad644884f6dba4c12af4fba]

INTEGRATION: CWS rc2merge (1.24.26); FILE MERGED 2003/07/03 14:30:00 ihi 1.24.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [237b5952149d6636108035fed2b98f52e388bbbe]

INTEGRATION: CWS rc2merge (1.26.26); FILE MERGED 2003/07/03 14:29:59 ihi 1.26.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cca684d61083cc2f21d6171c13f0bc7f5b425f14]

INTEGRATION: CWS rc2merge (1.21.26); FILE MERGED 2003/07/03 14:29:57 ihi 1.21.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [cc24fe1f4e2936fc114d8ab72a8f11f68d0e17a8]

INTEGRATION: CWS rc2merge (1.39.26); FILE MERGED 2003/07/03 14:29:57 ihi 1.39.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [555f886bc25675d0b4264fa4007781ff201cd9e8]

INTEGRATION: CWS rc2merge (1.26.26); FILE MERGED 2003/07/03 14:29:56 ihi 1.26.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [bee025547f8c81530359afe045569db3f7073402]

INTEGRATION: CWS rc2merge (1.56.26); FILE MERGED 2003/07/03 14:29:53 ihi 1.56.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [9962a60d1e545288c5d070131d9b4fc79f17d238]

INTEGRATION: CWS rc2merge (1.17.26); FILE MERGED 2003/07/03 14:29:52 ihi 1.17.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [84839ccd872ae8429cd679a784d0217d9b759ea4]

INTEGRATION: CWS rc2merge (1.22.26); FILE MERGED 2003/07/03 14:29:50 ihi 1.22.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [a10cec57d813692ed056f6de0638bbed7d4410fd]

INTEGRATION: CWS rc2merge (1.35.26); FILE MERGED 2003/07/03 14:29:48 ihi 1.35.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [91f6a715f41d4573b58c7a30bc599e591e3d22c0]

INTEGRATION: CWS rc2merge (1.34.26); FILE MERGED 2003/07/03 14:29:48 ihi 1.34.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c8fba9fbad454db9ce91161a90d5183ef46367e8]

INTEGRATION: CWS rc2merge (1.28.26); FILE MERGED 2003/07/03 14:29:47 ihi 1.28.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [93eb330f365defd4457eb04b82b81cf5deec5820]

INTEGRATION: CWS rc2merge (1.48.26); FILE MERGED 2003/07/03 14:29:47 ihi 1.48.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [c12cefc93c7908f73477268f283054e94bce00c6]

INTEGRATION: CWS rc2merge (1.27.26); FILE MERGED 2003/07/03 14:29:47 ihi 1.27.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [048b7def9c3354abaddd15c1c5aced5d4cef8a80]

INTEGRATION: CWS rc2merge (1.30.26); FILE MERGED 2003/07/03 14:29:46 ihi 1.30.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [93abaf67da456272cf31499ab9d6f99f8e779e9a]

INTEGRATION: CWS rc2merge (1.29.26); FILE MERGED 2003/07/03 14:29:46 ihi 1.29.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [88698e45dfe0b45ac6a0605e5bd9ead1f3afe117]

INTEGRATION: CWS rc2merge (1.27.26); FILE MERGED 2003/07/03 14:29:45 ihi 1.27.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [91d1931a49700b79907bc6dec0341fb5c2f04b49]

INTEGRATION: CWS rc2merge (1.39.26); FILE MERGED 2003/07/03 14:29:42 ihi 1.39.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [ff5bd3a59d0fbb83321566e2558394ef8a477133]

INTEGRATION: CWS rc2merge (1.15.26); FILE MERGED 2003/07/03 14:29:38 ihi 1.15.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [b8e182d5dd23a04fe93615f69696894813f7bd14]

INTEGRATION: CWS rc2merge (1.25.26); FILE MERGED 2003/07/03 14:29:36 ihi 1.25.26.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [39a91de52b1087f886aed092bbf987261dce0028]

INTEGRATION: CWS rc2merge (1.18.4); FILE MERGED 2003/07/03 14:34:01 ihi 1.18.4.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [f5846e538e25249ee655b3bd0e7d77c8416d3d39]

INTEGRATION: CWS rc2merge (1.21.4); FILE MERGED 2003/07/03 14:33:54 ihi 1.21.4.1: rc-2 merge all languages


2003-07-03  Jens-Heiner Rechtien  <hr@openoffice.org>  [931bb1075fd2fed9efdddc522ea5a189b5f57cbb]

INTEGRATION: CWS rc2merge (1.58.4); FILE MERGED 2003/07/03 14:33:48 ihi 1.58.4.1: rc-2 merge all languages


2003-07-02  Vladimir Glazounov  <vg@openoffice.org>  [4045e8b5819c450bd720c0731387ed4e0f19a8da]

INTEGRATION: CWS ooo11rc (1.17.40); FILE MERGED 2003/06/27 00:52:55 nick 1.17.40.1: IZ 15352: Larger lgot_buffer size for IRIX


2003-07-02  Vladimir Glazounov  <vg@openoffice.org>  [a4536176af67ef0660c93f9087506075e816adb0]

INTEGRATION: CWS ooo11rc (1.54.2); FILE MERGED 2003/07/01 08:20:42 tv 1.54.2.1: #i15918# added support for czech and slovak icons


2003-06-25  Vladimir Glazounov  <vg@openoffice.org>  [dc2fb7972f2510c475ecbbd1d40d4f8da816d648]

INTEGRATION: CWS dvo002 (1.72.4); FILE MERGED 2003/06/20 10:38:59 dr 1.72.4.1: #110293# use for clipboard format name


2003-06-25  Vladimir Glazounov  <vg@openoffice.org>  [7209ef8a84dfb16f095566769418d03a9ddd4490]

INTEGRATION: CWS dvo002 (1.6.22); FILE MERGED 2003/06/23 09:40:44 dr 1.6.22.1: #110387# support all known code pages


2003-06-25  Vladimir Glazounov  <vg@openoffice.org>  [f703f0c3a16d8749f351204ac7888ea0e92498c4]

INTEGRATION: CWS dvo002 (1.6.22); FILE MERGED 2003/06/23 09:40:30 dr 1.6.22.1: #110387# support all known code pages


2003-06-25  Vladimir Glazounov  <vg@openoffice.org>  [ec580b8eb36c84662576a36f3ea916d9a2257a1c]

INTEGRATION: CWS dvo002 (1.52.22); FILE MERGED 2003/06/23 09:40:30 dr 1.52.22.1: #110387# support all known code pages


2003-06-25  Vladimir Glazounov  <vg@openoffice.org>  [51a943f5f69ad2ebf3d0da49f78d91d063fbf31b]

INTEGRATION: CWS dvo002 (1.58.22); FILE MERGED 2003/06/23 09:40:29 dr 1.58.22.1: #110387# support all known code pages


2003-06-20  Vladimir Glazounov  <vg@openoffice.org>  [029c2165362b301824a1d93810cf1ca291222a43]

INTEGRATION: CWS calc14 (1.8.62); FILE MERGED 2003/06/16 08:10:20 dr 1.8.62.1: #110196# window text color for preview


2003-06-20  Vladimir Glazounov  <vg@openoffice.org>  [e8956c358c264a2ad1bbaae6377c5db3e5a3dfa5]

INTEGRATION: CWS calc14 (1.16.62); FILE MERGED 2003/06/16 08:10:44 dr 1.16.62.1: #110196# window text color for preview


2003-06-20  Vladimir Glazounov  <vg@openoffice.org>  [8624de2384d2889af8faf84ddee77bc237a75fa4]

INTEGRATION: CWS calc14 (1.2.18); FILE MERGED 2003/06/16 10:50:43 dr 1.2.18.1: #110252# don't insert faked Escher obj's into stream pos cache


2003-06-20  Vladimir Glazounov  <vg@openoffice.org>  [bc253b5117d03b26c1244b908f266074ecff91e4]

INTEGRATION: CWS calc14 (1.82.18); FILE MERGED 2003/06/17 11:55:41 dr 1.82.18.1: #110252# call XclImpObjectManager::Apply() also without Escher stream


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [b806892f894f712c5e7222d033aac2cbd4438787]

INTEGRATION: CWS rcmerge (1.28.32); FILE MERGED 2003/06/12 11:03:08 gh 1.28.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [0f5960a9d9415ee46bbee499e42071014f8d9239]

INTEGRATION: CWS rcmerge (1.19.32); FILE MERGED 2003/06/12 11:03:08 gh 1.19.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [3554d0d71b0941493749889c632d6382c2a607f9]

INTEGRATION: CWS rcmerge (1.53.10); FILE MERGED 2003/06/12 11:02:56 gh 1.53.10.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [8c95c854e6ffa1bf398187f2e6fdb69817596094]

INTEGRATION: CWS rcmerge (1.21.32); FILE MERGED 2003/06/12 11:02:56 gh 1.21.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [07b543289fdabe872c03a9c13004082cad8d2d65]

INTEGRATION: CWS rcmerge (1.17.32); FILE MERGED 2003/06/12 11:02:55 gh 1.17.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [50861532638816192a717751abd7bacaad5a43c6]

INTEGRATION: CWS rcmerge (1.32.32); FILE MERGED 2003/06/12 11:02:55 gh 1.32.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [7a252f9c8cd96738a4832921792591b45cc8f8d9]

INTEGRATION: CWS rcmerge (1.31.32); FILE MERGED 2003/06/12 11:02:54 gh 1.31.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [498392307dbe4562b7ff0e3e15f12f220d81c9b2]

INTEGRATION: CWS rcmerge (1.19.32); FILE MERGED 2003/06/12 11:02:54 gh 1.19.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [d98f275b1a5ec5e5d6c947a5da3a019f3e5f5442]

INTEGRATION: CWS rcmerge (1.12.32); FILE MERGED 2003/06/12 11:02:53 gh 1.12.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [2bf4990eeb8f796316292ac7e01f873362223e70]

INTEGRATION: CWS rcmerge (1.15.32); FILE MERGED 2003/06/12 11:02:53 gh 1.15.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [0872d79acbe164a229cd1de6b1241f5ba6bc2942]

INTEGRATION: CWS rcmerge (1.71.32); FILE MERGED 2003/06/12 11:02:52 gh 1.71.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [1b5cfdc4a23a7784c2d35ce3ed0fb14e6fe19539]

INTEGRATION: CWS rcmerge (1.72.32); FILE MERGED 2003/06/12 11:02:44 gh 1.72.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [67f265aba0513fe9863c83e5e90b2f133e315fb8]

INTEGRATION: CWS rcmerge (1.38.32); FILE MERGED 2003/06/12 11:02:43 gh 1.38.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [c0fc9b4eeec1cf969e933df0ad7bae1444446c97]

INTEGRATION: CWS rcmerge (1.16.32); FILE MERGED 2003/06/12 11:02:43 gh 1.16.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [4b30da48ecc27f00358892e7e9597bff50f3140d]

INTEGRATION: CWS rcmerge (1.44.32); FILE MERGED 2003/06/12 11:02:42 gh 1.44.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [2a6146dc17493f68030ac210a64801a1d53fdc36]

INTEGRATION: CWS rcmerge (1.54.32); FILE MERGED 2003/06/12 11:02:41 gh 1.54.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [cdeb28b6fd731ac4e7894a8bd50a40f8286603e2]

INTEGRATION: CWS rcmerge (1.28.32); FILE MERGED 2003/06/12 11:02:41 gh 1.28.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [ac5f78f4ea8c4a48b4b5a9845eb9e63ef910e194]

INTEGRATION: CWS rcmerge (1.25.32); FILE MERGED 2003/06/12 11:02:40 gh 1.25.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [aaab39a4e33a603e6116777055bbf07ebf830d71]

INTEGRATION: CWS rcmerge (1.63.32); FILE MERGED 2003/06/12 11:02:39 gh 1.63.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [6dfab410249079b09a21c25f68ff8ab2a058096b]

INTEGRATION: CWS rcmerge (1.24.32); FILE MERGED 2003/06/12 11:02:37 gh 1.24.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [d533d3e733e898d1e6e058793055b389fc1685b6]

INTEGRATION: CWS rcmerge (1.44.32); FILE MERGED 2003/06/12 11:02:35 gh 1.44.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [9a02c3f2b2a9bd2d27904ccc79ae6a62d9776d61]

INTEGRATION: CWS rcmerge (1.47.32); FILE MERGED 2003/06/12 11:02:35 gh 1.47.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [7111df2dd0d8871dcea92ef0500653592b96ed5a]

INTEGRATION: CWS rcmerge (1.35.32); FILE MERGED 2003/06/12 11:02:34 gh 1.35.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [372cbebd1a78c83df4c67dcc3c2fa4c95e3a966f]

INTEGRATION: CWS rcmerge (1.34.32); FILE MERGED 2003/06/12 11:02:34 gh 1.34.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [4438cdd4d3bd1ec4deb3c9cdde169d73a871c65c]

INTEGRATION: CWS rcmerge (1.22.32); FILE MERGED 2003/06/12 11:02:33 gh 1.22.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [9c05007f74319928360e913e652e360f1cb12533]

INTEGRATION: CWS rcmerge (1.35.32); FILE MERGED 2003/06/12 11:02:32 gh 1.35.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [28f8462995963c5e90b6a4b42cc735779b54546b]

INTEGRATION: CWS rcmerge (1.46.32); FILE MERGED 2003/06/12 11:02:32 gh 1.46.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [b7488655a464c80453592b1c2ff7fc19161c5fce]

INTEGRATION: CWS rcmerge (1.17.32); FILE MERGED 2003/06/12 11:02:30 gh 1.17.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [235ed15593db578b9a44d80fdfd02aadf7531dc4]

INTEGRATION: CWS rcmerge (1.41.32); FILE MERGED 2003/06/12 11:02:30 gh 1.41.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [71bacf3aa793184a1301e47969a2d5b344ce85c4]

INTEGRATION: CWS rcmerge (1.34.32); FILE MERGED 2003/06/12 11:02:29 gh 1.34.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [be7b747ac81d828b33d6f8590142245cf81dc61f]

INTEGRATION: CWS rcmerge (1.34.32); FILE MERGED 2003/06/12 11:02:28 gh 1.34.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [6a378e308db15c9fc00e1277a9cb1b779872efb7]

INTEGRATION: CWS rcmerge (1.22.32); FILE MERGED 2003/06/12 11:02:27 gh 1.22.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [9d587eb1d7ebc2b7d47d41eabc27268c6a9830b9]

INTEGRATION: CWS rcmerge (1.26.32); FILE MERGED 2003/06/12 11:02:26 gh 1.26.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [7eed15d92d88bf2087442e270b2cb2e4c0cc1fdd]

INTEGRATION: CWS rcmerge (1.23.32); FILE MERGED 2003/06/12 11:02:26 gh 1.23.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [4eb1c44bfda84d2163a816f118ef5f35faabcea9]

INTEGRATION: CWS rcmerge (1.25.32); FILE MERGED 2003/06/12 11:02:25 gh 1.25.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [1b79fc563afa0bf734bdc89fe895cb1f112a5f6d]

INTEGRATION: CWS rcmerge (1.20.32); FILE MERGED 2003/06/12 11:02:24 gh 1.20.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [3165382aa7663962c58f84472e3201d27766a01d]

INTEGRATION: CWS rcmerge (1.38.32); FILE MERGED 2003/06/12 11:02:24 gh 1.38.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [b7e0b7821726bf145d42e1b784c4179077360325]

INTEGRATION: CWS rcmerge (1.25.32); FILE MERGED 2003/06/12 11:02:23 gh 1.25.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [b05e28c0179ed5d81b54a4c5f1384c8d194872e9]

INTEGRATION: CWS rcmerge (1.55.32); FILE MERGED 2003/06/12 11:02:22 gh 1.55.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [f8ff4086ae9d403c76108a49f96d1e48c76bd24d]

INTEGRATION: CWS rcmerge (1.16.32); FILE MERGED 2003/06/12 11:02:22 gh 1.16.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [e52799b68ea53ae4c62e20bf74dde0d46ae39a83]

INTEGRATION: CWS rcmerge (1.21.32); FILE MERGED 2003/06/12 11:02:21 gh 1.21.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [886069cfde6562b6adb17d8cd28a5e412f97e5c5]

INTEGRATION: CWS rcmerge (1.34.32); FILE MERGED 2003/06/12 11:02:19 gh 1.34.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [84b2eccdbeae93ecbc8058457ebcdf162784b78b]

INTEGRATION: CWS rcmerge (1.33.32); FILE MERGED 2003/06/12 11:02:18 gh 1.33.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [3e16ea903e3f32144d7f6facf9024a2234f39cff]

INTEGRATION: CWS rcmerge (1.27.32); FILE MERGED 2003/06/12 11:02:18 gh 1.27.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [8a1ee99ba3159b1fc67868d5d343d17de5647fcd]

INTEGRATION: CWS rcmerge (1.47.32); FILE MERGED 2003/06/12 11:02:17 gh 1.47.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [2a26824543869e48d9bce11ffff995f66f035197]

INTEGRATION: CWS rcmerge (1.26.32); FILE MERGED 2003/06/12 11:02:17 gh 1.26.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [67d729fb017cc5ba5ece9c1f23bc82655eccba43]

INTEGRATION: CWS rcmerge (1.29.32); FILE MERGED 2003/06/12 11:02:16 gh 1.29.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [69845db8dc13e25a2fa8a335c0bf66fc9b5fbcc2]

INTEGRATION: CWS rcmerge (1.28.32); FILE MERGED 2003/06/12 11:02:16 gh 1.28.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [9de3ff2d7812e43605b94b9e54d68d0a451662ff]

INTEGRATION: CWS rcmerge (1.26.32); FILE MERGED 2003/06/12 11:02:15 gh 1.26.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [2f6002c2f6a26da9221edfa4a1e3a89cc05f3767]

INTEGRATION: CWS rcmerge (1.38.32); FILE MERGED 2003/06/12 11:02:14 gh 1.38.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [03204e9c60ed1af11f8ad4a8b631e37c3733005e]

INTEGRATION: CWS rcmerge (1.14.32); FILE MERGED 2003/06/12 11:02:11 gh 1.14.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [2445a7f429d815e6e71d5b79c446238b2e42c87e]

INTEGRATION: CWS rcmerge (1.24.32); FILE MERGED 2003/06/12 11:02:09 gh 1.24.32.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [e6edd5c53d5ec9d25a771438b35d96ebdcb9d434]

INTEGRATION: CWS rcmerge (1.17.10); FILE MERGED 2003/06/12 11:07:50 gh 1.17.10.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [e1097a05652fd8a7547a797e3766561054435482]

INTEGRATION: CWS rcmerge (1.20.10); FILE MERGED 2003/06/12 11:07:46 gh 1.20.10.1: final Merge RC


2003-06-13  Jens-Heiner Rechtien  <hr@openoffice.org>  [f6907af8a674ca890372a09856ae5a7e105ad2bf]

INTEGRATION: CWS rcmerge (1.57.10); FILE MERGED 2003/06/12 11:07:40 gh 1.57.10.1: final Merge RC


2003-06-12  Vladimir Glazounov  <vg@openoffice.org>  [d2272579a63e4156e856c84acb76c9fb0ee93374]

INTEGRATION: CWS mh11rc (1.12.54); FILE MERGED 2003/06/06 09:03:04 mh 1.12.54.1: join: from beta2


2003-06-12  Vladimir Glazounov  <vg@openoffice.org>  [86dc298cd9a68bed59418a73f817050d741d588f]

INTEGRATION: CWS mh11rc (1.40.46); FILE MERGED 2003/06/06 09:03:04 mh 1.40.46.1: join: from beta2


2003-06-12  Vladimir Glazounov  <vg@openoffice.org>  [32ea39201e72dc3950036487380b212e2492502d]

INTEGRATION: CWS mh11rc (1.17.160); FILE MERGED 2003/06/06 09:03:03 mh 1.17.160.1: join: from beta2


2003-06-12  Vladimir Glazounov  <vg@openoffice.org>  [c5b3493654b14b54f50c9d2307b0302c6d175a4a]

INTEGRATION: CWS mh11rc (1.17.46); FILE MERGED 2003/06/06 09:03:02 mh 1.17.46.1: join: from beta2


2003-06-12  Vladimir Glazounov  <vg@openoffice.org>  [b8107a817596a62fe66dae3cc8521700d07a9d9e]

INTEGRATION: CWS mh11rc (1.6.158); FILE MERGED 2003/06/06 09:03:02 mh 1.6.158.1: join: from beta2


2003-06-12  Vladimir Glazounov  <vg@openoffice.org>  [1c482bc100e9288f6c5ff6c054fbead853aaba40]

INTEGRATION: CWS mh11rc (1.4.160); FILE MERGED 2003/06/06 09:03:01 mh 1.4.160.1: join: from beta2


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [73ff1013d9774c493f6fa391b87c88df14ab43a9]

INTEGRATION: CWS calc13 (1.34.2); FILE MERGED 2003/06/03 11:15:34 sab 1.34.2.1: #109979#; make the same things while loading flatxml like while loading sxc


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [b3a23c2e312a55b0c85c2e644ffcbf048372ba3d]

INTEGRATION: CWS calc13 (1.23.30); FILE MERGED 2003/06/03 13:53:24 sab 1.23.30.2: #109979#; second version of bugfix 2003/06/03 11:13:52 sab 1.23.30.1: #109979#; make the same things while loading flatxml like while loading sxc


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [23b951509f7068bd914ad6ea524c5f1cc4ee94d9]

INTEGRATION: CWS calc13 (1.24.28); FILE MERGED 2003/06/02 15:12:36 nn 1.24.28.1: #i14974# set time fields to 0, use getLocalDateTime in CSV date import


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [15dcc64216643dc6ca726850eb8f1d223cfab488]

INTEGRATION: CWS calc13 (1.61.30); FILE MERGED 2003/06/03 13:53:36 sab 1.61.30.2: #109979#; second version of bugfix 2003/06/03 11:13:21 sab 1.61.30.1: #109979#; make the same things while loading flatxml like while loading sxc


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [da8dec027d5ed12d171f4d4fabd3c0433d1d26f6]

INTEGRATION: CWS calc13 (1.32.2); FILE MERGED 2003/06/03 11:57:07 nn 1.32.2.1: #109441# don't modify font defaults in command handler for ext text input


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [b467e4b112ad2c8bae84f4c8fef560ebc9a6e3c4]

INTEGRATION: CWS calc13 (1.10.172); FILE MERGED 2003/06/02 12:52:39 sab 1.10.172.1: #110006#; catch exception while trying to insert a named range with the same name like a existing range and insert with a new name


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [ac72dd76c05d3f5f908f41ddf7218aaa5c423969]

INTEGRATION: CWS calc13 (1.63.156); FILE MERGED 2003/06/03 11:13:03 sab 1.63.156.1: #109979#; make the same things while loading flatxml like while loading sxc


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [10d482b51e4f377ecafd9b2e058939c2454bec8e]

INTEGRATION: CWS calc13 (1.86.44); FILE MERGED 2003/06/03 13:53:09 sab 1.86.44.2: #109979#; second version of bugfix 2003/06/03 11:13:02 sab 1.86.44.1: #109979#; make the same things while loading flatxml like while loading sxc


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [4a61b53f4d0866f2be10434cb14ca5955d445c2c]

INTEGRATION: CWS calc13 (1.13.154); FILE MERGED 2003/06/03 11:12:40 sab 1.13.154.1: #109979#; make the same things while loading flatxml like while loading sxc


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [27c9d8755258306fa951e2e5376a72d09533f830]

INTEGRATION: CWS dr4 (1.10.10); FILE MERGED 2003/06/02 10:18:21 dr 1.10.10.1: #i9134# fixed BESSEL J and I calculation


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [37903a0de0dc61b733da28db044184b52be452cc]

INTEGRATION: CWS dr4 (1.1.2); FILE ADDED 2003/06/02 10:18:20 dr 1.1.2.1: #i9134# fixed BESSEL J and I calculation


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [0a8fd629e20d342db2090abda56d88c6c94dc00a]

INTEGRATION: CWS dr4 (1.1.2); FILE ADDED 2003/06/02 10:18:19 dr 1.1.2.1: #i9134# fixed BESSEL J and I calculation


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [59f4d41141525f0b5630673ed199cb770d82e345]

INTEGRATION: CWS dr4 (1.23.8); FILE MERGED 2003/06/02 10:18:18 dr 1.23.8.1: #i9134# fixed BESSEL J and I calculation


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [85a9cfee27ed5dea5ce0b15a255a30fb649bf960]

INTEGRATION: CWS dr4 (1.39.8); FILE MERGED 2003/06/02 10:18:18 dr 1.39.8.1: #i9134# fixed BESSEL J and I calculation


2003-06-04  Vladimir Glazounov  <vg@openoffice.org>  [452e81c449a70f16ec1be97bd74d83c143c93344]

INTEGRATION: CWS dr4 (1.32.14); FILE MERGED 2003/06/02 10:18:17 dr 1.32.14.1: #i9134# fixed BESSEL J and I calculation


2003-06-02  Vladimir Glazounov  <vg@openoffice.org>  [1735e5b869e667856509e542ca57bfe9768990a1]

INTEGRATION: CWS calc12 (1.16.50); FILE MERGED 2003/05/28 12:03:22 nn 1.16.50.1: #i14927# for SID_CURRENTCELL with a single cell, unmark unless FN_PARAM_1 is given


2003-06-02  Vladimir Glazounov  <vg@openoffice.org>  [723ac893d71af323aebbe110038bec2c67f7811d]

INTEGRATION: CWS calc12 (1.41.42); FILE MERGED 2003/05/28 12:02:53 nn 1.41.42.1: #i14927# execute SID_CURRENTCELL in ButtonUp only if the string has the whole selection


2003-05-27  Rüdiger Timm  <rt@openoffice.org>  [c0028fc29f0f6d02e0aa4f45b4aff15334737b60]

INTEGRATION: CWS buildopt (1.6.44); FILE MERGED 2003/05/26 09:55:26 rt 1.6.44.1: #109684# Don't deliver by accident check_ libraries.


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [a0571e7e5e9fe1083518b18e468b8c9f0cc5ff59]

INTEGRATION: CWS calc11 (1.10.46); FILE MERGED 2003/05/26 19:05:44 nn 1.10.46.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [e0e1db0032576d040df6639567ce3dcfe03b042a]

INTEGRATION: CWS calc11 (1.21.22); FILE MERGED 2003/05/26 19:05:44 nn 1.21.22.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [70a6d1ef1e423cd25e08364163f00afdbfbfcb96]

INTEGRATION: CWS calc11 (1.41.38); FILE MERGED 2003/05/26 19:05:43 nn 1.41.38.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [56b3a94f19c9a3c08a47b18fac782280f349cb7a]

INTEGRATION: CWS calc11 (1.33.22); FILE MERGED 2003/05/26 19:06:07 nn 1.33.22.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [d545c691f9e55203a9accdacd36f5e742bf16691]

INTEGRATION: CWS calc11 (1.9.46); FILE MERGED 2003/05/26 19:05:26 nn 1.9.46.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [e2b7bfae771a0b0d299c2bfc79ef0ba30ffd403e]

INTEGRATION: CWS calc11 (1.2.180); FILE MERGED 2003/05/26 19:06:21 nn 1.2.180.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [f82f3fdf913b753e49a81ea2829a967c00169d1d]

INTEGRATION: CWS calc11 (1.34.38); FILE MERGED 2003/05/26 19:04:59 nn 1.34.38.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [9ed0481a0321ee9abeb3fe04be9fe405d075dc5a]

INTEGRATION: CWS calc11 (1.46.22); FILE MERGED 2003/05/26 19:04:59 nn 1.46.22.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [cc501b1fdbea8ef80feefca95f8d2323689b8734]

INTEGRATION: CWS calc11 (1.41.2); FILE MERGED 2003/05/26 16:21:28 nn 1.41.2.1: #i14108#; only send ACTIVE_DESCENDANT event if window has focus


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [60d20d9f9dddf4208d5de2e8bd6db978425e8f60]

INTEGRATION: CWS calc11 (1.5.22); FILE MERGED 2003/05/26 11:11:06 dr 1.5.22.1: #109899# import/export item state from parent styles


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [bec9c6231b6dc2abdc6fffa9182c82a38ef4da6e]

INTEGRATION: CWS calc11 (1.8.4); FILE MERGED 2003/05/26 11:10:58 dr 1.8.4.1: #109899# import/export item state from parent styles


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [50490dffe100b0cd1d4189725d50708e26e281a8]

INTEGRATION: CWS calc11 (1.7.22); FILE MERGED 2003/05/26 11:10:58 dr 1.7.22.1: #109899# import/export item state from parent styles


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [7c05a273831b64c237ee0e7f63b77b0542df95eb]

INTEGRATION: CWS calc11 (1.29.46); FILE MERGED 2003/05/26 19:06:51 nn 1.29.46.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [b1969ed2d10ffc1ec123524c2103dfdda3bd9477]

INTEGRATION: CWS calc11 (1.11.46); FILE MERGED 2003/05/26 19:04:36 nn 1.11.46.1: #109031# set OutputDevice digit language according to CTL settings


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [910c30aa3b72af5299756890628c9b599c6c0fb0]

INTEGRATION: CWS calc10 (1.10.44); FILE MERGED 2003/05/21 18:55:20 nn 1.10.44.1: #109814# use DrawSelectionBackground instead of DrawTransparent to show selection


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [f0d5c49d7f217c0b05d02270f90ab7c61fe43194]

INTEGRATION: CWS calc10 (1.31.18); FILE MERGED 2003/05/23 09:14:53 sab 1.31.18.1: #i14679#; reset InputHandler on InputWindow


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [8fddf51969cce50dc9f32903640d1eee481f2abf]

INTEGRATION: CWS calc10 (1.46.18); FILE MERGED 2003/05/23 09:14:52 sab 1.46.18.1: #i14679#; reset InputHandler on InputWindow


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [e5370e339e75a331f16dfe8598553b97a29f8a78]

INTEGRATION: CWS calc10 (1.21.166); FILE MERGED 2003/05/21 16:22:43 sab 1.21.166.1: #109439#; don't set value or string if it is a cell in a matrix range


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [c5d756a8118dfb6ea4b3565431fdd7ca7f2da6e3]

INTEGRATION: CWS calc10 (1.33.164); FILE MERGED 2003/05/21 16:22:43 sab 1.33.164.1: #109439#; don't set value or string if it is a cell in a matrix range


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [3b978fec4783a1016bee80ab9fefd74cb7230c7a]

INTEGRATION: CWS calc10 (1.72.18); FILE MERGED 2003/05/21 16:22:42 sab 1.72.18.1: #109439#; don't set value or string if it is a cell in a matrix range


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [2e5864591ce18fb4315b9d85290f20058231c582]

INTEGRATION: CWS calc10 (1.3.44); FILE MERGED 2003/05/20 10:54:22 dr 1.3.44.1: #109686# use ScMarkData to remember used cells


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [dacbbeb76f314347a15cdbe5df3c688de1f589b3]

INTEGRATION: CWS calc10 (1.3.44); FILE MERGED 2003/05/20 10:54:14 dr 1.3.44.1: #109686# use ScMarkData to remember used cells


2003-05-27  Vladimir Glazounov  <vg@openoffice.org>  [98dbf978b3b51f367eb24bdae0f21120a371f464]

INTEGRATION: CWS calc10 (1.20.34); FILE MERGED 2003/05/23 09:43:32 nn 1.20.34.2: RESYNC: (1.20-1.21); FILE MERGED 2003/05/19 14:31:03 nn 1.20.34.1: #108979# FillEditItemSet: use ClearItem instead of Put for automatic font color


2003-05-26  Vladimir Glazounov  <vg@openoffice.org>  [f0dc7120d5c4faa71ea81662f83abbdd7d6185d5]

INTEGRATION: CWS os10 (1.51.18); FILE MERGED 2003/05/21 08:09:14 os 1.51.18.3: #108895# Arabic ImageList added, weight, posture, underline removed - loaded from offmgr 2003/05/16 08:07:25 os 1.51.18.2: RESYNC: (1.51-1.52); FILE MERGED 2003/05/15 13:52:56 os 1.51.18.1: #109663# unsupported ids removed from ImageList


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [5f41d9c1b52c50a44d9870fa187dc9b69e6f8b3f]

INTEGRATION: CWS uaa03 (1.18.16); FILE MERGED 2003/05/21 15:47:22 mt 1.18.16.1: #i14623# UAA finalization


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b964bd7bf9998b57312998e9f9806f4345ce721b]

INTEGRATION: CWS uaa03 (1.23.16); FILE MERGED 2003/05/21 15:47:21 mt 1.23.16.1: #i14623# UAA finalization


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [b7ddd883eeed78d24c6009fba5f2301d311e35a1]

INTEGRATION: CWS uaa03 (1.22.16); FILE MERGED 2003/05/21 15:47:21 mt 1.22.16.1: #i14623# UAA finalization


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [bd84650717eea35eef8ba52da7f48e0fae349fd1]

INTEGRATION: CWS uaa03 (1.8.16); FILE MERGED 2003/05/21 15:47:20 mt 1.8.16.1: #i14623# UAA finalization


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [eefeae885391b5f737bd7e9529b04740f0bba5fb]

INTEGRATION: CWS uaa03 (1.26.16); FILE MERGED 2003/05/21 15:47:19 mt 1.26.16.1: #i14623# UAA finalization


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [6dffaa45fe10accb6479a6fba757b853cddfc80b]

INTEGRATION: CWS uaa03 (1.40.16); FILE MERGED 2003/05/21 15:47:18 mt 1.40.16.1: #i14623# UAA finalization


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [d7e3e38bc3da1b4fd887fc01bf56662c6badee8d]

INTEGRATION: CWS uaa03 (1.61.16); FILE MERGED 2003/05/21 15:47:18 mt 1.61.16.1: #i14623# UAA finalization


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [68def887c7a7935f266739110b3ac3b9f5e38990]

INTEGRATION: CWS uaa03 (1.13.16); FILE MERGED 2003/05/22 07:11:04 dr 1.13.16.2: #i14623# UAA finalization 2003/05/21 15:47:17 mt 1.13.16.1: #i14623# UAA finalization


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [c547f153d7db2601fc7848347799ca46303fcbc9]

INTEGRATION: CWS af1 (1.2.8); FILE MERGED 2003/05/06 08:57:52 sab 1.2.8.1: #109330#; remove drafts


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [8bbe3e3fb9aabc061b54395c399b162bf154d6d4]

INTEGRATION: CWS af1 (1.2.8); FILE MERGED 2003/05/06 08:57:51 sab 1.2.8.1: #109330#; remove drafts


2003-05-22  Vladimir Glazounov  <vg@openoffice.org>  [663fadc0ce2d019854ba0e66571e906f6f028232]

INTEGRATION: CWS af1 (1.72.8); FILE MERGED 2003/05/06 14:31:05 sab 1.72.8.1: #109340#; the string has not the length it looks like


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [be748fcbfe5040a690e719e93c721a3378acc4e1]

INTEGRATION: CWS dr3 (1.53.2); FILE MERGED 2003/05/19 11:06:30 dr 1.53.2.3: RESYNC: (1.53-1.54); FILE MERGED 2003/05/19 10:42:41 dr 1.53.2.2: #i12188# export of formatted text boxes 2003/05/12 12:01:32 dr 1.53.2.1: #109513# #i12188# export of textbox formatting


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [63e32cf75fb1e36c7cc968d927f72e8f43f09e0f]

INTEGRATION: CWS dr3 (1.5.2); FILE MERGED 2003/05/12 12:02:38 dr 1.5.2.2: #109513# #i12188# export of textbox formatting 2003/04/30 16:31:39 dr 1.5.2.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [a2a96ffd5579c20e67b8572e6d93877c886eeff6]

INTEGRATION: CWS dr3 (1.4.2); FILE MERGED 2003/05/07 09:57:31 dr 1.4.2.1: #108783# control properties


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [2a1ed9a046fe5a018eb36f38d38cc9fda6d86d31]

INTEGRATION: CWS dr3 (1.5.2); FILE MERGED 2003/05/19 10:42:13 dr 1.5.2.1: #i12188# export of formatted text boxes


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [cb79a6c83e6f095e579aba019fbb1c5fb7cce980]

INTEGRATION: CWS dr3 (1.2.32); FILE MERGED 2003/05/06 10:51:34 dr 1.2.32.3: #108783# creation of old controls 2003/05/02 12:52:26 dr 1.2.32.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:31:39 dr 1.2.32.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [830d0db6d542d56a4c80306f5b96391472dcc658]

INTEGRATION: CWS dr3 (1.1.2); FILE ADDED 2003/05/12 12:02:37 dr 1.1.2.6: #109513# #i12188# export of textbox formatting 2003/05/12 08:08:57 dr 1.1.2.5: #109513# #i12188# #i2033# import textbox alignment 2003/05/06 10:51:33 dr 1.1.2.4: #108783# creation of old controls 2003/05/05 09:37:36 dr 1.1.2.3: #108783# improved object handling 2003/05/02 12:52:26 dr 1.1.2.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:31:38 dr 1.1.2.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [ef2b6f6d33cb167dc5341b68548f7e20c025900b]

INTEGRATION: CWS dr3 (1.4.2); FILE MERGED 2003/05/15 08:33:11 dr 1.4.2.1: #108770# override number format for Boolean cells


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [ce6fb96b0855df7f4d26fcfec5880a2f7def5d16]

INTEGRATION: CWS dr3 (1.3.2); FILE MERGED 2003/05/07 13:37:02 dr 1.3.2.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [64f85465593f2f096a1f21ee0cdeb20e77407b2d]

INTEGRATION: CWS dr3 (1.2.28); FILE MERGED 2003/05/07 13:37:01 dr 1.2.28.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [c6d37aaab193c2208c0003343d11ebabc491744c]

INTEGRATION: CWS dr3 (1.1.2); FILE ADDED 2003/05/12 10:45:33 dr 1.1.2.9: #109513# #i12188# #i2033# import textbox alignment 2003/05/12 08:08:57 dr 1.1.2.8: #109513# #i12188# #i2033# import textbox alignment 2003/05/07 14:39:11 dr 1.1.2.7: #108783# listbox/combobox contents for OLE controls 2003/05/07 13:37:40 dr 1.1.2.6: #108783# listbox/combobox properties 2003/05/07 09:57:30 dr 1.1.2.5: #108783# control properties 2003/05/06 10:51:33 dr 1.1.2.4: #108783# creation of old controls 2003/05/05 09:37:36 dr 1.1.2.3: #108783# improved object handling 2003/05/02 12:52:25 dr 1.1.2.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:31:38 dr 1.1.2.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [f1e566cdab6448e439c79c1e6e0a3247ffa05416]

INTEGRATION: CWS dr3 (1.2.30); FILE MERGED 2003/05/07 13:37:01 dr 1.2.30.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [e7db98ad0697563663dc2996d6ddb3772962a8a3]

INTEGRATION: CWS dr3 (1.3.28); FILE MERGED 2003/05/19 10:42:12 dr 1.3.28.2: #i12188# export of formatted text boxes 2003/05/12 12:02:37 dr 1.3.28.1: #109513# #i12188# export of textbox formatting


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [055e417dd45759242a314b1f81511c5d63450938]

INTEGRATION: CWS dr3 (1.27.20); FILE MERGED 2003/05/12 12:02:36 dr 1.27.20.1: #109513# #i12188# export of textbox formatting


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [a5e61544cd9d723920fe57e3823586ea169b36b5]

INTEGRATION: CWS dr3 (1.28.20); FILE MERGED 2003/05/07 13:37:00 dr 1.28.20.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [59754d62943e51c8cb0193b744b4dfd30c3eb506]

INTEGRATION: CWS dr3 (1.2.30); FILE MERGED 2003/05/02 12:52:22 dr 1.2.30.1: #108783# detect old controls; OLE objs with progress bar


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [2ecd307d012cf58f9c412018171178b05e1f852f]

INTEGRATION: CWS dr3 (1.2.30); FILE MERGED 2003/05/06 10:51:32 dr 1.2.30.1: #108783# creation of old controls


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [6e7e3417d62c66b80ed074aead3650250b9163c6]

INTEGRATION: CWS dr3 (1.47.20); FILE MERGED 2003/05/02 12:52:25 dr 1.47.20.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:31:37 dr 1.47.20.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [0a655bb550a88e0ce07ef7665d9dd56a61fd7858]

INTEGRATION: CWS dr3 (1.9.30); FILE MERGED 2003/05/07 13:37:00 dr 1.9.30.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [038ffa499c390bd595487162855a878ac523a6cd]

INTEGRATION: CWS dr3 (1.38.2); FILE MERGED 2003/05/02 12:52:25 dr 1.38.2.1: #108783# detect old controls; OLE objs with progress bar


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [d9cfe8030a4888b97a61ed693e03c4398391a8ca]

INTEGRATION: CWS dr3 (1.13.30); FILE MERGED 2003/05/08 06:52:17 dr 1.13.30.1: #108683# set col/row settings early, but hidden flags leter


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [ca469fb1d3805044a04544580e33d28a1521af61]

INTEGRATION: CWS dr3 (1.10.14); FILE MERGED 2003/05/02 12:52:24 dr 1.10.14.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:31:36 dr 1.10.14.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [a52da538bb3b0fb0c33dc26872257e365a052b9d]

INTEGRATION: CWS dr3 (1.2.30); FILE MERGED 2003/05/02 12:51:48 dr 1.2.30.1: #108783# detect old controls; OLE objs with progress bar


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [fd156482eb7a265c331797e93c3b73c4772fc18f]

INTEGRATION: CWS dr3 (1.5.2); FILE MERGED 2003/05/12 12:02:05 dr 1.5.2.2: #109513# #i12188# export of textbox formatting 2003/04/30 16:30:05 dr 1.5.2.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [06f61314d7b7b185a118c712e70e5cfebf84f27d]

INTEGRATION: CWS dr3 (1.4.2); FILE MERGED 2003/05/07 09:57:57 dr 1.4.2.1: #108783# control properties


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [781cc65164a94c16c4523267a6a95f6cb117cd0d]

INTEGRATION: CWS dr3 (1.5.2); FILE MERGED 2003/05/19 10:42:28 dr 1.5.2.1: #i12188# export of formatted text boxes


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [a6f2988b99e4a186c8fbba2e44c80d2a1133a620]

INTEGRATION: CWS dr3 (1.2.32); FILE MERGED 2003/05/15 09:34:59 dr 1.2.32.6: #i14456# control shape must start empty 2003/05/07 14:39:21 dr 1.2.32.5: #108783# listbox/combobox contents for OLE controls 2003/05/07 09:57:56 dr 1.2.32.4: #108783# control properties 2003/05/06 10:51:57 dr 1.2.32.3: #108783# creation of old controls 2003/05/02 12:51:23 dr 1.2.32.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:30:04 dr 1.2.32.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [8dd0b831bb6de6f37a808c3da6eec2c3aadaf2e2]

INTEGRATION: CWS dr3 (1.7.2); FILE MERGED 2003/05/15 08:33:00 dr 1.7.2.1: #108770# override number format for Boolean cells


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [70a6e7b4fa38dd035b1429f38e1a2d16ae8f6941]

INTEGRATION: CWS dr3 (1.3.2); FILE MERGED 2003/05/07 13:36:31 dr 1.3.2.2: #108783# XclImpRoot::GetFmlaConverter() 2003/04/30 16:30:04 dr 1.3.2.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [93656808f42eafd54a7d2cfedb4b1639f38bc4d4]

INTEGRATION: CWS dr3 (1.3.2); FILE MERGED 2003/05/07 13:36:31 dr 1.3.2.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [9155b12ba20f35a2eb768471bf1c13e2e9fd6784]

INTEGRATION: CWS dr3 (1.4.20); FILE MERGED 2003/05/12 12:02:05 dr 1.4.20.2: #109513# #i12188# export of textbox formatting 2003/05/07 13:36:30 dr 1.4.20.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [01b48c27eeb89f6b256429f1cac7aa24293b6d3c]

INTEGRATION: CWS dr3 (1.1.2); FILE ADDED 2003/05/12 10:45:40 dr 1.1.2.9: #109513# #i12188# #i2033# import textbox alignment 2003/05/12 08:09:19 dr 1.1.2.8: #109513# #i12188# #i2033# import textbox alignment 2003/05/07 14:39:20 dr 1.1.2.7: #108783# listbox/combobox contents for OLE controls 2003/05/07 13:37:49 dr 1.1.2.6: #108783# listbox/combobox properties 2003/05/07 09:57:56 dr 1.1.2.5: #108783# control properties 2003/05/06 10:51:56 dr 1.1.2.4: #108783# creation of old controls 2003/05/05 09:37:22 dr 1.1.2.3: #108783# improved object handling 2003/05/02 12:51:23 dr 1.1.2.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:30:03 dr 1.1.2.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [50163382bf18cfb973650fa567ea8178299552d9]

INTEGRATION: CWS dr3 (1.3.30); FILE MERGED 2003/05/07 13:36:30 dr 1.3.30.3: #108783# XclImpRoot::GetFmlaConverter() 2003/05/02 12:51:22 dr 1.3.30.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:30:02 dr 1.3.30.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [12dfacee65a0acb30146852c5188ef6a7b49367a]

INTEGRATION: CWS dr3 (1.5.2); FILE MERGED 2003/05/07 13:36:29 dr 1.5.2.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [08368da5e9df3dc2f8ef6cd0c3353a2fd4b685ff]

INTEGRATION: CWS dr3 (1.4.20); FILE MERGED 2003/05/19 10:42:28 dr 1.4.20.2: #i12188# export of formatted text boxes 2003/05/12 12:02:04 dr 1.4.20.1: #109513# #i12188# export of textbox formatting


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [04aa6d09566cb275d86cff67c371ce62aab68de8]

INTEGRATION: CWS dr3 (1.38.20); FILE MERGED 2003/05/07 13:36:29 dr 1.38.20.3: #108783# XclImpRoot::GetFmlaConverter() 2003/05/02 12:51:22 dr 1.38.20.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:30:02 dr 1.38.20.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [c58a9a731e87f4b19fc39adc7a7d9f6a8eabde42]

INTEGRATION: CWS dr3 (1.17.28); FILE MERGED 2003/05/07 13:37:50 dr 1.17.28.3: #108783# listbox/combobox properties 2003/05/06 10:51:56 dr 1.17.28.2: #108783# creation of old controls 2003/04/30 16:30:01 dr 1.17.28.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [008625c146d2527bb1b17e609b8187483a463094]

INTEGRATION: CWS dr3 (1.51.2); FILE MERGED 2003/05/15 08:33:00 dr 1.51.2.3: #108770# override number format for Boolean cells 2003/05/08 06:52:34 dr 1.51.2.2: #108683# set col/row settings early, but hidden flags later 2003/05/07 13:36:28 dr 1.51.2.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [d969efd756baf576886d50ffcd3938eb92bb9cfa]

INTEGRATION: CWS dr3 (1.41.20); FILE MERGED 2003/05/07 13:36:28 dr 1.41.20.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [23de69136ffb005a123494c16d39b209e3fd817a]

INTEGRATION: CWS dr3 (1.25.30); FILE MERGED 2003/04/30 16:30:00 dr 1.25.30.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [22a32c9f9925ee9782f01a22887232d575765b80]

INTEGRATION: CWS dr3 (1.81.20); FILE MERGED 2003/05/07 13:36:27 dr 1.81.20.6: #108783# XclImpRoot::GetFmlaConverter() 2003/05/07 09:57:56 dr 1.81.20.5: #108783# control properties 2003/05/06 10:51:55 dr 1.81.20.4: #108783# creation of old controls 2003/05/05 09:37:21 dr 1.81.20.3: #108783# improved object handling 2003/05/02 12:51:21 dr 1.81.20.2: #108783# detect old controls; OLE objs with progress bar 2003/04/30 16:30:00 dr 1.81.20.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [371a0f2f3c046717cd5117941db56755c1799ca3]

INTEGRATION: CWS dr3 (1.20.30); FILE MERGED 2003/05/07 13:36:27 dr 1.20.30.1: #108783# XclImpRoot::GetFmlaConverter()


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [93f80721e193db7da201da298343a5479c5548ed]

INTEGRATION: CWS dr3 (1.17.20); FILE MERGED 2003/05/08 13:32:11 dr 1.17.20.2: #108683# handle hidden cols/rows correctly 2003/05/08 06:52:34 dr 1.17.20.1: #108683# set col/row settings early, but hidden flags later


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [72435bebcd298180d5783e623157eb64f8840958]

INTEGRATION: CWS dr3 (1.57.2); FILE MERGED 2003/05/12 08:09:20 dr 1.57.2.2: #109513# #i12188# #i2033# import textbox alignment 2003/04/30 16:29:59 dr 1.57.2.1: #108783# preparations


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [6939ea070fbffd0417838bdb8f5a3bdc200fdb82]

INTEGRATION: CWS dr3 (1.20.20); FILE MERGED 2003/05/19 10:41:34 dr 1.20.20.1: #i12188# static functions for item set conversion


2003-05-21  Rüdiger Timm  <rt@openoffice.org>  [3160bf715e9914d7c97d50979dac0f8558c797db]

INTEGRATION: CWS dr3 (1.8.20); FILE MERGED 2003/05/19 10:41:25 dr 1.8.20.1: #i12188# static functions for item set conversion


2003-05-13  Vladimir Glazounov  <vg@openoffice.org>  [10ceca5c4d3a61ac289c8bfbee02d92b2ef4819f]

INTEGRATION: CWS calc08 (1.166.12); FILE MERGED 2003/05/02 15:30:49 sab 1.166.12.1: #109193#; make the compare for equal rows work


2003-05-13  Vladimir Glazounov  <vg@openoffice.org>  [7341b5a1a397a3981ad403fad52cfbccc5a3dc39]

INTEGRATION: CWS calc08 (1.52.18); FILE MERGED 2003/05/08 14:47:37 nn 1.52.18.2: RESYNC: (1.52-1.53); FILE MERGED 2003/05/07 19:21:54 er 1.52.18.1: #109383# operators new/delete mismatch


2003-05-13  Vladimir Glazounov  <vg@openoffice.org>  [6d3b8d67ea1e7a318c67e83f3deeb75ad38e893b]

INTEGRATION: CWS calc08 (1.60.18); FILE MERGED 2003/05/08 14:50:49 nn 1.60.18.2: RESYNC: (1.60-1.62); FILE MERGED 2003/05/07 19:41:44 er 1.60.18.1: #109383# operators new/delete mismatch


2003-05-13  Vladimir Glazounov  <vg@openoffice.org>  [b13d507f90fc556f8adfb2d70caa9100471667b4]

INTEGRATION: CWS calc08 (1.7.28); FILE MERGED 2003/04/29 15:06:37 nn 1.7.28.1: #108995# GetBetaDist: rearranged formula to avoid floating point overflow


2003-05-13  Vladimir Glazounov  <vg@openoffice.org>  [40b2413f2d890cb20e10cb84be71bf9c4c3f6751]

INTEGRATION: CWS calc08 (1.16.28); FILE MERGED 2003/05/07 19:44:10 er 1.16.28.1: #109383# operators new/delete mismatch


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [022ace11901b9f9eb4cc2a8de922642fa9932d9f]

INTEGRATION: CWS mergem8 (1.11.6.4.2.2.10); FILE MERGED 2003/04/29 08:33:38 gh 1.11.6.4.2.2.10.2: final merge for Beta2 2003/04/14 15:03:11 gh 1.11.6.4.2.2.10.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [3e0ee37a4b29790c78b4bc19e37557f55d7fb4d2]

INTEGRATION: CWS mergem8 (1.12.2.7.6.4.2.1.12); FILE MERGED 2003/04/29 08:33:30 gh 1.12.2.7.6.4.2.1.12.2: final merge for Beta2 2003/04/14 15:02:59 gh 1.12.2.7.6.4.2.1.12.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [ec669ad55d1919d726c8828b29e5dded5d275d19]

INTEGRATION: CWS mergem8 (1.51.2.4.2.2.10); FILE MERGED 2003/04/29 08:33:20 gh 1.51.2.4.2.2.10.2: final merge for Beta2 2003/04/14 15:02:42 gh 1.51.2.4.2.2.10.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [b59cfe47c81d429b306c0f293cd2d07e2dafd8bc]

INTEGRATION: CWS mergem8 (1.21.2.6.6.4.2.1.46); FILE MERGED 2003/04/29 08:32:41 gh 1.21.2.6.6.4.2.1.46.2: final merge for Beta2 2003/04/14 15:01:28 gh 1.21.2.6.6.4.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [456ec211608afd900913e733a6244e5654c7a47d]

INTEGRATION: CWS mergem8 (1.17.12.1.46); FILE MERGED 2003/04/29 08:32:41 gh 1.17.12.1.46.2: final merge for Beta2 2003/04/14 15:01:27 gh 1.17.12.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [1523824daffcd6c09c9e0ecc26c75dfe3e4eebac]

INTEGRATION: CWS mergem8 (1.47.2.5.44); FILE MERGED 2003/04/29 08:32:13 gh 1.47.2.5.44.3: final merge for Beta2 2003/04/16 13:08:57 gh 1.47.2.5.44.2: RESYNC: (1.47.2.5-1.51); FILE MERGED 2003/04/14 15:00:43 gh 1.47.2.5.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [8d4ad126014f44ced8c3b3640ed403f99879971f]

INTEGRATION: CWS mergem8 (1.18.8.2.2.6.6.4.2.1.46); FILE MERGED 2003/04/29 08:32:13 gh 1.18.8.2.2.6.6.4.2.1.46.2: final merge for Beta2 2003/04/14 15:00:41 gh 1.18.8.2.2.6.6.4.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [c4a9acf9d5f392392ca192a76593fe812f8fa5bc]

INTEGRATION: CWS mergem8 (1.14.4.2.2.6.6.4.2.2.44); FILE MERGED 2003/04/29 08:32:12 gh 1.14.4.2.2.6.6.4.2.2.44.2: final merge for Beta2 2003/04/14 15:00:39 gh 1.14.4.2.2.6.6.4.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [1d67bb7d67f7adf973525d39fdf1407285d5f0ac]

INTEGRATION: CWS mergem8 (1.25.2.10.4.6.2.1.46); FILE MERGED 2003/04/29 08:32:12 gh 1.25.2.10.4.6.2.1.46.2: final merge for Beta2 2003/04/14 15:00:38 gh 1.25.2.10.4.6.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [d5e45131da198c59e134729ac0ab304371122d68]

INTEGRATION: CWS mergem8 (1.29.2.1.46); FILE MERGED 2003/04/29 08:32:11 gh 1.29.2.1.46.2: final merge for Beta2 2003/04/14 15:00:36 gh 1.29.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [34fcd79fa10122c0ae3e22dd9e612f883e2418dc]

INTEGRATION: CWS mergem8 (1.16.4.2.2.6.6.7.2.2.44); FILE MERGED 2003/04/29 08:32:11 gh 1.16.4.2.2.6.6.7.2.2.44.2: final merge for Beta2 2003/04/14 15:00:35 gh 1.16.4.2.2.6.6.7.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [e734791cb194d1dbd70abeeb740e033e5d8a68e4]

INTEGRATION: CWS mergem8 (1.9.2.1.2.7.6.2.6.1.46); FILE MERGED 2003/04/29 08:32:10 gh 1.9.2.1.2.7.6.2.6.1.46.2: final merge for Beta2 2003/04/14 15:00:34 gh 1.9.2.1.2.7.6.2.6.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [5ad05d02c0814447aeaea29f6174a76423f93a98]

INTEGRATION: CWS mergem8 (1.12.6.2.2.6.6.2.2.2.44); FILE MERGED 2003/04/29 08:32:09 gh 1.12.6.2.2.6.6.2.2.2.44.2: final merge for Beta2 2003/04/14 15:00:33 gh 1.12.6.2.2.6.6.2.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [04f60b41cade8ef74dfa9677d541eed061e95494]

INTEGRATION: CWS mergem8 (1.69.2.2.44); FILE MERGED 2003/04/29 08:32:08 gh 1.69.2.2.44.2: final merge for Beta2 2003/04/14 15:00:29 gh 1.69.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [808fb04bc8dfad6031b17171c5f2e0ca5d0184c4]

INTEGRATION: CWS mergem8 (1.61.6.8.2.2.44); FILE MERGED 2003/04/29 08:31:37 gh 1.61.6.8.2.2.44.2: final merge for Beta2 2003/04/14 14:59:19 gh 1.61.6.8.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [6f1165e62dabeaee7a6596105891bd9bc80ac0f7]

INTEGRATION: CWS mergem8 (1.36.2.2.44); FILE MERGED 2003/04/29 08:31:36 gh 1.36.2.2.44.2: final merge for Beta2 2003/04/14 14:59:19 gh 1.36.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [bf6806d28d4ef83cae9f9c7a56584eb125f90839]

INTEGRATION: CWS mergem8 (1.14.2.1.46); FILE MERGED 2003/04/29 08:31:36 gh 1.14.2.1.46.2: final merge for Beta2 2003/04/14 14:59:18 gh 1.14.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [67f9d8418badf008bd8cdd54198aacb153e6e5be]

INTEGRATION: CWS mergem8 (1.42.2.2.44); FILE MERGED 2003/04/29 08:31:35 gh 1.42.2.2.44.2: final merge for Beta2 2003/04/14 14:59:17 gh 1.42.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [2b071c36e31cfc222a6478ce20cf5a9ec217ba37]

INTEGRATION: CWS mergem8 (1.52.2.2.44); FILE MERGED 2003/04/29 08:31:34 gh 1.52.2.2.44.2: final merge for Beta2 2003/04/14 14:59:16 gh 1.52.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [dca529ed608685938ad69e6aa0d8ad087e3626f7]

INTEGRATION: CWS mergem8 (1.22.2.7.6.3.2.2.44); FILE MERGED 2003/04/29 08:31:34 gh 1.22.2.7.6.3.2.2.44.2: final merge for Beta2 2003/04/14 14:59:15 gh 1.22.2.7.6.3.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [69522d9eb25562d3a48fbb4beb6c04e4d0b7c586]

INTEGRATION: CWS mergem8 (1.19.2.6.6.6.2.2.44); FILE MERGED 2003/04/29 08:31:33 gh 1.19.2.6.6.6.2.2.44.2: final merge for Beta2 2003/04/14 14:59:13 gh 1.19.2.6.6.6.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [af8fa95c4f681b33c46afbd08a351ec39d6a148e]

INTEGRATION: CWS mergem8 (1.61.2.2.44); FILE MERGED 2003/04/29 08:31:33 gh 1.61.2.2.44.2: final merge for Beta2 2003/04/14 14:59:11 gh 1.61.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [754e0088d24f681b4afbc32d5f114e9801125d93]

INTEGRATION: CWS mergem8 (1.18.2.7.6.4.2.1.46); FILE MERGED 2003/04/29 08:31:30 gh 1.18.2.7.6.4.2.1.46.2: final merge for Beta2 2003/04/14 14:59:07 gh 1.18.2.7.6.4.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [c7ff0d98578c589e46c4b487fd3ece52cd668227]

INTEGRATION: CWS mergem8 (1.42.2.2.44); FILE MERGED 2003/04/29 08:31:28 gh 1.42.2.2.44.2: final merge for Beta2 2003/04/14 14:59:02 gh 1.42.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [a7ea1236e06b5173c108ae257a94cf94b377dbcf]

INTEGRATION: CWS mergem8 (1.45.2.2.44); FILE MERGED 2003/04/29 08:31:27 gh 1.45.2.2.44.2: final merge for Beta2 2003/04/14 14:58:59 gh 1.45.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [50e92f574ca908100055e296c48f6ff1c195f4c1]

INTEGRATION: CWS mergem8 (1.33.2.2.44); FILE MERGED 2003/04/29 08:31:27 gh 1.33.2.2.44.2: final merge for Beta2 2003/04/14 14:58:58 gh 1.33.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [7fefcca44f82f1102808dbc244eba0a317b1065a]

INTEGRATION: CWS mergem8 (1.32.2.1.46); FILE MERGED 2003/04/29 08:31:26 gh 1.32.2.1.46.2: final merge for Beta2 2003/04/14 14:58:57 gh 1.32.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [d35de5d1ebb2ec549a3b99f7beeb395ae9d6aa72]

INTEGRATION: CWS mergem8 (1.20.2.2.44); FILE MERGED 2003/04/29 08:31:25 gh 1.20.2.2.44.2: final merge for Beta2 2003/04/14 14:58:56 gh 1.20.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [70295f74c48dd12cea3e2f82a6aa80ed1983a06b]

INTEGRATION: CWS mergem8 (1.28.2.7.6.4.2.2.44); FILE MERGED 2003/04/29 08:31:24 gh 1.28.2.7.6.4.2.2.44.2: final merge for Beta2 2003/04/14 14:58:53 gh 1.28.2.7.6.4.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [b6e3faf52290fefe516cbc379e231de7492fd5f8]

INTEGRATION: CWS mergem8 (1.44.2.2.44); FILE MERGED 2003/04/29 08:31:24 gh 1.44.2.2.44.2: final merge for Beta2 2003/04/14 14:58:52 gh 1.44.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [8a64c17d605e1f44a6e2598d1e37180677dc3c73]

INTEGRATION: CWS mergem8 (1.10.4.6.6.2.2.1.46); FILE MERGED 2003/04/29 08:31:22 gh 1.10.4.6.6.2.2.1.46.2: final merge for Beta2 2003/04/14 14:58:48 gh 1.10.4.6.6.2.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [8eab3cfc308d2f544221923018f45e0c90ad0ca9]

INTEGRATION: CWS mergem8 (1.39.2.3.44); FILE MERGED 2003/04/29 08:31:21 gh 1.39.2.3.44.2: final merge for Beta2 2003/04/14 14:58:47 gh 1.39.2.3.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [568f857aa427757dca396c01127d267069a74246]

INTEGRATION: CWS mergem8 (1.32.2.2.44); FILE MERGED 2003/04/29 08:31:21 gh 1.32.2.2.44.2: final merge for Beta2 2003/04/14 14:58:45 gh 1.32.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [fefa1e34040b85ce6abda895a33e5044b3b082c0]

INTEGRATION: CWS mergem8 (1.32.2.2.44); FILE MERGED 2003/04/29 08:31:19 gh 1.32.2.2.44.2: final merge for Beta2 2003/04/14 14:58:41 gh 1.32.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [9ea2fecbf1cf1f13f0c4a00f66c95a5434466c71]

INTEGRATION: CWS mergem8 (1.20.2.2.44); FILE MERGED 2003/04/29 08:31:16 gh 1.20.2.2.44.2: final merge for Beta2 2003/04/14 14:58:36 gh 1.20.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [97d058d7cda14beb3624a3efeb5cfcee2d7822da]

INTEGRATION: CWS mergem8 (1.22.2.7.6.5.2.2.44); FILE MERGED 2003/04/29 08:31:16 gh 1.22.2.7.6.5.2.2.44.2: final merge for Beta2 2003/04/14 14:58:35 gh 1.22.2.7.6.5.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [0a7accbdfce2f9650b9088f75f4a9fb6ed5495c3]

INTEGRATION: CWS mergem8 (1.17.2.8.6.4.2.1.46); FILE MERGED 2003/04/29 08:31:16 gh 1.17.2.8.6.4.2.1.46.2: final merge for Beta2 2003/04/14 14:58:32 gh 1.17.2.8.6.4.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [2d99353c88552522dba66f2f117a92f80928990c]

INTEGRATION: CWS mergem8 (1.22.2.1.2.2.2.2.2.4.6.4.2.2.44); FILE MERGED 2003/04/29 08:31:15 gh 1.22.2.1.2.2.2.2.2.4.6.4.2.2.44.2: final merge for Beta2 2003/04/14 14:58:30 gh 1.22.2.1.2.2.2.2.2.4.6.4.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [057d113e9231ccf133861440af02a167b4b2e2dd]

INTEGRATION: CWS mergem8 (1.18.2.1.46); FILE MERGED 2003/04/29 08:31:14 gh 1.18.2.1.46.2: final merge for Beta2 2003/04/14 14:58:25 gh 1.18.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [7d83880b217527a8c58662d36740b68b0c88241c]

INTEGRATION: CWS mergem8 (1.36.2.2.44); FILE MERGED 2003/04/29 08:31:14 gh 1.36.2.2.44.2: final merge for Beta2 2003/04/14 14:58:24 gh 1.36.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [526e742e41bff7f0fe067cb798b82ecb304a50b1]

INTEGRATION: CWS mergem8 (1.20.2.1.2.7.6.4.2.2.44); FILE MERGED 2003/04/29 08:31:13 gh 1.20.2.1.2.7.6.4.2.2.44.2: final merge for Beta2 2003/04/14 14:58:22 gh 1.20.2.1.2.7.6.4.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [53ac482c80b87b35e69bf050617d3f80600f3ad0]

INTEGRATION: CWS mergem8 (1.53.2.3.44); FILE MERGED 2003/04/29 08:31:12 gh 1.53.2.3.44.2: final merge for Beta2 2003/04/14 14:58:16 gh 1.53.2.3.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [10affd5142b8495a56b1722ba5eebf5dd54b0d23]

INTEGRATION: CWS mergem8 (1.13.12.2.2.7.6.4.2.2.44); FILE MERGED 2003/04/29 08:31:12 gh 1.13.12.2.2.7.6.4.2.2.44.2: final merge for Beta2 2003/04/14 14:58:15 gh 1.13.12.2.2.7.6.4.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [ffe3b07051197d7b758e82e5f3d3b68818a91932]

INTEGRATION: CWS mergem8 (1.14.2.2.2.1.2.4.6.4.2.2.44); FILE MERGED 2003/04/29 08:31:11 gh 1.14.2.2.2.1.2.4.6.4.2.2.44.2: final merge for Beta2 2003/04/14 14:58:11 gh 1.14.2.2.2.1.2.4.6.4.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [59784986b23b674711438cf6b9cd3fc09a93c0ba]

INTEGRATION: CWS mergem8 (1.27.2.7.6.5.2.2.44); FILE MERGED 2003/04/29 08:31:09 gh 1.27.2.7.6.5.2.2.44.2: final merge for Beta2 2003/04/14 14:58:00 gh 1.27.2.7.6.5.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [404f3e0b1511d95794eb6dbacb7cbeb6f950967e]

INTEGRATION: CWS mergem8 (1.25.2.7.6.5.2.2.44); FILE MERGED 2003/04/29 08:31:08 gh 1.25.2.7.6.5.2.2.44.2: final merge for Beta2 2003/04/14 14:57:59 gh 1.25.2.7.6.5.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [fdd32cd8b6d5b235c15541210a9ddc0f0bb2b314]

INTEGRATION: CWS mergem8 (1.20.2.6.2.1.6.5.2.2.44); FILE MERGED 2003/04/29 08:31:08 gh 1.20.2.6.2.1.6.5.2.2.44.2: final merge for Beta2 2003/04/14 14:57:56 gh 1.20.2.6.2.1.6.5.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [212a7b57093dbd28132fe1e7a956acbd67e82544]

INTEGRATION: CWS mergem8 (1.45.2.2.44); FILE MERGED 2003/04/29 08:31:08 gh 1.45.2.2.44.2: final merge for Beta2 2003/04/14 14:57:54 gh 1.45.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [17a16ab6f123406b228bced84c83786c92d54791]

INTEGRATION: CWS mergem8 (1.24.2.1.46); FILE MERGED 2003/04/29 08:31:07 gh 1.24.2.1.46.2: final merge for Beta2 2003/04/14 14:57:53 gh 1.24.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [facb052cb4a1f54d82a2005133e1f7c023a8e568]

INTEGRATION: CWS mergem8 (1.23.6.5.2.2.44); FILE MERGED 2003/04/29 08:31:07 gh 1.23.6.5.2.2.44.2: final merge for Beta2 2003/04/14 14:57:52 gh 1.23.6.5.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [b500685c4ef731377f48647c605c00e750e468c3]

INTEGRATION: CWS mergem8 (1.26.2.2.44); FILE MERGED 2003/04/29 08:31:07 gh 1.26.2.2.44.2: final merge for Beta2 2003/04/14 14:57:51 gh 1.26.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [2844469e5cbb514489e48f478706b30f490ff801]

INTEGRATION: CWS mergem8 (1.24.2.2.44); FILE MERGED 2003/04/29 08:31:06 gh 1.24.2.2.44.2: final merge for Beta2 2003/04/14 14:57:50 gh 1.24.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [ba694cc43642b4d1d7404a522f9ce80c2c498978]

INTEGRATION: CWS mergem8 (1.36.2.2.44); FILE MERGED 2003/04/29 08:31:04 gh 1.36.2.2.44.2: final merge for Beta2 2003/04/14 14:57:46 gh 1.36.2.2.44.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [f404fa8e74fa98b7eb8b9a6ee3f82baa2a6ece34]

INTEGRATION: CWS mergem8 (1.11.2.1.2.8.6.3.2.1.46); FILE MERGED 2003/04/29 08:31:00 gh 1.11.2.1.2.8.6.3.2.1.46.2: final merge for Beta2 2003/04/14 14:57:42 gh 1.11.2.1.2.8.6.3.2.1.46.1: merging all languages


2003-04-29  Jens-Heiner Rechtien  <hr@openoffice.org>  [353e6bf60b9e0122448a62ed3a79726e10bbf629]

INTEGRATION: CWS mergem8 (1.15.2.7.6.4.2.2.44); FILE MERGED 2003/04/29 08:31:00 gh 1.15.2.7.6.4.2.2.44.2: final merge for Beta2 2003/04/14 14:57:39 gh 1.15.2.7.6.4.2.2.44.1: merging all languages


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [1646a24a4fe934c6441fddf7be99e0ae6dea8dcf]

INTEGRATION: CWS apps61beta2 (1.1.2); FILE ADDED 2003/04/08 11:38:05 sab 1.1.2.1: #107392#; there were some component descriptions missing


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [2bef1b80f3db79bd98aa87f9c04aab88f181ffaf]

INTEGRATION: CWS apps61beta2 (1.1.2); FILE ADDED 2003/04/08 11:38:04 sab 1.1.2.1: #107392#; there were some component descriptions missing


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [15c015c6dd14ba51b64ef76fc359e50c0dd5d410]

INTEGRATION: CWS apps61beta2 (1.1.2); FILE ADDED 2003/04/08 11:38:03 sab 1.1.2.1: #107392#; there were some component descriptions missing


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [eddb0c255998bb1b0d7d9c8357ad050ef008f2f7]

INTEGRATION: CWS apps61beta2 (1.17.102); FILE MERGED 2003/04/15 09:29:11 bm 1.17.102.2: RESYNC: (1.17-1.18); FILE MERGED 2003/04/08 18:04:27 nn 1.17.102.1: #i13041# copy protection settings when copying sheet


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc7828443e78f9aaf9e3e7362ec4305659e2b74f]

INTEGRATION: CWS apps61beta2 (1.7.102); FILE MERGED 2003/04/04 10:37:32 sab 1.7.102.1: #108624#; test whether the name is always Dim aRefPos As New com.sun.star.table.CellAddress


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a1b4004bd9e99d2b549250977a04604cf1996420]

INTEGRATION: CWS apps61beta2 (1.7.120); FILE MERGED 2003/04/08 18:04:59 nn 1.7.120.1: #i13041# copy protection settings when copying sheet


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [fd019d0829e4dd8ab6eecb97f2d69a4bf6f64134]

INTEGRATION: CWS apps61beta2 (1.5.2.1.40); FILE MERGED 2003/04/08 15:47:58 dr 1.5.2.1.40.1: #107054# fixes in XAccessibleText


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [8f371a510200d30144008323c667816a2118576e]

INTEGRATION: CWS apps61beta2 (1.22.2.1.42); FILE MERGED 2003/04/15 09:47:04 bm 1.22.2.1.42.2: RESYNC: (1.22.2.1-1.23); FILE MERGED 2003/04/11 13:25:22 er 1.22.2.1.42.1: #i13176 Sylk2Doc: get number formats right


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [f7c59ef92bccb13d04d849ac4c8cb673ef8dfe16]

INTEGRATION: CWS apps61beta2 (1.9.108); FILE MERGED 2003/04/08 18:03:58 nn 1.9.108.1: #i13041# copy protection settings when copying sheet


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [8744553a85579147cbca798f377665b3409e35ad]

INTEGRATION: CWS apps61beta2 (1.41.2.1.40); FILE MERGED 2003/04/15 09:46:49 bm 1.41.2.1.40.3: RESYNC: (1.41.2.1-1.43); FILE MERGED 2003/04/10 13:31:15 sab 1.41.2.1.40.2: #i925#; test whether cell is editable and notifing Accessibility is not neccessary on XML import 2003/04/03 18:38:44 nn 1.41.2.1.40.1: #i12940# ClearItems: always use multi selection


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [562fae78ec58d8986b13aff2a09dc78134a44b21]

INTEGRATION: CWS apps61beta2 (1.16.8.1.24); FILE MERGED 2003/04/10 12:38:34 dr 1.16.8.1.24.1: #108818# enable 'Other' checkbox on entering text


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [28f50f984ac5b70adc2be69cb0a8ecd5d243f39c]

INTEGRATION: CWS apps61beta2 (1.19.102); FILE MERGED 2003/04/14 13:54:59 nn 1.19.102.1: #107722# use CreateTransferable instead of Write for EditEngine format


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [f2971b0057bf0d870bcda2a4cd98d23a45d64fba]

INTEGRATION: CWS apps61beta2 (1.44.2.2.40); FILE MERGED 2003/04/14 14:11:41 nn 1.44.2.2.40.1: #107722# format input line EditEngine in DataChanged


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [238c80eb06d1884d0970fa836a6a785ece2e5b1a]

INTEGRATION: CWS apps61beta2 (1.56.4.1.70); FILE MERGED 2003/04/15 09:52:25 bm 1.56.4.1.70.2: RESYNC: (1.56.4.1-1.58); FILE MERGED 2003/04/03 16:08:22 sab 1.56.4.1.70.1: #108480#; only do something if the object lies direct on the page


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [f371d77d4b70932705d9dca61fa7338b7009aa75]

INTEGRATION: CWS apps61beta2 (1.9.2.3.22); FILE MERGED 2003/04/08 15:48:08 dr 1.9.2.3.22.1: #107054# fixes in XAccessibleText


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [eb3fd388d04b109a8298bd081fada48850bd4c74]

INTEGRATION: CWS apps61beta2 (1.70.4.1.42); FILE MERGED 2003/04/14 09:32:59 sab 1.70.4.1.42.1: #i925#; switch between the attributes by the length to decrease the IsXMLToken call count


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [3c727e3e10bc5d1fd6bedc949b01df134d2c4317]

INTEGRATION: CWS apps61beta2 (1.46.2.2.2.3.22); FILE MERGED 2003/04/11 11:43:59 dr 1.46.2.2.2.3.22.2: #108487# export of column width 2003/04/10 12:51:34 dr 1.46.2.2.2.3.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [370c1f9e7d81ae8c3876db593f79a5cff9d1bda3]

INTEGRATION: CWS apps61beta2 (1.1.4.2.24); FILE MERGED 2003/04/11 11:43:44 dr 1.1.4.2.24.2: #108487# export of column width 2003/04/10 12:50:17 dr 1.1.4.2.24.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [000d6a12863c22fab7c89737f46762dc6ee5516d]

INTEGRATION: CWS apps61beta2 (1.1.4.2.22); FILE MERGED 2003/04/14 08:54:23 dr 1.1.4.2.22.3: #108863# set maxpos in export 2003/04/11 11:43:44 dr 1.1.4.2.22.2: #108487# export of column width 2003/04/10 12:50:17 dr 1.1.4.2.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [bb06c280f406044d3e7d70172da14969e8b74df9]

INTEGRATION: CWS apps61beta2 (1.3.4.2.24); FILE MERGED 2003/04/11 11:43:43 dr 1.3.4.2.24.2: #108487# export of column width 2003/04/10 12:50:16 dr 1.3.4.2.24.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [fb116345a6748d87f146a3ccf1cc6706218273f7]

INTEGRATION: CWS apps61beta2 (1.1.4.2.22); FILE MERGED 2003/04/17 07:40:45 bm 1.1.4.2.22.5: merge problems 2003/04/15 10:03:48 bm 1.1.4.2.22.4: RESYNC: (1.1.4.2-1.3); FILE MERGED 2003/04/11 11:43:43 dr 1.1.4.2.22.3: #108487# export of column width 2003/04/10 13:25:06 dr 1.1.4.2.22.2: #105933# set 'Asian vertical' item 2003/04/10 12:50:16 dr 1.1.4.2.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [a5472977d744d5489f2cd12c1a11f698ae1c90ba]

INTEGRATION: CWS apps61beta2 (1.2.4.2.22); FILE MERGED 2003/04/15 10:02:59 bm 1.2.4.2.22.3: RESYNC: (1.2.4.2-1.4); FILE MERGED 2003/04/11 11:43:42 dr 1.2.4.2.22.2: #108487# export of column width 2003/04/10 12:50:14 dr 1.2.4.2.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [27ec8491b333c50eb343c464f8160b4b445613fb]

INTEGRATION: CWS apps61beta2 (1.5.34.1.76); FILE MERGED 2003/04/09 13:54:07 dr 1.5.34.1.76.1: #108269# do not insert empty line in front of <body>


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [780a3b5ef89db570a5186cffc08012fe3f76b26b]

INTEGRATION: CWS apps61beta2 (1.27.2.3.22); FILE MERGED 2003/04/11 11:43:42 dr 1.27.2.3.22.2: #108487# export of column width 2003/04/10 12:50:10 dr 1.27.2.3.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc57729dd359a548b8820177e86e05a8be3e9358]

INTEGRATION: CWS apps61beta2 (1.35.4.2.24); FILE MERGED 2003/04/11 11:43:42 dr 1.35.4.2.24.1: #108487# export of column width


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ddac1b4cde3002a421288fc3eb92fdc2119d62b8]

INTEGRATION: CWS apps61beta2 (1.12.4.2.54); FILE MERGED 2003/04/09 13:54:47 dr 1.12.4.2.54.1: #108269# do not insert empty line in front of <body>


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [d4d6db2fccfa154060d55e4eae832da737375786]

INTEGRATION: CWS apps61beta2 (1.1.4.2.24); FILE MERGED 2003/04/17 07:40:44 bm 1.1.4.2.24.4: merge problems 2003/04/15 10:10:06 bm 1.1.4.2.24.3: RESYNC: (1.1.4.2-1.3); FILE MERGED 2003/04/11 11:43:06 dr 1.1.4.2.24.2: #108487# export of column width 2003/04/10 12:46:21 dr 1.1.4.2.24.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [29e3e8fd042811bc712e50d33cb08d7b2479a920]

INTEGRATION: CWS apps61beta2 (1.1.4.2.22); FILE MERGED 2003/04/14 08:54:14 dr 1.1.4.2.22.3: #108863# set maxpos in export 2003/04/11 11:43:05 dr 1.1.4.2.22.2: #108487# export of column width 2003/04/10 12:46:21 dr 1.1.4.2.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [4089d8486017925e04654c835b2cb86a8571e9bb]

INTEGRATION: CWS apps61beta2 (1.2.4.3.22); FILE MERGED 2003/04/17 07:40:44 bm 1.2.4.3.22.6: merge problems 2003/04/15 10:09:45 bm 1.2.4.3.22.5: RESYNC: (1.2.4.3-1.4); FILE MERGED 2003/04/11 11:43:04 dr 1.2.4.3.22.4: #108487# export of column width 2003/04/10 14:01:58 dr 1.2.4.3.22.3: #108781# do not apply CAS in empty cells 2003/04/10 13:25:20 dr 1.2.4.3.22.2: #105933# set 'Asian vertical' item 2003/04/10 12:46:19 dr 1.2.4.3.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [fc2dcc9789c591a1974ed01d58db2b70f34c408c]

INTEGRATION: CWS apps61beta2 (1.3.4.3.22); FILE MERGED 2003/04/11 11:43:04 dr 1.3.4.3.22.2: #108487# export of column width 2003/04/10 12:46:18 dr 1.3.4.3.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [5b7be6e5a559102026511fbe9dbfe8a26313e968]

INTEGRATION: CWS apps61beta2 (1.44.2.3.38); FILE MERGED 2003/04/11 11:43:03 dr 1.44.2.3.38.2: #108487# export of column width 2003/04/10 12:46:15 dr 1.44.2.3.38.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [4e23e53591a3000a5364c10454782e2809166214]

INTEGRATION: CWS apps61beta2 (1.54.4.2.2.4.22); FILE MERGED 2003/04/11 11:43:02 dr 1.54.4.2.2.4.22.2: #108487# export of column width 2003/04/10 12:46:14 dr 1.54.4.2.2.4.22.1: #105933# needs changes from CWS calc06 (#107688#)


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [63b6e372dd8d8522df8df34dee9015dfc7e21ede]

INTEGRATION: CWS apps61beta2 (1.37.2.1.2.3.22); FILE MERGED 2003/04/11 11:43:01 dr 1.37.2.1.2.3.22.3: #108487# export of column width 2003/04/10 12:46:12 dr 1.37.2.1.2.3.22.2: #105933# needs changes from CWS calc06 (#107688#) 2003/04/04 17:09:38 jmarmion 1.37.2.1.2.3.22.1: #108348# fix the output of all CONDFMT and CFs records for each sheet


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [cb2bcaff847b7b32ddc686ddd31243fcfd42bc5d]

INTEGRATION: CWS apps61beta2 (1.49.2.3.2.5.24); FILE MERGED 2003/04/10 12:46:10 dr 1.49.2.3.2.5.24.3: #105933# needs changes from CWS calc06 (#107688#) 2003/04/07 16:22:37 dr 1.49.2.3.2.5.24.2: #108701# function param count 2003/04/07 16:19:17 dr 1.49.2.3.2.5.24.1: #108701# function param count, ISHYPERLINK


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [1bb8bb59f6419e01ebaed962178877775938304f]

INTEGRATION: CWS apps61beta2 (1.23.2.4.2); FILE MERGED 2003/04/15 10:12:17 bm 1.23.2.4.2.2: RESYNC: (1.23.2.4-1.25); FILE MERGED 2003/04/10 17:49:57 er 1.23.2.4.2.1: #108657# ScTableOp: reset all dirtyvars if done


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [e3cc75778a45536e2d33b4d2a1a40df570c2c84d]

INTEGRATION: CWS apps61beta2 (1.4.110); FILE MERGED 2003/04/02 13:19:20 nn 1.4.110.1: #108105# changed default for UsePrinterMetrics to false


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [fe08f232a3147d0dd38ad20bb0c7e23ce67c3a6d]

INTEGRATION: CWS apps61beta2 (1.13.2.1.42); FILE MERGED 2003/04/09 16:20:46 er 1.13.2.1.42.1: #i13161# DoSubTotals: No group change on rows that will contain subtotal formulas


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [e476c1a2bbf7df0460c89ec14b02f1e21ee42f26]

INTEGRATION: CWS apps61beta2 (1.5.128); FILE MERGED 2003/04/04 13:17:10 nn 1.5.128.1: #108374# if UI language is Korean, also get latin default font for Korean


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [fdf2f8ef735fac7a804f37e1aabe4ac37739e467]

INTEGRATION: CWS apps61beta2 (1.9.30.1.42); FILE MERGED 2003/04/04 17:08:23 jmarmion 1.9.30.1.42.1: #108348# fix the output of all CONDFMT and CFs records for each sheet


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [5030f430da6e1e8de57a231db979059e9a608fe7]

INTEGRATION: CWS apps61beta2 (1.1.4.1.76); FILE MERGED 2003/04/10 17:53:31 er 1.1.4.1.76.1: #108657# make sure that aNotifiedFormulaCells are never copied


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [9f578872a75d3ee0b700db04cb3b73428d24e045]

INTEGRATION: CWS apps61beta2 (1.21.2.1.40); FILE MERGED 2003/04/07 14:19:00 er 1.21.2.1.40.1: #107998# Don't ignore Width and Kana in transliteration


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [28c71f14d9b5e724d6173d4e3a116665974923fa]

INTEGRATION: CWS apps61beta2 (1.64.2.2.38); FILE MERGED 2003/04/04 17:05:13 jmarmion 1.64.2.2.38.1: #108348# fix the output of all CONDFMT and CFs records for each sheet


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [ea5758edb57f2e4e3553a429c0bb1d0d496baaa0]

INTEGRATION: CWS apps61beta2 (1.9.104); FILE MERGED 2003/04/10 17:52:31 er 1.9.104.1: #108657# add ResetTableOpDirtyVar


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [3e8cbb3e798fb28f227c49f5620456e322d8b45f]

INTEGRATION: CWS apps61beta2 (1.7.50); FILE MERGED 2003/04/04 11:56:20 dr 1.7.50.1: #108627# throw, if date is negative


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [b9fdeb782be352ff037c2b28eb26e0fa866563ea]

INTEGRATION: CWS apps61beta2 (1.13.24.2.14); FILE MERGED 2003/04/08 08:54:51 dr 1.13.24.2.14.2: #i2130# using Newton's method for XIRR 2003/04/04 13:02:04 dr 1.13.24.2.14.1: #i2130# XIRR: interest in iteration may rise or fall, handle both


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [90d8d91c47b1d2957dc3451e4213927066158b2a]

INTEGRATION: CWS apps61beta2 (1.22.4); FILE MERGED 2003/04/16 12:13:15 bm 1.22.4.1: #108627# DaysToDate: may throw IllegalArgumentException


2003-04-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [1ce46d5fff1e2d2fea763f1de1d87d520d651e24]

INTEGRATION: CWS apps61beta2 (1.37.8.2.14); FILE MERGED 2003/04/04 14:10:19 dr 1.37.8.2.14.2: #i12430# fixed Bessely1() 2003/04/04 11:56:32 dr 1.37.8.2.14.1: #108627# throw, if date is negative


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [e834cf72f50fa778acab35bd7d45d8940609cc0d]

INTEGRATION: CWS uaa02 (1.2.136); FILE MERGED 2003/04/22 08:15:13 mt 1.2.136.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [14dbf9c5430b9df193f2f64a3d00f01e3c2d5a0f]

INTEGRATION: CWS uaa02 (1.3.134); FILE MERGED 2003/04/22 08:15:12 mt 1.3.134.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [f0d72faabee0954deb8c67f753f381881a0bf943]

INTEGRATION: CWS uaa02 (1.2.136); FILE MERGED 2003/04/22 08:15:12 mt 1.2.136.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [bed1c157c9c2f3ec45c3ff379e29386a8bf02f9c]

INTEGRATION: CWS uaa02 (1.2.136); FILE MERGED 2003/04/22 08:15:11 mt 1.2.136.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [dd39a37ec7724e4806d792b3085f6df852667a5d]

INTEGRATION: CWS uaa02 (1.3.134); FILE MERGED 2003/04/22 08:15:11 mt 1.3.134.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [eb75caa37de0428b7e01b48889cd3d8a31f36313]

INTEGRATION: CWS uaa02 (1.1.136); FILE MERGED 2003/04/22 08:15:10 mt 1.1.136.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [22dea773f3e11e2c2f5092d901a53420958b8959]

INTEGRATION: CWS uaa02 (1.2.136); FILE MERGED 2003/04/22 08:15:09 mt 1.2.136.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [0bc574ba4516bfe5b8d4cbb156ec5a7da05b5eae]

INTEGRATION: CWS uaa02 (1.20.24); FILE MERGED 2003/04/22 08:15:08 mt 1.20.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [a7641de8853f2a302930ece44c8ae2f5dd500538]

INTEGRATION: CWS uaa02 (1.11.138); FILE MERGED 2003/04/22 08:15:08 mt 1.11.138.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [3150d74851572b7d0a89c213569ffc1ed98e9566]

INTEGRATION: CWS uaa02 (1.10.132); FILE MERGED 2003/04/22 08:15:07 mt 1.10.132.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [9252658e52f0d755870d1c2f0f3ab57f870b0d97]

INTEGRATION: CWS uaa02 (1.6.134); FILE MERGED 2003/04/22 08:15:04 mt 1.6.134.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [251e35e6813f2c5aa192bc0a5ce7684fc0634634]

INTEGRATION: CWS uaa02 (1.5.24); FILE MERGED 2003/04/22 08:15:04 mt 1.5.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [42e8e6983a0601a3d6bd02ee9bf585c14ab0c39f]

INTEGRATION: CWS uaa02 (1.12.24); FILE MERGED 2003/04/22 08:15:04 mt 1.12.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [6bc784b40cb9c43fb412ce518cc525470f88ccf4]

INTEGRATION: CWS uaa02 (1.10.136); FILE MERGED 2003/04/22 08:15:03 mt 1.10.136.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [8da36f44976d98d5d50110d512230845a3c78ccb]

INTEGRATION: CWS uaa02 (1.7.24); FILE MERGED 2003/04/22 08:15:03 mt 1.7.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [99e18fad3eca31e80f1435ef4ff480f8d4f11244]

INTEGRATION: CWS uaa02 (1.9.24); FILE MERGED 2003/04/22 08:15:02 mt 1.9.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [4aa8ae73df8dc2e1d6543e2f3e5b05ef9c0982ab]

INTEGRATION: CWS uaa02 (1.17.134); FILE MERGED 2003/04/22 08:15:02 mt 1.17.134.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [3d79044a73e2e3cb87c9bb4cb32a5f8f0f725b99]

INTEGRATION: CWS uaa02 (1.22.128); FILE MERGED 2003/04/22 08:15:02 mt 1.22.128.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [9bdceb8adf80fe225e5b8b57278242c69320c0df]

INTEGRATION: CWS uaa02 (1.6.134); FILE MERGED 2003/04/22 08:15:01 mt 1.6.134.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [bc7a72f673875e768279f3d1f26e2d6e3d887556]

INTEGRATION: CWS uaa02 (1.8.24); FILE MERGED 2003/04/22 08:15:01 mt 1.8.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [d8495f12793aca22970f0729d4395ab6948f3c7f]

INTEGRATION: CWS uaa02 (1.7.130); FILE MERGED 2003/04/22 08:15:00 mt 1.7.130.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [3e52e626e75a964a36938b40ca3135af07bc6cd8]

INTEGRATION: CWS uaa02 (1.4.132); FILE MERGED 2003/04/22 08:15:00 mt 1.4.132.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [e99ee5558a2516ffc7acd12744a5d34c6a82aa23]

INTEGRATION: CWS uaa02 (1.4.134); FILE MERGED 2003/04/22 08:15:00 mt 1.4.134.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [6de4cc0dc5fb563e9ccadc9c3220aa76c7b3da87]

INTEGRATION: CWS uaa02 (1.6.134); FILE MERGED 2003/04/22 08:15:00 mt 1.6.134.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [1295fb1e3fd6a5e4c7e2b3f02d706d3f8b5d9cf3]

INTEGRATION: CWS uaa02 (1.8.24); FILE MERGED 2003/04/22 08:14:59 mt 1.8.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [d861323feaf7b194d3f727986b6a406ea3a6b791]

INTEGRATION: CWS uaa02 (1.1.140); FILE MERGED 2003/04/22 08:14:59 mt 1.1.140.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [b03de78676fb9c9bd28b1881fad44287d0ace265]

INTEGRATION: CWS uaa02 (1.21.132); FILE MERGED 2003/04/22 08:14:59 mt 1.21.132.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [ba0b624972f5af40097df6fb2868532961eb35cd]

INTEGRATION: CWS uaa02 (1.2.130); FILE MERGED 2003/04/22 08:14:58 mt 1.2.130.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [10840d76d2cdfc8f1b341189f004cb5b6278c79c]

INTEGRATION: CWS uaa02 (1.6.22); FILE MERGED 2003/04/22 08:14:58 mt 1.6.22.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [e728d19eb454ce89999c7a2134986cdd43529acf]

INTEGRATION: CWS uaa02 (1.19.24); FILE MERGED 2003/04/22 08:14:57 mt 1.19.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [d44f3c25e93aee7682171ff44bd8853e820f3e46]

INTEGRATION: CWS uaa02 (1.8.128); FILE MERGED 2003/04/22 08:14:57 mt 1.8.128.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [9fd103c4b46c89e96077ef811deb7ced556226e1]

INTEGRATION: CWS uaa02 (1.12.136); FILE MERGED 2003/04/22 08:14:56 mt 1.12.136.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [346ab12953c4adf33b999f33f3eb947128650de0]

INTEGRATION: CWS uaa02 (1.9.24); FILE MERGED 2003/04/22 08:14:56 mt 1.9.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [f6a5885a11820739b6bae645fda57f9eda3d3570]

INTEGRATION: CWS uaa02 (1.30.24); FILE MERGED 2003/04/22 08:14:55 mt 1.30.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [fbe90bd281f817f361c54e5c5c8aa57c1692f990]

INTEGRATION: CWS uaa02 (1.25.24); FILE MERGED 2003/04/22 08:14:52 mt 1.25.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [9952f4a1c3f50c0a9d28bae96306fa0ca3bcbd66]

INTEGRATION: CWS uaa02 (1.39.24); FILE MERGED 2003/04/22 08:14:52 mt 1.39.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [daea8baef21494257e550cd39ef24b6fcbc5c73e]

INTEGRATION: CWS uaa02 (1.20.14); FILE MERGED 2003/04/22 08:14:51 mt 1.20.14.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [85bde0f5b24664326f6885532f95d282e2e8f057]

INTEGRATION: CWS uaa02 (1.20.24); FILE MERGED 2003/04/22 08:14:51 mt 1.20.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [c5707ee73b24dbd3166ef9bd960f988a09303b9a]

INTEGRATION: CWS uaa02 (1.14.128); FILE MERGED 2003/04/22 08:14:51 mt 1.14.128.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [86bbc0714824149a9f9d28a081905b85d54dca89]

INTEGRATION: CWS uaa02 (1.14.128); FILE MERGED 2003/04/22 08:14:50 mt 1.14.128.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [03698e4489c512b28a1df19e97e204e8074364e2]

INTEGRATION: CWS uaa02 (1.16.132); FILE MERGED 2003/04/22 08:14:50 mt 1.16.132.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [c2c09a80370fc9768be55fb0c17c33f1374fff46]

INTEGRATION: CWS uaa02 (1.10.132); FILE MERGED 2003/04/22 08:14:50 mt 1.10.132.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [b7894f5dbe146bdf2cf45b2695e7c9e43f78b304]

INTEGRATION: CWS uaa02 (1.26.24); FILE MERGED 2003/04/22 08:14:49 mt 1.26.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [964e7a1e311b20713360ad92fd588167c3898c75]

INTEGRATION: CWS uaa02 (1.1.138); FILE MERGED 2003/04/22 08:14:49 mt 1.1.138.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [ee3853f6b6ea8e29ff25bc23636908178b8ae122]

INTEGRATION: CWS uaa02 (1.58.12); FILE MERGED 2003/04/22 08:14:48 mt 1.58.12.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [2f497281fca15ea2cdf5dd1560318546353e5ab5]

INTEGRATION: CWS uaa02 (1.6.130); FILE MERGED 2003/04/22 08:14:48 mt 1.6.130.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [24df96546df7fa279b32f2c754e83d5fdf749760]

INTEGRATION: CWS uaa02 (1.11.12); FILE MERGED 2003/04/22 08:14:47 mt 1.11.12.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [df0e3ed21714938554500e61727edef3c05607f5]

INTEGRATION: CWS uaa02 (1.27.24); FILE MERGED 2003/04/22 08:14:47 mt 1.27.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [080aec945a83076f722faa8e84221f0a72244105]

INTEGRATION: CWS uaa02 (1.14.128); FILE MERGED 2003/04/22 08:14:47 mt 1.14.128.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [6d2dc084f98601c355e0c4d2af788054cd9dd4c5]

INTEGRATION: CWS uaa02 (1.23.24); FILE MERGED 2003/04/22 08:14:46 mt 1.23.24.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [e255ef314139b5d9065815088fe56f9138650012]

INTEGRATION: CWS uaa02 (1.4.124); FILE MERGED 2003/04/22 08:14:46 mt 1.4.124.1: #108656# Moved Accessibility from drafts to final


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [35f42c9b21cf42c6f566f3d7e8c9c8b88908975f]

INTEGRATION: CWS draw9 (1.16.110); FILE MERGED 2003/04/10 14:39:27 aw 1.16.110.1: #108584# for the changed pool defaults from drawing layer pool set those attributes as hard attributes to preserve them for saving


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [c28e9a9e9a3c714f7e9c0cf073a0f8cfd56e8085]

INTEGRATION: CWS mav4 (1.31.4); FILE MERGED 2003/04/15 15:46:56 mba 1.31.4.1: #108953#: support layout information through XRenderable


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [f7913dcb3c9b062d815339442f1ef16e1e41cae7]

INTEGRATION: CWS mav4 (1.32.4); FILE MERGED 2003/04/15 15:03:05 sab 1.32.4.1: #108931#; notify Accessibility before all things happen


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [5cf47a63ba1d74197c6dddc2de9e612a906e900a]

INTEGRATION: CWS mav4 (1.28.14); FILE MERGED 2003/04/15 15:46:55 mba 1.28.14.1: #108953#: support layout information through XRenderable


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [c7ad7b879036edf514f737068d81ad7a5ca850e4]

INTEGRATION: CWS mav4 (1.18.4); FILE MERGED 2003/04/15 15:46:55 mba 1.18.4.1: #108953#: support layout information through XRenderable


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [0a2f69f2889ee0bf8a89049e14dcf00ccaa90181]

INTEGRATION: CWS mav4 (1.19.126); FILE MERGED 2003/04/15 16:59:07 nn 1.19.126.1: #i11702# undo for changing object's layer


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [54ce70c07b1d3b896874a1527e9810f2a82c4491]

INTEGRATION: CWS mav4 (1.12.132); FILE MERGED 2003/04/15 19:17:24 nn 1.12.132.1: #i13392# CheckOle: also find OLE objects in groups


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [5490a82fb68394eddba86deb2edad627c43183f9]

INTEGRATION: CWS mav4 (1.32.124); FILE MERGED 2003/04/15 15:46:54 mba 1.32.124.1: #108953#: support layout information through XRenderable


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [5a47fb2016bea4533362d7037afa8244d5f419ec]

INTEGRATION: CWS mav4 (1.7.128); FILE MERGED 2003/04/15 15:46:53 mba 1.7.128.1: #108953#: support layout information through XRenderable


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [c1c0c9f338407a605a07dfc84d335c34e8711773]

INTEGRATION: CWS mav4 (1.58.4); FILE MERGED 2003/04/15 15:00:32 sab 1.58.4.1: #108931#; don't ask for the EditView only.


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [6e30c41f630095faa3fc27194350a03097c78799]

INTEGRATION: CWS mav4 (1.4.4); FILE MERGED 2003/04/15 11:51:56 dr 1.4.4.1: #108935# import of transparent cells


2003-04-24  Rüdiger Timm  <rt@openoffice.org>  [d1e12af71dfc74f22c02d41cd3b799e1fac10cc6]

INTEGRATION: CWS mav4 (1.50.14); FILE MERGED 2003/04/15 15:46:52 mba 1.50.14.1: #108953#: support layout information through XRenderable


2003-04-24  Vladimir Glazounov  <vg@openoffice.org>  [61ca0d2002f8805fce99874d9062a4f38a9a4d33]

INTEGRATION: CWS ause03 (1.13.14.3.58); FILE MERGED 2003/04/10 13:45:49 hjs 1.13.14.3.58.1: #108803# PRJNAME with wrong case


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [ef981e48c49653d3ccab107fdef899e97a38f014]

INTEGRATION: CWS calc07 (1.10.22); FILE MERGED 2003/04/17 12:26:48 dr 1.10.22.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [910ee1958787d729b587eef060d9c5d0c9526225]

INTEGRATION: CWS calc07 (1.16.22); FILE MERGED 2003/04/17 12:26:49 dr 1.16.22.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [d447a855d20bb246f4607976d5b67f1f953ac31f]

INTEGRATION: CWS calc07 (1.4.10); FILE MERGED 2003/04/17 12:26:22 dr 1.4.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [893ada4ace034e9738350d408a10a5623ef67aaf]

INTEGRATION: CWS calc07 (1.3.10); FILE MERGED 2003/04/17 12:26:22 dr 1.3.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [9b2a15b57cd6c9dc1d689acb2309aad5dfb2d602]

INTEGRATION: CWS calc07 (1.5.10); FILE MERGED 2003/04/17 12:26:21 dr 1.5.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [eb915f0775d2dd3b3a1ef1bb75988cf7a9803537]

INTEGRATION: CWS calc07 (1.2.22); FILE MERGED 2003/04/17 12:26:19 dr 1.2.22.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4cea6f61f2543c5c3c35b3891d6a6d073c92f1d8]

INTEGRATION: CWS calc07 (1.4.10); FILE MERGED 2003/04/17 12:26:18 dr 1.4.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [02bde16ba116daf3962435dc3d71768f63b36183]

INTEGRATION: CWS calc07 (1.5.22); FILE MERGED 2003/04/17 12:26:16 dr 1.5.22.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [768f5a29c025e43b6992c7738fb95815882dd34a]

INTEGRATION: CWS calc07 (1.32.10); FILE MERGED 2003/04/17 12:26:15 dr 1.32.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [a8a2ea952a2eda8b18581ecfa824c3c0fe999edc]

INTEGRATION: CWS calc07 (1.4.10); FILE MERGED 2003/04/17 12:25:25 dr 1.4.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4e8aae554becab2c99cc12505cc3a53a4be6d297]

INTEGRATION: CWS calc07 (1.3.10); FILE MERGED 2003/04/17 12:25:24 dr 1.3.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [b6646cd670533e7ca41ac80d46309ca436ffdc4d]

INTEGRATION: CWS calc07 (1.4.10); FILE MERGED 2003/04/17 12:25:22 dr 1.4.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [fa3e3610e989290dd2ce235b52ed6942a864c6dd]

INTEGRATION: CWS calc07 (1.2.22); FILE MERGED 2003/04/17 12:25:21 dr 1.2.22.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [aa869e71f8028b8a4ba27ca4cafb5e347df8c95e]

INTEGRATION: CWS calc07 (1.2.20); FILE MERGED 2003/04/17 12:25:19 dr 1.2.20.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [f02eef670c5621ad9fb02e872e67aab3ac820bee]

INTEGRATION: CWS calc07 (1.5.10); FILE MERGED 2003/04/17 12:25:16 dr 1.5.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [976166058e95e6f5061e6d96b5e7ca9a9dbb3fb6]

INTEGRATION: CWS calc07 (1.4.10); FILE MERGED 2003/04/17 12:25:14 dr 1.4.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4f09dd48b28b5fb88a618bf309a4524c3275d9d6]

INTEGRATION: CWS calc07 (1.14.22); FILE MERGED 2003/04/17 12:25:11 dr 1.14.22.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4167638407627ade0fe703de2187885f503abc2d]

INTEGRATION: CWS calc07 (1.49.10); FILE MERGED 2003/04/17 12:25:08 dr 1.49.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [54764e5088c3b193e9d62bac4f3960e4efea7162]

INTEGRATION: CWS calc07 (1.60.10); FILE MERGED 2003/04/17 12:25:06 dr 1.60.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [48288a0fef4148f42f5a48891b3075fb9bf31f74]

INTEGRATION: CWS calc07 (1.44.10); FILE MERGED 2003/04/17 12:25:03 dr 1.44.10.1: #i13399# export document language


2003-04-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [c518afed18ed1c1cdfe1e1e794157bacc65c2ae9]

INTEGRATION: CWS calc07 (1.55.10); FILE MERGED 2003/04/17 12:24:59 dr 1.55.10.1: #i13399# export document language


2003-04-17  Rüdiger Timm  <rt@openoffice.org>  [feef00f1a9427483f4582639506628239cdf89fd]

INTEGRATION: CWS vcl08 (1.4.6.1.36); FILE MERGED 2003/04/09 10:19:55 dr 1.4.6.1.36.2: #108669# mirrored UI: swap left/right cursor done in VCL 2003/04/09 10:11:46 dr 1.4.6.1.36.1: #108669# mirrored UI: swap left/right cursor done in VCL


2003-04-17  Rüdiger Timm  <rt@openoffice.org>  [f4daa11841a8e3af266b3fc06b078064f63d8763]

INTEGRATION: CWS vcl08 (1.3.6.1.36); FILE MERGED 2003/04/09 10:19:46 dr 1.3.6.1.36.1: #108669# mirrored UI: swap left/right cursor done in VCL


2003-04-17  Rüdiger Timm  <rt@openoffice.org>  [8738105c97fd21d920d8be7a4be026d5ef482d00]

INTEGRATION: CWS vcl08 (1.6.2.1.20); FILE MERGED 2003/04/09 10:19:45 dr 1.6.2.1.20.1: #108669# mirrored UI: swap left/right cursor done in VCL


2003-04-17  Rüdiger Timm  <rt@openoffice.org>  [a2fb49db724918e6cff7119bb7d8ba565fec730a]

INTEGRATION: CWS vcl08 (1.8.4.1.20); FILE MERGED 2003/04/09 10:19:32 dr 1.8.4.1.20.2: #108669# mirrored UI: swap left/right cursor done in VCL 2003/04/09 10:11:32 dr 1.8.4.1.20.1: #108669# mirrored UI: swap left/right cursor done in VCL


2003-04-17  Vladimir Glazounov  <vg@openoffice.org>  [9fa63ca3db1eb6af7153c7332c1c385ab7bd18b4]

INTEGRATION: CWS os8 (1.22.122); FILE MERGED 2003/04/10 08:46:54 mba 1.22.122.1: #i2822#: use CreateMode from SFX - it might be set after construction


2003-04-17  Vladimir Glazounov  <vg@openoffice.org>  [26a7ce32426c8488e57cf78f51a886bc63258525]

INTEGRATION: CWS os8 (1.9.142); FILE MERGED 2003/04/10 08:46:43 mba 1.9.142.1: #i2822#: use CreateMode from SFX - it might be set after construction


2003-04-17  Vladimir Glazounov  <vg@openoffice.org>  [d0c0199b59c0e221d5473c1ea19d296ff39464c8]

INTEGRATION: CWS os8 (1.24.122); FILE MERGED 2003/04/10 08:46:43 mba 1.24.122.1: #i2822#: use CreateMode from SFX - it might be set after construction


2003-04-17  Vladimir Glazounov  <vg@openoffice.org>  [109c84622c27a63ac1f87e628729a03786e8854d]

INTEGRATION: CWS os8 (1.60.10); FILE MERGED 2003/04/10 08:46:42 mba 1.60.10.1: #i2822#: use CreateMode from SFX - it might be set after construction


2003-04-17  Vladimir Glazounov  <vg@openoffice.org>  [ee8b43d1633ebbb3501ed3e504dd643ebbff5f14]

INTEGRATION: CWS sw009 (1.29.2.2.34); FILE MERGED 2003/04/02 12:04:20 hbrinkm 1.29.2.2.34.2: RESYNC: (1.29.2.2-1.29.2.3); FILE MERGED 2003/03/18 09:51:01 oj 1.29.2.2.34.1: #107657# moved GetScriptTypeOfLanguage to svtools SvtLanguageOptions


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [499f5341792323e51634299e3803db5c301cf56e]

INTEGRATION: CWS dbgmacros1 (1.2.124); FILE MERGED 2003/04/09 16:28:42 kso 1.2.124.1: #108413# - debug macro unification.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [9febfb4cbde004b06cc58468aafeb7099e84984f]

INTEGRATION: CWS dbgmacros1 (1.32.14.1.28); FILE MERGED 2003/04/09 16:28:41 kso 1.32.14.1.28.1: #108413# - debug macro unification.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [712a58892868791174819e61b2435f64c781dacf]

INTEGRATION: CWS dbgmacros1 (1.1.1.1.46.1.64); FILE MERGED 2003/04/09 16:28:40 kso 1.1.1.1.46.1.64.1: #108413# - debug macro unification.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [2893f8ecd982aab2dd622c973a3666fee05a9a56]

INTEGRATION: CWS dbgmacros1 (1.9.116); FILE MERGED 2003/04/09 16:28:39 kso 1.9.116.1: #108413# - debug macro unification.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [83568cd2a44e5720d8d92837ff2d6098ec0458a2]

INTEGRATION: CWS dbgmacros1 (1.12.4.2.64); FILE MERGED 2003/04/09 16:28:38 kso 1.12.4.2.64.1: #108413# - debug macro unification.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [d645745613fbb102a2a4e3eb284caa21c9fa72ba]

INTEGRATION: CWS dbgmacros1 (1.1.1.1.158); FILE MERGED 2003/04/09 16:28:37 kso 1.1.1.1.158.1: #108413# - debug macro unification.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [7f104ea627619cc3c2991cc9953a51fe92272747]

INTEGRATION: CWS dbgmacros1 (1.11.36.1.52); FILE MERGED 2003/04/09 16:28:37 kso 1.11.36.1.52.1: #108413# - debug macro unification.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [144d36c793433b63fd97197d39c4c39579dc6ae2]

INTEGRATION: CWS dbgmacros1 (1.9.114); FILE MERGED 2003/04/09 16:28:36 kso 1.9.114.1: #108413# - debug macro unification.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [9a0bc6b2ca078520a9b7d1899d44ca56b65a6252]

INTEGRATION: CWS tune01 (1.15.4); FILE MERGED 2003/04/11 13:45:49 mhu 1.15.4.1: #108383# Need unconditional SCHLIB dependency.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [74ae3fd4f31a48b822a7832f0d9efe9bad997ae7]

INTEGRATION: CWS tune01 (1.3.4.1.52); FILE MERGED 2003/04/06 15:18:25 mhu 1.3.4.1.52.1: #i12694# Added symbol scoping linker mapfile.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [7132dda0e00cbafd0a83577fe617093646bcfcbb]

INTEGRATION: CWS tune01 (1.1.2); FILE ADDED 2003/04/06 15:18:24 mhu 1.1.2.1: #i12694# Added symbol scoping linker mapfile.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [6248ad3c3122acd0b4293b43c8b3655b0c9d6d70]

INTEGRATION: CWS tune01 (1.8.26); FILE MERGED 2003/04/06 15:06:28 mhu 1.8.26.1: #i12694# Added symbol scoping linker mapfile.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [45ae0988b4fc2066b569121ca1b5317e5ee246fd]

INTEGRATION: CWS tune01 (1.1.2); FILE ADDED 2003/04/06 15:06:27 mhu 1.1.2.1: #i12694# Added symbol scoping linker mapfile.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [65d816fc64ac8106fb38d5fbd500f38b859f1fa6]

INTEGRATION: CWS tune01 (1.9.26); FILE MERGED 2003/04/06 15:03:50 mhu 1.9.26.1: #i12694# Added symbol scoping linker mapfile.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [19854f7197bc7348e076d9ccfceb0628ed7d1036]

INTEGRATION: CWS tune01 (1.1.2); FILE ADDED 2003/04/06 15:03:50 mhu 1.1.2.1: #i12694# Added symbol scoping linker mapfile.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [b7f482561185c01c8c5cc1bf9b85b75b6e02f424]

INTEGRATION: CWS jollyfilterteam04 (1.45.116); FILE MERGED 2003/04/10 09:00:55 mmaher 1.45.116.1: #108550# When the row height is changed automatically to accomodate large text the new row height is now also stored.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [11a479f744cd49e741ede911aeda89f9db45b5be]

INTEGRATION: CWS jollyfilterteam04 (1.165.2); FILE MERGED 2003/04/10 09:00:54 mmaher 1.165.2.1: #108550# When the row height is changed automatically to accomodate large text the new row height is now also stored.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [302069df3cd74f0c532e179dae5201e9d9971101]

INTEGRATION: CWS jollyfilterteam04 (1.48.2); FILE MERGED 2003/04/10 10:08:20 mmaher 1.48.2.2: Re-added a change that got deleted by mistake on the previous checkin. 2003/04/10 09:00:53 mmaher 1.48.2.1: #108550# When the row height is changed automatically to accomodate large text the new row height is now also stored.


2003-04-15  Vladimir Glazounov  <vg@openoffice.org>  [2b7863ad8ef8aa523e28b34c83d00b4e525ca28b]

INTEGRATION: CWS jollyfilterteam04 (1.65.2); FILE MERGED 2003/04/10 10:05:41 mmaher 1.65.2.2: Backed out a change that was incorrectly added on the previous checkin. 2003/04/10 09:00:52 mmaher 1.65.2.1: #108550# When the row height is changed automatically to accomodate large text the new row height is now also stored.


2003-04-10  Vladimir Glazounov  <vg@openoffice.org>  [4302244bd25e5b0de4d51a0c5c038535e6bff7a0]

#100000# ressources fix


2003-04-10  Vladimir Glazounov  <vg@openoffice.org>  [70ac8118006f16e11e1bbefdc3c1674dbacd0544]

#100000# exception file


2003-04-08  Oliver Bolte  <obo@openoffice.org>  [479bab7daa4ce66b487ad37931009a0a0ee396a3]

#100000# sc_out portuguese_brazilian missing


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [51a57cd77dbed2c951f85093d6be6e028292e7da]

INTEGRATION: CWS calc06 (1.17.2.2.10); FILE MERGED 2003/03/19 16:57:42 nn 1.17.2.2.10.2: #108208# SetWidthOrHeight: don't set manual height flag when hiding rows (height 0) 2003/03/17 18:52:09 nn 1.17.2.2.10.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [65ed32e7d9c191f2437eaea1302e9057249bf570]

INTEGRATION: CWS calc06 (1.17.92); FILE MERGED 2003/03/17 18:52:08 nn 1.17.92.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d31688015d3d2a8633c35666d2963c353ba983bc]

INTEGRATION: CWS calc06 (1.36.2.3.28); FILE MERGED 2003/03/17 18:52:08 nn 1.36.2.3.28.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [cd57f6b0000fc68b9d901ed87a721658d085274b]

INTEGRATION: CWS calc06 (1.8.94); FILE MERGED 2003/03/17 18:52:07 nn 1.8.94.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [952d7915eb8c0bfba9c66603ee18f8f03041a5e4]

INTEGRATION: CWS calc06 (1.29.2.1.26); FILE MERGED 2003/03/17 18:52:07 nn 1.29.2.1.26.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [62a0f0e62eea955d0e082162345c37fa8cbd72d7]

INTEGRATION: CWS calc06 (1.31.92); FILE MERGED 2003/03/17 18:52:06 nn 1.31.92.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [2dc8528d21bf14deed4e5997c5e945692c851a24]

INTEGRATION: CWS calc06 (1.10.92); FILE MERGED 2003/03/17 18:52:06 nn 1.10.92.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [8885c4a83b6a6ba49775c4b1ec168fd02ee5f3ea]

INTEGRATION: CWS calc06 (1.16.2.1.26); FILE MERGED 2003/03/28 11:45:07 sab 1.16.2.1.26.1: #108333#; notify Accessibility that Shell is dying and before destroy all


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [eb766775bb5c44e9900909f8defbf5cc142de5de]

INTEGRATION: CWS calc06 (1.5.102); FILE MERGED 2003/03/18 19:10:11 nn 1.5.102.1: #108137# keyboard-compatible state for position/size in status bar


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [f9561b514e91e4a1f8ce344ea62ef4f54f513971]

INTEGRATION: CWS calc06 (1.39.2.2.26); FILE MERGED 2003/03/17 18:52:05 nn 1.39.2.2.26.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d2917937bc8de3a22c712d382b03006d76b6dae8]

INTEGRATION: CWS calc06 (1.19.92); FILE MERGED 2003/03/17 18:52:05 nn 1.19.92.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [25afa2ebe7e81ba5486b3510a2e7869c21451815]

INTEGRATION: CWS calc06 (1.5.102); FILE MERGED 2003/03/17 18:51:26 nn 1.5.102.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [76cfeafe0ecf8937ab9ba35661347280bf4bc080]

INTEGRATION: CWS calc06 (1.10.4.1.28); FILE MERGED 2003/03/17 18:50:58 nn 1.10.4.1.28.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [1485694d72769fd84075c4d66c851ccbca9bd9c8]

INTEGRATION: CWS calc06 (1.7.92); FILE MERGED 2003/03/18 19:12:06 nn 1.7.92.1: #108137# keyboard-compatible state for position/size in status bar


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [f2eff42b43c0ec31517f2e614529d58f7e92ca66]

INTEGRATION: CWS calc06 (1.41.2.1.28); FILE MERGED 2003/03/19 16:56:03 nn 1.41.2.1.28.1: #108208# SetWidthOrHeight: don't set manual height flag when hiding rows (height 0)


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [22cacb83dbe7c0efc6dea7960608536e93282c5b]

INTEGRATION: CWS calc06 (1.5.96); FILE MERGED 2003/03/17 18:51:15 nn 1.5.96.1: #108266# Removed parameter bMergeMark in GetSimpleArea / GetMultiArea


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [6d8fa6fbb5548877a58404c208a6aec4b3445fd1]

INTEGRATION: CWS calc06 (1.18.2.2.10); FILE MERGED 2003/03/19 15:11:35 sab 1.18.2.2.10.2: #108097#; throw specified exceptions 2003/03/19 14:45:29 sab 1.18.2.2.10.1: #108308#; move point to area where the cells are


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [60c351b8e72ac026c9a53510ac3c862c08a88d91]

INTEGRATION: CWS calc06 (1.56.4.1.60); FILE MERGED 2003/03/19 14:16:13 sab 1.56.4.1.60.1: #108255#; dispose child after replacing


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [69ac2a900d2f918947a20bd150d2899f625cddbd]

INTEGRATION: CWS calc06 (1.85.92); FILE MERGED 2003/03/20 19:40:51 nn 1.85.92.1: #i9518# endDocument: call base class


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [f5444db3041d09675478397100d322d6de0611fd]

INTEGRATION: CWS calc06 (1.46.2.2.2.3.10); FILE MERGED 2003/03/31 15:42:02 sab 1.46.2.2.2.3.10.3: RESYNC: (1.46.2.2.2.3-1.46.2.2.2.4); FILE MERGED 2003/03/28 15:29:24 dr 1.46.2.2.2.3.10.2: #107688# sort/reduce XF list on export 2003/03/27 16:09:27 dr 1.46.2.2.2.3.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [8a47a37197a235a7bc7c803416f1a97db8134ab5]

INTEGRATION: CWS calc06 (1.2.4.2.10); FILE MERGED 2003/03/31 15:22:25 sab 1.2.4.2.10.2: #107688#; cwsresync 2003/03/27 16:09:04 dr 1.2.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [4cc3460d04d3fabcf7b5755398d1cac48167e79d]

INTEGRATION: CWS calc06 (1.1.4.2.10); FILE MERGED 2003/03/28 15:29:06 dr 1.1.4.2.10.2: #107688# sort/reduce XF list on export 2003/03/27 16:09:04 dr 1.1.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d7ddb559d7cd0f37a3758b572fe2b35da6450b7f]

INTEGRATION: CWS calc06 (1.1.4.2.10); FILE MERGED 2003/03/31 15:44:23 sab 1.1.4.2.10.2: RESYNC: (1.1.4.2-1.1.4.3); FILE MERGED 2003/03/27 16:09:03 dr 1.1.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [c07e1d2e040edb1196340e221747b855763bd06f]

INTEGRATION: CWS calc06 (1.3.4.2.10); FILE MERGED 2003/03/28 15:29:05 dr 1.3.4.2.10.3: #107688# sort/reduce XF list on export 2003/03/27 16:09:01 dr 1.3.4.2.10.2: #107688# import/export of cell styles 2003/03/18 12:22:01 dr 1.3.4.2.10.1: #107688# reimplemented XF dump


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [c22796b20101c1575c5cc955d6709ef240af614e]

INTEGRATION: CWS calc06 (1.1.4.2.10); FILE MERGED 2003/03/31 15:44:04 sab 1.1.4.2.10.4: RESYNC: (1.1.4.2-1.1.4.3); FILE MERGED 2003/03/27 16:08:59 dr 1.1.4.2.10.3: #107688# import/export of cell styles 2003/03/19 14:04:35 dr 1.1.4.2.10.2: #107688# import cell styles 2003/03/19 13:56:32 dr 1.1.4.2.10.1: #107688# import cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [1f147c4903323e4f2cdc122960b671fc2f2672ea]

INTEGRATION: CWS calc06 (1.2.4.2.10); FILE MERGED 2003/03/31 15:43:34 sab 1.2.4.2.10.3: RESYNC: (1.2.4.2-1.2.4.3); FILE MERGED 2003/03/28 15:29:05 dr 1.2.4.2.10.2: #107688# sort/reduce XF list on export 2003/03/27 16:08:58 dr 1.2.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [a54dbf4c3167b6be5b81a6ce08e100c4300546a8]

INTEGRATION: CWS calc06 (1.2.4.2.10); FILE MERGED 2003/03/27 16:08:57 dr 1.2.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [fa8c8f4d9ee269eabd6c2a2abd8fd6f5f8e03a99]

INTEGRATION: CWS calc06 (1.23.4.1.2.2.10); FILE MERGED 2003/03/31 15:43:18 sab 1.23.4.1.2.2.10.3: RESYNC: (1.23.4.1.2.2-1.23.4.1.2.3); FILE MERGED 2003/03/28 15:29:04 dr 1.23.4.1.2.2.10.2: #107688# sort/reduce XF list on export 2003/03/27 16:08:54 dr 1.23.4.1.2.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [65c738ea9f2d55c1e22fee2a544a577128e6e383]

INTEGRATION: CWS calc06 (1.24.2.2.10); FILE MERGED 2003/03/31 15:42:59 sab 1.24.2.2.10.2: RESYNC: (1.24.2.2-1.24.2.3); FILE MERGED 2003/03/27 16:08:52 dr 1.24.2.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [f3b8a6f5bb1b95b41a9d464c6fcc878268bb7f0d]

INTEGRATION: CWS calc06 (1.17.2.1.42); FILE MERGED 2003/03/31 15:42:52 sab 1.17.2.1.42.2: RESYNC: (1.17.2.1-1.17.2.2); FILE MERGED 2003/03/24 15:51:36 jmarmion 1.17.2.1.42.1: #i11776# apply outlines after autofilter


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [348add878dd7506890446de75e75a4704f766997]

INTEGRATION: CWS calc06 (1.1.4.2.10); FILE MERGED 2003/03/31 15:22:25 sab 1.1.4.2.10.2: #107688#; cwsresync 2003/03/27 16:08:50 dr 1.1.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [000b6cdb9c757b851e7c029c0303ef42e713977e]

INTEGRATION: CWS calc06 (1.3.2.1.42); FILE MERGED 2003/03/27 16:08:48 dr 1.3.2.1.42.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d4b4645dcaf2b86890abb68c7dfc7eccf37c990e]

INTEGRATION: CWS calc06 (1.27.2.3.10); FILE MERGED 2003/03/31 15:22:24 sab 1.27.2.3.10.2: #107688#; cwsresync 2003/03/28 15:29:03 dr 1.27.2.3.10.1: #107688# sort/reduce XF list on export


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [40e9f04c60f81d6a7849988e92488cbdc9b3609a]

INTEGRATION: CWS calc06 (1.42.2.3.10); FILE MERGED 2003/03/27 16:08:46 dr 1.42.2.3.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [4cec6b653a44dfc3980c9f2b22bed62cbdb00df0]

INTEGRATION: CWS calc06 (1.8.22.1.42); FILE MERGED 2003/03/28 15:29:02 dr 1.8.22.1.42.1: #107688# sort/reduce XF list on export


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [0170ae3e3b9e61e379660d3c34cc373752474c70]

INTEGRATION: CWS calc06 (1.22.92); FILE MERGED 2003/03/20 15:29:47 dr 1.22.92.1: #108343# +JM


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [e2693fe2fc1e7236c10d6432c8ab7caefa450f7a]

INTEGRATION: CWS calc06 (1.1.2.1.44); FILE MERGED 2003/03/31 15:21:47 sab 1.1.2.1.44.2: #107688#; cwsresync 2003/03/27 16:07:58 dr 1.1.2.1.44.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [6d3b69ba0b16cf2c55c25ce03f5b26047517c453]

INTEGRATION: CWS calc06 (1.2.4.2.10); FILE MERGED 2003/03/31 15:20:56 sab 1.2.4.2.10.2: #107688#; cwsresync 2003/03/27 16:07:27 dr 1.2.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d6c8a99101c34f71446d54a338acfaa013d3f612]

INTEGRATION: CWS calc06 (1.1.4.2.10); FILE MERGED 2003/03/28 15:26:30 dr 1.1.4.2.10.2: #107688# sort/reduce XF list on export 2003/03/27 16:07:26 dr 1.1.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [2edeb750be16ae0166fc64657d92de73b2a9fe39]

INTEGRATION: CWS calc06 (1.1.4.2.10); FILE MERGED 2003/03/31 15:46:42 sab 1.1.4.2.10.2: RESYNC: (1.1.4.2-1.1.4.3); FILE MERGED 2003/03/27 16:07:26 dr 1.1.4.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [f2a9e726ae1763e98ff04ab4325e397563172dc3]

INTEGRATION: CWS calc06 (1.2.4.3.10); FILE MERGED 2003/03/31 15:20:55 sab 1.2.4.3.10.5: #107688#; cwsresync 2003/03/28 15:26:30 dr 1.2.4.3.10.4: #107688# sort/reduce XF list on export 2003/03/27 16:07:25 dr 1.2.4.3.10.3: #107688# import/export of cell styles 2003/03/19 14:04:41 dr 1.2.4.3.10.2: #107688# import cell styles 2003/03/19 13:56:58 dr 1.2.4.3.10.1: #107688# import cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [f7c24808454a225e44b943f7f7f1cd3c55aab1f5]

INTEGRATION: CWS calc06 (1.2.4.1.42); FILE MERGED 2003/03/31 15:46:12 sab 1.2.4.1.42.2: RESYNC: (1.2.4.1-1.2.4.2); FILE MERGED 2003/03/19 13:56:59 dr 1.2.4.1.42.1: #107688# import cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [aaeb5c95596d05458e73c1e8262d6bb182926360]

INTEGRATION: CWS calc06 (1.3.4.3.10); FILE MERGED 2003/03/31 15:20:54 sab 1.3.4.3.10.4: #107688#; cwsresync 2003/03/31 10:02:10 dr 1.3.4.3.10.3: #107688# fixed XF comparison 2003/03/28 15:26:29 dr 1.3.4.3.10.2: #107688# sort/reduce XF list on export 2003/03/27 16:07:25 dr 1.3.4.3.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [0e44ed182ed8eddf1b5daaedd47b70c2e6aecb9c]

INTEGRATION: CWS calc06 (1.2.4.3.10); FILE MERGED 2003/03/27 16:07:24 dr 1.2.4.3.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [42b03c6eb7b2325239f3749ca411352d12a689be]

INTEGRATION: CWS calc06 (1.2.4.1.42); FILE MERGED 2003/03/31 15:46:04 sab 1.2.4.1.42.3: RESYNC: (1.2.4.1-1.2.4.2); FILE MERGED 2003/03/27 16:07:24 dr 1.2.4.1.42.2: #107688# import/export of cell styles 2003/03/25 16:18:56 jmarmion 1.2.4.1.42.1: #108188# fix export to excel of text greater than length of 255


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [9137ced6a399b56d037cb5d1102659e080c1a40e]

INTEGRATION: CWS calc06 (1.33.2.1.42); FILE MERGED 2003/03/27 16:07:23 dr 1.33.2.1.42.3: #107688# import/export of cell styles 2003/03/24 15:52:32 jmarmion 1.33.2.1.42.2: #i11776# apply outlines after autofilter 2003/03/19 13:56:59 dr 1.33.2.1.42.1: #107688# import cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [7f96ea4ba09febe5e46b7b0d93652141d35877f6]

INTEGRATION: CWS calc06 (1.44.2.3.26); FILE MERGED 2003/03/31 15:45:46 sab 1.44.2.3.26.4: RESYNC: (1.44.2.3-1.44.2.4); FILE MERGED 2003/03/27 16:07:22 dr 1.44.2.3.26.3: #107688# import/export of cell styles 2003/03/24 15:52:05 jmarmion 1.44.2.3.26.2: #i11776# apply outlines after autofilter 2003/03/19 13:56:58 dr 1.44.2.3.26.1: #107688# import cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [fd7be7605bcf55381d8c73aaeb0f4aff08a9463a]

INTEGRATION: CWS calc06 (1.12.2.1.42); FILE MERGED 2003/03/31 15:45:40 sab 1.12.2.1.42.2: RESYNC: (1.12.2.1-1.12.2.2); FILE MERGED 2003/03/27 16:07:22 dr 1.12.2.1.42.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [9b7eedae185b4878e6ee52e17af72748725061cf]

INTEGRATION: CWS calc06 (1.37.2.2.10); FILE MERGED 2003/03/31 15:45:33 sab 1.37.2.2.10.2: RESYNC: (1.37.2.2-1.37.2.3); FILE MERGED 2003/03/27 16:07:21 dr 1.37.2.2.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d092b29e7b25fb023b9ac818992f2207f61bbc81]

INTEGRATION: CWS calc06 (1.54.4.2.2.4.10); FILE MERGED 2003/03/31 15:45:26 sab 1.54.4.2.2.4.10.2: RESYNC: (1.54.4.2.2.4-1.54.4.2.2.5); FILE MERGED 2003/03/28 15:26:27 dr 1.54.4.2.2.4.10.1: #107688# sort/reduce XF list on export


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d5e45ff20bed7149ae6ada7526989d52846b42a4]

INTEGRATION: CWS calc06 (1.74.4.1.2.6.10); FILE MERGED 2003/03/31 15:45:19 sab 1.74.4.1.2.6.10.3: RESYNC: (1.74.4.1.2.6-1.74.4.1.2.7); FILE MERGED 2003/03/27 16:06:32 dr 1.74.4.1.2.6.10.2: #107688# import/export of cell styles 2003/03/25 11:25:18 jmarmion 1.74.4.1.2.6.10.1: #i3296# attach connectors to objects on excel import


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [c9d6f5f4cd7ef127f0affa0ac3e07386c5dc2158]

INTEGRATION: CWS calc06 (1.8.2.1.42); FILE MERGED 2003/03/27 16:06:31 dr 1.8.2.1.42.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [7db505488a1ebafa571cec07192f938f1d836784]

INTEGRATION: CWS calc06 (1.37.2.1.2.3.10); FILE MERGED 2003/03/31 15:44:59 sab 1.37.2.1.2.3.10.3: RESYNC: (1.37.2.1.2.3-1.37.2.1.2.4); FILE MERGED 2003/03/28 15:26:27 dr 1.37.2.1.2.3.10.2: #107688# sort/reduce XF list on export 2003/03/27 16:06:29 dr 1.37.2.1.2.3.10.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [e14d51639b3042624266cbdb92c5788a2a3f105c]

INTEGRATION: CWS calc06 (1.13.22.1.42); FILE MERGED 2003/03/31 15:44:52 sab 1.13.22.1.42.2: RESYNC: (1.13.22.1-1.13.22.2); FILE MERGED 2003/03/19 13:56:58 dr 1.13.22.1.42.1: #107688# import cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [ec05d751148fa1ba36fdc389f8e788dcbb1ebad5]

INTEGRATION: CWS calc06 (1.49.2.3.2.5.10); FILE MERGED 2003/03/27 16:06:26 dr 1.49.2.3.2.5.10.2: #107688# import/export of cell styles 2003/03/18 12:22:10 dr 1.49.2.3.2.5.10.1: #107688# reimplemented XF dump


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [9dda32cf043fb98fa9b2af5a50e3d2eec683bcad]

INTEGRATION: CWS calc06 (1.23.2.3.30); FILE MERGED 2003/03/31 15:47:21 sab 1.23.2.3.30.2: RESYNC: (1.23.2.3-1.23.2.4); FILE MERGED 2003/03/20 15:30:18 dr 1.23.2.3.30.1: #108343# calcteam


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [6583182dcb2c78da580ae16c131bd21e18385831]

INTEGRATION: CWS calc06 (1.38.2.2.28); FILE MERGED 2003/03/17 14:16:57 nn 1.38.2.2.28.1: #i12348# SetRecalcModeOnRefMove for ocCell


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [88d6f9849b9cecddbdc7bbe6d004d4d19aff9ced]

INTEGRATION: CWS calc06 (1.21.92); FILE MERGED 2003/03/21 18:44:34 nn 1.21.92.1: #i12341# DBShowRow/DBShowRows: call UpdateOutlineRow


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [ad9a9353a25243b7446b4b6ca6a0da972ccb3653]

INTEGRATION: CWS calc06 (1.18.2.1.66); FILE MERGED 2003/03/27 16:06:06 dr 1.18.2.1.66.1: #107688# import/export of cell styles


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d76367dd0f6a3cebba6895f6b99b147ecbec1d68]

INTEGRATION: CWS calc06 (1.2.96); FILE MERGED 2003/03/21 18:46:35 nn 1.2.96.1: #i12341# ManualAction: hide if all cols/rows are hidden, show if at least one is visible


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [771c88e9ca908307a3d9290650ea7898c062290e]

INTEGRATION: CWS calc06 (1.15.4.2.30); FILE MERGED 2003/03/18 21:38:02 er 1.15.4.2.30.1: #i11719# Interpret: no UPN, no error, no token, but string


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [d7bc21caa704ab052a99f22efe036fafbc0aac61]

INTEGRATION: CWS calc06 (1.10.2.1.28); FILE MERGED 2003/03/21 19:50:03 nn 1.10.2.1.28.1: #108045# SetPatternAreaSafe: copy document default pattern instead of default-construct


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [5efb0aae589f204d0cbca3a57f130212ffe7da88]

INTEGRATION: CWS calc06 (1.5.96); FILE MERGED 2003/03/18 19:09:27 nn 1.5.96.1: #108137# slots for position/size in status bar


2003-04-08  Rüdiger Timm  <rt@openoffice.org>  [f4fb2b3ecdcc0a970efed3174f9e2f24aaf30424]

INTEGRATION: CWS calc06 (1.7.92); FILE MERGED 2003/03/27 16:05:57 dr 1.7.92.1: #107688# import/export of cell styles


2003-04-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [e4fd7133fe532c4cc19bc30d00cefdb75a96c62f]

INTEGRATION: CWS mav3 (1.1.6.1.40); FILE MERGED 2003/03/28 12:05:03 mav 1.1.6.1.40.1: #i2822# use solar mutex


2003-04-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [e3c969e38f62e520069ffdd7f1e6c7810af99303]

INTEGRATION: CWS mav3 (1.10.82); FILE MERGED 2003/02/20 09:35:48 mav 1.10.82.1: #i2822# new document UNO services supporting XModel


2003-04-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [18e0c69cd7c437aabafba5431b8dfbf46cbffec0]

INTEGRATION: CWS mav3 (1.13.76); FILE MERGED 2003/02/20 09:35:47 mav 1.13.76.1: #i2822# new document UNO services supporting XModel


2003-04-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [e5f1301b9c98d8d956c4e034fbc840f99ebcae07]

INTEGRATION: CWS os7 (1.16.6.1.52); FILE MERGED 2003/03/28 11:59:21 os 1.16.6.1.52.1: #108241# set decimal separator correctly in SfxPoolItem::GetPresentation() methods


2003-04-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [16efa6043bdded8dab17ddfbb2d1710d9e6bd182]

INTEGRATION: CWS fwk01 (1.47.2.5.30); FILE MERGED 2003/03/31 15:53:34 cd 1.47.2.5.30.1: #i11534# Changed string for viewing mode function bar


2003-04-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [b285dfeee0c73ae7635da021afc689569b50d33c]

INTEGRATION: CWS uaa01 (1.9.2.1.40); FILE MERGED 2003/03/14 15:58:44 thb 1.9.2.1.40.2: RESYNC: (1.9.2.1-1.9.2.3); FILE MERGED 2003/02/17 13:03:49 dr 1.9.2.1.40.1: #107054# getIndexAtPoint() uses object coordinates


2003-04-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [ba310d15b19539490b86c82fe0aa905821a5c125]

INTEGRATION: CWS xmlfilter01 (1.32.4.2.52); FILE MERGED 2003/03/31 16:05:12 cl 1.32.4.2.52.1: #107159# added menu entry for xml filter configuration dialog


2003-04-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [bd6fc23d3de33166c444d99a9b7330f91a51fba5]

INTEGRATION: CWS xmlfilter01 (1.3.112); FILE MERGED 2003/03/31 16:05:07 cl 1.3.112.1: #107159# added menu entry for xml filter configuration dialog


2003-04-01  Vladimir Glazounov  <vg@openoffice.org>  [ca4f62f9fa3801cc316355b9178d5d001d4a42da]

INTEGRATION: CWS os6 (1.16.4.2.24); FILE MERGED 2003/03/14 16:17:32 sab 1.16.4.2.24.1: #107459#; implement new SortDescriptor


2003-04-01  Vladimir Glazounov  <vg@openoffice.org>  [71a5cb1abdc8c42d78120acda27212fada128322]

INTEGRATION: CWS os6 (1.48.2.2.24); FILE MERGED 2003/03/14 16:16:43 sab 1.48.2.2.24.1: #107459#; add new property for new SortDescriptor


2003-03-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [49c3ed6df3f204e9d430665721dab2f2284022d9]

MWS_SRX644: migrate branch mws_srx644 -> HEAD


2003-03-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [0c93701f87f15fe544ada098286fc59ddb29e882]

MWS_SRX644: migrate branch mws_srx644 -> HEAD


2003-03-10  Sascha Ballach  <sab@openoffice.org>  [fadc4405e213a705b6a0d33cd0a0e43fdf4108d9]

#93294#; export empty header/footer if left and right are not the same


2003-02-14  Sascha Ballach  <sab@openoffice.org>  [55daf2776a10bb611c7fa0d33ff93bb082c4755d]

#i10950#; write header/footer element if is disabled


2002-12-13  John Marmion  <jmarmion@openoffice.org>  [7517cf9fc797e2bfc8597be2b8768426205f4452]

#i4378# orientation of row lost in export of Calc 5.0 to Excel


2002-12-12  Niklas Nebel  <nn@openoffice.org>  [7ebefe58cc30585a363b2807615845b09812684e]

#i5819# reset selection anchor flag after executing AutoFill etc.


2002-12-12  Niklas Nebel  <nn@openoffice.org>  [c61c2b316fc04b937aebf7c9dd976b7bc72d3678]

#i6232# reset DocShell empty flag after appending sheets to new document


2002-12-12  Daniel Rentz  <dr@openoffice.org>  [3f442a562dfdf6d16b8344c58f2d157fe47946e8]

#106246# substitute fonts for ms export


2002-12-12  Daniel Rentz  <dr@openoffice.org>  [13a472433646a08a046ddb39fa7ee42467eb2d23]

#106213# empty escher stream broken


2002-12-12  Daniel Rentz  <dr@openoffice.org>  [29146be60c02f34e1b07e58d23ec699c8177c855]

#106213# empty escher stream broken


2002-12-11  Niklas Nebel  <nn@openoffice.org>  [a5ffc8b28ecd80d7aa29b9ee7edf57bca1008106]

#103556# no bitmap and metafile format if there are only controls


2002-12-11  Niklas Nebel  <nn@openoffice.org>  [d8449d9dd346023a2c0ffaebdc8a6764cac67c6d]

#105815# don't set default text for text objects and callouts, start edit mode instead


2002-12-10  Niklas Nebel  <nn@openoffice.org>  [ab3cb2055575148942f35636343be171350912eb]

#105984# use text color from configuration instead of StyleSettings


2002-12-10  John Marmion  <jmarmion@openoffice.org>  [067bae934edf8aca2296d7ec270244d0d64950be]

#i9835# preserve excel window protected state


2002-12-09  Daniel Rentz  <dr@openoffice.org>  [a1ad92bb30716d59f6f3b24162799114bd3507df]

#105918# misiing include


2002-12-09  Kurt Zenker  <kz@openoffice.org>  [1992108fe2176d6ebe606950e6a4d021ac7db219]

Merge SRX644: 09.12.02 - 12:38:39


2002-12-09  Kurt Zenker  <kz@openoffice.org>  [f4fa33376f3af089726f285121c67bf6563f396f]

Merge SRX644: 09.12.02 - 10:59:42


2002-12-09  Kurt Zenker  <kz@openoffice.org>  [a9001c1ec016f2ce509167c4df7cea5906f997bd]

Merge SRX644: 09.12.02 - 10:58:42


2002-12-09  Kurt Zenker  <kz@openoffice.org>  [3bd0249f30ef56291bddf11ba1a8c38d353ccc11]

Merge SRX644: 09.12.02 - 10:57:40


2002-12-09  Kurt Zenker  <kz@openoffice.org>  [3e6375c845672618a16c842a7afd39adba2d348d]

Merge SRX644: 09.12.02 - 10:50:35


2002-12-09  Kurt Zenker  <kz@openoffice.org>  [6b22bdab78fcecfb5aef2eee7fe3b27773ce8c10]

Merge SRX644: 09.12.02 - 10:50:23


2002-12-08  Eike Rathke  <er@openoffice.org>  [9c6a7def19838a1d192cadae44f77c6775d08d5f]

#i3552# GetStVarParams/GetDBStVarParams: use ApproxSub to calc final variance


2002-12-06  Eike Rathke  <er@openoffice.org>  [7260db1a96e51c6c0e561ad36dd2b86b6cc7f877]

#100211# #105918# replace sprintf/strcpy/strcat where appropriate (possible buffer overflows), or comment as checked


2002-12-06  Eike Rathke  <er@openoffice.org>  [8884a636e965972160ec41db3abe3f8dd75d23e0]

#100211# #105918# replace sprintf/strcpy/strcat where appropriate (possible buffer overflows), or comment as checked


2002-12-06  Eike Rathke  <er@openoffice.org>  [516ab43285ad07b208b325b005115a63e3606e3f]

#100211# #105918# replace sprintf/strcpy/strcat where appropriate (possible buufer overflows), or comment as checked


2002-12-06  Daniel Rentz  <dr@openoffice.org>  [3f0946d33807e3f1a6f56dafd9329cb87af4c446]

code review and documentation 2


2002-12-06  Daniel Rentz  <dr@openoffice.org>  [09d5e1a095174ae3223839122a126d55b07a8ba9]

new number format export


2002-12-06  John Marmion  <jmarmion@openoffice.org>  [8fa04842d67b1a229ba6f3d4afa6b298f9e3c2ba]

#i8426# add document protection and extend sheet protection for import/export


2002-12-06  John Marmion  <jmarmion@openoffice.org>  [25e19c348ae1da4fca9b59b9414706e86cfc2842]

#i8426# add document protection and extend sheet protection


2002-12-06  Daniel Rentz  <dr@openoffice.org>  [2168bc47d8ef7137cc958a8deee84c8253d4d98f]

#106003# long texts in checkboxes don't fit


2002-12-06  Daniel Rentz  <dr@openoffice.org>  [dfcf018883eb4ece9c0c7fa01763ec754dae04af]

#106064# crop ranges to 32000 rows


2002-12-06  Daniel Rentz  <dr@openoffice.org>  [481abe08071ee7ff59e2984eea2ca1afe4ed8001]

#106003# german changes


2002-12-06  Sascha Ballach  <sab@openoffice.org>  [1f8314db81102990f7069416a4a5c9aa64c4730e]

#i8955#; open group column after closing header column


2002-12-05  Eike Rathke  <er@openoffice.org>  [4570ba2d0fe42f2c37a1f6ee4022229a83d91ee4]

#98454# performance: cache style sheet usage


2002-12-05  Eike Rathke  <er@openoffice.org>  [f6e6ebe1d3a131699c89be12e87da67f26177a9c]

#98454# performance: cache style sheet usage


2002-12-05  Eike Rathke  <er@openoffice.org>  [bee9ca46c232eed7b673f02e077aeee3b6c20685]

#98454# performance: cache style sheet usage


2002-12-05  Niklas Nebel  <nn@openoffice.org>  [669f3046d48c864a0f83ed914d31e1568679e3dd]

#105851# PasteFile: insert URL button if OLE object can't be created


2002-12-05  Kurt Zenker  <kz@openoffice.org>  [7bdc83804726903a203c6594960c8a0e7cf73c0f]

Merge SRX644: 05.12.02 - 11:25:42


2002-12-05  Kurt Zenker  <kz@openoffice.org>  [35774398d6a8400d78a7d8b6903ac0a42b263bfb]

Merge SRX644: 05.12.02 - 11:24:29


2002-12-05  Kurt Zenker  <kz@openoffice.org>  [0d5f06a9be16a81e8a3f8137a95a9301c88137cc]

Merge SRX644: 05.12.02 - 11:23:25


2002-12-05  Kurt Zenker  <kz@openoffice.org>  [79603d5ef6069e501e55a1465d141882f3c4c2e8]

Merge SRX644: 05.12.02 - 11:21:35


2002-12-05  Kurt Zenker  <kz@openoffice.org>  [649202a2954b8ed4442fd592b0bbe8ba13d546a1]

Merge SRX644: 12/05/02 - 11:21:05


2002-12-04  Niklas Nebel  <nn@openoffice.org>  [3e1821e05cd2b53f4aa141cc5a31239832ba6a9a]

#105733# SvtAccessibilityOptions::GetIsForBorders no longer used


2002-12-04  Sascha Ballach  <sab@openoffice.org>  [65e80e49bcaf680d7189b5d01362f0b9960ccb77]

#105966#; remove getAccessibleKeyBinding() (must change)


2002-12-04  Daniel Rentz  <dr@openoffice.org>  [67a31169d6655ec558b8d1d7ff8b36a37ea43784]

#105939# import relative URLs


2002-12-04  Sascha Ballach  <sab@openoffice.org>  [2cf3be5bda1b7b302d652d359ccd2152206e49e8]

#92119#; FillItemSet only once for each area


2002-12-04  Niklas Nebel  <nn@openoffice.org>  [14fa67cec5f4ddbe826628ef3fd558562cfbcb48]

#105888# paste drawing format: count group as one object


2002-12-03  Niklas Nebel  <nn@openoffice.org>  [c6babca6b615b38602aa8d364040864c56736ff8]

#105887# new help ID for edit in SvxNameDialog for renaming drawing objects


2002-12-02  Niklas Nebel  <nn@openoffice.org>  [fa716a0571bc784c3c67f5b0564eb4638f03dca2]

#105780# Sort: don't call ScDocument::Sort with an empty SortParam


2002-12-02  Ocke Janssen  <oj@openoffice.org>  [4576e869c58ebf0a8377b4cdc3235265acd6b7d1]

#105638# set new property for FormButton


2002-12-02  Sascha Ballach  <sab@openoffice.org>  [105f4ebcbd2a03f7f0c74a659e045609796be47b]

#96469#; call SvXMLImport::SetStatisticAttributes (base method)


2002-12-02  Daniel Rentz  <dr@openoffice.org>  [0ab6e2d0c68e221088939901e9f3d7f0be819aa1]

#105814# links-nach-rechts -> links nach rechts


2002-12-02  Sascha Ballach  <sab@openoffice.org>  [a468b4391e12b710e0d08e9160ec479eab852032]

#105575#; update links only on the first creation of TabViewShell


2002-11-29  Sascha Ballach  <sab@openoffice.org>  [e6b15288f328887fb673105586a95b89f66ef8dd]

#105764#; switch into InputMode in SetTextString


2002-11-28  Eike Rathke  <er@openoffice.org>  [5cf23738069df846f5d4c79c605f9cdac1fccce9]

#70672# GetDBParams: don't call ScDocument::GetString() from within the interpreter, use ScInterpreter::GetCellString() instead


2002-11-28  Eike Rathke  <er@openoffice.org>  [09678b23e43cf27fc6cbe5f99095c80b51298f01]

#105150# ScRangeData ctors with ScAddress instead of single values


2002-11-28  Eike Rathke  <er@openoffice.org>  [19ffd97b11e3a7024f5afc605c3c4cbf92c4866c]

#105150# ShrfmlaBuffer::Store: create ScRangeData with correct position and leave out GuessPosition()


2002-11-28  Niklas Nebel  <nn@openoffice.org>  [42fc582414c61383979e3a30e4d16a34928ed031]

#104949# new accelerator slot to select array formula


2002-11-28  Niklas Nebel  <nn@openoffice.org>  [703e7e7598837f9b2ffdfd6388cc5b303415ff36]

#105703# adjust possible drag actions for non-editable source range


2002-11-28  Niklas Nebel  <nn@openoffice.org>  [4f679302243bc3c4a283d934fdd33a81ae8cc368]

#105703# call DeleteContents with bApi=TRUE


2002-11-27  Eike Rathke  <er@openoffice.org>  [7449234e19210fd698842529a57738ddb4ee3ce0]

#90279# performance: DoSubTotals: collect formula cell positions and put cells after InsertRow calls to not have them inspected for updates again


2002-11-27  Eike Rathke  <er@openoffice.org>  [d568480de1d43530a603ea76754b067acb1fb67d]

#90279# performance: InsertRow/DeleteRow/InsertCol/DeleteCol: use memmove for POD arrays


2002-11-27  Eike Rathke  <er@openoffice.org>  [57543265c9f61b064b31f46fa8ce08433c684e3e]

#90279# performance: AreaBroadcast methods


2002-11-27  Eike Rathke  <er@openoffice.org>  [141d59535a3f518b098b02265b5f9c334c355bad]

#90279# performance: use changed Broadcast() methods; DeleteRow: AreaBroadcast() and AreaBroadcastInRange()


2002-11-27  Eike Rathke  <er@openoffice.org>  [01fe600801b1a75aa120604f67d05588376fc7fa]

#90279# performance: use changed Broadcast() methods; InsertRow: AreaBroadcast() and AreaBroadcastInRange()


2002-11-27  Eike Rathke  <er@openoffice.org>  [1117beb83a9d7fb5ad6473aa48233c0e8053b185]

#90279# performance: AreaBroadcast() methods take one hint instead of multiple arguments; add AreaBroadcastInRange()


2002-11-27  Eike Rathke  <er@openoffice.org>  [d547e1b58975b091b3d767b35559679e305e5140]

#90279# performance: AreaBroadcast() methods take one hint instead of multiple arguments; add AreaBroadcastInRange()


2002-11-27  Eike Rathke  <er@openoffice.org>  [20cf7857d16e91dbbc7c9561395d595955ee7c5a]

#90279# performance: AreaBroadcast methods


2002-11-27  Eike Rathke  <er@openoffice.org>  [9964b2752bdcb99cd096c17f20f2a5a76a4819d1]

#90279# performance: methods to modify hint instead of creating new hints every time


2002-11-27  Niklas Nebel  <nn@openoffice.org>  [f37addbe6d7e245b1fcb2bca774d401f8239633f]

#105585# implement XText methods to handle ScCellFieldObj


2002-11-27  Niklas Nebel  <nn@openoffice.org>  [ab531434f961387d740079a8afe5c495f9ce8023]

#105585# text cursor subclass for text in drawing objects


2002-11-27  Sascha Ballach  <sab@openoffice.org>  [2c7ecd1c222b46347bab8861f4ec9ab91a1d7f9d]

#105394#; reload imported data depending on UpdateDocMode


2002-11-27  Sascha Ballach  <sab@openoffice.org>  [cbbfdaa36c6ba55a84584167d2e00730c5927642]

#105687#; remove this file, because it is wrong, the objects name is ScPageObj


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [08e59563728b47591ce93a3a84062415e1625fc1]

Merge SRX644: 27.11.02 - 18:01:28


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [3eb95e89057399c66df4d27919f79a3443f58603]

Merge SRX644: 27.11.02 - 18:00:29


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [99128eecde5148e077cfb4201c3030e439b679ad]

Merge SRX644: 27.11.02 - 17:59:25


2002-11-27  Sascha Ballach  <sab@openoffice.org>  [2b22e6de1e127a12cbe9283700f9ed4e628357f3]

#104547#; only try to access the viewdata if there are some


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [ff3f6d004ed5e339429871cae1bc73b746b1637b]

Merge SRX644: 27.11.02 - 17:56:35


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [bbe3d2b85b2ca76b6edb63cbd58cc68411055ac3]

Merge SRX644: 27.11.02 - 17:53:18


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [d56b0418be503e5c9e79e3f5d428e9e7fec14e6e]

Merge SRX644: 27.11.02 - 17:49:20


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [a1cf8c0446aa14886b9b73c07e3da3623fb3ee6f]

Merge SRX644: 27.11.02 - 17:48:19


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [ea126eefd081ca096ee0f5c7f5d4185a94a73601]

Merge SRX644: 27.11.02 - 17:47:19


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [dfd72e1eec05827c8c36952a23404e0f8f68d46b]

Merge SRX644: 27.11.02 - 17:38:53


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [6ed86e706681221c29d1be75816598d22fca9fe2]

Merge SRX644: 27.11.02 - 17:37:46


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [5ee92e06b0c1b41d7040667dafb6e02d6062300e]

Merge SRX644: 27.11.02 - 17:38:24


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [756eb8f5e4960d09a1a29e93146fa817d582cbee]

Merge SRX644: 27.11.02 - 17:37:14


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [04a6018d77f4532556623a5705bacbc374a03bd9]

Merge SRX644: 27.11.02 - 17:34:31


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [ae8265485eab924fede4399067ec4cf870667a1e]

Merge SRX644: 27.11.02 - 17:34:21


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [87c06ed0aa35c1ca762aab7bdbae23da6ceafe63]

Merge SRX644: 27.11.02 - 17:34:16


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [6f9f244eadcab014f40c0387ae4bd30678c0e4e6]

Merge SRX644: 27.11.02 - 17:33:16


2002-11-27  Rüdiger Timm  <rt@openoffice.org>  [169e3e1e61ec4da7aa16d20acc77006c6029880e]

Merge SRX644: 27.11.02 - 17:32:33


2002-11-27  Vladimir Glazounov  <vg@openoffice.org>  [4d26f96c61237bee98be0fe512500b322cefb82b]

Merge SRX644: 27.11.02 - 17:32:02


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [d8e309ba5493d46bcefd4d820917b9d0a91b9cb3]

Merge SRX644: 27.11.02 - 17:31:12


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [0497f76c65d0e1690126eda2f63b165c061bb9eb]

Merge SRX644: 11/27/02 - 17:30:51


2002-11-27  Rüdiger Timm  <rt@openoffice.org>  [a2ae5de0dd4bcbe5354a26d3729700cca6f2c144]

Merge SRX644: 27.11.02 - 17:30:52


2002-11-27  Kurt Zenker  <kz@openoffice.org>  [55a6566e3a80feaf0ba3545e6ddeaf106d987627]

Merge SRX644: 27.11.02 - 17:29:26


2002-11-27  Daniel Rentz  <dr@openoffice.org>  [10c989085bdf005a241e032f5a164dfd30d20e1c]

#105686# do not paste scenarios from clipboard


2002-11-27  Daniel Rentz  <dr@openoffice.org>  [198a8be4c62c61297dd09462f0071a7a38499e50]

#105686# check pointers: pLinkmanager, pChartListenerCollection


2002-11-27  Sascha Ballach  <sab@openoffice.org>  [ccba96544e906e7ed34d8aa53bc39e0112309047]

#105657#; correct the supported service name


2002-11-27  Sascha Ballach  <sab@openoffice.org>  [e39e8741b29d0f778e1a0a1b8b35a94f50bf8330]

#103706#; add strings for range overflow while loading xml files (to many rows, columns or sheets)


2002-11-26  Sascha Ballach  <sab@openoffice.org>  [27e3dae599b470c37c4da410abd0488f6f911e6d]

#69391#; erase leading and trailing chars


2002-11-26  Niklas Nebel  <nn@openoffice.org>  [10c278f937bb6e2d17b910c8c3f0e5927aaaa972]

#105582# ScEditBox: set the HelpId for the MultiLineEdit, not the control


2002-11-26  John Marmion  <jmarmion@openoffice.org>  [f20bd67c88b9863c2916db3d7ee4e1466107692e]

#i8779# fix comments/notes print options.


2002-11-26  Daniel Rentz  <dr@openoffice.org>  [48b477d9b9479affa006158e43f21474e9c575e1]

#105412# new popup menu entry 'Open Hyperlink'


2002-11-26  Sascha Ballach  <sab@openoffice.org>  [434d0046d6c4637a5cd45af99a498881d5b86c26]

#69391#; replace all blanks and not only the first


2002-11-26  Sascha Ballach  <sab@openoffice.org>  [aeec447dc07f98b12e3c0219f381fcd9e6a1e951]

#105276#; set last row/column so default styles are collected


2002-11-25  Niklas Nebel  <nn@openoffice.org>  [a1b2bbd48de70856bce8f2a492684b88b1bf68f8]

#94562# StopRefMode: call AlignToCursor after SelectionEngine reset


2002-11-25  Eike Rathke  <er@openoffice.org>  [52d393b44b5875ff54b94054ecf825e2752d9bd1]

#105549# AsciiSave: if necessary escape string delimiter on encoded string, or even on re-decoded string for state/context sensitive encodings


2002-11-25  Kurt Zenker  <kz@openoffice.org>  [b75abe9a3a3c48637648390ba6922058d0317002]

Merge SRX644: 25.11.02 - 16:05:22


2002-11-22  Niklas Nebel  <nn@openoffice.org>  [c57ff2b1d8dfe805f421e617ebd21a6da70a5666]

#105359# enable clipping for fields in wrapped cells


2002-11-21  Niklas Nebel  <nn@openoffice.org>  [95b6f9ecf386ee4ecc27ab909bd86b6321388bc0]

#105433# get file name for header/footer with DECODE_UNAMBIGUOUS


2002-11-21  Eike Rathke  <er@openoffice.org>  [8d44cc0cf116009bff3fbf73f0b7a6e25d74dd3b]

#i2800# #99677# NextSymbol: broke absolute referenced single quoted sheet names


2002-11-21  Sascha Ballach  <sab@openoffice.org>  [fedc5be03d754414c62f9a917f446176a850b979]

#105379#; service is in table not in sheet


2002-11-21  Sascha Ballach  <sab@openoffice.org>  [ffe6ad9cf7596933427f3fc52c6ef9963c41ff92]

#104547#; create own ViewData only for OLE objects


2002-11-21  Sascha Ballach  <sab@openoffice.org>  [23157b73943080b106db79527fa4836194a918f1]

#105464#; use the offset to get the child from TextHelper


2002-11-21  Eike Rathke  <er@openoffice.org>  [4bdb5ec41ee9beae0e284ed50e3fbaa15cb5316a]

#i2800# #99677# performance: ScUnoAddInCollection::FindFunction MUST be called with an upper case name


2002-11-21  Eike Rathke  <er@openoffice.org>  [ac2ef0ad1e8094ef80dbd542dfbe95c7db2e382d]

#i2800# #99677# performance: try to parse low ASCII identifiers before calling i18n


2002-11-21  Eike Rathke  <er@openoffice.org>  [51a82bd6234cc1ad83154068ccde31ebf2034a69]

#i2800# #99677# performance: use memset for POD arrays


2002-11-21  Niklas Nebel  <nn@openoffice.org>  [9c3a0fb302b9ee58b1b13184968b88a9fb2cc396]

#105354# don't call InputChanged from ModifyHdl if called from InputHandler method


2002-11-21  Eike Rathke  <er@openoffice.org>  [b808e6a22ece36e58d955441ed5e53451e295db9]

#i2800# #99677# ScOpCodeList: OpCode in non-pro version is enum, need cast from USHORT


2002-11-21  Daniel Rentz  <dr@openoffice.org>  [79551d853554c70ca97c76fe48d56b495e9e4ab5]

code review and documentation


2002-11-21  Daniel Rentz  <dr@openoffice.org>  [eeef7fa0d68a1d4cdb285980afc1a59d201d272f]

code review and documentation


2002-11-20  Niklas Nebel  <nn@openoffice.org>  [4a8f80364b957be14effe06a0b82b3752de0bae9]

#83422# different error messages for protected cells and part of array formula


2002-11-20  Daniel Rentz  <dr@openoffice.org>  [43b6bab70c751ee0a6abbcfd233ed2263232977a]

#105351# HIDs for DP layout dlg


2002-11-19  Eike Rathke  <er@openoffice.org>  [d7074e9ccabec02ce067b8958c0460f8a794d05a]

#i2800# #99677# performance: use hash maps


2002-11-19  Sascha Ballach  <sab@openoffice.org>  [7d0a77dccd5fb63670dfd7fec23b2bbde865b9ef]

#91264#; use subtotal instead of sum depending on the content while using the sum button


2002-11-19  Daniel Rentz  <dr@openoffice.org>  [fca22d16f9593fb2c2655d8da9c850b5aa5eee00]

#103144# export formatted header/footer


2002-11-18  Niklas Nebel  <nn@openoffice.org>  [2ea22010e13518ca7a1449cd615252c876a63b3a]

#102745# update input line from ModifyHdl for changes from EditEngine itself


2002-11-15  Daniel Rentz  <dr@openoffice.org>  [13f0e7e09fa53d91e7bf33e75c19dc2a31361fbd]

header/footer, ole


2002-11-15  Daniel Rentz  <dr@openoffice.org>  [135bf97c9fd0a98e6593f48900194fb7647bb1e9]

#103144# formatted header/footer


2002-11-15  Sascha Ballach  <sab@openoffice.org>  [e4974e24f369894514d7d6faf82ae96d5e7a8b5b]

#105061#; rename CHILDREN_TRANSIENT to MANAGES_DESCENDANT


2002-11-13  Sascha Ballach  <sab@openoffice.org>  [46e2f3ab760e4661bb533f229738a9039e428966]

#94733#; don't show Functionlist in Writer/Draw/Impress with Calc Ole if Functionlist is enabled in Calc


2002-11-13  Daniel Rentz  <dr@openoffice.org>  [8d887d8207dabc66045376ac1a5a6140d0b6fee3]

#98786# base path handling


2002-11-13  Sascha Ballach  <sab@openoffice.org>  [58971267459b8d6c1f0933f4a752c8fa6cac8fd9]

#103934#; test for InputHandler


2002-11-13  Sascha Ballach  <sab@openoffice.org>  [f7a3a1bc623751fc76e29e190f9abac62ac4c8af]

#103934#; don't show the text in editline and cell if cell is in editmode


2002-11-13  Sascha Ballach  <sab@openoffice.org>  [a0f3900cbfe520a1abfd269d13b941f602350e5d]

#103663#; the service is in sheet and not in table


2002-11-12  Eike Rathke  <er@openoffice.org>  [aa41a56baac9244bad789dd95e4b7c1df22ef381]

#93048# add: GetScriptedWhichID


2002-11-12  Eike Rathke  <er@openoffice.org>  [cc9a7513f92c43b995c9b9ea90c327f1d1f2a732]

#93048# LATIN/CJK/CTL script type font attributes


2002-11-12  Niklas Nebel  <nn@openoffice.org>  [4c9bb81953f545cf2161fa2ef9c8b3f97ad3761f]

#104881# new format menu for edit shell with character dialog


2002-11-12  Niklas Nebel  <nn@openoffice.org>  [27b87c0c4b5340188a6bbf82f14c63417df108e3]

#104494# use protection hidden flags also from outside the shown area


2002-11-12  Sascha Ballach  <sab@openoffice.org>  [19ca95c6b2415efe128a2631afd73ed05da69485]

#104794#; remember the UpdateDocMode in all loading methods and not only in LoadXML


2002-11-11  Eike Rathke  <er@openoffice.org>  [dbd3fbffee84d1a90174351442ff05766a107635]

#75688# write widths and heights only in first column/row


2002-11-11  Sascha Ballach  <sab@openoffice.org>  [3832e1c3a19b26f8749f15ffd8805e3eb43c812e]

#91929#; test whether SvInPlaceObject is


2002-11-11  Daniel Rentz  <dr@openoffice.org>  [0b0b06d6bfd1dc90a71a509fad9c6e311a536bcb]

#104922# cell formatting moves to other rows


2002-11-11  Sascha Ballach  <sab@openoffice.org>  [31350c6606dea42e1556f8d349b30cca3a2e8693]

#91929#; disable original size entry if not possible


2002-11-11  Sascha Ballach  <sab@openoffice.org>  [ebc1302f40a0e592d003df0930f8c54ed8375a4a]

#102565#; add UpdateFromTemplate property


2002-11-11  Sascha Ballach  <sab@openoffice.org>  [9a6eac9ca7eee9b358135583fa8d4e5154ee3196]

#104893#; return the displayed text


2002-11-11  Sascha Ballach  <sab@openoffice.org>  [d80fd21122164bea05bab073312e3f4e73d96342]

#104547#; set visible sheet in endDocument


2002-11-11  Sascha Ballach  <sab@openoffice.org>  [f3148af9d6d8ff5b6eaf63d978fd34cdf6b9ea74]

#104547#; return own Viewdata if SfxBaseModel does not return anything


2002-11-08  Daniel Rentz  <dr@openoffice.org>  [7a50b66574116b1779ce54213fa2297a7f0dd06c]

#104865# try to match default palette


2002-11-07  Niklas Nebel  <nn@openoffice.org>  [305306f44aeeab7752b4a34c00d8b71436db26ea]

#104181# remove ATTR_MERGE from inserted column


2002-11-07  Daniel Rentz  <dr@openoffice.org>  [ee4f71301bd13d8c091a5e2ec62306fedab58a27]

#104836# problems with BIFF4 macro sheets


2002-11-06  Daniel Rentz  <dr@openoffice.org>  [c15899f2f21ba79ef42932d6e3e37be439685ad5]

complete table of function names


2002-11-06  Niklas Nebel  <nn@openoffice.org>  [de66cce5e18566a3fdc802f528283ae3c94fdcb1]

#104004# use GraphicObject::DrawTiled instead of own loop for background graphics


2002-11-06  Eike Rathke  <er@openoffice.org>  [d7b8a2286b2b2e322227df9ad1e853d054a1b375]

#98112# ExcFormat: GetMappedFormatstring for NNN too


2002-11-06  Niklas Nebel  <nn@openoffice.org>  [bfd680397142450365e49a16e2305ec40ff74b84]

#90910# don't try to get current view in ctor


2002-11-06  Niklas Nebel  <nn@openoffice.org>  [0eb7ccc466db746cb6cb497aa9ee22c1b7e33538]

#90910# SetCursorAtCell: don't move ref cursor if no input is possible


2002-11-06  Sascha Ballach  <sab@openoffice.org>  [6a886cb2d7e493090914732819b959c328c7f193]

#69391#; replace all blanks in all arguments with _


2002-11-05  Niklas Nebel  <nn@openoffice.org>  [458974c70bd5a8b14938e7ae33827f4756068ad2]

#87655# set clip region before DrawPagePreview


2002-11-05  Daniel Rentz  <dr@openoffice.org>  [8d37ea96a65e9d91e2c40e829fa0802d0d0b40f6]

#101810# always check docshell pointer


2002-11-05  Daniel Rentz  <dr@openoffice.org>  [686d556d98c962d6599b4c263346fe1ee4d82c23]

#100764# 'links-nach-rechts' -> 'links nach rechts'


2002-11-05  Sascha Ballach  <sab@openoffice.org>  [5f3339ffad1b6752c775f70f45026654bfdaab47]

#104520#; add getForeground and getBackground


2002-11-05  Sascha Ballach  <sab@openoffice.org>  [2378414e463e98799356ae8f868e1d0cf7878c73]

#104520#; add GetType for Accessibility


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [d4f41ffb8f5cca8a7a4faed63364d9f20d8451dd]

Merge SRX644: 04.11.02 - 19:14:34


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [4062a6d7c27c197f166fd502bf89415674c426d9]

Merge SRX644: 04.11.02 - 19:13:09


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [408481cf8b5e1fcd0fd538a96b4347c1725cef1e]

Merge SRX644: 04.11.02 - 19:11:31


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [59ce469e42430a2602f3c3b2268b328322d5fb99]

Merge SRX644: 04.11.02 - 19:07:20


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [79d9a1a9582ad30e647fdb841e41baf5b21011fb]

Merge SRX644: 04.11.02 - 18:58:41


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [3ea88a28f8df91eb5f721aab4849036b3d8851b0]

Merge SRX644: 04.11.02 - 18:56:48


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [27b8e6a47d221aeea3c6b2cff60a58463058b1cd]

Merge SRX644: 04.11.02 - 18:37:31


2002-11-04  Vladimir Glazounov  <vg@openoffice.org>  [6558c28d9aa835186507bd8ef25fcd38a48e599f]

Merge SRX644: 04.11.02 - 18:29:15


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [3dae384fcc138a433e0b4126b48fc31071216f3e]

Merge SRX644: 04.11.02 - 18:25:16


2002-11-04  Vladimir Glazounov  <vg@openoffice.org>  [9260a34d80845bcb72df2dc2859914d725616882]

Merge SRX644: 04.11.02 - 18:22:37


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [c104a52eb084a2e867eff4477724e0c01a7d553a]

Merge SRX644: 04.11.02 - 18:21:20


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [cb229dcb1c182d679aedab3df052cb932083c048]

Merge SRX644: 04.11.02 - 18:19:50


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [b4b2f54f01343fea3ba41ff68a08de969e7e8d49]

Merge SRX644: 04.11.02 - 18:18:06


2002-11-04  Kurt Zenker  <kz@openoffice.org>  [de140eae1e9aef0fb827d2f1acb76f8773859407]

Merge SRX644: 11/04/02 - 18:17:49


2002-11-04  Daniel Rentz  <dr@openoffice.org>  [52cdf7047c17e49be844654848c87f89f2ed972f]

#101810# clipboard support for BIFF8


2002-11-04  Niklas Nebel  <nn@openoffice.org>  [592bd86397790a8c1934d9cc082e98a89cebe725]

#75362# Detective AutoUpdate: if ADDERROR is in list, update on any cell change


2002-11-04  Niklas Nebel  <nn@openoffice.org>  [1329c69f593665681a3b1cb88ef1fbb108dc58de]

#75362# additional flag to quickly check if 'Add Error' is in the list


2002-11-01  Eike Rathke  <er@openoffice.org>  [f67a2a8ef8e134c3089b91a93ced5f44dbebe143]

#101100# NextNewToken: escape from #REF tar pits


2002-11-01  Sascha Ballach  <sab@openoffice.org>  [8094ec076f1c565006c1fff2b712d65f62763fef]

#103122#; handle connector shapes which are only connected in one point


2002-10-31  Eike Rathke  <er@openoffice.org>  [96211047ef3e01dbab6c6124394ebf0228a61fec]

#86255# for broken numeric records write #ERR: data to cell


2002-10-31  Eike Rathke  <er@openoffice.org>  [632c7566a8523160279d73b8f45fd9323e5e0188]

#86255# ScExportDif: write ERROR if formula cell has error, instead of broken record


2002-10-31  Eike Rathke  <er@openoffice.org>  [5ac6d90f551b8428e87d292525de22807686f7f6]

#86255# GetNextDataSet: always read second line for numeric data to be able to resyncronize after syntax error


2002-10-31  Sascha Ballach  <sab@openoffice.org>  [9e61a00472a3cc7dd25bcb5e6f3def53b1e97692]

#95881#; add icons for hyphenation menu entry


2002-10-31  Sascha Ballach  <sab@openoffice.org>  [62ca2d2613a96c6596e5411cd944f4dfe95a5af8]

#92196#; use ScMarkData only for one sheet


2002-10-30  Niklas Nebel  <nn@openoffice.org>  [d9e09c0c70302a19ee48d417605c3f35ab49f8db]

#86260# StopMarking: don't call SelectionEngine::Reset


2002-10-30  Niklas Nebel  <nn@openoffice.org>  [afbcdfb481ec61795d53223fc01fa252b5afb51b]

#103703# ViewChanged: call SetLogicRect only if the size in pixels changed


2002-10-30  Eike Rathke  <er@openoffice.org>  [74c1f4ad89bb4103e7d1520fa1e563d4648cff17]

#98112# ~ExcFormat: delete pKeywordTable


2002-10-30  Niklas Nebel  <nn@openoffice.org>  [8f74d8b2ba02c3c1dce4d287fccac7c46ef0a610]

#95593# SetEditEngine: use same paper width for line breaks as in output


2002-10-30  Niklas Nebel  <nn@openoffice.org>  [44e60c506f17676c3a563f0e92fb4e3284d8dd43]

#95593# GetNeededSize: use same paper width for line breaks as in output


2002-10-29  Eike Rathke  <er@openoffice.org>  [680861f8686d3d078df52485f9f7ebbbeaecf0bb]

#98112# ExcFormat with NfKeywordTable and GetMappedFormatstring


2002-10-29  Eike Rathke  <er@openoffice.org>  [846b91cc110ad005a1105cd759d1ff27203d1c91]

#98112# ExcFormat with NfKeywordTable


2002-10-29  Daniel Rentz  <dr@openoffice.org>  [9a44da66ca027401ca738b66687f389fefcea0de]

#100764# German: 'Spalten-/Zeilenkoepfe'->'...beschriftungen'


2002-10-28  Niklas Nebel  <nn@openoffice.org>  [08d6c4c20f152e0dfc32556013e8af2e721406b2]

#91781# don't restore filter settings from static variable in ctor/ReInit


2002-10-28  Frank Schönheit  <fs@openoffice.org>  [ebf2582c4fa8c67b298024004871d93ffd59abac]

#104402# _ExportAutoStyles: export the auto styles for the forms, too


2002-10-28  Sascha Ballach  <sab@openoffice.org>  [8ccd847b1abbab5d18eed5fe2f9ba89607d4a9bb]

#104480#; correct the parentheses


2002-10-28  Sascha Ballach  <sab@openoffice.org>  [b9407c07b1e193fc1e42cbc4dd0e59733fc57e79]

#104520#; dummy implementation of must change


2002-10-28  Sascha Ballach  <sab@openoffice.org>  [c1700424b2b90fc7a599df0047ab6269414b598d]

#104374#; use another variable name to increment the index


2002-10-25  Niklas Nebel  <nn@openoffice.org>  [d7ec2572d1c29c80bca038aa6b722a01cb16644a]

#98195# update link name for dialog, find link by start position


2002-10-24  Niklas Nebel  <nn@openoffice.org>  [a6654b0decc5474830146a93e4d320b62fa331f9]

#90956# in InputWin ctor don't use ref InputHandler, IsVisible from ChildWindow


2002-10-24  Daniel Rentz  <dr@openoffice.org>  [909ee3abe000d2027a594cda6832c8fa154cef15]

#92943# close preview in popup


2002-10-23  Daniel Rentz  <dr@openoffice.org>  [74049c367f4e7999e382a16f92a2eef09641f37f]

#101952# HID for cell overwrite warning box


2002-10-23  Daniel Rentz  <dr@openoffice.org>  [7c5842e99487b76755babed819ab25a28f953ec6]

#104430# paper size conversion


2002-10-22  Sascha Ballach  <sab@openoffice.org>  [c7becc31f1d574f03ed0b7b9407d920ffd432a45]

#102710#; create EditView if wanted


2002-10-22  Sascha Ballach  <sab@openoffice.org>  [b27d5a9209f7f99b7ae0e3c9abc009d441d115bb]

#102710#; get notification if something in the EditEngine is changed


2002-10-22  Niklas Nebel  <nn@openoffice.org>  [2b5b64d9890c2359c0de6f13aa96532084a7614a]

#104403# implementation of XCellRangeFormula


2002-10-22  Daniel Rentz  <dr@openoffice.org>  [0fc4c1dc2d2a1f3759aa14a514ca303e2941de48]

#100207# new dialog title


2002-10-22  Daniel Rentz  <dr@openoffice.org>  [c6015e94f547fb7140c4f6923b86ee55775b0714]

#104390# unused function


2002-10-22  Daniel Rentz  <dr@openoffice.org>  [5580b0f9e5f50a7007e00a8abd66a9e9d6bb0d35]

#104390# uninit. member


2002-10-21  Daniel Rentz  <dr@openoffice.org>  [c9d3b1eadfecd0e8c3c75fadc35d366442bbcbc4]

#78660# new mouse pointer for removing fields


2002-10-21  Sascha Ballach  <sab@openoffice.org>  [7f4db20b0406b4a5894a211320645276457c2401]

#100469#; repaint after setting AutoFilter


2002-10-21  Sascha Ballach  <sab@openoffice.org>  [b32457533f2ea58568bf37c810a8f0be875387c7]

#97125#; it should be possible to set MatrixFormulas always in English


2002-10-18  Niklas Nebel  <nn@openoffice.org>  [22ca14b43dd3af222c8a0347f8514deb1da96d2b]

#103823# FreezeSplitters: call AlignToCursor to update active part


2002-10-18  Niklas Nebel  <nn@openoffice.org>  [de7439d20516dae2baf1e4911f94dcce43d712bc]

#103823# MouseButtonDown: grab focus for editing formula only in active window


2002-10-18  Sascha Ballach  <sab@openoffice.org>  [d009c9e8e274bf7c2c0a7658ba8dce2855eaa180]

#103934#; call of UpdateInputHandler after ESC key not needed, because the new content is set in ScDocFunc::PutCell


2002-10-18  Sascha Ballach  <sab@openoffice.org>  [6a3c562b7e3b7052ca26dbc08e5a384925f39972]

#103934#; notify editline and cell in edit mode in PutCell if it is a API call


2002-10-18  Sascha Ballach  <sab@openoffice.org>  [40f1be9d7fea05b2bb679e8ba93a3c1f64ed3e67]

#103934#; give possibility to decide whether to end edit mode or not while NotifyChange


2002-10-18  Sascha Ballach  <sab@openoffice.org>  [4b5c7db9126adac9d305f989f4a4dbe31526c6dc]

#103934#; call UpdateInputHandler after ESC Key


2002-10-18  Sascha Ballach  <sab@openoffice.org>  [02ebb4a7f48ffdc143a4472b4c8835476022c7d5]

#103934#; give possibility to decide whether to end edit mode or not while UpdateInputHandler


2002-10-17  Sascha Ballach  <sab@openoffice.org>  [f91017165fb410f5b3c502dbfcf1c46b1bcb1fb3]

#104301#; don't overwrite a text formatted value cell


2002-10-17  Sascha Ballach  <sab@openoffice.org>  [cc606f562e1c64fb3e3ea6444b92da53e0e5b1f0]

#100442#; the context menu of a drawing object should appear in the middle of the selected objects


2002-10-17  Sascha Ballach  <sab@openoffice.org>  [b2874ce68c2305a8ccb49f32e3974590468b93ad]

#97372#; add TableBorder property


2002-10-17  Sascha Ballach  <sab@openoffice.org>  [75358425770e1889dd918768f276990d9ef8d29b]

#97372#; make some help methods global, so they are usable also in other files


2002-10-17  Daniel Rentz  <dr@openoffice.org>  [a3c987caf77e622ab1a2baa9cafa7e230094a54b]

prevent endless loop in Escher dump


2002-10-16  Niklas Nebel  <nn@openoffice.org>  [3b2b4ed06cf782ea125dbf838e8652dd4fffa397]

#83203# SetEditEngine: modify position members only for active part


2002-10-16  Niklas Nebel  <nn@openoffice.org>  [8522d800fb09abaf1a96775ae585acc84cbd5a51]

#83203# UpdateFormulas: call UpdateEditView if editing


2002-10-16  Daniel Rentz  <dr@openoffice.org>  [f97870e19bc826c8850cba74830e1a43c4cb7ae4]

#92296# use Query filter for HTML docs


2002-10-16  Niklas Nebel  <nn@openoffice.org>  [9a6d67f7679632af38d2d6aca31e8271b40b3d43]

#91240# PaintArea: for UDPATE_ALL, don't stop if area is left of window


2002-10-16  Daniel Rentz  <dr@openoffice.org>  [ffd0129ee1ee50dc46356bc60456b733060f6aca]

#88839# store selection correctly


2002-10-15  Niklas Nebel  <nn@openoffice.org>  [0ed723d47241d6131790e2d61ff7ffe18fad9306]

#76760# handle clip marks for merged cells


2002-10-15  Daniel Rentz  <dr@openoffice.org>  [eb77c2ff899bfae50d912e38958c70bb4c2127e5]

#79058# reset listboxes on 'Reset' action


2002-10-14  Niklas Nebel  <nn@openoffice.org>  [995accacf81436febf76252d838e3fd1683f9b21]

#94317# handle hidden columns/rows in RefMarks etc.


2002-10-14  Daniel Rentz  <dr@openoffice.org>  [b02ccdb58499d904ab90216a5fffd62c3ebf4948]

#104192# texts in autoshapes


2002-10-14  Sascha Ballach  <sab@openoffice.org>  [53b81b8ea01ce54f8950bbd9ca7d0924874b8bf7]

#103861#; use also for the onscreen position the parent position


2002-10-14  Frank Schönheit  <fs@openoffice.org>  [c6747d85628a0c0ffd2c4c4b0c26917cd1242095]

#96399# reverted the changes done for 95331 - they are not necessary anymore now (form views are always in design mode initially)


2002-10-11  Niklas Nebel  <nn@openoffice.org>  [111621a6bddedc5c5b514708ca2f8e87665545c1]

#104156# MarkListHasChanged: don't switch to form shell for empty group


2002-10-11  Sascha Ballach  <sab@openoffice.org>  [211d00b7dab9d283cf84a1d4b598e90d7c0320b6]

#100469#; copy also the AutoFilter flag


2002-10-11  Sascha Ballach  <sab@openoffice.org>  [39dc0a9e76f8aeba2597774009339bebedf3967e]

#100469#; add AutoFilter and FilterCriteriaSource support


2002-10-10  Niklas Nebel  <nn@openoffice.org>  [e9f3ef8a1801ae65c296ed1ee9bffb44f3113771]

#93538# Skip Empty flag for paste also affects attributes


2002-10-10  Sascha Ballach  <sab@openoffice.org>  [5dcb74ff9bebf1d65acbc7909e75f8889ca83784]

#102925#; the field number from the API has to be converted to the core field number


2002-10-10  Daniel Rentz  <dr@openoffice.org>  [49cbc88d8a41355a883bf131696d9df2736a2e69]

#99897# import of chart gradients/hatches/bitmaps


2002-10-10  Daniel Rentz  <dr@openoffice.org>  [0c3a5abd295e51d41130d127eea62a613c360aa8]

special handling for large GELFRAMEs


2002-10-10  Niklas Nebel  <nn@openoffice.org>  [aebc7b78788a8ec1f644014f297a34d5867c38cc]

#92311# DrawEdit: get cell from doc if not in CellInfo


2002-10-09  Niklas Nebel  <nn@openoffice.org>  [b759c524bcc7732084077c26fcb2398ae5dd3a09]

#93650# ZoomChanged: if editing, update EditView with right MapMode


2002-10-09  Niklas Nebel  <nn@openoffice.org>  [791b9fbd60c1b69a649637a37d9c86c0d3413151]

#94115# Manually merge undo actions for paste with inserting cells instead of list action


2002-10-08  Niklas Nebel  <nn@openoffice.org>  [09043eb8411c527163b640da3a23d52fdfc9df2a]

#100597# end edit mode before executing database functions


2002-10-08  Daniel Rentz  <dr@openoffice.org>  [9fa4eb4bcb8b709e7aa8ef66c067b1542aa64347]

Dump CHARTGELFRAME as Escher


2002-10-08  Daniel Rentz  <dr@openoffice.org>  [4a202dac6306c80aedfedf35ff869939ad793dae]

#104041# crash in D&D


2002-10-08  Niklas Nebel  <nn@openoffice.org>  [f2c9ea0df597b5c9f7eebc13b40ad3e32fe21685]

#103849# clear the link in the clipboard listener from view dtor


2002-10-07  Niklas Nebel  <nn@openoffice.org>  [1508bd662ef295aaa60bac549fb6a10069cd7e35]

#103849# don't use document ptr in AllocModel, test for empty pointer


2002-10-07  Sascha Ballach  <sab@openoffice.org>  [915ad92e9d2317036f54a9f2ed26be5bf00b781f]

#86769#; add ScDrawPageObj


2002-10-07  Daniel Rentz  <dr@openoffice.org>  [5bc6dbfa299d88f5133d62a151d23dff81248715]

#103974# crash on pw protected files


2002-10-02  Eike Rathke  <er@openoffice.org>  [9dd345c09519ffbccc198531c219b911bad83fa9]

#97485# WriteCell: export conditional formatting


2002-10-02  Daniel Rentz  <dr@openoffice.org>  [5ea3f421360a14056be394d91bca53b78cfe8892]

#91270# new classes svtools::ToolTip(Multi)ListBox


2002-10-02  Sascha Ballach  <sab@openoffice.org>  [6be8b66f6a2a15633398261cc02be49bd0c1f1af]

#102444#; correct LogicToPixel and PixelToLogic of the Preview Viewforwarder


2002-10-02  Sascha Ballach  <sab@openoffice.org>  [937eab6cc401be107184c7eaec4c3397b028110d]

#102444#; add as listener


2002-10-02  Sascha Ballach  <sab@openoffice.org>  [6c4f220a9bccc50a5eceda936450c6c3b2ee0fea]

#102444#; fill notify method


2002-10-02  Sascha Ballach  <sab@openoffice.org>  [bd83f820c3e9e1a5a20e8a5ceab391256ab1c7e6]

#102444#; add notify method


2002-10-02  Sascha Ballach  <sab@openoffice.org>  [616d57720cf1e9920f8d7b585240fa8e0fffae25]

#103861#; use the boundingbox of the parent instead calculate again


2002-10-02  Sascha Ballach  <sab@openoffice.org>  [2a79e0027c8893ca50160bc01b676a7834722939]

#103861#; make mxParent protected so it is usable in abreviated classes


2002-10-01  Eike Rathke  <er@openoffice.org>  [60cc53eef2f374169662c7fa43860153b64b6003]

#97951# Adjust: appending columns to extend page width doesn't result in zero overlap


2002-10-01  Niklas Nebel  <nn@openoffice.org>  [204779a529f4a6660a1fc728e1fe7f926ae09159]

#103823# ActivatePart: don't call SetWindow during RefInput


2002-10-01  Eike Rathke  <er@openoffice.org>  [87d607f699a2f6fb898bc2a4586dcc71572f29a8]

#100866# CompileXML with progress bar


2002-10-01  Eike Rathke  <er@openoffice.org>  [bdd51f34c2171bfad7d252bf6a03316704a2af17]

#100866# nXMLImportedFormulaCount for progress bar


2002-10-01  Eike Rathke  <er@openoffice.org>  [b149a8335e5c6352ab1ce984e871c8d882f3ae9b]

#100866# CompileXML with progress bar


2002-10-01  Eike Rathke  <er@openoffice.org>  [48d92651266ed8302c66ce2117958d21100f26e2]

#100866# nXMLImportedFormulaCount for progress bar


2002-10-01  Eike Rathke  <er@openoffice.org>  [467df399a29dd90d63342392d0c633bc8f72d683]

#100866# SetCellText, EnterMatrix: IncXMLImportedFormulaCount()


2002-10-01  Eike Rathke  <er@openoffice.org>  [7a8b44ed6ecb8676dc1099cd4ec2a8163ca7bec8]

#100866# endDocument: call progress bar End() to make room for subsequent SfxProgressBars


2002-10-01  Sascha Ballach  <sab@openoffice.org>  [7f7ab212c7a4525b20329586be7aaf8a3555b535]

#103902#; add virtual method to get the text of the cell


2002-10-01  Sascha Ballach  <sab@openoffice.org>  [6d68009c953ba085f79740ca37e09df87c5ad781]

#103902#; add virtual method to get the text of the cell


2002-10-01  Sascha Ballach  <sab@openoffice.org>  [3771efd49e6c2a54d31b5f1b176cbf4cf098c755]

#103860#; test whether the shape is realy selected


2002-10-01  Sascha Ballach  <sab@openoffice.org>  [15512941fc430fa22848f616012942d5dc437931]

#103860#; test whether the shape is selectable


2002-10-01  Daniel Rentz  <dr@openoffice.org>  [2f07cd5d8623d4d944b108bd8d2f948e99d34524]

#102823# japanese default number formats


2002-10-01  Daniel Rentz  <dr@openoffice.org>  [456ea3de576a3dd7b85254f7b76b5f4665113cf9]

#102823# japanese default number formats


2002-10-01  Jörg Budischewski  <jbu@openoffice.org>  [8f7325d6daba22bc19fde1aa4e766f48f1a08e11]

#103263# replaced obsolete applicat.rdb with types.rdb


2002-10-01  Daniel Rentz  <dr@openoffice.org>  [6f5235d13dd4bc280f189811d04c484549ec4eea]

engl. comments


2002-10-01  Sascha Ballach  <sab@openoffice.org>  [ac5cc10836484ca43d82ca277954842dbc6a9de3]

#103863#; it is a TABLE_CELL


2002-10-01  Daniel Rentz  <dr@openoffice.org>  [3dbcc30dfd3a7263af3fb1ceef64009e5cbbd878]

FORMAT


2002-10-01  Daniel Rentz  <dr@openoffice.org>  [0c87eb302f226c22d6701a25bfb4affcc336d2d8]

#102823# lcl_AddLanguage() -> ScGlobal::AddLanguage()


2002-10-01  Sascha Ballach  <sab@openoffice.org>  [014a425a7fc1a0266577aa4cdb300d3f45b853c6]

#101599#; add ZoomType and ZoomValue


2002-09-30  Niklas Nebel  <nn@openoffice.org>  [0c970d6f533899cb741845031f7cf4af583235f7]

#103818# ExecuteStyle/UPDATE_BY_EXAMPLE: remember old style for undo, correct order of ScUndoModifyStyle/SetStyleSheetToMarked


2002-09-30  Sascha Ballach  <sab@openoffice.org>  [8063afe23caaeef7e016b07fc335327e8039958c]

#103800#; use a copy of ScViewData's MarkData to mark multi


2002-09-27  Eike Rathke  <er@openoffice.org>  [d730ecf7701e574901ee2be503b2633b0c701654]

#92320# new ScFAPToken


2002-09-27  Daniel Rentz  <dr@openoffice.org>  [6f6cc351b8298c3520ced2402cbf7deec4186e01]

#94353# delete progress bar before UpdateRowHeight()


2002-09-27  Sascha Ballach  <sab@openoffice.org>  [25331379c02cfcd45f75ac8d643e13e93fcc1361]

#92038#; don't set document modified after setting autospellcheck, because it is no langer saved


2002-09-27  Sascha Ballach  <sab@openoffice.org>  [26f09dfbd9086404b30bdb899c8f0a0d3d621f4f]

#93295#; property BasicLibraries is readonly


2002-09-27  Sascha Ballach  <sab@openoffice.org>  [0289efe88eccf0795b3df36818220f41ea01c470]

#93295#; add property BasicLibraries


2002-09-27  Sascha Ballach  <sab@openoffice.org>  [e6f697053abd6f41cf056aa6b683377ff70006a4]

#93295#; add property BasicLibraries to XModel


2002-09-27  Niklas Nebel  <nn@openoffice.org>  [643cd929b587d924303661fc91f160ee9c88db5f]

#94321# SetCursorAtCell: for negative AutoFill skip hidden columns/rows again


2002-09-27  Sascha Ballach  <sab@openoffice.org>  [2af9d51b472d223d4db0185c4cf79b3fd4f7ca9a]

#86769#; support SpreadsheetDrawPage service


2002-09-27  Daniel Rentz  <dr@openoffice.org>  [6cde060d5820f5e68352279489c1defed5ca5d95]

#103790# crash with BIFF4 workbooks


2002-09-27  Sascha Ballach  <sab@openoffice.org>  [8ac98a8303873495f4397308f3f22d072a9cc221]

#97041#; put only mulitmarked ScMarkData in ChangeIndent


2002-09-26  Eike Rathke  <er@openoffice.org>  [26cf007c0b83e081de3b1a5faa9ed2a80e9d6dbf]

#94225# InvalidateTextWidth: don't broadcast while importing XML


2002-09-26  Sascha Ballach  <sab@openoffice.org>  [35b769649a6e9bbe76b877805c8f6052ad6924d1]

#101755#; do not change the size of the range of the sheet


2002-09-26  Sascha Ballach  <sab@openoffice.org>  [41375bfbc6a5cb02cdc8d7954899718e1ccdf730]

#103706#; give better warnings for to much rows, columns and sheets


2002-09-26  Sascha Ballach  <sab@openoffice.org>  [7af5df2a950a661af87778ae7e0f12aa1c2352eb]

#103706#; add warnings to inform the user about to many rows, columns or sheets in the xml import; put SRX branch into toplevel


2002-09-26  Sascha Ballach  <sab@openoffice.org>  [1691b94492a932d9f40e600201a458e3b39913f5]

#103706#; add warnings to inform the user about to many rows, columns or sheets in the xml import


2002-09-26  Sascha Ballach  <sab@openoffice.org>  [074d7fe0a89f12b2e7a9ae933518c297fedf7b96]

#103389#; nextElement should throw NoSuchElementException instead of IndexOutOfBoundsException


2002-09-26  Sascha Ballach  <sab@openoffice.org>  [137c8b524e29c995d874810a1ce409d8a38d43b6]

#103377#,#103378#; add support of XRefreshable


2002-09-25  Daniel Rentz  <dr@openoffice.org>  [014ef92f4b1c98a31881d0897c7f356317e93da7]

#103065# do not put empty CJK/CTL fontitem


2002-09-25  Daniel Rentz  <dr@openoffice.org>  [cb79d099a4250d256e93ac352b19a07f68673df8]

#53856# multiselection dialog->sheet


2002-09-25  Eike Rathke  <er@openoffice.org>  [feb506faa6594b043f85e58d6a292bdbe66fc094]

#97591# Insert/Delete/Col/Row: restart RelName listeners on every sheet, not just the modified sheet


2002-09-25  Niklas Nebel  <nn@openoffice.org>  [feb979b4eec83659174239da39e6051254ebdeaf]

#103036# AlignToCursor/JUMP: Find desired position of cursor on the screen


2002-09-25  Sascha Ballach  <sab@openoffice.org>  [a3890373e4731a0e98d8ad83cb5a96f3123887a7]

#103272#; don't overwrite stacked orientation while setting the rotation angle


2002-09-25  Sascha Ballach  <sab@openoffice.org>  [3c8950ed64120657511d2d79708a1335905460d6]

#103390#; if boolean-value does not contain true or false try to convert the number and set the number


2002-09-25  Sascha Ballach  <sab@openoffice.org>  [ffde6b1869ff41e4a62b380d7d09d94d06ab08b5]

#101354#; use the UpdateDocMode


2002-09-25  Sascha Ballach  <sab@openoffice.org>  [618a179951f579372e8a4de448f2f2a076410354]

#101354#; set the UpdateDocMode after loading


2002-09-25  Sascha Ballach  <sab@openoffice.org>  [992fd5fb808de83418802da5986aa08464e138e9]

#101354#; add member to remember the UpdateDocMode


2002-09-24  Eike Rathke  <er@openoffice.org>  [51203a7137c897d87e1007fca47ba992dd727a13]

#100186# replace superfluous (and not fully implemented) ScRangeUtil::Make(Tab)*AreaString and ScRefTripel::GetRefString with (ScAddress|ScRange)::Format


2002-09-24  Eike Rathke  <er@openoffice.org>  [c083b045418bcdd3c8167591ad0808eb7870be0d]

#100186# replace superfluous (and not fully implemented) ScRangeUtil::Make(Tab)*AreaString and ScRefTripel::GetRefString with (ScAddress|ScRange)::Format


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [7f7507a330da627beaf07984852bedff74ba0864]

#103502#; add empty context


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [ad4e021d12bdd36de4f24d5bf92815ac27d4d236]

#103502#; create empty context if to much sheets


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [7b86d4031f397586001b08b17c4ec79eeae33c3a]

#103502#; add empty context to overread elements


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [5cc947fc57770e57fcd730176f2f167257a97e31]

#99949#; set help tips as description


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [b8d218741a6be9195b1a6a022833ea1d27887f00]

#99949#; change the name of the selection area like specified


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [0ce8bb58804a622636980a10d8115fa6464d943d]

#99949#; add method to give the accessibility object the description


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [f4ce614a1e062a597869ff6c0ba3706eb9ea3cc7]

#99949#; change names and descriptions like specified


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [9d82fb121b3c828bfbb3f5e9dc35cd90c69f2e6d]

#99949#; add descriptions of datapilot accessibility objects; change some names and descriptions of accessibility objects


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [720526701cd50d816a4bd127ba6fed10219b5bb0]

#99949#; add descriptions of datapilot accessibility objects


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [219ce82271840ad0591f6ba1ec817a7c455efaf3]

#103567#; broadcast Accessibility only if there if Accessibility is enabled


2002-09-24  Sascha Ballach  <sab@openoffice.org>  [7005fe097e96aeba500eec488b832c5f26001333]

#103567#; release ChildrenShapes in disposing


2002-09-23  Christian Lippka  <cl@openoffice.org>  [5e7b7f8da7141623a7cdbaa30a968de44b93c32e]

#103045# insert default frame direction item


2002-09-23  Eike Rathke  <er@openoffice.org>  [961f35f72379663b5fe6915d88e259a0dc007896]

#103085# create sort lists of all available calendars of a locale


2002-09-23  Eike Rathke  <er@openoffice.org>  [647ecc97235f2363f4f04c63b11f65d222c6b00e]

#103085# create sort lists of all available calendars of a locale


2002-09-23  Niklas Nebel  <nn@openoffice.org>  [2e021b8866ec07ee48c9860b7f77205e4d24320d]

#97226# re-apply cell format as paragraph attributes after format/default


2002-09-23  Frank Schönheit  <fs@openoffice.org>  [e2a5a6744163a1bbaae59687b78067bdff8a14fc]

#100225# changed the signature of IAccesibleParent::ReplaceChild - not creating the new child anymore, this is the task of the callee now


2002-09-23  Niklas Nebel  <nn@openoffice.org>  [ecf9ff9a9467eb1d7e5eb80c0a5581d3c8cd935e]

#98589# FID_FILL_AUTO: when testing if within merged range, also check start


2002-09-20  Niklas Nebel  <nn@openoffice.org>  [74cd5d71d481617f40eadc2cfd36a7b63dfa9484]

#101321# DrawEdit: clip if drawing part of merged cell


2002-09-20  Niklas Nebel  <nn@openoffice.org>  [ab6223cf29c13e29c1904e123576de3d1e182be7]

#102955# don't rely on IsMarked at view's MarkData to detect selection


2002-09-19  Niklas Nebel  <nn@openoffice.org>  [b9825acbe3442a51e682f5ed2aa6bf7cc37a4d2a]

#99950# PrintArea: set clip region before drawing form controls


2002-09-19  Niklas Nebel  <nn@openoffice.org>  [c8f4879c6bc554fce5e8e910efe48fcf2261e41b]

#74215# MouseButtonDown: call SelMouseMove to ensure the anchor is created


2002-09-19  Daniel Rentz  <dr@openoffice.org>  [f644a71175100c864c8af37aa2bb40128238a629]

#101779# optimized EnsureGraphicNames()


2002-09-19  Daniel Rentz  <dr@openoffice.org>  [f01380d4c7f1ba6f0f09a70a52fb83376497acda]

#91267# steps in 1/10 units


2002-09-19  Daniel Rentz  <dr@openoffice.org>  [f740458ee68fcc26da868feab93b878b70774525]

#91270# sort style listbox


2002-09-18  Niklas Nebel  <nn@openoffice.org>  [e3e950829689d43062bd7f53d6f164c081e11fb5]

#93767# DataChanged: make sure status handler is called before calling EditGrowX


2002-09-18  Eike Rathke  <er@openoffice.org>  [cc888df5f76b372a58d0b02189d5ee37751dcd84]

#94643# Factor: formulas containing the FORMULA() function need RecalcModeAlways


2002-09-18  Niklas Nebel  <nn@openoffice.org>  [d7085c114a840b87ef24b3d71cd011812f95ae3b]

#103346# don't access EditEngine after deleting, remove NotifyHdl from TextWnd EditEngine


2002-09-18  Daniel Rentz  <dr@openoffice.org>  [83ff28faa3413c30908f5ffa9a403803cd0831e4]

#97774# keyboard handling for ScOutlineWindow


2002-09-18  Daniel Rentz  <dr@openoffice.org>  [d4ec1847f96063936551c6e22004ca933536d909]

#97774# keyboard for ScOutlineWindow


2002-09-18  Eike Rathke  <er@openoffice.org>  [f640691c5aa0c601ba27ee254638267dc2b461c8]

#100945# ExecuteNumFormat: play recorded SID_ATTR_NUMBERFORMAT_VALUE


2002-09-17  Niklas Nebel  <nn@openoffice.org>  [ca713770bcc82f2aa464eb92ae4ff00420d35551]

#103327# IsGroupStart: handle elements before the current row


2002-09-17  Kurt Zenker  <kz@openoffice.org>  [3b6b7665ade1c069bda4081de004464c3cd4be54]

Merge SRX643: 17.09.02 - 15:24:09


2002-09-17  Rüdiger Timm  <rt@openoffice.org>  [ae38124bbc6c4a307a486c0b4465fd79aa61bab6]

Merge SRX643: 17.09.02 - 15:25:05


2002-09-17  Stephan Schäfer  <ssa@openoffice.org>  [03f9b2250d4f0c416634cf4577d87316f1f79788]

#103358# no UI mirroring for horz scrollbars


2002-09-17  Stephan Schäfer  <ssa@openoffice.org>  [9b05e33edd996364c0c31c8959aab6ec13cbc9f3]

#103358# no UI mirroring for horz scrollbars


2002-09-17  Stephan Schäfer  <ssa@openoffice.org>  [b93e2a70d6b5293ae4feb82b9a24fdcf5d57be04]

#103363# no UI mirroring for column head


2002-09-16  Niklas Nebel  <nn@openoffice.org>  [1956a2e537cfd621ce6806b982cbd285410312a8]

#102955# handling of multi selection that can be merged to simple selection in menu state functions


2002-09-16  Eike Rathke  <er@openoffice.org>  [c7e5ef3e1688563aca7994bc73a86738667c8c53]

#i5242# #103177# add ScTokenArray::bReplacedSharedFormula


2002-09-16  Eike Rathke  <er@openoffice.org>  [481d1df693119c35176bae6047ae7a888ec5438a]

#i5242# #103177# StartListeningTo: if called for name listeners establish all listeners if ScTokenArray::IsReplacedSharedFormula()


2002-09-16  Eike Rathke  <er@openoffice.org>  [714cc008cb781ee6358c5118d48da7847609a835]

#i5242# #103177# ScTokenArray::SetReplacedSharedFormula()


2002-09-16  Eike Rathke  <er@openoffice.org>  [a183217ebf8be5cf426becc03131dfb53ac41f4e]

#i5242# #103177# UpdateReference: revert shared formula handling Excel can't cope with, #ifdef'ed for future reference


2002-09-16  Daniel Rentz  <dr@openoffice.org>  [746e373193b6098ae9ef5a74aeb738c7f958c879]

#101763# CTL text direction


2002-09-13  Niklas Nebel  <nn@openoffice.org>  [1df46560063e744472f0f77200eb9107e688a85c]

#97612# when closing, dont try to activate other window


2002-09-13  Kurt Zenker  <kz@openoffice.org>  [02be6bad324eedefe08af6ee2f561d5ebe55bb45]

Merge SRX643: 13.09.02 - 16:35:01


2002-09-13  Oliver Specht  <os@openoffice.org>  [2fd7ad39c733e4175659e8728df232dc25e1bf5b]

#100584# SvxCTLTextTbxCtrl created to support CTL-support-dependent buttons


2002-09-13  Sascha Ballach  <sab@openoffice.org>  [baee05721f272c20b437a1194b552564361add70]

#101672#; handle sheets inserted after current sheet if all following sheets are scenarios


2002-09-13  Kurt Zenker  <kz@openoffice.org>  [698c9a494870f38fc8f699e7f634cf8ff1530515]

Merge SRX643: 09/13/02 - 10:45:11


2002-09-13  Kurt Zenker  <kz@openoffice.org>  [7126c4b83fa3368c628981b6f2352dc8cdb0006e]

Merge SRX643: 13.09.02 - 10:41:52


2002-09-13  Niklas Nebel  <nn@openoffice.org>  [11ec58ce85f2138529e53280762d004391653d8d]

#101968# moved bidi text direction buttons to right position


2002-09-13  Sascha Ballach  <sab@openoffice.org>  [01dc989630d73e2dc0aca16270d877cd5da4704d]

#101390#; convert between twips and hth_mm if used in a macro


2002-09-12  Niklas Nebel  <nn@openoffice.org>  [e615504b2bc8abda0926295bfa6e821c19707775]

#101968# support slots for bidi text direction toolbar buttons


2002-09-12  Eike Rathke  <er@openoffice.org>  [ef8735b13460315f5c90250c204216a09d9aa913]

#i5242# #103177# UpdateReference: decision about shared formula replacement


2002-09-12  Eike Rathke  <er@openoffice.org>  [231ca1ac5dd827c5c4bdae226e58b141fe1e1d66]

#103177# UpdateReference: removed comment about shared formula replacement happening too often, decision implemented in ScCompiler::UpdateReference(). The actual cause of the bug was a listener taking the position of the already updated reference, because the shared formula was replaced with that content.


2002-09-12  Sascha Ballach  <sab@openoffice.org>  [da6ceb59c2c690aa69af6ddb0770daf386427d42]

#94563#; first find out whether this is the last column than call AdvanceQueryParamEntryField


2002-09-12  Sascha Ballach  <sab@openoffice.org>  [8c31fbd92cd3b3ba4d394a40fafbe77d85e1e941]

#102935#; put focus events in correct order


2002-09-12  Sascha Ballach  <sab@openoffice.org>  [5fe44e1a63846a93924bcf4ef51767d8dad110e7]

#102753#; put pSpecial in all ValidQuery calls


2002-09-12  Kurt Zenker  <kz@openoffice.org>  [67179bdf180d97fa780a8cbc7aea294a951c669b]

Merge SRX643: 12.09.02 - 12:08:26


2002-09-12  Kurt Zenker  <kz@openoffice.org>  [4d7f18c7fffc4112eb27369fb5871af80c18c357]

Merge SRX643: 12.09.02 - 12:07:03


2002-09-12  Kurt Zenker  <kz@openoffice.org>  [5b0211332c3ae1e5c554f17b6637fbd67c0c0570]

Merge SRX643: 12.09.02 - 12:06:20


2002-09-12  Sascha Ballach  <sab@openoffice.org>  [3f146424b0d3a0b1c1e8faadcb319ee59c2f4a44]

#102785#; finish input before switching to PagePreview


2002-09-11  Niklas Nebel  <nn@openoffice.org>  [469c56cadac7abe0b03fa40e9da39a30c3420943]

#102497# changed handling of automatic font color


2002-09-11  Sascha Ballach  <sab@openoffice.org>  [9879800385831c6ee2a9099c66908ec5e1a8dd3f]

#103122#; handle connector shapes, if they are connected don't resize


2002-09-11  Sascha Ballach  <sab@openoffice.org>  [9c0f6b9d20c1cd858d834bd706e35c61f06f6002]

#82430#; ScIndexEnumeration should get the service name


2002-09-11  Sascha Ballach  <sab@openoffice.org>  [4f22b41391162abb5c79f2ca61170df8a7618a01]

#82430#; ScIndexEnumeration should get the service name


2002-09-11  Sascha Ballach  <sab@openoffice.org>  [9a179c4d5626b62db4b4953d1f73649d68e8a0b7]

#82430#; every XEnumerationAccess gets it own service name


2002-09-09  Sascha Ballach  <sab@openoffice.org>  [09eee02861b9a7e30362a53d0502d01b301bea20]

#95391#; call SetDocumentModified after setting a new language


2002-09-09  Niklas Nebel  <nn@openoffice.org>  [5fb0f93a28adee4075c0d3136fefb2e877398729]

#101763# new text direction cell attribute


2002-09-09  Björn Milcke  <bm@openoffice.org>  [18813da741752a85bb83d9191d1012553379f9a0]

#102706# Call SchDLL::Update after setting NumberFormatter at          MemChart. Otherwise the document cannot be informed about the new          Formatter.


2002-09-06  Eike Rathke  <er@openoffice.org>  [ee076e5ca3657256b181f36fbc108bc5ffbcd381]

#102706# ActivateObject: set number formatter at chart


2002-09-06  Vladimir Glazounov  <vg@openoffice.org>  [d4c21facbbda5bd609409364b8e1f3e88de9f17a]

#100000# typo


2002-09-06  Sascha Ballach  <sab@openoffice.org>  [5cf3a7663639186b226c56a8797ee7390f2f37c8]

#102925#; remove the code to convert string into number, because it is not needed there and results in a bug


2002-09-06  Sascha Ballach  <sab@openoffice.org>  [8cb610c37a8ce8340d7d52f04d5faef615d50912]

#102925#; handle empty/!empty much better, so a 66 is a 66 and empty is empty


2002-09-06  Sascha Ballach  <sab@openoffice.org>  [7c8164eed49c1f3533fb8e68f38afa4685939cee]

#102925#; move some little code to dpshttab.cxx, because this class can handle the special case of empty/!empty


2002-09-06  Sascha Ballach  <sab@openoffice.org>  [f8680abbb190961e273efad3fbf989c242ce17b0]

#102925#; add member pSpecial and handle so the special case of empty/!empty


2002-09-06  Sascha Ballach  <sab@openoffice.org>  [bfd86f9864fe9b8c3605c1a95662046db282eaef]

#102925#; add member pSpecial


2002-09-06  Sascha Ballach  <sab@openoffice.org>  [581ecc92f9b7c291c889fb673c38d7e14d1adae9]

#102925#; add Special parameter to ValidQuery which is delivered to ValidQuery of ScTable


2002-09-05  Rüdiger Timm  <rt@openoffice.org>  [3d908806fd3d3881c19aab029ab067d0e5e003f4]

Merge SRC641: 05.09.02 - 21:11:45


2002-09-05  Rüdiger Timm  <rt@openoffice.org>  [9fad9978d2c11f6ac3d310f89102f248880ee9e6]

Merge SRC641: 05.09.02 - 20:51:47


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [d07ff182e9e247dc0839740420aae072ba76d87a]

Merge SRC641: 05.09.02 - 20:45:38


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [e145093cdd7d5d2475d9a3ca1d8b101966ee1774]

Merge SRC641: 05.09.02 - 16:46:03


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [0240ba8458f5c6399ad3545040711cc23251a4a6]

Merge SRX643: 05.09.02 - 15:56:41


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [b5885b3ec4464a92ff2abb7a5bac3a70ad40ecdd]

Merge SRX643: 05.09.02 - 15:55:22


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [005becf07f588b4ebd2e93a0ec0db91145aeea47]

Merge SRX643: 05.09.02 - 15:50:45


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [618456ddda0186389f317f296c024267c2764003]

Merge SRX643: 05.09.02 - 15:36:24


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [e15ccfaac99fb3db0b4dcfbe7d4ad08cfe362eba]

Merge SRX643: 05.09.02 - 15:33:50


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [2af1bcaa123e09a0f4e3c2527e749b68bfae6d69]

Merge SRX643: 05.09.02 - 15:33:08


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [125c7c64db3467c73b5409159252c0f6ec1dda7e]

Merge SRX643: 05.09.02 - 15:32:23


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [6fccaa4de5da0f1537baf0025e1fa43b19971b3c]

Merge SRX643: 05.09.02 - 13:00:44


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [911d1ff9a06d3e77d04168afdfb3daa803c3e018]

Merge SRX643: 05.09.02 - 12:58:19


2002-09-05  Kurt Zenker  <kz@openoffice.org>  [f9985e613a179e3c71f519fc4a9b16e05a594de0]

Merge SRX643: 05.09.02 - 12:56:26


2002-09-05  Niklas Nebel  <nn@openoffice.org>  [449f7faee317fc499bc11299899b5d42c7c6ba19]

#102960# GetSelectionFrame/ApplyPatternLines: call MarkToSimple


2002-09-05  Sascha Ballach  <sab@openoffice.org>  [2fce764414fef0191be79020eee32a974184b7a9]

#95714#; add valid implementationId


2002-09-05  Sascha Ballach  <sab@openoffice.org>  [a1c6d6c79ed34b05c285eca13c6a712ca5d1d069]

#102799#; the cell should have the type Empty if it is in a databaserange which should not be saved


2002-09-05  Sascha Ballach  <sab@openoffice.org>  [dd42e96df14d9514bf57631d1afcfe8e0a5c0682]

#102753#; remove Row/Column Description, because it is not supported and specified and should be consistent to ScAccessibleSpreadsheet


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [2c74ad607b3467ddc9ab2ccfa87658eeb13c7857]

#102952#; use contains instead of boundingbox to find a shape in GetAt


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [ce8fc834a56880a11f25a5cb4ee5fb2d91bb04d0]

#102078#; change button name from ~Liste to ~Alle einfügen


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [aadb665c2d40d7bf40f123e24af26aec63e4b316]

#102679#; add method to calculate the pixel width of a character count; fix getAccessibleAt


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [6c050110d74957995362520b2a5d42490fdfe899]

#102679#; add method to calculate the pixel width of a character count


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [2f36a1c78624d6a2830b4ea6ce2c4cbf8a8e0612]

#102935#; send events after entering/leaving editmode


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [2e6d9c03169f08888df92fe147133734c1177612]

#102924#; support the special case of empty/nonempty in the filter; handle number as number and string as string


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [6df0104dc3298d8d1d0e9bd50d3b8baaa94b5771]

#102924#; set the FilterField like expected by the dialog


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [19863fdf594e82bc8da3b434ec4dd6df77724388]

#97084#; set the field after setting the operator


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [04410fc09054f5590043cda5a26b2489bff46a7c]

#97084#; handle empty/nonempty conditions while opening the dialog


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [e733afb604de832408e3757041361b39cb805c4b]

#97084#; only convert string into number if QueryByString


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [4b8b3fff5e6dfe0b519309ca3a0dc0c0d54af8f3]

#97084#; give the FilterDescriptor the DocShell


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [5140276ce1bccdbcc8738fb87f7583eefc321841]

#97084#; the FilterDescriptor gets now the docshell to get the NumberFormatter of the Document. Also it is a SfxListener to recognize whether the document is dying. Handle number values and empty/nonempty in the FilterDescriptor.


2002-09-04  Sascha Ballach  <sab@openoffice.org>  [c51101654e04c3b7a169b3edd824565c6906dada]

#97084#; the FilterDescriptor gets now the docshell to get the NumberFormatter of the Document. Also it is a SfxListener to recognize whether the document is dying


2002-09-03  Niklas Nebel  <nn@openoffice.org>  [b041125fb86ec50d3eb4b9792bd80973338340a3]

#101061# handling of recorded slot SID_ENTER_STRING


2002-09-02  Sascha Ballach  <sab@openoffice.org>  [9292ec8ba393a3d09505f58d4c88f1275511af3c]

#102444#; send visible data change events


2002-09-02  Sascha Ballach  <sab@openoffice.org>  [655e8936705bf83e75042f0c8c4615cfa9f73fb7]

#102444#; add own viewforwarder for every page preview object with text


2002-09-02  Sascha Ballach  <sab@openoffice.org>  [f6adfaccffff13321c117db5b522d1bdfec68b6f]

#102444#; add Notify method to react on visibility changes


2002-09-02  Sascha Ballach  <sab@openoffice.org>  [33b0d1deb693d1ae2f96383213f36a893bd29e72]

#102444#; add focus lost and got hints for windows


2002-09-02  Sascha Ballach  <sab@openoffice.org>  [fcdb4883fb288747350f57702dfa6f9028b7d08e]

#102444#; send more specific events to the accessibility objects


2002-09-02  Niklas Nebel  <nn@openoffice.org>  [e99ed0e43ebc027adfc72f780912b86f220f3e1b]

#101327# recording of SID_INSERT_GRAPHIC


2002-08-30  Niklas Nebel  <nn@openoffice.org>  [2cc73ae6e841a0a1babe10da7beb85f918cd5215]

#74215# allow locked modifiers in column/row headers


2002-08-30  Niklas Nebel  <nn@openoffice.org>  [ff76bca4bf12e598305126c2056d4589a99850be]

#102253# support multi selection by keyboard


2002-08-30  Sascha Ballach  <sab@openoffice.org>  [de44b8b397ed6ff387e9445159e7b77f0d1585d6]

#102793#; search for a shape in GetAt by iterating from the last one to the first one and compare the point with the bounding box. don't return background shapes, because they are behind the sheet


2002-08-30  Sascha Ballach  <sab@openoffice.org>  [f82ea6960c9a863e714e3d77385f2b7bdf79b98b]

#102793#; don't thow IndexOutOfBoundsException, because the calling method does it if needed


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [6d2edcc313e94a2ad3c9d166d02f9cd982acf9d5]

#102709#; add ScUnoGuard to all get...RelationSet methods; increment nIndex so it is no loop


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [7e9c14408e877010a11c48565a3bf263433d8315]

#102770#; remove end calculation from destructor to enddocument


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [597532d555f0d6c3992cb94231fb75b381b64efc]

#102748#; calculate BoundingBoxOnScreen lke parent


2002-08-29  Mathias Bauer  <mba@openoffice.org>  [0ca4d8c478d802fcf8291eafeac0d9be33e62374]

#98951#: make sure that slot names are unique


2002-08-29  Mathias Bauer  <mba@openoffice.org>  [84322f4572b68b3f32d53a2afe896971f3f08074]

#98951#: make sure that slot names are unique


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [6fc32e48ed8c4adc0e60380d49fc399935c9294c]

#102713#; check whether index is out of bounds in ..RowExtendsAt and ..ColumnExtendsAt


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [17998bfa2412097314d6fb6b18d65d6bbb0b3d45]

#102761#; only notify if it is another name or description


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [0e96472efa41cad6c2cbc35808bc855c010dbdff]

#102680#; lock solar mutex in disposing


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [8c0b2ee5194adef4c9f85999b64d67e5eaebce03]

#102444#; add methods so the AccessibleDocument can tell the spreadsheet that something of the visibility is changed


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [6fd6b577c36f5b5a08e96707212182f292c8152e]

#102444#; remember the VisArea to know whether notify or not; give the shape the correct visarea and tell the shapes if something of the visibility is changed


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [3517114e28c520c4ca7ee87603cb5132bfb2fdd7]

#102444#; remember the VisArea to know whether notify or not


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [63e5ee7954686450e7f67688b43c0a368beb00de]

#102444#; notify Accessibility objects if window size changes


2002-08-29  Sascha Ballach  <sab@openoffice.org>  [be417cba7e12141c1765fb5f7f76f383ea67a620]

#102444#; add new hint for window size change


2002-08-29  Oliver Specht  <os@openoffice.org>  [2fe2faa4004c17de21d7d04c6a4b2014af3b02cc]

#99281# MaskColor magenta


2002-08-28  Niklas Nebel  <nn@openoffice.org>  [9699f136a28cdfe49c574887323ada8fd208b47a]

#102510# keep the PrintFuncCache across several XRenderable calls


2002-08-28  Niklas Nebel  <nn@openoffice.org>  [e5f399dcd58d09fe37b179751a1f62dcac24bba6]

#102674# call UseInteractionHandler to enable filter options dialog if needed


2002-08-26  Niklas Nebel  <nn@openoffice.org>  [e2234190fa5fd39bc5ac9c78704d1755ae6d75db]

#102510# implementation of XRenderable for PDF export


2002-08-23  Sascha Ballach  <sab@openoffice.org>  [75ba4f30bddfc8d0f1322f6bbfad686d39a0b2b9]

#102503#; test whether the cell exists and on non empty cell set a warning


2002-08-23  Sascha Ballach  <sab@openoffice.org>  [9828997b8ab0d16549a86cf75c9dd6efa4bc7692]

#102606#; add column after adding row; #102503# test whether the cell exists and on non empty cell set a warning


2002-08-23  Sascha Ballach  <sab@openoffice.org>  [dcb821a3bb5ec5523e1b4f7d6baee4b0b95b5e30]

#102605#; don't write background attribute twice


2002-08-21  Niklas Nebel  <nn@openoffice.org>  [a5647d7f1ef2243495dbef62ee79d5a8f42fac59]

#102421# allow editing if cursor is outside of the window


2002-08-21  Sascha Ballach  <sab@openoffice.org>  [a59f4561d6a13b1b87520debaa525fd5a3d8aba4]

#102509#; test whether it is a shape or the sheet; #102444#; correct PixelToLogic method


2002-08-21  Niklas Nebel  <nn@openoffice.org>  [27a014f19c8ecae82583c10acab71f341a0ea106]

#102451# consider document background color for EditEngine BackgroundColor


2002-08-20  Sascha Ballach  <sab@openoffice.org>  [3d1daa6a8f456eebcbe104e33775c657ddefc59a]

#102232#; don't use empty to find out whether there are shapes, because the vector contains allways one element(the sheet)


2002-08-19  Niklas Nebel  <nn@openoffice.org>  [ebe63e0ef3ad07ab437cfffc5be1dc51159a8890]

#75353# use the same slots for text alignment in text boxes as in cells


2002-08-19  Sascha Ballach  <sab@openoffice.org>  [f31be71f163d45920441d6554c72a6843fa28d0a]

#102423#; call StaticTextHelper to find the children


2002-08-19  Sascha Ballach  <sab@openoffice.org>  [691259fd742d3fd96c0aeeb6441e63f8e43a0f18]

#102423#; don't use uninitialized members


2002-08-16  Oliver Bolte  <obo@openoffice.org>  [af01e888c9a337c97001102554b829945705d6c7]

Merge SRX643: 16.08.02 - 22:05:38


2002-08-16  Niklas Nebel  <nn@openoffice.org>  [1a722538d0ea12544aa0517350a9307ec0d95ce3]

#97673# prevent repeated error messages for command events in protected cells


2002-08-16  Daniel Rentz  <dr@openoffice.org>  [27c8e8c7ddc734b6cc049ed5cd8f1789c5a8bd78]

#101677# CSV accessibility


2002-08-16  Daniel Rentz  <dr@openoffice.org>  [e5bb2d773de42f63cf5938eab6f745c81450ce93]

#101677# CSV accessibility


2002-08-16  Niklas Nebel  <nn@openoffice.org>  [05c4e22ea2ebfdc13f9831b981ca2e2269ec3a9e]

#97223# DrawClipMarks: in high contrast mode, use text color also as fill color


2002-08-16  Hans-Joachim Lankenau  <hjs@openoffice.org>  [56585f4d1732a8308ef2f393661b113680901563]

#i6711# escape hashmarks for unix like shells


2002-08-16  Sascha Ballach  <sab@openoffice.org>  [c6c69013e3ed68b6c17867eac750edeaea52c42c]

#101987#; don't use the return value, because it is always false


2002-08-16  Niklas Nebel  <nn@openoffice.org>  [c4684e0cada2cfd0042436d09912c8e366bf22e5]

#101987# moved handling of position 0 from GetPosFromPixel to SetCursorAtPoint


2002-08-16  Daniel Rentz  <dr@openoffice.org>  [080f15bc036b70baf41da976ca9de91c4b3f052d]

#101677# CSV accessibility


2002-08-16  Sascha Ballach  <sab@openoffice.org>  [310d5eb5972e2f843194d99740d7353cff0fd825]

#102392#; send focus events to a global queue


2002-08-16  Sascha Ballach  <sab@openoffice.org>  [27f94e7b187ab46d81c799662d79121bc5bf8585]

#101282#; ask contains before look for a result of getAccessibleAt()


2002-08-16  Niklas Nebel  <nn@openoffice.org>  [bc8c9187701126f98dd516502e7562f38c6137dd]

#102213# notice if the viewshell is closed (switching to preview)


2002-08-15  Kurt Zenker  <kz@openoffice.org>  [b5a911615d41107c703cde5b8dc2a46a1bde0d4e]

Merge SRX643: 15.08.02 - 22:37:52


2002-08-15  Kurt Zenker  <kz@openoffice.org>  [1f94df59d54800036ceed202797789aa600c9532]

Merge SRX643: 15.08.02 - 22:36:42


2002-08-15  Kurt Zenker  <kz@openoffice.org>  [f3fef9077024a36172e2390557863e9fdd2b419b]

Merge SRX643: 15.08.02 - 22:34:11


2002-08-15  Kurt Zenker  <kz@openoffice.org>  [6cb48bad6e91ea2d7ebbce71f3e941e47aa9cc8a]

Merge SRX643: 15.08.02 - 22:20:57


2002-08-15  Kurt Zenker  <kz@openoffice.org>  [f3051a58bec7d8359292319a41bafa30aa41eb11]

Merge SRX643: 15.08.02 - 22:18:56


2002-08-15  Niklas Nebel  <nn@openoffice.org>  [2ccde2c172fcd80bdbe7da6f5f35ed795d7aa19d]

#102247# GetExpression: SetImportXML for second expression, too


2002-08-15  Niklas Nebel  <nn@openoffice.org>  [e70af8ade0fa69bbaf7575e505c9fcacc9d75278]

#101329# InsertCells: pass RefUndoDoc to InsertCol/Row instead of copying formulas


2002-08-15  Sascha Ballach  <sab@openoffice.org>  [9c0c8bc4f9dc54b49a14c0389e8f8461e25cefff]

#102307# add the missing support of IndexOutOfBoundsException


2002-08-15  Sascha Ballach  <sab@openoffice.org>  [c9c5918f4a85864e4063d34b0bacf6ace0a60a73]

#102274#; the TableModelChange should only contain the changed range and not all cells after this range too; #102307# add the missing support of IndexOutOfBoundsException; the table should have and support the focused state


2002-08-15  Niklas Nebel  <nn@openoffice.org>  [16eed58e7f281b570c61d7e1d95667c63959feac]

#101329# UpdateReference: use original cell position when copying to undo doc


2002-08-15  Niklas Nebel  <nn@openoffice.org>  [6785dfdcc9e3a0560e4f008589a436ddaedb1100]

#101329# InsertCol/InsertRow: pRefUndoDoc


2002-08-15  Sascha Ballach  <sab@openoffice.org>  [13efc96336e33bc6c364c8a4e8aa82d3950144eb]

#102274#; the table should have and support the focused state


2002-08-15  Daniel Rentz  <dr@openoffice.org>  [3cd288f084d9a3307c25520bc5d8947357b11bd3]

#101677# accessibility for CSV import


2002-08-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [a80e764d26cd5e394e4a5d11303932e804474c12]

#i6886#,#101685#: merge OOO_STABLE_1_PORTS (1.6-1.6.4.1) -> HEAD


2002-08-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [f70a65138aa67dde506d5bae4f54e49a36847488]

#i6886#,#101685#: clean up MACOSX support


2002-08-14  Hans-Joachim Lankenau  <hjs@openoffice.org>  [cb64a1d67d07dd7bf0f7df5a1ce86277ff02ae03]

#100000# syntax


2002-08-14  Daniel Rentz  <dr@openoffice.org>  [48691a6f44cd217d6e4319ae194f347d9269cea0]

#102281# HC for outline symbols


2002-08-14  Oliver Specht  <os@openoffice.org>  [6109f60b256ae185c9a36d9cbc77ac51c75ad19b]

#101785# provide high contrast link display bitmap if necessary


2002-08-13  Sascha Ballach  <sab@openoffice.org>  [472668820e79af4f5de5a9b98f9db4ecac777f46]

#102300#; use the = Operator instead of OUString constructor to assign String to OUString


2002-08-13  Sascha Ballach  <sab@openoffice.org>  [c22d5b45db7f8230c8c8c81ee2a8425382670e16]

#102292#; add missing exception declarations; #102296#; the sequence should have the size of the rowcount


2002-08-13  Sascha Ballach  <sab@openoffice.org>  [cb76503316a2048fdeb37efee429566ddabccdbc]

#102292#; add missing exception declarations


2002-08-13  Sascha Ballach  <sab@openoffice.org>  [1dc0b5545e9b105ffbbe59271866cf43b932b47b]

#102299#; implement XServiceInfo; use the = Operator instead of OUString constructor to assign String to OUString


2002-08-13  Sascha Ballach  <sab@openoffice.org>  [509fbf25d2336d42a270bcd161ba73abb49aaf7c]

#102299#; implement XServiceInfo


2002-08-13  Sascha Ballach  <sab@openoffice.org>  [73e209b9ada1cc8a6945a3f1e8120ae26e803210]

#102068#; compare also the formula of a text cell


2002-08-13  Daniel Rentz  <dr@openoffice.org>  [3e929993045192bc3017f35df1071c2aba0861b5]

+ SHEETPROTECTION


2002-08-13  Sascha Ballach  <sab@openoffice.org>  [bfbe5ed3fcd1c0548e440a54f24bd8b285f5007f]

#100696#; give the childs the specified order


2002-08-13  Daniel Rentz  <dr@openoffice.org>  [7d03b7437b8bc9cc6f22f5ef3f3f3db1f8fdeaba]

#10101548#


2002-08-13  Vladimir Glazounov  <vg@openoffice.org>  [a50a9e8f30992e1d43b9c99ade8e0dd97b9aadaa]

#100000# typo


2002-08-12  Kurt Zenker  <kz@openoffice.org>  [31c314a78c58deb83c8af5cbeb73b0bedc4e38d2]

Merge SRX643: 12.08.02 - 22:08:19


2002-08-12  Niklas Nebel  <nn@openoffice.org>  [065147b5e06e0d958d98476f90f4f2b09694806c]

#102062# call SetDrawModified after changing ImageMap


2002-08-12  Vladimir Glazounov  <vg@openoffice.org>  [edd517a2417e767a19709930d82af3b4d25b159d]

#100000# typo


2002-08-12  Sascha Ballach  <sab@openoffice.org>  [48f7b662c42d48ee665801d2156e7d1f0e8787a4]

#102240#; test whether the point is in the BoundingBox


2002-08-12  Sascha Ballach  <sab@openoffice.org>  [8699dcc53c766f0d6f3b30d72682ac4bbd6da86f]

#102232#; if there is no DrawView remove selected ranges also


2002-08-09  gt  <gt@openoffice.org>  [3596c54d062c3569b3f09847545ad91a1398420c]

#101770# new international options tab page


2002-08-09  Sascha Ballach  <sab@openoffice.org>  [6e7fa2a494856c7d848d3f8e36dda14744b9165a]

#102219#; don't return a EditViewForwarder in cells, because they are readonly and have no EditView


2002-08-09  Daniel Rentz  <dr@openoffice.org>  [280ff166aaec156767c0a7b3c174940b69580f22]

#100489# Build-in names must be in table name sort order


2002-08-09  Daniel Rentz  <dr@openoffice.org>  [5da2c704b60cfd6e1cdad8e94947ea27940e7383]

#100489# Build-in names must be in table name sort order


2002-08-09  Daniel Rentz  <dr@openoffice.org>  [5e415380ade8542516adf268bbf707cb327dec89]

init the member


2002-08-08  Daniel Rentz  <dr@openoffice.org>  [0123638882b8096df15acdaaa250d6b160e49df8]

export the book stream


2002-08-08  Sascha Ballach  <sab@openoffice.org>  [0542ca441cef6118a052ed45de6625dc9c5a3d2b]

#101740#; use Ressources to create the name and description


2002-08-08  Sascha Ballach  <sab@openoffice.org>  [002d9b028dc5448e4e94e041d0e79e8d37ac050d]

#101740#; give the editobject the name and the description


2002-08-08  Sascha Ballach  <sab@openoffice.org>  [ad37cb3b22a0ad8e1a54e16d3e37e0b95da64473]

#101740#; tell the EditWindow which location it has; give the editobject the name and the description


2002-08-08  Sascha Ballach  <sab@openoffice.org>  [c5877aea2335ee3e59b7eca4d483645aa5eb167a]

#101740#; tell the EditWindow which location it has


2002-08-08  Sascha Ballach  <sab@openoffice.org>  [ce12b6721fdbc3e86acb935bf234e5e6603f93a6]

#101740#; add names and description of accessibility objects


2002-08-08  Eike Rathke  <er@openoffice.org>  [35b4001767eac8394cbb35a507cfa460e91974eb]

#101692# in DB import use result set if available


2002-08-08  Daniel Rentz  <dr@openoffice.org>  [24cf188bd22386b0c6765eb6cd38ce1128c859a9]

#101616# conversion of metric areas and volumes


2002-08-07  Eike Rathke  <er@openoffice.org>  [46cd7fc8364141640b16bfda9dd917962b722401]

#102136# lcl_PutString: don't insist on SEPT, accept SEP too


2002-08-07  Daniel Rentz  <dr@openoffice.org>  [0a22c3faf6b2d22748d4a2ead9f7ae9bea6d7552]

#94362# added 'Tabelle' in german strings


2002-08-07  Sascha Ballach  <sab@openoffice.org>  [c8a5fc6e4ddead6aaffd5273b18548c9dda71e2d]

#102140#; test whether the Drawpage exist before using


2002-08-07  Sascha Ballach  <sab@openoffice.org>  [da21e4a18f7315b0e9c5ca6e770f1652ea2d0c1a]

#102126#; filter selected ranges out of the selected objects


2002-08-07  Sascha Ballach  <sab@openoffice.org>  [17272475018b68331c5535b8d04855cdd94d9a36]

#102124#; add throw lang::IndexOutOfBoundsException


2002-08-07  Sascha Ballach  <sab@openoffice.org>  [7f919ccd5910325873b9bccb2a04c531928f34fc]

#102117#; catch lang::IllegalArgumentExceptiongual; handle the case that there are no shapes to select


2002-08-06  Daniel Rentz  <dr@openoffice.org>  [21b172ea25aff7853867a13b930229d3af5fcfe0]

#100000# missing void


2002-08-06  Sascha Ballach  <sab@openoffice.org>  [2942c6aa6ddd607875aa66639a9cb1d2043a4407]

#101676#; add accessibility support of data pilot dialog


2002-08-06  Sascha Ballach  <sab@openoffice.org>  [e29210381b3048e4bccce0fca8c5a3b208ef685f]

#101676#; add posibility to change the name


2002-08-06  Sascha Ballach  <sab@openoffice.org>  [a8008d54c0286eaa0f74d49065174a7f8c48c26b]

#101676#; remove getSupportedServiceNames


2002-08-06  Sascha Ballach  <sab@openoffice.org>  [240bc50bf2193fca96e4922d4be8f83ae8dda6df]

#101676#; add name of select control


2002-08-06  Sascha Ballach  <sab@openoffice.org>  [df563cf0571b6e8ecf9c643d99be2dc1240aa0a1]

#101676#; add Accessibility API support


2002-08-06  Daniel Rentz  <dr@openoffice.org>  [f786fce546558b23e77a18b8126bce22836e89eb]

#101146# do not delete itemset in GetRefreshedSet()


2002-08-06  Sascha Ballach  <sab@openoffice.org>  [4eaa4324f0c13ba300d20cff023f0034f81abdaf]

#102052#; add IndexOutOfBoundsException


2002-08-05  Kurt Zenker  <kz@openoffice.org>  [06dce8086b5125f22a7546e38392f4b618e2cac8]

Merge SRX643: 05.08.02 - 23:17:00


2002-08-05  Kurt Zenker  <kz@openoffice.org>  [3ddf402101d2a6b5baac357de7e18253c6ad5f77]

Merge SRX643: 05.08.02 - 23:11:01


2002-08-05  Kurt Zenker  <kz@openoffice.org>  [02e903330a8f3181f0b47dceb05bdc281a118859]

Merge SRX643: 05.08.02 - 22:40:34


2002-08-05  Kurt Zenker  <kz@openoffice.org>  [51bef3be8fff0e697240d2cce3b8d9984ab3d2bd]

Merge SRX643: 05.08.02 - 22:36:21


2002-08-05  Kurt Zenker  <kz@openoffice.org>  [f928e3f556283877af6ed751e49c053539635063]

Merge SRX643: 05.08.02 - 22:29:58


2002-08-05  Rüdiger Timm  <rt@openoffice.org>  [77e66b64c63544e6d597b3f1a39d3eec61dba9bf]

Merge SRX643: 05.08.02 - 22:29:47


2002-08-05  Kurt Zenker  <kz@openoffice.org>  [6eb9b93d1a4e2fa5fc7ab779fea9db457c33bc81]

Merge SRX643: 05.08.02 - 22:27:38


2002-08-05  Kurt Zenker  <kz@openoffice.org>  [b1db9f1eba240e1b8b2fbf31fc9de101de1af21d]

Merge SRX643: 05.08.02 - 22:26:46


2002-08-05  Rüdiger Timm  <rt@openoffice.org>  [7af99dec55fca86e01424738f4b7d4572e15ad77]

Merge SRX643: 05.08.02 - 22:26:59


2002-08-05  Kurt Zenker  <kz@openoffice.org>  [f886e98a4fcd3c650e99b8e548e473d4a3fe479a]

Merge SRX643: 05.08.02 - 22:25:36


2002-08-05  Oliver Bolte  <obo@openoffice.org>  [bc28429a4865fdfab0842fdcf406f78bc023c6e0]

Merge SRX643: 05.08.02 - 22:24:50


2002-08-05  Daniel Rentz  <dr@openoffice.org>  [c26a20b1222f588c75975e29ac0982b81eb6c8aa]

#101677# accessibility strings


2002-08-05  Sascha Ballach  <sab@openoffice.org>  [35094a5a3dad2a06373596893b6eec3eb388dd57]

#102036#; add lang::IndexOutOfBoundsException


2002-08-05  Sascha Ballach  <sab@openoffice.org>  [62e76d216545ee9e89ecb89b7c15c8df9d26c05b]

#102036#; add lang::IndexOutOfBoundsException


2002-08-03  Kurt Zenker  <kz@openoffice.org>  [b542086f5f9afec41601a36a710ecb8a89cf8f00]

Merge SRX643: 03.08.02 - 22:07:10


2002-08-02  Kurt Zenker  <kz@openoffice.org>  [0a88735361337add1206f8770e52facf8233385b]

Merge SRX643: 08/02/02 - 22:46:27


2002-08-02  Kurt Zenker  <kz@openoffice.org>  [c9d18dd400f14d1dad3b29479b26c04f578e5ac3]

Merge SRX643: 08/02/02 - 22:45:29


2002-08-02  Kurt Zenker  <kz@openoffice.org>  [7fc01748eab4e92169bd32659a9a936730325f4c]

Merge SRX643: 08/02/02 - 22:40:48


2002-08-02  Kurt Zenker  <kz@openoffice.org>  [7005151e0e259d799725f83bdfaf15d7c36b69ba]

Merge SRX643: 08/02/02 - 22:23:46


2002-08-02  Kurt Zenker  <kz@openoffice.org>  [7e3717f986c4f038bd26e2f349d6d41e9aa7af45]

Merge SRX643: 08/02/02 - 22:18:45


2002-08-02  Rüdiger Timm  <rt@openoffice.org>  [742c6e5b593008bbbfbc10424172718ae6a56705]

Merge SRX643: 02.08.02 - 22:08:48


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [296b13cafa05ce87034f3a6eb42f73468fa06e24]

#102015#; the servicename is AccessibleSpreadsheetDocumentView


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [417a35ee0035c91401a05361a88c1f9a428f9ce5]

#102016#; the name is ScAccessiblePreviewTable


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [68ff7665d4a3042e8699baa8b110aa9e21f9bf0a]

#102003#; throw IndexOutOfBoundsException added


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [1dc30120f3715b847d5c878431571430c3a6e7f5]

#102000#; return -DBL_MAX as minimum value


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [19bc941a72098c619473da6b2d584af62ebc8642]

#101998#; throw IndexOutOfBoundsException if index is not in range


2002-08-02  Thorsten Behrens  <thb@openoffice.org>  [905f6056aad924633dc14880a74c6785203cfa0e]

#101003# Changed SvxEditSourceHintTranslator class name


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [c0922468e07590a98a020158eeea8bb7779de497]

#101994#; if the cell is not visible I should return the position -1,-1


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [b7c652b017f45ea1c0ae729e80ef53e653a4a1c5]

#101987#; only return a AccessibleAt of the point is in the range


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [0df01f90ae63aa5ac0b839ae06628235f10aea80]

#101986#; it is not relative to the parent window, it is relative to the same window, because the parent has the same window


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [102042295c5d394bd26704d0e1a3cbfdf9587cbf]

#101984#; give the BoundingBox relative to the parent and not to the window.


2002-08-02  Sascha Ballach  <sab@openoffice.org>  [97feebcdec45df910b9e24643a54d6d0fea6d751]

#101982#; ask the rectangle whether the point is in the rectangle and not the point whether it is in the rectangle


2002-08-01  Kurt Zenker  <kz@openoffice.org>  [b15666e7c62940b95a61d3912ed3e58c9a0668b0]

Merge SRX643: 01.08.02 - 22:26:12


2002-08-01  Kurt Zenker  <kz@openoffice.org>  [7e947f56274b61b135c2471f15c87c5f1842bb64]

Merge SRX643: 01.08.02 - 22:24:54


2002-08-01  Kurt Zenker  <kz@openoffice.org>  [b9b0fef256a76f9409d8ae2846e66ec278384973]

Merge SRX643: 01.08.02 - 22:18:59


2002-08-01  Kurt Zenker  <kz@openoffice.org>  [02cf46e3f67cb969cb5eeb75e1b68198a65382bb]

Merge SRX643: 01.08.02 - 22:17:49


2002-08-01  Kurt Zenker  <kz@openoffice.org>  [9eba836e899fc4f941100c89860a50fe43189ea8]

Merge SRX643: 01.08.02 - 22:17:00


2002-08-01  Sascha Ballach  <sab@openoffice.org>  [cec39334499f396d7036025c705580c1d964a707]

#101875#; return the correct index


2002-08-01  Daniel Rentz  <dr@openoffice.org>  [064e445044d76061b04919f16b5619f173dc785f]

#100000# use GetColor()


2002-08-01  Sascha Ballach  <sab@openoffice.org>  [805394dd9b04b863fc3acf43beb4a46c2081d2cc]

#101891#; fill the method getAccessibleChild


2002-08-01  Sascha Ballach  <sab@openoffice.org>  [62abcb377110fb5a49b82ee63198e387942114f2]

#101887#; the shapes in the page preview should not have relations, because it is possible, that the cell with the relation is not visible. Also it is not a needed information in the preview and also not possible to get by the GUI


2002-08-01  Daniel Rentz  <dr@openoffice.org>  [0194aa3d0780e98d620da5bff8113404e8756b21]

#101677# preparations for acc


2002-08-01  Sascha Ballach  <sab@openoffice.org>  [d9889f560b10ae27f9046a6c3aa8c546311e7384]

#101887#; don't have an empty method, use the method of the base class


2002-08-01  Daniel Rentz  <dr@openoffice.org>  [8115f2fd010b4de036f10ad88c037646df821862]

#101677# FileName -> URL


2002-08-01  Sascha Ballach  <sab@openoffice.org>  [4fdf753d1b8864619fdbfd1c6190a7ef7b9bab99]

#101887#; return a empty Relationset instead of an empty object.


2002-08-01  Sascha Ballach  <sab@openoffice.org>  [85ecff275ffbf125afb84036add11fac38fa1441]

#101923#; set member mpTextHelper to NULL in the constructor


2002-08-01  Sascha Ballach  <sab@openoffice.org>  [56c1a71b70dbabc0b98dbdf69784cc8b2f77e321]

#101894#; set member mpTextHelper to NULL in the constructor


2002-07-30  Daniel Rentz  <dr@openoffice.org>  [f3e1f7f5e7d87c540ad3190d8387473ff4417fe8]

#101694# no image for page format


2002-07-30  Daniel Rentz  <dr@openoffice.org>  [2fae7dadc2f64a21999099fa7e06555e34bb38a9]

#101128# standard node bmp's


2002-07-30  Daniel Rentz  <dr@openoffice.org>  [4dcc8d6cf37634f8e6576158e7141e96b51ef63e]

#101128# standard node bmp's


2002-07-29  Daniel Rentz  <dr@openoffice.org>  [55e8ae028628c9ced1ee4d3cb7de2572c6245532]

#97328# avoid single closing bracket in FAP


2002-07-29  Eike Rathke  <er@openoffice.org>  [812b938278a60b45b60e20c86bfd09a785fd01ba]

#100289# exclude subsets of RTL_TEXTENCODING_GB_18030 in import dialogs


2002-07-29  Daniel Rentz  <dr@openoffice.org>  [41169887c27269d364878a7977cb87dacdda01df]

#101561# HC for autofilter buttons


2002-07-29  Daniel Rentz  <dr@openoffice.org>  [0960df2fa45dc82cf3238b1add49ca364670a751]

#101561# HC for autofilter buttons


2002-07-29  Vladimir Glazounov  <vg@openoffice.org>  [81003d2bd99ca376db908de7b7b1ee38c50cb106]

#100000# added file to exception section


2002-07-26  Sascha Ballach  <sab@openoffice.org>  [1957d94312bdcd1c9351ab8c8169764968014594]

#101739#; it is possible, that there are two sheets with the same name so I should catch the exception


2002-07-25  Vladimir Glazounov  <vg@openoffice.org>  [208bf9326f4e4f60f2314b30e348e9dd426308b8]

#100000# added temp variable (gcc)


2002-07-25  Daniel Rentz  <dr@openoffice.org>  [40f4b723253a84a62f82709a60a9da5f8cf8b19b]

#101162# strings changed


2002-07-25  Daniel Rentz  <dr@openoffice.org>  [f59e7bffc719771edfcf4178b137a41491e35bfc]

#101160# strings changed


2002-07-24  Sascha Ballach  <sab@openoffice.org>  [68685a10aaee7453ccec335822a33c14db5f262a]

#101675#; add accessibility API support


2002-07-24  Sascha Ballach  <sab@openoffice.org>  [f7c10f3a9bd2404b434ea137600bef6245efd3eb]

#101326#; use the new compare method to compare the password and the hash


2002-07-23  Daniel Rentz  <dr@openoffice.org>  [a5b087f9ca16785051c7d932d586b8fea58cb326]

#101655# handle TAbs


2002-07-23  Daniel Rentz  <dr@openoffice.org>  [879505c2699b9a561c3e257c2473113020c9438b]

#101655# def. column width = 8


2002-07-23  Daniel Rentz  <dr@openoffice.org>  [f3d80449906f0e48ebf758baf550f295ec415a1c]

#101560# entries for all languages


2002-07-23  Daniel Rentz  <dr@openoffice.org>  [3c484ffc349baa9f4905a125550e74b2466c9cd6]

#101548# #60934# preview fixes


2002-07-23  Daniel Rentz  <dr@openoffice.org>  [13dd1a8e4be8847771051761745a8ead149058b8]

#101548# wrong childorder


2002-07-23  Sascha Ballach  <sab@openoffice.org>  [b4c3700acdc5ac0aae86f05581987b13bdd46578]

#101587#; close header-columns before group-columns and reopen header-columns again


2002-07-22  Sascha Ballach  <sab@openoffice.org>  [ef8f326e80e58cb4d2a093b9c3fe32535bd13793]

#99667#; access to pMedium no longer necessary


2002-07-22  Daniel Rentz  <dr@openoffice.org>  [8c394d21754c2ecd50062adaef93ceeb661dfc8f]

#101132# HC for FAP treebox


2002-07-19  Niklas Nebel  <nn@openoffice.org>  [b9eec3f4fdf5bcd34c2c5ecea226db33f409ac5c]

#101226# recording of FID_INS_TABLE


2002-07-19  Stephan Schäfer  <ssa@openoffice.org>  [7b5ba4a79d3a809d24502825eb9b3e44e746ba24]

#98154# set minimal splitter stepsize for cursor movement


2002-07-19  gt  <gt@openoffice.org>  [cdd2a305af7d50ffe69ae641675f55dc0f2a1c06]

#101523# node default images for ScContentTree (4 Navigator)


2002-07-19  Daniel Rentz  <dr@openoffice.org>  [43a6635c1dac40d6471b6baa0cb19c75b5274fe8]

#101132# new images for FAP


2002-07-19  Niklas Nebel  <nn@openoffice.org>  [1a32cf735e64b6281b965c15a1cf1a488b27e45d]

#101466# recording of SID_SELECT_DB


2002-07-19  Daniel Rentz  <dr@openoffice.org>  [5b1d9aa94ff039e88ce86eca5f0a1a9fa49fd94b]

#100907# export of Legal paper format


2002-07-18  Armin Weiss  <aw@openoffice.org>  [e06e7a98b9e6bcad79be81d7cfacde350cf0acb2]

#100263# Support creation of GraphicObjectResolver and EmbeddedObjectResolver


2002-07-18  Daniel Rentz  <dr@openoffice.org>  [19bb7167f944058679e5ae95aef857bf84710ad5]

#92967# without CJK, hide left/right and top/bottom buttons


2002-07-18  Mathias Bauer  <mba@openoffice.org>  [3c947c62760cc452da23e62c25e2ea1769c4db5d]

#101460#: Recording


2002-07-18  Mathias Bauer  <mba@openoffice.org>  [88349f3ebc27523ab034c05509648b03da12ad59]

#101457#: recording


2002-07-18  Mathias Bauer  <mba@openoffice.org>  [8e2918870cbad4c8fe072a2dca103f63c729d5b5]

#101430#: recording


2002-07-18  Mathias Bauer  <mba@openoffice.org>  [e78f83b1cf69f0084e4cc3b69de97e23a0b10be0]

#101460#: Recording


2002-07-18  Armin Weiss  <aw@openoffice.org>  [ce0f1354a23c943a4fb6b1d04504fcef8b7db5c8]

#95491# mechanism to remember button state for creation of own MouseEvents


2002-07-18  Armin Weiss  <aw@openoffice.org>  [0e37ecffb9feee0467205b00e526298d17df5ace]

#95491# mechanism to remember button state for creation of own MouseEvents


2002-07-18  Daniel Rentz  <dr@openoffice.org>  [6dbb530dca477ed069711bf52fdc0f4537491fd9]

prevent record overread


2002-07-18  Daniel Rentz  <dr@openoffice.org>  [a176c899dc0098093ae9e056a36ec1a9069628c3]

#95882# indentation of dependent CB's


2002-07-17  Eike Rathke  <er@openoffice.org>  [7bfaffb8808b1f44726e02d0828f3ccea2ca7089]

#101162# add: AsciiSave: fixed width text export


2002-07-17  Eike Rathke  <er@openoffice.org>  [e9c844e6f521f0788fefa3976036d4411c012890]

#101162# character values are sal_Unicode


2002-07-17  Eike Rathke  <er@openoffice.org>  [98812628c7c13557070d4cd3559c3e15d171422b]

#101162# character values are sal_Unicode


2002-07-17  Eike Rathke  <er@openoffice.org>  [618941a4cfa9f7eb1c7e305dd5ac88c8117e7f02]

#101162# AsciiSave: use ScImportOptions


2002-07-17  Daniel Rentz  <dr@openoffice.org>  [107c5fabac8f12762b64bcd6775923ef32d88c19]

#99113# ill.arg.exception for XAutoFormattable::autoFormat()


2002-07-17  Daniel Rentz  <dr@openoffice.org>  [18c5ad8920030c55f798e0f5ada416843eca6929]

#101162# pos of last listbox corrected


2002-07-17  Daniel Rentz  <dr@openoffice.org>  [1e7672e7ecfb9ca084f3a6088086786da367a5c4]

#101439# repaint & keyboard handling


2002-07-17  Niklas Nebel  <nn@openoffice.org>  [f5e8ee617f6e297b16e3d35b1c83189b5f9bdb00]

#101163# text import: for date columns, accept date values without separators


2002-07-16  Niklas Nebel  <nn@openoffice.org>  [9b5eb6bb276ee64680fc072a9bbe0455ba66fe8f]

#101160# PasteFromClip: no overwrite warning if using an arithmetic function


2002-07-16  Mathias Bauer  <mba@openoffice.org>  [577de36794a9bfa140675b571ae2c038e1b805af]

#101392#: allow parameter for FID_TAB_MENU_RENAM


2002-07-16  Niklas Nebel  <nn@openoffice.org>  [348c79f4b96ba4277196dc2252a79d46aa098185]

#101160# warning when cells are overwritten in paste


2002-07-16  Niklas Nebel  <nn@openoffice.org>  [4b30ad209b1c854d398a46477c2773e9ab37118e]

#101160# Execute: set the right return value


2002-07-16  Daniel Rentz  <dr@openoffice.org>  [d757659803e279f7bd6446d7412e437d68a6d8f7]

#101160# typo


2002-07-15  Niklas Nebel  <nn@openoffice.org>  [8b87ee0a13082c979af4d65340db965843981cca]

#101161# GetAreaSize: GetPrintArea instead of GetCellArea, to include objects


2002-07-15  Niklas Nebel  <nn@openoffice.org>  [2daebfd22a780716b004721f57a560015ed2f6a5]

#101161# allow drawing objects at copy&paste of cells


2002-07-12  Eike Rathke  <er@openoffice.org>  [10c9e8091e53b840547d328b31f8f572f31da7b5]

#99759# #i5438# PasteDraw: set the right object shell


2002-07-12  Mathias Bauer  <mba@openoffice.org>  [7eba74433f91573477ea5bcf8601bbfa58322432]

#101193#: don't record internal dispatches


2002-07-12  Mathias Bauer  <mba@openoffice.org>  [7f6616efc0ed2a57dfdfc63ae9de96f23c1f8698]

#101229#: recording


2002-07-12  Mathias Bauer  <mba@openoffice.org>  [47720d73f3be78bcf554c139552dbd69fa23060c]

#101229#: recording


2002-07-12  Mathias Bauer  <mba@openoffice.org>  [25b8b38750beaff2bf6d44b7095ccfde0d2eb015]

#101215#, #101206#: recording


2002-07-12  Mathias Bauer  <mba@openoffice.org>  [559c22bea7a915b780fe17ab0ffb104d5b95a641]

#101204#: record integer lists


2002-07-12  Daniel Rentz  <dr@openoffice.org>  [f216b1cf5aa7349935690a59f4fa9c82ee57ac1a]

#101162# CheckBox 'Fixed width' in Ascii export dialog


2002-07-12  Sascha Ballach  <sab@openoffice.org>  [f983e80273f1bf8740dae94fbee8d07232817d39]

#100530#; don't assert if there is no obejct, because the event could be for another gridwin; don't notify every single child change, notify all childchanges together


2002-07-12  Mathias Bauer  <mba@openoffice.org>  [e83e095eff1ae3966dbaf6622fa0f2745d450f1e]

#101196#: more parameters for InserCellContent


2002-07-12  Mathias Bauer  <mba@openoffice.org>  [529cc17693fa58aa8aaa960dba533e42df22b0ad]

#101197#: recording for TrackChanges


2002-07-12  Daniel Rentz  <dr@openoffice.org>  [f3ed3e50501ebf075a1637b01911b88040c7efb4]

#100032# fast scroll redraw error, no tracking for popup


2002-07-11  Daniel Rentz  <dr@openoffice.org>  [23074672fa9ee36ef883fe52ba30dbabb682336a]

#100032# mouse drag for column selection, performance


2002-07-11  Daniel Rentz  <dr@openoffice.org>  [8018ea44dc24809cd9e8e8006d53bb46cd8f81f7]

#101160# UI/API for ReplaceCellsWarning


2002-07-11  Daniel Rentz  <dr@openoffice.org>  [647034e9cb07d6c795d61f29ae634078c6f56d24]

#101160# UI/API for ReplaceCellsWarning


2002-07-11  Kurt Zenker  <kz@openoffice.org>  [e3bdabbca7f7f4b0a72327d55bea5cd48bbf8a62]

#100000# syntax for linux prod


2002-07-10  Sascha Ballach  <sab@openoffice.org>  [433e911988e7edc0b7ca19dadbfb6d0268e687fc]

#100862#; don't load other OLE2's as Charts


2002-07-10  Oliver Bolte  <obo@openoffice.org>  [92d1f5f2eff74000de460806009c83010bb408b6]

#100000# syntax linux


2002-07-10  Daniel Rentz  <dr@openoffice.org>  [535f444aef78559e24bbbd3d4ae286ac1940123d]

#100032# arghh - missing void


2002-07-09  Daniel Rentz  <dr@openoffice.org>  [d1bbe0fcb836fe3909c88bc7495b900ca50916ae]

#98133# default row format


2002-07-09  Daniel Rentz  <dr@openoffice.org>  [ad22962c3c3f4e1cfef23938ef942a3322dddd8d]

#98133# default row format


2002-07-09  Mathias Bauer  <mba@openoffice.org>  [ffee02a961821fb31c40f2e6756447fccb81aeb1]

#101130#: wrong define for DrawToolItem - controller is not creatable


2002-07-09  Eike Rathke  <er@openoffice.org>  [fade83d3af96239f868ea04333184117d639535e]

#101103# undo last changes, the cause is a missing conversion in chart (docshell.cxx 1.51)


2002-07-09  Daniel Rentz  <dr@openoffice.org>  [8982c02da88a9e85932923195120753e901ca577]

#100616# cubic units wrong by 1000


2002-07-09  Daniel Rentz  <dr@openoffice.org>  [95a1204ee98990a2ac6b8a90d9eff2a25484d3be]

#100928# tUnion without parentheses


2002-07-09  Björn Milcke  <bm@openoffice.org>  [2ef0cf177381c2b0c02eea43652c2861f6e211be]

#101103# on CopySettings copy also the SomeData strings that contain reference information for          the underlying data used.


2002-07-08  Daniel Rentz  <dr@openoffice.org>  [5056d91b1b724e71a46c67538d8e43e205c9f3f8]

#100032# performance on inserting/removing splits


2002-07-08  Sascha Ballach  <sab@openoffice.org>  [ea454bff0287fdbdf0c24ac0304ff82950965a7d]

#100530#; recognize focus change and tell it the children


2002-07-08  Sascha Ballach  <sab@openoffice.org>  [d3ba5ea6e3b5d85cb7e27c750c4773795f42b482]

#100530#; add FocusLost and FocusGot methods


2002-07-08  Sascha Ballach  <sab@openoffice.org>  [ee62182b0e4f9252b6e9b467897b70888b50c286]

#100530#; notify AccessibleObject on FocusGot and FocusLost


2002-07-08  Sascha Ballach  <sab@openoffice.org>  [ae1a3b689e10b6cb6e8b5e22ce8516d90e920e6e]

#100530#; remove GridWinChange notification, because the gridwin does it now


2002-07-08  Sascha Ballach  <sab@openoffice.org>  [7c9feb9ad9b775e61251a81f8c1ed71a7ba49b5e]

#100530#; split the GridViewChange into GridWinGot and GridWinLost


2002-07-08  Daniel Rentz  <dr@openoffice.org>  [c52bc3591047b3c0bc34e8c83bbf3248b9db44ed]

#100032# CSV import dialog - fixes


2002-07-08  Mathias Bauer  <mba@openoffice.org>  [d59bd4c6aeb48daef59aaa54a116fe1618cd7f42]

#100952#: new slots for recording


2002-07-08  Daniel Rentz  <dr@openoffice.org>  [b8b43ffbabca52554ccc3f23fa6056ee8b2d4d49]

#100032# new TableBox in CSV import dlg


2002-07-08  Mathias Bauer  <mba@openoffice.org>  [de7139737b699c7f0f73c6e010b8aa29ee6dcdf9]

#100952#: record protection


2002-07-08  Mathias Bauer  <mba@openoffice.org>  [3e8bb093b553c7c4fd18867b8c8cc5ac10fe94f2]

#100952#: new slots for recording


2002-07-08  Mathias Bauer  <mba@openoffice.org>  [899e4efc349c48fa6851e5b95aed7c6ee7b3db38]

#100952#: new mids for recording


2002-07-05  Daniel Rentz  <dr@openoffice.org>  [13e487b3cf8560f46a29fae1782382aaa9d7922d]

#100032# TableBox redesign in CSV import dlg


2002-07-05  Daniel Rentz  <dr@openoffice.org>  [ca90f5fef4b4d8196268477e38d08bc53fb2edf6]

#100032# TableBox redesign in CSV import dlg


2002-07-05  Sascha Ballach  <sab@openoffice.org>  [d37ca4d3933703e25cd3dcb73edfbc913579833a]

#99771#; make change recognition and notification work


2002-07-05  Sascha Ballach  <sab@openoffice.org>  [be36030bbc61d69cb3204a3bfb8edb14d9ec4572]

#100000#; required change


2002-07-05  Sascha Ballach  <sab@openoffice.org>  [6a08e7d3b33a8d804aa02b12c8144441344031e3]

#100692#; the services are in drafts...


2002-07-04  Niklas Nebel  <nn@openoffice.org>  [b0020841a8389da0fbe2ba5831268b105def8443]

#100959# SID_ATTR_BORDER_OUTER: use default line only if width was 0


2002-07-04  Niklas Nebel  <nn@openoffice.org>  [7f844e0d47eb42e749ba81bfd63c80f95e17d24f]

#100960# slot execute implementation for SID_ATTR_BORDER_SHADOW


2002-07-04  Sascha Ballach  <sab@openoffice.org>  [0e60891e0e3d569e3ea3b9193e540cc0cd69fdda]

#99771#; make change recognition and notification work


2002-07-04  Sascha Ballach  <sab@openoffice.org>  [66bc74c6e3c3e94e54d7a6a982dd2d90794b3374]

#100994#; test whether the current split window has the editview


2002-07-04  Sascha Ballach  <sab@openoffice.org>  [bc33cbe21ffead067c22935a3f71feb27656a441]

#99771#; add createAccessibleName, createAccessibleDescription, getBoundingBox and getBoundingBoxOnScreen


2002-07-04  Sascha Ballach  <sab@openoffice.org>  [b04a66e116a08f207c005004a2ac1b72b57a2aa6]

#99771#; add createAccessibleName, createAccessibleDescription, getBoundingBox and getBoundingBoxOnScreen


2002-07-03  Eike Rathke  <er@openoffice.org>  [05e08d0e7853ff000761881fc515e374c23d23e3]

#94103# lcl_DecompValueString: don't create temporary String of NIL


2002-07-03  Mathias Bauer  <mba@openoffice.org>  [9f6cf4a0a7eb09eb8719e3e13e9b5314dea70d21]

#100962#: some attributes added for recording


2002-07-01  Niklas Nebel  <nn@openoffice.org>  [004eeaa5a2a22453269866cfeb7d0f6297303435]

#100125# PasteRTF: use InsertText(XTransferable) for EditEngine format


2002-07-01  Eike Rathke  <er@openoffice.org>  [2f60ef9fadd423abf47b450483a2edd47554700f]

convert.ini dead since years, is now in configuration


2002-06-28  Sascha Ballach  <sab@openoffice.org>  [a5d4be9225fdb7a4116fef24e8c38927f5f1a817]

#100692#; add component description


2002-06-27  Niklas Nebel  <nn@openoffice.org>  [96341aed04ef229f7b39fe0eee617d573ae8710c]

#100259# when loading cond.formats/validation, store formula text, convert to tokens in CompileXML


2002-06-27  Sascha Ballach  <sab@openoffice.org>  [9641229e0c566521b134de7fd8f683ed3129e32f]

#100763#; call Init after creating accessible shape object


2002-06-26  Thorsten Behrens  <thb@openoffice.org>  [23508539cdb182454aab46641c7e6e33c52aa639]

#100593# Adaptions to new AccessibleTextHelper/AccessibleStaticTextBase interface


2002-06-26  Niklas Nebel  <nn@openoffice.org>  [70504a3a5dc8bc6dbbe125a65014f4e55e7d82fd]

#97205# queryPrecedents/queryDependents: can't use cached MarkData for aNewRanges


2002-06-24  Niklas Nebel  <nn@openoffice.org>  [702816adcd46dc5fcbdccce746a624a6c079db50]

#100639# AdjustPrintZoom: dont divide by zero if columns/rows are hidden


2002-06-24  Niklas Nebel  <nn@openoffice.org>  [34e98ba86b901850b87ef54b1a77de8d74ab1220]

#99139# correctly save CELLTYPE_SYMBOLS, correct old string cells after loading


2002-06-24  Sascha Ballach  <sab@openoffice.org>  [4d39e51411ee0946aa0036bfc2e25c272d5defed]

#100613#; notify the accessible object of the Editline if the EditEngine is started or stopped, also if it is created to use it with a dialog


2002-06-20  Sascha Ballach  <sab@openoffice.org>  [4bfba0530fe9e64391f037cfb9abbe0eea054263]

#100515#; also check focus changed if selected shapes count is equal, because while traveling by keyboard over the shapes the shapes are not deselected before the new one is selected #100486#; make all points in LogicToPixel absolute like specified #100520#; refill the ShapeTreeInfo if the DrawView is created


2002-06-20  Sascha Ballach  <sab@openoffice.org>  [f92e8480e932bf812eabec724baab431e178aa78]

#100521#; send braodcast to TextHelper and than delete EditViewForwarder


2002-06-18  Sascha Ballach  <sab@openoffice.org>  [1d3195786478e301fafbe0db581f5cdd4626a16f]

#100452#; write endtag of header rows also if some rows are repeated


2002-06-18  Niklas Nebel  <nn@openoffice.org>  [bdce7de22b1597ef959c4c07eb07e1f8712dcbc1]

#100398# use scroll bar size from settings


2002-06-17  Sascha Ballach  <sab@openoffice.org>  [ce970f00f414ad39565b8dd387977a72b29e5011]

#100287#; also recognize deselecting of a shape


2002-06-14  Eike Rathke  <er@openoffice.org>  [5245cc8b41e09b16f389d2f0592d0cc18b950a0f]

#100306# ScRawToken: don't confuse endian in binary loaded external and unknown token types


2002-06-14  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a880a48b5ae978be719776665335a2bc27c19968]

win/tcsh


2002-06-13  Hans-Joachim Lankenau  <hjs@openoffice.org>  [3ff23342fa2518114534b8088265fc89ab0d3188]

win/tcsh


2002-06-13  Sascha Ballach  <sab@openoffice.org>  [c30f444585cddf51665cf1f5310a6c2ad9df98dd]

#100287#; don't disable internal shapes to make notes accessible


2002-06-13  Kurt Zenker  <kz@openoffice.org>  [d0acd0327699c01bb2164092f75e123b620747a3]

Merge SRX642: 13.06.02 - 14:46:24


2002-06-13  Sascha Ballach  <sab@openoffice.org>  [54b15e4cba991d17fcbfc4f14e762acf92602a24]

#99751#; the EditViewForwarder should be created always and not only if bCreate==true


2002-06-13  Sascha Ballach  <sab@openoffice.org>  [816300bc69bbbb549a50062e8adfea31a76179e5]

#99751#; the TextHelper should get the focus


2002-06-13  Sascha Ballach  <sab@openoffice.org>  [1a8528a566fd492d2cf78e2634746bbddaab8ea7]

#99751#; some little fixes


2002-06-13  Sascha Ballach  <sab@openoffice.org>  [67edd5236c7769f9361224715cc4edf9c5202fb5]

#100287#; I should set the focused state on the focused shape


2002-06-13  Sascha Ballach  <sab@openoffice.org>  [580d606ea5157e329db28aefef085d09effebe9f]

#100287#; the API should be notified if a shape gets selected


2002-06-12  Sascha Ballach  <sab@openoffice.org>  [e4ec2ab56fbe4708ee9acf130826dc0a7b2a99ae]

#99745#; don't call mpViewShell after reseting


2002-06-12  Sascha Ballach  <sab@openoffice.org>  [523348a434c43293267b450864d24cea027e0283]

#99745#; the EditLine should commit focus change and destroying


2002-06-12  Sascha Ballach  <sab@openoffice.org>  [edfc1d97631364653087a6179a4c9158de8fc198]

#99745#; tell the AccessibleObject Focus change and deletion of this window


2002-06-12  Vladimir Glazounov  <vg@openoffice.org>  [947ff5e0609252704efb008609e155febf59447e]

#100000# merge error


2002-06-11  Sascha Ballach  <sab@openoffice.org>  [62be2a7f9fc9136756b0c5a2fc7b5899d7f3e98e]

#99751#; give the listeners also to the texthelper


2002-06-11  Sascha Ballach  <sab@openoffice.org>  [08a4f729ee9509054b526f582da1da1bb89a572f]

#99745#; the editline should call the Editsource to tell text changes


2002-06-11  Sascha Ballach  <sab@openoffice.org>  [850825d490ab8fc3f8b6f81cf2338da884d49e43]

#99745#; tell the accessible object if text is changed


2002-06-11  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f064e42deb8487121354d54d6fac575017751794]

wrap idlc and regmerge


2002-06-11  Kurt Zenker  <kz@openoffice.org>  [e7934b7b2f1f692ba5e02c1e4b3002058ea6636b]

Merge SRX642: 11.06.02 - 14:35:15


2002-06-11  Sascha Ballach  <sab@openoffice.org>  [890e868995d484e0b50cce44284f697209ef3b9d]

#99742#; return the complete children count, because the bridge handles it


2002-06-11  Sascha Ballach  <sab@openoffice.org>  [82d4d87335a32ea5641f2c55ce784990b02123ca]

#99745#; enable using of this class in edit line


2002-06-11  Sascha Ballach  <sab@openoffice.org>  [2e18287c60d866c0b540e0348963f17f17aa9ee3]

#99745#; add a new EditSource to use with the edit line


2002-06-10  Vladimir Glazounov  <vg@openoffice.org>  [b72fadf875c752322e60cb4ae4246c5626096e8c]

Merge SRX642: 10.06.02 - 22:13:54


2002-06-10  Kurt Zenker  <kz@openoffice.org>  [fbd231497d2c6d7469e3345741b92e519f2a8ad7]

Merge SRX642: 10.06.02 - 17:25:28


2002-06-10  Kurt Zenker  <kz@openoffice.org>  [92ebead8784565606566261a6538852561867335]

Merge SRX642: 10.06.02 - 17:21:13


2002-06-10  Kurt Zenker  <kz@openoffice.org>  [79cf240de66f4ffaa581e2c39c4f5d18c1c414f1]

Merge SRX642: 10.06.02 - 17:16:45


2002-06-10  Kurt Zenker  <kz@openoffice.org>  [8ee6d816e73abf86afe34e8828f3f65334f48957]

Merge SRX642: 10.06.02 - 17:15:57


2002-06-10  Sascha Ballach  <sab@openoffice.org>  [a001397f3cc0e631be69ca2aab59f73c36ff5af4]

#99751#; #99874#; add new child if cell goes into edit mode or OLE object is opened


2002-06-10  Sascha Ballach  <sab@openoffice.org>  [36d13768e2fc64924ed3b5f3d5f7369667d0f861]

#99751#; a cell should also provide the XAccessibleText interface


2002-06-10  Sascha Ballach  <sab@openoffice.org>  [0b9b9069b508efe42af4cffbed187f381498621b]

#99745#; #99751#; allow remove listener while disposing


2002-06-10  Sascha Ballach  <sab@openoffice.org>  [07240c6f523b275c1eb955fe4408c2a221b67757]

#99745#; #99751#; make Editline and Cell in Editmode accessible


2002-06-10  Sascha Ballach  <sab@openoffice.org>  [56d6fabf05de6e4a11ae1b2df377b61a974d949b]

#99751#; notify changing of edit mode


2002-06-10  Sascha Ballach  <sab@openoffice.org>  [12e92ad9058632faa9d610964117ff76ea0f8d69]

#99745#; make Editline accessible


2002-06-10  Sascha Ballach  <sab@openoffice.org>  [ef47314238c0f79bae16b4a5f36a374e725fbdc2]

#99745#; #99751#; AccessibleEditObject added


2002-06-10  Sascha Ballach  <sab@openoffice.org>  [d4b7ab03cae0591712600d7bc432acf17df621ba]

#99745#; #99751#; AccessibleObject to represent a cell in edit mode or the editline


2002-06-07  Niklas Nebel  <nn@openoffice.org>  [eedfbe13536e137611e892953fca8dccba4d7300]

#99018# set MapMode before drawing headers


2002-06-06  Sascha Ballach  <sab@openoffice.org>  [dea9b2e1df7cb4da06c10dce99d0dcc415921819]

#99742#; add CHILDREN_TRANSIENT state


2002-06-06  Sascha Ballach  <sab@openoffice.org>  [3675e024fe9f113eaef38e9aa933750a4a6e2791]

#99742#; add CHILDREN_TRANSIENT state; remove ChangeEditMode


2002-06-06  Mathias Bauer  <mba@openoffice.org>  [a33bff090877300461df72607a721c1e0f88de36]

#99966#: SID_INPUTLINE_ENTER not recordable


2002-06-05  Sascha Ballach  <sab@openoffice.org>  [63cce908bd0ed37e6dc36a73a410c06fc7f717fe]

#99445#; insert rows if there are rows with no cells in it (not valid)


2002-06-05  Vladimir Glazounov  <vg@openoffice.org>  [b722f09703055373be7a2a720f9d85842e527d89]

#65293# corrected merge error


2002-06-05  Daniel Rentz  <dr@openoffice.org>  [7e9a20fcce23b0293dd7190dd513b0b5781efc44]

new recs


2002-06-04  Mathias Bauer  <mba@openoffice.org>  [d1763ba6d81e011b1dc59736a122613d191bc7a6]

#98570#: Recording of SearchDialog actions


2002-06-03  Mathias Bauer  <mba@openoffice.org>  [924ba68e0a5f23781b5e1cbab574beabaa7cb579]

#99843#: assert unique UnoNames


2002-06-03  Niklas Nebel  <nn@openoffice.org>  [3ddaae62aa726839591ee7c8c01fe47a9e67ccca]

#99782# high contrast images in navigator


2002-05-31  Niklas Nebel  <nn@openoffice.org>  [a5a4ee0e8139b6f6871f2b754b5c0af426866293]

#99775# use image list to supply high contrast images for stylist


2002-05-31  Daniel Rentz  <dr@openoffice.org>  [7b72376456a16716b5283f7769262df54482acb8]

#99810# HC support for Fx button in FAP


2002-05-31  Daniel Rentz  <dr@openoffice.org>  [47322d743626eae43bd88886152c19061d01350f]

#99785# hfedtdlg.hrc hfedtdlg.src tphfedit.cxx


2002-05-31  Daniel Rentz  <dr@openoffice.org>  [4c473aaeff35f0b0520e6eaf725763e0a0b89794]

#99768# HC bitmaps for ScRefButton


2002-05-31  Daniel Rentz  <dr@openoffice.org>  [7b8c1de80bb0cec7b8a5379be4f7425790b60b8d]

#99768# HC bitmaps for ScRefButton


2002-05-31  Daniel Rentz  <dr@openoffice.org>  [fe8d5817b44089e94fb60833427fae91e3b3f16a]

#99784# HC support for Page style->Sheet tabpage


2002-05-31  Daniel Rentz  <dr@openoffice.org>  [3b35f08f5b04bd64cbe18aaae90b7d2706ae2cb8]

#99768# HC bitmaps for ScRefButton


2002-05-31  Kurt Zenker  <kz@openoffice.org>  [e7fb8b8cd5dfd42e1eedbffbc305b1fc1b8383a1]

Merge SRX642: 31.05.02 - 11:35:00


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [ce468955e2f1e5fd5e5996286cc6a6121d43cac3]

#95584#; protect the object if invalid


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [7acc9976f7140f02ab7c9a3807227f62015a42ec]

#95584#; only start listening if mpDrawModel is


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [e8b4f636cf91f19e5946aa585d98996c8af37f55]

#95584#; send Active_Descandent event to the first listener


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [00fe7cfac39f874af5b50b00a3b2ab0cc7600aad]

#95584#; add IsObjectValid method which throws a lang::DiposedException if the object is not valid and use it


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [0876e39cbe0f4558160c282fe1de430b992785a5]

#95584#; add IsObjectValid method which throws a lang::DiposedException if the object is not valid


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [0e0d02eb367f0fe704a0b1a83d29b12cec602642]

#95584#; tell the cell that the editmode changed; protect the object if invalid


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [5ae222a463c515fee3fef18a28fe19eb9dd1c96d]

#95584#; tell the cell that the editmode changed


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [4d9c91bcb3fed9112028fdc821670bd903e856e5]

#95584#; add editmode and drawlayer hints


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [b35ae22c9094a86cc12e89edcd973559f483752f]

#95584#; notify drawlayer creation


2002-05-31  Sascha Ballach  <sab@openoffice.org>  [a447b37bece38e893bc7009821643c6aa1988825]

#95584#; notify change to editmode


2002-05-30  Niklas Nebel  <nn@openoffice.org>  [ca3c2d7513ffbdf1272d15e1e5b935315aa22810]

#98136# use setting for automatic color in cell background/border/shadow


2002-05-30  Daniel Rentz  <dr@openoffice.org>  [acdac9bad5857292ac3d81abf4970bb1482cf4cd]

#97776# New DP popup entry 'Filter'


2002-05-30  Niklas Nebel  <nn@openoffice.org>  [c46276d222414b49493e1db20a0a6b4088fd7897]

#99704# support for high contrast images


2002-05-29  Niklas Nebel  <nn@openoffice.org>  [208c365ea3447d7f9d1bc107527bde466c206046]

#99643# use high contrast image if necessary


2002-05-29  Niklas Nebel  <nn@openoffice.org>  [af3c3634b1cfda72d9d32ffbf99e77a9b2ee5b3a]

#99620# changed mask color for high contrast image lists


2002-05-29  Niklas Nebel  <nn@openoffice.org>  [32a1a9f0c330299a97bb1d008fe2cf81d128098b]

#99038# call filter options dialogs from FilterOptionsDialog service instead of ConvertFrom/To


2002-05-29  Sascha Ballach  <sab@openoffice.org>  [50b957b2f4eac288109f02c39f5f68e9bd98a5c4]

#99556#; write needed flags also on shapes in a groupshape


2002-05-29  Sascha Ballach  <sab@openoffice.org>  [c2b9081dd5044722de0a59839a903fb364f33833]

#99556#; use nLayerId


2002-05-29  Daniel Rentz  <dr@openoffice.org>  [eaded1000c7677c7983e2ef13ccc505a1f47f71e]

#99651# detect BIFF8 in Book stream


2002-05-28  Vladimir Glazounov  <vg@openoffice.org>  [691f5a6982682b5f420ba49a7728c1cfe263cfbc]

Merge SRX642: 28.05.02 - 22:19:34


2002-05-28  Kurt Zenker  <kz@openoffice.org>  [e721e1e4a7b176d431335b972002ec176bc99926]

Merge SRX642: 28.05.02 - 22:16:34


2002-05-28  Kurt Zenker  <kz@openoffice.org>  [06f3bb64c3b016d9f61667ae5b1711848beb0551]

Merge SRX642: 28.05.02 - 22:17:26


2002-05-28  Vladimir Glazounov  <vg@openoffice.org>  [7d4c9163d62ab345e8d3c6564014b716b906e4d0]

#65293# added STL header


2002-05-28  Sascha Ballach  <sab@openoffice.org>  [deb8f5132c602f28366cf723eb504a7f8058dd0d]

#95584#; remove #ifndef PRODUCT macro


2002-05-28  Jens-Heiner Rechtien  <hr@openoffice.org>  [0b4c957067a6856b575cdc507a819ed0af0ccad0]

#65293#: fix broken line terminator


2002-05-28  Sascha Ballach  <sab@openoffice.org>  [3273d32e464be1b2cd6d7952ed4f76d26f1175e6]

#99532#; set grouped shapes also on the correct layer


2002-05-27  Mathias Bauer  <mba@openoffice.org>  [f9e8b83f73794a3f799b12d74d533e4518b56ae6]

#98405#: Slots reorganized


2002-05-27  Kurt Zenker  <kz@openoffice.org>  [8eeefbb06926622557d2656700331eb791f1e03c]

Merge SRX642: 27.05.02 - 14:34:56


2002-05-24  Niklas Nebel  <nn@openoffice.org>  [53350e2f71108a3376030af8489faeae7df16f40]

#98721# put created field control to right layer


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [a7239dc2ad5deb0c67db56e8c1eb103b527b2209]

#95584#; add cr at the end of the file


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [a066460eeebb893daeb993734145becbd88e99d4]

#95584#; add DrawModelBroadcaster and AccessiblePageHeaderArea


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [eb4312c3f9c296fefe4ab828940e11f0749cb917]

#95584#; add notes and shape support


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [c590b521a26eeb92fb14281c70618981f20ec2ce]

#95584#; add text support


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [8f3068448b3edffc9a3aba426c525aa75ff2ae0b]

#95584#; make some methods const methods


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [5d236c6df89d08e6d2f6c8919fd59d60ef8ffc56]

#95584#; complete the shape support


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [b2ebb2355a2239f65c3fb4ee888279f33b0f8588]

#95584#; make some methods const methods; remove FocusListener


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [8763834b62a99328c4f2685fd5213d7b0763ab45]

#95584#; make every area (left, center, right) of the header/footer a own child


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [e8c785260335e07cfc51c9472196588880d77607]

#95584#; make GetBoundingBox a const method


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [86af3f3d566c1395e70833ecf5f0bff22d938b10]

#95584#; add Forwarder of the preview


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [7ae97c747d0943353baf0b1793e5e4fb85311bac]

#95584#; create a Broadcaster to broadcast draw events


2002-05-24  Sascha Ballach  <sab@openoffice.org>  [84e679bba930bf2dc0b7c6b295eb9a73c351e51e]

#95584#; add RangeId to have the draw ranges unique


2002-05-24  Daniel Rentz  <dr@openoffice.org>  [912dda8a3b1e761607708415e42c7db00b4263e8]

#65293# merge error corrected


2002-05-23  Rüdiger Timm  <rt@openoffice.org>  [7dba8d3e5a54a55ba9720c25817c1550a7fb4d91]

Merge SRX642: 23.05.02 - 22:16:13


2002-05-23  Vladimir Glazounov  <vg@openoffice.org>  [6cd5b6d105f443115f4bc1eb7d5a8096193cb0a1]

Merge SRX642: 23.05.02 - 22:15:53


2002-05-23  Niklas Nebel  <nn@openoffice.org>  [2cbf48e52f129d626253d79048de75f5976a2a80]

#98721# support creating field control from field selection window


2002-05-23  Sascha Ballach  <sab@openoffice.org>  [0f26c5a01fe0c9f1e77bcef62625c5f09b176446]

#95584#; include XFocusListener


2002-05-23  Daniel Rentz  <dr@openoffice.org>  [e861a2fd2e23ac8f9c081834da180ba39811a815]

#99369# new slot select tables


2002-05-23  Daniel Rentz  <dr@openoffice.org>  [af2ac7868d60f826762a525682d3ab71446c1ff8]

#99369# selektieren -> auswaehlen


2002-05-23  Niklas Nebel  <nn@openoffice.org>  [4b49673a486028d2873a89cc0e12b3272dc25b1e]

#98115# ExecGallery: insert sound as hyperlink button


2002-05-22  Daniel Rentz  <dr@openoffice.org>  [1b288ab5ee84c6f2a0497b9328454aa171ebf4d6]

#99357# use StyleSettings for cell pushbutton


2002-05-22  Daniel Rentz  <dr@openoffice.org>  [3b4d201714889ead49136423a958efacc2f845d0]

#99357# use StyleSettings for controls


2002-05-22  Daniel Rentz  <dr@openoffice.org>  [d2f2d9a8669def894fb39e4121a0dee9ef269a55]

#99369# New dialog 'Select Sheets'


2002-05-22  Daniel Rentz  <dr@openoffice.org>  [1045c7bdb862b487f593afb299b13dc459d0aeda]

#99429# sheet bounds for HLINK


2002-05-22  Daniel Rentz  <dr@openoffice.org>  [70dd16e3c63e409c7ad19eac412e9843b4cfb69b]

#99369# New dialog 'Select Sheets'


2002-05-22  Daniel Rentz  <dr@openoffice.org>  [da3ae799c3c4327463eee41032eb8d9a62d1ffef]

#99369# New dialog 'Select Sheets'


2002-05-21  Kurt Zenker  <kz@openoffice.org>  [97073c68e3b02841320b12a4e8bb5804bb198455]

Merge SRC641: 21.05.02 - 11:30:47


2002-05-21  Kurt Zenker  <kz@openoffice.org>  [27a1c875e95aa7cbcded36452a005fecb0b640dc]

Merge SRC641: 21.05.02 - 11:27:17


2002-05-21  Vladimir Glazounov  <vg@openoffice.org>  [ccd5492cc74b63e5e7066eaf3a2a296558db2c22]

Merge SRC641: 21.05.02 - 11:27:15


2002-05-21  Kurt Zenker  <kz@openoffice.org>  [02fd1191c3d5def194e0e1e59fdd9ce0bd3fc650]

Merge SRX642: 21.05.02 - 11:14:08


2002-05-17  Thorsten Behrens  <thb@openoffice.org>  [4c086aeb6c1e0d63dc9f166e5d3d97e42edac00f]

#98735# Refactored text accessibility helper


2002-05-16  Kurt Zenker  <kz@openoffice.org>  [f7fe5c1d2c88ef745e1186e6e060013edbd5e8c1]

Merge SRX642: 16.05.02 - 17:09:01


2002-05-16  Kurt Zenker  <kz@openoffice.org>  [ee62fc58511694d5181bcfa9f420e3086a29ddf8]

Merge SRX642: 16.05.02 - 16:44:30


2002-05-16  Niklas Nebel  <nn@openoffice.org>  [5c854e27fadd879e574c81af007f1e70cf1b28bd]

#97665# allow renaming of graphics and groups


2002-05-16  Niklas Nebel  <nn@openoffice.org>  [702b4a9b3dbcadcfd516b89d78b943c229aab755]

#97665# show named groups in navigator


2002-05-16  Niklas Nebel  <nn@openoffice.org>  [3171f7ab7eb859f401f611b5e63b3ba7a8e7eb42]

#99319# create line end polygons closed and without name, test for open or closed


2002-05-15  Daniel Rentz  <dr@openoffice.org>  [605db9dbaf2ff5908fc1733c205aad58f19440c2]

#99040# help ids for DateFunc AddIn


2002-05-14  Andre Fischer  <af@openoffice.org>  [677110b8f3f601680356e450a0f549affa93f0ae]

#95585# Adaption to new signature of ShapeTypeHandler::CreateAccessibleObject


2002-05-14  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f43abba5a785dc572bd142ea94bc9fd91887447c]

win/tcsh


2002-05-14  Hans-Joachim Lankenau  <hjs@openoffice.org>  [d26f23f504bd0505daff7c110ed7eccf447be3c9]

win/tcsh; cleanup


2002-05-14  Carsten Driesner  <cd@openoffice.org>  [9c325b0e1e4e1b1f8e591a486ad0d76f9f49ec1d]

#98419# Changed command names that are not unique


2002-05-13  Daniel Rentz  <dr@openoffice.org>  [2636bad0cb3e54a62eba16bf513fa7e45a193ea2]

#99254# crash on export of XF recs


2002-05-13  Daniel Rentz  <dr@openoffice.org>  [0da30092048e9b1b55d2187e9821eea2daf64e67]

#99254# crash on export of XF recs


2002-05-08  Niklas Nebel  <nn@openoffice.org>  [bc954aa62f17c6b6f54e27601ddb9193ed9bf139]

#98820# use right colors in preview


2002-05-08  Niklas Nebel  <nn@openoffice.org>  [f47d4f8716ef21c1f7fe854aec769aaa7fa60e4c]

#98820# RefreshNoteFlags: also UpdateAllArrowColors


2002-05-08  Niklas Nebel  <nn@openoffice.org>  [e3c877a587e75108b2143b13016d3abc5030503b]

#98820# update detective objects if colors were changed


2002-05-08  Niklas Nebel  <nn@openoffice.org>  [01f527da525eb0322c32f5e3800a2a7450459d65]

#98820# use colors for detective objects from configuration


2002-05-07  Niklas Nebel  <nn@openoffice.org>  [bbe240dfbe4a4b0c022bf56fb80cd096068db934]

#98198# start drawing object text edit by keyboard


2002-05-06  Niklas Nebel  <nn@openoffice.org>  [8b2da2b007ca3756fd92f4c632c0f916195b0fe5]

#97022# use of automatic font color in EditEngine text


2002-05-06  Armin Weiss  <aw@openoffice.org>  [cdb5b40fe0003c1936800e3fc59cf1a74e21b75c]

#98994# handle Mod1 and Mod2 to get travelling running on different systems


2002-05-06  Niklas Nebel  <nn@openoffice.org>  [486a5b9ca8928a76c68fa6b8039b7d6c56b5a096]

#95584# added draw ranges to location data


2002-05-03  Sascha Ballach  <sab@openoffice.org>  [564d779a86d431e824df0f420a2304f68768da68]

#99079#; read the attribute marked-invlaid


2002-05-03  Sascha Ballach  <sab@openoffice.org>  [e8e4834487dd8effea3f1c6bfa93973598b2c865]

#99079#; write the attribute marked-invlaid


2002-05-03  Sascha Ballach  <sab@openoffice.org>  [040f7109a37b4e74b224f3b55135b0656721503f]

#99079#; add also circle objects


2002-05-03  Sascha Ballach  <sab@openoffice.org>  [4214d9d8fd9b02019051b3bfa0d65d7464e9be6c]

#99079#; add marked-invalid to highlighted-ranges attributes


2002-05-03  Sascha Ballach  <sab@openoffice.org>  [5b4c6cc0737dd3fb9d8b439a3dd8900b684f6eeb]

#99079#; delete only arrows


2002-05-03  Sascha Ballach  <sab@openoffice.org>  [b5c5daadb1ecf3e8a1d5b6aef098c34917ac41f0]

#99079#; use SC_DET_ARROWS to delete only the arrows (not the circles)


2002-05-03  Sascha Ballach  <sab@openoffice.org>  [b18067e22fbb727efde264c58aeef2dd55a8fee9]

#99079#; add SC_DET_ARROWS to ScDetectiveDelete enum to make it possible only to delete the arrows


2002-05-03  Niklas Nebel  <nn@openoffice.org>  [f64cae3abbe0c94475ead012f18a1b3e9b0740b1]

#98820# use colors from configuration


2002-05-03  Kurt Zenker  <kz@openoffice.org>  [4bfbad78fd08902ee78f51f3f74c6f3ce3a716da]

Merge SRX642: 03.05.02 - 03:26:13


2002-05-02  Kurt Zenker  <kz@openoffice.org>  [9283a05a54fdfc791c564c56bf5fe8e3bc384a4b]

Merge SRX642: 03.05.02 - 01:58:11


2002-05-02  Kurt Zenker  <kz@openoffice.org>  [6668526d1a60c5382a4620248b173822cd6a7b34]

Merge SRX642: 03.05.02 - 01:52:42


2002-05-02  Niklas Nebel  <nn@openoffice.org>  [5a95b6f119bbbc13b1136552958a79a48fff6514]

#99070# removed special names and flags from common slots


2002-05-02  Daniel Rentz  <dr@openoffice.org>  [b10ca29ac54452948e5d46d0a605503b24fdc654]

#99040# HIDs for DateFunc AddIn


2002-05-02  Niklas Nebel  <nn@openoffice.org>  [b77bd293d5ad348715fcfc82fc16b5f9833a0423]

#98001# don't invalidate location data when setting the same offset again


2002-04-30  Jens-Heiner Rechtien  <hr@openoffice.org>  [f13d0789c155ee04f5c3573c770d4537379910fc]

#65293#: include <algorithm>


2002-04-29  Niklas Nebel  <nn@openoffice.org>  [98b49a345d19b5a130d9699fa1bf80f0d95194f5]

#98820# use colors from configuration


2002-04-26  Thorsten Behrens  <thb@openoffice.org>  [59cc4ce4af6af1e6ed76c0665f81046de77608be]

#98735# Adapted to changes in SvxEditSourceHintTranslator


2002-04-25  Niklas Nebel  <nn@openoffice.org>  [987c4a35180b877eaa2c39dbbcbe9863afcacc7c]

#97223# high-contrast aware drawing of note and overflow markers


2002-04-25  Niklas Nebel  <nn@openoffice.org>  [76d4252f5b6c355784432abada3f2e1bd5d9a60b]

#97223# set high contrast drawing modes also for painting note marker and text edit view


2002-04-25  Christian Lippka  <cl@openoffice.org>  [4effa0f24a4e059621324bcb4cfbd79ce3145737]

#98860# replaced the 2 boolean items with the SvxWritingModeItem


2002-04-24  Niklas Nebel  <nn@openoffice.org>  [17013cf2aae3b1901e5accda9f3cdf956769db89]

#98824# handle option to use system colors in page preview


2002-04-24  Niklas Nebel  <nn@openoffice.org>  [700219cbcd8af9405c26e4c723a13dd12c1109d8]

#98824# handle option to always use automatic font color


2002-04-24  Niklas Nebel  <nn@openoffice.org>  [1d115495272bf4a1f56b7545d5317790d173c8fb]

#98824# handle option to always use automatic font color


2002-04-24  Niklas Nebel  <nn@openoffice.org>  [ca6e57e58c94dc678a848e1b3b945a5f85c07151]

#98824# keep ColorConfig and AccessibilityOptions


2002-04-24  Niklas Nebel  <nn@openoffice.org>  [f8b555741c761adbed2136dd97f61b7e780507e3]

#98824# GetFont: allow to force all text colors to automatic


2002-04-24  Niklas Nebel  <nn@openoffice.org>  [da9bdede87b9bb25bf4865338ebbfd9b80700b3c]

#95584# make table that is shown available


2002-04-23  Niklas Nebel  <nn@openoffice.org>  [e8fdc085115ec9526f10168c1d71b7c8c91eea54]

#95584# make missing information about headers and notes available


2002-04-23  Niklas Nebel  <nn@openoffice.org>  [7af6f55ea055a4e81ff1c813c2be44651db1eef0]

#98745# don't use a different color for the function description


2002-04-23  Sascha Ballach  <sab@openoffice.org>  [f31d29d7030f77728dbef569996928edc27e550b]

#98902#; set the correct layer of control shapes


2002-04-22  Daniel Rentz  <dr@openoffice.org>  [5c822e524833c5cc960e4afd6faecbf257e8b4b3]

#98252# DP controls with system colors


2002-04-19  Sascha Ballach  <sab@openoffice.org>  [ef7b5b0f52ebe9884c239f376a626d399c16a8a5]

#95584#; add Selection and Relation Support for Shapes


2002-04-19  Sascha Ballach  <sab@openoffice.org>  [d84484c020f45888247f560c5fea8003cabfd20f]

#95584#; add CompleteSelectionChanged which is called from the document to tell the sheet that it has or has lost the selected state now


2002-04-19  Sascha Ballach  <sab@openoffice.org>  [64734f15f13dad37bb9e644e76fdce553ac164f7]

#95584#; make all commit methods const


2002-04-19  Sascha Ballach  <sab@openoffice.org>  [a9792d73c7ebb67b4e4a3c3540d89b3a095ab4a4]

#95584#; make all commit methods const and CommitChange public so it is possible to call it in helper classes


2002-04-19  Niklas Nebel  <nn@openoffice.org>  [9c37521f40a5a5b4cdc8e172fa2808aa7e2a691c]

#98853# ScUndoPaste: use ScRefUndoData instead of RangeName and DBCollection


2002-04-19  Niklas Nebel  <nn@openoffice.org>  [88f5087d178be18516701bf5cb0783d96fab0cd6]

#98256# activate OLE object on RETURN for selected object


2002-04-18  Niklas Nebel  <nn@openoffice.org>  [4caa4c110307a59224fe533ed2faac22ab5a402d]

#98001# slot to close preview, zoom handling


2002-04-18  Niklas Nebel  <nn@openoffice.org>  [37c22ada73af4dbfe523ef9bf308ac00fba3ac3c]

#98001# slot to close preview


2002-04-18  Daniel Rentz  <dr@openoffice.org>  [71a0c4c91ef045bcd36c5349fb4d604cd72699ed]

#98530# Header/footer on/off on export


2002-04-18  Niklas Nebel  <nn@openoffice.org>  [525c59166eb1f7b197533817d8ff38682900d9ea]

#97023# new look for column/row headers


2002-04-17  Niklas Nebel  <nn@openoffice.org>  [1c0ceeb169d619f2fd3290590c8c384e1794d061]

#92618# call SetDrawModified also when position is changed


2002-04-17  Daniel Rentz  <dr@openoffice.org>  [e8365094b21918ca945e59b4b5dc5c3137f89402]

#98528# export cell indentation


2002-04-17  Niklas Nebel  <nn@openoffice.org>  [0a9dc4d47fdc1bbecbe591b313e20f6043a16b1a]

#95409# NextAutoEntry: when editing in input line, apply to both edit views


2002-04-17  Niklas Nebel  <nn@openoffice.org>  [0fe1a0b3ded6281a691fd5b3a30cf803026600bf]

#95409# UseColData: when editing in input line, apply to both edit views


2002-04-17  Daniel Rentz  <dr@openoffice.org>  [f750ae97d6f4566ca990a4cb0469c1d5899167a4]

#98526# shrink print ranges to sheet dim


2002-04-17  Daniel Rentz  <dr@openoffice.org>  [7edfe226bb5b36158b60217ca511c584a5b1cc70]

#98525# import grid color from 1st visible sheet


2002-04-17  Daniel Rentz  <dr@openoffice.org>  [4598b59b00ede60297ab6fcd54cf1eccf6f41dbf]

#98524# reset del-ref flags of references


2002-04-17  Daniel Rentz  <dr@openoffice.org>  [e435ee9ff6bd0b627940b1b91586c7bfb806e44c]

#98126# set doc options before import


2002-04-16  Niklas Nebel  <nn@openoffice.org>  [7eb0684fc7a1303283627ee67154044f8ba1a3fe]

#98001# draw border and shadow, leave space for margin at optimal zoom


2002-04-16  Niklas Nebel  <nn@openoffice.org>  [b6ad779bd6f7394e990e0dfffe8dfe7ebb004877]

#98001# center preview if smaller than window


2002-04-16  Daniel Rentz  <dr@openoffice.org>  [2a11d076f5f04d5f5b26211d91adb4afc8a77a75]

#98529# #98530# #93482# Page settings fixes


2002-04-16  Daniel Rentz  <dr@openoffice.org>  [84a762d82176fc65a9518999ec42ec0af14cbd68]

#98529# #98530# #93482# page settings fixes


2002-04-16  Daniel Rentz  <dr@openoffice.org>  [a4c97c077c8fe49d45cda611f3fbf8e2a1414a7f]

SETUP, *MARGIN


2002-04-15  Eike Rathke  <er@openoffice.org>  [c9f6789ec69d920aca1c493120a180d71db22491]

#97286# MergeDocument: flag if 100th seconds are loaded and to be used in time compares


2002-04-15  Eike Rathke  <er@openoffice.org>  [c7a4fe0f0d9329bef857c4019f720686ae3ac0ef]

#97286# flag if 100th seconds are loaded and to be used in time compares


2002-04-15  Eike Rathke  <er@openoffice.org>  [d562d8a4601e162f9640f4e429b2393779acdef4]

#97286# activate ChangeTrack 100th seconds only if really loaded (not stored in old files)


2002-04-12  Niklas Nebel  <nn@openoffice.org>  [8cabd0147f519bdefa9475ac767377d4d52da749]

#95319# include width/height in undo when moving whole columns/rows


2002-04-12  Sascha Ballach  <sab@openoffice.org>  [f042f5d421a2decc672e2babc2e98a56e1b915b2]

#98665#; don't try to get default style out of the range of the default styles


2002-04-11  Daniel Rentz  <dr@openoffice.org>  [8ca52232c1102eb9f476fd1ea127758c4f21d489]

#98504# import/export label ranges


2002-04-11  Daniel Rentz  <dr@openoffice.org>  [8e92792bfb6755c5c89675b14834b03d43aa7584]

no predump for dv recs


2002-04-11  Sascha Ballach  <sab@openoffice.org>  [6b80df03749156bdd9e2d6ed2759f35db7768cd9]

#95584#; make isCompleteSheetSelected work


2002-04-11  Sascha Ballach  <sab@openoffice.org>  [3a38da941067f480319c357195578857dc3fcdea]

#95584#; add child selection


2002-04-11  Sascha Ballach  <sab@openoffice.org>  [2310fb51bfea89dbf5bb384466784981a74925ad]

#95584#; set draw selection mode if necessary; unselect all if any or XShapes is empty


2002-04-11  Sascha Ballach  <sab@openoffice.org>  [ae4f1cf4172deffd98b5bc266f93233d52ed0291]

#95584#; remember of setting draw select mode


2002-04-10  Niklas Nebel  <nn@openoffice.org>  [1cf1ec93c482136b9e18049409ed13488e91584e]

#97777# keyboard shortcut for input line


2002-04-10  Daniel Rentz  <dr@openoffice.org>  [d5f33bd98a8c9c4cad5b63ee2ba0486de94ffc21]

label ranges


2002-04-10  Daniel Rentz  <dr@openoffice.org>  [4ed9ba29c6fe8cb8d8dc37ce7f18bda89369b8a3]

#92215# export data validation


2002-04-10  Daniel Rentz  <dr@openoffice.org>  [f3703bc254b86a1dd08ddf7c8b07d1aa06c39d58]

#92215# ignore drop down list button


2002-04-10  Niklas Nebel  <nn@openoffice.org>  [6e4b5818e83c4ba1d79625b91a297157481c7ed6]

#97777# show note marker by keyboard


2002-04-09  Daniel Rentz  <dr@openoffice.org>  [dd6e8c192cf4b2520b641c118030b31fb782ec40]

#92215# data validation import fixed


2002-04-09  Daniel Rentz  <dr@openoffice.org>  [eb6ce57325b02771d6d08376fd197f45e0af2496]

DV update


2002-04-09  Niklas Nebel  <nn@openoffice.org>  [b543a3b89af87f913f924ffc9d7e7e51b0b01141]

#95961# when not loading, assume utf-8 encoding (for clipboard)


2002-04-09  Eike Rathke  <er@openoffice.org>  [3a5c5746c26b0c96fe00e03d275d2a3fa74ed9ae]

#98350# use unsharp CSS font-size values instead of HTML size in style


2002-04-09  Eike Rathke  <er@openoffice.org>  [e2a9bcc050fd279ed962dc2617a45ee173e33661]

#98350# use unsharp CSS font-size values instead of HTML size in style


2002-04-08  Mathias Bauer  <mba@openoffice.org>  [ecf0181ad09de1eaef278850f5ce6fb111d7b695]

#98405#: prepare items and slots for new recording


2002-04-08  Sascha Ballach  <sab@openoffice.org>  [79c8b6877ad6a07e80629d35957def34f5704c10]

#95584#; extend PreviewTextForwarder


2002-04-08  Sascha Ballach  <sab@openoffice.org>  [e97a81dca7cb4596cc5f5f221904749e1e656356]

#95584#; add methods to find out the output rectangle of a cell or header cell.


2002-04-08  Daniel Rentz  <dr@openoffice.org>  [b14deba962beaa7dde793e9742c8da034f364c3b]

#98182# correct 3D reference import


2002-04-05  Niklas Nebel  <nn@openoffice.org>  [3ad4650553e5acd66b7b323283b96f8b1e5e0497]

#98410# Asian vertical writing


2002-04-05  Mathias Bauer  <mba@openoffice.org>  [abba036647a40e392fdba96e2e658075c7a713ef]

#98405#: support macro recording


2002-04-05  Daniel Rentz  <dr@openoffice.org>  [19710efc083b71d789f4adfa1e20b234d0904b76]

#98410# vertical writing corrections


2002-04-05  Oliver Specht  <os@openoffice.org>  [418009a773ef4317eb667f69fc3fc167f9a3208b]

#98312# high contrast ImageLists added


2002-04-05  Sascha Ballach  <sab@openoffice.org>  [353fb6bf2b996c6ca6f49d7884d59fa39c042193]

#98410#; add style:glyph-orientation-vertical to represent vertical writing in calc


2002-04-04  Daniel Rentz  <dr@openoffice.org>  [634ecf36f35e776e4224ca7ba5a5f5cb207cdd00]

#97022# excel imp/exp of font autocolor


2002-04-04  Niklas Nebel  <nn@openoffice.org>  [9b78017502266f5cb3684509dac3d32947837713]

#98410# Asian vertical writing


2002-04-04  Oliver Specht  <os@openoffice.org>  [01b5eedf058bbf41ce9c48293b92e2c6335311f3]

#98312# change removed (static ImageList)


2002-04-03  Daniel Rentz  <dr@openoffice.org>  [1ab2ce699e179c56d7169a4eb6a804bcf09d56cc]

#98410# Asian vertical writing


2002-04-03  Eike Rathke  <er@openoffice.org>  [46c931c2847ef203a693c51e80d1e03c70cd5946]

#98247# remove RTL_TEXTENCODING_STD_COUNT


2002-04-03  Daniel Rentz  <dr@openoffice.org>  [97fde27e28c180f7c405a89dd7a0dd5dff7bc824]

#98410# Asian vertical writing


2002-04-03  Sascha Ballach  <sab@openoffice.org>  [410d9aa6c896a0287eab94ac75c3e0c2fe611cd8]

#95584#; the contains method should be relative to the object itself and not relative to the parent


2002-04-02  Vladimir Glazounov  <vg@openoffice.org>  [371ffef005c94846d7adcc16f4d4374355a57292]

#65293# SAB: add include of AccessibleShape


2002-04-02  Vladimir Glazounov  <vg@openoffice.org>  [62db2dfc3c00a7840b8e77f6cc63f53e66d7c02e]

#65293# reversed incompartible changes


2002-03-28  Mathias Bauer  <mba@openoffice.org>  [956cd9e7cf07eb41984881e94ece5157d7d3a97b]

#98396#: new slot export


2002-03-27  Oliver Specht  <os@openoffice.org>  [e4ce7e2e0cf1d98efd33790cb3db7eb4ca937f35]

#98312# naming convention of ImageLists changed


2002-03-26  Niklas Nebel  <nn@openoffice.org>  [e693e8b94ff58687deadb2a9f615f5df487badb5]

#98185# read default object size from configuration


2002-03-26  Niklas Nebel  <nn@openoffice.org>  [624b72f8b3fa8ae82c496e7ab82d22881b2494f5]

#98185# configuration for default object size


2002-03-26  Niklas Nebel  <nn@openoffice.org>  [50ca2da532061afff9b04eab9bae784b6aa6ca7c]

#98185# configuration for default object size


2002-03-26  Niklas Nebel  <nn@openoffice.org>  [d772abc02f6f35263a6cd5e057972c436cc788d0]

#97627# ScUndoUpdateAreaLink: Delete old contents before copying back


2002-03-22  Vladimir Glazounov  <vg@openoffice.org>  [f06eaa1673a5116d62887029c65418716abee870]

#65293# corrected typo


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [264f2e3a8f5ec122fbd46dd70c845d77f50d80fb]

#95584#; SFX_HINT_DYING handles the base class


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [73b3b0ee3521affad5af4d408678a1cb5bfd8c7d]

#95584#; add shape support


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [95c6b34d1e8e7f7c8a7f2b59ec2c87240c3431c7]

#95584#; split XAccessibleEventListener in a own base class to make it possible to call disposing on the WeakAggComponentImplHelper


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [f02e3507afed9cfbc7993cffe95ea4f15d99473e]

#95584#; add disposing


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [620ad44b20beab32e0cd1c71441435f5165b59db]

#95584#; add disposing; clip boundingbox


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [2f78db87b8f22b4392ba7e089cd4716152cef914]

#95584#; add disposing


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [62e2b822d69ea713e824f6ba14f0e87381b8a3e6]

#98317#; add Orientation to SortParam Sequence; make the relative field numbers absolute


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [05ff665917352f661595e722e18354e6392d3fe8]

#98317#; take the orientation from sort descriptor, because on filterdescriptor the orientation is not set


2002-03-22  Sascha Ballach  <sab@openoffice.org>  [ce805e74dae0b79b28f11d1a0f9c528ec381c2ea]

#98317#; set the orientation while setting sortparams


2002-03-22  Armin Weiss  <aw@openoffice.org>  [9ff3f08fcd9f5cfb8920d5bd587a9bd0ba9b96d1]

#98185# default text for newly created default draw objects


2002-03-22  Armin Weiss  <aw@openoffice.org>  [32b9c60321f7a5f9d62ab4e064a9bb1c1feff42e]

#98185# default text for newly created default draw objects


2002-03-22  Armin Weiss  <aw@openoffice.org>  [a728f187b8a82df40168ac6f0a8e5c4bffc37b4b]

#98185# Create default drawing objects via keyboard


2002-03-22  Armin Weiss  <aw@openoffice.org>  [4d851eab299dec8453c9248cfa57a7e9f849a379]

#98185# Create default drawing objects via keyboard


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [be576c87af6790c396ac64f4b63d4da317a2066a]

#95584#; fix VisArea


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [c2dabce1b1292733924e700c010313697dca7dc3]

#95584#; some little optimization


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [39fc284104b3659b51f6e615c060650e06f0cced]

#95584#; add text support of preview


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [fc495ed1ae40b6a056ffebe751f4e8c84fb63404]

#95584#; replace SetDefunc by disposing (of XComponent); use ImplHelper


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [740a43f1693a8bebbd23a08f6e9f9c29f02c7e36]

#95584#; replace SetDefunc by disposing (of XComponent)


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [943a0e477851ba7bb668bf61c83b7d1e53189019]

#95584#; replace SetDefunc by disposing (of XComponent); add Text support


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [7628f7692bf726ae170cd32f6204347a12d4377d]

#95584#; add Text support


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [1eaad9d030f3ce6cfad7cc1e3bb19a83d9ed5396]

#95584#; replace SetDefunc by disposing (of XComponent)


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [2000cb04ad6b1c4e67694da295e2058f31ec7547]

#95584#; use WeakAggComponentImplHelper6 instead of WeakImplHelper6


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [c25616aea43dac56cabfd01ccea4d6e07a097e98]

#95584#; use ImplHelper


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [a5a4ac801cf772882a17a70966e171d2e6ddfc44]

#95584#; add Preview support for Accessibility


2002-03-21  Sascha Ballach  <sab@openoffice.org>  [646e893312e6faeaf15e32d590a160aef9e0a396]

#95584#; add Preview support for Accessibility


2002-03-20  Sascha Ballach  <sab@openoffice.org>  [ff8ef06bee1e8a6e5fb2bd72b966e6d473d1f1fd]

#98202#; add CompileXML


2002-03-20  Sascha Ballach  <sab@openoffice.org>  [486eab87ab95db553fea7558601db6eef0a583db]

#97595#; use SetTextNewDefaults which takes ownership


2002-03-20  Sascha Ballach  <sab@openoffice.org>  [68d564b9e36189a03c8a18374373ae2ed2861ac4]

#97595#; give possibility to use a SetNewTextDefaults which takes ownership


2002-03-15  Sascha Ballach  <sab@openoffice.org>  [a1c765dd3a447f61b5fcfab143deb4e7abd8c415]

#95584#; return the VisArea relative to the EditEngine base


2002-03-14  Eike Rathke  <er@openoffice.org>  [fa6cb1db0dc9de9689a71ea84fcfab754d4f2884]

#97251# if clipboard, always write UTF-8 and charset info


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [e945b6aec1bbcd3d4f3ca3e6f641b94a023851e6]

#95584#; add TableModelChangeEvent support


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [c5658a045e14723f0912808e5719b8512b199d55]

#95584#; Eventsource is a XAccessible; create Name/Description in Init method; new value of a State Event is the State and not a Stateset


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [73259d964f76c70365cbcd1b82276835b315552e]

#95584#; Eventsource is a XAccessible


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [67b271b8f352af727ef782c1712daac33ca3c8d9]

#95584#; don't create a Point, because it is a Point


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [4407ecf5a0201429d5656463d8cee4db35948b7b]

#95584#; add TableModelChangeEvent support


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [eb33b0c08a1ae2778d19d7d40ef07d25452f7b8f]

#95584#; add SC_HINT_ACC_VISAREACHANGED


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [fed9a01b5ef8c6ad9667039e656cd166dd1f8d83]

#95584#; notify for VisArea changing


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [9b36579a5c260313742bd0d8e1b3c9ba59cdc652]

#95584#; add Accessibility Listener also to the Uno Object Broadcaster


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [fabffee86a1e9a0f0bd587ec493e74839f048aeb]

#95584#; add PropertyChangeListener and VisibleArea Property


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [4e0db1c9a61c037cb9efca2d0bdab7fe91c1e8af]

#95584#; add PropertyChangeListener


2002-03-14  Sascha Ballach  <sab@openoffice.org>  [c6a7501dd0a77c5db42b77976acf3dcc0752dff7]

#95584#; add VisibleArea PropertyName


2002-03-14  Niklas Nebel  <nn@openoffice.org>  [eff81e0d8a68d4a7a7cdf1793ced8eb37d8e16ab]

#97016# select first object with CTRL-SID_OBJECT_SELECT


2002-03-13  Armin Weiss  <aw@openoffice.org>  [34b6458748606c29a238b8f09c0ef0fbe4dc9428]

#97016# Added all necessary stuff to implement draw object keyboard control


2002-03-13  Armin Weiss  <aw@openoffice.org>  [9ae861edf1ce5103f2d0e4c2971f2b9313d4b457]

#97016# overloaded SelectionHasChanged() to implement keyboard editing of draw objects


2002-03-13  Daniel Rentz  <dr@openoffice.org>  [f0af6f77dd3996fcddafa097dff40fc97032917d]

#96965# keyboard control for ref dialogs


2002-03-13  Niklas Nebel  <nn@openoffice.org>  [1ded27d549c96f244c784d5eb1a80413d3d60f7b]

#97052# handle high contrast draw modes when painting drawing objects


2002-03-13  Sascha Ballach  <sab@openoffice.org>  [95bb3cc40ca8ee64f563dfc4ada9922e15e33f06]

#95584#; implement new decision about deselectSelectedAccessibleChild


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [4592065840895d818b50958321e988150a6eb021]

#95584#; XAccessibleSelection interface added


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [8ba2e0af1569e3a4f3fbe49d4e7882c49ce84819]

#95584#; selection implemented


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [f05f5aca5c3ada7b78973bec74d410590d15ef95]

#95584#; call Init method of AccessibilityObject


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [d9c7dc6cffb0714e84df362dcbd4af7a2e6e603f]

#95584#; selection implemented


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [a6acfd612965025b7621ec67702f1e3f53e63f13]

#95584#; XAccessibleSelection interface added


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [00c8680e7d0920a883566f1955ab06efff9c8e7b]

#95584#; remove CellChangeHint and add SimpleHint CursorChange


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [2541d44d701bf230329c4780de38ec33dde64b34]

#95584#; notify event while cursor/selection change added


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [fbe455325f2312dc656e1c0dc6e99aeea11c424b]

#95584#; call Init method of AccessibilityObject


2002-03-12  Sascha Ballach  <sab@openoffice.org>  [2abe14b2f066cffd9f9ea79a4fb44768e27f3f41]

#95584#; create Init method which add as listener instead of the constructor


2002-03-11  Niklas Nebel  <nn@openoffice.org>  [6699708cccd5bd5d2e1767d5ca57be020ed931a9]

#95584# accessibility api for headers/footers


2002-03-11  Niklas Nebel  <nn@openoffice.org>  [e90bdfecc2f3722032fe49cd417a8038fc3b52d4]

#95584# accessibility api for headers/footers


2002-03-11  Niklas Nebel  <nn@openoffice.org>  [efebbb4aa25677054ecd3de463550f48c1ff076a]

#97650# default for text color is now COL_AUTO


2002-03-11  Sander Vesik  <svesik@openoffice.org>  [bee87fadd1a10ca5a68c92c7017498bfeba643ef]

Improve support for MacOSX

Contributed by: daniel boss <daboss@dplanet.ch>

2002-03-11  Niklas Nebel  <nn@openoffice.org>  [2c57c54925c08ddda237f27876cda92848b67bd8]

#97022# handling of automatic font color


2002-03-11  Niklas Nebel  <nn@openoffice.org>  [a21f7fe89c13671b61ef73f9397c903625d9e237]

#97650# changed default for text color to COL_AUTO


2002-03-11  Niklas Nebel  <nn@openoffice.org>  [1e85d5fa213a211228835ce65545ab54ad102c4f]

#97022# handling of automatic font color


2002-03-11  Niklas Nebel  <nn@openoffice.org>  [4e97e6eb4824c702712625fd0a2db0645effc039]

#97022# handling of automatic font color


2002-03-07  Thorsten Behrens  <thb@openoffice.org>  [fb3b9f1c7dc23e3772980bf90fbd2bdc5a934f00]

#96948# Changed SvxViewForwarder interface


2002-03-07  Daniel Rentz  <dr@openoffice.org>  [83a8ce3be7c29731753945159a0df55d5e8162fd]

#96983# Applying a style does not set focus to doc


2002-03-05  Jens-Heiner Rechtien  <hr@openoffice.org>  [be314b4a22f14e2d922b133a558283056ccdf052]

#65293#: syntax


2002-03-05  Sascha Ballach  <sab@openoffice.org>  [65e0706521240367ad8fc9f9cbd83f8da099e5a2]

#95584#; add first step of RelationSet implementation. Relations between shapes are missing


2002-03-05  Sascha Ballach  <sab@openoffice.org>  [ae4ef24e3e8c583f8d0fe417e1e6cd8731291236]

#95584#; remove own getLocale method


2002-03-05  Daniel Rentz  <dr@openoffice.org>  [9e8bc1c2b335f410d46943a6cbe674b20b3f0037]

#97742# cursor control in selection area fixed


2002-03-04  Niklas Nebel  <nn@openoffice.org>  [d3038c7d009b485940b0b7b48fa307a43a379954]

#97032# ITEMID_FIELD must be defined before including EditEngine headers


2002-03-04  Sascha Ballach  <sab@openoffice.org>  [ad7436a26dbc437dc1c9480e962fcd5bf294824f]

#95584#; GetBroadcaster is a logical const method


2002-03-04  Sascha Ballach  <sab@openoffice.org>  [681f15c522e268dfaebb2f99d0cff654527c5b55]

#95584#; add EditViewForwarder support


2002-03-04  Sascha Ballach  <sab@openoffice.org>  [acc5598a4e70c7d694ac18a908b3d301928623d1]

#95584#; ask whether ViewData exists


2002-03-04  Sascha Ballach  <sab@openoffice.org>  [85328080bf07bb3087873e6cf40aa42667ed06fb]

#95584#; add Broadcaster support


2002-03-04  Sascha Ballach  <sab@openoffice.org>  [7c8029a27f480378d2d7b74c66d50ea47522f2d8]

#95584#; add assertion to find out whether UpdateData is called without a EditEngine


2002-03-01  Sascha Ballach  <sab@openoffice.org>  [bacdf93d7407852ca225ccc2acdadadc078b89f8]

#95584#; add a Clone method


2002-03-01  Sascha Ballach  <sab@openoffice.org>  [ae4207eccd6031da0c8dc0ff6e75824335fc0c36]

#95584#; make the Clone method working


2002-03-01  Rüdiger Timm  <rt@openoffice.org>  [b32b156fe6ddd1e7bcc3ac04f06ed5b9daa61a9f]

#87576# sc does not use ITEMID defines out of svx (due to sc/inc/scitems.hxx).


2002-03-01  Daniel Rentz  <dr@openoffice.org>  [1114c6459dc43b7abbdf7fc145f93b7640d83cd0]

#97742# DataPilot layout dialog keyboard acc.


2002-03-01  Sascha Ballach  <sab@openoffice.org>  [c84e603d8d36029e787c00cb915265b77af94ba4]

#95584#; add own getLocale method


2002-03-01  Sascha Ballach  <sab@openoffice.org>  [ec52236e3245734e96e5c13fd90ef81312bcd47e]

#95584#; add XAccessibleText support; copy getImplementationId method


2002-03-01  Sascha Ballach  <sab@openoffice.org>  [bc991daa66a247b44bccb7d8b0b8e8ffcdeb8dca]

#95584#; add ScAccessibilityEditSource for Accessibility


2002-03-01  Sascha Ballach  <sab@openoffice.org>  [6670ff528e8114ed520c14a5a766e14ca893b469]

#95584#; make GetTextForwarder virtual to use ScCellTextData as base class for accessibility


2002-02-28  Niklas Nebel  <nn@openoffice.org>  [b52d60589ff389ca9e4a8b23d1ee64cb23ccf6b5]

#95584# header cells and XAccessibleTable implementation


2002-02-28  Niklas Nebel  <nn@openoffice.org>  [4f40b897d6b3a05b1667ed524b714115e4fd1197]

#95584# header cells and XAccessibleTable implementation


2002-02-28  Kurt Zenker  <kz@openoffice.org>  [42766d2fb611a8785bc451763942dd25ff2bef62]

Merge SRC641: 28.02.02 - 18:14:44


2002-02-27  Niklas Nebel  <nn@openoffice.org>  [451fa2eb0e5b3ddcad1d466655abeb57926c44c2]

#95584# accessibility api for print preview


2002-02-27  Niklas Nebel  <nn@openoffice.org>  [23aabfd9b75f6bc374aa8d11468513514b20f14c]

#95584# accessibility api for print preview


2002-02-27  Kurt Zenker  <kz@openoffice.org>  [d629228c03cfb5f7640933bd1541f6ec8fb0566d]

Merge SRC641: 27.02.02 - 14:19:53


2002-02-27  Kurt Zenker  <kz@openoffice.org>  [fe59cee42408aa3cabc32cbf4239740e40dc17bf]

Merge SRC641: 27.02.02 - 14:15:02


2002-02-26  Kurt Zenker  <kz@openoffice.org>  [36a7764394fbdd8c096b1b00cc5853f219313cf7]

Merge SRC641: 26.02.02 - 15:37:06


2002-02-26  Kurt Zenker  <kz@openoffice.org>  [a141059fc2058aa68bdbbf0fa4bd767da3054091]

Merge SRC641: 26.02.02 - 15:21:41


2002-02-26  Rüdiger Timm  <rt@openoffice.org>  [5914387257ad58d651e9a1da5dada2b7f2a9db53]

Merge SRC641: 26.02.02 - 15:19:48


2002-02-25  Thorsten Behrens  <thb@openoffice.org>  [513bf28f182b8045672ce7c7bfc5aacfec450337]

#96948# Rewrite due to calc requirements


2002-02-25  Sascha Ballach  <sab@openoffice.org>  [9cc92ff25674fb3067d8a78f45a6d24e80ae344f]

#95584#; use SolarMutex to lock the objects


2002-02-25  Sascha Ballach  <sab@openoffice.org>  [b563cf2299257a4afdbc79ba5ec56db8fe5f3b8c]

#95584#; some cosmetic fixes


2002-02-22  Kurt Zenker  <kz@openoffice.org>  [fed941eaf01e9986fdf655817c9f2988d84d32aa]

Merge SRC641: 22.02.02 - 22:22:16


2002-02-22  Kurt Zenker  <kz@openoffice.org>  [bb2fa0f7800fe5103ed1cdab60edcd0975ddd3a9]

Merge SRC641: 22.02.02 - 22:11:58


2002-02-22  Kurt Zenker  <kz@openoffice.org>  [d87b709bdc0cb1e01fb020371c2a404f0ff83b94]

Merge SRC641: 22.02.02 - 22:09:37


2002-02-22  Kurt Zenker  <kz@openoffice.org>  [f8c0ea81610c1e6bc1ec090f105dde80e78801fa]

Merge SRC641: 22.02.02 - 22:08:17


2002-02-22  Niklas Nebel  <nn@openoffice.org>  [0ff125496511506dd6bd69f755052199482a4802]

#95584# make cell positions available from preview


2002-02-21  Kurt Zenker  <kz@openoffice.org>  [5402dd8a078d711bdb2d8da6c34da2602b0ea455]

Merge SRC641: 21.02.02 - 22:24:12


2002-02-21  Kurt Zenker  <kz@openoffice.org>  [bc6278689950c019fabad545d55cb0bb7b8df0e0]

Merge SRC641: 21.02.02 - 22:11:57


2002-02-21  Sascha Ballach  <sab@openoffice.org>  [328478bd1b3754ca267eaf0b34ecb6e03c3998f2]

#95584#; setCurrentValue only if cell is editable


2002-02-20  Sascha Ballach  <sab@openoffice.org>  [c3ae874dc8638157d56a5bb1b6283f672793b2c4]

#95584#; create base classes


2002-02-19  Kurt Zenker  <kz@openoffice.org>  [5116cf0a05ed15a8390cf36107a01d37193524b0]

Merge SRC641: 19.02.02 - 22:19:52


2002-02-19  Kurt Zenker  <kz@openoffice.org>  [4a396334570a4c41e3b7145ed9a685b7324317a6]

Merge SRC641: 19.02.02 - 22:17:54


2002-02-19  Vladimir Glazounov  <vg@openoffice.org>  [3092ef2bd3a4052b887509d2bd550854044e8a43]

Merge SRC641: 19.02.02 - 22:08:50


2002-02-19  Sascha Ballach  <sab@openoffice.org>  [b013857d00cb32169f743dba1ff6cba063954725]

#95584#; XAccessibleEventListener added


2002-02-18  Niklas Nebel  <nn@openoffice.org>  [70efeede8f474ebfac21a0a5766b5e7a641140b9]

#97417# use thesaurus from LinguMgr instead of service manager in HasThesaurusLanguage


2002-02-18  Vladimir Glazounov  <vg@openoffice.org>  [412cf7170cf47f78a627de18fc27ac6620177d4f]

#65293# corrected typo


2002-02-18  Vladimir Glazounov  <vg@openoffice.org>  [453ae85537146ae4061b62b0ccc501bbe4a92e19]

#65293# added exception specification


2002-02-14  Niklas Nebel  <nn@openoffice.org>  [90eea7d7aa9c4cf0677ed1a3df0e9b4c9f1aff37]

#97417# use SvtLinguConfig instead of service LinguProperties


2002-02-14  Niklas Nebel  <nn@openoffice.org>  [0e9245f57ca3f02a1aa6c4735cc37e5297d9d379]

#97417# don't call GetSpellChecker if online spelling isn't enabled


2002-02-14  Sascha Ballach  <sab@openoffice.org>  [e8b0f1dfaf19e0d3fc4920154ea9683ce823c847]

#95584#; call Broadcaster for Accessibility objects


2002-02-14  Sascha Ballach  <sab@openoffice.org>  [798894c66bb41df778241d4edba1c2583680d949]

#95584#; AccessibleComponent implemented; remove API


2002-02-14  Sascha Ballach  <sab@openoffice.org>  [0475919b92cf53ef5a20fec6b050ff602db81772]

#95584#; some hints for Accessibility added


2002-02-14  Rüdiger Timm  <rt@openoffice.org>  [756ba85afb8fb1191bca68ab8c1d08723ffe577f]

#87576# dependency cleanup


2002-02-11  Thorsten Behrens  <thb@openoffice.org>  [29c59c81d078db25ed282731efc937f2bddad9c8]

#96948# Interface adaptions for EditEngine accessibility


2002-02-08  Kurt Zenker  <kz@openoffice.org>  [8474025021cfaca3e43a7f138253a06623719e76]

Merge SRC641: 08.02.02 - 22:23:44


2002-02-08  Kurt Zenker  <kz@openoffice.org>  [c46f83d4085d4d24519359c04ab47fccc32cd70d]

Merge SRC641: 08.02.02 - 22:22:07


2002-02-08  Kurt Zenker  <kz@openoffice.org>  [7effe5ac5b442e429ce558bcc51f3acdb39904b3]

Merge SRC641: 08.02.02 - 22:13:01


2002-02-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc6e974a5058dfab9970b476002e482a4cb6287c]

#65293#: constness


2002-02-08  Jens-Heiner Rechtien  <hr@openoffice.org>  [348cd7ba355bca6e833dd807f585cd88485bc16f]

#65293#: constness


2002-02-08  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a7087ea590f0ceac84e37eb85d8de0446b7cf40c]

#65293# missing include


2002-02-06  Kurt Zenker  <kz@openoffice.org>  [f4c1b391139cd9c0b3846fe938109b10650f4fb2]

Merge SRC641: 06.02.02 - 22:09:06


2002-02-06  Vladimir Glazounov  <vg@openoffice.org>  [b902600c2fbcf9458a06762a1784b1817c026db4]

Merge SRC641: 06.02.02 - 22:08:48


2002-02-06  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0878636a9586963a61b77457c411e263c262b996]

#65293# one more with exceptions


2002-02-05  Kurt Zenker  <kz@openoffice.org>  [ad5a6442e8b80ff9efe920d163616539a6643556]

Merge SRC641: 05.02.02 - 22:24:23


2002-02-05  Kurt Zenker  <kz@openoffice.org>  [3dcdf02a177dcca5af06711652cc2a77e3e4525d]

Merge SRC641: 05.02.02 - 22:22:43


2002-02-05  Kurt Zenker  <kz@openoffice.org>  [534b5154d9d8ae6393448f72a6b6567cfc5a394c]

Merge SRC641: 05.02.02 - 22:12:38


2002-02-05  Kurt Zenker  <kz@openoffice.org>  [3cee74893195f8f7b8454be2e08f948b1d828f12]

Merge SRC641: 05.02.02 - 22:09:46


2002-02-05  Kurt Zenker  <kz@openoffice.org>  [23516ef65fc60587fc549290b60086d3f0b3f4cb]

Merge SRC641: 05.02.02 - 22:09:23


2002-02-04  Kurt Zenker  <kz@openoffice.org>  [fa34ec4a8f04f5d8c13c33def24368e1278c19f1]

Merge SRC641: 04.02.02 - 16:25:10


2002-02-04  Kurt Zenker  <kz@openoffice.org>  [a315fa04547032a7120d1125ca96fc8e010a29d9]

Merge SRC641: 04.02.02 - 12:03:27


2002-02-04  Kurt Zenker  <kz@openoffice.org>  [af0118e064e4d5d9b75f424b729e732d99f1236b]

Merge SRC641: 04.02.02 - 11:56:06


2002-02-04  Kurt Zenker  <kz@openoffice.org>  [6f16671d4dbd1340f4a77768c8ada79875fb0b2d]

Merge SRC641: 04.02.02 - 11:38:47


2002-02-04  Kurt Zenker  <kz@openoffice.org>  [1ec3b781de5d573e311e2b75e5fb301469e3aee6]

Merge SRC641: 04.02.02 - 11:38:38


2002-02-04  Kurt Zenker  <kz@openoffice.org>  [7f1c320fdf70b403ec596142cb362e16a1114e92]

Merge SRC641: 02/04/02 - 11:37:32


2002-02-04  Kurt Zenker  <kz@openoffice.org>  [13421ab35cc62c18c88e9e3be0ebade3fa7ed4cc]

Merge SRC641: 02/04/02 - 11:36:59


2002-02-04  Kurt Zenker  <kz@openoffice.org>  [749ad6073209e89cbac858422d4c1b7c59041b00]

Merge SRC641: 02/04/02 - 11:36:20


2002-02-04  Vladimir Glazounov  <vg@openoffice.org>  [3a77d2a3dfcfd3ce8b6bb9f4b28273b94d3dc2e2]

Merge SRC641: 04.02.02 - 11:36:11


2002-01-31  Sascha Ballach  <sab@openoffice.org>  [e73d1a1897a61e1918ce09c106ebee553690b789]

#95584#; use the new container class for the Listener


2002-01-30  Sascha Ballach  <sab@openoffice.org>  [7d02b75011c4c8cc405af0a68cdc06b33a721c62]

#95584#; move base classes from svtools to sc


2002-01-30  Niklas Nebel  <nn@openoffice.org>  [55ebbf087eaa4a0c4be864dbe32002d4f82f9790]

#97102# use BLACK for automatic font color in WriteCell


2002-01-30  Niklas Nebel  <nn@openoffice.org>  [dde49df66caade3e36d777af91c07db3fc992f3b]

#97102# use BLACK for automatic font color in GetFont


2002-01-29  Martin Gallwey  <mtg@openoffice.org>  [b85816d0591a68688d35341bdadddcc6dafd2498]

#95155# use unbuffered stream access


2002-01-29  Daniel Rentz  <dr@openoffice.org>  [e878906f56665511b379ce6a254410183c17aeef]

allow shared formulas with gaps


2002-01-24  Vladimir Glazounov  <vg@openoffice.org>  [9e9dbecaf6b09238f89ff448f9b0efe346134d3c]

#65293# added EXCEPTIONSFILES section


2002-01-23  Sascha Ballach  <sab@openoffice.org>  [af0b6ddba506453085cc88d78850632eaa5b792d]

#95584#; move AccessibleStateSetHelper to unotools and add getAccessibleStateSet functionality


2002-01-23  Vladimir Glazounov  <vg@openoffice.org>  [3916757d79e09f6446f4e0ce971451c1e02e031b]

#65293# corrected to use with build server


2002-01-22  Kurt Zenker  <kz@openoffice.org>  [d10345ec8d5b17f610b86a666912356f6aec9222]

Merge SRC641: 22.01.02 - 22:11:54


2002-01-22  Eike Rathke  <er@openoffice.org>  [415b92a602caab737569e288f2e13c15bbb3749a]

#96426# CreateExcelQuery: don't trim spaces from query string


2002-01-22  Niklas Nebel  <nn@openoffice.org>  [22d3f353e3ca4799380a63695ae133d9c2bd443f]

#96821# PasteSelection: bSameDocClipboard argument for PasteDraw is needed


2002-01-22  Sascha Ballach  <sab@openoffice.org>  [9ecf851d3915e1493c933d523e296c8cd9eface2]

#95584#; add all necessary throws


2002-01-22  Sascha Ballach  <sab@openoffice.org>  [d8aa36a289ab75d6717fb83232de3646e04b1b35]

#95584#; remove ACCESSIBILITY from header defines; set some states


2002-01-22  Sascha Ballach  <sab@openoffice.org>  [e518f74139666d412aeebdf97963b63eb2876577]

#95584#; remove ACCESSIBILITY from header defines


2002-01-22  Sascha Ballach  <sab@openoffice.org>  [d6055b08753116ddd0da40fb1f3c08a98fa2178b]

#96807#; clear stream before use to write


2002-01-22  Sascha Ballach  <sab@openoffice.org>  [d6aa5c5b322d4ce2d90e2e58cead9882b9b7d90b]

#95584#; use captial letter for Accessibility directory


2002-01-22  Sascha Ballach  <sab@openoffice.org>  [cde01e6a96c73a90aba78f7a1cfff113e3dde499]

#95584#; use createAccessibleDescription, createAccessibleName instead of setAccessibleDescription, setAccessibleName


2002-01-22  Sascha Ballach  <sab@openoffice.org>  [6a708001648bc59bf9e12bd20011c6ad05fa2bfc]

#95584#; getAccessibleStateSet added


2002-01-22  Niklas Nebel  <nn@openoffice.org>  [aee08158b9e2c1d05a28e85d6807eab8a66730ef]

#96783# ChartListenerCollection dtor: delete elements before Timer dtor is called


2002-01-21  Eike Rathke  <er@openoffice.org>  [f2b8495fd58fba3a25c70cdc385d4dbf528d61bb]

#96773# MergeDocument: deleted contents have a NULL new cell pointer


2002-01-18  Eike Rathke  <er@openoffice.org>  [fc2868bdb10637415b1da41a975024031c683027]

#96630# SetPatternArea: shrink predecessor also if multiple areas are thrown away and combined


2002-01-18  Eike Rathke  <er@openoffice.org>  [75d61fa4c3fd7b88a743b656af974467395ba846]

#96630# SetMarkArea: shrink predecessor also if multiple areas are thrown away and combined


2002-01-18  Eike Rathke  <er@openoffice.org>  [d9573317270e06b37e618eea6a9b5404e6c00e6f]

#96692# SearchCell: TextSearchWrapper does already revert result, and offset by one was old behavior


2002-01-18  Eike Rathke  <er@openoffice.org>  [932a4be1f90764be84039c67558d14374045f9a2]

#96630# SetMark: shrink predecessor if not splitting or combining areas


2002-01-18  Eike Rathke  <er@openoffice.org>  [d340716f434a4ad0d5e48d41217754b52be05b99]

#96630# SetPatternArea: shrink predecessor if not splitting or combining areas


2002-01-18  Sascha Ballach  <sab@openoffice.org>  [5312d236e845b76b5394ecfaf5bd41598a8f53a9]

#95584#; getAccessibleChild method throws exception lang::IndexOutOfBoundsException


2002-01-18  Sascha Ballach  <sab@openoffice.org>  [4bd9b9dd8b0cc9d3e39ea632bc228196676c27ed]

#95584#; add Accessibility stuff


2002-01-18  Sascha Ballach  <sab@openoffice.org>  [a2f34d5697c5e8a43658520c3b2ab533810380b1]

#95584#; add the method to get the accessibility classes from the window


2002-01-18  Sascha Ballach  <sab@openoffice.org>  [779b59067058f5abacf2431b4c1b20acd3308296]

#95584#; first version of Accessibility classes


2002-01-18  Sascha Ballach  <sab@openoffice.org>  [91026abb09c8954ba313ecedb509fe9299bd76e0]

#96651#; write the correct filter operator if the filter should use regular expressions.


2002-01-18  Sascha Ballach  <sab@openoffice.org>  [3f9d7427fc78d9ccd9d9e5fd750ef29e1b9dadd7]

#96671#; make the load and save of the filter criteria and the flags work. Remove to store target range of the filter criteria, because there is never a target range and so it is written the wrong content.


2002-01-18  Sascha Ballach  <sab@openoffice.org>  [47748583e5335273dbf2403aa0a8b2b234e3eaa1]

#96651#, #96671#; set the bUseRegularExpression correctly in case of the given parameter and not on every call on true. Handle the count of filter criteria of the data pilot by myself and give every criteria the flag bOnQuery


2002-01-16  Kurt Zenker  <kz@openoffice.org>  [3fe1865f1b6fc814974340118ac8a45948ad59c3]

Merge SRC641: 16.01.02 - 22:18:39


2002-01-16  Kurt Zenker  <kz@openoffice.org>  [1037cfb2004aa7771264f45eda07cbf9745d65fc]

Merge SRC641: 16.01.02 - 22:17:56


2002-01-16  Kurt Zenker  <kz@openoffice.org>  [32558c56011e87c3eeea33fe8d5f262f878ef5a2]

Merge SRC641: 16.01.02 - 22:16:28


2002-01-16  Eike Rathke  <er@openoffice.org>  [9f0679ed546826c4b873f01af56bc99f967420d9]

#96556# in-DDE-link-update flag on per document basis


2002-01-16  Martin Hollmichel  <mh@openoffice.org>  [bc65726ad74a18b4b13cc08984e466bc51f83cf2]

del: old stuff


2002-01-14  Kurt Zenker  <kz@openoffice.org>  [8b8c3b49337ec83d9f642dd88e5964249cccad1b]

Merge SRC641: 14.01.02 - 22:16:17


2002-01-14  Kurt Zenker  <kz@openoffice.org>  [588e4a90f645efc1222087ff6e8f8252df7fa0bf]

Merge SRC641: 14.01.02 - 22:12:03


2002-01-14  Vladimir Glazounov  <vg@openoffice.org>  [56fc97d0a35d9699a28d33d4cc62f780a0b95834]

Merge SRC641: 14.01.02 - 22:12:02


2002-01-14  Kurt Zenker  <kz@openoffice.org>  [ab2d64b535dd9607072d588fbe7b023bb1a193d0]

Merge SRC641: 14.01.02 - 22:10:30


2002-01-10  Daniel Rentz  <dr@openoffice.org>  [145e1ba13c9928ccc8c10f223aa523489192d152]

#96395# french text in CSV dialog cut - correct merge


2002-01-10  Daniel Rentz  <dr@openoffice.org>  [1b767f4d80ad5909bdd814b3ad03db1d885ad824]

#96395# french text in CSV dialog cut


2002-01-10  Kurt Zenker  <kz@openoffice.org>  [c559ad21237a9acc37f36d12aa0eb19b56caa47b]

#96147# mhids needs the include path as fifth parameter


2002-01-09  Kurt Zenker  <kz@openoffice.org>  [4d9ff08f95d4ae73dbb5c27f4ef6603e3ee7a8c0]

Merge SRC641: 09.01.02 - 22:10:42


2002-01-08  Niklas Nebel  <nn@openoffice.org>  [745e6aeeaeb485fe959460cf650b588c7bfb6f2c]

#96117# added extra blocks to force deletion of temporaries


2002-01-08  Daniel Rentz  <dr@openoffice.org>  [2fd1114877ef3bb56bed24079faabe3c5e6bfe3d]

#96263# loop on sheet range 0x0-0xFFFF


2002-01-04  Kurt Zenker  <kz@openoffice.org>  [524ec846720517368b5fc5a623ae6b64dfe70fc6]

#96147# dependency for hidother.hid


2001-12-21  Kurt Zenker  <kz@openoffice.org>  [62f811a16d5e8c53bddd97cd675b25a716800278]

Merge SRC641: 21.12.01 - 22:32:05


2001-12-21  Kurt Zenker  <kz@openoffice.org>  [0665a8fcc2937ea84a05ca806fff3d41d4b88554]

Merge SRC641: 21.12.01 - 22:30:06


2001-12-21  Kurt Zenker  <kz@openoffice.org>  [706dc9faae31361cfac05250fec3965ddd3d5ff2]

Merge SRC641: 21.12.01 - 22:17:36


2001-12-21  Kurt Zenker  <kz@openoffice.org>  [0c93f050a6138e5d526d38d7121770d32ae424a0]

Merge SRC641: 12/21/01 - 22:15:42


2001-12-21  Niklas Nebel  <nn@openoffice.org>  [84dfe1afa21a822436d9af2c96e6de42202cdf16]

#96148# ActivateObject: update ChartRange in MemChart if necessary


2001-12-21  Niklas Nebel  <nn@openoffice.org>  [8f889c7d233ceec68a9bda0b059907b15b99217d]

#96148# after changing SomeData3 in old charts, chart has to be saved


2001-12-20  Kurt Zenker  <kz@openoffice.org>  [b1e793ddcaa31236321471b4137b7eabe4993e52]

Merge SRC641: 20.12.01 - 22:14:03


2001-12-20  Niklas Nebel  <nn@openoffice.org>  [6c2b461dad9c2839e237db4cfcf2a4032640be85]

#95867# HasMacroCallsAfterLoad: no longer needed


2001-12-20  Niklas Nebel  <nn@openoffice.org>  [dbebba800b40293101250e1b345514064a250a97]

#95867# don't call AdjustMacroMode either, SFX handles everything


2001-12-20  Sascha Ballach  <sab@openoffice.org>  [12f1b32149249d28528ff6f0c02670feb795ff9c]

#96159#; handle negative positions in a special branch and catch possible exception


2001-12-19  Niklas Nebel  <nn@openoffice.org>  [883153b4214046edf390ecb18c8ee22d56aa148a]

#95867# DoMacro: distinguish document from app basic by parent, not loop through documents


2001-12-19  Niklas Nebel  <nn@openoffice.org>  [7d6352dbd1dad7af02e39d7cf563e704aed18f85]

#95867# HasMacroCallsAfterLoad: include form controls, CheckMacroWarn: always TRUE


2001-12-19  Niklas Nebel  <nn@openoffice.org>  [05ac0c66ad4501ebdfaf5386a71f290daa0d5ddc]

#95867# use AdjustMacroMode instead of SetMacroCallMode/CheckMacroWarn


2001-12-19  Kurt Zenker  <kz@openoffice.org>  [43e80d38496b021c297ec5c57a4b3c21b65200e1]

Merge SRC641: 19.12.01 - 18:55:54


2001-12-19  Rüdiger Timm  <rt@openoffice.org>  [cdc708c129fd22193f972b508033407222ade755]

Merge SRC641: 19.12.01 - 18:54:44


2001-12-19  Niklas Nebel  <nn@openoffice.org>  [47bdb9bf7280c9326573851d0b03e49ddb213528]

#96117# createInstance: if drawing factory returns XShape, use ScShapeObj


2001-12-19  Niklas Nebel  <nn@openoffice.org>  [e24201c2a68f7a48fac72b0b3c8d2521f8ce9348]

#96117# support for ImageMap elements


2001-12-19  Niklas Nebel  <nn@openoffice.org>  [780465ab112ae3cd394477346f075c1e1db0ae59]

#96117# GetSupportedMacroItems as public static method


2001-12-19  Daniel Rentz  <dr@openoffice.org>  [8533486e28c21d623e737f329a25649391684a50]

#95990# redesign for wullwidth katakana


2001-12-18  Daniel Rentz  <dr@openoffice.org>  [9c9544312b4d3a6d99e6529633b01f081c5b0c96]

#95990# redesign for wullwidth katakana


2001-12-18  Daniel Rentz  <dr@openoffice.org>  [21c652cba40fa443f378f76464ef12e9c763a616]

#95990# redesign for wullwidth katakana


2001-12-17  Niklas Nebel  <nn@openoffice.org>  [44c0b34778087d08352a26490125a41831a7dd3c]

#95920# GetStretch: if RefDevice has a MapMode, no stretch factor is needed


2001-12-17  Daniel Rentz  <dr@openoffice.org>  [cad85b4893390bee9c550604a3c26902fa040165]

#95990# redesign for fullwidth katakana


2001-12-17  Daniel Rentz  <dr@openoffice.org>  [c7bef32e33e5f2fce1b23967d07eced01861e2ac]

#96000# Truncated strings in FAP


2001-12-14  Nils Fuhrmann  <nf@openoffice.org>  [13f53073ca93d8f19849818acf557715c0930b44]

Fixes for merge


2001-12-14  Sascha Ballach  <sab@openoffice.org>  [45a6c8d2aadc414c031703a0a68165f84210fa27]

#96016#; convert absolute references to relative references


2001-12-14  Rüdiger Timm  <rt@openoffice.org>  [e0483205491975af349798b550c01cbfd9ba89cf]

Merge SRC641: 14.12.01 - 18:49:09


2001-12-14  Rüdiger Timm  <rt@openoffice.org>  [87106b75a48b36983134c57b2108143f66e8a83f]

Merge SRC641: 14.12.01 - 18:39:36


2001-12-14  Rüdiger Timm  <rt@openoffice.org>  [a20fef17e8ebde428bead9afce3e69852aa75255]

Merge SRC641: 14.12.01 - 18:16:59


2001-12-14  Oliver Bolte  <obo@openoffice.org>  [77094fc71939b37cf19161e6a572085afbc1338d]

Merge SRC641: 14.12.01 - 18:11:38


2001-12-14  Oliver Bolte  <obo@openoffice.org>  [7ed840da8393e0367dc6251504fc4bef3ca871bd]

Merge SRC641: 14.12.01 - 18:08:54


2001-12-14  Rüdiger Timm  <rt@openoffice.org>  [ca4b5ba6c9a3cb54b14042eae4d777fe4683687a]

Merge SRC641: 14.12.01 - 18:08:47


2001-12-14  Rüdiger Timm  <rt@openoffice.org>  [4d0ef3df988a4e184075f59c88cddf2202a488e7]

Merge SRC641: 14.12.01 - 18:05:03


2001-12-14  Daniel Rentz  <dr@openoffice.org>  [1131e1a439f4c3b770937341be019fb78f9c80c0]

#95992# uninitialized nBofLevel caused overread of sheets


2001-12-14  Niklas Nebel  <nn@openoffice.org>  [07ef78520a3559e3c8306670fe22000ddd23ce0e]

#95943# added SID_RENAME_OBJECT to hidother.src


2001-12-14  Daniel Rentz  <dr@openoffice.org>  [bfa01f82d9f7f2a111ed012acd9b6fd56752e061]

ptgArray - ignore content


2001-12-14  Niklas Nebel  <nn@openoffice.org>  [c06ea5615509907e7a3b91ebd7808dfc6f9bd47b]

#95879# DrawRotatedFrame: draw background only for changed row itself


2001-12-12  Vladimir Glazounov  <vg@openoffice.org>  [be168a2d1b5e031c970fc067a241b117b095b6c0]

Merge SRC641: 12.12.01 - 22:30:55


2001-12-12  Niklas Nebel  <nn@openoffice.org>  [f5900364d1a5478aea94314260c42671687ebdbe]

#95834# PasteDraw: don't call MoveAllMarked with empty distance


2001-12-12  Niklas Nebel  <nn@openoffice.org>  [2e0c9e955b50b182f49bdc9b0f0fc5c910f3adfb]

#95834# don't start drag timer for the mouse click that ended inplace editing


2001-12-12  Niklas Nebel  <nn@openoffice.org>  [9f39ef1014c322d2304eef29569b572a74841f2c]

#95867# check for macro warning also in LoadXML


2001-12-12  Niklas Nebel  <nn@openoffice.org>  [71c2ffe24769ea77ef921699803b985a31d40ad9]

#95867# HasMacroFunc flag must be set in CompileXML, too


2001-12-12  Mathias Bauer  <mba@openoffice.org>  [9af1348b867e9c4a0a737c5e7caaeb842d8276e5]

#95867#: handle confirmation of macros


2001-12-12  Sascha Ballach  <sab@openoffice.org>  [b395645970ab28b910c567d1ecf64edcbd59b0bf]

#95582#; after loading xml file go over the tables and look whether they are linked tables and change the table name to have the current linked document path in the table name


2001-12-12  Sascha Ballach  <sab@openoffice.org>  [353654f2c8e30ab4472d1dba0a1e74f88fcd9829]

#95582#; ask whether the name was setted correct after complete load of the table, because if it is a linked table the name is changed by the linked table import


2001-12-11  Daniel Rentz  <dr@openoffice.org>  [c027ce3b1c9a6a72d92ab508fc7b717972de2aff]

#92918# DM/$ -> currency units


2001-12-10  Niklas Nebel  <nn@openoffice.org>  [a7ad6e3a0c13c08020382570c211d0fb6968278c]

#93487# escape quotes after converting to ByteString


2001-12-10  Niklas Nebel  <nn@openoffice.org>  [3362bef115ef7c5f4daca41b846557c20af2474a]

#95791# don't store settings pointer (belongs to view)


2001-12-10  Kurt Zenker  <kz@openoffice.org>  [8e1dba2d5eff7720dcccb7e1c120e2304bbf8796]

#65293# Syntax


2001-12-10  Sascha Ballach  <sab@openoffice.org>  [c5b168132a1687e31c80ce5190c72339ed8b648a]

#88491#; handle the referenced caption point


2001-12-10  Nils Fuhrmann  <nf@openoffice.org>  [a6d56045052ed2533c7b983c4f4c0b552c121f56]

Merge SRC641: 10.12.01 - 13:47:53


2001-12-08  Oliver Bolte  <obo@openoffice.org>  [f8b054b195543423a281b08fe159e732d3cb0e09]

Merge SRC641: 08.12.01 - 22:20:56


2001-12-08  Oliver Bolte  <obo@openoffice.org>  [1be6489add91f855c4555dfecd3e0ee7ac1cf8be]

Merge SRC641: 08.12.01 - 22:17:30


2001-12-07  Oliver Bolte  <obo@openoffice.org>  [7c2470b68684ebadfe4e1fce6bba112f53ec2b5a]

Merge SRC641: 07.12.01 - 22:29:47


2001-12-06  Sascha Ballach  <sab@openoffice.org>  [b15344f3450f9e9c918dc1669251cf1c3fd1ae40]

#95346#; remove temporary stylename if it is in the list


2001-12-06  Sascha Ballach  <sab@openoffice.org>  [1df3a152741869902d5c8e66cb772f09afd2b237]

#95346#; delete call of some pointer added to the destructor


2001-12-06  Sascha Ballach  <sab@openoffice.org>  [f413adb0b48667a83217cff25c9df9c3fa1fa6a4]

#95346#; clear the annotation list after find out that there are some not saved to make it possible that the next tables work correct


2001-12-06  Sascha Ballach  <sab@openoffice.org>  [2ea537d75224a809bc8cd73ecafe8260f0116d81]

#95346#; remove element from list after removing content so it can not be used in a wrong way; choose better variable names


2001-12-05  Niklas Nebel  <nn@openoffice.org>  [e8963f8d8ef6b19b00342d5253fd14e93a11031e]

#95575# allow changing the name of OLE objects


2001-12-05  Nils Fuhrmann  <nf@openoffice.org>  [ba0b6703dad7fe59529b9ca5db6cfc34856c7147]

Fixes fuer merge


2001-12-05  Sascha Ballach  <sab@openoffice.org>  [752efb5c5a4b12c96111890c146159b651e0b373]

#95346#; don't use a list of pointers for the annotation list, because the < operator is not called than


2001-12-05  Oliver Bolte  <obo@openoffice.org>  [6e42c8fdc2b22e6abc74f1cda5c6854bb7ee561a]

#65293# from HR


2001-12-05  Martin Hollmichel  <mh@openoffice.org>  [29347d36ad30c405e408b61ce639fb5bb552d2dd]

chg: Syntax #65293#


2001-12-05  Martin Hollmichel  <mh@openoffice.org>  [cdce9bea23cd87e6fa64fc2e25d4f846a72e2ec7]

chg: Syntax for gcc3 #65293#


2001-12-04  Oliver Bolte  <obo@openoffice.org>  [2314fd354257d178c50b53df4c4618c1f545a63b]

Merge SRC641: 04.12.01 - 18:46:26


2001-12-04  Sascha Ballach  <sab@openoffice.org>  [e9e8df628c8bb6fa064f5ee86ad05dd0a923097f]

#95346#; rename ScMyAnnotation to ScMyImportAnnotation


2001-12-04  Sascha Ballach  <sab@openoffice.org>  [35378519a7dd832b37fa363887c07d8b44bf983d]

#95346#; add clear() method to remove unneeded objects; rename the ScMyAnnotation struct to ScMyExportAnnotation


2001-12-04  Sascha Ballach  <sab@openoffice.org>  [d296df3611d22da9ad8577ae93710af44fbbcf99]

#95346#; destroy pDefaults, pCellsItr and pNumberFormatAttributesExportHelper in the destructor


2001-12-04  Sascha Ballach  <sab@openoffice.org>  [82be83bb58d2eaeb43acd52cfdb2309bacb3fb50]

#95346#; destroy SharedData


2001-12-03  Niklas Nebel  <nn@openoffice.org>  [06d8f68ef39e75a3a9b643caf176f023dfb77977]

#95513# GetDialogParent: if a ref-dialog is open, use it as parent


2001-12-03  Niklas Nebel  <nn@openoffice.org>  [9816774bc9145a9b5cc2142152e71a8d6a70dc38]

#95513# don't call Hide before executing slot


2001-11-30  Daniel Rentz  <dr@openoffice.org>  [a48a08401cec49bfdf04e8b8fddc3d12d4db8c28]

#95234# use local standard numberformats, new number format imporrt


2001-11-30  Daniel Rentz  <dr@openoffice.org>  [15bdb2a6c375d8c652b6ac8bd39343ac5b072da9]

#95234# use local standard numberformats, new number format import


2001-11-30  Mathias Bauer  <mba@openoffice.org>  [d1fb41280ce121170093d6b525f37914e6594fcb]

#95362#: new security settings


2001-11-30  Niklas Nebel  <nn@openoffice.org>  [63e47b63e6c831f583aa9142a41a2422c8894e53]

#93487# use IBM_850 encoding for DIF in clipboard


2001-11-30  Niklas Nebel  <nn@openoffice.org>  [0a105521f00013871eeae1890c32a36a6886093f]

#93487# quotes in strings have to be escaped


2001-11-29  Niklas Nebel  <nn@openoffice.org>  [94c9a5b1b4faee1bd3566efcbe669034a6a580f6]

#95331# SC_HINT_DRWLAYER_NEW: set form shell design mode after creating view


2001-11-29  Nils Fuhrmann  <nf@openoffice.org>  [9ab39e9474d0e9f7c62371e3858b1a85cb7524a8]

Merge SRC641: 29.11.01 - 15:06:18


2001-11-29  Daniel Rentz  <dr@openoffice.org>  [775d7080075a2e7a5203ca9e47a4a08387d1374f]

#95354# Adding new auto formats


2001-11-29  Nils Fuhrmann  <nf@openoffice.org>  [a2fca48d7a0e994d5c78224ca4a9ccba6158f00c]

Merge SRC641: 29.11.01 - 13:24:48


2001-11-28  Rüdiger Timm  <rt@openoffice.org>  [ba088c011de6e1035436edeeb370321885feedeb]

Merge SRC641: 28.11.01 - 23:03:16


2001-11-28  Niklas Nebel  <nn@openoffice.org>  [75a15c0d1e173d4ecb679626bcb70c0df85bcd20]

#94702# set initial splitter pos from StateChanged/INITSHOW


2001-11-28  Daniel Rentz  <dr@openoffice.org>  [34ba3c7c40fef6e5e1c15a91b00e90fcc3528192]

#91658# new import font buffer, new imp/exp tools


2001-11-28  Oliver Bolte  <obo@openoffice.org>  [310bb8dc37e090d44a5d91a37e641f88f0526062]

#65293# merge error corrected


2001-11-28  Niklas Nebel  <nn@openoffice.org>  [09081ac6e490f51b9aa7af2ed6dffc6f941935c5]

#95197# find RefDialog in any view, call HideReference before SetReference


2001-11-28  Niklas Nebel  <nn@openoffice.org>  [ef09f0605b1697c773a17af03cbf07e2a6004f81]

#95197# HideReference: don't call DoneRefMode when called from SetReference


2001-11-28  Sascha Ballach  <sab@openoffice.org>  [fd01d8117735c076dad7adcbd5e7eb19d29d5566]

#95125#; the EditEngine has to be deleted before destroying the xPoolHelper


2001-11-28  Sascha Ballach  <sab@openoffice.org>  [cd844e9ba2523887f1017982d258e4c30c8b19d1]

#95115#; use the new method to write the default styles of shapes


2001-11-27  Eike Rathke  <er@openoffice.org>  [7893d8472cc27de36cb528cba6c63514a4fb3b8f]

#94913# #i2111# adjusted comments


2001-11-27  Eike Rathke  <er@openoffice.org>  [bf2047cf5ed7611a38fbb9232b3b4f4a50e9eb70]

#94913# #i2111# UpdateInsertTab: readjust wrapped sheet reference


2001-11-27  Sven Jacobi  <sj@openoffice.org>  [04f956ce7410dba8b47f9d382fe40ec226d068ea]

#95129# set FontHeight pool default without changing static SdrEngineDefault


2001-11-26  Niklas Nebel  <nn@openoffice.org>  [b5da0261c2221adff2dadf10afcb3bae2572f044]

#95248# Notify: react on KEYINPUT instead of KEYUP, don't call parent if used


2001-11-26  Sascha Ballach  <sab@openoffice.org>  [207ac21733af136c7f93193f0478c9a9915c8551]

#95125#; cache the FieldEditEngine


2001-11-26  Sascha Ballach  <sab@openoffice.org>  [780107947a3954d1365d6fa22d8a06f3c68e9061]

#95125#; cache the FieldEditEngine


2001-11-26  Sascha Ballach  <sab@openoffice.org>  [255016a24a31c11d7c2e566df39f83208e80d42c]

#95130#; don't test the attribute value strings for invalid characters, because the SaxWriter does this


2001-11-23  Daniel Rentz  <dr@openoffice.org>  [bbe4f1792c56ccd42fcdbedbbf84b324cee99439]

#76602# Don't change pivot range on export


2001-11-23  Daniel Rentz  <dr@openoffice.org>  [0c30105d08b40fb547d578dbe5acec45b1885e7c]

#94912# formula export: horiz. shared formulas


2001-11-23  Daniel Rentz  <dr@openoffice.org>  [3c0385c63faaa34097de0e60aeed410bc9180522]

#94912# formula export: correct ref classes


2001-11-23  Daniel Rentz  <dr@openoffice.org>  [4bf4edefb9b3d0ef3e9a3cc8beb1574467a0622b]

#94912# new formula dumper


2001-11-23  Sascha Ballach  <sab@openoffice.org>  [df5a717678f54f6dc2948775e1b97f16609338e2]

#92195#; fix problem with converting twips to 100th_mm


2001-11-22  Rüdiger Timm  <rt@openoffice.org>  [3d994b4e745b4a04f253248be24ee570f8bb86b9]

Merge SRC641: 23.11.01 - 00:54:28


2001-11-22  Rüdiger Timm  <rt@openoffice.org>  [4f670ad9536bf37c3a96e28eb6ee5caa9c37e390]

Merge SRC641: 22.11.01 - 23:57:28


2001-11-22  Rüdiger Timm  <rt@openoffice.org>  [65c25692ea5893130d270f4b68fe10ba98f2e068]

Merge SRC641: 22.11.01 - 23:48:45


2001-11-22  Nils Fuhrmann  <nf@openoffice.org>  [c54c1a4af0556e7e47945fb97b3ff4dca786d99c]

Merge SRC641: 22.11.01 - 17:04:42 (NoBranch)


2001-11-21  Sascha Ballach  <sab@openoffice.org>  [95b84132a9b88561b590dd6b774bce2a04e8975b]

#95024#; delete pNewData and fix so a memory leak


2001-11-20  Sascha Ballach  <sab@openoffice.org>  [829050ab82fc531ea2843359e7dfdbd1f224f3eb]

#95016#; remember whether the result of the formula is a text or a number to set the correct result


2001-11-20  Daniel Rentz  <dr@openoffice.org>  [c95cff4c22395eceae8d85f48d716d488019c81b]

#94922# Crash on BIFF5 export of ext. refs


2001-11-19  Daniel Rentz  <dr@openoffice.org>  [073f7fd04f5ab9ffb11d8ad6f3255aa75170b260]

#94539# Support CJK/CTL in table autoformat dialogs


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [5895864105239e5fec04671f947f1a47c1ba965d]

Merge SRC641: 16.11.01 - 23:58:36


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [1a486d0ed1498478bb49df96d0d8d730705e1643]

Merge SRC638: 16.11.01 - 23:50:57


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [81dafcf06d40e3d87d132f8a1d213d264c40f4de]

Merge SRC638: 16.11.01 - 23:41:24


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [126e55578078dff4f61094546644519254d938b1]

Merge SRC638: 16.11.01 - 23:31:07


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [e985fd9cd5b3dd5d0fdcb076efc8a53f8c17c255]

Merge SRC638: 16.11.01 - 23:22:26


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [5f631532ec31cf695b341385a6cc795769deb528]

Merge SRC638: 16.11.01 - 23:20:26


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [8a6da54b8845e4b6791df203ab8cfede8e245922]

Merge SRC638: 16.11.01 - 23:13:43


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [847aacae73f42543438b3e10e650cf452a1cbe7f]

Merge SRC638: 16.11.01 - 23:11:35


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [6502ebc4beb8a6125cf580f07bcbecf279c099f8]

Merge SRC638: 16.11.01 - 23:09:28


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [5f3a16fae982514123ee520eef1c300aec167dd8]

Merge SRC638: 16.11.01 - 23:04:30


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [4ad107ddc9b022b666626679b9dfc3a2ee7d0929]

Merge SRC638: 16.11.01 - 23:02:42


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [0ae315040be9c025c67486de258ca91bf280478e]

Merge SRC638: 16.11.01 - 23:00:13


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [a66231fbeaadcd39f90c7f307779390dfb2f0845]

Merge SRC638: 16.11.01 - 22:57:42


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [ba0f39c6f7f1b8b5c244ae2043e19ba049df4815]

Merge SRC638: 16.11.01 - 22:57:24


2001-11-16  Rüdiger Timm  <rt@openoffice.org>  [71e250de83fef2629f444bd34e15b2b71ad6b49a]

Merge SRC638: 16.11.01 - 22:55:27


2001-11-16  Oliver Bolte  <obo@openoffice.org>  [b049df8785bbdee36c0daa0326b278e862c83664]

Merge SRC638: 16.11.01 - 22:53:14


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [07a2375009ba3037b41c21d87b24c7c235a7f28a]

Merge SRC638: 16.11.01 - 22:53:08


2001-11-16  Rüdiger Timm  <rt@openoffice.org>  [322c921b40283bcd06f87ff00bf7b7f77f4acdc5]

Merge SRC638: 16.11.01 - 22:54:36


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [ad2a921c7db21a5344b9008297dbfc0f3863ef42]

Merge SRC638: 16.11.01 - 22:52:45


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [871237b475877c586ab66652f018c0bb1eef9d8b]

Merge SRC638: 16.11.01 - 22:53:54


2001-11-16  Rüdiger Timm  <rt@openoffice.org>  [925484d0b7783bd7f347cd1b139d051ec80f9eaf]

Merge SRC638: 16.11.01 - 22:53:47


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [b124247c4cdc598a744f3f7d42513f8a868e6e53]

Merge SRC638: 16.11.01 - 22:50:51


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [eefbe468c66ebf645a9eb9cb38054c6d662b5374]

Merge SRC638: 16.11.01 - 22:51:40


2001-11-16  Oliver Bolte  <obo@openoffice.org>  [78d0b1a8c3935dc855ad6db93f6fb31a953825b9]

Merge SRC638: 16.11.01 - 22:49:21


2001-11-16  Kurt Zenker  <kz@openoffice.org>  [e8178e266820bb163c84adb0a0499c8ff33ff770]

Merge SRC638: 16.11.01 - 22:49:59


2001-11-16  Vladimir Glazounov  <vg@openoffice.org>  [b0942a2776450bd3d4bccaec9d948c0abfdd5161]

Merge SRC638: 16.11.01 - 22:49:11


2001-11-16  Oliver Bolte  <obo@openoffice.org>  [0ff13cb99cd69e68859c971f3ef80e096d22c773]

Merge SRC638: 16.11.01 - 22:47:20


2001-11-16  Vladimir Glazounov  <vg@openoffice.org>  [0bf1a38e91c03007439edd6d73c1077569be398f]

Merge SRC638: 16.11.01 - 22:44:55


2001-11-16  Sascha Ballach  <sab@openoffice.org>  [192e15bdc4f341a659e0291e6aa561bdd0ec6fea]

#94214#; export horizontal allign repeat as left allign


2001-11-16  Sascha Ballach  <sab@openoffice.org>  [2a51601f4db4ee812a4d9d91e7bcb4fb0283b0b4]

#92195#; take care the the anchor of the Shape is the anchor before


2001-11-16  Sascha Ballach  <sab@openoffice.org>  [b0185135b80c902b3998c4455bbf8aa9ea901049]

#94663#; call _ExportStyles of the base class


2001-11-16  Michael Hönnig  <mi@openoffice.org>  [1480e525cc8385d845134282fb2491cfd21ea423]

#93753# dissolving drafts CVS module


2001-11-15  Niklas Nebel  <nn@openoffice.org>  [f077f8047e2cc3b806082cefc2b3baccfce71cab]

#94806# AtFree: don't access array beyond allocated size


2001-11-15  Sascha Ballach  <sab@openoffice.org>  [4da2d370a4fe89fba1dd336282279cd2116ad7d3]

#94330#; ignore single quotes in doulbe quotes and double quotes in single quotes


2001-11-15  Sascha Ballach  <sab@openoffice.org>  [2db8e118ca618fc2ffb048f7ad0db4109b6f7e10]

#94330#; ignore square bracets in doulbe quotes also like in single quotes


2001-11-15  Sascha Ballach  <sab@openoffice.org>  [e379c980330cd601c687651082484d049311ff39]

#94655#; don't set cell type on cells with formulas


2001-11-14  Niklas Nebel  <nn@openoffice.org>  [bf6607db394f8cb4ea4c8f58f7b77d30a12caeb1]

#94756# ScImportExport uses rtl::OUString also for ExportString


2001-11-14  Michael Hönnig  <mi@openoffice.org>  [36083456284118f70e5e3979541e07de4b438663]

#93753# dissolving drafts cvs module


2001-11-14  Niklas Nebel  <nn@openoffice.org>  [e0fd2077ffc7ae96154520a50a67abda4e99a0ac]

#94600# insert special character: set right fonts (all for weak characters)


2001-11-14  Niklas Nebel  <nn@openoffice.org>  [615576ad56d14c2fd27e9ed3ffc454f33e93d9f3]

#94600# GetOptimalHeight: use DefaultScriptType for empty cells


2001-11-14  Niklas Nebel  <nn@openoffice.org>  [6a61769a0a6d76c6bcede02b0022c8c91755f1ed]

#94600# HasStringWeakCharacters


2001-11-14  Daniel Rentz  <dr@openoffice.org>  [44ebe663e2e719532a0d1275a77d9f3fcc5b8a46]

#94539# CJK and CTL fonts for table autoformats


2001-11-13  Kurt Zenker  <kz@openoffice.org>  [ab67dd9c3ee615126f7df6afa2e78c09082bcc1a]

Merge SRC641: 11/13/01 - 23:20:06


2001-11-13  Kurt Zenker  <kz@openoffice.org>  [e72284de567e77f6240ae535a11de77ff40cac81]

Merge SRC641: 11/13/01 - 23:09:38


2001-11-13  Vladimir Glazounov  <vg@openoffice.org>  [b21329e811d5041ee16fc1a8aab5da766c4ec148]

Merge SRC641: 13.11.01 - 22:59:54


2001-11-13  Daniel Rentz  <dr@openoffice.org>  [cfd273651cd82504a7c685f5e58a831f09ec2ab1]

#94142# Chart import with XMultiPropertySet


2001-11-12  Niklas Nebel  <nn@openoffice.org>  [09c39fbdafa1695b5c6a1757f1e85d665145246d]

#94568# use office language to get script for weak characters and as EditEngine DefaultLanguage


2001-11-12  Niklas Nebel  <nn@openoffice.org>  [b3bf3b7aa2905f847a16e6a0c35d823890d33c9c]

#94517# SetVisAreaOrSize: if start position is negative, move area


2001-11-09  Daniel Rentz  <dr@openoffice.org>  [3aabd61c59f315f6cc06fc95a83b3384a7dccb0a]

#94191# Import max 256 sheets


2001-11-08  Kurt Zenker  <kz@openoffice.org>  [dca40e09b4f92897f98217d35e26ee271e3aa086]

Merge SRC641: 08.11.01 - 22:34:42


2001-11-08  Kurt Zenker  <kz@openoffice.org>  [fbe9d656c5b4588363993d54b8d608843d65c1a0]

Merge SRC641: 08.11.01 - 22:32:45


2001-11-08  Daniel Rentz  <dr@openoffice.org>  [9f15f89888fe8dedb36813f356ebba6f52e44c04]

#94366# Help ids for Addin functions


2001-11-07  Kurt Zenker  <kz@openoffice.org>  [8ead8df2bf6707458b93044826b09af07f608983]

Merge SRC641: 07.11.01 - 22:31:33


2001-11-07  Niklas Nebel  <nn@openoffice.org>  [69e1ca31e7d7b5f39ede876756b50171b28271cc]

#89836# ConvertOrientation: skip columns without name


2001-11-07  Niklas Nebel  <nn@openoffice.org>  [bcbeafd321271384036eee773345e14901bcf112]

#89836# GetDataArrayPos: return position in array


2001-11-07  Niklas Nebel  <nn@openoffice.org>  [326e64edccbf30565922a8c6ec8ab1262b2d3c3f]

#89519# AlignToCursor: get dialog position with GetWindowExtentsRelative


2001-11-07  Daniel Rentz  <dr@openoffice.org>  [46e1eb50bd744ebfa936e4dfc398e8e3225a8976]

#92240# dump record DIMENSIONS


2001-11-07  Daniel Rentz  <dr@openoffice.org>  [a96859a7ab5b100814239d72bccf3f9f2ffb29e5]

#92240# Pasting from Excel: wrong source range


2001-11-07  Oliver Bolte  <obo@openoffice.org>  [e09cc3fa3896ee80d1543695467553b9c42fa2bb]

Merge SRC638: 07.11.01 - 11:25:02


2001-11-07  Oliver Bolte  <obo@openoffice.org>  [09c5c3662549a452162e1099fa2fd3277616e902]

Merge SRC638: 07.11.01 - 11:13:30


2001-11-07  Oliver Bolte  <obo@openoffice.org>  [c4f4f405b9a0749c91a3eb7d1cb4f41de65109b9]

Merge SRC638: 07.11.01 - 11:04:58


2001-11-07  Kurt Zenker  <kz@openoffice.org>  [4820409718e1f7f962f2f3ce02243a6d8708215a]

Merge SRC638: 07.11.01 - 11:03:01


2001-11-07  Niklas Nebel  <nn@openoffice.org>  [14fa2b9d40917b70ea93876b85a93aff9478d930]

#94393# LoadXML: don't call GetInStream


2001-11-06  Niklas Nebel  <nn@openoffice.org>  [c0e01260a1d0a24a4cf1396f78e8ca7218ddb890]

#94335# don't assign bool return to offset variable, delete array after use


2001-11-06  Daniel Rentz  <dr@openoffice.org>  [dfff9dc6723c85b774f1cb85f65b965d991dad90]

#94122# New chart progress bar, new filtertools


2001-11-06  Niklas Nebel  <nn@openoffice.org>  [026283da869fc47d97f91f4b2bdb467ad7bf13e5]

#76689# CopyArea/CopyAreaSafe: adjusted end position can be negative


2001-11-06  Kurt Zenker  <kz@openoffice.org>  [277a3a7a30b42a2da7b49a168856a17d8feeafd3]

Merge SRC641: 06.11.01 - 12:16:47


2001-11-06  Kurt Zenker  <kz@openoffice.org>  [b085cd1325cd8d51e21888e78eaac5b44b074eb8]

Merge SRC641: 06.11.01 - 12:13:28


2001-11-06  Kurt Zenker  <kz@openoffice.org>  [7f5b8b59d023c4d661c479ee9f2aab258f21a612]

Merge SRC641: 06.11.01 - 12:09:35


2001-11-05  Eike Rathke  <er@openoffice.org>  [4ee19fdddcdcdaed57ca0d45b9666d1a81f46b26]

#92553# performance: SetMarkArea: avoid unnecessary new/delete and data copies


2001-11-05  Eike Rathke  <er@openoffice.org>  [3c589aa96f82b0425d3a9b52858ebee97601e33a]

#92553# SetPatternArea: correcetd a glitch


2001-11-05  Eike Rathke  <er@openoffice.org>  [5acf9699b401e8a5ee877c75e0d9b80da315ba85]

#92553# performance: SetPatternArea: avoid unnecessary new/delete and data copies


2001-11-02  Kurt Zenker  <kz@openoffice.org>  [4eb161ea907b28f57ef0c9d695633dc96377dec4]

Merge SRC641: 11/02/01 - 22:14:13


2001-11-02  Daniel Rentz  <dr@openoffice.org>  [0d4c88d000dcfd29e7b88bad30a52a23912351fe]

#88839# restore navigator settings


2001-11-01  Kurt Zenker  <kz@openoffice.org>  [cc928c7750707b1b758ca92348cc964d1c4f3a7e]

Merge SRC641: 01.11.01 - 23:54:13


2001-11-01  Kurt Zenker  <kz@openoffice.org>  [24761bc6889a2d36b48a672908b892fb9627e60d]

Merge SRC641: 01.11.01 - 22:57:06


2001-11-01  Kurt Zenker  <kz@openoffice.org>  [26511b76448a9465c2d10e355189296b3487ec97]

Merge SRC641: 11/01/01 - 22:41:20


2001-11-01  Philipp Lohmann  <pl@openoffice.org>  [9183a7b897a78fad2301b8efd5008a77159197ca]

#90760# remove obsolete VCL variable, tlb is obsolete also according to hjs


2001-11-01  Niklas Nebel  <nn@openoffice.org>  [fa50ebad63fa55f402c732d3dff08e7a59a11b1f]

#88488# DataChanged: if ScreenZoom was changed, scale must be updated


2001-11-01  Niklas Nebel  <nn@openoffice.org>  [bbddcd7e13a799c476dec56be4756577b5363ba5]

#88488# UpdatePPT method to recalculate nScreenPPTX/Y


2001-11-01  Sascha Ballach  <sab@openoffice.org>  [9d46b19b7a24b17f3cf57cbdf8df0842f88273b7]

#94180#; use the new property PersistName instead to ask direct for the name of the chart


2001-11-01  Sascha Ballach  <sab@openoffice.org>  [aa0f57868cda5821ee444bcaaee71de1d8eb1e0c]

#94176#; don't set the value type on formula cells, because it changes the numberformat of the cell


2001-11-01  Niklas Nebel  <nn@openoffice.org>  [01ee77a308e1ba18fbdec8d5dcc75e0a4fe5fdd3]

#94112# handle uninitialized ResultMembers at DataMember initialization


2001-11-01  Oliver Specht  <os@openoffice.org>  [93008cc27db36d059b6dfc6d4c543000ce79a024]

#93723# SID_DOCINFO moved to offapp


2001-11-01  Daniel Rentz  <dr@openoffice.org>  [4fdcec7204633ddfbdfeece2abc6fe2960a4b3d2]

#94039# dump hex for <=BIFF7


2001-10-31  Kurt Zenker  <kz@openoffice.org>  [417157dac0f56ceaf011ffcfa2d7d8e61e9c4daf]

Merge SRC641: 31.10.01 - 22:48:15


2001-10-31  Niklas Nebel  <nn@openoffice.org>  [19c58b8f906d601c680ca85775a6dd1f91ad0b2c]

#93589# use ScSizeDevProvider also for optimal width


2001-10-31  Daniel Rentz  <dr@openoffice.org>  [303ac3648893931eba30511f7e6f90cc98415eeb]

#94039# Empty rootdata not allowed anymore


2001-10-30  Kurt Zenker  <kz@openoffice.org>  [814cb5f4725ba10edae2bfe69f6d6fa97c099bbb]

Merge SRC638: 10/30/01 - 22:39:50


2001-10-30  Kurt Zenker  <kz@openoffice.org>  [ee31f40d8ada4b5651cfa5dc840b9e0616badb27]

Merge SRC638: 10/30/01 - 22:28:53


2001-10-30  Rüdiger Timm  <rt@openoffice.org>  [a89790a2e1f3c951404215cde73e4dc5ef563f89]

Merge SRC638: 30.10.01 - 22:22:13


2001-10-30  Kurt Zenker  <kz@openoffice.org>  [19b40414232b6850abb3a3a2577dcd7ec193c4b1]

Merge SRC638: 10/30/01 - 22:22:11


2001-10-30  Vladimir Glazounov  <vg@openoffice.org>  [2a6546dd4cdc8b60f2be0fd71ae10bca8987233a]

Merge SRC638: 30.10.01 - 22:20:14


2001-10-30  Niklas Nebel  <nn@openoffice.org>  [7c6af688acee3ff82fad31bc38d40be8719d2e24]

#89836# same data field with same function can occur several times from api


2001-10-30  Daniel Rentz  <dr@openoffice.org>  [cb49c52ec1bf4d2cdb3c240d37529ce19394004c]

#93731# Do not clear items which were 'dont care' before


2001-10-30  Daniel Rentz  <dr@openoffice.org>  [0af5bc98dd64b1f86f48ddd5a827434e47b46e29]

#93991# Wrong import of cell colors


2001-10-30  Sascha Ballach  <sab@openoffice.org>  [cd28b3f98eacfdb09cbeb9405379a2d420cffba8]

#92553#; create a empty valuelistener


2001-10-29  Sascha Ballach  <sab@openoffice.org>  [9776e5dea5c4ed4b86021673e6eada81f3d3bbf2]

#93910#; remove undefined chars from the value attribute of a formula


2001-10-29  Daniel Rentz  <dr@openoffice.org>  [32cd3904b0b5c846457edb2097e5c6bcdfecc305]

#93471# no assertion on TABID import


2001-10-26  Niklas Nebel  <nn@openoffice.org>  [b0242bc51d6645d86927daae0004b7d9aa4ed984]

#93603# PasteFile: use URL


2001-10-26  Niklas Nebel  <nn@openoffice.org>  [8d436b09602a888ca616a29e8a319d98b7a9f14e]

#93603# AcceptDrop: change default move to copy, ExecuteDrop: pass link flag to PasteDataFormat


2001-10-26  Niklas Nebel  <nn@openoffice.org>  [0f28b64097ff8845762e4c269090916cf1572a91]

#93603# PasteDataFormat: bLink


2001-10-26  Daniel Rentz  <dr@openoffice.org>  [685da6c3cc36cab6178adf82fe53c951a602f74d]

#93269# ScDocument methods renamed: *Flagged(Row|Col) -> *Changed(Row|Col)


2001-10-26  Daniel Rentz  <dr@openoffice.org>  [c9232d33830caf1339b0158e7b42f3275bdebe29]

#93269# Decreased file size of Excel export, corrected Unicode export


2001-10-26  Daniel Rentz  <dr@openoffice.org>  [204116503c21fde2a50bc7c69c0f551fe921fb5d]

#93269# Decreased file size of Excel export


2001-10-26  Sascha Ballach  <sab@openoffice.org>  [08eba9c48d7c3ab89aaa045824f0cdd92484ea02]

#92553#; don't assert if no currency is given, because it is a possible case


2001-10-25  Daniel Vogelheim  <dvo@openoffice.org>  [d4a3f042700f72e0f333ccc2e329c782dd74b9ac]

#93467# remove calls on XDocumentHandler and change interfaces acordingly


2001-10-25  Kurt Zenker  <kz@openoffice.org>  [24bbb0ea6951cc284fd8cefd45aad85d4a291966]

Merge SRC641: 25.10.01 - 22:33:18


2001-10-25  Kurt Zenker  <kz@openoffice.org>  [d6e715d3127ca3a851ede135208ffdfdeba005ff]

Merge SRC641: 25.10.01 - 22:32:19


2001-10-25  Eike Rathke  <er@openoffice.org>  [e09cd02cbff1af24e3d36d05005123afd00f0f0b]

#89247# remove data source ranges from charts if pasted from different document, converting to real OLE


2001-10-25  Kai Ahrens  <ka@openoffice.org>  [6e87aba9a0147178547434df258ae56896360337]

#93596#: SvxPluginFileDialog returns an error code


2001-10-25  Daniel Rentz  <dr@openoffice.org>  [99dda26064c7603a179b4e1122b6281940ce4923]

#90357# convert strings with numberformatter


2001-10-24  Vladimir Glazounov  <vg@openoffice.org>  [a8bfbb89b50fff16478009485cc198033781b1ec]

Merge SRC641: 24.10.01 - 22:44:22


2001-10-24  Vladimir Glazounov  <vg@openoffice.org>  [d0618cac136b0d100a04460c4f26d8366240417b]

Merge SRC641: 24.10.01 - 22:35:44


2001-10-24  Kurt Zenker  <kz@openoffice.org>  [55b4000ca323c0c9fd214cc9f22ab84b157b6c68]

Merge SRC641: 24.10.01 - 22:31:05


2001-10-24  Kurt Zenker  <kz@openoffice.org>  [080e823d18d80f83e346e5f39c8e28724660fa5d]

Merge SRC641: 10/24/01 - 22:31:31


2001-10-24  Sascha Ballach  <sab@openoffice.org>  [62bb4c9cb2a6a5591322af742888c376087e8792]

#92553#; if no text:s attribute is given the space count is 1


2001-10-24  Niklas Nebel  <nn@openoffice.org>  [3fb2edcb07641b316e462a159a1cf8341d729808]

#92390# EditEngine userdef attrs no longer in SVX_UNOEDIT_CHAR_PROPERTIES


2001-10-24  Niklas Nebel  <nn@openoffice.org>  [10e04a7998c6110746298a835ac89878c89cecfa]

#92390# TextUserDefinedAttributes (no longer in SVX_UNOEDIT_CHAR_PROPERTIES)


2001-10-24  Sascha Ballach  <sab@openoffice.org>  [0098a6f09dd7efb19c3813b57ef4047724443bec]

#92553#; cache the ScMarkData


2001-10-23  Niklas Nebel  <nn@openoffice.org>  [f5d891743789d8deb2e3e965f8eebb963c1026d3]

#76689# CopyFromClip: when skipping filtered rows, nDestRow can become negative


2001-10-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [88854ab8badcad57bec809988c68c58f6b30516e]

#92924#: gcc-3.0.1 needs lvalue


2001-10-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [9903bdb4c5fa081282a1021596b25974f7c6be14]

#92924#: gcc-3.0.1 needs lvalue


2001-10-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [5125df525652a316443ffb37b4d1b61ccb937c9d]

#92924#: gcc-3.0.1 needs lvalue


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [4691aa5901dfbf4e11851b4a8475f6ef9358c67b]

del: segmentc.hxx


2001-10-23  Daniel Rentz  <dr@openoffice.org>  [15065029b774a57a43abbcc47d1a6c2e5ad99aeb]

#93255# speed up chart import


2001-10-23  Daniel Rentz  <dr@openoffice.org>  [e8b537fed324e970ce4fdfb345865d6eeba1db74]

#93255# speed up chart import


2001-10-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [03389fdec44b5ae5969aa9533a281816bd9996e6]

#92924#: fixed last change


2001-10-23  Sascha Ballach  <sab@openoffice.org>  [9ee7f7ce1b20acdebed8482b91778d831a25f6d2]

#92553#; cache the ScMarkData


2001-10-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [88eb9773d9a9cfe4068acddb7730d23b71b3bced]

#92924#: gcc-3.0.1 needs lvalue


2001-10-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [8be2d73673d60985a6a302b9139e175fc2ffed28]

#92924#: gcc-3.0.1 needs lvalue


2001-10-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [301d84bb0e273be65dd033d248957d2cc90c28e0]

#92924#: exception specifications


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [0b649fb416ee2bc4bc2ee503cc5d1d7740adb81d]

del: segmentc.hxx


2001-10-23  Jens-Heiner Rechtien  <hr@openoffice.org>  [4f0ceedf3c5ed2af29729f9dc2c423f2fc41a877]

#92924#: exception specifications


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [5f7414f71c0f94c25b80f77c9009a568525979d9]

del: segmentc.hxx


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [82190d3a09ac7bbd822f1bf870da6ab80eae0b7b]

del: segmentc.hxx


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [8c2619fa17b21c7c3d2340c060eefb95d102b5e3]

del: segmentc.hxx


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [ba789c26f91f47ac58e56d17f4a0e23e2634049e]

del: segmentc.hxx


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [184410c95a7029609a159f69671cb8810d8bed1f]

del: segmentc.hxx


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [2ce530fdbddec891833623ad24df037796e67e05]

del: segmentc.hxx


2001-10-23  Armin Weiss  <aw@openoffice.org>  [fd79ba03b51d11fc5f4737d8ef9da8832fddbd91]

#93382# init object different when vertical writing


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [056ae7db50b285953a4dadaf421cc6d250e200d6]

del: segmentc.hxx


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [ae1eec54f1171f29a778b6ebfbabe206aca1652d]

del: segmentc.hxx


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [e3cd754a03145647e04c99d1afae8175d889020a]

del: segmentc.hxx


2001-10-23  Martin Hollmichel  <mh@openoffice.org>  [67d6b818b27f9d704621dd2c54956cd44534c3d1]

del: segmentc.hxx


2001-10-22  Kurt Zenker  <kz@openoffice.org>  [92fc685946d513a748834d0e5cff2d097478777a]

Merge SRC638: 22.10.01 - 22:26:20


2001-10-22  Kurt Zenker  <kz@openoffice.org>  [3596cd84e9b031f5a63e42a7dbaa9159dd04b59d]

Merge SRC638: 22.10.01 - 22:22:55


2001-10-22  Kurt Zenker  <kz@openoffice.org>  [1fcc6b13bb942006ac8666a5f500785915601724]

Merge SRC638: 22.10.01 - 22:20:55


2001-10-22  Vladimir Glazounov  <vg@openoffice.org>  [c121c33cd35145e55903f55d6e2df3f1c686ca8c]

Merge SRC638: 22.10.01 - 22:20:29


2001-10-22  Kurt Zenker  <kz@openoffice.org>  [5d720e223401088bb1e410861adb0bcbb9c99bb2]

Merge SRC638: 22.10.01 - 22:19:18


2001-10-22  Martin Hollmichel  <mh@openoffice.org>  [cf54697be35946e2b6319e70b3cdaa448a7fb9af]

del: segmentc.hxx


2001-10-22  Martin Hollmichel  <mh@openoffice.org>  [b3a7e500112524a4fef12517ea10405f8eb5e942]

del: segmentc.hxx


2001-10-22  Sascha Ballach  <sab@openoffice.org>  [2f3c8b14f46470d4bd6bff7df84807fe93ba474d]

#93569#; try whether the new number format exists before creating a new one


2001-10-22  Kurt Zenker  <kz@openoffice.org>  [24a4dd2c3f5d0c758c81b6e82b0519c696e96dc0]

Merge SRC641: 22.10.01 - 08:19:24


2001-10-22  Kurt Zenker  <kz@openoffice.org>  [ccd651eac839a8b88b503324e325b11daa535f6f]

Merge SRC641: 22.10.01 - 07:51:18


2001-10-19  Kurt Zenker  <kz@openoffice.org>  [82b95ec59e93e7206710906c92388bd019156326]

Merge SRC641: 10/19/01 - 23:52:09


2001-10-19  Kurt Zenker  <kz@openoffice.org>  [2b8a14d647fd095b8b783e929ced6e4a3e7e70a7]

Merge SRC641: 10/19/01 - 23:48:41


2001-10-19  Niklas Nebel  <nn@openoffice.org>  [8d992fe19e831b2415fb38ca1ca5d208d22cb7b7]

#87976# support setting for asian punctuation kerning


2001-10-19  Niklas Nebel  <nn@openoffice.org>  [dfc9d2793a90b750bcbd3efc6f4f90e1ef43c67e]

#76689# skip filtered rows in clipboard as text


2001-10-19  Sascha Ballach  <sab@openoffice.org>  [3e35f381003d2b3599bc8486bc7163cc1e93e533]

#93467#; set the flag for pretty printing


2001-10-19  Jens-Heiner Rechtien  <hr@openoffice.org>  [fc4cb070749b51663eb3ddab50cd1b690669a63e]

#92924#: gcc-3.0.1 needs lvalue


2001-10-19  Sascha Ballach  <sab@openoffice.org>  [fc0acb8b39f48940e669464c0a38897f6f7b216c]

#92390#; write namespaces of alien attributes of the edit engine and draw objects


2001-10-18  Niklas Nebel  <nn@openoffice.org>  [5324fd2170916acd39fa873b753395cdda159b4a]

#76689# skip filtered rows at copy&paste


2001-10-18  Daniel Rentz  <dr@openoffice.org>  [e0164ae81826aa843b219ec12f71ac0406351cc1]

#93173# Import of cell styles


2001-10-18  Sascha Ballach  <sab@openoffice.org>  [a33a5170b110453454d7fa6a7963012b4cfb6db4]

#93435#; better use of progressbar


2001-10-18  Sascha Ballach  <sab@openoffice.org>  [8540c0dbf025eb08e95bdd5d925b724fcde9a522]

#93435#; export the filtered flag of a row correct


2001-10-18  Eike Rathke  <er@openoffice.org>  [ffdd57b74c1b0aff9cb7b26b80306bbb0a8fea1a]

#i1843# DeleteCol/DeleteRow: correctly reestablish listeners on absolute name references


2001-10-18  Sascha Ballach  <sab@openoffice.org>  [d67b7d29cc1ab7f2f5d05e56328aec3475cf2a53]

#92553#; don't use edit engine for multi space import


2001-10-17  Kurt Zenker  <kz@openoffice.org>  [8faba7e9e7b5bc8948438285918b0c66b8662e2a]

Merge SRC641: 17.10.01 - 23:38:38


2001-10-17  Kurt Zenker  <kz@openoffice.org>  [c74aff50f7b383ed1a009ad347a14a0e34c7cee9]

Merge SRC641: 17.10.01 - 23:14:57


2001-10-17  Rüdiger Timm  <rt@openoffice.org>  [3f63e32c7f5c57057e14c432f024dda48bf59f46]

Merge SRC641: 17.10.01 - 23:13:27


2001-10-17  Rüdiger Timm  <rt@openoffice.org>  [8ae08ef9652f6a365178d61b6983fe8eeea37276]

Merge SRC638: 17.10.01 - 22:32:05


2001-10-17  Rüdiger Timm  <rt@openoffice.org>  [45130e8165962f0f41dcf141d1fd202692c0ceb2]

Merge SRC638: 17.10.01 - 22:19:01


2001-10-17  Niklas Nebel  <nn@openoffice.org>  [25aebb85b172744641a06a8b14f4e8a7672c61d4]

#92390# if EditEngine contains EE_CHAR_XMLATTRIBS, always use EditTextObject


2001-10-17  Eike Rathke  <er@openoffice.org>  [f4962cfdb9196bd80ef4ae4fd1f2c477ab2838f6]

#93301# NumericField::GetValue() instead of GetText().ToInt32() ... tztz


2001-10-17  Sascha Ballach  <sab@openoffice.org>  [3b7fd6e049bd4125ce0eef67d4535091514e6a4f]

#93294#; export header or footer if is displayed but empty


2001-10-17  Kurt Zenker  <kz@openoffice.org>  [e16c6fde35700fcfd488bbcdf664e7cb240daa04]

Merge SRC638: 17.10.01 - 10:20:49


2001-10-17  Kurt Zenker  <kz@openoffice.org>  [95e50aa055a54c78413b2e61f07f64fdd95c62a2]

Merge SRC638: 17.10.01 - 10:07:31


2001-10-16  Oliver Bolte  <obo@openoffice.org>  [d7f63bb8e1d6db769ecdcb57ed71fde356e36b28]

#65293# SO3 define removed


2001-10-16  Oliver Bolte  <obo@openoffice.org>  [e08330bd5a70d642f661b9efa353df0160d0b7a7]

#65293# SO3 define removed


2001-10-16  Niklas Nebel  <nn@openoffice.org>  [866b89421b7d0e0fa9331ed99fe11b3f1604fed0]

#78486# calculate scale in double, reduce to 17 bits


2001-10-16  Oliver Bolte  <obo@openoffice.org>  [28953798904e89dec804dd9a6699055898ce2473]

#65293# SO3 define removed


2001-10-16  Sascha Ballach  <sab@openoffice.org>  [38712e3e2de123ea3389e3d3e68c2e03de1d49c6]

#92397#; support the com.sun.star.document.OfficeDocument Service on the XModel


2001-10-16  Sascha Ballach  <sab@openoffice.org>  [7754ee8cedbc2f9ac186cd63ead76a79f8ec1c09]

#93185#; free the import component


2001-10-16  Sascha Ballach  <sab@openoffice.org>  [857ca37b0b58583ff1d800a6343c4ba9a532433e]

#93099#; don't use a progress while exporting header/footer


2001-10-15  Niklas Nebel  <nn@openoffice.org>  [4ac72d6c5eef5a6f904b6914a83f081b230aae41]

#93166# don't call CheckSelectionTransfer in Activate


2001-10-15  Niklas Nebel  <nn@openoffice.org>  [274f5452329d1c666f452c33fe6937fbce0801bd]

#93218# DropTransferObj between documents: don't call ResetMark after pasting


2001-10-15  Sascha Ballach  <sab@openoffice.org>  [d06ab1c2360a01093bc6ada2840a55365b31d635]

#92553#; use a created virtual device instead to set the map mode on a in every call new created one; set the defaults and the text with one call so the dafaults are not set twice


2001-10-15  Sascha Ballach  <sab@openoffice.org>  [441f60baf8cd5b3c7714641aa452f1c355dc2216]

#92553#; create a Virtual Device with a 100th_mm map mode only once


2001-10-15  Sascha Ballach  <sab@openoffice.org>  [a09961744d2eb71ce103dc41934efe4d52d2cdd6]

#92553#; remember the EditEngine paragraph attributes instead copy the EditEngine.


2001-10-15  Sascha Ballach  <sab@openoffice.org>  [38ff793a19b7da0d6bcf7a0e7ba3b6fb2c1ddaa6]

#92553#; only create strings if neccessary


2001-10-15  Sascha Ballach  <sab@openoffice.org>  [a0adf7bf0156ef53c0466ca1cb79c9090a733b15]

#92553#; disable update mode if possible


2001-10-12  jp  <jp@openoffice.org>  [bbc95395176e3a62165daa15746d9832da82e78d]

Task #92348#: optimize Undo-/Redo controler code/class size


2001-10-12  Niklas Nebel  <nn@openoffice.org>  [7957956cdc17d2f63bd7f0700c9f9a2c58466c53]

#86458# for context menu by keyboard, use cursor position


2001-10-12  Eike Rathke  <er@openoffice.org>  [edd77568e89eb2831c9df19b700415639c133044]

#86145# when sorting, 3D references are not updated but kept to point to old position


2001-10-12  Daniel Rentz  <dr@openoffice.org>  [f79a931c70867b601d84670693b0404b29b42453]

#92791# typo


2001-10-12  Daniel Rentz  <dr@openoffice.org>  [cc020d6d4de33887d6e8662a4f2f6818d8857f95]

#i1714# EDATE: wrong year calculation


2001-10-11  Kurt Zenker  <kz@openoffice.org>  [f47c0cff1fd9349348d1f4fa4c6a30706ac98d6e]

Merge SRC641: 10/11/01 - 23:15:32


2001-10-11  Kurt Zenker  <kz@openoffice.org>  [c8b189ef4ebbdcfe84205aff0c5241ec0977837a]

Merge SRC641: 10/11/01 - 23:03:28


2001-10-11  Vladimir Glazounov  <vg@openoffice.org>  [3e61710a582c34696fcc508635c908e0f2ad1eed]

Merge SRC641: 11.10.01 - 22:57:12


2001-10-11  Kurt Zenker  <kz@openoffice.org>  [b590254f8205bd9d09633c0259cafdd4a73cb898]

Merge SRC641: 11.10.01 - 22:56:43


2001-10-11  Kurt Zenker  <kz@openoffice.org>  [50b9afbc08b9f053040b46d9cbeb0780829b44ec]

Merge SRC638: 11.10.01 - 22:35:00


2001-10-11  Vladimir Glazounov  <vg@openoffice.org>  [2edea27dce555fd20eb2a3ec7f60b8f0d8987918]

Merge SRC638: 11.10.01 - 22:19:21


2001-10-11  Sascha Ballach  <sab@openoffice.org>  [fd6828b43542f14e33ba5525713afadf1be232d5]

#93027#; make the test for empty cells better


2001-10-11  Niklas Nebel  <nn@openoffice.org>  [b49a420be46983b85409c7da565f432bfeeb8e9c]

#92231# add format OBJECTDESCRIPTOR also for graphics obejct


2001-10-10  Niklas Nebel  <nn@openoffice.org>  [04f38e34240d3b2279eb7e3bd48285d6f7721fc8]

#92618# ViewChanged: after setting SdrObject's size, call SetDrawModified


2001-10-10  Niklas Nebel  <nn@openoffice.org>  [dfe51110beb6161129c71154224b12a56c2c60c8]

#91461# load settings before styles


2001-10-10  Niklas Nebel  <nn@openoffice.org>  [b334a3e925b7064276f09bd85c2c2b7a93dd5d3b]

#91461# property PrinterPaperTray is tray name as string


2001-10-10  Daniel Rentz  <dr@openoffice.org>  [30363c1c87cd52bae1ee1ff9927ae4f86addb212]

#92918# DM or $ -> currency units


2001-10-09  Niklas Nebel  <nn@openoffice.org>  [669a1aef9e6aedea3a9866c33cf45729612ff164]

#92885# dtor: check if not copied to selection (still in module)


2001-10-09  Eike Rathke  <er@openoffice.org>  [6af8c57558f363e34cfe47bedce975311bed3a33]

#i1519# add: ConcatLine, ampersand precedence below add and sub


2001-10-09  Daniel Rentz  <dr@openoffice.org>  [5e8871c05487a8ec223564c99cdcd8094f68a85a]

#90357# Conversion string->double for optional parameters


2001-10-09  Daniel Rentz  <dr@openoffice.org>  [aca95e1a27ca703a4f61bef042510de7c87c108c]

#90357# Conversion string->double for optional parameters


2001-10-08  Kurt Zenker  <kz@openoffice.org>  [c10a93bd3170d8327facae960a2279d9c80f3985]

Merge SRC641: 08.10.01 - 22:44:05


2001-10-08  Eike Rathke  <er@openoffice.org>  [55c0bb49ae3deb6198f36e2af1d514f113d6ab13]

#i1715# absolute references and ocColRowName in transfered sheets


2001-10-08  Eike Rathke  <er@openoffice.org>  [27bfeec74c74e78dbe41df72dd31d17e59ad75dd]

#i1715# add: HasNameOrColRowName


2001-10-08  Niklas Nebel  <nn@openoffice.org>  [b3254b0bfc72df238a85bb1ad699929db034b21d]

#91930# InitDocShell: flag for manual row height must be copied, too


2001-10-08  Daniel Rentz  <dr@openoffice.org>  [1449475e5d0d278fea408afac73fa92abad057d2]

Wrong throw specifications


2001-10-08  Daniel Rentz  <dr@openoffice.org>  [09e9f342dae7af7b63d9968cd384a8afb84530d3]

#92792# Better descr. of 2nd param. of WEEKNUM


2001-10-08  Sascha Ballach  <sab@openoffice.org>  [81248988eebe367bbac0f62407cfa754eec7498c]

#92777#; always export empty displayed left header and footer


2001-10-08  Sascha Ballach  <sab@openoffice.org>  [d57952cb9275435162ae532a1602cb191a58f8ec]

#90836#; better Errorhandling on loading of xml files


2001-10-05  Niklas Nebel  <nn@openoffice.org>  [c3b80f0add60f8fc16b6e6bb2fbf0eb2f85cc2b1]

#92630# dBase import/export: dispose connection as well as row set


2001-10-05  Niklas Nebel  <nn@openoffice.org>  [ca5bb4908e8e3fa4fd2044acda0feef70b028856]

#92723# GetVisibleName: use OLE object's persist name in navigator


2001-10-05  Niklas Nebel  <nn@openoffice.org>  [7ca354161c304cadec329546f9e34ed26a5e63dd]

#92723# GetVisibleName: use OLE object's persist name in navigator


2001-10-05  Eike Rathke  <er@openoffice.org>  [ff0ff45f04a672a2800f14aef759412419191025]

#87866# Notify: TableOp may need a forced FormulaTrack


2001-10-04  Niklas Nebel  <nn@openoffice.org>  [457fbcbc348530b75885aa905f7c3ec7972f617e]

#92722# name from InfoObject must be compared to GetPersistName


2001-10-04  Niklas Nebel  <nn@openoffice.org>  [4f545054021c3f70751a109977d21e48a72eec22]

#91621# ViewChanged: don't call SetLogicRect for objects with SERVERRESIZE flag


2001-10-04  Niklas Nebel  <nn@openoffice.org>  [444b3308c656f0abbacfa216423dc8351ee9c70d]

#91621# ActivateObject: don't set scale for objects with SERVERRESIZE flag


2001-10-04  Sascha Ballach  <sab@openoffice.org>  [9219bb9b5cd82884767f36a1725b905894a03e11]

#92390#; import and export of alien attributes in cell and page styles


2001-10-04  Christian Lippka  <cl@openoffice.org>  [4f8216632df3560883bbdae331e52c4d65d94dc9]

#86794# use xml for drawing layer clipboard format


2001-10-04  Christian Lippka  <cl@openoffice.org>  [9e3bbaeb40aedfb5310347dedd2ff3edacef379c]

#86794# use xml for drawing layer clipboard format


2001-10-02  Niklas Nebel  <nn@openoffice.org>  [b4734806eba60a71d5b154af3980386885716473]

#91679# support for X selection


2001-10-02  Niklas Nebel  <nn@openoffice.org>  [19987f129eeae4bee7a1f83323854125b01f4165]

#91679# support for X selection


2001-10-02  Eike Rathke  <er@openoffice.org>  [897aaae12e111a0822481d0c741b868a04cd422a]

#91740# don't access temporary user collection with indices of final collection some optimizations (don't init temporary DateTime objects with current date/time values)


2001-10-02  Daniel Rentz  <dr@openoffice.org>  [ca6c9e1aec189b65554d3a610cb558726c6811e6]

#91357# XDateFunctions: isLeapYear -> getIsLeapYear


2001-10-02  Eike Rathke  <er@openoffice.org>  [b0ebaa3f7dfaaeef0825c8b92d227733f7d37384]

#92393# Sylk2Doc: force string cells if text; import P;P and apply F;P format codes


2001-10-02  Rüdiger Timm  <rt@openoffice.org>  [ad8b3a67b0347d8e46cb5f0b0460e842eb7a1fd5]

#I1243# merge IRIX link flags from OO638c


2001-10-02  Daniel Rentz  <dr@openoffice.org>  [da1b4ca5792abaeaf6a1f7d88ffe210937c914b6]

#91357# resources for datefunc addin


2001-10-02  Daniel Rentz  <dr@openoffice.org>  [53b3823158979d76a773a835314b36d004d09786]

#91357# resources for datefunc addin


2001-10-02  Daniel Rentz  <dr@openoffice.org>  [6f034bca249b626b2f275ae07b5acf3f7abb8413]

#91357# removed 'using namespace' from header


2001-10-02  Daniel Rentz  <dr@openoffice.org>  [d560db0c42813dd408c8835814c82f5fb02fb7f4]

#91357# Resource defines modified, removed 'using namespace' from header


2001-10-02  Daniel Rentz  <dr@openoffice.org>  [a2f3d6f793df526c28eaa12ebb907966faa3d7a6]

#91357# Resource defines modified


2001-10-01  Niklas Nebel  <nn@openoffice.org>  [c6ed6ff102c7675e5b7f92e9bef550e85f89c6f1]

#i1730# corrected check for saved values of link update mode


2001-09-28  Niklas Nebel  <nn@openoffice.org>  [1299d5551db85fe4d323098c73d6a1ec6ddf1554]

#92546# call rReq.Done for SID_VIEW_DATA_SOURCE_BROWSER toggle slot


2001-09-28  Sascha Ballach  <sab@openoffice.org>  [7c5313b538dfa742732a3c19015be8b84a898f6f]

#92131#; set the printer on the docshell and not direct on the document


2001-09-28  Sascha Ballach  <sab@openoffice.org>  [5b6c83f65a38d64824d106d5a195fffdd62c1227]

#92131#; Update the Ref Device of all Input Handler


2001-09-28  Niklas Nebel  <nn@openoffice.org>  [596d3f902cd886f8c65dc50dc56be6b508772e50]

#92569# IndexOutOfBoundsException for getCellByPosition / getCellRangeByPosition


2001-09-28  Niklas Nebel  <nn@openoffice.org>  [005727010a9e4e0a79d368c1b1db66d6e8ee8d84]

#90488# AutoInput after ext text input


2001-09-28  Niklas Nebel  <nn@openoffice.org>  [b662e893608df08d7d7ce590d879c8e53f166173]

#92414# right type (sal_Int32) for RefreshDelay in PropertyMap


2001-09-28  Niklas Nebel  <nn@openoffice.org>  [83e5f83c6689166bf6ed8b4852e14ecef08d3672]

#92505# READONLY flag in property map for property HasDrawPages


2001-09-28  Niklas Nebel  <nn@openoffice.org>  [8935f44a5f809ecb4789bbac4b5a3d11aa77f433]

#92480# READONLY flag in property map for cell range Position and Size


2001-09-28  Niklas Nebel  <nn@openoffice.org>  [ccb1fb285385abc7ae290bbae0b6c6f5103e11fe]

#92540# call ForceOutlinerParaObject so set vertical caption's text direction


2001-09-28  Niklas Nebel  <nn@openoffice.org>  [510d366280a760ea3bcec21214f72d00d2bf191d]

#86508# update aOldSel after selection for editing a function


2001-09-27  Sascha Ballach  <sab@openoffice.org>  [3585f844ca87ad3ac1404f15aba5fddf200ef8b2]

#92435#; compare the currency of the cell with the bank symbol and the current currency of the number format


2001-09-27  Sascha Ballach  <sab@openoffice.org>  [debe25e5f7cbc9ee1da78a1da5ea24408817e2c0]

#92239#; lock solar mutex only if neccessary


2001-09-27  Sascha Ballach  <sab@openoffice.org>  [bab67d98ed5359da29dfa0ace41193c05c78b456]

#92435#; don't ignore dot in quotes


2001-09-27  Sascha Ballach  <sab@openoffice.org>  [8c89805289a7b6a0dedf18784c7e5298e969af4b]

#92239#; don't ask HasAttrib if loading xml


2001-09-27  Sascha Ballach  <sab@openoffice.org>  [3fe7ee528cebdc616a4fdabf2b9a3e32e2e95f39]

#92435#; ask also whether the column is hidden


2001-09-27  Niklas Nebel  <nn@openoffice.org>  [8969a51a97c43579f4e1254aa566a13b44a5d192]

#92390# support user defined (alien) attributes for page styles


2001-09-26  Kurt Zenker  <kz@openoffice.org>  [d195a8f13e13c5b3a2793882ff37148bd6d9745c]

Merge SRC638: 26.09.01 - 23:04:55


2001-09-26  Kurt Zenker  <kz@openoffice.org>  [d228ae302706bdc4c29216891f44bf8cb0b7a5a7]

Merge SRC638: 26.09.01 - 22:40:10


2001-09-26  Kurt Zenker  <kz@openoffice.org>  [91ce47e1a4d940922bbf79d419a3c50e0f62d518]

Merge SRC638: 26.09.01 - 22:37:28


2001-09-26  Kurt Zenker  <kz@openoffice.org>  [635610a397bd2df02a4add92f688bab1a3d7ee8e]

Merge SRC638: 26.09.01 - 22:35:13


2001-09-26  Kurt Zenker  <kz@openoffice.org>  [f0ae963ca74b243140ab9e447766bf383b99cf4b]

Merge SRC638: 26.09.01 - 22:34:57


2001-09-26  Rüdiger Timm  <rt@openoffice.org>  [3acea86abfe5bb93cd61448cd7125d7b1dd60749]

Merge SRC638: 26.09.01 - 22:33:18


2001-09-26  Niklas Nebel  <nn@openoffice.org>  [9db94afbf9bf26939a1def12321995f5eb898689]

#92390# support user defined (alien) attributes for cells


2001-09-26  Daniel Rentz  <dr@openoffice.org>  [96e0742c8ea6f8d42fcdd7d487e54006240c0b38]

#87380# return error for ODDF(PRICE|YIELD) due to faulty algorithms


2001-09-26  Daniel Rentz  <dr@openoffice.org>  [cc45575af2ba1b603c4762f9943a131639037fff]

#89901# check all double results on overrun


2001-09-26  Niklas Nebel  <nn@openoffice.org>  [7d553b08f17164ac4bb53bc5323915aa59f76601]

#89901# examine content of InvocationTargetException after AddIn call


2001-09-25  Kurt Zenker  <kz@openoffice.org>  [64b3480dd7a94f9c4a13a0b54c20ea70aabebefc]

Merge SRC638: 25.09.01 - 22:24:53


2001-09-25  Oliver Bolte  <obo@openoffice.org>  [a78c673353409f22b61173edee19669da8e8debd]

Merge SRC638: 25.09.01 - 22:24:02


2001-09-25  Oliver Bolte  <obo@openoffice.org>  [cba987cee73bf09d0df1ef1bcaa01d96609156c7]

Merge SRC638: 25.09.01 - 22:22:33


2001-09-25  Kurt Zenker  <kz@openoffice.org>  [6cea02f51047e7958f4cee0cccfb0e6095961ab2]

Merge SRC638: 25.09.01 - 22:22:14


2001-09-25  Daniel Vogelheim  <dvo@openoffice.org>  [707a5178562a02c2c44b88164fdd324b526af8ea]

#92399# fixed typecast to prevent untimely destruction of SvXMLImport


2001-09-25  Daniel Rentz  <dr@openoffice.org>  [a88687810537cf2458449c7b5fe9af6a81f3fb6a]

#92392# import header/footer broken


2001-09-25  Sascha Ballach  <sab@openoffice.org>  [4036ccc892a430f4f0c2cf2181138caff6dddb0e]

#92239#; only lock solar mutex if neccessary; only create neccessary strings


2001-09-25  Sascha Ballach  <sab@openoffice.org>  [73010d1c260f0741f85a36ed24fe4bd2ffc1bf3d]

#91935#; set the progressbar reference not only in _ExportMeta


2001-09-25  Niklas Nebel  <nn@openoffice.org>  [b107afc1447711ccdb73342ad9f5e139b07fa8bd]

#92248# SetVisAreaOrSize: don't snap to cells when called while loading


2001-09-24  Niklas Nebel  <nn@openoffice.org>  [b82c106721f850612f711bc2352f3166b269216f]

#90760# removed old ifdef VCL


2001-09-21  Daniel Vogelheim  <dvo@openoffice.org>  [ca29758cc8a460c57f7aba650c940b4aab4836ed]

#92176# enabled saving of PrinterPaperTray for page styles SvXMLImportPropertyMapper now 'knows' its SvXMLImport in order to do proper error handling.


2001-09-21  Daniel Rentz  <dr@openoffice.org>  [eb3a7800e52c41970eb96c1d3153e9a6953495f2]

#91273# removed redundant function


2001-09-20  Daniel Rentz  <dr@openoffice.org>  [3f2ba5f1847bf83e69f6a2486b258cda67c0365c]

#91273# import of DDE improved


2001-09-18  Vladimir Glazounov  <vg@openoffice.org>  [680dfd0ad7dadc4b3765bbbd81a8b256587a3c97]

#92075# exception specificaion


2001-09-18  Vladimir Glazounov  <vg@openoffice.org>  [d58ef57db351cb5bef2792568810c0fc83e4ea9f]

#92075# excption specificaion


2001-09-14  Sascha Ballach  <sab@openoffice.org>  [4f24827688be33f5bcbd4053c7b3b0b5e36d1f91]

#90836#; use the new methods to write StartElement and EndElement which catch and handle errors


2001-09-14  Sascha Ballach  <sab@openoffice.org>  [d965aa71c5f50d0ff28c0b6be33e0084b04c61bc]

#91614#; return the right implementation name of the component


2001-09-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [dcf5ad4502b6ba68819b4f236e3202fa8db6218e]

#92075#: add IllegalArgumentException to interfaces


2001-09-13  Sascha Ballach  <sab@openoffice.org>  [386a086ba93f9d1fdacd3270cfe77848b8a56681]

#91968#; check the document and the model before using


2001-09-13  Oliver Bolte  <obo@openoffice.org>  [bb75b62f1220acc45ecdafb5e73e3887d2c38781]

#65293# exception for sols


2001-09-13  Oliver Bolte  <obo@openoffice.org>  [1bfc87d8fd544a0934125c7b2f2d9d870ade551e]

#65293# exceptions for solaris


2001-09-13  Oliver Bolte  <obo@openoffice.org>  [c4b9b4810648a994fed42c8a5ae7605f0ffd3972]

#65293# exceptions for solaris


2001-09-12  Sascha Ballach  <sab@openoffice.org>  [7ae4f6eeb69b828466857343b8434434046ed1a0]

#92116#; a cell without content is empty, also if the cell has a empty text:p element or a empty value


2001-09-07  Eike Rathke  <er@openoffice.org>  [1e14ba2372cec949fdba640544133c712b914f29]

#90962# paste OUString instead of String from clipboard (not limited to 64k)


2001-09-07  Eike Rathke  <er@openoffice.org>  [753e54950a2c4ce08f98d1aadec51e899ea4a7d7]

#90610# export any drawing object, not just graphics and OLE


2001-09-07  Sascha Ballach  <sab@openoffice.org>  [2c9d485adf62d69deeb642e1afc7a24bf0a8b6ce]

#89325#; change the name of the property to MTG's version


2001-09-06  Vladimir Glazounov  <vg@openoffice.org>  [57af832a312444d3edb003846a7c37f6cbdae912]

#65293# need explicit temporary return


2001-09-06  Sascha Ballach  <sab@openoffice.org>  [de9765bb8138b45d1aadd3955d8007b342c23ac5]

#91970#; only ask for a style if a stylename is given


2001-09-06  Sascha Ballach  <sab@openoffice.org>  [ae7ce7c525c2605b4a7eb228981ae1c897365f72]

#91955#; improve the error finding


2001-09-06  Sascha Ballach  <sab@openoffice.org>  [2e0b0538e68eec83d619f06c69be7f6a32a0831e]

#91955#; improve the performance and the memory usage


2001-09-06  Eike Rathke  <er@openoffice.org>  [50db4345ba544d4b8cbf3c35581d8da4e2f0244e]

#91906# safe sin(), cos(), tan()


2001-09-06  Kai Ahrens  <ka@openoffice.org>  [c0a7a5937b22a363c246d7b09cbd7db911f585e5]

#86482#: removed unavailable method (SdrView::PasteClipboard)


2001-09-06  Sascha Ballach  <sab@openoffice.org>  [c31c68ec3eefa1aa414131f3f7ffcdbe5a753495]

#91955#; set the new repeat value to the repeat value of the columns and not to 1


2001-09-06  Sascha Ballach  <sab@openoffice.org>  [7c972a6dceae826ed192e217e8fd9b26144d67e7]

#91631#; compare the original width instead of the current width


2001-09-05  Eike Rathke  <er@openoffice.org>  [310fd3e5fce7000d33246cac5c10dd004813bce8]

#90696# ReadUserDataSequence: only if not in preview mode


2001-09-05  Eike Rathke  <er@openoffice.org>  [0f0d594220a9ec6eca7ca13e36dde0341668f10f]

#91854# lcl_ScDocFunc_CreateTokenArrayXML: formula doesn't need to be splitted anymore for new ScStringToken, speed and size improvement


2001-09-05  Eike Rathke  <er@openoffice.org>  [41a27c7ef60ba5d20772901f943f3a09589f79d5]

#90394# ValidQuery: parameter TestEqualCondition for interpreter/ScQueryCellIterator


2001-09-05  Eike Rathke  <er@openoffice.org>  [444bd36c74454220c96b4ff655784cf12706f899]

#90394# add: FindEqualOrSortedLastInRange and TestEqualCondition for interpreter


2001-09-05  Eike Rathke  <er@openoffice.org>  [cd0c0003d51fd30020b5fd80b5b79f70427bd750]

#90394# made MATCH() work like in Excel (no error on multiple occurences); and some speed improvements for [HV]?LOOKUP()


2001-09-04  Sascha Ballach  <sab@openoffice.org>  [54ade360748abb6e6142c01dae5df8a8cffc4fbd]

#89325#; add the property AlwaysSaveVersionOnClosing


2001-09-04  Sascha Ballach  <sab@openoffice.org>  [2dbff802f681ab4f933b12fd38e6e82a3111e895]

#91854#; set the last result of the formula


2001-09-04  Sascha Ballach  <sab@openoffice.org>  [c36767102a14c0ffc18468cd10bd6df932df50ba]

#91850#; fix the problems of called assertions


2001-08-31  Eike Rathke  <er@openoffice.org>  [a99cfd027ad61e1faf748888c5373a0ba1153761]

#91796# IsReference: oops, slightly wrong condition didn't check for the simplest of all possibilities: a pure numerical value


2001-08-31  Eike Rathke  <er@openoffice.org>  [dca8b14a772682acf886b5583f3953e718fcaac4]

#67383# #76840# ColRowName tokens not in RPN may need updated references if inserted from clipboard


2001-08-31  Eike Rathke  <er@openoffice.org>  [68196d585f45bbaf4b4f16d5cf8549588ffa3b6e]

#67383# #76840# ColRowName tokens not in RPN may need updated references if inserted from clipboard Also removed duplicated code of CreateStringFromToken methods with String/OUStringBuffer. And blanks in formulas are exported to XML so Natural Language Formulas using intersections work again.


2001-08-31  Sascha Ballach  <sab@openoffice.org>  [b8af4eb234437b8ba592b71842eddf3f6af96daa]

#91781#; give the parse function the document so she can find the tables


2001-08-31  Björn Milcke  <bm@openoffice.org>  [f48083c7001e7535fe758451ffcb7142a5e48cf7]

#91345# set MemChart to ReadOnly on OLE activate. If the chart is an OLE chart 	(ie the ChartRanges are empty) the function SetReadOnly does nothing


2001-08-31  Sascha Ballach  <sab@openoffice.org>  [d229e77e2f7b1ced1fda03eea9f40dbc36ca7365]

#91773#; give the parse function the document so she can find the tables


2001-08-31  gt  <gt@openoffice.org>  [bbf165e367ee1ec80045c84b269fd8f96e10550a]

#91770# formula for ODDLPRICE was wrong


2001-08-31  gt  <gt@openoffice.org>  [729394df442d31e8493da8ef7e20e9c0c87faa41]

#91113# just take existing object


2001-08-30  Kurt Zenker  <kz@openoffice.org>  [1c2b234b6fb393101f22590fdcfe7287b9da6650]

Merge SRC638: 30.08.01 - 22:17:15


2001-08-30  avy  <avy@openoffice.org>  [bd0f940c40be05dce5e6476356044823e416395c]

Merge SRC638: 08/30/01 - 22:16:25


2001-08-30  Kurt Zenker  <kz@openoffice.org>  [98e49e0abe43ffd9dd75764aa77943a1b2ef4f32]

Merge SRC638: 30.08.01 - 22:15:50


2001-08-30  avy  <avy@openoffice.org>  [3f27c58bf7561409ec50391396ceacff73d464bd]

Merge SRC638: 08/30/01 - 22:15:13


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [232afe52bbc51926f69bc6564828f2a191a3596a]

Merge SRC638: 30.08.01 - 00:43:18


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [5176a1b9d7c852c09f121c20855b119af89e14ee]

Merge SRC638: 30.08.01 - 00:38:39


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [d59728c42a0780f2fea42f2f9db8b989530fcef8]

Merge SRC638: 30.08.01 - 00:15:14


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [fe0e30486284c98e1910db8f60ecd5765f65b03b]

Merge SRC638: 29.08.01 - 23:56:48


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [f8d99cbd09468246457f15c2eec1d3644740deea]

Merge SRC638: 29.08.01 - 23:42:39


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [3748075cc3e068a34084dcfe7d86d08ffc289c57]

Merge SRC638: 29.08.01 - 23:38:05


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [70030d1d6bb4f84bf7ff0770e22f115d58e8ec86]

Merge SRC638: 29.08.01 - 23:33:20


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [16371064c689301c3cc8a7d997721d4d2fc9d245]

Merge SRC638: 29.08.01 - 23:23:03


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [fb049aa9084844969c4ee52d748a772f40f8110b]

Merge SRC638: 29.08.01 - 23:11:35


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [e30fe2afcee077de82f748fa805e24ff679bda70]

Merge SRC638: 29.08.01 - 23:06:37


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [95c817fa911d271f8c8a11afadcc60f21da0df7d]

Merge SRC638: 29.08.01 - 23:01:06


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [17ca3d8b86703b9b084c291c543921a4292c7cba]

Merge SRC638: 29.08.01 - 22:51:21


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [157e92da5173944df05e64f7c94ad91eec55152e]

Merge SRC638: 29.08.01 - 22:49:15


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [c4ef7aca3790307e509644aa7d56386a61e77390]

Merge SRC638: 29.08.01 - 22:47:08


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [9c0a2abaae8cfb5ace8ff98005550f3bdaa84fbb]

Merge SRC638: 29.08.01 - 22:45:40


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [40e1284f18a7f62ef173ee692d3823fb6cadbbc9]

Merge SRC638: 29.08.01 - 22:42:30


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [3e91aaa683a61f3a1bfff6f362dfbe2a106b950f]

Merge SRC638: 29.08.01 - 22:41:10


2001-08-29  Oliver Bolte  <obo@openoffice.org>  [62e27f5c5a8a8da8b75038e77e7fc12fa78e0372]

Merge SRC638: 29.08.01 - 22:41:58


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [4683b99b1cdd35cb461b37703a3c663ad0ddb824]

Merge SRC638: 29.08.01 - 22:40:10


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [388fdd0ac4b73c6af19491e879fbd6821df2516f]

Merge SRC638: 29.08.01 - 22:38:36


2001-08-29  Rüdiger Timm  <rt@openoffice.org>  [70a6f31ac46d54bc2430bf3f0547470a85b2d423]

Merge SRC638: 29.08.01 - 22:38:39


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [ce2cfe126e66b92cd0ba4d1fd62838d57053add1]

Merge SRC638: 29.08.01 - 22:37:34


2001-08-29  Kurt Zenker  <kz@openoffice.org>  [e7a36ce38612b8d4d23d06b9fe949ce5b25d59c8]

Merge SRC638: 29.08.01 - 22:35:13


2001-08-29  Rüdiger Timm  <rt@openoffice.org>  [a82fb80ac49b121e8643dc549866b33d961e2f0d]

Merge SRC638: 29.08.01 - 10:56:06


2001-08-29  Sascha Ballach  <sab@openoffice.org>  [3e926cb05dc245139fcdbbfbe5c74f96377483ec]

#91321#; lock SolarMutex in UNO functions


2001-08-28  Sascha Ballach  <sab@openoffice.org>  [3706d7f946428cd0d0f8bf9112077b927da3d33f]

#91654#; increase Iterator


2001-08-28  Sascha Ballach  <sab@openoffice.org>  [8c4915338344a918fae6da5cb6ee2e7e57ce8c61]

#91631#; compare the original height instead of the current height


2001-08-27  Rüdiger Timm  <rt@openoffice.org>  [64771d7599d7690ec9d4d45029865c14015c9717]

Merge SRC638: 27.08.01 - 22:27:09


2001-08-27  Niklas Nebel  <nn@openoffice.org>  [b59011ed60cfff4b26eb72762d133b2b35e43c21]

#91598# ScEditEngineTextObj is ref-counted, must be acquired/released


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [9b466ec055d7aaa9f54e1f44f274e3080afd09cc]

Merge SRC638: 24.08.01 - 22:26:06


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [d28065a100ed73b42328fa6be95bc5884e1be4e8]

Merge SRC638: 24.08.01 - 22:23:36


2001-08-24  Niklas Nebel  <nn@openoffice.org>  [729c648c9376ff841dac06f8e0166b7a61f73eee]

#91522# ctor: create SvxForbiddenCharactersTable if document has none


2001-08-24  Rüdiger Timm  <rt@openoffice.org>  [b3a082243a4d7ab8f4c15460d29e74fd9c510967]

Merge SRC638: 24.08.01 - 15:42:24


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [38ddb322c395e2dad5c25a0d129dedc943e00d44]

Merge SRC638: 08/24/01 - 15:43:50


2001-08-24  Rüdiger Timm  <rt@openoffice.org>  [55417fd7114d68a57e3e88303884605087eb4c8e]

Merge SRC638: 24.08.01 - 15:41:37


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [ebd251772c85e1e7c7eb10188a27ea41bd1b44dc]

Merge SRC638: 08/24/01 - 15:41:48


2001-08-24  Rüdiger Timm  <rt@openoffice.org>  [5e4c14ed57733cf2a148a2ccbdba41c50ace356d]

Merge SRC638: 24.08.01 - 15:39:15


2001-08-24  Rüdiger Timm  <rt@openoffice.org>  [034c4a55b4bffb22a9e9e74e50ecd6238102e90b]

Merge SRC638: 24.08.01 - 15:36:57


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [a2bc63571b5ef924bb0aeb7380b094b694618988]

Merge SRC638: 08/24/01 - 15:37:54


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [2ca755eacb5a579a76526c42afe329eda27370d0]

Merge SRC638: 24.08.01 - 15:36:27


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [58543ff3b51a9e63d5c1ffcea19b0fef2d0b45f4]

Merge SRC638: 08/24/01 - 15:16:37


2001-08-24  Niklas Nebel  <nn@openoffice.org>  [d8d1e90880debc673f8c013529f6fca155c8747b]

#88467# ScrollCommand: don't change scale when editing inplace


2001-08-24  Daniel Rentz  <dr@openoffice.org>  [3a37040b6ebcfab8ae9956982492bac1f55cf194]

#91273# first changes


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [3d17859207066d00d1e957afb459a3394f24b4a2]

Merge SRC638: 08/24/01 - 13:25:54


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [16a25dee368f0c24e0aa08e7a41a34629aede102]

Merge SRC638: 08/24/01 - 13:23:44


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [f186e12b12c38fa851727ac8210e5fd2d94526eb]

Merge SRC638: 08/24/01 - 13:12:54


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [a266980ae1bf115ee17772908f51448387c4d1be]

Merge SRC638: 08/24/01 - 13:00:40


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [2c2383fad07e108eae321fa9660a8c15ab4b45ff]

Merge SRC638: 08/24/01 - 12:52:34


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [0a104be6eb35864b709b4049a94bdceb6db0b18d]

Merge SRC638: 08/24/01 - 12:49:22


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [d45dd483b3dfe03964f73bebadc71be164e88e29]

Merge SRC638: 08/24/01 - 12:46:00


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [3135c87b141c2deb6f6cba238d8868b0453876e3]

Merge SRC638: 08/24/01 - 12:38:39


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [10fce781932b1c5795687a98e61f90675df9e798]

Merge SRC638: 08/24/01 - 12:31:07


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [479d1fbae49bd37a6835b4e79b3eddd48dec19d4]

Merge SRC638: 08/24/01 - 12:27:54


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [b171cdbdb35499159b7135fdcc0089ecb1e5d055]

Merge SRC638: 08/24/01 - 12:25:02


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [5d250f65da3b7e76ae28f95826d1e8b14babb3fc]

Merge SRC638: 24.08.01 - 12:23:15


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [4b2961306ab9e8947828f5bd859c9be6f895f412]

Merge SRC638: 24.08.01 - 12:20:41


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [d3d6dea893b3f735f80090b4a108012acebc718b]

Merge SRC638: 24.08.01 - 12:20:20


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [3a14098da889e34cc83ef688f89b70ee15d09ded]

Merge SRC638: 24.08.01 - 12:18:12


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [a16129b5ae5d17f1b8f1a09684b66279d6aafac1]

Merge SRC638: 24.08.01 - 12:15:40


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [f98c9b5d51a380729c2dc865a43d944eaacb9665]

Merge SRC638: 08/24/01 - 12:16:50


2001-08-24  Rüdiger Timm  <rt@openoffice.org>  [9d41b7151afd8057555633c39c7f74e5b5219603]

Merge SRC638: 24.08.01 - 12:16:33


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [6b84858066f696a7c841260479b8d2ce5c77473f]

Merge SRC638: 08/24/01 - 12:14:39


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [f17acd63a5477eca9927e7f90089a6aee433cd5d]

Merge SRC638: 24.08.01 - 12:14:16


2001-08-24  Kurt Zenker  <kz@openoffice.org>  [1d6d859f3f583a230e06d4992ece24fdb7446bfc]

Merge SRC638: 08/24/01 - 12:12:21


2001-08-24  gt  <gt@openoffice.org>  [9a78764100946c3010b268b209b1f633263fb127]

#87380# #87387# reduce difference for ODDFPRICE and ODDFYIELD


2001-08-23  Eike Rathke  <er@openoffice.org>  [cdc483b9f4f37ed8aaffbe4471b8703cd8739fe7]

#91053# =2002.E15 is not a numerical value if a sheet named '2002' exists


2001-08-23  Niklas Nebel  <nn@openoffice.org>  [381f4e0226a170b23ae211234ab5e403b25468a4]

#91431# insertTextContent: for bAbsorb=FALSE, new selection is behind content


2001-08-23  gt  <gt@openoffice.org>  [288f827239bd2146ef6fe90f9c60625c1db83602]

#87387# also for ODDLYIELD and ODDLPRICE


2001-08-23  Daniel Rentz  <dr@openoffice.org>  [dddff9796191f3d1f76a91d86937fdb812015c40]

0x0207 STRING


2001-08-23  Daniel Rentz  <dr@openoffice.org>  [510a183937c9a34d90677256e9f21ccfa91dcbd8]

#90601# import view settings from 1st visible sheet


2001-08-23  Daniel Rentz  <dr@openoffice.org>  [f2ac80a4e89beeac3351e422a3348563436d9506]

#90601# import view settings from 1st visible sheet


2001-08-22  Eike Rathke  <er@openoffice.org>  [5a30240ed8a190d59b0139a2f468fc24f2cf6b3b]

#91013# GetDataArea: undo of last change, no data is a special case here


2001-08-21  Kurt Zenker  <kz@openoffice.org>  [39362de33a080a5dc54db79814d50cc497ae2fc3]

Merge SRC638: 21.08.01 - 22:51:34


2001-08-21  Kurt Zenker  <kz@openoffice.org>  [c8ac1716f17a04e477a08a537d8c5b1cd95150d0]

Merge SRC638: 21.08.01 - 22:49:46


2001-08-21  Kurt Zenker  <kz@openoffice.org>  [6e24cffc97b9c94e5ab120385e262eee4db6e208]

Merge SRC638: 21.08.01 - 22:48:03


2001-08-21  Kurt Zenker  <kz@openoffice.org>  [df3d2d95d932b78925c0ec16432d9d23c198385c]

Merge SRC638: 21.08.01 - 22:44:34


2001-08-21  Kurt Zenker  <kz@openoffice.org>  [85fed49f81f9317f808f36ae1660393f8f5e56af]

Merge SRC638: 21.08.01 - 22:43:05


2001-08-21  Kurt Zenker  <kz@openoffice.org>  [07ace1286e0a335ae97272659c65f9003643a798]

Merge SRC638: 21.08.01 - 22:39:45


2001-08-21  Kurt Zenker  <kz@openoffice.org>  [03edeee1f7775e923882742ea50a19e1af47eb29]

Merge SRC638: 08/21/01 - 22:40:11


2001-08-21  Kurt Zenker  <kz@openoffice.org>  [cfc6059a9555bb2330a9c837aa7b253e62dd9ad1]

Merge SRC638: 08/21/01 - 22:11:47


2001-08-21  Niklas Nebel  <nn@openoffice.org>  [839e4ffce13b375d65514b6b0a7fd4a4842744e4]

#74654# InsertURLField: check if editable


2001-08-21  Niklas Nebel  <nn@openoffice.org>  [0361acfd752c6c1947c8c4ca15925ae4f1526551]

#74654# state for SID_READONLY_MODE


2001-08-21  Niklas Nebel  <nn@openoffice.org>  [6f08cd44beec6f3d394034a933ee560cc9dce738]

#74654# SID_READONLY_MODE


2001-08-21  Eike Rathke  <er@openoffice.org>  [38f032df816819c33fe33878386dfd58fa972e2f]

#91341# interpreter progress may occur anytime, use dummy if any other progress is active


2001-08-21  Daniel Rentz  <dr@openoffice.org>  [112fd227b222c7ff0114fd05829db5ce837e8f3e]

#91356# PivotTables and sheets with spaces


2001-08-21  Daniel Rentz  <dr@openoffice.org>  [e57c8703da80dd5fd919fc01194706355b7f82c9]

0x0205 BOOLERR


2001-08-20  Niklas Nebel  <nn@openoffice.org>  [66bfcd792ade233a502b3b005246d12a0acddedd]

#91216# InsertURL: InsertBookmark if view is not active


2001-08-20  Niklas Nebel  <nn@openoffice.org>  [7e32e0cab344909dea0b86aaf84427e88fa3db4f]

#91216# InsertBookmark: for bTryReplace replace a single URL with new one


2001-08-20  Niklas Nebel  <nn@openoffice.org>  [fb284a9085eacc783cda99f81eab3602ef76815f]

#91216# InsertBookmark: parameter bTryReplace


2001-08-20  Daniel Rentz  <dr@openoffice.org>  [a9cfe4a6e7698d622df9fa5966447d50055bdabf]

#90636# Don't make style sheet twice


2001-08-20  Daniel Rentz  <dr@openoffice.org>  [297ef959b6ebb8649879f1c0d86b83afec646a98]

#91291# copy&paste from Excel


2001-08-20  Niklas Nebel  <nn@openoffice.org>  [b5e32ebe37f8640469d98642f1a0e5227919d6e3]

#90292# DocStyleChanged: ForgetLastPattern


2001-08-20  Niklas Nebel  <nn@openoffice.org>  [8bac3c04f7f5d1d79b947f5968c02fd217343271]

#90292# InitNew: call InitOptions before CreateStandardStyles


2001-08-20  Niklas Nebel  <nn@openoffice.org>  [a3667bdce030212597c22a6d69ca51f2829249eb]

#90292# CreateStandardStyles: use fonts for document's locales


2001-08-17  Niklas Nebel  <nn@openoffice.org>  [9bd4ce58f8b84fa58522382d56bab588b17665c1]

#91232# GetNextDifferentFlaggedCol/Row: test for manual page breaks


2001-08-17  Niklas Nebel  <nn@openoffice.org>  [3b01a80fd5070b254ac362aeeebae44a0366d21b]

#91232# page break properties in property map


2001-08-17  Daniel Rentz  <dr@openoffice.org>  [e75930a409abe58b7072d86b29b1142231e92333]

#87384# corrected COUPDAYSNC, COUPDAYS, COUPNUM


2001-08-17  gt  <gt@openoffice.org>  [b50dab5880ba19e669a26a879115208897f11b4d]

#87386# AnalysisAddIn::getPricemat(): using YEARFRAC directly as described in the formula


2001-08-17  gt  <gt@openoffice.org>  [cdf2f88562e1839790da2caa657418235188dcf2]

#87542# YIELD completely invers to PRICE


2001-08-16  Rüdiger Timm  <rt@openoffice.org>  [58bb67c4a0817380e5664d15550a9974f7478890]

Merge SRC638: 16.08.01 - 22:17:27


2001-08-16  Niklas Nebel  <nn@openoffice.org>  [087076986ad3ce59876b08f49dedfd432aa316b3]

#90968# add (user) to programmatic name if display name matches a prog.name


2001-08-16  Niklas Nebel  <nn@openoffice.org>  [3a279e1689ae842d8116e67253a8acbced9825ee]

#90675# translated clipboard format names are now in so3


2001-08-16  Daniel Rentz  <dr@openoffice.org>  [8548e07d08716f7bab02985fac2b423286c2e2dc]

#87384# corrected COUPPCD, COUPNCD, COUPDAYBS


2001-08-16  Niklas Nebel  <nn@openoffice.org>  [426d1a0670d3c5b3fb52f56b593714ea3db60f29]

#91065# don't increment progress for repeated empty cells


2001-08-16  Joachim Lingner  <jl@openoffice.org>  [fd84317f63437d11a7d3b74b392c8c5fbaa2e8da]

#89921# inserting of MS Ole objects is now possible


2001-08-15  Kurt Zenker  <kz@openoffice.org>  [b1061d7259326a7ebf6d231c16ca34af9c3dcab0]

Merge SRC638: 15.08.01 - 22:11:31


2001-08-15  Kurt Zenker  <kz@openoffice.org>  [d416b8c02e533b780847ddb646a07d6ddeaf5733]

Merge SRC638: 15.08.01 - 22:17:25


2001-08-15  Daniel Rentz  <dr@openoffice.org>  [7a13d63332b6156625a8465a944c19c7e24a41ab]

#91060# crash while AddIn import from BIFF5


2001-08-15  Niklas Nebel  <nn@openoffice.org>  [a1aa7c036c6f2f8d242664c9c9569a58705f38e0]

#91045# AddDimension: mark as duplicate if name exists


2001-08-15  avy  <avy@openoffice.org>  [2255d212ba84dfc59ad86b6c549203e60bf2da9b]

adopted for new MS compiler


2001-08-14  Niklas Nebel  <nn@openoffice.org>  [3333b40abcc89c6e2f6dec4636fbd4ef382fbda9]

#90981# UnlockDocument: decrement, not increment, lock count


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [2e029397da2587ea5bd1689f46fa8df1b3dba0ce]

Merge SRC638: 08/14/01 - 18:02:04


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [1e815f3a20573b6b46715ade576abf3d31b88670]

Merge SRC638: 14.08.01 - 17:49:17


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [191df427945fa6e6f62726ffe79c18e40a32a12c]

Merge SRC638: 14.08.01 - 17:43:13


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [27f43c2335c3cf64d17db6b9c9f84fa01c0b6b65]

Merge SRC638: 08/14/01 - 17:26:18


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [4cae6e697f788baff8864ea98cf249c59c996a99]

Merge SRC638: 08/14/01 - 17:19:38


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [789fe8b7fbdf6a283a33a48fbbb9d2479ae45097]

Merge SRC638: 08/14/01 - 17:17:43


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [856627f19edfab5846c761ae7e26b36d378dddeb]

Merge SRC638: 08/14/01 - 17:15:43


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [7fd2a175b1ab22f430d2d43e1cc56785447f1705]

Merge SRC638: 08/14/01 - 17:11:14


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [a5d1b29739570544e6bd18af3615df3338f7a394]

Merge SRC638: 08/14/01 - 17:06:11


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [4380aa8b6639e88e8a798bc31b3a2c1edd7565b8]

Merge SRC638: 08/14/01 - 17:04:04


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [cfc472ed3bdb067000512f6429f1dd97787f6e39]

Merge SRC638: 08/14/01 - 17:02:13


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [662343197a39ef16a9a30330cfb42ac51f42d7f3]

Merge SRC638: 08/14/01 - 16:56:26


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [b8861f26845493904efc96adb5c9c0c592d1bbf1]

Merge SRC638: 14.08.01 - 16:55:13


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [228fbb4d6430b8e1086b28a765bd23b3b16f44ce]

Merge SRC638: 14.08.01 - 16:54:23


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [c71d7f1bcc28673e810be6e1054d874bab82387c]

Merge SRC638: 14.08.01 - 16:53:59


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [249628adb9491fddaf7af28296950de2d441d637]

Merge SRC638: 08/14/01 - 16:54:33


2001-08-14  Kurt Zenker  <kz@openoffice.org>  [d18b8b18e8a71d79f871919ef1cefa6af1aef3e5]

Merge SRC638: 14.08.01 - 16:52:46


2001-08-14  Eike Rathke  <er@openoffice.org>  [39b8277dbedc28e7cef967f1987148cb56d12079]

#90896# SchMemChart.SomeData3 holds sheet names for old->new conversion in clipboard/OLE


2001-08-14  Eike Rathke  <er@openoffice.org>  [a3892e76844127857ee44af441e78126584fcc62]

#90761# text encodings from dbtools::OCharsetMap


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [3b07fe74d1417cd89b2f5612641983b9c00fd37a]

Merge SRC638: 13.08.01 - 22:42:21


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [e98c98740eb94a3e9c02aae107d95fdf225c687c]

Merge SRC638: 13.08.01 - 22:40:31


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [9cdc9379f4dd3dcb26b0065ac3a54565c2426b30]

Merge SRC638: 13.08.01 - 22:38:41


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [858b78c89f71e69c00183105945207edd699b270]

Merge SRC638: 13.08.01 - 22:35:03


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [bf48310406f033f02edd0bf3e221174db3a3ab81]

Merge SRC638: 13.08.01 - 22:34:31


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [2b6dbbc4defb120f17cde90aac6904a3211bcba9]

Merge SRC638: 08/13/01 - 22:34:21


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [58b6c7b6b39152d08963a320f0f0eb463febd9ad]

Merge SRC638: 13.08.01 - 22:32:50


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [48c18076943970aad717b878d566a91ffb322a46]

Merge SRC638: 08/13/01 - 22:32:30


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [d54cd8b84246bdf08d7fce7808740f00af2672d2]

Merge SRC638: 13.08.01 - 22:31:05


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [51e3021035e10679f6f952ea306283e29a1c6add]

Merge SRC638: 13.08.01 - 22:30:39


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [a0d9ddefd8da39b8fe3a28a4d91b66a1ab774e14]

Merge SRC638: 13.08.01 - 22:31:21


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [4ffbcd5bc17e2e5911471ebe39f60bb783ecd9cf]

Merge SRC638: 08/13/01 - 22:30:47


2001-08-13  Kurt Zenker  <kz@openoffice.org>  [99cfe5a12c35038465649d382f37f51ae9a611ae]

Merge SRC638: 13.08.01 - 22:09:41


2001-08-13  Niklas Nebel  <nn@openoffice.org>  [5b048de6b563a1d4775b79c408390c003f4644d9]

#90733# SID_QUITAPP removed from ImageList


2001-08-13  Niklas Nebel  <nn@openoffice.org>  [a5a394bce062c20236d0276c8d85ee005a916ead]

#90465# added document languages


2001-08-13  Niklas Nebel  <nn@openoffice.org>  [dffa2384f4fc4ee014cbb18d259a486e9aad2bc8]

#90465# use the language WIDs also in GetState


2001-08-13  Eike Rathke  <er@openoffice.org>  [a943a2617e7ece72022e54043d5307cebf59f331]

#90960# check dbtools::OCharsetMapIterator for end condition (encoding not found)


2001-08-13  gt  <gt@openoffice.org>  [64a177c5ee503626ef780b3f1549b031bbee0727]

#90707# setting for CJK and CTL stuff


2001-08-13  gt  <gt@openoffice.org>  [7c13d0f6b65e1eb6972ca5920b7e48c9779d4145]

#87387#


2001-08-13  gt  <gt@openoffice.org>  [0c7d507f3d713a655102d8d76c9968ee3befd3fa]

Macauley -> Macaulay


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [4fcf0b6bf25e75dbdb3b68a827be0bef83df3d6c]

Merge SRC638: 10.08.01 - 22:40:09


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [73cf0b8cced1713fd8408a1de013d8ffb2c074f0]

Merge SRC638: 10.08.01 - 22:38:41


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [ecc0b558e50acd0e4761a12e1af823659141f3c6]

Merge SRC638: 10.08.01 - 22:36:52


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [87dc6f4dcea5e8068d88ec2c0f49f3c1454de90c]

Merge SRC638: 10.08.01 - 22:32:59


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [232a606134330b6147ef1537a3a70a93f98df7d5]

Merge SRC638: 10.08.01 - 22:32:18


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [a2a3ae5bdb4b3f872e552f4450dd839bfce9ab60]

Merge SRC638: 10.08.01 - 22:28:23


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [c183d5de0432ca337beaf7d19d2397f61ec29a50]

Merge SRC638: 10.08.01 - 22:28:14


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [64d3303108c89f48517c14cc568c8808b14eb014]

Merge SRC638: 10.08.01 - 22:27:56


2001-08-10  Kurt Zenker  <kz@openoffice.org>  [f822cec35fea5f2523198bf9511a6cfacb037e0f]

Merge SRC638: 10.08.01 - 22:11:20


2001-08-10  Eike Rathke  <er@openoffice.org>  [3d7940804927d758b3e61992271611b6c0eba1d7]

#88107# convert StarMath/StarBats<->StarSymbol in binary file format


2001-08-10  Niklas Nebel  <nn@openoffice.org>  [38c88b2528bc9be673581d3dd497b9ec44029be0]

#90720# right paper size for line break and vertical alignment


2001-08-10  Rüdiger Timm  <rt@openoffice.org>  [e40e2dcc7b4fbf369e6056f069ae675b28a766ca]

#87576# so3/advise.hxx and so3/linkname.hxx are obsolete


2001-08-10  Niklas Nebel  <nn@openoffice.org>  [730456613d1565250b7cb7a114684df5c5eab3fc]

#90765# AcceptDrop: SBA_FIELDDATAEXCHANGE


2001-08-09  Niklas Nebel  <nn@openoffice.org>  [6a6a1c3039c77644786ddefda2e48c73e5577dc3]

#90703# initialize filter and subtotal options


2001-08-09  Rüdiger Timm  <rt@openoffice.org>  [02db45b03cc098ca5faf91fa3282e3e10819e634]

#87576# so3/dtrans.hxx is obsolete


2001-08-09  gt  <gt@openoffice.org>  [3e0ad5bb0620af90c4052e23216453dde02aadd2]

#90809# AnalysisAddIn::getWorkday(): typo


2001-08-09  gt  <gt@openoffice.org>  [77caaff45a67c453e692a0c5d5f605199b1755eb]

#90809# AnalysisAddIn::getWorkday(): different calculation when starting on weekend


2001-08-09  gt  <gt@openoffice.org>  [06f70fbb7cb0fb5f716dedc0cef974b2e492f68a]

#90810# typo in OCT2DEC in [ english ]


2001-08-09  Eike Rathke  <er@openoffice.org>  [278dd7c7a7761b15b313d329d4b913b05b7955ed]

#90762# no data has col/row min at lower right and max at upper left


2001-08-09  Frank Schönheit  <fs@openoffice.org>  [4ceece168a52af5736c1fda8e23629160dae1302]

#87687# PasteDataFormat: use the CreateFieldControl(ODataAccessDescriptor) instead of FmXFormView::CreateFieldControl(String)


2001-08-08  Eike Rathke  <er@openoffice.org>  [06c9bc202ddcf2ed7a7cd8f24ad978bf01187229]

#90249# removed unused variables


2001-08-08  Niklas Nebel  <nn@openoffice.org>  [cd4f9be4747313e99240afbd74d8ea284ba77c3c]

#90739# UpdateEditView: don't cast to unknown type


2001-08-08  Niklas Nebel  <nn@openoffice.org>  [e903ca3e52a3db3e8ed9012b70e5a8c50606fd80]

#90619# PutItemScript: use PutExtended to get defaults from right pool


2001-08-08  Niklas Nebel  <nn@openoffice.org>  [5dcf058ed8e693c5c1c87216f0705d468f5546e7]

#90619# default font: FLAGS_ONLYONE


2001-08-08  Rüdiger Timm  <rt@openoffice.org>  [b30732d2d14c580232b6c1fe3027f67193ddcb63]

Merge SRC638: 08.08.01 - 12:13:46


2001-08-08  Kurt Zenker  <kz@openoffice.org>  [cb88df34b33a67f85cda4dad7132aa00a151173b]

Merge SRC638: 08.08.01 - 10:59:57


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [b67efaf235ba7c20b2d5c88fea0fc55688434700]

Merge SRC638: 07.08.01 - 18:07:30


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [76e6f6c942989a7c8a126f77fe03dc22a6ea7ec7]

Merge SRC638: 07.08.01 - 17:46:03


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [2fe5d5b0747fbf87c744ff0ffc73ef603d2b97e1]

Merge SRC638: 07.08.01 - 17:39:21


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [880ad441930f06952f9a5448b5eb34136c6fdc9a]

Merge SRC638: 07.08.01 - 17:37:17


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [5b91b47d16d1d5ba6c8a1b14444edc7c7fc49915]

Merge SRC638: 07.08.01 - 17:35:14


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [4c623fe17c0ce58e8b91753901aa4248e86693b0]

Merge SRC638: 07.08.01 - 17:30:39


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [934bac996500d4baade2abd70503cf421c91c6dc]

Merge SRC638: 07.08.01 - 17:25:23


2001-08-07  Rüdiger Timm  <rt@openoffice.org>  [eb4c8f68fc11a4bfd395f38c9d720ceffb9703e7]

Merge SRC638: 07.08.01 - 17:25:10


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [c633a79bbd36465115bcebe2312ebba5698c6b98]

Merge SRC638: 07.08.01 - 17:23:21


2001-08-07  Rüdiger Timm  <rt@openoffice.org>  [d39f021e494f7f48fafdbeaa010f63965ae55521]

Merge SRC638: 07.08.01 - 17:23:04


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [b919160330ceb60a43698e4993059fdbbdcda5be]

Merge SRC638: 08/07/01 - 17:22:43


2001-08-07  Rüdiger Timm  <rt@openoffice.org>  [72ce2e77b4cbdd7c23a89b86f754d7230565a0db]

Merge SRC638: 07.08.01 - 17:21:21


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [4e8d2e6d2263dc0f17127d415d30386c63da8b6a]

Merge SRC638: 07.08.01 - 17:20:43


2001-08-07  Rüdiger Timm  <rt@openoffice.org>  [131a39f052c0226eff6a1f1933f5ee7c405a6934]

Merge SRC638: 07.08.01 - 17:19:30


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [ca335eed0a6af50d78583dfd3f0f0529b40de640]

Merge SRC638: 08/07/01 - 17:19:53


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [12310ca7bd29e3e09d5f2dd58fa62387581fa08c]

Merge SRC638: 07.08.01 - 17:17:53


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [bda1c045191097d659569e46337b8a82e838ed95]

Merge SRC638: 07.08.01 - 17:18:23


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [96522ef470d41b98ec4337ded2ddf7c04f8cc4d3]

Merge SRC638: 08/07/01 - 17:18:10


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [af3276a06ed49a804b19a163aed3cf307ba3b099]

Merge SRC638: 07.08.01 - 17:17:33


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [b981b6ef2cc5eaefc207edfc194b03a116698e43]

Merge SRC638: 08/07/01 - 17:16:32


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [2c14e5582662a620678bbcaded28063da476b214]

Merge SRC638: 07.08.01 - 17:15:45


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [f493d14a751ab69c3cf896c0b130d47309a98977]

Merge SRC638: 07.08.01 - 17:16:19


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [9dbc70c40f783eeef217359248d014730201151a]

Merge SRC638: 07.08.01 - 17:14:57


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [821186f8a2f78f5036f4d47a80dd9581ae10b477]

Merge SRC638: 08/07/01 - 17:15:01


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [effd1c0df3562dd64ab73a3436b384c87131931e]

Merge SRC638: 07.08.01 - 17:13:58


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [380c0443618aee02748c7cb00370e9cc610ba585]

Merge SRC638: 07.08.01 - 17:13:07


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [4517578d7af61c58ff81c2c15670ba1e05529398]

Merge SRC638: 08/07/01 - 17:13:20


2001-08-07  Kurt Zenker  <kz@openoffice.org>  [65cb850a5409ff3937bd8a25398b66117ade9e0d]

Merge SRC638: 07.08.01 - 17:10:46


2001-08-07  Niklas Nebel  <nn@openoffice.org>  [1ee464776691e9620355bb8fb6c1af83c207a7d6]

#90487# ScPageHFItem::Create: correct wrong (empty) text objects


2001-08-06  Kurt Zenker  <kz@openoffice.org>  [d7632438a81248a8bafd4c31e1d3faefe039b959]

Merge SRC638: 06.08.01 - 22:39:29


2001-08-06  Niklas Nebel  <nn@openoffice.org>  [784e4c0da2fe2b9cb54f53e9f0e9b8ee01762a89]

#89395# SetMode: StartTable only if not editing before; EnterHandler: SetUpdateMode(FALSE) before RemoveAdjust


2001-08-06  Niklas Nebel  <nn@openoffice.org>  [fed6f41e8e208f95352c6b51f377113939461eb1]

#90252# GetDropFormatId: RTF instead of Writer OLE


2001-08-06  Eike Rathke  <er@openoffice.org>  [80dcaf8707b5b95d4cf0152488ef005c0972f9b9]

#90612# no GPF on broken OLE objects which don't have an ObjRef


2001-08-06  Eike Rathke  <er@openoffice.org>  [249ba79bb093f6f7c500cce6ae7afa9a84ef6238]

#90249# performance: transliteration isEqual()/isMatch() instead of compareString()==0


2001-08-06  Kurt Zenker  <kz@openoffice.org>  [f55012746904cdc477382f3567e4c1b1a4c9ef21]

Merge SRC638: 08/06/01 - 10:45:01


2001-08-06  Rüdiger Timm  <rt@openoffice.org>  [f23d997559bc665fce4d026013485ae23b908caa]

Merge SRC638: 06.08.01 - 10:44:23


2001-08-06  Kurt Zenker  <kz@openoffice.org>  [d580ff656c8a3d5fc0f1bf3d19013ddb30e296b1]

Merge SRC638: 08/06/01 - 10:43:10


2001-08-03  Sascha Ballach  <sab@openoffice.org>  [480bc75d3e674c99d1c2096d9d1e119572016fce]

#80365#; give the xInfoSet to the meta stream import


2001-08-03  Niklas Nebel  <nn@openoffice.org>  [19fc1c7f5d2d532970736a19c7b78d7cb090f118]

#90539# DeactivatePage: visible table as default for output position


2001-08-03  Niklas Nebel  <nn@openoffice.org>  [a141d2b10946376e0124602d70fa657f3bb0fdbb]

#90345# Command: don't call InputChanged for COMMAND_CURSORPOS


2001-08-03  Thomas Benisch  <tbe@openoffice.org>  [18476f8dd7a0961ad69b762f314a2b6124518bdd]

#90171# scriptURL


2001-08-03  Sascha Ballach  <sab@openoffice.org>  [16d08eb2f86618c9f42688742992752ed2f2ee4b]

#90510#; use the new standard to export and import macros


2001-08-03  Sascha Ballach  <sab@openoffice.org>  [22b074948d4d608d85552e7247b1ae1709caf6ea]

#90549#; remember the IsVisible property and don't ask again for this


2001-08-03  Daniel Rentz  <dr@openoffice.org>  [7e23d3bed034ac69b817ad34811050fd60c440e5]

#90577# speed up ScDocument::InsertTableOp()


2001-08-02  Niklas Nebel  <nn@openoffice.org>  [2e19766609d109d43739c07b04b0d0dea95f84e5]

#83616# recalculate scale after detective operations


2001-08-02  Niklas Nebel  <nn@openoffice.org>  [7941ca40314188422dd682086074e4fcc0e72969]

#83616# with detective objects, adjust scale to minimize rounding errors


2001-08-02  Niklas Nebel  <nn@openoffice.org>  [34a27b976c5727cb2561b3d16fb8745b552fef23]

#83616# GetCommonWidth, HasDetectiveObjects


2001-08-02  Eike Rathke  <er@openoffice.org>  [9845ac72b4b73639bd6f2c6e08489e1e6db672a0]

#90412# performance: moved English formatter from each document to one global


2001-08-02  Sascha Ballach  <sab@openoffice.org>  [97a3f0dc9addf37792da0202ba0d36dbd767c36e]

#90502#; move the DetectiveObjContainer from ScXMLExport to the Shared Data


2001-08-01  Daniel Rentz  <dr@openoffice.org>  [baa469c802e58fd5b170890afa1bd8e40cbc8d40]

#90474# export table op


2001-08-01  Sascha Ballach  <sab@openoffice.org>  [b10d58865c65344543acd0753134319ea8252e3d]

#90465#; ask for the which id with the slot


2001-08-01  Sascha Ballach  <sab@openoffice.org>  [15c7b8426563cdd803c7c1254ad514257c10256a]

#90389#; only set the new attributes and not all attributes


2001-08-01  Sascha Ballach  <sab@openoffice.org>  [a7de0ad6cf3ee37651175c242ae11f2f51878398]

#86214#; ask whether drawpage is contained in the shared data


2001-08-01  Nils Fuhrmann  <nf@openoffice.org>  [78a292accfae1434e05a60df0419a85712b3d7cd]

Fixes for merge #87134#


2001-08-01  Nils Fuhrmann  <nf@openoffice.org>  [b44f6978918d84d8c141de42a485f105a446a641]

Fixes for merge #87134#


2001-08-01  Sascha Ballach  <sab@openoffice.org>  [966480400a9fd763538429a78e39108dcfa647bf]

#86214#; ask whether drawpage is contained in the shared data


2001-08-01  gt  <gt@openoffice.org>  [1762a8d101110ed257ef4dd665ed163e2f3675ed]

#87387# error in parsing floating point numbers with huge exponent


2001-08-01  Nils Fuhrmann  <nf@openoffice.org>  [a0738b0510e6942f2900135bab594f32099a0725]

Fixes for merge #87134#


2001-08-01  Sascha Ballach  <sab@openoffice.org>  [764d4d057e6f147dd9be3be73cefe508fd1520ca]

#90434#; use the new macro for the author


2001-07-31  Kurt Zenker  <kz@openoffice.org>  [e4aeb8345abe43e9ca8a4fc70bcb1bddf19c58cd]

Merge SRC638: 01.08.01 - 00:03:49


2001-07-31  Kurt Zenker  <kz@openoffice.org>  [85420300ec1e597b6510520a981c5edaf7df5d5c]

Merge SRC638: 01.08.01 - 00:01:29


2001-07-31  Kurt Zenker  <kz@openoffice.org>  [6c67e6f0255ab4b624abfdf28e41b730fd3e0409]

Merge SRC638: 31.07.01 - 22:43:53


2001-07-31  Kurt Zenker  <kz@openoffice.org>  [347dc4c8a4f903237762b96fe57671783959a3b6]

Merge SRC638: 31.07.01 - 22:41:26


2001-07-31  Kurt Zenker  <kz@openoffice.org>  [a54e68a2d42524e4cb96b562c74c7bd9f5dbb2c4]

Merge SRC638: 31.07.01 - 22:39:17


2001-07-31  Niklas Nebel  <nn@openoffice.org>  [460c1bd050811824596d69eb196627f8b4f0c2cd]

#90142# share data for text in page headers / footers


2001-07-31  Sascha Ballach  <sab@openoffice.org>  [b850537759dcad65c7ecfba21781920a4228e8b1]

#86214#; no longer necessary


2001-07-31  Sascha Ballach  <sab@openoffice.org>  [95b7d9938d15055bcc216d38600839f60f0d17b7]

#86214#; add the possibility to add a OLE name to the string collection


2001-07-31  Sascha Ballach  <sab@openoffice.org>  [a0adb0040ed631a065dd2ba87c368eb212d62bef]

#80365#; give the medium to all cases of LoadXML


2001-07-31  Daniel Rentz  <dr@openoffice.org>  [0c8053a0003e4ce3ca5bd61c4529bb3129d1c881]

#90036# exp of shared formulas


2001-07-31  Daniel Rentz  <dr@openoffice.org>  [f7f003e36f82c67f130aa4ca51e2c990cf824e44]

#i1344# col/row orientation in NLFs


2001-07-30  Niklas Nebel  <nn@openoffice.org>  [b13ea2bd4a42a72f6a9f3d2992b7a7a580240523]

#90205# removed dtrans.hxx include


2001-07-30  Niklas Nebel  <nn@openoffice.org>  [46f70f11f8bed7a154045d5e98642134d30a252d]

#90205# removed dtrans.hxx include


2001-07-30  Daniel Rentz  <dr@openoffice.org>  [ddc31b9af9ed2d3b9c72a7282fb7f4d76ede581a]

#90037# export of DDE links


2001-07-30  Daniel Rentz  <dr@openoffice.org>  [dd57e80f2ca719b9a39b382c687e5d3123bc4ecf]

#90037# export of DDE links


2001-07-30  Daniel Rentz  <dr@openoffice.org>  [fd7d82df3d9ae91450741247309b6aeee4b6c258]

#90037# fixes for DDE import/export


2001-07-30  Daniel Rentz  <dr@openoffice.org>  [e9366d40d87df0ebe8e15dfa862cecddf21b129b]

#90037# added SC_DDE_IGNOREMODE


2001-07-27  Niklas Nebel  <nn@openoffice.org>  [a231a49283239a6c2d5792e708f761661b1b8c1b]

#90352# profiling calls


2001-07-27  Niklas Nebel  <nn@openoffice.org>  [941e6ca20c46e5dc8193aa8cdad55f951791af9e]

#90346# for COMMAND_CURSORPOS, do as little as possible


2001-07-27  Sascha Ballach  <sab@openoffice.org>  [825bbf864fd5c794fd7a603b00d701609f979cf2]

#90322#; add timestamp macros


2001-07-27  Sascha Ballach  <sab@openoffice.org>  [1005af485b4e85173df8499925b60285210cd855]

#90139#; don't export draw defaults; some optimisations of shape export


2001-07-27  Sascha Ballach  <sab@openoffice.org>  [8d07bf876a8614df8c52dc8576f63470121820c1]

#90311#; ask only for a style if a stylename is given


2001-07-27  Rüdiger Timm  <rt@openoffice.org>  [093b202792c3de310fb6c866dafc9a70148d7790]

#87576# ^D at end of line 191 removed


2001-07-27  Sascha Ballach  <sab@openoffice.org>  [7335b75bd39a293b7ce6db54edb872142b4fc8b5]

#87576#; make it compileable on Linux and Solaris (remove predeclaration of the enum)


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [07b47967365cd959542f6e0d21f38608fd3aad3d]

Merge SRC638: 07/27/01 - 00:47:14


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [8b1cc81c1ac90ee1fe6438d62c3ae579a2446b49]

Merge SRC638: 07/27/01 - 00:42:47


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [b6e6a9d14244bc6a53e7b2d7929d2b2ed5e31837]

Merge SRC638: 07/27/01 - 00:38:59


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [0c8738e69409c1def5ac390e536d81ad0af0e731]

Merge SRC638: 07/27/01 - 00:37:42


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [dce9b4a592558894bff4948b09ec3198c45fceee]

Merge SRC638: 07/27/01 - 00:36:13


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [d79ce1bab334f778446951a51c50b70fe8c908a5]

Merge SRC638: 07/27/01 - 00:32:15


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [4b691b62b4cbad73d9c69de62e7b3a46b01fbb0f]

Merge SRC638: 27.07.01 - 00:31:27


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [461083128332d538c85f2a1a41362c1ed1c719da]

Merge SRC638: 27.07.01 - 00:31:21


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [72b99717f782fc513c3cfb2a6405a4c170633cfc]

Merge SRC638: 27.07.01 - 00:31:11


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [50b3ae5dc90eb527fb2f5746f9c168b43813ec64]

Merge SRC638: 07/27/01 - 00:30:31


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [1450883d0d2c3cf8348792d5037eae376caf67d1]

Merge SRC638: 27.07.01 - 00:30:20


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [f273c355c8e13d6b7d1948937d410a69dcf9989a]

Merge SRC638: 27.07.01 - 00:29:48


2001-07-26  Kurt Zenker  <kz@openoffice.org>  [4e75ec1e66cad0680a82f83da7126c2415bcc5b3]

Merge SRC638: 27.07.01 - 00:28:52


2001-07-26  Niklas Nebel  <nn@openoffice.org>  [4b1a410fdc566300f6246e873913c54c3b4790ed]

#89541# correct usage of INetURLObject::GetMainURL


2001-07-26  Eike Rathke  <er@openoffice.org>  [1b7d9fd3840759640b2fa015cd36ca7329c6a155]

#90267# removed TF_FILEURL


2001-07-26  Eike Rathke  <er@openoffice.org>  [b438dd94c8045cdf794678e737d88328f20da938]

#90205# removed obsolete header includes, use SotExchange::RegisterFormatName instead of Exchange::RegisterFormatName


2001-07-26  Niklas Nebel  <nn@openoffice.org>  [e784fb68f300e7d415c684a55c8f7cbfb2417484]

#88806# release mouse before StartDrag


2001-07-26  Sascha Ballach  <sab@openoffice.org>  [437e018debed4eb947fb8ab252aa9f747c0fb640]

#80365#; add ProgressBar for XML import


2001-07-26  Sascha Ballach  <sab@openoffice.org>  [697453197936d5899e81b355e8a6808d0712373e]

#80365#; add ProgressBar for XML import


2001-07-26  Daniel Rentz  <dr@openoffice.org>  [abf2dc0347f3b02bc7ce804be4cb2160a3ef19eb]

#90268# import of ext refs


2001-07-26  Sascha Ballach  <sab@openoffice.org>  [e23fcf110323f2029c3580fe7646f36bdc933120]

#90255#; remove xmlkywd.hxx


2001-07-26  Sascha Ballach  <sab@openoffice.org>  [b242f56bab58a242e0584663ce8d01b71db31ebe]

#90139#; use new Property HasDrawPages


2001-07-26  Sascha Ballach  <sab@openoffice.org>  [7b97115d91d0adf88efdf9e4dc2e0902cff2b738]

#90139#; add the HasDrawPages property


2001-07-26  Sascha Ballach  <sab@openoffice.org>  [37a12f0b066d6b83b3c8cd46d7663a61c70a619b]

#89805#; get the correct NumberFormatter only once than again and again


2001-07-25  Niklas Nebel  <nn@openoffice.org>  [62c9bb3e213b406a528d6990f90f3a52471d80f3]

#90211# state for SID_OPENDLG_MODCHART


2001-07-25  Niklas Nebel  <nn@openoffice.org>  [aa49d40dbd3aa69c16a3e7488b6725d942e9f18e]

#90204# SID_TABOP, SID_SOLVE: check for arguments


2001-07-25  Thomas Benisch  <tbe@openoffice.org>  [43d848547cd03e4cf4c47ae643d0ccd733902fb3]

#88563# BasicIDE load on demand


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [b6b7676da1b12f5aba6588eee9df18c75e34346a]

Merge SRC638: 24.07.01 - 23:20:00


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [d9bf447b86a2bcde2c522bd0ff238baa6fdd0bf2]

Merge SRC638: 24.07.01 - 23:15:02


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [fe25d2ccdc84df7010bad97b3b3577122c9f16b9]

Merge SRC638: 24.07.01 - 23:10:35


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [2ba02b11c055b345a379526ec55ba245cbcc8af9]

Merge SRC638: 24.07.01 - 23:07:04


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [3f0a5006183ac9e24311873c73f7048fbc8fb353]

Merge SRC638: 24.07.01 - 23:04:04


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [e934a5e93bbc5cce5578d2dcf8e5cde02791bbc6]

Merge SRC638: 24.07.01 - 23:00:52


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [e84da66c0a4f503d3b8dadae3e809339bed9e3a7]

Merge SRC638: 24.07.01 - 22:57:54


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [2ba5f74cc67cb24a202002e635f94068ce480db4]

Merge SRC638: 24.07.01 - 22:51:19


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [a62295334852151823350c1c953c7d4f6ec0df1d]

Merge SRC638: 24.07.01 - 22:48:08


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [6cb9511118d3cc7cd3b9f7832fa17ba0791c26e6]

Merge SRC638: 24.07.01 - 22:44:36


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [538237ed9ea4874eb0da8d633dcc1b9aca476dcb]

Merge SRC638: 24.07.01 - 22:40:42


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [1554a4e3e407cf0a9a6bf019e6347cd5cf223f9c]

Merge SRC638: 24.07.01 - 22:41:08


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [878b882efd358c2b9e93783226918d6bd1339a4e]

Merge SRC638: 24.07.01 - 22:40:35


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [b96e8bc7ad471a49a15c0f7775fb63572eea7208]

Merge SRC638: 24.07.01 - 22:40:00


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [217407882f0d5209cb5d166779e111995a23e503]

Merge SRC638: 24.07.01 - 22:38:38


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [cfccfe92566f010b6df5738127490c67d1953501]

Merge SRC638: 24.07.01 - 22:37:35


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [7ca521b88bce9564c56fe949ec499716a36a2081]

Merge SRC638: 24.07.01 - 22:37:20


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [0ee1bf58d91531ddbcda8bb189c39902316d498d]

Merge SRC638: 24.07.01 - 22:36:40


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [d7b7c8ae13864feb7ffc5928acea6967f1fc7b87]

Merge SRC638: 24.07.01 - 22:35:46


2001-07-24  Kurt Zenker  <kz@openoffice.org>  [794bb2a224bdd8e90b627af7bc9814562fb08d22]

Merge SRC638: 24.07.01 - 22:35:01


2001-07-24  Daniel Rentz  <dr@openoffice.org>  [842e3a4b245872af040b8d4c82e065b4ab4fd75c]

#90118# objects get lost


2001-07-24  Sascha Ballach  <sab@openoffice.org>  [49d712afeb4e16720db1fab496639d33e1c0a17c]

#90163#; catch the exception throwed in the createStatusIndicator method


2001-07-23  Sascha Ballach  <sab@openoffice.org>  [41ec7e268bedebced83865f0234db7a9473ac6fa]

#80365#; make it possible to load charts only if needed


2001-07-23  Sascha Ballach  <sab@openoffice.org>  [5989e82656e0d355f95ab634b3f2d68f73c3fe11]

#80365#; new methods to distinguish between document lock and paint lock added


2001-07-23  Sascha Ballach  <sab@openoffice.org>  [85abd3b3cdf3a0db01a290ba5a2f5aaf5330f972]

#80365#; lockControllers and unlockControllers added


2001-07-23  Daniel Rentz  <dr@openoffice.org>  [3e037af275e1380b33264f0d4a832f7c7cfcc3e7]

#i1293# named ranges and auto filter


2001-07-20  Kurt Zenker  <kz@openoffice.org>  [7306a96cc056fb5e9d7ca6b90f549ac66e574968]

Merge SRC638: 20.07.01 - 23:11:47


2001-07-20  Kurt Zenker  <kz@openoffice.org>  [435baf6cbfca21647e5d1b424263a90eda10fdcc]

Merge SRC638: 20.07.01 - 23:11:08


2001-07-20  Kurt Zenker  <kz@openoffice.org>  [e35c890e51de4cc9ace1b64bd2130eece94047ce]

Merge SRC638: 20.07.01 - 23:06:43


2001-07-20  Eike Rathke  <er@openoffice.org>  [51c32bb9dab8d5f333586ba08838c0ae420a6e00]

#90052# add: SCWARN_EXPORT_NONCONVERTIBLE_CHARS del: SCERR_IMPORT_CURSOR, SCERR_EXPORT_CURSOR rearranged error classes, got rid of 'unknown' due to misarrangement


2001-07-20  Eike Rathke  <er@openoffice.org>  [c27f1e9306e0b1cca872995eef47dc42f8611b7a]

#90052# del: SCERR_IMPORT_CURSOR, SCERR_EXPORT_CURSOR; add: SCWARN_EXPORT_NONCONVERTIBLE_CHARS


2001-07-20  Eike Rathke  <er@openoffice.org>  [43c38bd908e183acba5f61027f89ba218a1b3274]

#90052# HTML export with NonConvertibleChars


2001-07-20  gt  <gt@openoffice.org>  [4a50eac325142f85ef8f2a656e018163cef58d67]

#89416# seperate Supbook for Addin


2001-07-20  Niklas Nebel  <nn@openoffice.org>  [b83bbb57979a28c65777b054a872cc9644aaaa0c]

#89991# removed TF_ONE51 ifdef


2001-07-20  Niklas Nebel  <nn@openoffice.org>  [14d2c7865d4b6201ab8d4d55b131cca25a1cd1c9]

#89897# when switching back from preview, read user data after ctor


2001-07-20  Eike Rathke  <er@openoffice.org>  [b23b7181dbcf558b38a2ec6628ca1b070742f78f]

#89973# use GetExtendedCompatibilityTextEncoding in case document is, for example, Windows-1252 but charset specified is iso-8859-1


2001-07-20  Oliver Specht  <os@openoffice.org>  [2f28a91e974d464a842b53a88edd86a2daa4508e]

#89969# SID_BASICCHOOSER removed from ImageList


2001-07-19  Niklas Nebel  <nn@openoffice.org>  [a4f9b620acf8561d65f183eed87880df9626f3a8]

#89671# get clipboard state via clipboard notifier


2001-07-19  Kurt Zenker  <kz@openoffice.org>  [8b4d4e26ef29e0349000e7a22a579341ad8b9db0]

Merge SRC638: 19.07.01 - 22:23:55


2001-07-19  Kurt Zenker  <kz@openoffice.org>  [4ec7ed96240b3a79cdd94fd9ce44e511af1efcdc]

Merge SRC638: 19.07.01 - 22:21:08


2001-07-19  Kurt Zenker  <kz@openoffice.org>  [c8df8de8243d822e60dd1cf01246bb301fc4c753]

Merge SRC638: 19.07.01 - 22:17:55


2001-07-19  Kurt Zenker  <kz@openoffice.org>  [69771428041749e099a1e4e31387649127024236]

Merge SRC638: 19.07.01 - 22:20:17


2001-07-19  Niklas Nebel  <nn@openoffice.org>  [be42b0ecd1535cdcd81c43a6b9b65d5e33792acc]

#89671# get clipboard state via clipboard notifier


2001-07-19  Eike Rathke  <er@openoffice.org>  [a762437523b3f2455a11b04bd504a0ef3526393e]

#89973# use SOStoreTextEncoding/SOLoadTextEncoding in old SO file format


2001-07-19  gt  <gt@openoffice.org>  [3cf1bcd90804872867d9f48744c901c197fc8e91]

#89986# MyList::Insert(): wrong insert of new element


2001-07-19  Sascha Ballach  <sab@openoffice.org>  [4192c522a3b880a65df9fa33ba8fd0dcba11182f]

#89929#; cache the value of a cell


2001-07-19  gt  <gt@openoffice.org>  [f503ac2f3cd29f5b3d9f646aec632355b96f5038]

#89915# imln(): wrong calculation for sign of negative i


2001-07-19  Sascha Ballach  <sab@openoffice.org>  [e508305f39b890b10677397be8914bb36371fb46]

#89805#; use english number formatter to get StandardIndexEnglishUS; new impl method to get cell by position without to call ScUnoGuard


2001-07-19  Sascha Ballach  <sab@openoffice.org>  [60360ef48911897ffa5d11c5913fb5abf90336ab]

#89805#; use english number formatter to get StandardIndexEnglishUS


2001-07-19  Sascha Ballach  <sab@openoffice.org>  [6bf902c70fcee0fe2c29c1933337f55b299ece2b]

#89805#; new impl method to get cell by position without call ScUnoGuard


2001-07-18  Niklas Nebel  <nn@openoffice.org>  [eb7dcf9696fddee27bfb4183b0ed88eceea118e2]

#88848# provide status for DocumentDataSource


2001-07-18  gt  <gt@openoffice.org>  [7ee7826a742e5ce6a540223dea9aed47cf41251b]

#89826# any[][] as first parameter for IMSUM and IMPRODUCT


2001-07-18  Sascha Ballach  <sab@openoffice.org>  [3a94d3c8520390d0d75e1464a3145af36248b667]

#89805#; use english number formatter to ask IsNumberStyle()


2001-07-18  Sascha Ballach  <sab@openoffice.org>  [202d67f9f672426844b36e4952253bd6ef5f697b]

#89805#; add english number formatter


2001-07-18  gt  <gt@openoffice.org>  [368c673a8a8e63f684ffc84bec0e4ac2ae3092df]

#89828# illegal argument exception declared for _all_ AnalysisAddIn::get...()


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [68689335dcc59a2445ede69f25ec321209b664b8]

Merge SRC638: 17.07.01 - 22:59:43


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [23b0ac76097ee2704d29dd8ceccb0ba47b99fafc]

Merge SRC638: 17.07.01 - 22:54:57


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [3e38455f9e6c9261e1a23a0408eb72171ff8fc05]

Merge SRC638: 17.07.01 - 22:51:41


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [05deac6267ded251a42ed5ab776d71077a772549]

Merge SRC638: 17.07.01 - 22:49:10


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [996911850a3d196d5f79ce72ed00343b5ea5978b]

Merge SRC638: 17.07.01 - 22:46:40


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [3f23a52b5c0d6686d54e4b2c34c239e4b5fc9802]

Merge SRC638: 17.07.01 - 22:44:17


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [896bedfd4fe8fcd22e0ba2f5cf67c82b0a8e2cb8]

Merge SRC638: 17.07.01 - 22:38:25


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [758ab322e5bf5697234662b26e1323b6b39d75f0]

Merge SRC638: 17.07.01 - 22:36:46


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [15bfee0196ec272b30f4b207509ead47c6c86145]

Merge SRC638: 17.07.01 - 22:36:19


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [46e01f8adcfca1ceea7ac676caf4c52e7a1fc49a]

Merge SRC638: 17.07.01 - 22:39:03


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [86c214fa21ae2ebefbb4e381993687c0bab7dcfa]

Merge SRC638: 17.07.01 - 22:34:42


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [8d735c97a3ce9c5d00f681a62e08346960e3aa6f]

Merge SRC638: 17.07.01 - 22:34:09


2001-07-17  Kurt Zenker  <kz@openoffice.org>  [2a3b061573c0fe716e9900f563b6e6c9d4b9ec64]

Merge SRC638: 17.07.01 - 22:31:02


2001-07-17  Eike Rathke  <er@openoffice.org>  [eb55254301966ce81c653dd5ba9acc68a70af99e]

#89751# don't write COL_AUTO as black background, in fact don't write any transparent background as color


2001-07-17  Eike Rathke  <er@openoffice.org>  [e6182ba457bf581082ebb8d28d5a6e934b532890]

#89750# reposition images in overlapped regions of merged ranges to upper left


2001-07-17  Daniel Rentz  <dr@openoffice.org>  [8ce181b42f8064af71a66f46aa1563c0cf74fc67]

#89627# import of DDE links, improved Externsheet import


2001-07-17  Thomas Benisch  <tbe@openoffice.org>  [00b1bd622761b89f5668ab08bd64cb219bdfc038]

#87307# remove external basctl dependencies


2001-07-14  Kurt Zenker  <kz@openoffice.org>  [12fa8da377718d13fb23b6b50e775f86ba7adbaf]

Merge SRC638: 14.07.01 - 22:25:34


2001-07-14  Kurt Zenker  <kz@openoffice.org>  [f72eec15246d4cecd213832a7f3cbaae609e8884]

Merge SRC638: 14.07.01 - 22:24:26


2001-07-14  Kurt Zenker  <kz@openoffice.org>  [97c7a1311335e4c0db61d9756e690127e086b06e]

Merge SRC638: 14.07.01 - 22:23:15


2001-07-14  Kurt Zenker  <kz@openoffice.org>  [852920ae95da1f6fd957853cb98f69468b03fd1d]

Merge SRC638: 14.07.01 - 22:22:07


2001-07-14  Kurt Zenker  <kz@openoffice.org>  [db97fa693efd6767d3a9ec27e2be2cc36ed3e3cc]

Merge SRC638: 14.07.01 - 22:21:01


2001-07-14  Kurt Zenker  <kz@openoffice.org>  [b933281f251f81d4ef194fba39c5d3a7182f7d32]

Merge SRC638: 14.07.01 - 22:19:48


2001-07-14  Kurt Zenker  <kz@openoffice.org>  [0e9b629ce825c31e7a45343ffac5b6ae1b2709c4]

Merge SRC633: 14.07.01 - 04:48:29


2001-07-14  Kurt Zenker  <kz@openoffice.org>  [82bc324161ee45d48eacb1830bac3cc870629580]

Merge SRC633: 14.07.01 - 04:39:59


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [63b166f6c220c0057c21999e70131db1892c605a]

Merge SRC638: 13.07.01 - 23:56:33


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [7fccadd58910c57bae0f951b53e628601ce938f1]

Merge SRC638: 13.07.01 - 23:53:37


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [7040b389e5b39cf75f91826233c8617e078e7e50]

Merge SRC638: 13.07.01 - 23:51:52


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [8240329497b469ca368550ee13850ff449f09881]

Merge SRC638: 13.07.01 - 23:49:46


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [1ddea9906a869e850cb291c50f88657705f8a7bb]

Merge SRC638: 13.07.01 - 23:47:41


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [f14c2907041425715c36df06da7ca355a96f065f]

Merge SRC638: 13.07.01 - 23:45:41


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [ab082938a9af9b01b08582c9afa67d2e24a459e1]

Merge SRC638: 13.07.01 - 23:43:36


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [930549af47b912165bef094dfcec20714e157b8d]

Merge SRC638: 13.07.01 - 23:41:17


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [7be03f181ba4a66dd72d51f4cd373c98ce3fccac]

Merge SRC638: 13.07.01 - 23:35:59


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [800c1b8462a26394d7c0fc86794d1068233177f0]

Merge SRC638: 13.07.01 - 23:33:04


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [80b7a4727d9f912441dd51726cb94ccb238364c1]

Merge SRC638: 13.07.01 - 23:30:12


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [c6bccb43e2ee85689b308e9141a7f47b8ac6cafa]

Merge SRC638: 13.07.01 - 23:30:06


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [f205484c6bebba159d990280f33cc8481c43241a]

Merge SRC638: 13.07.01 - 23:27:32


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [ca4d300df18520f6ee16b72b0beb4d59bfe9258d]

Merge SRC638: 13.07.01 - 23:27:23


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [acc31a5ee00f2a62cc7177b8ef35fe6e60891268]

Merge SRC638: 13.07.01 - 23:24:59


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [f6ce26ee538d28f3b174b16d8df6bea74b205522]

Merge SRC638: 13.07.01 - 23:24:27


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [a2081b899ed8345fb2242177eab1db629b32ae5b]

Merge SRC638: 13.07.01 - 23:22:24


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [3c8acf9abf748c2cd7c116ed9effa53d8a2a7a53]

Merge SRC638: 13.07.01 - 23:21:30


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [d98ad18311a0edf741d0892ecadaed4682f528d6]

Merge SRC638: 13.07.01 - 23:18:33


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [0237d0c503ebbae7b99412559b1760edc229a893]

Merge SRC638: 13.07.01 - 23:18:17


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [7b0f1393e2f22d84137460797794069dd608a62d]

Merge SRC638: 13.07.01 - 23:17:37


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [6db571121a7380375c8bc9b1978f090f8d5b85d0]

Merge SRC638: 13.07.01 - 23:17:08


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [9d4c3d00e41f169504dd83756fd798fb0d5a80b2]

Merge SRC638: 13.07.01 - 23:15:52


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [b280976fcbbceff83b404687a099ad32ba968350]

Merge SRC638: 13.07.01 - 23:15:53


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [e35712ef9c92b9f51da012ee33143991448567ee]

Merge SRC638: 13.07.01 - 23:15:37


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [5af4c0e550a00ac9a81af77d7ef66db8beb0c946]

Merge SRC638: 13.07.01 - 23:15:07


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [e49a006f565ba00bb10bd501fa36d8f10263af2f]

Merge SRC638: 13.07.01 - 23:14:36


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [87bb169518438728ea989a541216d739793d8c21]

Merge SRC638: 13.07.01 - 23:17:16


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [82b5d7abae104c81e7052b78759c858e2a4b87f5]

Merge SRC638: 13.07.01 - 23:13:22


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [34ef7c274ceed63a937b300d5aad92f20ed161da]

Merge SRC638: 13.07.01 - 23:13:13


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [b33151927428eb09538d8961194cfde20c433a93]

Merge SRC638: 13.07.01 - 23:12:19


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [6cc34aa733162471505a4866938783cd840ae156]

Merge SRC638: 13.07.01 - 23:11:16


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [0ae3ba92ff981a6a1a2ea0eb45d1e1af076d46e0]

Merge SRC638: 13.07.01 - 23:11:24


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [fb0d300554c77eb9533db46459b666a914a4fb33]

Merge SRC638: 13.07.01 - 23:14:38


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [4b223e890d9b1c972cca4bc799e3b1f179b81248]

Merge SRC638: 13.07.01 - 23:10:51


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [21de7e9403487dd7c7bcfb2cd13d162585dacfa4]

Merge SRC638: 13.07.01 - 23:10:21


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [155a9f2cf74c1c15e55cb71c34afdff257f16382]

Merge SRC638: 13.07.01 - 23:09:38


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [ecd65f2b12180862cbb480cb5789084e88793de0]

Merge SRC638: 13.07.01 - 23:12:12


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [4cbd295aa461ca960dd470a28ef357c12d70a253]

Merge SRC638: 13.07.01 - 23:07:07


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [b2c5d3c881c671f090e4a11681034cbce755424a]

Merge SRC638: 13.07.01 - 23:07:24


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [27466f9aa788fa3769e7ab8a01fb6941e5431d2c]

Merge SRC638: 13.07.01 - 23:07:31


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [2ec3b707c1ef87ab3dbeaf3e01d4f7f5c77e14ef]

Merge SRC638: 13.07.01 - 23:07:30


2001-07-13  Kurt Zenker  <kz@openoffice.org>  [0df72062f931c87a0ac2c822876bee68fb01b1c1]

Merge SRC638: 13.07.01 - 23:03:10


2001-07-13  Daniel Vogelheim  <dvo@openoffice.org>  [56b34bf646eab288d2d2337699f73453182a3f1c]

#86004# PropertMap construction improved: strings have lengths


2001-07-13  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0c1fe730a4da3a960325feca5cdfc013d7aa8757]

removed ALL target


2001-07-13  gt  <gt@openoffice.org>  [8b544654ea912ca079b5ddf56f6b8d1d67790278]

#89606# testing for selfreference also in XclImpExternsheetBuffer


2001-07-13  gt  <gt@openoffice.org>  [6458ee82fce83765bf592dfbfccd868bff0e50f1]

#89606# testing for selfreference also in XclImpExternsheetBuffer


2001-07-13  Daniel Rentz  <dr@openoffice.org>  [3ad412e7350136e939bf23e283ca7d3927c49240]

#89476# first visible row


2001-07-13  Eike Rathke  <er@openoffice.org>  [47ae5fcfaecc0ccfff5218281a364359177ef937]

#88081# description of FIXED() function parameter


2001-07-13  Niklas Nebel  <nn@openoffice.org>  [ab20124eb1b04e7cfaccb2e3dc114210e7bab0a0]

#89569# GetPossibleClipboardFormats: type name for object from object descriptor


2001-07-12  Eike Rathke  <er@openoffice.org>  [5c6ef962ea185d341224684629025b534bcec843]

#84545# add: percent sign operator ocPercentSign


2001-07-12  Daniel Rentz  <dr@openoffice.org>  [192838cda645f2d5354c1709985d2005a62612d9]

#75193# import of empty text boxes, obj import improved


2001-07-12  Niklas Nebel  <nn@openoffice.org>  [5bb5db9d5846ce3b2b11b2071152c3155d7a9865]

#89579# PasteFromSystem: xxx_OLE formats come last


2001-07-12  gt  <gt@openoffice.org>  [1769ca58d22b2b51e1e0bcb4d4b6bb75fbb61d1d]

#89416# approximation for BesselK and BesselY which is very close to Excel


2001-07-12  Eike Rathke  <er@openoffice.org>  [0d822ff2339cec137949058d67df1f257199f83e]

#89559# (introduced in #86153#) direct query is field dependent


2001-07-12  Niklas Nebel  <nn@openoffice.org>  [7929562e81416bfe8f64fff84e77f3a4fed317ce]

#81329# use OutputDevice::GetDefaultFont


2001-07-12  Niklas Nebel  <nn@openoffice.org>  [a759defe41ddb127df4625c08bf44d86b1e3acf4]

#81329# use OutputDevice::GetDefaultFont


2001-07-12  Niklas Nebel  <nn@openoffice.org>  [b2e789357282a47e06fbbec3f9bea5dd051b2b5d]

#89403# find common (cell) attributes before RemoveAdjust


2001-07-11  Niklas Nebel  <nn@openoffice.org>  [a361168afff6dd743349d752942669dd6fd9c998]

#79771# PutData: set EditTextObjectPool, remove paragraph attributes


2001-07-11  Niklas Nebel  <nn@openoffice.org>  [9622f77d25ed906c04fc59ccdfecc4b873b8558b]

#79771# GetEditEngine: initialize with right EditTextObjectPool


2001-07-11  Niklas Nebel  <nn@openoffice.org>  [ee7c1d48e8d32a85e809c2abf204bf8f2e1bba6e]

#89403# RemoveParaAttribs: move paragraph attributes to character attributes


2001-07-11  Niklas Nebel  <nn@openoffice.org>  [a699fd1f88bcd2c38f704d3b1c5a89fbd8734a3b]

#89403# RemoveParaAttribs: move paragraph attributes to character attributes


2001-07-11  Eike Rathke  <er@openoffice.org>  [9ddc807c95b7cb5ebfe1456e27f50dbcf699761c]

#88188# performance: transliteration compare instead of collator compare; SvtSysLocaleData accesses


2001-07-11  Eike Rathke  <er@openoffice.org>  [d17728a775fe78329f209e36487bb2179a36653f]

#88188# performance: transliteration compare instead of collator compare; SvtSysLocaleData accesses


2001-07-11  Sascha Ballach  <sab@openoffice.org>  [cbea9317c51e6d70585e5a17eb4d71f2cc86bf0d]

#87955#; the missing component descriptions added


2001-07-11  Eike Rathke  <er@openoffice.org>  [1ca330f49a95c2b3f034ceba8f9955cf318bfb80]

#88188# performance: transliteration compare instead of collator compare; SvtSysLocaleData accesses


2001-07-11  Eike Rathke  <er@openoffice.org>  [773352e8190b6e19fb6f6cc63525850fcc3963d6]

#88188# performance: transliteration compare instead of collator compare; SvtSysLocaleData accesses


2001-07-11  Eike Rathke  <er@openoffice.org>  [8d64faaf81e41628c869fd15badf88905746aad9]

#88188# performance: transliteration compare instead of collator compare; SvtSysLocaleData accesses


2001-07-11  Niklas Nebel  <nn@openoffice.org>  [e9e9088e670f98d6f862daac795d5cd280bf6df6]

#88749# don't call Update for chart in clipboard with data from document


2001-07-11  gt  <gt@openoffice.org>  [1e9485517aed1ec06c24a471c5ec555e0be5562f]

#89527# extra algorithm for calculating the square root instead of using Complex::Power()


2001-07-11  gt  <gt@openoffice.org>  [4502e826c600ec79cbecec7a159fd77d2484a435]

#89509# leave calculation when base is zero #87378# only check with num of places, when max num of places is not default


2001-07-10  Sascha Ballach  <sab@openoffice.org>  [6a03cb74895a6ab6e4507b95fb7a6f2e30d40cea]

#89431#; use the correct reference to get the second table


2001-07-09  Niklas Nebel  <nn@openoffice.org>  [cf53795e600c624c6650faa6bfb3fa195a18cf71]

#89139# SimpleMode for MultiListBox


2001-07-09  Niklas Nebel  <nn@openoffice.org>  [98d9f6591a48bcddca409df561bb48a5632112a1]

#88546# for template preview, show whole page and no scrollbars


2001-07-09  Dirk Völzke  <dv@openoffice.org>  [d5d8e45945dac2944458cf10e7c7c5bf4ac80b38]

#89176# SfxURLBOX has been moved to svtools and was renamed to SvtURLBox


2001-07-09  Niklas Nebel  <nn@openoffice.org>  [04a5ac5a361f9579d4ec70bdd638b9b8391d9b41]

#89398# GetEditUrlOrError: use ScSizeDeviceProvider for EditEngine RefDevice


2001-07-09  Daniel Rentz  <dr@openoffice.org>  [37f28a8c7247e9c826a4f8ac013c19b37fd321a3]

unix compiler problem


2001-07-09  Sascha Ballach  <sab@openoffice.org>  [73fca52e4b7b4f72a05045b822fca7a835979386]

#79771#; remove a little optimization


2001-07-06  Niklas Nebel  <nn@openoffice.org>  [2ca7914a4894019529afb27303dffd2b0a2852b8]

#89240# repaint grid after modifying selection directly at the MarkData


2001-07-06  Niklas Nebel  <nn@openoffice.org>  [21f6b5efea7150b0db2cfb2ab301617e8d1dc993]

#88764# Refresh: also update refresh delay value


2001-07-06  Niklas Nebel  <nn@openoffice.org>  [066ee8c8a9a4b81d5c80fdafadb1a234a8c2155c]

#88759# SetAnchor sets document modified flag


2001-07-06  Sascha Ballach  <sab@openoffice.org>  [e7e61c72080b51c150cdc54caf2e07f278f7d66d]

#79771#; implements the new API objects XCellRangeContainer and XUniqueCellFormatRangesSupplier


2001-07-06  Sascha Ballach  <sab@openoffice.org>  [5479943a8cebc255944b59f2e8470e7af59f19ae]

#79771#; use the new extensions of the API to get and set the styles faster


2001-07-06  Sascha Ballach  <sab@openoffice.org>  [f07392d01f5e44a916175b96a93b6fc143d92526]

#79771#; fix bug in the optimization


2001-07-06  Sascha Ballach  <sab@openoffice.org>  [63a728debce0bd620b6bf4cc66ae71cc4559192a]

#79771#; remove unneeded method parameter


2001-07-06  Sascha Ballach  <sab@openoffice.org>  [8f6f40345b696f1170b74cc1637c6385b81f6c46]

#79771#; improve the behaviour of merged cells


2001-07-06  Sascha Ballach  <sab@openoffice.org>  [ad6a83f7296450860f38a10d3cecc60d333eb4ea]

#89136#; remove wrong size recalculation


2001-07-06  Daniel Rentz  <dr@openoffice.org>  [8e83f718bc5efc2289a89c9b0418d4a9d8958485]

#73495# grouped text boxes, typo


2001-07-05  Daniel Rentz  <dr@openoffice.org>  [4d290e9a07555867fed0995816d6af6e786d2015]

#73495# import of grouped text boxes


2001-07-05  Eike Rathke  <er@openoffice.org>  [7609993b84745572c46abc0ed3dc8b038fdc264b]

#89253# use SvtSysLocale CharClass


2001-07-05  Niklas Nebel  <nn@openoffice.org>  [d1a94717e4dbcdbfb566969882282b728af85e4d]

#88398# SetFuncString: grab focus only if bDoEdit set


2001-07-05  Niklas Nebel  <nn@openoffice.org>  [dbf24b2ec231567110c80fbbd7d832226153d78d]

#88398# store ref dialog id also in view shell, open only in original view


2001-07-05  Niklas Nebel  <nn@openoffice.org>  [5865bb0841b8c88253a828bef199a659077e640e]

#88398# SetDispatcherLock: lock only dispatchers of calc views


2001-07-05  Daniel Rentz  <dr@openoffice.org>  [ff839959bc1312c48a40a7295193bceeae217f47]

#89284# clone ScTokenArray


2001-07-04  Niklas Nebel  <nn@openoffice.org>  [9dbc8107487062ee776a3e8c3d8141ebc69d163e]

#89262# StopInputWinEngine: reset pTopView when ending input window editing


2001-07-04  Niklas Nebel  <nn@openoffice.org>  [99cf407667aa14e4f0c8f4f1234a450c9517f691]

#89264# SetVisArea: use both size and position


2001-07-04  Niklas Nebel  <nn@openoffice.org>  [adf83e0ca1454a7353a58c50b90e295c799410d8]

#89264# initialize ObjectDescriptor size


2001-07-04  Niklas Nebel  <nn@openoffice.org>  [461d4e208c5516f2ad0cd352394a85a1b1bc8696]

#89071# CopyBlockFromClip: one UpdateReference call for consecutive tables


2001-07-04  Niklas Nebel  <nn@openoffice.org>  [1150750932479c43fed8bc4f78c1cfedc49c0993]

#89069# drag&drop error handling


2001-07-04  Niklas Nebel  <nn@openoffice.org>  [e556e51c1eea04ecdcc103f003bd62109de2fa5a]

#89069# store visible table for dragging


2001-07-04  Eike Rathke  <er@openoffice.org>  [d6004fe0e950d0f2c2979d2326a35be06b6e6603]

#89253# SID_OPT_LOCALE_CHANGED repaints cell contents


2001-07-04  Eike Rathke  <er@openoffice.org>  [6baf55ffa971c24026d1114fbb60eca0dd7b6647]

#89253# slot SID_OPT_LOCALE_CHANGED to notify applications


2001-07-04  Kurt Zenker  <kz@openoffice.org>  [1d368df3476b43912d97cc1a936fdc62454000f2]

Merge SRC633: 04.07.01 - 16:46:48


2001-07-04  Kurt Zenker  <kz@openoffice.org>  [7cddd8e09f49f11ba9af9655915bf9fff50ed7d6]

Merge SRC633: 04.07.01 - 16:33:57


2001-07-04  Niklas Nebel  <nn@openoffice.org>  [5a05be01d0a4309de46a45460780a641586b6804]

#88882# parameter bGroupBox in SfxSingleTabDialog ctor is removed


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [b0e5f6463d59500311f6c0853b32fcc8b9ee5fde]

Merge SRC633: 04.07.01 - 02:14:49


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [9e3065a2ce20fac341b759faec710d3b71fa3e72]

Merge SRC633: 04.07.01 - 01:57:16


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [83883105aa1b4a9f63a5e3a6815499d1ccb673a8]

Merge SRC633: 04.07.01 - 01:42:33


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [22cb59467365721900d73ce4123162aab798905e]

Merge SRC633: 04.07.01 - 01:33:13


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [2b94e8cf92f9820cb9e240df868fa01f75903ea8]

Merge SRC633: 04.07.01 - 01:13:16


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [0c5e5a8b5844c0eca1f86d477677c40e230c82b8]

Merge SRC633: 07/04/01 - 00:38:24


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [180f6be8f5d9357d20aedb75ce990f7098b7d121]

Merge SRC633: 04.07.01 - 00:37:04


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [411d5f4579bfc7ed230b2bd52e4d02aa1d45e5ca]

Merge SRC633: 04.07.01 - 00:34:02


2001-07-03  Rüdiger Timm  <rt@openoffice.org>  [bf5b8c2096989352e0f073b350d593196d484cb9]

Merge SRC633: 04.07.01 - 00:33:33


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [584fa87095df672eabc00a88583e6963a8548741]

Merge SRC633: 04.07.01 - 00:32:40


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [5759637788bbe85afbcb25ac988d4042ec90fb67]

Merge SRC633: 04.07.01 - 00:28:46


2001-07-03  Kurt Zenker  <kz@openoffice.org>  [22dedcac69dbf62d593c42760446b4942bdbf038]

Merge SRC633: 04.07.01 - 00:23:57


2001-07-03  Niklas Nebel  <nn@openoffice.org>  [5839a7e3129d906da7e2310f93a89cd13cd1cfa1]

#88403# #89150# use SvxOpenGraphicDialog instead of SvxImportGraphicDialog


2001-07-03  Daniel Rentz  <dr@openoffice.org>  [7bf8beea1b741b2fd294fab1cb64e96b97792f0d]

#89066# workaround for text marks without link


2001-07-03  Niklas Nebel  <nn@openoffice.org>  [f1e6be8117bd31540e8f55a7b56eceb6c98ccf64]

#89078# SavePool: set forced standard name before saving doc pool


2001-07-02  Kurt Zenker  <kz@openoffice.org>  [6dd7e07cf9b1b21e94eb05e5b5847bfde0846d31]

Merge SRC633: 03.07.01 - 02:37:05


2001-07-02  Kurt Zenker  <kz@openoffice.org>  [d46056f7bf131da6317eae3b7d8ec0a8232eb444]

Merge SRC633: 03.07.01 - 02:30:02


2001-07-02  Kurt Zenker  <kz@openoffice.org>  [b8d033ebeeb187b3a44ad5d466185d3a025bb4ce]

Merge SRC633: 03.07.01 - 02:20:14


2001-07-02  Niklas Nebel  <nn@openoffice.org>  [2aba19485222d7716fe80036284f9aafe572d362]

#89078# ApplyStyleArea: if pattern is unchanged, keep old pattern


2001-07-02  Niklas Nebel  <nn@openoffice.org>  [578197ed87ba739d8359b36f284bfc7bdfda306a]

#89097# initialize rBindings before CommandToolBox


2001-07-02  Daniel Rentz  <dr@openoffice.org>  [506ee1b61cc716b02638f83d6cec99f03957c7b4]

#89064# internal hyperlinks


2001-07-02  Eike Rathke  <er@openoffice.org>  [718874e67293dfbdd8e4b908887c493d2d1f7a9e]

memory leak in MakeColStr


2001-07-02  Eike Rathke  <er@openoffice.org>  [27b56ffc5a3a1db5c82e20d4e18b7b1fe7c58c4c]

use SvtSysLocale LocaleDataWrapper


2001-07-02  Eike Rathke  <er@openoffice.org>  [4c28078d41e80eb434e1039e082f8dffd443fe06]

use SvtSysLocale LocaleDataWrapper


2001-06-29  Rüdiger Timm  <rt@openoffice.org>  [49fe79797db83e03345b8950aca0fd4ab7210431]

Merge SRC633: 29.06.01 - 23:59:41


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [bf02cc2cc087dec412d3ec997db99ba98a2299a3]

Merge SRC633: 29.06.01 - 23:56:08


2001-06-29  Daniel Vogelheim  <dvo@openoffice.org>  [2ccbd2698300441f4f668b35c2d939c7336e15c9]

#86004# changes sXML_* to XML_* constants


2001-06-29  Niklas Nebel  <nn@openoffice.org>  [faaf55fb82e8dded75d8296c764d3b5eccc399ca]

TFD taskforce changes


2001-06-29  Niklas Nebel  <nn@openoffice.org>  [22aa8b28e4ca868ebe56b44f682216c77e37c1bd]

#89021# don't create empty string cells


2001-06-29  Niklas Nebel  <nn@openoffice.org>  [b55953678343cf5ad13906fa2cdc96c4f93e0df9]

#89021# no assertion for unknown field types in ScFieldEditEngine


2001-06-29  Niklas Nebel  <nn@openoffice.org>  [f1a9f69a7c919241e4bfcbf54a91c026844a1207]

#88957# StartEditEngine: turn off script spacing to match DrawText output


2001-06-29  gt  <gt@openoffice.org>  [4d68071835e6cc1ed4380c3f4344eb9f4e4e130c]

#89028# count _up_ to zero if number of days is negative


2001-06-29  gt  <gt@openoffice.org>  [4252be262ad45769e4947f9486570b77cc54cf3a]

ImportExcel8::Read(): array..() read together with cells


2001-06-29  gt  <gt@openoffice.org>  [883851b1443dc4fb9053048b56bfb1808d4d2255]

FilterProgressBar::...(): reduce of SetState()-calls


2001-06-29  gt  <gt@openoffice.org>  [b25b9138fd2b599aed3d7687539d1bc5b0a0ac59]

FilterProgressBar::...(): reduce of SetState()-calls


2001-06-29  Oliver Bolte  <obo@openoffice.org>  [f15fba78612f7d819fc23fc172c70fd46aab05fe]

Merge SRC633: 29.06.01 - 04:45:56


2001-06-29  Oliver Bolte  <obo@openoffice.org>  [cefa4cb2a18e09e7fc4e1976de8c0dea1027a9ab]

Merge SRC633: 29.06.01 - 04:44:55


2001-06-29  Oliver Bolte  <obo@openoffice.org>  [0c985df723a6d150843f0084895dbe635ea2d19e]

Merge SRC633: 29.06.01 - 04:43:52


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [9b34d39b82194174c5607279048623d2a36b0731]

Merge SRC633: 29.06.01 - 04:37:27


2001-06-29  Oliver Bolte  <obo@openoffice.org>  [5aab5e82e5ed0c58dc5a9ab6077ea99e20b9ba6e]

Merge SRC633: 29.06.01 - 04:40:14


2001-06-29  Oliver Bolte  <obo@openoffice.org>  [7b922e85d6d833dd0413a126ce85961231a95d95]

Merge SRC633: 29.06.01 - 04:32:38


2001-06-29  Oliver Bolte  <obo@openoffice.org>  [ff5c3f97b29f81337afe91d037071513de59919c]

Merge SRC633: 29.06.01 - 04:31:25


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [9c388ca61c34e8eef5d90df78ed0587999aa6f64]

Merge SRC633: 29.06.01 - 04:16:49


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [e55465568ae17365ee0b7482efdeec83d9770cc4]

Merge SRC633: 29.06.01 - 04:15:43


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [23d191a72d4ee3bbf570f61c7c36a7c31e25195e]

Merge SRC633: 06/29/01 - 04:15:20


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [39007ef3c013fd0e8af0a3ddfa45e7fa71ca4831]

Merge SRC633: 29.06.01 - 04:15:10


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [ba4eca8d3ea64aac8c22bcadfcf6dc94e49eade5]

Merge SRC633: 29.06.01 - 04:13:56


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [66227e85f4fcc5e3fd71103c88568245f661752d]

Merge SRC633: 29.06.01 - 04:14:26


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [b8744b1b209ced9c509caf734c10e161fbfc4d98]

Merge SRC633: 29.06.01 - 04:13:51


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [99bdc99a2a2d33c78e81f645adacd31ee9e514a6]

Merge SRC633: 06/29/01 - 04:13:34


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [f085f1d7122012b2148b819952d885404c88e22f]

Merge SRC633: 29.06.01 - 04:12:47


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [dbbc4ca71accc96bbc2d99f2222823185ab5c0d6]

Merge SRC633: 06/29/01 - 04:12:38


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [73d388721f3b1ea6ca5de6669d2243fb988b72fe]

Merge SRC633: 29.06.01 - 04:13:20


2001-06-29  Kurt Zenker  <kz@openoffice.org>  [4e19f314b76636c5c16b33472e84b6a2ec93b72b]

Merge SRC633: 29.06.01 - 04:12:34


2001-06-28  Niklas Nebel  <nn@openoffice.org>  [03243cdaf3e4884d7624e8fd7981d85e343d9bbf]

#88815# collect column data as case sensitive collection, skip in FindText


2001-06-28  gt  <gt@openoffice.org>  [0b59363e3d975b5a92c58f5305890866ffd6c145]

IMSUM: no need for name/description of second parameter


2001-06-28  gt  <gt@openoffice.org>  [26bf9a809e0e987e93a0bcc52df9c1b535f1698a]

FuncData::GetStrIndex(): if nParam should lead to last string -> take it twice


2001-06-28  gt  <gt@openoffice.org>  [72944a7468c29bfc8ea0dd3cd1ee94f3d4e68c1b]

#88908# not possible set of XF index in array record disabled


2001-06-28  Daniel Rentz  <dr@openoffice.org>  [2c073945f5a006391b07ce85b550910b7c3d1189]

#88752# http links get lost


2001-06-27  Daniel Rentz  <dr@openoffice.org>  [7d544ecbe0dd3e7045c5957d8a5678e6f86bedaa]

#88752# http links get lost


2001-06-27  Niklas Nebel  <nn@openoffice.org>  [7a4228a38bd74e92bf0248190944621b255972f6]

#88772# own help ID for SfxURLBox in external data dialog


2001-06-27  Daniel Rentz  <dr@openoffice.org>  [9918043e1f47a8df074d4df2e7fca5a59d555b99]

export names without formulas with VB flag


2001-06-27  Daniel Rentz  <dr@openoffice.org>  [4f3249f8f525be1b5d9b6495335779a6c8311eb6]

ignore charts in first run


2001-06-27  Daniel Rentz  <dr@openoffice.org>  [39d204cde8cde3489df8b8dc4b309c1971c3137f]

added CharSet to XclImpStream


2001-06-27  gt  <gt@openoffice.org>  [b46373041a7ae64cc5dc1ef9552906b7353cfacf]

vcl additional (until class ResStringArray is moved to tools!)


2001-06-27  Sascha Ballach  <sab@openoffice.org>  [14eadffccd7569bf62169854df225c1024bd6279]

#87219#; made the required change to call startPage and endPage


2001-06-27  Sascha Ballach  <sab@openoffice.org>  [4ba588ecd09431e95a6c97558633ed524b902b34]

#88491#; make the source point of the callout box the anchor


2001-06-26  Niklas Nebel  <nn@openoffice.org>  [ee830d9da03c5769cc9fbae40be6a3120521dfbd]

#88436# Load: set error code from storage to docshell


2001-06-26  Niklas Nebel  <nn@openoffice.org>  [7d3b6cf1f18b3a973c78b19fe827923499b77c77]

#88436# set wrong password error code for format error in encrypted file


2001-06-26  Daniel Rentz  <dr@openoffice.org>  [d828a0f68e5b62b7a1ab510dbbef535c14cabcf6]

default names of data columns in chart legend


2001-06-26  Sascha Ballach  <sab@openoffice.org>  [27155e2fed838fa5d486e581f7d2887a314e126c]

#88777#; if no pData create new ScTokenArray and do not clone


2001-06-26  gt  <gt@openoffice.org>  [e6e1bf4ad00184aebb5b3661b5012bda27f37d53]

typo in ANALYSIS_Cumprinc_add / String 1 / German


2001-06-26  gt  <gt@openoffice.org>  [16541c2110b6352b280e70edfd6a133e0f356ad2]

#88733# max row as INT32 allows negative values...


2001-06-25  Niklas Nebel  <nn@openoffice.org>  [b56e2a596c25c8373d0fb2391f209f74ec59f51f]

#87795# support CJK character compression


2001-06-25  Niklas Nebel  <nn@openoffice.org>  [0fbdd99cbc1339b055d116c5a4f28d9dafc92d2f]

#87795# support CJK character compression


2001-06-25  Niklas Nebel  <nn@openoffice.org>  [37730ed1f3d64c656a6eb2977781d98ad6e6b03f]

#88739# renamed: external data source -> external data


2001-06-25  Niklas Nebel  <nn@openoffice.org>  [5df2f2acdb30eb6d1b45fcebbdb51fa4a7fdade0]

#82371# handle database beamer with SID_VIEW_DATA_SOURCE_BROWSER


2001-06-25  Niklas Nebel  <nn@openoffice.org>  [570114c07a28c544d83b8f56a6b1f64c62f4cea2]

#82371# handle database beamer with SID_VIEW_DATA_SOURCE_BROWSER


2001-06-25  Eike Rathke  <er@openoffice.org>  [f0eed64c850812826158bd10be9d507c70cb77dc]

#87257# use Application::GetSettings().GetLanguage() instead of System::GetLanguage()


2001-06-25  Sascha Ballach  <sab@openoffice.org>  [d80278d9911875e057f56962c6ad68ee487dc3c7]

#88691#; export and import relative addresses of linked tables and so on


2001-06-22  Niklas Nebel  <nn@openoffice.org>  [cd0e5ba182cf1eff20c02f0ca33a13c33d14c81b]

TFD taskforce changes


2001-06-22  Niklas Nebel  <nn@openoffice.org>  [2d8080b0c117f9c85298f76acc6fc9b6133fa1ed]

#88658# assertion for invalid user name only if not empty


2001-06-22  Niklas Nebel  <nn@openoffice.org>  [35db56402edd17ebeab768b96484713608e82b6a]

#88658# after loading from 5.0 file, ensure correct sorting of user names


2001-06-22  Niklas Nebel  <nn@openoffice.org>  [bbc64078efb63b19709c3cb00eb11f67cd8c926c]

#88658# StrCollection::Compare: right order


2001-06-22  Niklas Nebel  <nn@openoffice.org>  [b1ac936131808f5e64ab181ec232602cec3ebbcd]

#88606# TopTenQuery: assign to aSortParam member for sorting


2001-06-21  gt  <gt@openoffice.org>  [43f8e11a2e9557bb6c7f4935ac86a0f1fb61affd]

#88607# no delete of resource manager in dtor, because it's to late (already destroyed before)


2001-06-21  gt  <gt@openoffice.org>  [fe2002148ca39e00257fceb5430feccca2831d18]

UNOTYPES + com.sun.star.uno.XComponentContext


2001-06-21  Eike Rathke  <er@openoffice.org>  [7b47ebc20f406d2cde07857119f6ac819c7707a0]

#86153# ValidQuery performance; removed unnecessary ScColumn::Search() calls


2001-06-21  gt  <gt@openoffice.org>  [d064f27518180350818f40c230da3fb502acf371]

#88596# get / reinitialize resource manager after setting locale


2001-06-21  Sascha Ballach  <sab@openoffice.org>  [ebed3fc2e36fa9efb93ef80adb79d509e2fd5b79]

#88521#; remove the first ' character if there is one of the text cell content


2001-06-21  Niklas Nebel  <nn@openoffice.org>  [dd88d154a60271404ff93576e4d0e7e90311dcf0]

#88521# SetCellText: use quote as text marker also for bEnglish


2001-06-21  Niklas Nebel  <nn@openoffice.org>  [545f624061fbfb0ee37d56a62642faec8495f364]

#88521# getFormula: add a second quote if the string starts with one


2001-06-21  Sascha Ballach  <sab@openoffice.org>  [2151e1ef56dc14b07ab79b6729cc8afdfacc7966]

#79771#; improve the behaviour of AddRange


2001-06-21  Sascha Ballach  <sab@openoffice.org>  [b6922601cf1b38bedbac7b854231577e976cc135]

#79771#; it is not neccessary to set another celltype


2001-06-20  Niklas Nebel  <nn@openoffice.org>  [3139e31ddc30d9020815c06fa80c78ca6f070938]

#88438# InitDrawLayer: don't call GetTitle while loading


2001-06-20  Sascha Ballach  <sab@openoffice.org>  [bbdc205b0071172a0bb38c2123d7945cd67ec458]

#79771#; implements and use a better AddRange method


2001-06-20  Sascha Ballach  <sab@openoffice.org>  [b84407a0a6737f47835333d517ec14a2b3c0485e]

#79771#; use of the new UpdateSymbol method


2001-06-20  Sascha Ballach  <sab@openoffice.org>  [7ab1a45b07df9f8cb42cd7ef72b2b1d4f6c90b14]

#79771'; UpdateSymbol for OUStringBuffer added


2001-06-20  Niklas Nebel  <nn@openoffice.org>  [41596cc7eaaff0d212334f7ead8989deb3b9eb01]

InitAddIns: use LocalFileHelper to convert path into correct URL for server


2001-06-20  Niklas Nebel  <nn@openoffice.org>  [70458ce9e22b7fbf278f02bb275b548102990090]

#88458# Command: handle COMMAND_CURSORPOS here if not in edit mode


2001-06-19  gt  <gt@openoffice.org>  [14a5029ba555fe1759800d3845f943b54ae0b5ff]

#i991# ColRowSettings::ReadSplit(): no reset of freeze


2001-06-18  Niklas Nebel  <nn@openoffice.org>  [519887302e36dd697abfeeacfdb8fcbdaa3d3614]

#88176# UpdateHeaderWidth: avoid extra step at 0


2001-06-18  Niklas Nebel  <nn@openoffice.org>  [e3d53776084630847943b0c92b4fee5cabec6a49]

#88176# use SetUpdateMode to avoid formatting the text several times


2001-06-18  Daniel Vogelheim  <dvo@openoffice.org>  [b2d99be98208272c8bf89a414c315b9a413bce28]

#86004# changed SvXMLExport document class from const sal_Char* to enum XMLTokenEnum


2001-06-18  gt  <gt@openoffice.org>  [d83fda28c9ef136909f6cac768af249335f12654]

#87828# resource name depends on SUPD


2001-06-18  gt  <gt@openoffice.org>  [3246bab5180918b7759d60f5a711015710d57450]

all valid excel function names in misc languages


2001-06-18  gt  <gt@openoffice.org>  [4ae971c8de1c6193ad34cfe42b4fe0d5d6cb830a]

#87828# additional handling of resources


2001-06-18  Kurt Zenker  <kz@openoffice.org>  [03b5a2980d1fe6a5b5427aa6461b3a5d3d98f1e3]

Merge SRC633: 06/15/01 - 23:59:44


2001-06-18  Sascha Ballach  <sab@openoffice.org>  [b895f06d84b25b1957c56ecb5001d0b7f6d1a238]

#79771#; don't set the type on a cell with a formula


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [670aafa5df1ffaf1d12e2a6931135813866a655f]

Merge SRC633: 17.06.01 - 00:00:15


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [ae013d85edb03b4fda1a9d8047bfbb4173cfad75]

Merge SRC633: 16.06.01 - 23:59:16


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [e7a448ac399fbb13e68f81cfbce8a3df3cd97bb6]

Merge SRC633: 16.06.01 - 23:58:11


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [6df76bcc13175aa85eeb60276f8aa2527765c59a]

Merge SRC633: 16.06.01 - 23:55:07


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [0fef6b69ac1aef66bdd48a36b3b88f4c25bf794f]

Merge SRC633: 16.06.01 - 23:51:13


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [3476605dce4d40b6269c3338e5f93f1c7d267425]

Merge SRC633: 16.06.01 - 23:50:07


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [0e917fe05579999d70622e3bfe67fa0c8d853cd2]

Merge SRC633: 16.06.01 - 23:46:46


2001-06-16  Kurt Zenker  <kz@openoffice.org>  [a6e9c9eb49cbf1cfb684a9617dea6abaae61f25e]

Merge SRC633: 16.06.01 - 23:46:20


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [9f773b410257657def6ec70899b6f4677b330086]

Merge SRC633: 16.06.01 - 23:45:08


2001-06-16  Kurt Zenker  <kz@openoffice.org>  [83edb800d12b5803fb7dd7e14440c7582596195c]

Merge SRC633: 16.06.01 - 23:45:08


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [9c08c8f316f90e4cc1f2efb9304e59b3ef87d276]

Merge SRC633: 16.06.01 - 23:44:00


2001-06-16  Kurt Zenker  <kz@openoffice.org>  [797dd77ef34436efcef47c43d6d357f9b6cdbbdc]

Merge SRC633: 16.06.01 - 23:44:05


2001-06-16  Rüdiger Timm  <rt@openoffice.org>  [a4aa623675486ac5ea9a9c53c1697a03105b3307]

Merge SRC633: 16.06.01 - 23:42:55


2001-06-15  Kurt Zenker  <kz@openoffice.org>  [e1734dd3cca39c77c95422cb0e700506c820fdf8]

Merge SRC633: 16.06.01 - 02:31:50


2001-06-15  Kurt Zenker  <kz@openoffice.org>  [23b3c1af5202e5236efbb5fc03eec4027ea46bae]

Merge SRC633: 15.06.01 - 23:59:06


2001-06-15  Kurt Zenker  <kz@openoffice.org>  [4510f2856f9673d31959cd0aaa284431f68f0868]

Merge SRC633: 15.06.01 - 23:56:36


2001-06-15  Kurt Zenker  <kz@openoffice.org>  [b7ba81cf088e57043a687487a5c36fd502ef1c75]

Merge SRC633: 06/15/01 - 23:54:40


2001-06-15  Kurt Zenker  <kz@openoffice.org>  [bb583cc36cd8a530bd2fce07171a61997f86ef98]

Merge SRC633: 15.06.01 - 23:54:19


2001-06-15  Kurt Zenker  <kz@openoffice.org>  [17015478c32ff47d0e19fef5af5eee7e1998bc99]

Merge SRC633: 06/15/01 - 23:52:34


2001-06-15  Kurt Zenker  <kz@openoffice.org>  [74aefc2487c763bd3672d61fb08e2f0a3c66acd1]

Merge SRC633: 15.06.01 - 23:52:34


2001-06-15  Rüdiger Timm  <rt@openoffice.org>  [b7286e7dc575095e2252908efe66bf84e9a6106a]

Merge SRC633: 15.06.01 - 23:50:22


2001-06-15  Kurt Zenker  <kz@openoffice.org>  [e99585d2d56a77c1b9d81e38a3a13ae595b4dbb9]

Merge SRC633: 15.06.01 - 23:50:38


2001-06-15  Sascha Ballach  <sab@openoffice.org>  [5c4f8219c04cb09a02e52b17eee07c02fe8c6173]

#79771#; use rtl::OUStringBuffer instead of String to get a English Formula


2001-06-15  Daniel Vogelheim  <dvo@openoffice.org>  [c003b16090e2649138927e9e8cbd6c900374f261]

#86004# changed SvXMLTokenMap to use XML tokens


2001-06-15  Niklas Nebel  <nn@openoffice.org>  [2c9474ba562bc756ca0bc0ebc592636670193511]

#88286# always return valid reference position


2001-06-15  Niklas Nebel  <nn@openoffice.org>  [ddd891ea58747123aafbc18edb450eb9ae320c28]

#88286# ValidateTabRefs


2001-06-15  Daniel Rentz  <dr@openoffice.org>  [8f01e8b8a567ac1fae26c224404d4ed067e44fd0]

#86988# dialog redesign


2001-06-15  Sascha Ballach  <sab@openoffice.org>  [3bf798bc7641f568f54a6e473f993b9d7f08eff7]

#88311#; only create the objects if needed (in content export)


2001-06-15  gt  <gt@openoffice.org>  [ec29241237c4e831c54163f9e2f8534cba3089f6]

#88297# typos


2001-06-14  Kurt Zenker  <kz@openoffice.org>  [7aa5d294f20aec5b45769143aa2a5f6014042bd6]

Merge SRC633: 14.06.01 - 23:43:50


2001-06-14  gt  <gt@openoffice.org>  [a965634804eba0196711d17ea48fd1130a0388a8]

#88244# more description for parameter 1 of Bessel* functions


2001-06-14  Daniel Rentz  <dr@openoffice.org>  [a5299fbe988e5bed3e0eeaac7f5b84fa9a08ca85]

#86988# dialog redesign


2001-06-14  gt  <gt@openoffice.org>  [8b1094f8e8d58b2de1afab031abd3645806ff57f]

#88244# changed description from Duration and Yielddisc


2001-06-14  Sascha Ballach  <sab@openoffice.org>  [e7d62f0a07e84acfdb605f20392a63cab1ae628b]

#79771#; use new method on ScDocument GetStandardIndexEnglishUS()


2001-06-14  Sascha Ballach  <sab@openoffice.org>  [63eb66f6388336386156f5637a85ecd5cff715e2]

#79771#; creates the StandardIndex of EnglishUS only once if use the new method


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [5f7d9f37a9c95e4ca8913d7e02622459f3ba883c]

Merge SRC633: 06/14/01 - 01:57:36


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [0984a493cad283c32d28053a2e655e4e21a66ddd]

Merge SRC633: 06/14/01 - 01:55:19


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [76bfc40314abf0a784574c7cdbc9fe8821c3c15b]

Merge SRC633: 14.06.01 - 01:43:30


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [a07136691d5fa10430cba7fb6db981949d8f8772]

Merge SRC633: 14.06.01 - 01:41:36


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [e5ce3a01b19e5a8dfa75e8fe741178ff526ffc00]

Merge SRC633: 14.06.01 - 01:39:43


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [76a4d5ec068d123f2d4ada14a5a7cc04fcb73dd8]

Merge SRC633: 14.06.01 - 01:37:46


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [c0191a8c8ac58036c7989ce990113c34574c0c89]

Merge SRC633: 14.06.01 - 01:35:50


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [679fb8766f8680151c7cfdd2980c692efcb64e17]

Merge SRC633: 14.06.01 - 01:33:52


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [a523e189059a94d7cc9a63927b70775e3f85fe9b]

Merge SRC633: 14.06.01 - 01:31:46


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [161a544ee71dff2601aee2a5555b4ae79f43a9cf]

Merge SRC633: 14.06.01 - 01:29:41


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [080d8025b05118270599784aa834cb2a309d3a93]

Merge SRC633: 14.06.01 - 01:25:22


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [c2d6363fef942fbc666a714a745ceac1a05d208e]

Merge SRC633: 14.06.01 - 01:21:52


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [ffa77d3f68755ffd186ff693ecb4f90d304ee029]

Merge SRC633: 14.06.01 - 01:19:45


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [8f65582a2fb4b80e7e427c29a2aa6fd6af1fe48c]

Merge SRC633: 14.06.01 - 01:17:26


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [f8f57e8d4db72cecd9cb0fbd9bfd4adcbc9d57ed]

Merge SRC633: 14.06.01 - 01:15:11


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [e6b6cb5b50cbb18ba49d6aa647eb3f88e357abe8]

Merge SRC633: 14.06.01 - 01:13:20


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [4d65319b1f3d457c51d345d76486407d1d79b9ef]

Merge SRC633: 14.06.01 - 01:11:11


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [488ccdd913e702abd3b8b67ac82248440798d4a9]

Merge SRC633: 14.06.01 - 01:06:54


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [e70f1e464c51952e0ee347109c75a6f3194e9493]

Merge SRC633: 14.06.01 - 01:04:35


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [cc53a23765697901e3b46c6ffbb77409db6112ef]

Merge SRC633: 14.06.01 - 01:02:20


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [18046c5d222322d41f7194322153c6c8956330ac]

Merge SRC633: 14.06.01 - 01:01:23


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [15c87f6f181677aa1cca89dcbafc9739f05b2e47]

Merge SRC633: 14.06.01 - 01:00:23


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [33640c7cd9241c91a920acbeb3e733764da44cca]

Merge SRC633: 14.06.01 - 00:59:02


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [e9bd2cc4d90d2538e85fbb7c8c2de0629ac5e033]

Merge SRC633: 14.06.01 - 00:58:33


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [813d1adf18411b9ab3ef18e650cb9de76b82a77e]

Merge SRC633: 14.06.01 - 00:56:47


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [0b687d4c9a9a0bd36356c5e27c48c7b0b4d3674e]

Merge SRC633: 14.06.01 - 00:56:26


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [997cd2e4a1644ed00caeaa573ac022d36e608b76]

Merge SRC633: 14.06.01 - 00:54:40


2001-06-13  Rüdiger Timm  <rt@openoffice.org>  [8800c0556f4c6c705fe2a1e9ef28543ee24c6993]

Merge SRC633: 14.06.01 - 00:54:37


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [ec04319d2bdb9a3d8a89a6c3b7fbeadc9fca94f9]

Merge SRC633: 06/14/01 - 00:52:51


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [f10bbe0b6dc48364d6fc41e2e0bdde2753fcc0b5]

Merge SRC633: 14.06.01 - 00:53:38


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [43f21d70ac05b09d388c01d71b97c600f4c27b1b]

Merge SRC633: 14.06.01 - 00:52:29


2001-06-13  Rüdiger Timm  <rt@openoffice.org>  [e1a2d189711311c4e08f7f6f3f869432a3fab46e]

Merge SRC633: 14.06.01 - 00:52:54


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [2696e1d628084c3e547e3572eab8e4dea2eef64c]

Merge SRC633: 14.06.01 - 00:52:27


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [a45f450ca74a6e2106a24b040bbe1c8b20be97da]

Merge SRC633: 06/14/01 - 00:50:29


2001-06-13  Rüdiger Timm  <rt@openoffice.org>  [10bf32fc6f279ee8a1eecffe20ad2c971fb5603c]

Merge SRC633: 14.06.01 - 00:51:17


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [087de90e0cbbdf32e104fa92e41e41cbb908e8e3]

Merge SRC633: 14.06.01 - 00:50:25


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [96a372dc5ed2a154079221b8211c88c217f85172]

Merge SRC633: 14.06.01 - 00:50:22


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [b467938892b044ed063e73b7f7e81ac9a5aa48b0]

Merge SRC633: 14.06.01 - 00:50:41


2001-06-13  Rüdiger Timm  <rt@openoffice.org>  [61966c6a2991cebe8c18a1bed3ee2ae0de010f3b]

Merge SRC633: 14.06.01 - 00:49:45


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [cc96a8bcb25e3de0f583046874efcb9f4f6ccf07]

Merge SRC633: 06/14/01 - 00:48:32


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [7015533e9217b93ecb6306324765994cfb71e3a6]

Merge SRC633: 14.06.01 - 00:48:32


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [f9c2707a32829558b7dcd68586a2580677d26119]

Merge SRC633: 14.06.01 - 00:48:05


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [2e8eb6f30cfe06a91b534de324a63b0d65f2fc8b]

Merge SRC633: 14.06.01 - 00:48:20


2001-06-13  Rüdiger Timm  <rt@openoffice.org>  [9643fb01485509a306612e09ae23e9cf4cfa5861]

Merge SRC633: 14.06.01 - 00:47:51


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [fa478d1df70cd80d0a65d8a24810f09c5652daeb]

Merge SRC633: 14.06.01 - 00:46:41


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [9586a86d89126ad6188b74652cb19525d3dbb5ac]

Merge SRC633: 14.06.01 - 00:46:46


2001-06-13  Rüdiger Timm  <rt@openoffice.org>  [319310dfa191f07036ac8532184c950cee27c3b8]

Merge SRC633: 14.06.01 - 00:45:59


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [aed7e7192d4a602eee6836b7f93df61916712fcb]

Merge SRC633: 14.06.01 - 00:44:59


2001-06-13  Sascha Ballach  <sab@openoffice.org>  [e6092e13ca6b3733af4d825fed66206c88db3173]

#79771#; move the dirty flag to the CellTextData


2001-06-13  Sascha Ballach  <sab@openoffice.org>  [23f9846b9e62d494a5a58d77cbe8b23843588566]

#88112#; test whether I get a style


2001-06-13  Sascha Ballach  <sab@openoffice.org>  [611dc503e49f8c54a380393a89f9b54776d43f0f]

#88216#; only remove styleranges if the range is exported


2001-06-13  Daniel Rentz  <dr@openoffice.org>  [f92ae0f6c9c2900b3eb87ed6a4b29e459582db57]

#86378# import/export of print ranges/titles


2001-06-13  Kurt Zenker  <kz@openoffice.org>  [9334769788a60d702125c2cab2ded0cf9c27abe5]

Merge SRC633: 06/13/01 - 14:07:56


2001-06-12  gt  <gt@openoffice.org>  [918d878c4cf7d8c530d3e8a2f3c509db6c0bf5b5]

#88070# help ids for Analysis Addin functions


2001-06-12  Sascha Ballach  <sab@openoffice.org>  [adce12e086f76416956fa71dd17542a1f007fa58]

#79771#; XActionLockable added


2001-06-12  Niklas Nebel  <nn@openoffice.org>  [e8994e4d87ad8039e39c975fcad860b98280063b]

#87609# OpenURL: use item SID_BROWSE instead of SID_BROWSING


2001-06-11  Niklas Nebel  <nn@openoffice.org>  [55dcec5cf460ae4c17552de34f22c2b99cb32029]

#88011# EditGrowY: dont grow edit area if scrolling already enabled


2001-06-11  Niklas Nebel  <nn@openoffice.org>  [04f18e563623576cc4cffe6325aa23722dc622b3]

#88011# UpdateEditViewPos: look at end column/row to test for hidden view


2001-06-11  gt  <gt@openoffice.org>  [d5adbe55350cc8b72f77410ce5062dd7589cd8c4]

#88055# changed German description of GESTEP


2001-06-11  Daniel Rentz  <dr@openoffice.org>  [eebcd50cc9e19a8777a5e223254a5e7c867c3e06]

#87981# checkboxes don't accept mouse clicks


2001-06-11  Niklas Nebel  <nn@openoffice.org>  [eb6e21981f38c1cc77174f57b2ce565eed42dada]

#88004# connection URL for dBase without trailing slash


2001-06-11  Mathias Bauer  <mba@openoffice.org>  [503271fc70c9d32b7c66399baf4026f438c393b7]

#87722#: no global access for ImageManager


2001-06-11  Sascha Ballach  <sab@openoffice.org>  [88b9976ffb63db870077392469094cdbe1119475]

#79771#; make the SetType method faster while using the NumberFormat getting from the style and no longer from the propertyset


2001-06-11  Sascha Ballach  <sab@openoffice.org>  [06a080a0e1fb96727c835a4cdf2f37428230dfea]

#79771#; remove some unnecassary calls


2001-06-08  Oliver Bolte  <obo@openoffice.org>  [cb94e2c32c677d5667db1b38e3911bce94d99ffd]

Merge SRC633: 09.06.01 - 01:30:42


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [39bdcb612857df9c3cbc6183be703bfa308e8524]

Merge SRC633: 09.06.01 - 01:29:16


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [dd04e09d784c3f65ba84353321eefed2d2813575]

Merge SRC633: 09.06.01 - 01:27:30


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [c0a21a0cd5f4b52547d2e3a7bbd30a3ac025cc3e]

Merge SRC633: 09.06.01 - 01:25:26


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [92552b59b5ae640d730336573a7eeb79afe1a624]

Merge SRC633: 09.06.01 - 01:23:16


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [f85d3bec7c8ee34c895f86c7e09dddd8a260cd6b]

Merge SRC633: 09.06.01 - 01:20:41


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [0d29023a5f8107261ee27926498ab47f217ca5dd]

Merge SRC633: 09.06.01 - 01:18:31


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [54d0a9b2ee13f9ef52c5152960e55c3e0aef6cea]

Merge SRC633: 09.06.01 - 01:15:57


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [12cabdfc0c3dcb64a72084e3a47bec3fb3480276]

Merge SRC633: 09.06.01 - 01:14:01


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [d893aa7392313c34f3cbd48a8840e3b86d2afcd5]

Merge SRC633: 09.06.01 - 01:12:00


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [aaade30ae47bd6ad94fe1c897cc047f08942b879]

Merge SRC633: 09.06.01 - 01:07:40


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [ac8b739b751ecd52d5462a48a687b222d23408ce]

Merge SRC633: 09.06.01 - 01:04:29


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [940fe06475a2deb60f19d2df3cc753e191cde750]

Merge SRC633: 09.06.01 - 01:02:07


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [fc5ea77c644b2cb4ded325793ceefca1548c547a]

Merge SRC633: 09.06.01 - 00:59:49


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [81e8afdeaa011ed0c3173d752039f1a36620a2aa]

Merge SRC633: 09.06.01 - 00:57:41


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [9b8faa4bbf8e4e0a1fbdeb269f38dfd03e90344e]

Merge SRC633: 09.06.01 - 00:55:17


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [e5886f4574788efea053ac4e8040a428d920098b]

Merge SRC633: 09.06.01 - 00:52:56


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [6abd5530be6961be5a2a92e87d6931e5af2365ab]

Merge SRC633: 09.06.01 - 00:48:30


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [d4d58dd272edbf14c6bc0953d900be827417ed99]

Merge SRC633: 09.06.01 - 00:46:01


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [770188bede523b64c10ac677b119688b5c01cb30]

Merge SRC633: 09.06.01 - 00:43:26


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [0bb4134d00037e88773a7c11b2ebcc96fcc15ef7]

Merge SRC633: 09.06.01 - 00:40:38


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [d24343bf6f91a497654df12253e389a3e1af7781]

Merge SRC633: 09.06.01 - 00:41:09


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [c96ccf3792bc4f533a33bcd743349dacc1440460]

Merge SRC633: 09.06.01 - 00:38:36


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [1f89a4086bf72c00f2b1a537bac8b59d45e11890]

Merge SRC633: 09.06.01 - 00:39:08


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [fd29f1859edb336afe2c0c01d917ab4a9a686c5a]

Merge SRC633: 09.06.01 - 00:36:45


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [e65a8768909fb676b2bad31d421a2ad10ae14637]

Merge SRC633: 09.06.01 - 00:37:11


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [737430dd3b5d60feba15f4628ee178669aeb95ee]

Merge SRC633: 09.06.01 - 00:34:50


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [7aedc40da01e520b4818f64e85943b3ade6eb437]

Merge SRC633: 09.06.01 - 00:34:34


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [d2fc08099ff994c179144bff243fd74bcf131e98]

Merge SRC633: 09.06.01 - 00:32:53


2001-06-08  Oliver Bolte  <obo@openoffice.org>  [2bad14064f33c010dcc71a02291fc4ab2f8e6ab5]

Merge SRC633: 09.06.01 - 00:35:47


2001-06-08  Vladimir Glazounov  <vg@openoffice.org>  [a149c740040ea5de64ab52e05915d3b8ba65b99d]

Merge SRC633: 09.06.01 - 00:32:39


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [c91b701e6747e8165e7f57712f38eb1670402ffb]

Merge SRC633: 06/09/01 - 00:32:20


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [f946e9bf795b5748df3cdbfd14ae422d07ce4059]

Merge SRC633: 09.06.01 - 00:32:14


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [508ebb8a2712ff2dc6d88cf0649668e9b416e198]

Merge SRC633: 09.06.01 - 00:33:09


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [f0da49862847c4be545e7644ff84b4e00273c755]

Merge SRC633: 06/09/01 - 00:31:52


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [45185e06eeab4f5a050558a9e759450584000bcf]

Merge SRC633: 09.06.01 - 00:32:50


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [1495328ff1f3aff4f8acb89305271a6aa326020c]

Merge SRC633: 09.06.01 - 00:30:47


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [d4066f9bef2f3fbd02dc7a8c3b3ec8659636178d]

Merge SRC633: 06/09/01 - 00:30:03


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [b4a92aa785d8526b46e65b600fc8c1fe45c2cb39]

Merge SRC633: 09.06.01 - 00:30:53


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [403bc6b30c8bf9f1b2aa11c314f8a23de9dd5396]

Merge SRC633: 09.06.01 - 00:29:51


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [773accf47e9c65376ceff1978681f28f4c31699d]

Merge SRC633: 09.06.01 - 00:30:29


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [23adaa5cbe6610230c94fd3bd58ec367037c333e]

Merge SRC633: 06/09/01 - 00:28:55


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [07e246d57684d6ad4c0fb66a4bd9e700e330d322]

Merge SRC633: 09.06.01 - 00:28:28


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [81a8cbc9929a431ce5b13ce19645570b62979aad]

Merge SRC633: 06/09/01 - 00:27:49


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [e08e01af2031db8628e5b2c6ca5ad9555d0d7d02]

Merge SRC633: 09.06.01 - 00:28:55


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [54470796aa09c5099634ba2fb60e5d6ff30a58cf]

Merge SRC633: 09.06.01 - 00:28:38


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [0c491ea291d9308e88d6f714299af3bd173d88aa]

Merge SRC633: 06/09/01 - 00:26:11


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [15d2782231c582f3a0023a0affabc4e4f44a5ba8]

Merge SRC633: 06/09/01 - 00:25:35


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [f3369076690fe7c6bada7e532772571f1a1dcf7a]

Merge SRC633: 09.06.01 - 00:25:34


2001-06-08  Kurt Zenker  <kz@openoffice.org>  [140915780ba00ae946759d4220161820f631193d]

Merge SRC633: 09.06.01 - 00:26:42


2001-06-08  Rüdiger Timm  <rt@openoffice.org>  [ef615d5ff6b7e3fab1c4440940e9e5bf0185ee48]

Merge SRC633: 09.06.01 - 00:26:39


2001-06-08  Niklas Nebel  <nn@openoffice.org>  [7bf27e7241aa26ce63647724d7916629b92d0cf0]

#87187# ucb may throw different exceptions on failure


2001-06-08  Niklas Nebel  <nn@openoffice.org>  [3ab7ef54d2bcdc4c7d07b3b5c8e7a8f78d18671c]

#87187# InitAddIns: ucb may throw different exceptions on failure


2001-06-08  Daniel Rentz  <dr@openoffice.org>  [b2b3b62073a0b20de99df4300ffa29cf4f4c66f8]

#81094# OLE conversion on excel import


2001-06-08  Niklas Nebel  <nn@openoffice.org>  [36bfef29f709b8591a21e4e6c3cbd04bd3def628]

#87974# don't use empty string as ShortDocName for unsaved document


2001-06-07  Niklas Nebel  <nn@openoffice.org>  [fd869f6376c986f33c2691118f43952acdf0c857]

#79771# share EditEngine between child objects of cell text


2001-06-07  Daniel Rentz  <dr@openoffice.org>  [24d8b342aa43663c014e8fc87a22ddc508360136]

#85093# export of matrix formulas


2001-06-07  Niklas Nebel  <nn@openoffice.org>  [4670e4be77f65b9a5f3c922dab69522e67220d5d]

#87738# GetStretch: calculation in double, skip device MapMode if FmtDevice set


2001-06-07  Sascha Ballach  <sab@openoffice.org>  [b973026921baae04ecfe0d8e181d122440533ed1]

#79771#; fix a little bug in the performance optimization


2001-06-07  Daniel Rentz  <dr@openoffice.org>  [9d45397e9e3c02ff2c78124cf4ba1ecf1e264481]

#86988# dialog redesign


2001-06-07  Sascha Ballach  <sab@openoffice.org>  [2e7b72c5eea949a22af8df4f9728601e0cb9d1f2]

#87900#; overwrite default header and footer if necassary with empty text


2001-06-07  Sascha Ballach  <sab@openoffice.org>  [48b11fc0fba72d22e5040802e3f7c1e831b5fa3a]

#79771#; some performance optimizations


2001-06-06  Niklas Nebel  <nn@openoffice.org>  [30d79ee3a953a7ea2c17d0a41fc7976d885cd084]

#87871# also accept smaller integer types in Any as values


2001-06-06  Eike Rathke  <er@openoffice.org>  [62a73424e8366496aeffb83710afd91d9199c8a2]

#79507# merge top level and branch which was created throwing the last Z'ed revision away :-(


2001-06-06  Daniel Rentz  <dr@openoffice.org>  [18f68bdd9d78aefa56faf9fbc2dff1a3319a280c]

#87800# export of blank cells


2001-06-06  Daniel Rentz  <dr@openoffice.org>  [91307ac36abec6759139b856b6c5c3ad9257475c]

#85551# conversion of OLE objects


2001-06-06  Daniel Rentz  <dr@openoffice.org>  [a0e9ac8a31c9ffc657fb9048e93454cde2e19dfb]

#85551# conversion of OLE objects


2001-06-06  Niklas Nebel  <nn@openoffice.org>  [6a3e2fd77f73d67efa84184a38240b0c5e6eb4b8]

#87740# SetEditEngine: SetUpdateMode(TRUE)


2001-06-06  Niklas Nebel  <nn@openoffice.org>  [27645b7b44145a5d7dfcb3f41b52cb90cd248f4b]

#87740# StartTable: SetUpdateMode(FALSE)


2001-06-05  Kurt Zenker  <kz@openoffice.org>  [628c4a150c2e01c846406e6a9569a75ef4aa6dd7]

Merge SRC633: 06.06.01 - 00:12:17


2001-06-05  Oliver Bolte  <obo@openoffice.org>  [114ad1cae496e9a212771abb842cbbcde85b53fe]

Merge SRC633: 06.06.01 - 00:13:43


2001-06-05  Kurt Zenker  <kz@openoffice.org>  [ad90c3c5f90f43571ebc1e6ab42dc02c314515d3]

Merge SRC633: 06.06.01 - 00:10:58


2001-06-05  Kurt Zenker  <kz@openoffice.org>  [e3852f3a3790297d7c8e860b58bddef7f0a5ef14]

Merge SRC633: 06.06.01 - 00:09:41


2001-06-05  Oliver Bolte  <obo@openoffice.org>  [af1bee8922adb3c332c7cf6eaf6d34c4668e1c1a]

Merge SRC633: 06.06.01 - 00:02:45


2001-06-05  Oliver Bolte  <obo@openoffice.org>  [4d4ca6a7d44859da2e7506afa31f15f440f4e313]

Merge SRC633: 06.06.01 - 00:01:00


2001-06-05  Oliver Bolte  <obo@openoffice.org>  [7d037a80d7daa6201ea032e9277d8a5e4284a6c1]

Merge SRC633: 05.06.01 - 23:59:10


2001-06-05  Kurt Zenker  <kz@openoffice.org>  [d0d5fe2f180944e4f3b9374295944db5596c92e8]

Merge SRC633: 05.06.01 - 23:56:20


2001-06-05  Oliver Bolte  <obo@openoffice.org>  [07f2e16120bd3bee8bf5ca5758c8787e5317e6a3]

Merge SRC633: 05.06.01 - 23:57:20


2001-06-05  Kurt Zenker  <kz@openoffice.org>  [af8fbf7d6354e4dbf11c69bbed441c470a82fe8f]

Merge SRC633: 05.06.01 - 23:54:21


2001-06-05  Kurt Zenker  <kz@openoffice.org>  [2c2636dd6a387922495c949b7872c27a51fb356c]

Merge SRC633: 05.06.01 - 23:52:33


2001-06-05  Oliver Bolte  <obo@openoffice.org>  [0d000c97c641abeb07351b0977b60a74d1fa306c]

Merge SRC633: 05.06.01 - 23:53:36


2001-06-05  Kurt Zenker  <kz@openoffice.org>  [a8f8e0fafca8242404d67cf0cc520c44123e60c2]

Merge SRC633: 06/05/01 - 23:49:26


2001-06-05  Kurt Zenker  <kz@openoffice.org>  [fc05a13fa321d3cfb7594295175ac1964b354f16]

Merge SRC633: 05.06.01 - 23:50:05


2001-06-05  Daniel Rentz  <dr@openoffice.org>  [3ea71d541d08740af10abc89bc587c2542defd4f]

#87800# blank cells export


2001-06-05  Niklas Nebel  <nn@openoffice.org>  [b1fbdbee6c3d08763c4c2a434de9b8a6da4a45d1]

#87775# DoImportUno: Selection is now Sequence<Any>


2001-06-05  gt  <gt@openoffice.org>  [46661a6debb7e3b5afbf71c2cb0b3f630e4ef8cf]

Add english tags


2001-06-05  gt  <gt@openoffice.org>  [b730f0e3445c2affd31ab653ad1fa828b3932f53]

Add english tags


2001-06-05  Sascha Ballach  <sab@openoffice.org>  [1973e13a93dd9173924679753d08d68cda6066bd]

#87757#; export the NumberFormat only it is a DIRECT_VALUE


2001-06-05  Sascha Ballach  <sab@openoffice.org>  [2559278250a4de7e91bd552cba67b0a3bef6a1d0]

#87757#; if NumberFormat is not DIRECT_VALUE get it by getPropertyValue


2001-06-01  Kurt Zenker  <kz@openoffice.org>  [473de9f53269fd5ae0a201c5c4f7635a860922d6]

Merge SRC633: 01.06.01 - 21:35:12


2001-06-01  Niklas Nebel  <nn@openoffice.org>  [1a31f149f3bfacc5eb6d4df0b5a90b8a5ae09381]

#78966# call FreezeIdRanges for edit engine pool


2001-06-01  Niklas Nebel  <nn@openoffice.org>  [b129f40a458fdcb82612c0c214580dab460d4458]

#78966# HdFtPropertyMap: numbering properties


2001-06-01  Niklas Nebel  <nn@openoffice.org>  [02dc0d179cae74857c003543e2b9fba528e4435c]

#78966# EditPropertyMap: numbering properties


2001-06-01  Niklas Nebel  <nn@openoffice.org>  [ecc05cbb5b93e93ac4631763607070a886f42707]

#78966# PutData: don't remove alignment from source edit engine


2001-06-01  gt  <gt@openoffice.org>  [cdac75200836fd90929ae6495619d2ae8e6ed8df]

function names in all languages


2001-06-01  gt  <gt@openoffice.org>  [b8a2df23b7ae39a630a970261da8902b22b888b5]

change english -> german base


2001-06-01  gt  <gt@openoffice.org>  [6ad10e1a00b229a21a74b1c4db764b6d92efb78b]

#87383# never trust external documentations...


2001-06-01  Sascha Ballach  <sab@openoffice.org>  [2002cb1f6d12b7899c89fa05609406a3ce6fb3b4]

#87678#; compile formulas in the import so the row height can be calculated after this and than resize the shapes


2001-06-01  Sascha Ballach  <sab@openoffice.org>  [37ea01a0763d4a4e20003384212d212963920270]

#87678#; compile formulas in the import so the row height can be calculated after this


2001-05-31  Niklas Nebel  <nn@openoffice.org>  [740fe3359938c8ed139264c22ca0492e1609643d]

#87614# FindMaxRotCol: don't call GetFormat for index 0


2001-05-31  Niklas Nebel  <nn@openoffice.org>  [a59b55f5a49f62692ff019fc6f7c18ca31f5d2a3]

#87241# format property for file name field


2001-05-31  Daniel Rentz  <dr@openoffice.org>  [f9b11a96c7b5f883b5ab8e1112e88322314000cf]

#86988# dialog redesign


2001-05-31  Daniel Rentz  <dr@openoffice.org>  [eab00ae5ccadb4325091b70a4778e4b7d3aff219]

#86988# dialog redesign


2001-05-31  Sascha Ballach  <sab@openoffice.org>  [853fc1d44659fb3900332242d325c4b55b248eb9]

#87643#; use SolarMath::ApproxEqual to compare to double values


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [d763615975a13d3afb8f0d3f84614f713f8a1961]

Merge SRC633: 30.05.01 - 22:38:07


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [538cc90fc0f132e7e34ef031506eeab3b35454f4]

Merge SRC633: 30.05.01 - 22:36:36


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [8090d3022e70e429729ae8c491b3537796a4fd6d]

Merge SRC633: 30.05.01 - 22:34:05


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [c598d4a3ce99b89d6019c71dd8e2d6de92080832]

Merge SRC633: 30.05.01 - 22:32:30


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [cf3219d263380f617bd9e0c6f63189f820bef947]

Merge SRC633: 30.05.01 - 22:30:43


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [a501ee3fa1b451651be8cf75172cfe7a2a032dc0]

Merge SRC633: 30.05.01 - 22:29:02


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [4cb06653f60cb4d7770f85d656cb9713a5a2278f]

Merge SRC633: 30.05.01 - 22:26:41


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [9f057d9489e0879109ff8efd2c21dc513c32081a]

Merge SRC633: 30.05.01 - 22:19:51


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [4442ab8c5a52a0e24a9cc1e950dbbb6c862c5517]

Merge SRC633: 30.05.01 - 22:17:30


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [7cfb989ddb53f109358ca564f45a83dd9e56cd67]

Merge SRC633: 30.05.01 - 22:15:27


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [c25804f2a5a344f2f8f2bfda5bffa07e0c19baae]

Merge SRC633: 30.05.01 - 22:12:52


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [99806aacc2450aafacdb058db39933a0c4d7bf71]

Merge SRC633: 30.05.01 - 22:08:38


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [55954f366b2f2f6599ec79733e40e8706eb7a151]

Merge SRC633: 30.05.01 - 22:06:32


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [f4b0de6dafe4ebd185dddd10fd636ffb7cc2a742]

Merge SRC633: 30.05.01 - 22:04:45


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [a3bc2648617f480a5f9ef877b57c53fd6c0e7f9c]

Merge SRC633: 30.05.01 - 22:02:57


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [26e617fa3a34b72657576b3bdc44f404fb99a3ef]

Merge SRC633: 30.05.01 - 22:00:54


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [eed11e8b11813a87f07e0e03fd5fb030081e5aef]

Merge SRC633: 30.05.01 - 21:59:03


2001-05-30  Kurt Zenker  <kz@openoffice.org>  [66b19f0c4f683dfc31001dc789b249ea0912986b]

Merge SRC633: 30.05.01 - 21:56:24


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [58f1e9fcde6a982f280bb32b7fa531c094309ddb]

Merge SRC633: 30.05.01 - 21:55:40


2001-05-30  Kurt Zenker  <kz@openoffice.org>  [5952819e9a5e0dd2df3ca4e26f63b4b7045caac0]

Merge SRC633: 30.05.01 - 21:54:54


2001-05-30  Vladimir Glazounov  <vg@openoffice.org>  [0a268e33513cadc366dd5a6ac7916577f1001159]

Merge SRC633: 30.05.01 - 21:54:01


2001-05-30  Kurt Zenker  <kz@openoffice.org>  [d9b7224ea21d737b989386ef320d8beef9da66f3]

Merge SRC633: 30.05.01 - 21:53:23


2001-05-30  Kurt Zenker  <kz@openoffice.org>  [b187ff48be4117c11d25b85e40454c24e2d26b8f]

Merge SRC633: 05/30/01 - 21:52:44


2001-05-30  Oliver Bolte  <obo@openoffice.org>  [b4208b18d9ecc51b8fb5e785d6066d9267e0027e]

Merge SRC633: 30.05.01 - 21:54:58


2001-05-30  Kurt Zenker  <kz@openoffice.org>  [bc9540492e62228f88b60529e5a4714fb62ea8ab]

Merge SRC633: 30.05.01 - 21:51:57


2001-05-30  Kurt Zenker  <kz@openoffice.org>  [5edb6bb4045daf6192c6602e6429f7c2410e0b30]

Merge SRC633: 05/30/01 - 21:50:50


2001-05-30  Kurt Zenker  <kz@openoffice.org>  [e40308ad34892055c4c4f8740b2f744e51b93d6c]

Merge SRC633: 30.05.01 - 21:50:21


2001-05-30  Niklas Nebel  <nn@openoffice.org>  [117d463c299e4aec63d751b40574e8d4f0f554a2]

#87419# ResetEditView: set empty output area


2001-05-30  Sascha Ballach  <sab@openoffice.org>  [a8ec1b88878a1c6abb888510c4afb64b3822b849]

#79771#; optimize the search for a column or row style in AddRange


2001-05-30  Sascha Ballach  <sab@openoffice.org>  [65b1c32e6a0f98e50838a771668d7f366fa97550]

#87643#; use SolarMath::ApproxEqual to compare to double values


2001-05-30  Daniel Rentz  <dr@openoffice.org>  [5789df148a7c530f6f4eab6c9c0fd363a7313d3b]

#86988# dialog redesign


2001-05-30  Daniel Rentz  <dr@openoffice.org>  [73f7865228932f15a4c03a9c6985c7a230dbc0cd]

#86988# dialog redesign


2001-05-30  Daniel Rentz  <dr@openoffice.org>  [21f9e0b42f855956399b720c50ca263ed4612516]

#86988# dialog redesign


2001-05-30  gt  <gt@openoffice.org>  [34a9e430db6977536dcfe5b0239367ce09274b83]

#87600# non-ASCII-handling for names, descriptions, etc.


2001-05-30  gt  <gt@openoffice.org>  [335c0d17675c9f7757ed9b101733293c159b329a]

#85093# ExcArray::AppendBy() also intersection is part of an existing array


2001-05-30  Niklas Nebel  <nn@openoffice.org>  [50008f686aa54bfcdd6e0cfefe012fb33875692b]

#41881# api for print options


2001-05-30  Eike Rathke  <er@openoffice.org>  [777f580e1a944f2e4499cbe6579d7f2f022c49f8]

#79507# CONVERT(): mention calc.xml


2001-05-30  gt  <gt@openoffice.org>  [17f7c4aa158fd1c6477ec510465614b46cedefea]

new: Array


2001-05-29  Niklas Nebel  <nn@openoffice.org>  [278db12573e315ef554186166fbfeafe4ca9e911]

#41881# Calc print options


2001-05-29  Eike Rathke  <er@openoffice.org>  [bdc174eca7446e4375a21b6783b31652e7f882b8]

#77027# interpreter error #ADDIN? and #MACRO? instead of #NAME?


2001-05-29  Sascha Ballach  <sab@openoffice.org>  [f4c7c9373b33e2379d6e72e1d43195da105a8d2f]

#79771#; little bug fixing


2001-05-29  Sascha Ballach  <sab@openoffice.org>  [71811fa9b6675f50678a1143de61047354183a0d]

#79771#; some performance improvements


2001-05-29  Eike Rathke  <er@openoffice.org>  [0f460a81c6679c23042e2f942ac1bbd0034cfbf5]

#79507# CONVERT() description: convert.ini doesn't exist anymore, it's configuration now


2001-05-29  Sascha Ballach  <sab@openoffice.org>  [c225b311c29b14271fa52925923944ac81e59492]

#87564#; get XCell if cell is not empty or cell contains a validation


2001-05-28  Daniel Rentz  <dr@openoffice.org>  [f5577a2bf6c9778fede8fb24ab005b571680ffbf]

#86988# dialog redesign


2001-05-28  gt  <gt@openoffice.org>  [61668017718ee7f1df1e1dbc5945d9325ffdb98f]

#87499# Calccount, Iteration, Delta


2001-05-28  Sascha Ballach  <sab@openoffice.org>  [53ab0b30287416a93b933b1fbb0141919bb5b41d]

#87349#; add range for currency style if found the style


2001-05-28  gt  <gt@openoffice.org>  [f67dc63cf3492f06c89869ba53dd532f0cf01995]

#87378# change several parameters to optional


2001-05-25  Daniel Rentz  <dr@openoffice.org>  [1df0d4415c0b4e6af1deb762b55b9e63c8f02338]

#86988# dialog redesign


2001-05-25  Daniel Rentz  <dr@openoffice.org>  [1f56fdf61f4c95261dac2083c81ac70cf6f213ef]

#86988# dialog redesign


2001-05-25  Daniel Rentz  <dr@openoffice.org>  [0f612093604ec338253d5263046a42b46ab0ed71]

#86988# dialog redesign


2001-05-23  Niklas Nebel  <nn@openoffice.org>  [8f7b0bb6bb8c6198f2210c366733e25033a519e2]

#82635# NumberingRules


2001-05-23  Daniel Rentz  <dr@openoffice.org>  [d2fbcc29b664fd8f190553262a677cb85cc40a27]

#86988# dialog redesign


2001-05-23  Niklas Nebel  <nn@openoffice.org>  [f914e67d7fdf9c5ddfc872b10fb08ac4f5ffe1aa]

#82635# paragraph properties


2001-05-23  Daniel Rentz  <dr@openoffice.org>  [4c05d19dc98cad9e839719fccffc13ea1c4a4ca0]

#86988# dialog redesign


2001-05-23  Daniel Rentz  <dr@openoffice.org>  [cae283ac898a595b4919509c32359f5430bcf380]

#86988# dialog redesign


2001-05-23  gt  <gt@openoffice.org>  [f8e0fb3d7655de08db925d0450effdbcecc5bbee]

#i941# index for number format directly taken from format record


2001-05-23  Sascha Ballach  <sab@openoffice.org>  [3f2a93003484a490eecaa09b9806f5d1469cb673]

#87428#; change the namespace of master-page-name


2001-05-23  Sascha Ballach  <sab@openoffice.org>  [131760ac851274175c334231b9fa589e50ff982f]

#79771# use new methods on NumberFormatsAttributeExportHelper to increase theperformance; give possibility to set the Null Date only once


2001-05-23  Sascha Ballach  <sab@openoffice.org>  [460f960d6355900053b991022c0f48ce09e24b72]

#87319#; work with celltype DATETIME in the same way like DATE; #79771# use new methods on NumberFormatsAttributeExportHelper to increase theperformance; give possibility to set the Null Date only once


2001-05-23  Sascha Ballach  <sab@openoffice.org>  [b3d66f27bbacc1399a3fed04de6f621faca052a4]

#79771#; use the new NumberFormatAttributeExportHelper which makes it possible to use it in import too


2001-05-23  Sascha Ballach  <sab@openoffice.org>  [67d4375f96a1e17e5716eda463888479004d94ed]

#79771#; only set the null date once


2001-05-23  Sascha Ballach  <sab@openoffice.org>  [d743436bf6026221150b61b1012e65da65baa125]

#79771#; only set size of shape if the size is changed


2001-05-23  Daniel Rentz  <dr@openoffice.org>  [718efbbc8db3daa48aca4132e22f25ed77e94b6f]

#86988# dialog redesign


2001-05-23  Sascha Ballach  <sab@openoffice.org>  [ae039f332a9f7198447add788d7809d8b6d8e403]

#87349#; compare StyleIndex and bIsAutoStyle


2001-05-22  Eike Rathke  <er@openoffice.org>  [23507c559885aeeda0101aff54cb18ba36d52dcb]

#68609# Sylk2Doc: compile English formula; matrix formulas


2001-05-22  gt  <gt@openoffice.org>  [bfeadfd09e8719ed1bb8128164d20327d5770685]

#87379# colliding value-checking


2001-05-22  Thomas Benisch  <tbe@openoffice.org>  [b33900fe5980ee506f0c07823fececfb0dbd5ebf]

#87307# remove external basctl dependencies


2001-05-22  gt  <gt@openoffice.org>  [41b93f5cced117fa45065fa889a872a7f2beb5ce]

#87375# DURATION called DURATION_ADD in English version


2001-05-22  Daniel Rentz  <dr@openoffice.org>  [8c72263aa0c38f134ccdc0967295279dd2771f30]

#86988# dialog redesign


2001-05-22  Eike Rathke  <er@openoffice.org>  [a25daf7e39647f727df4173374f0d13fe2619d88]

#68609# Doc2Sylk: formulas always English; matrix formulas with M$-extension


2001-05-22  Eike Rathke  <er@openoffice.org>  [dc8433bf8ce29ffbb769c5d67f2dbccb31393e98]

#68609# ConvertTo: SYLK exports formulas unconditionally


2001-05-22  Daniel Rentz  <dr@openoffice.org>  [2b0c50cc1c3cca61a2575c27f540ecd5f2ac7405]

#86988# dialog redesign


2001-05-22  Sascha Ballach  <sab@openoffice.org>  [14c04d1b682ab984e0be7c8155e9977ddfd5e7d4]

#87349#; create the XMLNumberFormatAttributesExportHelper if it is used


2001-05-22  Sascha Ballach  <sab@openoffice.org>  [b11761008d8b3d538a548892c32238c5f5576cc5]

#87349#; set the styles before protect the table


2001-05-22  Niklas Nebel  <nn@openoffice.org>  [9afd44c885a9d3255722a32c8dc5bc9c5fac45db]

#87164# title bar must be visible


2001-05-22  gt  <gt@openoffice.org>  [17ec07c439b98ef17e8e1ada4eaccc702c3fa9e0]

#87269# using array of array instead only array


2001-05-21  Niklas Nebel  <nn@openoffice.org>  [823a3289266ad07c528685ea9539bf54a9b1c9e5]

#44993# hyphenation in drawing objects


2001-05-21  Niklas Nebel  <nn@openoffice.org>  [2ae6c0eb709ed2ffdbb5229f822a3183afca67ff]

#44993# Tools/Hyphenation


2001-05-21  Sascha Ballach  <sab@openoffice.org>  [f413a70a8b2e6c7c5bdb450eb23c2a4a656444cc]

#78323#; use-regular-expressions to claculation settings added


2001-05-21  Daniel Rentz  <dr@openoffice.org>  [c4117eb7c1fba7aec2377dbcd71218ec6293caf4]

#86988# dialog redesign


2001-05-21  Niklas Nebel  <nn@openoffice.org>  [3fa326e9c56eccf11312fe7fcfd5427222ce2bba]

#44993# Tools/Hyphenation


2001-05-21  Niklas Nebel  <nn@openoffice.org>  [8da7287318152b206ad32c733982202e562b9643]

#44993# Tools/Hyphenation


2001-05-21  Niklas Nebel  <nn@openoffice.org>  [d29b6f1a53f37a38733917ede0a4ae0a5020c8b8]

#44993# Tools/Hyphenation


2001-05-21  Sascha Ballach  <sab@openoffice.org>  [4608859f9b83b57faaeb8b2d9cbc3ad504f6f9fe]

#44993#; add the new property ParaIsHyphenation to the propertymap


2001-05-21  Sascha Ballach  <sab@openoffice.org>  [9049cf0850a412cdd096844a2aa63cde64e49b05]

#87030#; improve the behaviour of the progressbar


2001-05-21  Sascha Ballach  <sab@openoffice.org>  [be99cb5d3263dab6bf466925a00b8b97e84bc6e0]

#79771#; remove some unnecassary calls


2001-05-21  Sascha Ballach  <sab@openoffice.org>  [40137f7ffcba35e698431114fb0aeb4b498a9fc6]

#79771#; remove unecessary calls


2001-05-21  Daniel Rentz  <dr@openoffice.org>  [11bb357e41894cd3ac17b5256860a556fb33639e]

#86988# dialog redesign


2001-05-21  Daniel Rentz  <dr@openoffice.org>  [dce86c62973dc5e9c545bd8309ad54766b3b6558]

#86988# dialog redesign


2001-05-21  Daniel Rentz  <dr@openoffice.org>  [6473bd415de83f9be982cf7a9bf3ce085f8acf82]

#86988# dialog redesign


2001-05-19  Kurt Zenker  <kz@openoffice.org>  [6a4c097b7e4b6273caec37fb6e196cc3142e824b]

Merge SRC632: 19.05.01 - 07:17:08 (NoBranch)


2001-05-18  Niklas Nebel  <nn@openoffice.org>  [0b45b904413988e1493d53af7ffa4dd3c4744cdb]

#44993# hyphenation in cells


2001-05-18  Niklas Nebel  <nn@openoffice.org>  [d74764bea93524239ac4250e90dbd0107d0a260f]

#44993# SID for hyphenation


2001-05-18  Sascha Ballach  <sab@openoffice.org>  [d96e79ecbddb29c57f1aa03e6bf06120f3d1f626]

#79771#; use a special flag on ScColumn to optimize the performance of XML import


2001-05-18  Sascha Ballach  <sab@openoffice.org>  [9a3cd99c261050a6c773931ce3c1aab8a811c12c]

#79771#; little bugfix


2001-05-18  Sascha Ballach  <sab@openoffice.org>  [86dcaa84e3d7f903cb9c3a9938d711368040dc2a]

#79771#; some more optimations


2001-05-18  Sascha Ballach  <sab@openoffice.org>  [695c904ef5b4f906c025675e44fbde47ce8504ca]

*** empty log message ***


2001-05-18  Daniel Rentz  <dr@openoffice.org>  [a8c33320b82baa0804dc11ac9db570d24f1b2800]

#86988# dialog redesign


2001-05-18  Vladimir Glazounov  <vg@openoffice.org>  [8b78db1a43255fa6b1bb66149dfe5431baf9f46a]

#65293# Corrected for Solaris


2001-05-18  Eike Rathke  <er@openoffice.org>  [8f513b29d74f22d08166cf85ffb5a360b9600dd4]

#87169# #86215# new SchChartRange/SchCellRangeAddress replacing old ChartSeriesAddress mechanism


2001-05-18  Sascha Ballach  <sab@openoffice.org>  [c6be52be2983fbf2ea06c9ffd8eb4feaee740b32]

#79771#; little performance optimation for formulas


2001-05-18  Daniel Rentz  <dr@openoffice.org>  [432932856fc91224819af8886214d0f5c1d0b420]

#86988# dialog redesign


2001-05-18  Daniel Rentz  <dr@openoffice.org>  [8e42ae8e5402646c4410a8fde4aa4ab215aea303]

#86988# dialog redesign


2001-05-18  Daniel Rentz  <dr@openoffice.org>  [4640c4bc52c5ccc98619f472fe9416add4b4d64e]

#86988# dialog redesign


2001-05-18  Sascha Ballach  <sab@openoffice.org>  [f4693c56484c1f277e7ac86eb47a34dc6288c062]

#79771#; fix a little bug in the performance optimations


2001-05-18  Sascha Ballach  <sab@openoffice.org>  [abd695ee76317e4cb1a2b67ec50b4a2f64306852]

#79771#; only ask for matrix if it is a formula cell


2001-05-17  Sascha Ballach  <sab@openoffice.org>  [56678b83f9bbcb06cdb6962a6c961a719bd89b74]

#79771#; makes the handling of annotations much better, and so the performance is better


2001-05-17  Daniel Rentz  <dr@openoffice.org>  [866518ea25b3cc5d02cb42708eca2e051447c043]

#86988# dialog redesign


2001-05-17  Niklas Nebel  <nn@openoffice.org>  [1b0292a51bce8adef0967a08f0b9c922a50bfb9f]

#87088# XChartData set methods


2001-05-17  Daniel Rentz  <dr@openoffice.org>  [3c233bc8b82cbe619ee836995f0978b283ffa9ec]

#86988# dialog redesign


2001-05-17  Eike Rathke  <er@openoffice.org>  [ee4042cb665a5eb7c1a6ec87362db5adfcfc38e8]

#79771# performance: CreateStringFromToken: don't switch number formatter to/from English/native language


2001-05-17  Niklas Nebel  <nn@openoffice.org>  [37fe3ba43b7e0fe93f12cccf0ce823c2d0b98e84]

#87116# ScCellRangesObj::insertByName: ElementExistException if name exists


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [9b854f0099b7e749099667b124d898c72fe88bf8]

Merge SRC632: 17.05.01 - 10:47:30 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [8c59939fbecc090254d080b2e6d3daca2b1dd324]

Merge SRC632: 17.05.01 - 10:45:14 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [c2c11ba62a23b9f04745b124c8f009bc51ab420e]

Merge SRC632: 17.05.01 - 10:42:51 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [7af5eff8a82a45c596dc9ae8efed1daf8e62737d]

Merge SRC632: 17.05.01 - 10:40:15 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [2031d92ac14468bac7c5fc51ad8a88b70f6d6e2e]

Merge SRC632: 17.05.01 - 10:37:52 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [7bfdb26f92756ab00ddc97a6feb00d5f21ce0393]

Merge SRC632: 17.05.01 - 10:35:35 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [fdb1a590d48cda5a6394dff4a86842b1525f77c4]

Merge SRC632: 17.05.01 - 10:33:28 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [811351462914694b6943bb200f845a4d4c338fc1]

Merge SRC632: 17.05.01 - 10:31:35 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [7b6fea24615086ccdaa6ca261e84b6fe96d30642]

Merge SRC632: 17.05.01 - 10:29:22 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [328ec88b770f9d2455d09acaf4331bc78ed1c31e]

Merge SRC632: 17.05.01 - 10:24:31 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [09859714d55a848eeb5ea3c9c0e45a6bb533679b]

Merge SRC632: 17.05.01 - 10:19:33 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [eaa9c31c00d8574604fe22f8bd93cb1be7952e00]

Merge SRC632: 17.05.01 - 10:16:14 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [69c3fcb6db027f76a96fc63b7152e8c347687f55]

Merge SRC632: 17.05.01 - 10:13:19 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [bff19d9a6ec376fd86065693a7df0ef62ef7bd0c]

Merge SRC632: 17.05.01 - 10:10:53 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [f1caa1680fd6a2213fe6d7ebed4a94dbad5c9c05]

Merge SRC632: 17.05.01 - 10:08:35 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [4f97777849e73cfca79b8dbfc099fbc68d9147ea]

Merge SRC632: 17.05.01 - 10:04:07 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [bf7154b20ac718b1913f4b11836eb3780b84d700]

Merge SRC632: 17.05.01 - 10:02:17 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [01167b08432ca5622b7fea4728ac394b92eeba48]

Merge SRC632: 17.05.01 - 10:02:22 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [38eb9709adb59569f6fc81336bbef2dd595f5c6a]

Merge SRC632: 17.05.01 - 10:00:21 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [3af8279e4b889651499cd16c45e97774bf4f3bb2]

Merge SRC632: 17.05.01 - 10:00:39 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [9448524547bad424e7123d61e8e698f76a12bc2c]

Merge SRC632: 17.05.01 - 09:58:34 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [3e4b9666a391fdf497ce46204103586a81b1fceb]

Merge SRC632: 17.05.01 - 09:59:19 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [e293847c7ba3ef1dc36462972aab3468c466b792]

Merge SRC632: 17.05.01 - 09:57:59 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [15901c9334281e0d8a9044bd5ed72c2b936364d9]

Merge SRC632: 17.05.01 - 09:56:40 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [af5998856458e2f9f5c4de938d8b40bb13e98413]

Merge SRC632: 17.05.01 - 09:56:38 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [faab987e7d9c9928a1a7d17516a685f1cc21568e]

Merge SRC632: 17.05.01 - 09:54:49 (NoBranch)


2001-05-17  Rüdiger Timm  <rt@openoffice.org>  [e423b6c8954564553bd81a7f0f16e228f326cfad]

Merge SRC632: 17.05.01 - 09:55:31 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [013f0e30bc618cc000e93a49253433e8c0a7d5d8]

Merge SRC632: 17.05.01 - 09:54:16 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [db70dbe31509475351349a48856d9b3c113cfb9e]

Merge SRC632: 05/17/01 - 09:53:48 (NoBranch)


2001-05-17  Rüdiger Timm  <rt@openoffice.org>  [3d302c2b5b6f39d791e783f8c3bca6f6658aa358]

Merge SRC632: 17.05.01 - 09:52:51 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [cf491a192ac67ed2907ffdf4f4ddedaf44453aaf]

Merge SRC632: 05/17/01 - 09:52:04 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [4554edfb668d2a5882451ee2f6211e2f97a14598]

Merge SRC632: 17.05.01 - 09:52:36 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [c215b379f77a1c58c2fcae502c80a48b171f4bab]

Merge SRC632: 17.05.01 - 09:51:47 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [4cb0058121359a545fcd99309a9f95284aa10c51]

Merge SRC632: 17.05.01 - 09:51:20 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [77a0cef33a32d05b01ed2eef4012986d2f6a1f2e]

Merge SRC632: 17.05.01 - 09:51:37 (NoBranch)


2001-05-17  Rüdiger Timm  <rt@openoffice.org>  [b620609b9e617abff576771ac97709cf4da6724d]

Merge SRC632: 17.05.01 - 09:51:04 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [b6823b74dd7329b3771cfe0e3d02caa614011de2]

Merge SRC632: 05/17/01 - 09:50:21 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [094758361e0fd416890de5585ac103a65a739302]

Merge SRC632: 17.05.01 - 09:50:42 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [1f628078714169d5852af3c708dcd245aadd2db0]

Merge SRC632: 17.05.01 - 09:49:50 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [7a361ba9d0228f5880a03f7fddc2d3ea73235ea1]

Merge SRC632: 17.05.01 - 09:49:05 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [d7eb4a07a642fcfb7c0dfba062ee46f439b0f773]

Merge SRC632: 17.05.01 - 09:49:43 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [317e4f13733eb2039704499ab5fc2af8fc276003]

Merge SRC632: 05/17/01 - 09:49:01 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [8f03689633c46666e0d68fe22192f19a874815d4]

Merge SRC632: 05/17/01 - 09:48:31 (NoBranch)


2001-05-17  Rüdiger Timm  <rt@openoffice.org>  [aa444a4ce9a2c46fa2c17ed69b6e483085ff87b4]

Merge SRC632: 17.05.01 - 09:48:56 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [6b601efa2c628fd15769186108ff9326735c73b6]

Merge SRC632: 17.05.01 - 09:47:38 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [01eeb82b00fd48e2000de07598e4383161fb6a4d]

Merge SRC632: 17.05.01 - 09:46:29 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [d22e8c3a08bc2dab5da441689d2aa44b8eabf76c]

Merge SRC632: 05/17/01 - 09:46:16 (NoBranch)


2001-05-17  Kurt Zenker  <kz@openoffice.org>  [22c2ca2eb765339bfd7b6c933c312f67abc16434]

Merge SRC632: 17.05.01 - 09:44:01 (NoBranch)


2001-05-17  Sascha Ballach  <sab@openoffice.org>  [c1fb028d03b4459670143e29be8ba181d1a1344e]

#79771#; makes the performance of formula export better


2001-05-16  Eike Rathke  <er@openoffice.org>  [f444e5a883f19acdc8ab8fb0ef1fb0fd2dd78c5d]

#87076# made [VH]?LOOKUP functions work right (which means make them work like in Xcl)


2001-05-16  Eike Rathke  <er@openoffice.org>  [9882dcda51528f3c0a9da325213337c2e25f60fb]

#87076# new: ScQueryCellIterator StopOnMismatch


2001-05-16  Eike Rathke  <er@openoffice.org>  [33973be3e4230975172009fdc3e5db2739413cb8]

#78323# always initialize ScQueryParam.bRegExp to DocOptions value


2001-05-16  Eike Rathke  <er@openoffice.org>  [7ddf41b5458278493a422bac84ce747457cdb571]

#78323# always initialize ScQueryParam.bRegExp to DocOptions value


2001-05-16  Niklas Nebel  <nn@openoffice.org>  [2ac9fe48b438307295b413c4eb76ae83a4a58cc6]

#86786# WordLineMode, Relief in cell attributes


2001-05-16  Vladimir Glazounov  <vg@openoffice.org>  [104b4053d65511e300124d0253523beb29ccde55]

Corrected for use under solaris


2001-05-16  Vladimir Glazounov  <vg@openoffice.org>  [b91e509f82e705154896b0c00f4e93fb750bc966]

Changed use of sal_Bool to bool so it works on Solaris too


2001-05-16  Eike Rathke  <er@openoffice.org>  [e338c0981465560fe5528493b7208b65ef175ca6]

#78323# new: ModifyOptions: recalc if enable/disable regular expressions in formulas changed


2001-05-16  Eike Rathke  <er@openoffice.org>  [01545c7822fd80f4d9f24800691bf3c1f3414c87]

#78323# new: config option enable/disable regular expressions in formulas


2001-05-16  Sascha Ballach  <sab@openoffice.org>  [4faeefe223c31df68f1966fc5e46c02367b34651]

#79771#; some other little performance optimations


2001-05-16  Eike Rathke  <er@openoffice.org>  [8b940b9035c3d774f20c9a1aa131b7c70149cc64]

#78323# new: PostDocLoad: regular expressions in formulas disabled if imported from Excel


2001-05-16  Rüdiger Timm  <rt@openoffice.org>  [d520b90d0d31fdee40a10d92c175c1e22c36c5c0]

#65293# sfx2/explorer.hxx removed - it's obsolete


2001-05-16  Sascha Ballach  <sab@openoffice.org>  [3ce820b27e03799875a10992a10258a56688e34b]

#79771#; remember XCellRange for every table


2001-05-16  Oliver Specht  <os@openoffice.org>  [1a5455a8952e112f36c932cdf0eda29305629da2]

#86940# positions and sizes corrected


2001-05-15  Eike Rathke  <er@openoffice.org>  [8119bb1e919b01d20faaec842f3a29fc3507ec2a]

#78323# new: config option IsFormulaRegexEnabled


2001-05-15  Eike Rathke  <er@openoffice.org>  [75b41a7a58c0faece6d8f365fdf10c4631b7a3bd]

#78323# new: bFormulaRegexEnabled; config Office.Calc/Calculate/Other/RegularExpressions


2001-05-15  Eike Rathke  <er@openoffice.org>  [580dc0e33f212acb2a5f94714dcd5954fafd8094]

#78323# new: bFormulaRegexEnabled


2001-05-15  Eike Rathke  <er@openoffice.org>  [cc96e56cf3f7f86c6df3caae475bfdc9bb9c6322]

#78323# new document settings property RegularExpressions


2001-05-15  Sascha Ballach  <sab@openoffice.org>  [ca95b65d251ea8582f4d1d016d8027eba0e1c681]

#79771#; makes the performance of import of string cells better


2001-05-15  Sascha Ballach  <sab@openoffice.org>  [924de407d68c3ae9ea42f325690c46f4cbc9de0e]

#79771#; makes the performance of import of string cells better


2001-05-15  Niklas Nebel  <nn@openoffice.org>  [7057e768a323b14e77511bf1bc49bb7274b3d559]

#86985# if printer is used, set map mode


2001-05-15  Hennes Rohling  <hro@openoffice.org>  [6a93b7809a076a86d0cb60bdc44f76c04df112b7]

#TFU630#


2001-05-14  Niklas Nebel  <nn@openoffice.org>  [a7f43704249047b568c2e5d92f7a4b34dbf752a6]

#86985# configuration flag for use of printer metrics


2001-05-14  Niklas Nebel  <nn@openoffice.org>  [196ce43ab661f2c7994f698e2acc51ff0738b816]

#86985# configuration flag for use of printer metrics


2001-05-14  Sascha Ballach  <sab@openoffice.org>  [e0020549dd0d312aad3af9c21abb1df5d936a72f]

ask only once for the cell style index


2001-05-14  Sascha Ballach  <sab@openoffice.org>  [a2ec4778a5052dd74d6c8423dda178d1a5713aaa]

make the cell compare work again


2001-05-14  Niklas Nebel  <nn@openoffice.org>  [e673ff98b9212227d0ced09a13ce2dedb60c63e6]

#80651# Print: test for transparent objects, call InitJob


2001-05-14  Niklas Nebel  <nn@openoffice.org>  [f3a125c870718885fa2e6d9b361637fd16c3312f]

#80651# DocShell Print method needs DialogParent parameter


2001-05-14  gt  <gt@openoffice.org>  [4f24b8168a1f4b99e4cd8cc7b9cc72f28570ebc5]

#86428# Scl-record only read ones per chart


2001-05-14  Daniel Rentz  <dr@openoffice.org>  [73f2e187638eac01cfd703b8c2d00fc26de3ddd5]

redesign


2001-05-14  Philipp Lohmann  <pl@openoffice.org>  [cf49fba6c88a347e5acbf384e467b959163d9912]

rtl string api changes


2001-05-14  Niklas Nebel  <nn@openoffice.org>  [4ac902bdee15dea25bc0ad3d1935a1ae89055aab]

removed some old defines


2001-05-14  Philipp Lohmann  <pl@openoffice.org>  [e5a27c95d88942b8af897aae9809fbde490eaa34]

rtl string api changes


2001-05-13  Eike Rathke  <er@openoffice.org>  [bc4511477202534663f5d2dec84f21926b83aec4]

replaced International with IntlWrapper


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [db2ea621a12e3ca45ec720cc477d393eec95cf7c]

Merge SRC631: 05/12/01 - 09:27:26 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [0a486a3acc4ec607058fb75ab47dc583ba3d3940]

Merge SRC631: 05/12/01 - 09:23:54 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [2f54c40f72e120b8aaf96296596593305ada8edf]

Merge SRC631: 05/12/01 - 09:22:01 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [5065a9c3a8d6f02580202acf966bb5ba9b790f1a]

Merge SRC631: 05/12/01 - 09:18:08 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [bf4e9b43b8cd26c3590c715e4c97868d225f56e2]

Merge SRC631: 05/12/01 - 09:14:25 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [65739f238bff9c16827962c2dbea7691adbaf5e3]

Merge SRC631: 05/12/01 - 09:12:40 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [f699535850de5df76ae28aca7e74570af3235e87]

Merge SRC631: 05/12/01 - 09:10:33 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [a411dcd4c8239ce0bf098eac4fe5b823956569a4]

Merge SRC631: 05/12/01 - 09:03:59 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [4f1f80b8cc67f2a832721e87591bbdd4bb970b66]

Merge SRC631: 05/12/01 - 08:59:55 (NoBranch)


2001-05-12  Hans-Joachim Lankenau  <hjs@openoffice.org>  [7e86f1dcf6b403bf6dd485036de3233ff2d9c470]

Merge SRC631: 12.05.01 - 08:59:57 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [d99a020f53677c3ae9897fd2876b1c399c5eb47e]

Merge SRC631: 12.05.01 - 08:57:14 (NoBranch)


2001-05-12  Hans-Joachim Lankenau  <hjs@openoffice.org>  [a97efb3cb685d8f85f18391a7a10c5b82762c617]

Merge SRC631: 12.05.01 - 08:57:54 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [673fe2980e3673122534bea0c4ba14e230628434]

Merge SRC631: 12.05.01 - 08:57:47 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [7820dec693a36d8d6b17b8b81383781aecc6d7de]

Merge SRC631: 05/12/01 - 08:56:44 (NoBranch)


2001-05-12  Hans-Joachim Lankenau  <hjs@openoffice.org>  [846106200a98cb7e79da41ed14dff6ee456b2361]

Merge SRC631: 12.05.01 - 08:53:31 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [c428206445469f4c65b199c218002ce0b495fc49]

Merge SRC631: 12.05.01 - 08:54:33 (NoBranch)


2001-05-12  Kurt Zenker  <kz@openoffice.org>  [3a33ead0b84d76117d3265e9f5157330bc88e67f]

Merge SRC631: 12.05.01 - 08:53:10 (NoBranch)


2001-05-11  Sascha Ballach  <sab@openoffice.org>  [8f38b5e6c199cd600b945be3600cc47883a860d8]

implement GetColDefault


2001-05-11  Sascha Ballach  <sab@openoffice.org>  [1f8995069ddd16d39379dd53947d9f5f2f1c0eaa]

fix a problem with the memorystream


2001-05-11  Sascha Ballach  <sab@openoffice.org>  [f482ced6dae24931b49670f960fc2c9f128103a7]

make the export and import of default cell styles on columns and rows work


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [783cbd877d05d98ccc6ded17c20ff57eb02f2efa]

use right DragFinished method


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [8ce7dca90d98bc9efcc3a356983f0e84f8eb287e]

GetOwnClipboard with Window parameter


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [d2fd5331e028689a6c5fa35dcc4c01187a0a273c]

CopyToClipboard/CreateFromSystemClipboard need Window parameter


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [45ebc7c8037c6703057b96e0ddc0eac40eefb59c]

CreateFromSystemClipboard needs Window parameter


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [5bba60e081c5167cb71648c73155992b69f59120]

optionally use printer as FmtDevice


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [fc46bafeedb9ce2c2a0f8215af579d4bba29f445]

UpdateRefDevice


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [870da4a6d070081ea31f9643bc37a7cf13dc2a8d]

use ScSizeDeviceProvider for optimal height


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [10569ce10fb9cbbdee5cacd182f81874741bf62a]

for bTextWysiwyg, output factor is 1


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [36812a5fb13f440242c453b8d372fa6612c74833]

helper to use VDev or printer for optimal height


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [64566bf5716309bd09ab33dcb1c779c96ab1e405]

helper to use VDev or printer for optimal height


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [bab8b696155c92e2105ef81b82da01b9251224db]

bTextWysiwyg


2001-05-11  Daniel Rentz  <dr@openoffice.org>  [25f5f3029c213545280e24068d23be7feea417ac]

redesign


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [18b9c390b77a11e50449d4b9473d5a25eda261df]

FillEditItemSet/GetFromEditItemSet: copy complete SvxUnderlineItem


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [18b9d74ab02c119aabd37f841c35c3db4f24a66f]

underline color


2001-05-11  Daniel Rentz  <dr@openoffice.org>  [a2d8dfb0eaf5c1ea1baa9b79de8c25be65574a5d]

redesign


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [bb436b4c17a826047d0ac16cd99c336db75c960e]

#86784# set underline color, don't use scale for bPixelToLogic


2001-05-11  Sascha Ballach  <sab@openoffice.org>  [ec109b02fab13602dba1b6ab15f8f665156444ae]

use AdjustRowHeight of ScModelObj instead of a own implementation


2001-05-11  gt  <gt@openoffice.org>  [3bf5f3aa4cff151a63e5c024c0552d4512c351d9]

#86892# second try


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [9d7b79b6d7e46802d450096319eccc0000c0039c]

#86861# BeginDrag: EndTracking


2001-05-11  gt  <gt@openoffice.org>  [7a6b63922d65c8f542a959ee6cd1b503873889d8]

#86892# imaginary unit possible without a preceding number


2001-05-11  th  <th@openoffice.org>  [5fb9304bdbe76b67fa7774e7179beab5fe0f8b45]

rtl-string-changes


2001-05-11  Daniel Rentz  <dr@openoffice.org>  [47ce940e94cb629150437bf577cfca45116ded9a]

fixes for view settings


2001-05-11  Niklas Nebel  <nn@openoffice.org>  [14c0b0939b818b74a2b4aba3d60cfb00180324d1]

#86813# SetMarkedToLayer: SetDrawModified


2001-05-11  Rüdiger Timm  <rt@openoffice.org>  [9da2b2e8e471dfe5b3d5889905c2b69bb8b3174b]

#65293 merge error (missing backslashes)


2001-05-11  Sascha Ballach  <sab@openoffice.org>  [58524be8c18c6b716bac1325b762eaa2efd6e416]

export and import of default cell styles on rows and columns added


2001-05-11  Sascha Ballach  <sab@openoffice.org>  [cbf015814ef54515e3bb2ca2b36d6378241d0f0c]

GetColDefault and GetRowDefault added


2001-05-11  Kurt Zenker  <kz@openoffice.org>  [ee65e05e730078ed8ab3c532eb6a9c1badac479e]

Merge SRC631: 11.05.01 - 07:17:59 (NoBranch)


2001-05-10  Niklas Nebel  <nn@openoffice.org>  [090cf0544b1d147eb0abe3980b2c4b4ca4ef87d2]

AdjustRowHeight


2001-05-10  Daniel Rentz  <dr@openoffice.org>  [7c152d53a5dc382befa62c25f6a393701f80326e]

excel import/export of view settings


2001-05-10  gt  <gt@openoffice.org>  [a88352c15f81dfaca3f54612d83daee9c5d2985e]

#86854# typo and additionaly fixed wrong parameter descriptions


2001-05-10  Sascha Ballach  <sab@openoffice.org>  [0e8b116572b5f6fc1ebe5d27cb97079e7adf77ab]

remove SEQTYPE for every property in the propertyset


2001-05-10  Niklas Nebel  <nn@openoffice.org>  [94b0d3ed3c4b957dfbbcc5e649d366a7ce23a4d6]

GetWebQueryFilterName


2001-05-10  gt  <gt@openoffice.org>  [aee7ba5bbc9fbb7ce34be104d411a84bf98ed360]

#86854# function names may contain underscores


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [c3af8e32ee96bf712710d67babd6015cf6405bb3]

Merge SRC631: 10.05.01 - 09:09:58 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [ed02831b2a0615792365417e412fc0ac31feee12]

Merge SRC631: 10.05.01 - 09:08:21 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [f110202fa4a29eec4744ded88691c4ba0e5b69c0]

Merge SRC631: 10.05.01 - 09:03:48 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [00f447ba15438c9bdcff4bff3b04bfe97c09b908]

Merge SRC631: 10.05.01 - 09:01:57 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [91c577c2b4ecf1b3ac3ba44d7adeff3ace3189f2]

Merge SRC631: 10.05.01 - 09:00:08 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [328639c7ec573676dc7c138e7e44f0eaf30cb943]

Merge SRC631: 10.05.01 - 08:58:16 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [e9795675a6ca729a146d2531460ae155d59b3038]

Merge SRC631: 10.05.01 - 08:55:58 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [0956d90b38dcd4705256b42246ffd17be1475133]

Merge SRC631: 10.05.01 - 08:54:09 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [6c0678a60ac93ad90cee548b0e98fe5585b29f3d]

Merge SRC631: 10.05.01 - 08:52:04 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [4715a03f7fb6a0c59de73621eaf40ea9b2435a99]

Merge SRC631: 10.05.01 - 08:47:37 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [34a49ab5452a7fd81b93dc2215bd0d0a1bc11dee]

Merge SRC631: 10.05.01 - 08:44:26 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [d663339874c6bf0044a8bf52890cfe0aa004efc1]

Merge SRC631: 10.05.01 - 08:42:44 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [501089597c92a96d031090f5abada4a243b53b75]

Merge SRC631: 10.05.01 - 08:40:42 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [a983ecb70321c5031f31ac5b9612a05cf2cb5002]

Merge SRC631: 10.05.01 - 08:38:53 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [9cae0903076ffac28c5d8195c08b8a72684e1590]

Merge SRC631: 10.05.01 - 08:37:03 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [39348fd8628501996263052f14cf89bbb794336f]

Merge SRC631: 10.05.01 - 08:35:01 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [c32d7617275f5336841f56d70e7be125992ac3b6]

Merge SRC631: 10.05.01 - 08:33:09 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [33a4c05b6506a6a1c867abb85112635b4bedc0d5]

Merge SRC631: 10.05.01 - 08:28:53 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [d4f6af31cfbf13fedd1129a30a3f500fde68c8f0]

Merge SRC631: 10.05.01 - 08:26:22 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [8bc1a38b9c63477dc63b98dc73c158b6c7e55b77]

Merge SRC631: 10.05.01 - 08:24:22 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [d2016e0d344a198ac72d3470642d6af91a4671e1]

Merge SRC631: 10.05.01 - 08:22:14 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [7126c90d3db570e15e7cb1d1bea1812bd90d859c]

Merge SRC631: 10.05.01 - 08:20:24 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [316710df10ad90b087bb0da85f606e3e7263eda8]

Merge SRC631: 10.05.01 - 08:20:12 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [9e56c2e1d7258deb7a54125586c8c3f37f92a99d]

Merge SRC631: 10.05.01 - 08:18:30 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [fd681b0d7c477838636db83e6dc54906e8434518]

Merge SRC631: 10.05.01 - 08:18:20 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [6a34305970442821ba57c9afa7181c46a20bfead]

Merge SRC631: 10.05.01 - 08:16:47 (NoBranch)


2001-05-10  Rüdiger Timm  <rt@openoffice.org>  [47102eb1882701896a53452d3afaef81fe642166]

Merge SRC631: 10.05.01 - 08:15:44 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [30547c90bec68fe045dbfc28223ee026b1c24528]

Merge SRC631: 10.05.01 - 08:14:47 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [0f2366883e8d11f22c1744a6f69b8c67ced2671b]

Merge SRC631: 10.05.01 - 08:15:20 (NoBranch)


2001-05-10  Oliver Bolte  <obo@openoffice.org>  [91b3bce4d52a210eb9fd9031254a081326dca805]

Merge SRC631: 10.05.01 - 08:14:46 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [f89119256af2bcda1e7b0694fb58e62f331e2a49]

Merge SRC631: 05/10/01 - 08:14:34 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [68407607fc4543056bc2c2005d6585ff21390367]

Merge SRC631: 10.05.01 - 08:13:24 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [0684949520a4c617957a70ae7be8f8afe4f51eb7]

Merge SRC631: 10.05.01 - 08:14:25 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [1700768e4bf89e070b2d29734586d9eceb77a368]

Merge SRC631: 10.05.01 - 08:13:40 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [f28b30a07f7352b47ed67a54cf8ca0172e9cb9e1]

Merge SRC631: 10.05.01 - 08:13:01 (NoBranch)


2001-05-10  Rüdiger Timm  <rt@openoffice.org>  [bfb8adfd3d6661bf4355ed21ff9849d0ad4fc091]

Merge SRC631: 10.05.01 - 08:13:09 (NoBranch)


2001-05-10  Oliver Bolte  <obo@openoffice.org>  [42eeda23c93928ab7c7533e23ce6aa1f2aa0ed13]

Merge SRC631: 10.05.01 - 08:12:11 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [2f1601edbc574f9611523a32f81b2557f5c6674d]

Merge SRC631: 10.05.01 - 08:11:46 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [6c67fb150936d656dd512e0305da608a3ca58e3b]

Merge SRC631: 10.05.01 - 08:12:41 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [4862ac65f1440a7e77c5eb4ca2ef5ba252b7727e]

Merge SRC631: 10.05.01 - 08:12:05 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [cb0dfcd3011f3bb80106a188db1e388f5a9ced72]

Merge SRC631: 10.05.01 - 08:11:20 (NoBranch)


2001-05-10  Rüdiger Timm  <rt@openoffice.org>  [41108aafb6c9420c2c56662eabe1bb80d59c3c44]

Merge SRC631: 10.05.01 - 08:10:57 (NoBranch)


2001-05-10  Oliver Bolte  <obo@openoffice.org>  [d8606e90e618510f57fe18aec96ffdd23d645cdd]

Merge SRC631: 10.05.01 - 08:10:03 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [c2c7b370a922854de92ae11cd17c8d33dc6a27cb]

Merge SRC631: 10.05.01 - 08:09:30 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [96d4cdd763b8970cc42343605cf6ad17405fdaf5]

Merge SRC631: 10.05.01 - 08:09:29 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [5a5b6f978055f72ef407a57777babcd60db9a935]

Merge SRC631: 10.05.01 - 08:09:58 (NoBranch)


2001-05-10  Oliver Bolte  <obo@openoffice.org>  [13b6e94824ecdbbac55a4de8857c674c14385e20]

Merge SRC631: 10.05.01 - 08:08:22 (NoBranch)


2001-05-10  Rüdiger Timm  <rt@openoffice.org>  [f86a97f143c909188c8397f41fd85ee4065ff8cd]

Merge SRC631: 10.05.01 - 08:08:54 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [b9276d019eafaa4e59adc8a1b932d26ff44aa190]

Merge SRC631: 10.05.01 - 08:07:33 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [5a39efc8fe094c9117d327e1318acde960350bfa]

Merge SRC631: 10.05.01 - 08:07:31 (NoBranch)


2001-05-10  Kurt Zenker  <kz@openoffice.org>  [c811964907e9a49d628a515f46c841e794e589f2]

Merge SRC631: 10.05.01 - 08:08:01 (NoBranch)


2001-05-09  Niklas Nebel  <nn@openoffice.org>  [6324fbef5c1f3415448a1168a5859791720ec2d1]

DrawStrings: for bPixelToLogic=TRUE, align to text width in logic units


2001-05-09  Niklas Nebel  <nn@openoffice.org>  [bf27d2d20e63c4486be87226b617cc32ce81f11b]

DrawStrings: bPixelToLogic, use pFmtDevice


2001-05-09  Niklas Nebel  <nn@openoffice.org>  [bca4d29802891ea8eb3cab31ae36e9f07c5f4b86]

DrawStrings: bPixelToLogic


2001-05-09  Niklas Nebel  <nn@openoffice.org>  [ba24d40e4caf9b0682b0eb595f5edc22315f7f55]

initialize pFmtDevice


2001-05-09  Sascha Ballach  <sab@openoffice.org>  [6f98737a76569036f6a3f24fa7c8d461f75ba8d2]

#86791#; ask both items(Format, Language) to get the state of the property NumberFormat


2001-05-09  Niklas Nebel  <nn@openoffice.org>  [6b63f1097c6e40a2b779c8edab84df7b22184c3a]

DoMacro: SetInLinkUpdate


2001-05-09  Niklas Nebel  <nn@openoffice.org>  [2aa0bb9389cd4425e20b57fb8ff778d072c322e3]

#84184# always get InputHandler for this view


2001-05-09  gt  <gt@openoffice.org>  [13bc476159337ffe674209365c3a63a22f229683]

unnecessary PropertySets removed, strange behaviour of gcd and lcm now compatible to competitor


2001-05-09  gt  <gt@openoffice.org>  [19d755fcaee66416be1cceb1ebabf0f69380aa2d]

dependency from tools


2001-05-09  Michael Hönnig  <mi@openoffice.org>  [01ad6a56fab1b3ca2186abd1a42454676283b71d]

#85249# depenency on drafts instead of offapi


2001-05-08  Niklas Nebel  <nn@openoffice.org>  [d630eec8be1548416b520279b0d0e16a0fa3f3e8]

pFmtDevice


2001-05-08  Niklas Nebel  <nn@openoffice.org>  [c4ad044a27b3d463b3ec39891810ff871e39207e]

pFmtDevice


2001-05-08  Niklas Nebel  <nn@openoffice.org>  [d2f6aed78abc0a026679593052348f3cba6a7e0a]

DrawEdit: no scale parameters


2001-05-08  Eike Rathke  <er@openoffice.org>  [5e203f4d8350e9366642f6ca7c8ae751309407d2]

WriteGraphic: use native if possible


2001-05-08  Vladimir Glazounov  <vg@openoffice.org>  [3efd3ec7ddaf261c967630675eeda92c1c02a367]

Corrected for use under solaris


2001-05-08  Niklas Nebel  <nn@openoffice.org>  [0518cec39e28eba077ca019364a9ca650d8be05a]

use OUString == operator instead of wcscmp


2001-05-08  Vladimir Glazounov  <vg@openoffice.org>  [90218b2f15fa7bad2370ca767c124ea62279e65e]

Corrected for use under solaris


2001-05-08  Sascha Ballach  <sab@openoffice.org>  [af5408424c174925061fd4bd9498c9d6501fdf0d]

#86741#; only try to get the attributes of the shape if it is a shape on my table


2001-05-08  gt  <gt@openoffice.org>  [ac6c10623102018a888f1cd6a89bcd7cb69cdf9c]

Empty strings (result from empty cells) are treated as 0


2001-05-08  Sascha Ballach  <sab@openoffice.org>  [714c3136908b5e99919c69cac4692ac92aa131d4]

some corrections in the last modifications/optimations


2001-05-08  gt  <gt@openoffice.org>  [50188150cb70b8c9b83449c240ac1063268d3119]

optional parameter(s) also with ranges


2001-05-08  Daniel Rentz  <dr@openoffice.org>  [db3120fdb7870fb8296b17ebdd8ca050fa695ebd]

#74359#, #86742# fixes in insert sheet dialog


2001-05-08  Sascha Ballach  <sab@openoffice.org>  [ffb89102ca244a1beca888a4680d30c8b5637a8e]

remove some calls of setPropertyValue


2001-05-07  Daniel Rentz  <dr@openoffice.org>  [ec26d0edd00c3dfc56ac22e2c6920e55f4b0159e]

#72607# keep old cell contents


2001-05-07  Daniel Rentz  <dr@openoffice.org>  [72e5539e8eac00efc65bd3debdfba97e95e4bfe8]

new option for biff dumper: BLANKLINE


2001-05-07  Daniel Rentz  <dr@openoffice.org>  [5ad28d0d7ebc76a2f3b6c22688e54466895db594]

new option for biff dumper: BLANKLINE


2001-05-07  Niklas Nebel  <nn@openoffice.org>  [683035baf31ede1d355a7f763cdd2d10be48ca95]

#86654# don't set parent for page styles created from stylist


2001-05-07  gt  <gt@openoffice.org>  [1b59a8692add868d31bd2816c707f146578a5097]

next part


2001-05-07  gt  <gt@openoffice.org>  [db85f7cdf7f0a4480a02e90264061b0aa7428963]

next part


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [42deaa9ddae15c44074053859cab38584f4ea8ab]

Merge SRC630: 05/04/01 - 23:18:41 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [361bdb63b9121b150776c18fac396519a5fb8431]

Merge SRC630: 05/04/01 - 23:16:48 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [14a30a8360ef96d0584259cb66c40ea44ed4a01f]

Merge SRC630: 05/04/01 - 23:14:09 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [8793df0ec282afa9122ba2a6d410e5f6ad017623]

Merge SRC630: 05/04/01 - 23:12:10 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [55339e1d1773faee3f4e9f1d48d67253354b0652]

Merge SRC630: 05/04/01 - 23:10:09 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [065261ba50f45ca438ddd8dddf382af6ae5a1578]

Merge SRC630: 05/04/01 - 23:08:16 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [7e8746b791872a27c5333ba560f14e085bbf8316]

Merge SRC630: 05/04/01 - 23:06:21 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [4468a23280be1818d3e1fa9835399219f8fc4e43]

Merge SRC630: 05/04/01 - 23:04:20 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [097a04479788259d319e4d041201968558b0ed47]

Merge SRC630: 05/04/01 - 22:58:40 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [884d70862060eca76f5c9d2fca9b8daf39383ffa]

Merge SRC630: 05/04/01 - 22:55:21 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [d9028133e322b9d3720cf92f97eae11cfbbf4492]

Merge SRC630: 05/04/01 - 22:53:01 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [8bddc623b0b674de81148b39aef1eb3ba976f5c8]

Merge SRC630: 05/04/01 - 22:50:53 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [71c0325809c725688baaf113ef0bb6da2da473fd]

Merge SRC630: 05/04/01 - 22:48:09 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [6d3bbd2b1a6e211bc69cd6357b3787e07e948dec]

Merge SRC630: 05/04/01 - 22:46:12 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [34365eee3700878b938e945992345c6b14f29337]

Merge SRC630: 05/04/01 - 22:44:14 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [4dc6e6f056b4e7d40977e79291ede7dad561d312]

Merge SRC630: 05/04/01 - 22:39:31 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [9ea047c20ad0338ff25550f540be768355eeca2c]

Merge SRC630: 05/04/01 - 22:37:07 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [dae08fa8925782354d763c847e35365a0555a1e6]

Merge SRC630: 05/04/01 - 22:34:46 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [d841334d647e29b71292562a9b775900c16c8b8c]

Merge SRC630: 05/04/01 - 22:32:48 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [3698e9461fa12861b5f767b832fb73c7dce1c610]

Merge SRC630: 05/04/01 - 22:30:48 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [ef3194112450095d28fd07a8751fd3e058a02ed3]

Merge SRC630: 04.05.01 - 22:28:55 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [9d879ca19a2c4e651eb59c7c63ab57b68f16cdca]

Merge SRC630: 05/04/01 - 22:28:39 (NoBranch)


2001-05-04  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f11732f6af8da7af9051709e6721d69ae4edef1f]

Merge SRC630: 04.05.01 - 22:26:48 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [0c91c8a795bfb3f2b0548fa92f0291ed43760db8]

Merge SRC630: 04.05.01 - 22:26:48 (NoBranch)


2001-05-04  Rüdiger Timm  <rt@openoffice.org>  [f78396c7e8c0a28bc3e7ff045b905b509eeb38e0]

Merge SRC630: 04.05.01 - 22:26:56 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [e42ecd2b07c427d6a3f0040c6fb3e8cdfd149d13]

Merge SRC630: 04.05.01 - 22:25:51 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [fa75ea5b0bab40a21d7c8847e93fdbe9c715bdf5]

Merge SRC630: 04.05.01 - 22:24:59 (NoBranch)


2001-05-04  Hans-Joachim Lankenau  <hjs@openoffice.org>  [6057893550859c682ba06ae22ace326b57a5a159]

Merge SRC630: 04.05.01 - 22:24:20 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [55dfd985d73dc6232540cbeb55a5229307963676]

Merge SRC630: 05/04/01 - 22:24:22 (NoBranch)


2001-05-04  Rüdiger Timm  <rt@openoffice.org>  [0906ea5dde986dfd5764bc263917d1a349e050fe]

Merge SRC630: 04.05.01 - 22:23:41 (NoBranch)


2001-05-04  Rüdiger Timm  <rt@openoffice.org>  [bccebdd4c4ebe9b84b3548de2ee52f6600190fdb]

Merge SRC630: 04.05.01 - 22:24:26 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [b045e57e9c21f9d8c4b265faad4af3a97bb0a505]

Merge SRC630: 04.05.01 - 22:23:13 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [6480a5694953254899a92bef5e8d48f0325ed8d1]

Merge SRC630: 04.05.01 - 22:23:11 (NoBranch)


2001-05-04  Rüdiger Timm  <rt@openoffice.org>  [7dca01f53a64c1384e3614f2637d524499f2a604]

Merge SRC630: 04.05.01 - 22:22:06 (NoBranch)


2001-05-04  Hans-Joachim Lankenau  <hjs@openoffice.org>  [0494a53fedfec562147d6458000c8908be0085f2]

Merge SRC630: 04.05.01 - 22:22:01 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [f5587ebcc02adf626874fde89826840d25cae89a]

Merge SRC630: 05/04/01 - 22:22:24 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [3a82ca6bb406fb49e7cb3c235e3d6ab58246e96c]

Merge SRC630: 04.05.01 - 22:21:20 (NoBranch)


2001-05-04  Rüdiger Timm  <rt@openoffice.org>  [d5aa797b0717ce2914cfec9685337463a5e79713]

Merge SRC630: 04.05.01 - 22:20:08 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [9c77db66ecbca339df697d64b9c42b737e5de426]

Merge SRC630: 05/04/01 - 22:20:14 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [2347421aefcacc75b5face5fbcdc1556fe038cf6]

Merge SRC630: 04.05.01 - 22:19:04 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [5c9e4b501cc342f9c78bdcd879f52d15a0602992]

Merge SRC630: 04.05.01 - 22:19:23 (NoBranch)


2001-05-04  Hans-Joachim Lankenau  <hjs@openoffice.org>  [f9928e25504282235262af7cf4748792f0990734]

Merge SRC630: 04.05.01 - 22:18:59 (NoBranch)


2001-05-04  Rüdiger Timm  <rt@openoffice.org>  [bf60c78719462bb4e8d7ce2929feb591c005bd63]

Merge SRC630: 04.05.01 - 22:18:13 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [9359a963c308785a90fd3d161fef79a74a99c038]

Merge SRC630: 04.05.01 - 22:17:04 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [e2446ad01b0c56a033024420f7e1670f99e90579]

Merge SRC630: 04.05.01 - 22:17:17 (NoBranch)


2001-05-04  Hans-Joachim Lankenau  <hjs@openoffice.org>  [6dac94bf62d7d454966ad2948d09b139971af2e4]

Merge SRC630: 04.05.01 - 22:16:31 (NoBranch)


2001-05-04  Rüdiger Timm  <rt@openoffice.org>  [800e1e23b0005e3dbb9c4d76675778ffcbe47093]

Merge SRC630: 04.05.01 - 22:16:24 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [62e7821eb42a6afd7366018fc973388e33322fcf]

Merge SRC630: 04.05.01 - 22:14:46 (NoBranch)


2001-05-04  Kurt Zenker  <kz@openoffice.org>  [5c7ae20c1b86cd457d06043d511eb0cbbb259957]

Merge SRC630: 04.05.01 - 22:15:22 (NoBranch)


2001-05-04  Niklas Nebel  <nn@openoffice.org>  [651b5ab466c89d554121330983032e05dd920bfe]

hidden entries to insert/delete columns/rows in object bar


2001-05-04  Niklas Nebel  <nn@openoffice.org>  [d955880b8b9496092afa9d3d4bf3409b371ed45e]

removed old drag&drop flags


2001-05-04  Niklas Nebel  <nn@openoffice.org>  [1270492799da418a84028f5dda84049ab5eca6d4]

use DragSourceHelper


2001-05-04  Sascha Ballach  <sab@openoffice.org>  [1607a6947c039c9c0e7b685532b5a41bf7379a38]

PrinterSetup added


2001-05-04  Sascha Ballach  <sab@openoffice.org>  [3e0d412afd364331a65f4c3a27e2a879dbfac3ea]

make encryption of streams possible


2001-05-04  Sascha Ballach  <sab@openoffice.org>  [e67b8b7a3b71aa574af71ce3289c6ff27ecadf95]

export/import of change tracking protection


2001-05-04  Sascha Ballach  <sab@openoffice.org>  [9395d2a094353f25bc24d9c942c9834d29f8fdc6]

set the document modified if the Redlining is set to protected or to unprotected


2001-05-04  Niklas Nebel  <nn@openoffice.org>  [7e2821e10149e7712bdc5c938b94ebdd2cd19397]

#85761# AcceptDrop/ExecuteDrop


2001-05-04  Niklas Nebel  <nn@openoffice.org>  [412562cb667a19cd0284b6cb0be25c905f56a1c0]

FileHdl: get filter name using file content


2001-05-04  Niklas Nebel  <nn@openoffice.org>  [fa4e1f16752e06bda991a29ef01ac9cc385b118a]

GetFilterName: bWithContent


2001-05-04  Sascha Ballach  <sab@openoffice.org>  [0324d5f30273a6b89d4a7b052fbf51748b4e8eb4]

the Property PrinterSetup has now the type Sequence<sal_Int8>


2001-05-04  Oliver Specht  <os@openoffice.org>  [48e13e843e5f90f4b4ffc383c7b76e899ad1a349]

some minor option changes


2001-05-04  Daniel Rentz  <dr@openoffice.org>  [cbb13510576826a7bcd0b2ecc1d99f0cc79fa31c]

#84453# skip single ; at end of function parameter list


2001-05-04  Sascha Ballach  <sab@openoffice.org>  [b050d99dedc63f5d46f2c2322f470345df7ee256]

#86261#; disable the draw of page breaks on XML import


2001-05-04  Sascha Ballach  <sab@openoffice.org>  [7f4b64832eda95b815ec76eeb8c0c77a01ad8a32]

add Property PrinterSetup


2001-05-03  Niklas Nebel  <nn@openoffice.org>  [3f6b0655b745e8979f9248154407b57450354572]

#86365# FillSeries/linear: use multiplication instead of repeated addition


2001-05-03  Daniel Rentz  <dr@openoffice.org>  [0e65ea965cbb058dfb7f34e41790f026f19909d0]

minor changes


2001-05-03  Daniel Rentz  <dr@openoffice.org>  [ec1e63fe6745c45f560e87c4ad88adadd33c0faa]

FONT record


2001-05-03  Sascha Ballach  <sab@openoffice.org>  [9c2a01e823e94c74f0935b70698a0256463817ca]

#86624#; set the Properties of the first sheet at the end of the import


2001-05-03  Sascha Ballach  <sab@openoffice.org>  [ddfb50364427ac7a6865e9fd12579c5ee08df240]

disable assertion


2001-05-03  Sascha Ballach  <sab@openoffice.org>  [5a0204ef8308388902075c5855e241337c22a0c7]

don't export the meta data if the spreadsheet is embedded


2001-05-03  Vladimir Glazounov  <vg@openoffice.org>  [cf6aab09571e76314ee49d4747b70a9f56c42309]

Corrected types for Solaris


2001-05-03  Sascha Ballach  <sab@openoffice.org>  [89aedde6f376044e4043f18e3de1d5e4874c84ce]

#86274#; add export/import of view settings in XML to the page preview


2001-05-03  Niklas Nebel  <nn@openoffice.org>  [cd322485527c66be9bf1b9911c22aba611704bda]

#86588# ScTableSheetObj::GetOnePropertyValue: assign to right variable


2001-05-02  Niklas Nebel  <nn@openoffice.org>  [04c327d82cbb60a3b7f58e0e957819c6e162f34d]

SearchAndReplace: construct TextSearch with SearchOptions instead of SearchParam


2001-05-02  Niklas Nebel  <nn@openoffice.org>  [3bb886b5015c5b72e2d536d6ccb34f85d7aea92c]

disable transliteration functions if disabled in options


2001-05-02  Niklas Nebel  <nn@openoffice.org>  [3d43c0d09b2d5a181093595d16a5debe6cef831b]

remove asian typography tab page if not enabled


2001-05-02  Daniel Rentz  <dr@openoffice.org>  [3352a3b8e6177c18e3e337911c33d0ff01dda8cd]

#86373# conditional formats with named ranges with relative references


2001-05-02  Eike Rathke  <er@openoffice.org>  [0a481d28afb64160cb1a706e8ba4c1345678827c]

GetCellValue: distinguish between errNoValue and errCellNoValue


2001-05-02  Eike Rathke  <er@openoffice.org>  [2669694bf68edc24121bb7d681d5e0f7da1e155e]

add: errCellNoValue


2001-05-02  Sascha Ballach  <sab@openoffice.org>  [3e1b699c722a6f02ee3677f784ece7b88f92d1c7]

#86583#; use the right name for a attribute in filter


2001-05-02  Sascha Ballach  <sab@openoffice.org>  [4b416476c7ecbce01f8652426cbc2002368b2f38]

#86273#; read/write all viewsettings for every view


2001-05-02  Eike Rathke  <er@openoffice.org>  [284159080ab684df186c621743070a9aaa2fce90]

GetToken: with recursion guard (name1:=name2:=name1:=name2:=...)


2001-05-02  Oliver Specht  <os@openoffice.org>  [b5749e09e137a2e354686b237d79122928659192]

register vertical text controller


2001-05-02  gt  <gt@openoffice.org>  [974e61c547846266f0d5455b489509ed38060fe9]

#86540# change behaviour for larger and negativ month-offsets


2001-05-02  Sascha Ballach  <sab@openoffice.org>  [103a7c5263664de27d03cb32870ba56a7dc3bb3f]

#86417#


2001-05-02  Sascha Ballach  <sab@openoffice.org>  [7ed83898d534d438b6863c7f9f9062332ecd08dd]

#86538#; get the base address if set the validation


2001-05-02  Sascha Ballach  <sab@openoffice.org>  [79b3ea87eaf25dadac7bcef274d466ad20aca474]

#86387#; only set the SubTotals if there are some


2001-04-30  Rüdiger Timm  <rt@openoffice.org>  [21b8192b40cc997288e7cd9ca2c5177b9989b3ac]

#65293# removed obsolete macro %UPD%


2001-04-27  Eike Rathke  <er@openoffice.org>  [96d160348500c80bb1ce86cb3cd183ea50821490]

PushDouble, result: NAN ? errNoValue : errIllegalFPOperation


2001-04-27  Eike Rathke  <er@openoffice.org>  [209800ba3bce38489625ccd7496e2da4e4e4d1f7]

optimized some matrix accesses, ElementCount/Index instead of Dimensions/Col,Row


2001-04-27  Eike Rathke  <er@openoffice.org>  [ef3c56b30cf5faaec21731ce27ea99e63cf36c82]

#86524# GetSortArray: also pop stack for counts of svDouble


2001-04-27  Niklas Nebel  <nn@openoffice.org>  [b95269fc386def28559fd10ba8f5b58096aeed01]

user interface for linked areas / external data sources


2001-04-27  Niklas Nebel  <nn@openoffice.org>  [857d94385f9fbdfb155a9597e12e3f014a523545]

#86430# ToPixel: change 0 to 1 only if original value is not 0


2001-04-27  gt  <gt@openoffice.org>  [42acee0af06e4b175cc3aff86300431c634b74f9]

#86478# AnalysisAddIn::getMultinomial(): exception when result exceeds valid range


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [62c83001ff2c4ded68a948aa8028417d9ac985c5]

Merge SRC630: 26.04.01 - 22:36:04 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [db1000229a964004d263417af0c05f978224ec2a]

Merge SRC630: 26.04.01 - 22:31:39 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [093a1e2dac50edf799b91baeb71b20190efb7ad6]

Merge SRC630: 26.04.01 - 22:27:11 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [c2da109a3c256e1dc9552fccecbd638d4dd602ee]

Merge SRC630: 26.04.01 - 22:22:21 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [8782a8ed8b5722540cea7276785763471a974141]

Merge SRC630: 26.04.01 - 22:17:44 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [739a72d9202493b58c6f1a3695b5c53b0a42afd2]

Merge SRC630: 26.04.01 - 22:15:17 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [f0c9cf61af5357aef6674724db919fbbec41ce4e]

Merge SRC630: 26.04.01 - 22:12:32 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [494cc7353aee0c62f55fa49cb0c59985cf8e3c88]

Merge SRC630: 26.04.01 - 22:10:32 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [9b71463f969eb51a00fe649fa644101b28ede474]

Merge SRC630: 26.04.01 - 22:06:00 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [3235361ec52c54a177bfe189792b0e14cda61dad]

Merge SRC630: 26.04.01 - 22:02:15 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [3747edefc616db642d52a026b503b11627be7874]

Merge SRC630: 26.04.01 - 22:00:31 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [82810f77b7040ddd8931d4b9be1d4cc8b046f1ed]

Merge SRC630: 26.04.01 - 21:58:05 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [6bc09fada00a1c9f988eba79e5ff48ad89e19a6d]

Merge SRC630: 26.04.01 - 21:58:00 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [bb0795547d2c850cd6a4c7b9474fc8679e648757]

Merge SRC630: 26.04.01 - 21:57:02 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [8796a897880638e6aac10f6cc4adadd0ccc1219a]

Merge SRC630: 26.04.01 - 21:56:52 (NoBranch)


2001-04-26  Kurt Zenker  <kz@openoffice.org>  [47fa1c2baa30fcc5794679651dc590860825ed25]

Merge SRC630: 04/26/01 - 21:57:00 (NoBranch)


2001-04-26  Eike Rathke  <er@openoffice.org>  [8a8248649b33767a21c9ef079361e0a3c1f08a9e]

ChangeTrack password protection (disables end, accept, reject)


2001-04-25  Niklas Nebel  <nn@openoffice.org>  [22e50c707c795ddec3a1dc7c8903ce5f8e51b88c]

XMultiPropertySet, XMultiPropertyStates


2001-04-25  Niklas Nebel  <nn@openoffice.org>  [b5ed3b23f3ae7106523038715b622c95392f75ac]

WIDs for style object


2001-04-25  Niklas Nebel  <nn@openoffice.org>  [1936ce61f2559d9740b33424d949a423594bfd5c]

setPropertyValues: continue searching in map at last position


2001-04-25  Eike Rathke  <er@openoffice.org>  [5d8503ab57fcf96199fea353b38991d49cb4c567]

#85286# ignore hidden flags until new chart implementation


2001-04-25  Eike Rathke  <er@openoffice.org>  [078e369778ecd3a9388fcfd0d59aeab77e576b63]

return instance


2001-04-25  Eike Rathke  <er@openoffice.org>  [ac6f6499f4328349cdb074bd288e1a670e25c3e7]

ChangeTrack password protection (disables end, accept, reject)


2001-04-24  Niklas Nebel  <nn@openoffice.org>  [858526aecb887e625d0f85c1f0e41618d9ffc064]

set file format version for EditPool


2001-04-24  Eike Rathke  <er@openoffice.org>  [7cf510c062e460e8ea304eeb4b063055a3b50c72]

Execute: removed unnecessary dialog box after password dialog (handles it itself)


2001-04-24  Niklas Nebel  <nn@openoffice.org>  [3e5c15cf6c71ab792cc0f70e736ff9ff65892702]

#86067# real support for emphasis mark


2001-04-24  Daniel Rentz  <dr@openoffice.org>  [27d9f7520397ba5de050a98a105bf7fdaa5eebfe]

export of web query filter name


2001-04-24  Daniel Rentz  <dr@openoffice.org>  [b5c2a20791b2872f122fac718d7387623d35b479]

import/export web query with all HTML tables


2001-04-24  Daniel Rentz  <dr@openoffice.org>  [b732822f1bd30c4459c60c924c44ebfac9d7e1f4]

string help functions -> ScFilterTools


2001-04-24  Daniel Rentz  <dr@openoffice.org>  [61ca2124d2eb1f97399e8bbefadae64c0ce0e562]

+ScRangeList::In()


2001-04-24  Daniel Rentz  <dr@openoffice.org>  [53c09718fcc661b60eb74b212f4322b6e48bbed6]

+ScAreaLink::FindExtRange()


2001-04-24  gt  <gt@openoffice.org>  [992307ba0cc005dcbed33ff173d74c0c48ff224f]

idl changes


2001-04-24  gt  <gt@openoffice.org>  [479a299cadf25a8ba1e8725be6f17e33fd5fdcd7]

OSL_ENSHURE -> OSL_ENSURE


2001-04-24  gt  <gt@openoffice.org>  [df253c450cba9d09b5a3367f7e4fa5e908145e4d]

chg. for new idlc-compiler


2001-04-24  gt  <gt@openoffice.org>  [804ea65ce0f78a4330376be5c40b52ace53dc691]

analysis


2001-04-23  Eike Rathke  <er@openoffice.org>  [5891fcbabe41e3320de4977311b7275c2f23053f]

#86128# take empty cell as 0 in matrix basic arithmetic calculations


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [166fa05a215a12fcb11965bd8b4bc0f8f3f4e1b7]

SetMultiMarkArea: if pMultiSel is created, transfer mark range


2001-04-23  Eike Rathke  <er@openoffice.org>  [21a025937d03f714b5ad91d9c24ffb9157110298]

#86129# ScNeg: unary minus, handle {=-A1:D1} matrix formula


2001-04-23  Sascha Ballach  <sab@openoffice.org>  [a57556536848fbe0e65f1afd41f415b0d09362dc]

add export/import of refresh-delay on database range


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [81383d96b86c25724a3d0e8a01882bd7a1aa9fff]

removed unused method HasPasteContents


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [fb7a8a36b9b687eaa246f358325220ecdbf4aa68]

slot for clipboard controller


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [721f5b65dcd9d6fa2f9ac4504022ef9a46ab8e24]

slot for clipboard controller


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [123a2b21ee537e659e569fd2fb643447bfc8052b]

moved format names to GetPossibleClipboardFormats


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [c73a6cd0eb425933ee3bf9a64ae78f0ba1468b08]

slot for clipboard controller


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [976aa3c87985dc6fa781db740671002b729c4047]

GetPossibleClipboardFormats


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [6a0b8d264d77654a0a13dde2fc9288ba0799f111]

slot for clipboard controller


2001-04-23  Niklas Nebel  <nn@openoffice.org>  [0c3b228e9cc1367fdfed94ceaadb7d759a67976a]

include for clipboard controller item


2001-04-23  Eike Rathke  <er@openoffice.org>  [c37007da59df9fb890725a7c404116b2d36db66b]

ScDBData refresh handler


2001-04-21  Eike Rathke  <er@openoffice.org>  [db71eb5869cd65d39e6046566811d0a4aa2b00f8]

linked documents refresh timer and control


2001-04-21  Eike Rathke  <er@openoffice.org>  [3022e868235dd4633d6aad9317b162d274bd23ac]

add: refreshtimer


2001-04-21  Eike Rathke  <er@openoffice.org>  [8b1eef94a66e053081cb1e7000bbc17ce89a65f1]

refresh timer and control


2001-04-20  Niklas Nebel  <nn@openoffice.org>  [472e455a6a8b46c080ae264120464bcd8f8013a0]

InvertBlockMark: If paint is locked, add repaint area instead


2001-04-20  Niklas Nebel  <nn@openoffice.org>  [79e39a9ed1a506fce7c7dce6a6350bb651c32d4f]

slots for undo controller


2001-04-20  Niklas Nebel  <nn@openoffice.org>  [2d082b08c2c58d864c3efe12e8307ff8598da51d]

register undo and clipboard controller


2001-04-20  Niklas Nebel  <nn@openoffice.org>  [e0fcee1dab9b187fd7619bd33059df4404106493]

#85281# TestMouse: don't start AutoFill if ole object is active


2001-04-20  Niklas Nebel  <nn@openoffice.org>  [6bfb49ad0467cf62c7809c517a996088c53f0cfd]

#85250# removed unnecessary GetStorage call in InitNew


2001-04-20  Niklas Nebel  <nn@openoffice.org>  [0fc248cf9eeda693eeeacdf86ac293adcc071de3]

#85811# use unolingu to get LanguageType from Locale


2001-04-20  Sascha Ballach  <sab@openoffice.org>  [2790db7e2068538ccf15208011d570535443f52a]

change a property name


2001-04-20  Sascha Ballach  <sab@openoffice.org>  [b1a0064676b15dbd9f01cfaaeb9aacf37c5cded3]

export and import the refresh delay attribute of table source element


2001-04-20  Sascha Ballach  <sab@openoffice.org>  [34bf67b3d3b3ade92ab3699431203cf7909cc8ca]

#86162#; transport the information about loaded/saved number styles


2001-04-19  Niklas Nebel  <nn@openoffice.org>  [2a34e840c961a606ad2a387956d0addb6af79a32]

insertString: special handling for ScCellTextCursor is no longer needed


2001-04-19  Niklas Nebel  <nn@openoffice.org>  [d5af02eecdb3815aeb2830021264a3bd247874cc]

DeleteUnchanged: handle default items


2001-04-19  Daniel Rentz  <dr@openoffice.org>  [1706894e41ab1e43a1e1a44272435a1883db1224]

minor change


2001-04-19  Daniel Rentz  <dr@openoffice.org>  [e3167f3d35cadf8e3b9a3b405e716a95150b71bb]

#86161# patterns of cond formats


2001-04-19  Eike Rathke  <er@openoffice.org>  [a6b77e1ae22591ffb91b1dc346e21e2484c5582c]

#86177# unicode assumption except CR,LF,TAB


2001-04-19  Daniel Rentz  <dr@openoffice.org>  [d443c35f8f18708cf15c9564b9ca1929c91a5129]

export of web queries


2001-04-19  Daniel Rentz  <dr@openoffice.org>  [edab84dca33c99f3cccad9d188c567d9f984c415]

using a separate range name list to avoid double names


2001-04-19  Daniel Rentz  <dr@openoffice.org>  [f61e7d6c0accd083dc35559391a50c37c7622f0a]

add: ExcName::SetName() and ExcName::SetUniqueName() minor fixes


2001-04-19  Daniel Rentz  <dr@openoffice.org>  [7205c3680372c0facc647d6cfd00b95f16151291]

export of web queries chg: class DefRowXFs derived from UINT32List


2001-04-19  Daniel Rentz  <dr@openoffice.org>  [dbc17250e0096871f7bbec1808caf3e7d9429be2]

minor fixes


2001-04-19  Daniel Rentz  <dr@openoffice.org>  [5afc9b570161a6640dcaf03eaf6248f6a6a49f87]

add: ExcName::SetName() and ExcName::SetUniqueName() using a separate range name list to avoid double names


2001-04-19  Vladimir Glazounov  <vg@openoffice.org>  [267de1c9c97c84be2be2c4bf80056d2726a4fc9d]

Changed type casting


2001-04-18  Niklas Nebel  <nn@openoffice.org>  [9543283674b26c6205776bf998496c88a09fd1df]

#85351# adjust to cell positions using twips values


2001-04-18  Sascha Ballach  <sab@openoffice.org>  [b94cad4190414e1271a0afb6b0165169e2f43057]

fix a little bug in the export if there is no content, but different styles of rows


2001-04-18  Eike Rathke  <er@openoffice.org>  [8835f9be766f03b02a2e692bf04f8e2177e70141]

ScTableLink with refresh delay


2001-04-18  Eike Rathke  <er@openoffice.org>  [04b64c92807969afc33beb93c914fc628e009c34]

ScTableLink with refresh delay


2001-04-18  Eike Rathke  <er@openoffice.org>  [b1815d5942ff9b7b75cf4f3d7cbb4fc8ef59f537]

ScTableLink with refresh delay


2001-04-18  Niklas Nebel  <nn@openoffice.org>  [d201b36ede68e864926b3b951fbd62776cab957b]

#i601# ScViewData::ToPixel (handling of small columns/rows)


2001-04-17  Niklas Nebel  <nn@openoffice.org>  [82bf3e6c9f840a58499f4cb93fe9ff7fad417d79]

useful implementation of XMultiPropertySet


2001-04-17  Niklas Nebel  <nn@openoffice.org>  [057ea51a53662b88f655700e69c6f62b7155f446]

WIDs for uno property maps


2001-04-17  gt  <gt@openoffice.org>  [f21c3519840f62498567cf5b987bc0de15e3f490]

#86069# FltColumn::InsertIn(): treatment for append


2001-04-12  Sascha Ballach  <sab@openoffice.org>  [d8539d593b2c37be8221cbbed4e16858591eaf41]

add Show Page Break Preview


2001-04-12  Sascha Ballach  <sab@openoffice.org>  [c900ed2607fddc91299db313149ae00e37243c82]

#86068#; put the Grip Options back into the ViewOptions


2001-04-12  Sascha Ballach  <sab@openoffice.org>  [5a2f39811dddf354670b3e3cf922b5242bb6a05f]

#80363#; have to convert Twips and Hmm; cast with a sal_uInt16 and not a sal_uInt8


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [42664b3120938d9193f9b9db37125646b3dd2044]

fix: create auto filter buffer only if necessary


2001-04-12  Niklas Nebel  <nn@openoffice.org>  [1429c423f328de4a6136dd9fc247d0959e8e3e16]

#86059# don't access system clipboard in GetOwnClipboard if called from core


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [78e0743a3e5e2c6867139d3b337a2478a39215c1]

fix: no table border for <table border=0>


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [bb2f4367dad56c78e03b6a6489336520f42410f7]

create range for entire document


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [9e53428c8250641b789ceb7343cb1a8c6e1cdf6d]

import of web queries changed behaviour for modes Z_Biff8I and Z_Biff8T


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [3217fc4587a7f461eacb194c62191e280c52225b]

autofilter: new class names; moved to ImportExcel8 fix: wrong usage of RTL_CONSTASCII_STRINGPAARM()


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [82b43b7292687d932e6799c3a343707d7184e748]

fix: wrong usage of RTL_CONSTASCII_STRINGPAARM()


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [bfd1680e9e74ba75bf58f818dda96b9b8126c9fb]

autofilter: new class names; moved to ImportExcel8


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [424e29d2f045621bc2b31ef7c56f49693c613819]

import of web queries autofilter: new class names; moved to ImportExcel8


2001-04-12  Daniel Rentz  <dr@openoffice.org>  [ccfc79249d1baefc37d45e091489db1655438004]

import of web queries


2001-04-12  Nils Fuhrmann  <nf@openoffice.org>  [94486b06aef1c55a49abe9676ed77d94953fd369]

Merge SRC627: 12.04.01 - 10:29:15


2001-04-12  Nils Fuhrmann  <nf@openoffice.org>  [bd71b05db99c01c63f4ebb4d0dbb293f055e2a1b]

Merge SRC627: 12.04.01 - 10:27:32


2001-04-11  Kurt Zenker  <kz@openoffice.org>  [877c923323eb50d87fb32fbb02234864dfec595d]

Merge SRC627: 11.04.01 - 21:35:43


2001-04-11  Kurt Zenker  <kz@openoffice.org>  [daa6a4b3a0ea572887a4876db6a3d4721d7ca429]

Merge SRC627: 11.04.01 - 21:31:07


2001-04-11  Kurt Zenker  <kz@openoffice.org>  [9e567b5db0a0f5c04ac96ffc290491428766c866]

Merge SRC627: 11.04.01 - 21:29:30


2001-04-11  Kurt Zenker  <kz@openoffice.org>  [e70ccb649976d8e5d5573fb7adf99e4911d1e970]

Merge SRC627: 11.04.01 - 21:25:55


2001-04-11  Niklas Nebel  <nn@openoffice.org>  [2600afe89b9c87833c76bfdd811963956b023687]

#85964# don't access docshell in SFX_HINT_DYING broadcast


2001-04-11  Niklas Nebel  <nn@openoffice.org>  [fddb804fde1657618f08fec8d6969c908f52cfba]

#85964# removed cast to old link class


2001-04-11  Sascha Ballach  <sab@openoffice.org>  [f1697a191b790baf41209f6596d6bd788e66687e]

cache the Numberformat


2001-04-10  Niklas Nebel  <nn@openoffice.org>  [7aef0907d4783849a1bbbc1de54e492bff85c662]

use ScByteSequenceToString to get string data


2001-04-10  Niklas Nebel  <nn@openoffice.org>  [844c2d2949dff2432ea2fb23d9561fee77a7fa46]

ScByteSequenceToString


2001-04-10  Sascha Ballach  <sab@openoffice.org>  [3f39822a3048cfdb76b869d63e658750b451e0e7]

#85616#; a little bug fixed


2001-04-10  Sascha Ballach  <sab@openoffice.org>  [6a3c9116289a7e8ac6161dcb679e00723c148d0b]

#85937#; only remove a merged range if the column, row and sheet is the same


2001-04-10  Niklas Nebel  <nn@openoffice.org>  [f228e43afde7e32574672480c43c9c290b63191b]

#85929# keep persist ref for ole objects in clipboard, update charts


2001-04-10  Niklas Nebel  <nn@openoffice.org>  [5cbac0383786320165a252573246efa451f87ac6]

#85929# use aOleData, keep persist ref for ole objects


2001-04-10  Niklas Nebel  <nn@openoffice.org>  [a8df0ef0c35ed72d7758c32445e61a3ac5299335]

#85929# keep persist ref for ole objects


2001-04-09  Kurt Zenker  <kz@openoffice.org>  [0a80446d6fe7d405a44cfb0ab58f3ff76e8f52bb]

Merge SRC627: 04/10/01 - 01:20:47


2001-04-09  Kurt Zenker  <kz@openoffice.org>  [e8234fcaf53837fd239a9bb9259877531d2d9774]

Merge SRC627: 04/10/01 - 01:18:09


2001-04-07  Kurt Zenker  <kz@openoffice.org>  [6b1b97c8500a9cd301e1f3b159119d91e4cc4664]

Merge SRC627: 04/07/01 - 21:49:47


2001-04-07  Kurt Zenker  <kz@openoffice.org>  [9ab9154ff6ef523456b481422087e1b554c00be1]

Merge SRC627: 04/07/01 - 21:39:38


2001-04-07  Kurt Zenker  <kz@openoffice.org>  [26438e3fccce4d10355da2767904f88cefb5fdb7]

Merge SRC627: 04/07/01 - 21:31:23


2001-04-07  Kurt Zenker  <kz@openoffice.org>  [8c4977542e3afdaec0e19ae8af7d2b5ce8c79752]

Merge SRC627: 04/07/01 - 21:18:02


2001-04-06  Kurt Zenker  <kz@openoffice.org>  [0cd73f5a1633faf2ab971a7e50deb2d178c6b5dc]

Merge SRC627: 04/06/01 - 21:20:36


2001-04-06  Niklas Nebel  <nn@openoffice.org>  [5c2a8ac7c46908bde96ff3af37c97ac5d97054a3]

#80782# create storage of right type


2001-04-06  Eike Rathke  <er@openoffice.org>  [2d77ecd52919a58315bb3d2e6b47fb4b44c5e9d7]

#85542# Factor: transform JumpToken into ByteToken if compiling for FunctionAutoPilot


2001-04-06  Niklas Nebel  <nn@openoffice.org>  [964fe4685155df2b963b0fdedeb5f94ddf76ca40]

#85721# right service name for document settings (store forbidden characters with document)


2001-04-06  Niklas Nebel  <nn@openoffice.org>  [43023a9fe689d2a2f5a8c70609a48e41427cd782]

#85721# store forbidden characters with document


2001-04-06  Sascha Ballach  <sab@openoffice.org>  [4e0ec7712be555381cb0af775bdfe241baf724f1]

#80363#; don't try to export tables without view data and create on import a new ViewData object


2001-04-06  Sascha Ballach  <sab@openoffice.org>  [a85c4ee7f693622114c060e6eec9922ab419e015]

#85051#; gives the styles import and export the GraficContainer


2001-04-06  gt  <gt@openoffice.org>  [6fdda67abeebe5e46262b1fba1ee4e53205f6d79]

in the middle of the work, don't expect that this work


2001-04-06  Daniel Rentz  <dr@openoffice.org>  [6219dae80cd40bb10736149eb7e42d6d6ec88ed5]

switch table borders on/off


2001-04-06  gt  <gt@openoffice.org>  [641b3b30160f489971f5dd56e990c463ea8945fd]

#i194# optimise Mulblanks to optional XF for row


2001-04-06  gt  <gt@openoffice.org>  [6f02268cad050987e6007749bc35729bedb0ac49]

#i194# optimise Mulblanks to optional XF for row


2001-04-06  Daniel Rentz  <dr@openoffice.org>  [5c6c1c2f1a2e511de21578b8e8a6bc311b4734d7]

cell borders for HTML tables


2001-04-06  Sascha Ballach  <sab@openoffice.org>  [848f8e374d83a4bb9b9edcc7370e9113492a0e40]

#79771#; add the new XMultiPropertySet to queryInterface and getTypes


2001-04-06  Daniel Rentz  <dr@openoffice.org>  [344a86df22c406a2f50d3578e46b5e98d6357320]

fixed a problem with table positioning in nested tables


2001-04-06  Sascha Ballach  <sab@openoffice.org>  [b941a203c2cf8d770616882a31cc452d47ec7673]

#79771#; implement the XMultiPropertySet


2001-04-06  Sascha Ballach  <sab@openoffice.org>  [eee339b49fe5a77b28fcc3e62f68d8f8f31f3cd2]

#81034#; get the string of the Progressbar from the resource file with the correct language


2001-04-06  Kurt Zenker  <kz@openoffice.org>  [d5f92aaf34a3fde580e6303179229de4be75452b]

Merge SRC627: 04/06/01 - 09:50:16


2001-04-06  Kurt Zenker  <kz@openoffice.org>  [a187c7968e48d9dc0fe71fdfe1cce980a7fd3286]

Merge SRC627: 06.04.01 - 09:40:45


2001-04-06  Kurt Zenker  <kz@openoffice.org>  [143477f9ebb89edd97a4c313934ad0a79e0cf886]

Merge SRC627: 06.04.01 - 09:39:33


2001-04-05  Kurt Zenker  <kz@openoffice.org>  [aadf1c6ade080b020e595e4cea6deaccbd45cfe7]

Merge SRC627: 05.04.01 - 21:23:28


2001-04-05  Kurt Zenker  <kz@openoffice.org>  [6f6ffebb616d89378589fb6dbf4e417cde5c541a]

Merge SRC627: 05.04.01 - 21:21:11


2001-04-05  Kurt Zenker  <kz@openoffice.org>  [f844dde83e65ed065abf9055f38f19633934940a]

Merge SRC627: 05.04.01 - 21:18:57


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [7b2e7452427fbc1ec3ac9134ecf6b03ee880f551]

#74911#; add the Property ApplyUserData


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [3404fabf7a846bb42bd4a7de35ca0ff227cefdbc]

#74911#; add ApplyUserData


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [3ff5a85fae523c2772aef9e9a51d089f5819dc19]

#85774#; recalculate the size of rows and columns after every table on xml import and no longer after the import


2001-04-05  Niklas Nebel  <nn@openoffice.org>  [2a5cdea968ff95752a6def8cb7ea22bbfdcc9360]

#85793# pLocalOptions no longer used in LayoutOptions


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [b95ea03adf7c7e82a40185c8c4c60c830c3b2683]

#85774#; make it possible to get the OutputFactor of the docshell from the model


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [fb2569c5b9535d58e712038e71ba53b7109a27ab]

#85774#; don't resize shapes when recalculating the row height and column width while importing xml and set the size self


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [9de296557d77b784af5d005fe183bf4c8c02c7e4]

#85774#; don't resize shapes when recalculating the row height and column width while importing xml


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [df40e151dc1758ce128fdb97a1106f16858c9a34]

#85774#; make it possible to get the OutputFactor of the docshell from the model


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [a2bd7eabc39ea9640069ca180bf7b63802634841]

#85774#; don't resize shapes when recalculating the row height and column width while importing xml


2001-04-05  Daniel Rentz  <dr@openoffice.org>  [9712c06eb9ceb2143a69ece20b03294590369b23]

new property for table:cell-range-source: table:refresh-delay


2001-04-05  Daniel Rentz  <dr@openoffice.org>  [8e8285307e58f85e54e7d5d9d04f791d47d89a24]

new attribute for table:cell-range-source: table:refresh-delay


2001-04-05  Daniel Rentz  <dr@openoffice.org>  [975ae252587116a838c789b6a87824c5f6924b71]

new filter type: calc_HTML_WebQuery


2001-04-05  Daniel Rentz  <dr@openoffice.org>  [2e75092f82d4ceb41d80f9f2398e01ab70dec5c7]

refresh delay for area links


2001-04-05  Daniel Rentz  <dr@openoffice.org>  [e09f3dfeb95f3aead465348d8e06d7122aaa4673]

new property for link areas: RefreshDelay


2001-04-05  Daniel Rentz  <dr@openoffice.org>  [a0cf387e0c9ef0b5a50146abe942bf64f7cb979b]

new property for link areas: RefreshDelay


2001-04-05  Sascha Ballach  <sab@openoffice.org>  [3ca7dde83cc0bbe4f950dbd97a5b9fa642e04d3f]

#81983#; change the order of loading to load the settings and in special the printer name before create the first OLE object


2001-04-04  Niklas Nebel  <nn@openoffice.org>  [dd7781a53e98325f730a4c58862173e6127fa3c4]

#85414# test xStatusIndicator for null


2001-04-04  Sascha Ballach  <sab@openoffice.org>  [79dd33d60a98ca4ded2021d6cfcabca8b81bbda5]

#79771#; little optimation in handling the propertymap


2001-04-04  Sascha Ballach  <sab@openoffice.org>  [16d7efdd12fdd4ca6044e9e5ad4743ed3ab00eb9]

#79771#; implement a better getPropertyStates


2001-04-03  Kurt Zenker  <kz@openoffice.org>  [59264493ac9ed35865a6c808448c813ffeacb1af]

Merge SRC627: 03.04.01 - 21:35:49


2001-04-03  Kurt Zenker  <kz@openoffice.org>  [99582cf4ed6e3ffbfede25063c5b3b40da8108d8]

Merge SRC627: 03.04.01 - 21:31:42


2001-04-03  Kurt Zenker  <kz@openoffice.org>  [d986f17fcf4854916a8ce8055b4734b0ef4786f2]

Merge SRC627: 03.04.01 - 21:29:45


2001-04-03  Kurt Zenker  <kz@openoffice.org>  [229c45bf6617a25b49eff93623747d20de99f9d0]

Merge SRC627: 03.04.01 - 21:28:18


2001-04-03  Kurt Zenker  <kz@openoffice.org>  [8cebad5e3c0b436371fc8036f69907e2b09fab58]

Merge SRC627: 03.04.01 - 22:28:18


2001-04-03  Kurt Zenker  <kz@openoffice.org>  [b7779fa2382489c9629ae6efa05c510844775209]

Merge SRC627: 03.04.01 - 21:26:30


2001-04-03  Kurt Zenker  <kz@openoffice.org>  [4d7e940149036a584fb0096c604d294e819ce8ad]

Merge SRC627: 03.04.01 - 21:26:07


2001-04-03  Kurt Zenker  <kz@openoffice.org>  [6f93d43956777af2b3a8575d508f4b42c1f4261c]

Merge SRC627: 03.04.01 - 21:25:56


2001-04-03  Niklas Nebel  <nn@openoffice.org>  [97ced1014d5c2dd80abc83380f3b7b7f45ab83fa]

#84195# Drag & Drop from input line


2001-04-03  Niklas Nebel  <nn@openoffice.org>  [aa7b88be4a301dc8a4980b67f5c7d17e057b967c]

#84195# Drag & Drop from navigator


2001-04-03  Sascha Ballach  <sab@openoffice.org>  [475690d610d9bc79502b50228dc658e101066fa4]

#85616#; add the new settings of database range sort


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [23f190eac3a33503bd225ee1895f6841f2a6c465]

Merge SRC627: 31.03.01 - 08:45:57 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [898516a651dcd6ca67c8728fbf08b856d4a9e88c]

Merge SRC627: 31.03.01 - 08:39:17 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [45e7a4568f3fe1416cc6791d252858846bbb8f6b]

Merge SRC627: 31.03.01 - 08:36:11 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [596253cf987cd0bada19799f13a026467b539ea1]

Merge SRC627: 31.03.01 - 08:34:42 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [981553b8a86ee51883e1a588eda1995dc95b0f13]

Merge SRC627: 31.03.01 - 08:33:15 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [52ea415747ae71544a04c06a00113e4010011a98]

Merge SRC627: 31.03.01 - 08:31:13 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [c73e9ed5978b5d4908f699923e3eb3918e0b4fd1]

Merge SRC627: 31.03.01 - 08:28:01 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [8e8e214a97c04405d6637baabe2840baa37bbb95]

Merge SRC627: 31.03.01 - 08:26:04 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [5ef0c89edf2b443081ec61d225e7c30fbfecf910]

Merge SRC627: 31.03.01 - 08:24:34 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [d663850cbfd2b46bab5d3d9dc12b0f3239403894]

Merge SRC627: 31.03.01 - 08:23:11 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [059418c4dcdc3dbaa832e23de5dd4dba75f04ed1]

Merge SRC627: 31.03.01 - 08:23:00 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [940ec68ca2581996e7236be7d13a411ab3020a1e]

Merge SRC627: 31.03.01 - 08:21:48 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [f00500f2fa75e6e6ca990ea050bff48ab0831149]

Merge SRC627: 31.03.01 - 08:20:56 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [468385a619cdfc192bf3ddc4284bc9c6ea0408ca]

Merge SRC627: 03/31/01 - 08:20:09 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [a3845d4ee6684bba69cb22dc3b62ac9bb5413126]

Merge SRC627: 31.03.01 - 08:19:32 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [3308248f8865549fa5e75529fa1ce29346d6a1e4]

Merge SRC627: 31.03.01 - 08:19:30 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [3991964b47d0a3fbbd1e37a267070bd1e2d52284]

Merge SRC627: 31.03.01 - 08:18:29 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [4bf0fc1c8f8c1989129bbf3b4ea2ee5885c2fecb]

Merge SRC627: 31.03.01 - 08:18:21 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [68bb6bc919a37ea848dbb96e5323ec4c4d9d8836]

Merge SRC627: 31.03.01 - 08:18:13 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [38680d9ca46e12f33b87534bea11137a102fa2a5]

Merge SRC627: 03/31/01 - 08:18:03 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [df2583d60091e1b87d3177fcf838474183655bd4]

Merge SRC627: 31.03.01 - 08:17:15 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [541624309dfd665d825be9b64c68e2c3cfc26ef9]

Merge SRC627: 31.03.01 - 08:17:12 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [190b03a74a2ffa47e1931d6974ea3550d083a6be]

Merge SRC627: 31.03.01 - 08:16:55 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [187096c345306192136922536d1cb4f0dfa8195c]

Merge SRC627: 03/31/01 - 08:16:41 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [db7954a404716aa08ba66af93c87e8daf39e7603]

Merge SRC627: 31.03.01 - 08:16:05 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [ed6b3beba0e72846707b638b1445a9a4f9c2d188]

Merge SRC627: 31.03.01 - 08:15:35 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [5c16a1caee3a7f1206f1e6a695505190a15ad5ff]

Merge SRC627: 31.03.01 - 08:15:38 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [62378688a2962a9e9d696eac1f460ceb3960cdee]

Merge SRC627: 31.03.01 - 08:14:30 (NoBranch)


2001-03-31  Kurt Zenker  <kz@openoffice.org>  [9e9e23f0a709db1c0171b86d7ee33e9eb3e2c512]

Merge SRC627: 31.03.01 - 08:14:09 (NoBranch)


2001-03-30  Niklas Nebel  <nn@openoffice.org>  [ac474c75e726c36b67ac421c643e5853e68df632]

#84195# more drag&drop changes


2001-03-30  Niklas Nebel  <nn@openoffice.org>  [90542d70944a6ea504fb6a0b7e1d0dcdb9b0727d]

language list box: sorted


2001-03-30  Sascha Ballach  <sab@openoffice.org>  [0c83dfabd6898eacd7070311701111b1a4a68cbd]

Export/Import of Draw Defaults added


2001-03-30  gt  <gt@openoffice.org>  [440a9a405f35ce398837ea71e5d57e86cc39829e]

#85456# ExcEscherOle::ReadPictFmla(): checking with assertion after work has done


2001-03-30  Sascha Ballach  <sab@openoffice.org>  [ea36900d284f6aacf1158587c5fc238bfed9b9c4]

#85021#; makes the progressbar work


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [52a16e5a5d01ec25fb90ea4946c404357f29ab20]

DecimalPlaces and TabStopDistance to the PropertySet added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [c1c4f2633c5beb99a51f9e9e5d6cebc3336b9712]

AutoCalculate and PrinterName to the PropertySet added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [4873950857603f3098d5ed140a88c81d9b36fb65]

export/import of DecimalPlaces added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [919e35b96e005442f79d6d34a8346d62f3390d1a]

TabStopDistance, AutoCalculate and PrinterName added


2001-03-29  Kurt Zenker  <kz@openoffice.org>  [3ce459c4d2cda898cb9959153ec193b5a9b09399]

cast to BOOL for StartSpeller


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [b90ee2a64ae7e8cf7b188b15bd7055c61a4d1d90]

add GirdColor to the PropertySet


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [cd3a3099983422e23b09bf4900090fa240e86aed]

use property names instead of xml names for change tracking view settings


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [bff6684f9fddfdc438749cb7141bf243e3f5b58e]

add the possibibility only to load and to save the styles in xml


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [81a7233144ef8dcaf99b8dfc0af2ac5246be9578]

use the possibibility only to load and to save the styles in xml


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [451cfba6c39185c44fa2cd4ec62bd42778990f94]

change from XML names to property names


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [00b4152a6fcf0bd1a326e91f267caf273e0d7c89]

change the names of raster from grid to raster


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [661c4ab6aff291f1c1555942602fae55d55f3235]

export/import document configuration added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [d4c4b2d9741b335d2e0dbd3693f25827ed102f2c]

confuno added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [d4076afce8a2e536c003a68a18207009327449d8]

Service document configuration added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [9bd891ad9bb9d2d5265e7ff0fd4744c5c6fa55ba]

XPropertySet of document configuration added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [005a67e15f50ea12ee97efe8abaea78fc40ba8fb]

PropertyNames of document configuration added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [bced75489c5c276b498043417e7905d6a67c4076]

conversion from Any To Int32 added


2001-03-29  Sascha Ballach  <sab@openoffice.org>  [38115a6281484d48aa023b841d6de00343ee7e5a]

conversion from Any To Int32 added


2001-03-28  Niklas Nebel  <nn@openoffice.org>  [dbf6fb07cd3dab4b2ffedc7ecdc453c78658f2ee]

#85403# merge/compare: remove app prefix from filter name


2001-03-28  Niklas Nebel  <nn@openoffice.org>  [513a289c31de6def6f29f1cef644d399344d7ce2]

#85421# don't switch SubShells in Deactivate


2001-03-28  Daniel Rentz  <dr@openoffice.org>  [1940281bf41307517300b7524fa6ef0231a86f5f]

ADDRESERVED(), record QSI


2001-03-28  Daniel Rentz  <dr@openoffice.org>  [66cd81365facf3504609fdc4354e477d659154c6]

#84906# problem with multiple blank cells


2001-03-28  Oliver Specht  <os@openoffice.org>  [6cc8bc96c38dcbde4ccffacfa19645aa0f34285d]

option dialog changes


2001-03-28  gt  <gt@openoffice.org>  [39f4ce168f839fad548f139ab19b4339a0da629e]

#84472# decrease of resource effort


2001-03-28  gt  <gt@openoffice.org>  [a9f717ca5f0dbbbd57c43f6e0b185a7e037e78d8]

more details for dv


2001-03-27  Niklas Nebel  <nn@openoffice.org>  [1780d4f4335659599134ffaf508275c4d10be70e]

LoadFrom: XML files


2001-03-27  Niklas Nebel  <nn@openoffice.org>  [a096cb25b8dbcdae3bd25b87a41448989e4963bd]

ImageMap property


2001-03-27  Niklas Nebel  <nn@openoffice.org>  [65b1a28a55387ce2e09c17aa0961e8e09d64ac94]

TransliterateText: edit cells


2001-03-27  Niklas Nebel  <nn@openoffice.org>  [cc7098c39879715cd96ddde4457dee78d9c7768a]

undo for transliteration


2001-03-26  Niklas Nebel  <nn@openoffice.org>  [d226d4135d9b7cb44af64f1afb9a7959e15f0842]

transliteration menu functions


2001-03-23  Niklas Nebel  <nn@openoffice.org>  [fb43283787b005ef866194631f54173688c92291]

new drag&drop


2001-03-23  Niklas Nebel  <nn@openoffice.org>  [b44e2a5841795660a8f86ab8371c6f0f44c649ce]

#85322# StopEditEngine: don't switch to table mode if stopping all editing


2001-03-23  Niklas Nebel  <nn@openoffice.org>  [0bfc72adab8bcbb9db65804ef068d4976a1f1579]

#79482# XTextContent implemented to get the anchor cell


2001-03-23  Joachim Lingner  <jl@openoffice.org>  [720b51ecf68068e25b62704bec3afebde46d86f9]

replaced: Float -> float


2001-03-23  Joachim Lingner  <jl@openoffice.org>  [25db570cec9a4bc2e3c2519ed72b33574e239125]

replaced: Enum->sal_Int32


2001-03-23  Niklas Nebel  <nn@openoffice.org>  [55cc6a93fbcc1b17f9bd06cc2ad4ff57ccc12eb3]

#78944# Width/Height properties ignore column/row visibility


2001-03-23  Niklas Nebel  <nn@openoffice.org>  [e6e9a877c0aaf5b24ee6d4c79de9fd733e73d582]

#78944# SetWidthOrHeight: handle SC_SIZE_ORIGINAL


2001-03-23  Niklas Nebel  <nn@openoffice.org>  [348369d6ba6ec8fe4379899a7b9a22eb91ee9c64]

#78944# GetOriginalHeight


2001-03-23  Niklas Nebel  <nn@openoffice.org>  [a6b1c6d6c70d7ceeadf4577318b359c2c4545150]

#78944# new ScSizeMode enum value SC_SIZE_ORIGINAL


2001-03-22  Niklas Nebel  <nn@openoffice.org>  [8fcba26c827b51a8d065d7730e3e217658512dcd]

don't call old EditEngine spelling methods with language as parameter


2001-03-22  Sascha Ballach  <sab@openoffice.org>  [846c2132bd2a836009bf484ff0f187d45fd25f5b]

export and import of view settings added


2001-03-22  Sascha Ballach  <sab@openoffice.org>  [d04ec23a81ac6de1e0e32478485daa4689643904]

export and import of view settings in xml added


2001-03-22  Sascha Ballach  <sab@openoffice.org>  [6ff22bf113a28c26c8d69d94a5735e1a2d42b801]

export and import component of the settings stream in xml files added


2001-03-22  Daniel Rentz  <dr@openoffice.org>  [3449237c9e030255078f5522c0868f5c0c23f23f]

#i583# import of deleted autofilter


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [ff43c1d9d12a4fd4324d196afbef2bfc86219fb6]

Merge SRC626: 21.03.01 - 22:25:27 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [c7874d4f3c3cafe10e1500e9d97c37d0e6898709]

Merge SRC626: 21.03.01 - 22:22:58 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [c0f9260aecb1fa544824aaa1e5d25633207b9e70]

Merge SRC626: 21.03.01 - 22:18:33 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [203c8731314f985249b5eb219ee7584a11d1a8b5]

Merge SRC626: 21.03.01 - 22:13:46 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [a9c62777447bf838269eeb7edc5dd819d7ea2712]

Merge SRC626: 21.03.01 - 22:09:24 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [7301a77a01d6d185d260c9e39dade10d293c92db]

Merge SRC626: 21.03.01 - 22:05:46 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [4727ebbb546dd062c02a37b3afa5aa637b733b50]

Merge SRC626: 21.03.01 - 22:02:38 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [20801b969bcfee1e6775c4ece286ed29a0440796]

Merge SRC626: 21.03.01 - 21:56:02 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [3a44598bb31584c3d7038ae275ba77874ced6eb4]

Merge SRC626: 21.03.01 - 21:53:33 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [d5b21a4136aa203a48d8d0e51d61a627bd5901b5]

Merge SRC626: 21.03.01 - 21:50:51 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [e9773ea1f8b1580937905337046b03bcb002fdca]

Merge SRC626: 21.03.01 - 21:42:19 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [104c7640ce8aa6b226480d2c3870dda86477704d]

Merge SRC626: 21.03.01 - 21:35:40 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [65d74b457fad7f6966954780f99fcf20d09e6ad7]

Merge SRC626: 21.03.01 - 21:35:54 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [5500e8abefe752bc6e772ead688b7d5623bb178a]

Merge SRC626: 21.03.01 - 21:35:42 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [c1f5ea217fd3d51504bf8c6f3db85424a9151b65]

Merge SRC626: 21.03.01 - 21:35:16 (NoBranch)


2001-03-21  Oliver Bolte  <obo@openoffice.org>  [36946e4b20087f84be2e2b5104eaf5b93e401d07]

Merge SRC626: 21.03.01 - 21:34:27 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [a38b14abc45a5f0e296906866524f7a20612dfdf]

Merge SRC626: 21.03.01 - 21:34:56 (NoBranch)


2001-03-21  Rüdiger Timm  <rt@openoffice.org>  [b301dc06eb340692039fc3fc6d43417c082eeef4]

Merge SRC626: 21.03.01 - 21:33:33 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [5ba6fa4e4267c0dae8a9fd08420414eb070abeda]

Merge SRC626: 21.03.01 - 21:32:38 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [80f72e00070de02499edb9c193654a64532f56ce]

Merge SRC626: 21.03.01 - 21:32:27 (NoBranch)


2001-03-21  Oliver Bolte  <obo@openoffice.org>  [9950e0280e99b7b729f31587dbbc02714178d5c4]

Merge SRC626: 21.03.01 - 21:31:39 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [6c61fb5e65bc52057d7b71c9bba4c0a624307080]

Merge SRC626: 21.03.01 - 21:32:20 (NoBranch)


2001-03-21  Kurt Zenker  <kz@openoffice.org>  [1204dcb48141f9d7b9c936d7ab9119f0124dd6be]

Merge SRC626: 21.03.01 - 21:31:06 (NoBranch)


2001-03-21  Eike Rathke  <er@openoffice.org>  [10cfb9bce6e0b9e4aaaa1c1a8e8c303f91524d0f]

#85211# ScExternal: hmmpf.. better to check the encoded string ...


2001-03-21  Eike Rathke  <er@openoffice.org>  [3aa9d735893dbca63585cded0243a96d04455600]

#85211# ScExternal: buffer overflow on long strings for old AddIn parameter


2001-03-20  Niklas Nebel  <nn@openoffice.org>  [21ddf0e226f15052172da4f739fb13c826dabbd2]

ResizeAllowed: disable for read-only document


2001-03-20  Niklas Nebel  <nn@openoffice.org>  [f02e274be8feb4b6e4387abfa85d89bc09d5ed3a]

#83010# UpdateInputContext (enable cjk input before EditEngine is active)


2001-03-20  Sascha Ballach  <sab@openoffice.org>  [295d8d09a75b3aaa7fce316ee59996b8efaee0e2]

#85178#, now I remember the shape position by myself


2001-03-20  Frank Schönheit  <fs@openoffice.org>  [75a0b847c41a230737e5c9d5f73e051ef4afaa6f]

#83970# use createOfficeFormsContext for importing the office:forms element


2001-03-20  Frank Schönheit  <fs@openoffice.org>  [2d188e7fb49e033fd72f2cdc52e110497b256d37]

#83970# use an OOfficeFormsExport when exporting the office:forms element


2001-03-20  Kurt Zenker  <kz@openoffice.org>  [8534671493fe4fcafb7510d9bf0ff760e8c1b1af]

chg. for new idlc-compiler


2001-03-20  Sascha Ballach  <sab@openoffice.org>  [6d11153da55967b7be6155e56cfe4d86f31d1942]

#81983#; update all dirty charts while import XML


2001-03-20  Björn Milcke  <bm@openoffice.org>  [0851de2d57c3680bf0c91d2655f384965d7fb55a]

#85005# get class id from storage rather than from factory


2001-03-19  Niklas Nebel  <nn@openoffice.org>  [dd936b1add8098467933e75a5b15b738df270b7e]

document properties AutomaticControlFocus, ApplyFormDesignMode


2001-03-19  Sascha Ballach  <sab@openoffice.org>  [f5ea9157e11abaf1fbefa52299456075e5d3681e]

fix a little bug


2001-03-19  Sascha Ballach  <sab@openoffice.org>  [b493d0167b3e5517261abccfba1f48ea3d36419a]

call the base method of _exportstyles


2001-03-19  Daniel Rentz  <dr@openoffice.org>  [635491dd0f5403238a8247b5a702207c0429fdd9]

#84906# border lines of merged cells


2001-03-19  Sascha Ballach  <sab@openoffice.org>  [92dde71cc3e49789597682102517fe22f98d6870]

only export chart styles if all content is to export in one steam; fix bug that the shape attributes are not exported


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [c1aefac958a329ae975ed430dfc983ae33b46147]

createUnoPage: use own subclass of page uno object


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [cdb032863e4f9f773f1b014d0e96246dfcf66adb]

shapeuno, pageuno


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [818c43ead0c91d1b2a69a5a3eae3b626ef9efe21]

object which aggregates svx shape objects


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [9dce2615baa0d35157513fed7fc715ad30662aa0]

own subclass of page object


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [16b1621f598a561ed3fd0decaf686f1b60df3712]

use sal integer types


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [6796e305801391ca1792d7c623dcedef85c98d56]

changes for udk212


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [bcce071821d56ff93d44152569406525c33473d7]

extract.hxx is now in comphelper


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [133b3f3420b362aa0839ab6d4c89022b7915df59]

changes for udk212


2001-03-16  Sascha Ballach  <sab@openoffice.org>  [9a9b7958a00515da32f9931d982f3cefddecc66f]

create nPos with 0 as default


2001-03-16  Sascha Ballach  <sab@openoffice.org>  [a030589b6ad3f040beb703512323f7c3ecfc3365]

use the right constructor in the ChangeActionContent constructor


2001-03-16  Niklas Nebel  <nn@openoffice.org>  [bf81041a9885d6be785b147acc64476c47196996]

#85053# refresh of optimal height after xml load needs print output factor


2001-03-15  Eike Rathke  <er@openoffice.org>  [bc9ee378325c234cec262bc93e3f6b8570905116]

#85000# ScBase: memset char on Unicode is no good ... also removed arbitrary result string length limit


2001-03-15  Niklas Nebel  <nn@openoffice.org>  [4353af61de4be26cdc8840feea3c7b4a47686395]

SortDescriptor: CollatorLocale / CollatorAlgorithm


2001-03-15  Niklas Nebel  <nn@openoffice.org>  [8d5d43f2b2a398da79b85595babc08baa1db0636]

CollatorLocale / CollatorAlgorithm


2001-03-15  Daniel Rentz  <dr@openoffice.org>  [0ac733761f30d6721c3b7f5b8d5795cec6c8543a]

#84945# import of background graphics, use correct padding byte count


2001-03-15  Daniel Rentz  <dr@openoffice.org>  [cf08e2776b0366dd69e5ff00e2f0f93f20cee35f]

#84884# redesigned import of external tabs


2001-03-15  Sascha Ballach  <sab@openoffice.org>  [c42c09b7f17a9b9221914f849d7f03703ed146db]

#84953#, don't test bStylesRetval and bMetaRetval, because it could be an older file which not contain such streams


2001-03-14  Eike Rathke  <er@openoffice.org>  [d2608f44076ce745d2a649e0c53c68cd9339f078]

removed unnecessary include tools/intn.hxx


2001-03-14  Eike Rathke  <er@openoffice.org>  [f25634554a3f218b181de7ba4cd75bd939e86693]

use CollatorWrapper instead of International


2001-03-14  Eike Rathke  <er@openoffice.org>  [d61b7c1083e397c56cbff1b5f4f7c3b949dc693e]

use CollatorWrapper instead of International


2001-03-14  Eike Rathke  <er@openoffice.org>  [f6d605860abbadb6bbd73ba3c984c88fcd145273]

use CollatorWrapper instead of International


2001-03-14  Eike Rathke  <er@openoffice.org>  [5be5bc209ab7b02abab55cd8530c70a927804b2b]

new: CollatorWrapper pSortCollator


2001-03-14  Eike Rathke  <er@openoffice.org>  [38c7b00e4453887aa29f1b2d7c090e4d5aaca810]

add: CollatorWrapper


2001-03-14  Eike Rathke  <er@openoffice.org>  [0500565102a7588fc8de1805ab79174a83496cf3]

del: unnecessary include tools/intn.hxx


2001-03-14  gt  <gt@openoffice.org>  [5827d49a91d1f3c6fb68023cfd5d88d7686d3118]

misc


2001-03-14  Eike Rathke  <er@openoffice.org>  [85381535fd996c945a5634080ca6ed1d4e7cd51c]

del: old segfunc stuff


2001-03-14  Eike Rathke  <er@openoffice.org>  [e6c76835b39699fcab4425fedf0a4c7c2152e449]

use LocaleDataWrapper instead of International


2001-03-14  Eike Rathke  <er@openoffice.org>  [3ab3ec3607751a23478320da51eebbab34077b58]

use LocaleDataWrapper and CollatorWrapper instead of International


2001-03-14  Eike Rathke  <er@openoffice.org>  [97c8aa9ab4d3af9f3cc3986f6fdd59968f316528]

del: International


2001-03-14  Eike Rathke  <er@openoffice.org>  [82bd92c5eff57d2baf341e1aca69a0b1a41dc46f]

use CalendarWrapper and CollatorWrapper instead of International


2001-03-14  Eike Rathke  <er@openoffice.org>  [c183573091417f03147656673966bac7b55840b8]

use LocaleData instead of International


2001-03-14  gt  <gt@openoffice.org>  [56103382d6eb43487e1338eac0984754c62c4dc3]

#84960# recognition of external sheets which are not external for extern names


2001-03-13  Niklas Nebel  <nn@openoffice.org>  [bcc6ccd7e4a32bd7d270e5b943930fe1cdb6882c]

better handling of LANGUAGE_SYSTEM


2001-03-13  Daniel Rentz  <dr@openoffice.org>  [d7b8e726bc9cd450a1307b7c6e822de9cbaa2c85]

new calc function ISPMT


2001-03-13  Daniel Rentz  <dr@openoffice.org>  [be724d6e3513329c6e1c867b005b79318f2422e4]

new calc function ISPMT


2001-03-13  Niklas Nebel  <nn@openoffice.org>  [a33cef36cc973e48c99dcd6396b803b798742312]

#84930# don't access pointer to vector element after push_back


2001-03-13  Daniel Rentz  <dr@openoffice.org>  [ec38db24e132df84a91d2eb3a5745a38f2c151ca]

#84900# wrong col range in ExcRow


2001-03-13  Niklas Nebel  <nn@openoffice.org>  [c5ca6d8889f02ad67c213d1b63bb101ab801bd3a]

language and algorithm in sort dialog


2001-03-13  Niklas Nebel  <nn@openoffice.org>  [a7f16f73f203395ae8b5acbc97de24638acd9fe7]

Locale/Algorithm for sorting


2001-03-12  Eike Rathke  <er@openoffice.org>  [dd0071b799e46dbe0c0cce709b513ce3660b5f82]

memmove ScSortParam is no good anymore


2001-03-12  Eike Rathke  <er@openoffice.org>  [58056d9e1093edd3ba02384f177b47701514715f]

moved ScSortParam from global to sortparam.[ch]xx


2001-03-12  Niklas Nebel  <nn@openoffice.org>  [8ec18da7cec7855ee66cce6d61253cbd32ca601e]

UpdateOleZoom: test for empty VisArea


2001-03-12  Niklas Nebel  <nn@openoffice.org>  [0395363b068209f4e6cb3d5262d81269234f78ee]

changed component descriptions to new dtd


2001-03-12  Niklas Nebel  <nn@openoffice.org>  [15797cf9799055e994b5727ed16217c82f456fd5]

SetFrame: use ApplyFrameAreaTab without MarkData


2001-03-12  Niklas Nebel  <nn@openoffice.org>  [fd807ac8b5a5675053c53a44014c830443fd7c5d]

ApplyFrameAreaTab


2001-03-12  Niklas Nebel  <nn@openoffice.org>  [2a36c5ca1b0033cd5d2a21df31dcb870b578ea7e]

ApplyFrame: create new SvxBoxItem on stack


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [2723d58a9734be2964d718674bd54f02781891ff]

Merge SRC624: 03/09/01 - 22:18:12 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [10aca280219464b2881abd611a1d1bb2a37336c2]

Merge SRC624: 03/09/01 - 22:13:08 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [9e8a7bafae723e489bc7d40c6f7a2b43392891c4]

Merge SRC624: 03/09/01 - 22:07:32 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [495d3a075366aba5546103fc024ebda2afe0a258]

Merge SRC624: 03/09/01 - 22:02:10 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [b65a03f50dbedbc0286dcf6714d00635206444ab]

Merge SRC624: 03/09/01 - 22:00:46 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [72d30d8cea907e4e4c180eab714e056375f0607b]

Merge SRC624: 03/09/01 - 21:56:57 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [c89f1dd5363b5d44a2b93e068be862f6c30c4c4d]

Merge SRC624: 03/09/01 - 21:55:29 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [c25050f62e45d0dc940e8650dbdde41f6fcb8adc]

Merge SRC624: 09.03.01 - 21:54:13 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [f2feff493b08384f65ecef6ff571d388696286e2]

Merge SRC624: 03/09/01 - 21:53:26 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [6c17a0020f32309db58496a470b0a02b884170f1]

Merge SRC624: 09.03.01 - 21:53:36 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [256d664c32cb172b6bda028475fb698a188d2ffe]

Merge SRC624: 09.03.01 - 21:52:47 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [163ea01e90fdb887cd2d88951462a806269ff48d]

Merge SRC624: 09.03.01 - 21:52:06 (NoBranch)


2001-03-09  Oliver Bolte  <obo@openoffice.org>  [f123d6400992f44e99e17953bcd399e9adbb9dcb]

Merge SRC624: 09.03.01 - 21:51:33 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [8a64737f0473219832cf10d6801bfe9a1e331c0c]

Merge SRC624: 09.03.01 - 21:51:11 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [55ddad1bd916657f00865ec18c0ed1911f617e54]

Merge SRC624: 09.03.01 - 21:50:30 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [ed6193170dcc5521ebbac55af3f1ff63de8a2073]

Merge SRC624: 03/09/01 - 21:50:18 (NoBranch)


2001-03-09  Oliver Bolte  <obo@openoffice.org>  [886cd2d9db33337a2de74719d701ca0e8886ce61]

Merge SRC624: 09.03.01 - 21:50:11 (NoBranch)


2001-03-09  avy  <avy@openoffice.org>  [7566ca9e900eb6f72e3467b139c5d4c0e1443681]

Merge SRC624: 03/09/01 - 21:49:59 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [9b16408bb27806c47683a2e2764eb5f983ee045b]

Merge SRC624: 09.03.01 - 21:49:59 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [8e8940274cb39ef7f0b4dd88d4134df568564885]

Merge SRC624: 09.03.01 - 21:48:33 (NoBranch)


2001-03-09  Kurt Zenker  <kz@openoffice.org>  [246f98125c80b74fc76d5ecb782aabbe2805336c]

Merge SRC624: 09.03.01 - 21:48:34 (NoBranch)


2001-03-09  Niklas Nebel  <nn@openoffice.org>  [c8f2f7a041fccdb060d1cda36f560011b6f3f469]

handling of text direction slots changed


2001-03-09  Daniel Rentz  <dr@openoffice.org>  [5fb1bb94fe3b9299913c120b1aaaa604ed0a6a6f]

#84687# text properties of axis captions


2001-03-09  Sascha Ballach  <sab@openoffice.org>  [0f557944d86e4914765bc7ce14824045c287789f]

#84326# implement the must change of cl to fix the bug


2001-03-08  jp  <jp@openoffice.org>  [8f5264e0f993506870c321b798763985cd74c79e]

change: old data transfer API to the new


2001-03-08  Niklas Nebel  <nn@openoffice.org>  [fcb6f2863b3b7369463bf3a5ab1b1c6e2b45bacd]

#84669# don't stop draw sub shells when switching draw tools


2001-03-08  Eike Rathke  <er@openoffice.org>  [74129d4fbb134710d9cecd5ff289cfd3df007095]

MSC is dumb is dumb is dumb dumb dumb


2001-03-08  Niklas Nebel  <nn@openoffice.org>  [c350e063392fdeeb3b5d9b731d5e57a7a13df636]

DataPilotUpdate: check for error when getting new output range


2001-03-08  Niklas Nebel  <nn@openoffice.org>  [280ae9d090a09e5a0f567f3987510b7beb03caf5]

GetNewOutputRange: check for error from output object


2001-03-08  Niklas Nebel  <nn@openoffice.org>  [e28c109b70f5b10c7408f2711de962c1ccf29380]

check range overflow and errors from source


2001-03-08  Niklas Nebel  <nn@openoffice.org>  [9bae167ead85dd07a743d81d8e8c350aef84b7db]

check minimum number of visible column/row members before allocating


2001-03-08  Daniel Rentz  <dr@openoffice.org>  [e3d72dbd24c0ba34ea0337c050bfddcb734486f3]

new calc function CELL


2001-03-07  Sascha Ballach  <sab@openoffice.org>  [29636812a1a6aef7700e3e0e423da30ff900d7d3]

export and import linked table if no table name is given


2001-03-07  Niklas Nebel  <nn@openoffice.org>  [312e7adc44e9d84784c1c6fa062367d1f94b4f52]

LateInit (don't allocate all result members in advance)


2001-03-07  Eike Rathke  <er@openoffice.org>  [3001c3979fc6ece3cff774498acb54d3262c070b]

get text encoding from HTML filter settings


2001-03-07  Niklas Nebel  <nn@openoffice.org>  [b9582693a3978f9b5de635d30539ebf88451593f]

remove application prefix from filter name when inserting link


2001-03-06  Sascha Ballach  <sab@openoffice.org>  [949c7f84bb366218612735fc664d2eafb085ceee]

UpdateDirtyCharts after import the XML document


2001-03-06  Sascha Ballach  <sab@openoffice.org>  [ea4777d19de93c6cee24c54aa0b63101b7862c06]

set the chart only modified if not in XML import


2001-03-06  Sascha Ballach  <sab@openoffice.org>  [037c3c4e41cd957b1dd0aabc1e7adce739d7f45e]

fix a little dmake problem in linux


2001-03-06  Niklas Nebel  <nn@openoffice.org>  [a310517f1dd13cbee8aab5cf97ca3253269b02df]

#84692# more space for strings


2001-03-06  Eike Rathke  <er@openoffice.org>  [97b1e3b8e8952f3174854eb4ebf8095bf07a9f02]

Unfortunately a typedef is just a dumb alias and not a real type ... If the compiler doesn't get that right we'll have to help things along.


2001-03-06  Sascha Ballach  <sab@openoffice.org>  [445bc420cd4fe09cfee4633a58bae361a176678c]

fix a little dmake problem in linux


2001-03-06  Sascha Ballach  <sab@openoffice.org>  [0d0536ed3e9969fcee8bc5777f1d7925921ba7d3]

fix a little dmake problem in linux


2001-03-06  Niklas Nebel  <nn@openoffice.org>  [28341e4f8962e6f306e980ac8bb4df66b9d276f2]

#84667# UpdateUserViewOptions: SetSnapGridWidth with grid fractions


2001-03-06  Rüdiger Timm  <rt@openoffice.org>  [4d660f5f3d2ef813eb767325eb43bf6c234b062b]

Merge SWT614: 06.03.01 - 10:02:46


2001-03-06  Rüdiger Timm  <rt@openoffice.org>  [7daf5b529c739b1c586faeea2de7fbe8a291028e]

Merge SWT614: 06.03.01 - 10:01:06


2001-03-06  Kurt Zenker  <kz@openoffice.org>  [f5e1cb41b2c5b5b6f26f6be4ee6ddf3934a7406c]

Merge SWT614: 06.03.01 - 09:58:04


2001-03-06  Sascha Ballach  <sab@openoffice.org>  [12211f438d37392e334d8331c881fec25fa244fe]

collect the auto styles of shapes in the _exportautostyles section


2001-03-05  Niklas Nebel  <nn@openoffice.org>  [2b96403b794deb3e53e9c2bc4d7bdfc1b71f547f]

#72607# LinkEmptyTab: get filter name from ScDocumentLoader


2001-03-05  Daniel Rentz  <dr@openoffice.org>  [37ebaaf32716f2ff0636b33f1d3991caa7f16c28]

new calc function MIRR


2001-03-05  Daniel Rentz  <dr@openoffice.org>  [4b4912d8efec6fc8cd3b069ee69adbb606bc367b]

new calc function MIRR


2001-03-05  Niklas Nebel  <nn@openoffice.org>  [9f206f58a7e1568cc9f4753acd70f187df34db07]

access to drawing layer pool defaults


2001-03-05  Sascha Ballach  <sab@openoffice.org>  [31fd6a635922851f2f01a85d0102916e553c800d]

import and export of fontdecls in styles added


2001-03-04  Christian Lippka  <cl@openoffice.org>  [0b7f90541d041f8ba26f56c9c5f26e7ddd0002c2]

added root elements for content and style export


2001-03-02  Patrick Luby  <pluby@openoffice.org>  [806418d37aed81b8663468c7165d801b1a9412b1]

Deliver both *staticdatamembers*.hxx and *staticdatamembers*.h


2001-03-02  Niklas Nebel  <nn@openoffice.org>  [7a41d3f29f3c17e1528454c38221773f3ba94220]

note caption object always has horizontal text


2001-03-02  Niklas Nebel  <nn@openoffice.org>  [82201a9a66662c5db96364af039b8dc94ec40bba]

handle vertical draw text objects


2001-03-02  Niklas Nebel  <nn@openoffice.org>  [41377818504a2b30d580fabb2109d9aa1ab6663f]

handle text direction slots


2001-03-02  Niklas Nebel  <nn@openoffice.org>  [bd094fde7e4f20bd7593f35a79af1bc3e5b31c59]

text direction slots


2001-03-02  Niklas Nebel  <nn@openoffice.org>  [5ff88b7cca8e825531ad7a751ce9586dc8a640a3]

handle slots for vertical draw text objects


2001-03-02  Niklas Nebel  <nn@openoffice.org>  [eb3474a9ee3125419a0c8e871ae1e1134740540a]

InvalidateDrawTextAttribs: slots for vertical draw text objects


2001-03-02  Niklas Nebel  <nn@openoffice.org>  [c6c73261c5558ccf375c705520c9694d16000a08]

slots for vertical draw text objects


2001-03-02  Kurt Zenker  <kz@openoffice.org>  [74a053156e65e5d8404a14becbeb82ebc4bcc6e1]

Merge SWT614: 02.03.01 - 21:29:23


2001-03-02  Kurt Zenker  <kz@openoffice.org>  [b01f030eab6622e15c103f1a96b4eb298d3fce12]

Merge SWT614: 02.03.01 - 21:24:17


2001-03-02  Sascha Ballach  <sab@openoffice.org>  [ad41bc5af6e5ea0ddaae925f70e2121e36e0d337]

split the export and the import in seperate streams


2001-03-02  Oliver Specht  <os@openoffice.org>  [ad386491b0ecd18afe22ac471ba719a2a0bf0c89]

OfaMiscCfg -> SfxMiscCfg


2001-03-02  Niklas Nebel  <nn@openoffice.org>  [f389693b1a71008f8fd49986e0c33e37246d2302]

drawing layer tables are kept with the model object


2001-03-02  Patrick Luby  <pluby@openoffice.org>  [5b785f6da5e82f6e26a18c245e63c1c7eaf9b8e7]

Removed compiling of staticmb*.cxx files for Mac OS X now that we have automated this process


2001-03-02  Patrick Luby  <pluby@openoffice.org>  [1f6b2abe832a52177441d45f949f1171fed4898b]

Correct typo in dos: line added in last revision


2001-03-02  Patrick Luby  <pluby@openoffice.org>  [7084139ddc74acd81f5649798f2a5abc9b4ff3fe]

Added support for unique, non-colliding lib*static*.dylib files for each project for Mac OS X


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [4a23be5faa45fe5a87ccfc51763423d5096fbcec]

Merge SWT614: 01.03.01 - 22:24:17


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [00dac8b7e69245122d2ba10cd49c1e2af6bacef4]

Merge SWT614: 01.03.01 - 22:13:37


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [762dd27029efae482223b4d0900fad2a3404e711]

Merge SWT614: 01.03.01 - 22:11:55


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [f6df21c1e066c21a6d506aa91c84e56e653ba9fc]

Merge SWT614: 01.03.01 - 22:07:14


2001-03-01  Eike Rathke  <er@openoffice.org>  [d38c1295e65ed6e1b02cb57fdddd4cce789ef1d1]

#84460# Factor: set errParameterExpected for subsequent ocSep; strip subsequent ocSep in AutoCorrection


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [a277f1ac20fb7afaa83b7782d9332bc9fc956f3e]

Merge SWT614: 01.03.01 - 22:05:27


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [176bb4ff9bd791407ae8838bccd17f69e27e3a60]

Merge SWT614: 01.03.01 - 22:02:02


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [b1f3b28c9b590c8c3e8eb28e8a3aaca9e47a830e]

Merge SWT614: 01.03.01 - 21:57:31


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [b86964ef0996def2d0a000f2a173b01e408b5693]

Merge SWT614: 01.03.01 - 21:56:37


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [9b51cd82aee0ce446a704df2619079cefb18baa5]

Merge SWT614: 01.03.01 - 21:56:06


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [f818e3e045cb597a6b58124969b29f837b1085f1]

Merge SWT614: 01.03.01 - 21:54:51


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [5f3436451f661a1629be45b20dabf92474ed29c6]

Merge SWT614: 01.03.01 - 21:52:17


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [a8301c2c2de40ce18bd24d0b85471973b00a0716]

Merge SWT614: 01.03.01 - 21:48:18


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [387658498efef16e5c133ae0346f7de8a6ebf288]

Merge SWT614: 01.03.01 - 21:47:53


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [6a32a19812b7486bf76cd010c19b70ffe4d7847a]

Merge SWT614: 01.03.01 - 21:46:59


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [c3ebb58bfe421ef2322c361bd47113ad81428730]

Merge SWT614: 01.03.01 - 21:46:29


2001-03-01  Kurt Zenker  <kz@openoffice.org>  [f2a8e8cd52ef7ce661fc76e4182b69895a1872f7]

Merge SWT614: 01.03.01 - 21:45:41


2001-03-01  Eike Rathke  <er@openoffice.org>  [ccb83a4cbad1c03f5638ee51bf94322dee745589]

#84460# Factor: set errParameterExpected for ocMissing (Xcl import)


2001-03-01  Eike Rathke  <er@openoffice.org>  [3638be2dd934b7610e115611de5948e267a5d7e2]

Factor: SetByte(1) as parameter count for functions with exactly one parameter (just in case the interpreter wants it)


2001-03-01  Daniel Rentz  <dr@openoffice.org>  [e423b9171982340cdae53f2687bd7c5584767ab5]

new calc function ARABIC


2001-03-01  Daniel Rentz  <dr@openoffice.org>  [b6cd5c38c0c277375b2d3254931981ec26c200a5]

removed unnecessary friend declaration


2001-03-01  Sascha Ballach  <sab@openoffice.org>  [46ae94d56c100c65392335fb10cefab35ace16b9]

null-year to calculation-settings added


2001-03-01  Niklas Nebel  <nn@openoffice.org>  [3c6521b9328d43d5b505d0b834a326a30c5860aa]

button distance in app font units


2001-03-01  Niklas Nebel  <nn@openoffice.org>  [242d62b45910eba725e576da8ce1e3f2ab530cbb]

edit button is right of background button instead of below it


2001-03-01  Eike Rathke  <er@openoffice.org>  [2fbd21f494738ed23d6702e3fd059413f0bb3082]

#60699# never store 0 dimension matrix in old file format, old versions can't handle it. Also, never live without a pMat, create a 1 dimension


2001-03-01  Sascha Ballach  <sab@openoffice.org>  [47568963dfbf40acdf6e06e8bd7c3a5dabc45e1b]

remove warning


2001-03-01  Sascha Ballach  <sab@openoffice.org>  [adf4a7ef07aae186f2e5bbc693711ea6ea2db3db]

remove warnings


2001-03-01  Sascha Ballach  <sab@openoffice.org>  [ac714fbb62685090df76c6156caae1a0a6d93dc2]

add class forward declarations


2001-03-01  Sascha Ballach  <sab@openoffice.org>  [3817f78ac84b5baec99b4e6fec7bdff67a266f4a]

use in the finish methods the new method FindEntryIndex and remove the dependencies in the Maps


2001-02-28  Patrick Luby  <pluby@openoffice.org>  [3b5f145ab580f207ead0c517d2b6a434c8e0d436]

Update for Mac OS X static data member automation


2001-02-28  Eike Rathke  <er@openoffice.org>  [05bf1b60d0e00e976d91ac6098345adb9c753c2f]

#60699# Don't store matrix with more than USHORT max elements


2001-02-28  Eike Rathke  <er@openoffice.org>  [a0d95fc13c720bb24fdceae69ffd6377a1126bc1]

#84359# UpdateChartListenerCollection: it's more complicated, OLE, not OLE, SO6, not SO6, ...


2001-02-28  Niklas Nebel  <nn@openoffice.org>  [5a05f84a41949b5d2bd83fc5fae06ab11f411126]

#84451# addNewByName: error if any ole object with that name exists in the document


2001-02-28  Sascha Ballach  <sab@openoffice.org>  [e3ec64ece54efc2395fe70747590513343b11eee]

import meta with a own component; put shared calls of methos in one method


2001-02-28  Daniel Rentz  <dr@openoffice.org>  [aa101e599c0006f69c7e7e5a1eb10a648ac9c872]

new calc function ROMAN


2001-02-28  Niklas Nebel  <nn@openoffice.org>  [80c94b5d47a27aba6c112e24add58b2c3826dd16]

#84412# optimal zoom: handle frozen panes correctly


2001-02-28  Eike Rathke  <er@openoffice.org>  [daa5e5917162901723a4b27b3fa7fd182a4c76c6]

#60699# ScMatrix not limited to 16384 elements anymore, new arbitrary limit of 512k elements


2001-02-28  Eike Rathke  <er@openoffice.org>  [52533866fe37a5fbfb54270dc728e16a4ba352a0]

for PRODUCT version save memory: typedef BYTE StackVar


2001-02-28  Eike Rathke  <er@openoffice.org>  [fc5ff70f05d1af9efe323fc2a3a14106c5799809]

for PRODUCT version save memory: typedef USHORT OpCode


2001-02-28  Sascha Ballach  <sab@openoffice.org>  [8002d335ff3c3c7a2ec81fdecbe1381809cc1cbd]

all member bools take now only one bit


2001-02-28  Sascha Ballach  <sab@openoffice.org>  [579e4d1b94f7ce3474c3038a70a3ec4517edb678]

import of default styles added


2001-02-28  Daniel Rentz  <dr@openoffice.org>  [507079ef3338b8950bcc87fd203daf56bd2dde15]

misc. fixes


2001-02-27  Niklas Nebel  <nn@openoffice.org>  [49fbb4dc822d3f0dc179764cabe5bde99129de66]

getText for cell: return this


2001-02-27  Niklas Nebel  <nn@openoffice.org>  [b0a5f785fbf15f1b75ad538823a7e4b52088f7e8]

getAnchor: return own text


2001-02-27  Daniel Rentz  <dr@openoffice.org>  [50be74e4fbd7dcd118be6429936f479ce10fcef8]

wrong friend decl.


2001-02-27  Sascha Ballach  <sab@openoffice.org>  [c33ee456c0251287c61382887ba11dfe7b3a28df]

set the meta stream to not compress and the content stream to the MediaType text/xml (this let the content stream compress)


2001-02-27  Sascha Ballach  <sab@openoffice.org>  [fa683294adfae900293e9fe70186d2a28877f514]

add default font to the font-decls


2001-02-27  Sascha Ballach  <sab@openoffice.org>  [e958067c67ccc283fcd5cad0a909104e38dcb7b2]

add export of default style


2001-02-27  Daniel Rentz  <dr@openoffice.org>  [251d248f39c8e50a64830492cd39a9de673b5dd9]

#84374# border lines of merged cells


2001-02-27  Armin Weiss  <aw@openoffice.org>  [da6e1fbdb239c43e6b43adf44e055d34781940fd]

Changed usage of SvXMLUnitConverter::convertNumber(...) to use SvXMLUnitConverter::convertDouble(...) where doubles are used


2001-02-27  gt  <gt@openoffice.org>  [3cda6d099b6d0dd59ae23a583905af269ef57f29]

+XclAddInNameTranslator::SetLanguage()


2001-02-27  Björn Milcke  <bm@openoffice.org>  [e2cd7988bbbebb8f3d946d9ac7bec2a69bde36a2]

Chart CLSID changed (inline string should be replaced by SchXMLExportHelper::getChartCLSID() soon)


2001-02-27  Eike Rathke  <er@openoffice.org>  [e45ea8ccf46279b55ca5dd578a6446fa81874bd1]

#84386# don't try to read entire byte encoded file into Unicode strings because no LFs are found ... Also added a "guess code" for preselecting Unicode in encoding list box.


2001-02-26  Niklas Nebel  <nn@openoffice.org>  [b2e19401a54bd5ca634b14a382668210ee6412d4]

use GetDialogParent member function instead of local function


2001-02-26  Niklas Nebel  <nn@openoffice.org>  [d2fde861b8e1d9cc35f5c7869d1e79747dbe4aa7]

#81888# use EditEngine to draw page number if mixed script types used


2001-02-26  Niklas Nebel  <nn@openoffice.org>  [29d82331b429e14b47c25547704caeff3883e865]

#81888# nPageScript


2001-02-26  Niklas Nebel  <nn@openoffice.org>  [fb32ba5ee6a8d2451e013a2a7f5b30564c0bf195]

#81888# GetStringScriptType


2001-02-26  Niklas Nebel  <nn@openoffice.org>  [9359d7bd1ff7dcf810ce1da684caf8d239ec197a]

#79718# shortcuts for measurement unit and tab stops


2001-02-26  Niklas Nebel  <nn@openoffice.org>  [f4ea00aa333962fcb341891b1973fcde30b7005e]

IsUndoEnabled handling corrected


2001-02-26  Eike Rathke  <er@openoffice.org>  [1108b6cce9a0512b4dc93f02448270097f8dc943]

#84359# UpdateChartListenerCollection: don't insert manually inserted OLE objects without SomeData1


2001-02-26  Eike Rathke  <er@openoffice.org>  [f9c94fecedb1bdef632119ab294239a401639ba6]

#84364# CreateToken: svExternal: of course it's a string and not a character ...


2001-02-26  Eike Rathke  <er@openoffice.org>  [cb72476ce0fe00d683a2102f3a5048454df29187]

#84364# ScMacro:: it's a svExternal and not a svString


2001-02-26  gt  <gt@openoffice.org>  [df921007e4013012f7ecb7ad130c399faccec11f]

typo in XclExternName::=()


2001-02-26  Sascha Ballach  <sab@openoffice.org>  [b1d7324ab4f0339f5c21426613bb6839e09345c3]

order the items in the maps


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [2a63d33d06182b59a9e89766748210e9b0752b9a]

correct id for background graphics


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [c57f92666df4b91b2d179478515fc2e242a415bf]

bug fix: formula import now uses a different stream


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [ac1e801a3912c0322b02c5ae3869894d63794c22]

moved help functions to XclImpHelper and ScFilterTools


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [f3144690590008e15e171dd43ad2bdcd756e51be]

enable/disable stream warnings


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [d2a04c7d0f1d1d88b8b12077166ef35c6f1de28f]

fixed: exit loop on stream read error


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [6efbe6180e07440d523e8bd64d40399c740bcfe8]

removed: xcl97exp.cxx


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [34ea21372bdc55b52ab42d23c0655e33fd928e0f]

new Excel export stream class XclExpStream


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [675bad4e68806cd1156076f3758065be4d08672e]

misc. defines


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [c21a41ba77d019c8f945eae515f835e2844fd3fa]

new files: XclExpStream.cxx, XclExpHelper.cxx, flttools.cxx


2001-02-26  Daniel Rentz  <dr@openoffice.org>  [84e5b8174725a4f1ec91c6f382c5bfedd1873e6a]

removed #include


2001-02-23  Niklas Nebel  <nn@openoffice.org>  [b451cc99c22d0f304d2a2d21d903f2f8a689248d]

Issue #459#: Check if repeat area must be subtracted also on first page


2001-02-23  Sascha Ballach  <sab@openoffice.org>  [568aa5f404ce1d2cc3b2f7b4c539771abb7f26d9]

export and import document protection


2001-02-23  Nils Fuhrmann  <nf@openoffice.org>  [1db1ad4e1aed6ba3fe8801f63d752380dd1a7da6]

Generated solar list particle for usage per project


2001-02-23  Niklas Nebel  <nn@openoffice.org>  [29fd410160cf2d5630570385e1d8f063800419d9]

access to pool defaults


2001-02-23  gt  <gt@openoffice.org>  [09f6dbf80d17f766e102fd3bd8d9ed820bb9e4f8]

dedicated array ids for neighbored ranges


2001-02-23  Niklas Nebel  <nn@openoffice.org>  [bef0d7f2e2e3ce7a549ecb840bfc1cbeedc311a3]

don't set meta file mode for drawing background


2001-02-23  Sascha Ballach  <sab@openoffice.org>  [633c9bacf950073f8e46570395b3274e8c5f6605]

change the type of the password Sequence from sal_uInt8 to sal_Int8


2001-02-22  Niklas Nebel  <nn@openoffice.org>  [4b76db11af085981e04cb323db6706be2af1134f]

#84256# InvertSimple: treat first visible row like after hidden rows


2001-02-22  Sascha Ballach  <sab@openoffice.org>  [67187545af35815a1b05c1fe9c35a85a8824d9c7]

new password added; password is only stored as hash value


2001-02-22  Sascha Ballach  <sab@openoffice.org>  [a96efdab39ff7c163903665d8fc090b1b9f516d2]

new password added; password is only stored as hash value and is now stored and loaded in xml as base64


2001-02-22  Niklas Nebel  <nn@openoffice.org>  [6c05d455cc77ab67ee7f2b67e98e4e16c7f6f385]

#84203# XStyleLoader: support options arguments


2001-02-22  Niklas Nebel  <nn@openoffice.org>  [6fcc380a2d2b270974a1fde1ac245137a568d09b]

#84203# XStyleLoader argument names


2001-02-22  Niklas Nebel  <nn@openoffice.org>  [4f35aa10c865eccd4afdb391dbd260674b3990b0]

#84203# LoadStylesArgs


2001-02-22  Niklas Nebel  <nn@openoffice.org>  [2451d8c14ab98f6b29294373871306c8148c287c]

#84203# LoadStylesArgs


2001-02-22  Eike Rathke  <er@openoffice.org>  [7c4a6b8555cda0f67181715280a9fe5533ff5ce4]

MayBeRegExp: including '<','>'


2001-02-22  Eike Rathke  <er@openoffice.org>  [5de94e4915a23646c074cb1f0d25705a2c05c36a]

removed developer's sloppyness


2001-02-22  Vladimir Glazounov  <vg@openoffice.org>  [5273ebf6e7e1b58e94042281a9f9fc2d1a3fad05]

no type difference between product and non-pro


2001-02-22  Christian Lippka  <cl@openoffice.org>  [c3c89892d279ab02d37a69368c75468ef7df8d70]

added ole support


2001-02-22  Sascha Ballach  <sab@openoffice.org>  [1ff171207b70f1028a71307a54abdfb6b174fa51]

add view settings import; to do: set the settings on the view, but this depence on how we handle more than one view thats why I have to do this later if we have decided this


2001-02-21  Eike Rathke  <er@openoffice.org>  [9f43199b7004ba824f21e06709ebd6f5a1e1f01c]

new class ScToken and derived


2001-02-21  Eike Rathke  <er@openoffice.org>  [4f9657e51ad650e63dc81a47e0e324211ee5e46b]

header split and ScToken --> ScRawToken, ScDoubleToken --> ScDoubleRawToken


2001-02-21  Eike Rathke  <er@openoffice.org>  [0da8ea55ff313861f9a2c03972f4b165bf7db0a0]

RefData splitted from compiler.hxx


2001-02-21  Eike Rathke  <er@openoffice.org>  [fb55929ebbd962fdb10c05b5599f81d34d6bd865]

OpCode splitted from compiler.hxx


2001-02-21  Niklas Nebel  <nn@openoffice.org>  [36e4e32b351dc57d97c41f7a0229aa149a311e85]

#84197# PasteDataFormat: also test for old calc formats


2001-02-21  Niklas Nebel  <nn@openoffice.org>  [1cdf108ca0cb3554a5dfa57806df143c32b880f2]

queries re-activated


2001-02-21  Niklas Nebel  <nn@openoffice.org>  [e376109aed72e166f6f57da96b905a6400b37143]

SetSortParam/SetQueryParam: set header flag


2001-02-21  Niklas Nebel  <nn@openoffice.org>  [2b6de4d9382cebab7d893388fe09a88ca287c06c]

IsUserDefined


2001-02-21  gt  <gt@openoffice.org>  [0d1336aed6c1b6994cec850be4c5490910190e3d]

wrong cases for XclAddInNameTrans.hxx


2001-02-21  Sascha Ballach  <sab@openoffice.org>  [c01cc68d7a14a196c8944a85e0d1e8f1fa6e223d]

add View Settings Export


2001-02-21  Sascha Ballach  <sab@openoffice.org>  [4e4ebe4eb5b23322430568973eebdb63e8f61044]

add WriteUserDateInAny and ReadUserDataFromAny methods to ScViewData and ScViewDataTable. this methods will be used to give the XML Export/Import the view settings.


2001-02-21  Sascha Ballach  <sab@openoffice.org>  [4d807af8c935394b96fece3accbb88d1dadf734f]

add the defines, which are used to get the view settings out of a sequence. the sequence is used to give the XML Export/Import the view settings


2001-02-20  gt  <gt@openoffice.org>  [3f11c9f6dde54e1dcd38f4715290ccf2d0b6663d]

AddIn-export & translation


2001-02-20  Niklas Nebel  <nn@openoffice.org>  [9747928a8960953802864f70bea278cb303b592b]

setName: exception on existing name


2001-02-19  Niklas Nebel  <nn@openoffice.org>  [abe10cde4f32638e35d367333cad36f4f4d3f058]

read compatibility names from AddIn


2001-02-16  Eike Rathke  <er@openoffice.org>  [eff841ade835a4ef48bac9474451bb53266a706c]

#80980# lcl_IsReference: added ocColRowName with svSingleRef


2001-02-16  Niklas Nebel  <nn@openoffice.org>  [83e6bd5d1c23bb4acd08673adcffdd3f30cf15c3]

#84073# after SetMarkedToLayer, leave draw shell if nothing selected


2001-02-16  Niklas Nebel  <nn@openoffice.org>  [9eda189bd2de126e0cfd1c3c74a6392d64267730]

#84073# SetMarkedToLayer: call CheckMarked immediately


2001-02-16  Eike Rathke  <er@openoffice.org>  [7c3327a83643df1860758ba7aab5aa4d12d93f50]

del: unused IsMasterType (would have to be extended for matrix anyways)


2001-02-16  Eike Rathke  <er@openoffice.org>  [efe745b2fa9f042f2da3fd823206c8fa5f24efab]

#82713# ScChangeActionContent::GetFormulaString: deleted cell may have virtual position, take that


2001-02-16  Niklas Nebel  <nn@openoffice.org>  [4b5f4b88d76f6c291acc9bc2e553731b1f184961]

#83853# keep names of non-chart ole objects, skip when updating chart listeners


2001-02-16  Eike Rathke  <er@openoffice.org>  [5dd5808f056885aa07a6684de500a359b5024e62]

#84020# LoadXML: InsertingFromOtherDoc=TRUE, no half way listeners


2001-02-16  gt  <gt@openoffice.org>  [1d8397fa49d3174a6058865045d67b1d518798c3]

FilterProgressBar::FilterProgressBar(): init of pStr / pXIStr


2001-02-15  Niklas Nebel  <nn@openoffice.org>  [b505d89221b8b499ed39a259830b9587c6002362]

fill EditEngine for header/footer edit source only if data changed


2001-02-15  Sascha Ballach  <sab@openoffice.org>  [0a5a2559f70f206717a2b9016e64d5b72c831bcc]

export/import of visarea added


2001-02-15  Niklas Nebel  <nn@openoffice.org>  [a718c66068666f2a70daa1b25cc85883dfa84c3b]

InvertSimple: test for hidden column


2001-02-15  Niklas Nebel  <nn@openoffice.org>  [27c41983da0dee50d5c7226e756ebf735820bfea]

#83712# DoThesaurus: don't pass language to StartThesaurus


2001-02-15  Sascha Ballach  <sab@openoffice.org>  [c7d1e7757e471c3a9342d080d639f72ea3746a70]

move Get*AttrTokenMap out of the loop


2001-02-15  Sascha Ballach  <sab@openoffice.org>  [80cdd88a315215e16529245c99c3ccb97dc3d1c9]

change len() to getLenght() on a OUString


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [4ecc6e6506720c258f8eac6564909417c01bd00e]

use Paste functions with XTransferable


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [0d31ee3390d13b914dd34f4d69219296343b1d64]

Paste functions with XTransferable


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [0909ec17d43845bb961431316203513034cdd8b6]

use GetOwnClipboard instead of ScGlobal functions


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [ac71fee4277ed5b5e6b7611778eef177410522d1]

DoCopy: call SetClipObject


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [1951a01041439d4721aed639450a859977f41586]

PasteObject: Size instead of DataObject as argument


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [cfb88083d20ee6cd64a00157f094631440639594]

PasteFromClip needs document


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [f417c87986dc4f97ff686d8769e06340a0081a79]

use GetOwnClipboard instead of ScGlobal functions


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [7f8448ccf15fdc6acff7f8b3f491827b8fb26165]

get clipboard doc from module instead of ScGlobal


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [b4f58a3acc80bce97db17d75f95a447db7666e92]

access functions for clipboard document removed


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [7f495375ab0ef97867c10d6b3cea5fa2bc9a6f52]

Paste functions with XTransferable


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [36080c45ea683ef0da191bb48433031985476d51]

GetOwnClipboard


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [7b3f7eb6a7846a618abc2b29913477ee583f0781]

GetOwnClipboard instead of ScGlobal static functions


2001-02-14  Niklas Nebel  <nn@openoffice.org>  [3b90a44138d1864f383c41993b873bf2bd0fab05]

ClipData (transfer objects for internal clipboard)


2001-02-14  Sascha Ballach  <sab@openoffice.org>  [dd6e5c9e0e9d3386e5ebdbe60aa80f928d362d98]

only create undos if ScDocument::IsUndoEnabled


2001-02-14  Sascha Ballach  <sab@openoffice.org>  [33e85e3d6fdd20196041d12840e46f1816a5de8a]

Add GetEmbeddedObject and IsEmbedded methods to the ScModelObj


2001-02-14  Eike Rathke  <er@openoffice.org>  [387a9dd2eef73f82d6c3ebede907298f519dfa1b]

CalcFormulaTree recursion guard


2001-02-14  Sascha Ballach  <sab@openoffice.org>  [0cee1eab357ddc5873feadf6ed941abde8a0ecf1]

IsUndoEnabled added


2001-02-14  Daniel Rentz  <dr@openoffice.org>  [cdd9131f2238a315ea476a11094ef8f633da6a81]

new class names


2001-02-14  Daniel Rentz  <dr@openoffice.org>  [86510775fa3e5adc296d41b90fae5cf8ce84330b]

export of multiple operations


2001-02-14  Daniel Rentz  <dr@openoffice.org>  [e70657d7775a9318de3f6063872dc5c01b4f08ad]

add: ScTokenArray::GetTableOpRefs()


2001-02-14  Daniel Rentz  <dr@openoffice.org>  [0bb40c9e0f63f4d97f7260d0af60a1c6afdcef96]

fix: dumping error values in formulas


2001-02-14  gt  <gt@openoffice.org>  [22380b4613f692d2618a91e2b359dce8c40dc70d]

logging messages for import/export


2001-02-14  Sascha Ballach  <sab@openoffice.org>  [3bf85e8e6468afcb8a611f5ec1a6275d426c742a]

change view settings moved from tracked changes to view settings


2001-02-14  Sascha Ballach  <sab@openoffice.org>  [086c0ebf8f616d58200284aac90082b954bfa199]

view settings added


2001-02-13  Eike Rathke  <er@openoffice.org>  [832edb00f3613597b8b5d80b9f61cb142fdc7da7]

new: TableOpDirty


2001-02-13  Eike Rathke  <er@openoffice.org>  [22d03cc3c0df45a23f79a6881ec4c2a4af754334]

new: TableOpDirty


2001-02-13  Daniel Rentz  <dr@openoffice.org>  [399d5e46667da7d2c3a20108c5150da8a40d8184]

multiple operations: absolute/relative references in parameter list (for mode 0 and 1)


2001-02-13  gt  <gt@openoffice.org>  [af5e4e9971c870aef1e49ff30a258a6f85badb48]

Excel <-> Calc AddIn translation


2001-02-13  Kai Ahrens  <ka@openoffice.org>  [76434f072c9a73c5058111f2d2724f27df3d0548]

sim.lib removed


2001-02-13  Niklas Nebel  <nn@openoffice.org>  [27731dcbf401c169e508c2b2331dae0938b11df3]

handle single ole object


2001-02-13  Niklas Nebel  <nn@openoffice.org>  [74864ec4c5c667ae437db4427809810554eade16]

GetSingleObject


2001-02-13  Kurt Zenker  <kz@openoffice.org>  [109265c7cffdf76a19d6696ff3133c3637ba4fbe]

Merge SWT614: 13.02.01 - 11:27:59


2001-02-12  Niklas Nebel  <nn@openoffice.org>  [1dc5ae07e4dbeb05c5569c00d3b99bc48466be30]

#83721# hyperlink bar button removed from tool bar


2001-02-12  Niklas Nebel  <nn@openoffice.org>  [3a5863f544929f677d55af90f1e6c811fecccab9]

#83819# IgnoreTab=TRUE for MultiLineEdit


2001-02-12  Sascha Ballach  <sab@openoffice.org>  [93dd984937f48de12c8734a6287ca4fa3f594146]

now it is possible to export and import matrix formulas in change track.


2001-02-12  Sascha Ballach  <sab@openoffice.org>  [73644798dd7c6ef73f2b127dbf839385ec865306]

remove the LoadCellContents methods form ScChangeActionDel and ScChangeActionMove, because they are not needed anymore.


2001-02-12  Kurt Zenker  <kz@openoffice.org>  [f52b194221aca3799d067d4813336e6837d607f8]

Merge SWT614: 12.02.01 - 10:30:17


2001-02-12  Kurt Zenker  <kz@openoffice.org>  [9f68c8539ff41189922f81737d59dd1d199b9819]

Merge SWT614: 12.02.01 - 10:29:18


2001-02-12  Kurt Zenker  <kz@openoffice.org>  [dae0b839f1341d57ecd71496a83e2a1727f9fbdd]

Merge SWT614: 12.02.01 - 10:28:17


2001-02-12  Kurt Zenker  <kz@openoffice.org>  [d14ea6c221f69169864ee2bdcb7cf5eeef366372]

Merge SWT614: 12.02.01 - 10:27:15


2001-02-12  Kurt Zenker  <kz@openoffice.org>  [c0da282f690e7704308c5da2482df145df9ff37f]

Merge SWT614: 12.02.01 - 10:26:15


2001-02-12  Kurt Zenker  <kz@openoffice.org>  [4912333804c24dc48da7baaad5912387bc6c8d8f]

Merge SWT614: 12.02.01 - 10:25:16


2001-02-12  Kurt Zenker  <kz@openoffice.org>  [62bd242d8ed6e94b01816e68bbbb664e760685b4]

Merge SWT614: 12.02.01 - 10:24:13


2001-02-12  Kurt Zenker  <kz@openoffice.org>  [4276772cc46bebc98506574578617bad8041a12a]

Merge SWT614: 12.02.01 - 10:14:35


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [2ad11c7535deab305cb1019906b6473d6de8c320]

Merge SWT614: 09.02.01 - 21:44:33


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [85bbd5877a1a0a7f28892df7c3b65850f400d335]

Merge SWT614: 09.02.01 - 21:39:01


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [c22ac79d0281eeb0b6163a92f36f68b2d9e90fe1]

Merge SWT614: 09.02.01 - 21:37:35


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [71ede8a6b648d651f8b063decc884c437763cb76]

Merge SWT614: 09.02.01 - 21:33:58


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [3608aa4019001b9b9fb5b80fa78490b1a3488586]

Merge SWT614: 09.02.01 - 21:29:56


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [d7bdccb0c9a94c545a46199af6a952cac62a5d7e]

Merge SWT614: 09.02.01 - 21:28:52


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [12bc5ff56be848114be845ae92d41f37c3fd4c93]

Merge SWT614: 09.02.01 - 21:27:48


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [44fcfa9c8d30220d67ec14c79866675943a61416]

Merge SWT614: 02/09/01 - 21:26:44


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [40fb752a01a1d50e8a4acd910fdde829539e4aa2]

Merge SWT614: 09.02.01 - 21:26:39


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [9a7786e9512f65a3481bab3a63c76a4e28ccf355]

Merge SWT614: 09.02.01 - 21:26:28


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [e82517dd9a889aa7935046511c521df0b0b2b34f]

Merge SWT614: 09.02.01 - 21:25:25


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [f98ffde5160237926cae456f48d5dd92b057fc76]

Merge SWT614: 09.02.01 - 21:25:14


2001-02-09  Oliver Bolte  <obo@openoffice.org>  [8096a53061a1fe5e2eacd58fb359eca034b2f4a1]

Merge SWT614: 09.02.01 - 21:25:07


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [515e2c50fd0b87b13011032ba19f8ce48b06d905]

Merge SWT614: 09.02.01 - 21:24:33


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [95bf7de768dd3ae0e1fa3c8ec9492c033bb78232]

Merge SWT614: 09.02.01 - 21:24:21


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [c159d59232b2d2e2b8c43b82eed8bd411729dfeb]

Merge SWT614: 09.02.01 - 21:24:08


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [0e984388a3ad9e706778d551553506a9849b7bd3]

Merge SWT614: 09.02.01 - 21:23:27


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [44c2daff1ead8259f7375e6174a93ee8b3a4d0f8]

Merge SWT614: 09.02.01 - 21:23:17


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [8b36b87f3648937106ba2190fd46ac6266448ea3]

Merge SWT614: 09.02.01 - 21:22:52


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [83c065ce57ecb1efac7e7c602c6327a8371db788]

Merge SWT614: 09.02.01 - 21:22:20


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [1ef5735a979c68b6600a69000a641622371e99e1]

Merge SWT614: 09.02.01 - 21:22:10


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [c0afb2be3be36b4a4e915603624e7c4a0cece529]

Merge SWT614: 09.02.01 - 21:21:42


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [ec928c15dbefdee7b3c269177be4e6825845c634]

Merge SWT614: 09.02.01 - 21:21:13


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [aa0c17f219b58b208ef86b55a9a8ab8f2fa5e227]

Merge SWT614: 09.02.01 - 21:21:02


2001-02-09  Oliver Bolte  <obo@openoffice.org>  [5a5e4662e669ca73520f63dc8ffcb674c4f6e277]

Merge SWT614: 09.02.01 - 21:20:33


2001-02-09  Kurt Zenker  <kz@openoffice.org>  [9b83ee7269b86c0d09633f8b23f64c93acef8ac3]

Merge SWT614: 09.02.01 - 21:20:31


2001-02-09  Oliver Bolte  <obo@openoffice.org>  [7324b74294fe2a60b5eb46578679980bc34dc66a]

Merge SWT614: 09.02.01 - 21:19:28


2001-02-09  Niklas Nebel  <nn@openoffice.org>  [957cb18ff1c78f1439c1bf9fb5521a00c39d2d95]

Load/Save/SaveAs: handle XML format


2001-02-09  Niklas Nebel  <nn@openoffice.org>  [a455f8624ef43ad5a6d076aa74eb3f3216e769b4]

UpdateAllRowHeights


2001-02-09  Niklas Nebel  <nn@openoffice.org>  [4bd8837d2543e14de2bc97030a67d668330efee4]

LoadXML/SaveXML, UpdateAllRowHeights


2001-02-09  Niklas Nebel  <nn@openoffice.org>  [64b4cb3407e5db6afcdc84cb0def6b01615afe54]

allow construction with medium or storage


2001-02-09  Sascha Ballach  <sab@openoffice.org>  [a33df5cbcab05aa8afa9e1168cac0c618b65474d]

add import/export change view settings; import/export of matrix cells


2001-02-09  Sascha Ballach  <sab@openoffice.org>  [cc85d817ef3671db26dd400f2ee21e57f76cab0c]

add convertion from string to DateTime and from DateTime to String


2001-02-09  Sascha Ballach  <sab@openoffice.org>  [a62a7e96c9d3e4282d480324ec4bf3344646ba1e]

did the required changes (the XMLShapeImportHelper constructor gets one mor parameter)


2001-02-09  Niklas Nebel  <nn@openoffice.org>  [544f1b22e826f9fb9bbfb27c11705f53c1bd3726]

new file format defines


2001-02-09  Niklas Nebel  <nn@openoffice.org>  [1455e8f461c68268755e704521623742c9c24df7]

new file format defines / class names


2001-02-09  Niklas Nebel  <nn@openoffice.org>  [20c78f477975f5c6a720a93c052ba7802b3c4d5f]

new application / long doc name


2001-02-09  Eike Rathke  <er@openoffice.org>  [c7b3318f8b16211953481148a275002f24bd0c13]

don't use SetNewValue(string), SetNewCell is sufficient; AddDependent instead of LoadDependent; SetDeletedInThis instead of LoadDeleted


2001-02-09  Eike Rathke  <er@openoffice.org>  [d51a54ee376b47262bd4b3bfe6cd7d46971fd361]

don't use GetStringOfCell, use SetCell instead; also changed naming of some functions needed for XML import


2001-02-09  Eike Rathke  <er@openoffice.org>  [8f15928dacb0d1964e04ab6ce9f77ff8a876212f]

changed naming of some functions needed for XML import


2001-02-09  Eike Rathke  <er@openoffice.org>  [525ead984cb041728d07a8b14be2d0719debd8bf]

lcl_IsReference: ocMatRef of course is a reference


2001-02-09  Eike Rathke  <er@openoffice.org>  [35a37af082ae5cbd356ae600c4241788f0f5b85e]

GetFormula: if matrix reference in ChangeTrack do not lookup matrix origin in document


2001-02-09  Eike Rathke  <er@openoffice.org>  [63d129050a1e7f7271382367013b035b081f8490]

consistency of acceptable/rejectable activated entries; fixed also a GPF in Undo-Remove of SubTree elements


2001-02-09  Eike Rathke  <er@openoffice.org>  [2395ae504cdfc489a954c6d81349ae58c5717e93]

handle matrix/array formulas


2001-02-09  Eike Rathke  <er@openoffice.org>  [894549da4e1ff89c541e8b06e26c304aec105c43]

handle matrix/array formulas


2001-02-09  Eike Rathke  <er@openoffice.org>  [22e1fa537229f2fadcb4918ed79d80953b5ab20a]

#83608# UpdateReference: OnRefMove unconditionally dirty if cell position changed


2001-02-09  Eike Rathke  <er@openoffice.org>  [7b51398886a5a45b309aacb13d2f76507000a902]

UpdateReference: internal cell position was never adjusted if formula had no references at all


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [8bd7f82a1b48ba717f5eaa859ef2c658629d641e]

#78987# confirm selection for data pilot if it contains subtotal cells


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [8ff9b334627d07ded6f5d2430da244e0e602171c]

#78987# STR_DATAPILOT_SUBTOTAL


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [979a78afca3bd084ab17113a3243cc36d361b846]

#78987# HasSubTotalCells


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [f8ac0f63171ec29be71ae6ef1520b40e1424f221]

DoCopy: use ScDrawTransferObj


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [217964aa34f5298c52cc20c82011e67f1b206b3f]

drawing objects not handled here


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [d5ab69e4ac4e790e200bc11616cd5c1bd3606ef5]

drwtrans


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [5ff8a6b1f4f7569b68787b10f46bc007bc1a4064]

transfer object for drawing objects


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [4d289e3b3e21d472d7629e9a66a623e1f81f6faa]

#83571# InitItems: use global color table


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [95cb17eb4931f7db8b4a75f2a14c0d442a93258f]

#83571# ctor: use global color table


2001-02-08  Daniel Rentz  <dr@openoffice.org>  [adba2720a764017b821c089f2567e705bb13c5f8]

[add] import of multiple operations for BIFF5


2001-02-08  Daniel Rentz  <dr@openoffice.org>  [6f8c9f7f85dca5b4d49dc58d5bb3f65d25b615b7]

misc. changes


2001-02-08  Niklas Nebel  <nn@openoffice.org>  [901b367f0e042e3e1f614002cabc4cbdf850ad51]

#83630# don't modify font for columns list box


2001-02-07  Daniel Rentz  <dr@openoffice.org>  [43dad5f6b97426462520d304b749c20fc032988f]

[add] import of multiple operations


2001-02-07  Niklas Nebel  <nn@openoffice.org>  [20362a8f4e4659a6c0534fd662b766115ead564e]

#83543# TransposeClip: transpose border and merge attributes


2001-02-07  Daniel Rentz  <dr@openoffice.org>  [58cf0e980e17bdd497df26ba114b831276b77787]

multiple operations: absolute/relative references in parameter list


2001-02-07  Daniel Rentz  <dr@openoffice.org>  [24ecdba32bc8882127119cb2992097293ff02479]

config file for BIFF8 dumper


2001-02-06  Eike Rathke  <er@openoffice.org>  [5669d2da5534fb8391f11fd5163c7657ab58dbfb]

GetMatrixEdge: diagnostic messages


2001-02-06  Niklas Nebel  <nn@openoffice.org>  [1e7f16a56b79c571e1c19693d6fc5eb1aaa760e6]

new tab page size


2001-02-06  Eike Rathke  <er@openoffice.org>  [512c2e137374b94608f35848dd15d785e019cd4c]

oops, mistakenly checked in the temporary disabled GetClipState IsBlockEditable


2001-02-06  Daniel Rentz  <dr@openoffice.org>  [dc0e6927fa3d5c7adf967ffa107ca7d3732aae63]

integration of new import class XclImpStream


2001-02-06  Eike Rathke  <er@openoffice.org>  [920a69164819d01cc1a3543589cdeefe78a71d8d]

DeleteCells: copy/paste sloppyness, BlockEditable end was taking X for Y ...


2001-02-06  Sascha Ballach  <sab@openoffice.org>  [1aa34bf875c2e01d18daeb22e3404d2943cec1b8]

give SvXMLExport the MapUnit and not a cast


2001-02-06  Sascha Ballach  <sab@openoffice.org>  [15ac21a442a0bd1b161849e53f81080112d676ca]

export the meta information in its own stream


2001-02-06  Sascha Ballach  <sab@openoffice.org>  [4bbee9b421178d73cb1172903903b4e6415f26c8]

get the XStatusIndicator in a own method


2001-02-06  Eike Rathke  <er@openoffice.org>  [6123e7d4aed6dea0b8a66bff02152fb3ee9bb5cd]

SID_DEL_COLS, SID_DEL_ROWS: StateMethod GetBlockState instead of GetState (need matrix formula check)


2001-02-05  Sascha Ballach  <sab@openoffice.org>  [dd85e711a19fb5b352287ba68288ff8b6df2010b]

add export and import of date and time values in the change track


2001-02-05  Sascha Ballach  <sab@openoffice.org>  [bd02d115aa65a15490d0b0a4164a5bc5a195805c]

add export and import of date and time values in the change track


2001-02-05  Sascha Ballach  <sab@openoffice.org>  [3227466a9f3a15272a13d8fd3fff5d3c5716704e]

remove stl/ in the includes of stl files


2001-02-05  Niklas Nebel  <nn@openoffice.org>  [8fa55687024b03fbc3dcc7c063e977b4b4cac694]

#83497# treat non-existing style in conditional format like no condition


2001-02-05  Niklas Nebel  <nn@openoffice.org>  [c01aa7b4894261af195587e909d6c2a863fc292d]

IsClipboardSource: check for valid ref


2001-02-05  gt  <gt@openoffice.org>  [67633a09618c8f5fe0becaae1c923e4aaa8c9ed5]

XclCf::XclCf(): changes checked in to early


2001-02-02  Niklas Nebel  <nn@openoffice.org>  [5b4bc82e9f06ac27ab8e9a92ba3c79e13f95d50a]

CopyToClip: use new transfer object


2001-02-02  Niklas Nebel  <nn@openoffice.org>  [350c9b6c19530de85627b1641b7d434df536ebe9]

transobj


2001-02-02  Niklas Nebel  <nn@openoffice.org>  [50de88bae0f931f2c3c3bdbb4154da22da1912d6]

transfer object (new clipboard interfaces)


2001-02-02  Sander Vesik  <svesik@openoffice.org>  [ea7944d49a35bdf87892f23076753bf806f23618]

Merge NetBSD changes by Michael Rauch from OO614B to HEAD.


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [f7308e5e6b12621791ba6010ed0fe2b0b3d09045]

Merge SWT614: 02.02.01 - 17:54:27


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [6bed0f45c6f814a2d43904bb69c9f3c17741e666]

Merge SWT614: 02.02.01 - 17:42:02


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [175713e7bef479be61d9ccb4248cb7f6289259f6]

Merge SWT614: 02.02.01 - 17:40:11


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [d280f9387081f892d14a5ccace04f9fbecda34d8]

Merge SWT614: 02.02.01 - 17:37:44


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [921ac52ccbd9dca85bffc775e3cc9bfbe9b918ba]

Merge SWT614: 02.02.01 - 17:32:45


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [23ff218794e416c54fcea38756add5a677256cfe]

Merge SWT614: 02.02.01 - 17:30:49


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [cbf0e52808e28c7f7214b6339ef3127327cdaf7c]

Merge SWT614: 02.02.01 - 17:29:40


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [275988d866ce2b8922943e70c7ead2fbfd81a836]

Merge SWT614: 02/02/01 - 17:29:21


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [fed65728eb604b4f1ca96e5cb5927acf6a848bb1]

Merge SWT614: 02.02.01 - 17:28:15


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [d908312862f319aca73f9e405344f65a9fb7e2ff]

Merge SWT614: 02/02/01 - 17:28:15


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [7d9c6b2c03690679d0543c9b71608b59a24c59d9]

Merge SWT614: 02.02.01 - 17:27:03


2001-02-02  Kurt Zenker  <kz@openoffice.org>  [d1bbff9cd1e2f731c3c0d8f7337d74b70a9526b8]

Merge SWT614: 02/02/01 - 17:26:53


2001-02-02  gt  <gt@openoffice.org>  [cc78ab06863c96ee2b6d8c734ddea985ffd7546a]

XclBGPic now Excel conform


2001-02-02  Eike Rathke  <er@openoffice.org>  [da7b246da73f6ae7148d485e44d5cc4eb8843456]

chg: LocaleDataWrapper instead of International


2001-02-02  Eike Rathke  <er@openoffice.org>  [ee199ce26b8a128314982a6b653294f1c24c480b]

chg: CalendarWrapper instead of International


2001-02-02  Eike Rathke  <er@openoffice.org>  [fa869be257d1241bf7f2e9fdc87ca0ffef0022c0]

add: static CalendarWrapper


2001-02-02  gt  <gt@openoffice.org>  [20bafd4f622085d08b88e93b6869dd85ae2fa6c5]

ImportExcel::Row34(): default row XF


2001-02-01  Sascha Ballach  <sab@openoffice.org>  [b568e2f70f5d9afe8d13c190f9fee9c54b235293]

add export of table:table-background attribute; move tracked-changes form document to body; did must change for Form export


2001-02-01  Sascha Ballach  <sab@openoffice.org>  [0a03dfc3ed0d63894d45508fbadb0c5d829b2e11]

remove reason for a assertion in FormlayerImport


2001-02-01  Sascha Ballach  <sab@openoffice.org>  [1178e91d8e0d2fd965cc4169758c834e7fbeba37]

move Tracked-Changes from document to body


2001-02-01  Sascha Ballach  <sab@openoffice.org>  [e8a56a7f27298a71bc421b8bcbb289842b9f87f0]

add import of table:table-background property on a shape


2001-02-01  Rüdiger Timm  <rt@openoffice.org>  [09552d86d5ae50a5133ccf7bddf012eecbaa900d]

#65293# Don't put a comma after the last item of an enum!


2001-02-01  Rüdiger Timm  <rt@openoffice.org>  [03c43b48cae83ebb1cf8a43f4375cec9e4117003]

#65293# ^M at the end of line 378 removed


2001-02-01  gt  <gt@openoffice.org>  [ff673c5cdf4db74debf8ec5cec9148caad0e7b1c]

class FltColumn: less memory usage


2001-02-01  Sascha Ballach  <sab@openoffice.org>  [edc9aadabcd875a3ebfb245f864e0b943796a5fd]

complette export/import of change tracking in XML without some little things


2001-02-01  Sascha Ballach  <sab@openoffice.org>  [13f2504acd589b9ac001d25c1db91f0238ab4a28]

complette export/import of change tracking without some little things


2001-01-31  Eike Rathke  <er@openoffice.org>  [cce51ec96515ddd26e9d2b99d8536cdc77b4992e]

LocaleDataWrapper getDate, getTime, getNum instead of International


2001-01-31  Niklas Nebel  <nn@openoffice.org>  [4635b52ac61c29450967ba835568006caf0c5e48]

moved pools from document to pool helper


2001-01-31  Niklas Nebel  <nn@openoffice.org>  [c6df89288ec18d5df68a18f38c6b787e14648539]

poolhelp


2001-01-31  Niklas Nebel  <nn@openoffice.org>  [b42e649c9b74abf293e3b84c4a681b6ca6986c9f]

ref-counted helper class to hold document pools


2001-01-31  Sascha Ballach  <sab@openoffice.org>  [9fdb191e8dd1f7855e422ed3a894966c69595d4b]

now a OLE Chart write his data


2001-01-31  Daniel Rentz  <dr@openoffice.org>  [2a3b3150395c7e29cf829c16924b5bd3cd4bc5eb]

add: integration of new import stream class XclImpStream


2001-01-31  Niklas Nebel  <nn@openoffice.org>  [a62906c2c0d45523190dafe8917ec2c8b323a8fa]

GetScriptType: use GetNumberFormat from PatternAttr


2001-01-30  Niklas Nebel  <nn@openoffice.org>  [094268c3c87df232218c3b89c481d925181e4a3c]

#83295# CompareDocument: use user name from doc if comparing different docs


2001-01-30  Sascha Ballach  <sab@openoffice.org>  [adcd7536c5efaa041c9830e85791d22b4d362398]

import change tracking without dependences


2001-01-30  Sascha Ballach  <sab@openoffice.org>  [1b442f9698f465fc677ff0f89a740d166f36858d]

Tracked Changes import added


2001-01-30  Sascha Ballach  <sab@openoffice.org>  [d5244bc782f4c23539592c6dfe5277025793049b]

only create shape context if it is not a text:p context


2001-01-30  Sascha Ballach  <sab@openoffice.org>  [5deb2c8682c11a2295b6c9087bfe483578fc188e]

sart to export and import in XML


2001-01-30  Kai Ahrens  <ka@openoffice.org>  [8409184d849709f3661cef253559190127df8a0d]

extended ::GetDocumentStream for load on demand of XML graphics


2001-01-30  Niklas Nebel  <nn@openoffice.org>  [9ecbdc6e3824fe29fbba8d17c5d3dfc36cd5cb0b]

no error when loading a hidden document while a progress is active


2001-01-30  Eike Rathke  <er@openoffice.org>  [b94966febfbc4b855101bef70b594afa868f8fe8]

International::GetNumDecimalSep --> LocaleData::getNumDecimalSep


2001-01-30  Eike Rathke  <er@openoffice.org>  [9aa228b2215e0b6754dbd8b63a3ed1489653b3d8]

International::GetNumDecimalSep --> LocaleData::getNumDecimalSep


2001-01-30  Eike Rathke  <er@openoffice.org>  [6e26c93f1e78ea808f25e594399a82373fb1a779]

add: static pLocaleData


2001-01-30  Niklas Nebel  <nn@openoffice.org>  [c0a0210a5a745ccda0b85528824e3459bdf12dfb]

#83325# MoveTable to new document: Target, return value


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [4e92a64cea0e29194b541a6bdbe18fc3dd5666ab]

Merge SWT614: 01/26/01 - 22:39:38


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [f859a955d11503489dae7a734f35ca31951a0cfe]

Merge SWT614: 01/26/01 - 22:37:56


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [c536edd927380ef57d6bc000074fc14adcdfea4b]

Merge SWT614: 01/26/01 - 22:36:33


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [033f2f50fd7ece7c4e1884e2b4aa8640bbe1a16b]

Merge SWT614: 01/26/01 - 22:35:04


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [df8b51404fada2f9f6aa4e6d42ed250ea85ed3b5]

Merge SWT614: 01/26/01 - 22:23:26


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [694dd424e19858ebaad29cce13294fe3d04bd1d4]

Merge SWT614: 01/26/01 - 22:21:21


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [c880eba926be8404fc14356635f821e619f745e3]

Merge SWT614: 01/26/01 - 22:20:01


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [9828c5791d5ea4ff8c9ed818586f5e67d82543eb]

Merge SWT614: 01/26/01 - 22:17:12


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [7f2f41fc22ba8cd88cfd34d032f5cc4ad18e2a41]

Merge SWT614: 01/26/01 - 22:15:46


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [fa71ba14dc773260afd6fbaf315bfb19156be6ae]

Merge SWT614: 01/26/01 - 22:11:30


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [0d1d5c9fdab2501ee6cffaa90ae8f76aa7ce11cc]

Merge SWT614: 01/26/01 - 22:08:23


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [60dcdc87a615c7844eba4bb99a6a0b138b79b0d9]

Merge SWT614: 26.01.01 - 22:06:55


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [960446159f51ed5bd9b6e48dc41be98ba521484c]

Merge SWT614: 01/26/01 - 22:06:02


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [efe0c65c1a70494e8922b5dd1964418829cccfab]

Merge SWT614: 01/26/01 - 22:04:19


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [ebdbd614f8c3a047648c581951a41fc9725ba7c2]

Merge SWT614: 26.01.01 - 22:04:24


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [04a00eb2aad55ea131c1fdc2d1973dff1c0fc0d1]

Merge SWT614: 26.01.01 - 22:03:15


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [020bccd911da86c38384c92fca0e34c17765d7d7]

Merge SWT614: 01/26/01 - 22:02:53


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [8ba4656a15dc20234d8b330d5d778df3b51457d2]

Merge SWT614: 26.01.01 - 22:02:33


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [8671ed406715e6a0f4b2f96edd6a906fd68ea96a]

Merge SWT614: 26.01.01 - 22:02:01


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [25882107ef4ea07d53ce8b6f33f2a9008aae62e3]

Merge SWT614: 26.01.01 - 22:00:30


2001-01-26  Kurt Zenker  <kz@openoffice.org>  [cebc14bc021fa1b4766e379e31e879e1a97a95d3]

Merge SWT614: 26.01.01 - 21:59:15


2001-01-26  Niklas Nebel  <nn@openoffice.org>  [1beb2ca4336ba309d2aa0eab1e5b335e89621060]

dispose Rowset


2001-01-26  Niklas Nebel  <nn@openoffice.org>  [cf531760f55b65ac28449e521c2daa01ffa438c3]

DoImport: dispose Rowset


2001-01-26  Eike Rathke  <er@openoffice.org>  [be284b0e83051b30f03134e130eef7cff1ffaeaa]

constness of SvNumberformat


2001-01-25  Niklas Nebel  <nn@openoffice.org>  [954d5df049f20b1d24fe455a9a14f54b3cc2f8ec]

#74860# Hide before executing slot


2001-01-25  Niklas Nebel  <nn@openoffice.org>  [39f207584b1454a30f642018fcbf716e00e3c375]

#74860# DataPilotUpdate: warn if output area is not empty


2001-01-25  Daniel Rentz  <dr@openoffice.org>  [1fbbce81f4c5eb5710edfc88a700f1c38f9eb9a6]

add: import/export of axis number formats


2001-01-25  Sascha Ballach  <sab@openoffice.org>  [49bcaeca11eef05c47127557673dcb33a47cddaf]

write the author attribute of a note only if there is an author


2001-01-25  Sascha Ballach  <sab@openoffice.org>  [827589243c089a8d2ed9844d3b5dfe0e70bd27e3]

#83196#; change the default of bLoadDoc to sal_True


2001-01-24  Sascha Ballach  <sab@openoffice.org>  [38b9c09918641f4abac44c7503456fb7b1a63383]

start of the import of tracked changes


2001-01-24  Sascha Ballach  <sab@openoffice.org>  [10b09a8aac13eed49f25484a71683b4c79668ac9]

some changings in the export


2001-01-24  Niklas Nebel  <nn@openoffice.org>  [92151f05d408607b768144b671d4193e64214857]

#83016# SaveNative includes SaveCompressed


2001-01-24  Daniel Rentz  <dr@openoffice.org>  [86d83d1da5ed5cb26e462b9e24bd3eddc8689a1a]

xcl97rch.hxx -> XclExpCharts.hxx


2001-01-24  Daniel Rentz  <dr@openoffice.org>  [ed802e7d5d21ee9ac72409d78f761ed494fcb00e]

xcl97rch -> XclExpCharts


2001-01-23  Oliver Specht  <os@openoffice.org>  [6497c781c66f9d38ac8b922f582dc279afd43f7a]

update of filter configuration


2001-01-22  Sascha Ballach  <sab@openoffice.org>  [768c235ebf35788a5c88a7a9ac58a4b7c0287344]

Export/Import of forms and controlls


2001-01-22  Sascha Ballach  <sab@openoffice.org>  [ff90d060b86bc0f96c7cdaf60612e4afb98501f5]

returns the XDrawPage which is holden on the SdrPage and do not create a new XDrawPage no longer


2001-01-22  Sascha Ballach  <sab@openoffice.org>  [e3504f9d20678fb3027374bbb5af2bf45b79c3ac]

returns the XDrawPage which is holden on the SdrPage and do not create a new XDrawPage no longer


2001-01-22  Niklas Nebel  <nn@openoffice.org>  [7b6242830ea0aa2717f91dbf38fd60f3b66c1304]

#82991# UpdateReference: bIncludeDraw


2001-01-22  Niklas Nebel  <nn@openoffice.org>  [645fd060db3114362c5c4b7d0f6133ddc5cf4b98]

#82991# InsertRow: update drawing layer after inserting


2001-01-22  Sascha Ballach  <sab@openoffice.org>  [a963252839e72df962d6a23912a8f134214249af]

create the XStatusIndicator for Export and Import


2001-01-22  Niklas Nebel  <nn@openoffice.org>  [9a52e3cdc1dbf95e2cdfe0b29d8a43ccabc6b332]

#82986# Compare: right order


2001-01-22  Oliver Specht  <os@openoffice.org>  [8def01a9c7eca194353df5bd7d055ac3d379f392]

update of filter configuration


2001-01-19  Kurt Zenker  <kz@openoffice.org>  [3b41ce8b9087499b9f3d95f3e143a58389d9fdb8]

Merge SWT614: 01/19/01 - 21:56:09


2001-01-19  Kurt Zenker  <kz@openoffice.org>  [6dbf6e3f6ebd6b29d5aff36d21019b71912d21c1]

Merge SWT614: 01/19/01 - 21:47:17


2001-01-19  Kurt Zenker  <kz@openoffice.org>  [637b6784505ac4d9f5da1e20c08db7d9d67bb241]

Merge SWT614: 01/19/01 - 21:43:03


2001-01-19  Kurt Zenker  <kz@openoffice.org>  [64993156396a8258780a082cbe4ffb33f1e02eba]

Merge SWT614: 01/19/01 - 21:40:34


2001-01-19  Kurt Zenker  <kz@openoffice.org>  [da65f848377e3913278684c676c49cecd19b0902]

Merge SWT614: 01/19/01 - 21:39:35


2001-01-19  Oliver Bolte  <obo@openoffice.org>  [ba3887e3927f2301d9bac4faa96bc5d68a7c6904]

Merge SWT614: 19.01.01 - 21:39:28


2001-01-19  Kurt Zenker  <kz@openoffice.org>  [f0c8abbcce73b1ae2b5fd611f8b12589e8ebffe9]

Merge SWT614: 19.01.01 - 21:38:51


2001-01-19  Niklas Nebel  <nn@openoffice.org>  [1eddc5fe8fdfff6f5c6853745024a3a014601785]

#82042# XML filter can be used as a component


2001-01-19  Sascha Ballach  <sab@openoffice.org>  [52df14a619ae6e7d26cba077d398721ce6c4dd0b]

continue change tracking export


2001-01-19  Sascha Ballach  <sab@openoffice.org>  [7cb00a39ee45977a77371ca16242838630e3ba4e]

add public method GetFirstGenerated to ScChangeTrack


2001-01-19  Daniel Rentz  <dr@openoffice.org>  [1aa9af0e7ee6ada187efc67d7676f08604b6f02a]

moved chart import to xcl97/XclImpCharts.cxx + XclImpChartsApi.cxx


2001-01-18  Niklas Nebel  <nn@openoffice.org>  [eecb8dffb57b516aa1d1e2c7689710ac0c5df0d2]

#79061# use char property map from svx, set twips flag dynamically


2001-01-18  Niklas Nebel  <nn@openoffice.org>  [6508db9d63ec16aeac6c0f5c34a2ced507f8d58e]

#82949# MarkToMulti: reset marks if all multi mark ranges have been removed


2001-01-18  Daniel Rentz  <dr@openoffice.org>  [55c2d7bd1c817613dbf1870496d443c38345bffa]

fix: imp/exp of deleted cell contents (del col, del row, move range)


2001-01-18  Niklas Nebel  <nn@openoffice.org>  [86e6b8af7354b23ca884f20cded2607cb225e391]

ScEditEngineTextObj


2001-01-18  Niklas Nebel  <nn@openoffice.org>  [7c7eded202439e6b50517807b853fc0571fc64c8]

ScSimpleEditSource


2001-01-17  Niklas Nebel  <nn@openoffice.org>  [8e80b6459b1cb1f0b307a9b35c42bd245d6ea0d0]

#78996# Reset: handle defaults


2001-01-17  Niklas Nebel  <nn@openoffice.org>  [1c727f90b16773d32785d2a369338977c09072b7]

#78610# use LayoutName for field XNamed


2001-01-17  Niklas Nebel  <nn@openoffice.org>  [0534987c14816006abbb86a2715de9041a88247b]

#78610# HasLayoutName / ResetLayoutName


2001-01-17  Daniel Rentz  <dr@openoffice.org>  [253cadb071ce02f8652186c6b1bc7f1b380f7cf4]

add: export of cell protection flags


2001-01-17  Daniel Rentz  <dr@openoffice.org>  [69d9e56e15e471eb186fbc29ed12e332304363ba]

chg: defines for XF record


2001-01-17  Daniel Rentz  <dr@openoffice.org>  [b7f76a283243ebe178c37742c27ac74d7d5c0a0d]

add: defines for XF record


2001-01-17  Daniel Rentz  <dr@openoffice.org>  [200de19d0aef4e4ad674aeefe78a523b13ba65e8]

add: export of hidden table flag


2001-01-17  Sascha Ballach  <sab@openoffice.org>  [ad9fe52778a263b44e09478aedd294cd94c434be]

give the style context the family


2001-01-17  Sascha Ballach  <sab@openoffice.org>  [e4fb217d7bc9b559f18bb0284822bb807c1e3190]

test whether the areas in headers and footers exists


2001-01-17  Sascha Ballach  <sab@openoffice.org>  [f216c54d147179419ef3c7f2748b4965046f5ddf]

export of cell content change and insertions added


2001-01-16  Niklas Nebel  <nn@openoffice.org>  [03cec4739430c97df9cebbf3970c45bc4c9a699a]

#78776# set strings for valiation error / input even if disabled


2001-01-16  Niklas Nebel  <nn@openoffice.org>  [a2ec15e1a4c10221f1d998900959655dd3cf1a23]

#78776# IsEmpty: test all contents even if disabled


2001-01-16  Daniel Rentz  <dr@openoffice.org>  [b6979cdbcac70394f181f4d9fa538329d43cbddb]

add: export of cell text rotation


2001-01-16  Daniel Rentz  <dr@openoffice.org>  [951bb0cbc1208640d332ec59df48ee1ad4f59543]

add: GetExcRotation()


2001-01-16  Niklas Nebel  <nn@openoffice.org>  [dec1a537a8eae4e990b47cc63415834efd8dcdc0]

#73157# CellRanges: allow part of range for hasByName/getByName


2001-01-16  Oliver Bolte  <obo@openoffice.org>  [3537aeb413cb467d64710a4266554a2be642ee9a]

#65293# parse error linux compiler


2001-01-15  Niklas Nebel  <nn@openoffice.org>  [d52127ee95611ca25a043e2e43d4e17c3f9f4f71]

#78612# ScDataPilotFieldObj: allow setting Function before Orientation


2001-01-15  Niklas Nebel  <nn@openoffice.org>  [e46a3df3b638834339d54af1f3274fb9aa56d8e4]

#78683# right service names


2001-01-15  Niklas Nebel  <nn@openoffice.org>  [24934f0c02f785850a4aeca60afcdf917d0fcd1d]

#75569# TextContent properties for text fields


2001-01-15  Eike Rathke  <er@openoffice.org>  [0dd766a9ab61da12dbd7602896be614d3196dea0]

#79211# WriteTables: no hidden tables


2001-01-15  Eike Rathke  <er@openoffice.org>  [8b5bccf7fc23e8adc9b20e9d79324b22b5eb1fc2]

#79211# IsEmptyTable: treat hidden table as empty


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [0ab01dd8b12f9161e2f4233be875356de007ab88]

#82804#; I have to start the paint of annotations by myself.


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [01ee562eb4d17e6376bec4a39a121737be3fe1d0]

use the OUStringBuffer instead of the OUString for the message content.


2001-01-15  Niklas Nebel  <nn@openoffice.org>  [473e4d8b9db436bf9d56f3cdde4155a3332685ab]

#79158# use OComponentHelper for implementation of XComponent


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [1dc6d2ce4d7ea9028237d250ca9ac8e5c630866a]

now the element text:s can be imported


2001-01-15  Niklas Nebel  <nn@openoffice.org>  [a784da1c7f28c9ef404af1770538b1764889b30f]

#79158# helper class to construct Mutex before other base classes


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [7c1c37d9a4d7b198e7da2df33f859009ccd18480]

use a OUStringBuffer instead of a OUString


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [66421014c1866bd7b7cbb07f4b6e2f00a0469ffa]

the validation use the exportText method of the TextExportHelper to export the message content


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [33e4a3a77b96b385357cc33475938fa009f26f41]

start of the Export


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [78edb2bf960e09771ff024999a43b9df9d133fb8]

now the annotation contains text:p


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [297f1c089348d8124edc63d901c9160bfa8e6791]

remove the include of xmlconti.hxx, because it is no longer necessary


2001-01-15  gt  <gt@openoffice.org>  [8c7d75eaa5dddb846dc163f9b129e73e545a02ac]

GRIDSET always set


2001-01-15  gt  <gt@openoffice.org>  [ed93c09008a9c1b026c46f93e8797cc530fc1fa8]

GRIDSET always set One page style with 'first page number set' on succeeding sheets  -> first sheet with page number, following with 'auto'


2001-01-15  Sascha Ballach  <sab@openoffice.org>  [b34c9aa3fefec7a0331bc9c1eb06c70bd2f7b291]

pCellsItr don't have to destroy in the destructor


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [31e5904f60b1df12154a7842654496b9a6361b67]

Merge SWT614: 01/12/01 - 23:08:17


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [bf7e235f8a1cd2e023059531a1a85d8d47f38499]

Merge SWT614: 01/12/01 - 23:06:33


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [958b29b91b5e82246fb346a5400087bcdd002ec4]

Merge SWT614: 01/12/01 - 22:56:36


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [72ce1102131a3ec13d109039f7552aff8849dcbd]

Merge SWT614: 01/12/01 - 22:54:57


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [f92b87738ac9b366642b301a04e066c3d2511b7c]

Merge SWT614: 01/12/01 - 22:52:48


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [ac88b7565617d03bde2e0885612057a2ebab0623]

Merge SWT614: 12.01.01 - 22:50:57


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [290f46d898a60d11412bf32f9946f8d7e42ea2c6]

Merge SWT614: 01/12/01 - 22:49:20


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [4bccf76453c127369f974a68c8c62ca97f7ee7bb]

Merge SWT614: 12.01.01 - 22:48:05


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [507946eaf577c37f0f3aeaf6d92808f23792195d]

Merge SWT614: 12.01.01 - 22:46:43


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [fc3cc5041870574d78a2b33bb07ecb3fa9911110]

Merge SWT614: 01/12/01 - 22:45:19


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [5409d6ddc277d1d8045911823feac86d332e30d9]

Merge SWT614: 01/12/01 - 22:41:40


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [e719d6c45d6b2536cd7f35b1f71fdaef91d6d2e2]

Merge SWT614: 12.01.01 - 22:41:12


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [fe8e74816f873a915f219223a773d265a12a139a]

Merge SWT614: 01/12/01 - 22:40:16


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [d25c99286beb6c59d0cbb90eb5b436974e5a4eb3]

Merge SWT614: 12.01.01 - 22:40:05


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [d699c3760bea78bae313a6bb0dcb87617cc0df45]

Merge SWT614: 01/12/01 - 22:39:12


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [53c194ef930345f22f2a2f50cff743ec96e2bdb8]

Merge SWT614: 12.01.01 - 22:38:47


2001-01-12  Kurt Zenker  <kz@openoffice.org>  [75a7b1ca762488278c4c70b4f387d12a756a46a1]

Merge SWT614: 01/12/01 - 22:37:49


2001-01-12  Christian Lippka  <cl@openoffice.org>  [a3129a616fec34a5b84eb78ccb1535f1b7273c17]

#82042# added support for xml filter components


2001-01-12  Daniel Rentz  <dr@openoffice.org>  [59591169a1b8e6562cc05a9ebdf217dfd6c16313]

add: export of page breaks


2001-01-11  Niklas Nebel  <nn@openoffice.org>  [967cc80704e0cd6697a6b1f0a924961bf55b9157]

#80761# description for ScCellFormatsEnumeration


2001-01-11  Eike Rathke  <er@openoffice.org>  [84314f4e7410d57a6e61b4c010eafe98880e6278]

#82521# ApplyAttributes: don't reset number format to default SYSTEM GENERAL if not intended


2001-01-11  Niklas Nebel  <nn@openoffice.org>  [92a6a86ef1c05ab183a3f5a215079343550804dc]

#82656# ScChartObj: XNamed (read-only)


2001-01-11  Niklas Nebel  <nn@openoffice.org>  [6b914ba6fab7ff7ae4071bd7c2e93c417db60fc1]

#82656# ScChartObj: XNamed


2001-01-11  gt  <gt@openoffice.org>  [ecfaa58db669d3bc53fbedbde00ab7773ff0c69c]

ImportExcel::Setup(): page num 0 set if auto is required


2001-01-11  Niklas Nebel  <nn@openoffice.org>  [95ca8a19c1fe700558633a5dea2a4e384178d923]

exceptions, warnings, member names


2001-01-11  Niklas Nebel  <nn@openoffice.org>  [39e1727098ec1b5381b876213f83a4568a047e4c]

#82673# #82674# getByIndex / getByName: exception on wrong argument


2001-01-11  Sascha Ballach  <sab@openoffice.org>  [4af446c3397cb0cc5a83fdf6a260df732a760bf9]

all expresions were created first and then all get the function and they will compile


2001-01-11  Niklas Nebel  <nn@openoffice.org>  [ff813fbaced6ef9cd6160461219b6a7702571fa3]

modify range name: keep index


2001-01-11  Daniel Rentz  <dr@openoffice.org>  [b1ed21bbe8cfe4593e486360f5bfb657483ae9a0]

chg: updated hyperlink export


2001-01-11  Daniel Rentz  <dr@openoffice.org>  [96f242e8a32f9d6fe0db4b009848529669c07259]

add: RootData::sAddNoteText - append any text to note text


2001-01-11  Daniel Rentz  <dr@openoffice.org>  [414ad7d46cba67e15ab7c0d10c966b33b8829034]

rmv: ReadFileHLink(), ReadURLHLink()


2001-01-11  Daniel Rentz  <dr@openoffice.org>  [61d182bbec563fee61d4935b7bde9c499fc8d668]

add: hyperlinks


2001-01-11  Daniel Rentz  <dr@openoffice.org>  [25c1cc0a2a506fa2833b348a2326eeaef6980960]

chg: updated hyperlink import


2001-01-11  Daniel Rentz  <dr@openoffice.org>  [61d1f5b1119157b32b4038e4b599db082b214465]

add: append hyperlink text to note text


2001-01-11  Daniel Rentz  <dr@openoffice.org>  [55e2ab6e1076894e00ca43349df85c226b68c21d]

chg: hyperlinks


2001-01-11  Sascha Ballach  <sab@openoffice.org>  [ef20e1a8f4bb9248f0cadce5dafd6ddb2fbc30ad]

move some includes of the xmlexprt.hxx to the cxx


2001-01-10  Eike Rathke  <er@openoffice.org>  [34a849e05ea3a2933919f6ed05ca24b79525b94f]

#75801# ScRept: repeat count 0 is allowed


2001-01-10  Eike Rathke  <er@openoffice.org>  [6a62729e0891af798faaf7a368b3a94b8a5af707]

#81175# CompileXML: establish listeners for matrix reference cells


2001-01-09  Niklas Nebel  <nn@openoffice.org>  [c23913053b7fa589597cadfceb40ff6ec08cadee]

SwapRow: don't break apart array formulas


2001-01-09  Sascha Ballach  <sab@openoffice.org>  [f3f2c45d4ef5d1237594a49cdd3ced10b5d84a7a]

use the new Context ID start value for Calc


2001-01-08  Niklas Nebel  <nn@openoffice.org>  [e62f4929c520f1fd5886941dc9d1b2978ce9a936]

setPropertyValue / IsFiltered: right type


2001-01-08  Niklas Nebel  <nn@openoffice.org>  [f93ef36e493a7728b0e2fc2a114a1b4d0fc1ba82]

#79427# border distances


2001-01-08  Niklas Nebel  <nn@openoffice.org>  [e13ef2a88bdc6f45d0a36a224fcb6ddd6e641d86]

#79427# use individual border distance values


2001-01-05  Niklas Nebel  <nn@openoffice.org>  [856c28715611e27850733fe22bd2d3aa5079931d]

#81607# SID_INSERT_SIMAGE removed


2001-01-05  Niklas Nebel  <nn@openoffice.org>  [a55603fed07f48dc716ee990a5121898422701d4]

#82578# GetGammaDist: use single exp call to avoid overflows


2001-01-05  Niklas Nebel  <nn@openoffice.org>  [8810bcb0000f13e277a7b23a5af55a004830301f]

#82578# IterateInverse: use simple interval nesting for inverse distributions


2001-01-05  Niklas Nebel  <nn@openoffice.org>  [0c487a63fe9c56903bab22758dadf697093f81d7]

#82578# distribution function objects as friend


2001-01-05  Sascha Ballach  <sab@openoffice.org>  [233d1a5ec1952232a8921d8023072a3b22f7555d]

one point overlooked, now it should work


2001-01-05  Sascha Ballach  <sab@openoffice.org>  [435d4f2697d0685da02e57169183bba24a86007d]

now the files should can compile under Solaris


2001-01-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [f53ee1b65120c763147348c2223f3d16a75dea04]

#65293#: sytax


2001-01-04  Jens-Heiner Rechtien  <hr@openoffice.org>  [89a59140fe0a76f2d86a3fe920793049c935975d]

#65293#: includes


2001-01-04  Sascha Ballach  <sab@openoffice.org>  [6e206eadb718420b39d07859b590397b1b3e4442]

fix bug of the shape position after import


2001-01-04  Sascha Ballach  <sab@openoffice.org>  [8e68d2a2c771ec2375331da71c1a35b9fee7a2bb]

the fontdecls should now work


2000-12-22  Eike Rathke  <er@openoffice.org>  [a703b807913bfbbf945670400afaa195f24b2d91]

Ascii import/export Unicode enabled


2000-12-22  Eike Rathke  <er@openoffice.org>  [1d14ccc97d77344a6d78ae32ba00753d1be49ee1]

Ascii import Unicode enabled


2000-12-21  Niklas Nebel  <nn@openoffice.org>  [0202200d71642a3d2fd8511a3d8532bb9179ff4e]

#78676# SubTotalDescriptor properties


2000-12-21  Sascha Ballach  <sab@openoffice.org>  [ed927d2a5f8118f7ce523c327a33b23ca2061b2f]

use the fontdecls for import and export of cell styles


2000-12-21  Niklas Nebel  <nn@openoffice.org>  [f70500b8c59c0b26fad8c02f57d33200f538cd67]

casts to avoid warnings


2000-12-21  Niklas Nebel  <nn@openoffice.org>  [23743a194393d935aaab15d8cb7488276909bbff]

#78569# right names for view options


2000-12-21  Sascha Ballach  <sab@openoffice.org>  [37f342c7e1660f57b8c20695058da87ca839bc06]

remove some warnings


2000-12-21  Sascha Ballach  <sab@openoffice.org>  [b97b6924192e2b637bbd6bc3f90d733aeb0fd317]

get all changes of the branch 1.20.2.3 and put it into the normal branch


2000-12-20  Niklas Nebel  <nn@openoffice.org>  [ba4562585aaab9b97b69e5a26e8e62fe8266e239]

#78828# TestComment: handle overlapping notes


2000-12-20  Niklas Nebel  <nn@openoffice.org>  [41d64ebb3fc4accafee7941c9b4785961061948c]

#78828# OutlinerViewPaint: for notes always draw the background


2000-12-20  Eike Rathke  <er@openoffice.org>  [e0675fca92a6ace3177f0bbb512ff69ed70d9ce5]

using SvxTextEncodingBox


2000-12-20  Eike Rathke  <er@openoffice.org>  [f06debe1de705417bdc242dd9192503408a48990]

static GetCharsetValue, GetCharsetString


2000-12-20  Sascha Ballach  <sab@openoffice.org>  [0cd80d6e348a08b1bb7a52c9346611324f90a6aa]

some assertions added


2000-12-20  Niklas Nebel  <nn@openoffice.org>  [47a68de2a51c3007f5b7c8faa1b7c5769727a81b]

use utl::TempFile and UcbStreamHelper instead of SvFileStream


2000-12-19  Niklas Nebel  <nn@openoffice.org>  [de04c7342dd6212cbdc763ce2e41f696a4634e82]

#80843# ActivateView: use right input handler


2000-12-19  Sascha Ballach  <sab@openoffice.org>  [b21b4df9d55b4b8079cc9d03e2df600ec45bc968]

check whether could format or parse a address


2000-12-19  Sascha Ballach  <sab@openoffice.org>  [d47b28a4b5e9cc2c626f5b30c5ef6bd1205b5807]

fix a little bug in collect column and row styles


2000-12-19  Sascha Ballach  <sab@openoffice.org>  [d85a90c5bbf00da956f79cb65b724fb80bbcb722]

start of export change tracking information


2000-12-19  Sascha Ballach  <sab@openoffice.org>  [fd2c2782fe8884d3943d603087537b2ad8ac982e]

start of export change tracking information; fix little bug in collect cell, column and row styles


2000-12-19  Sascha Ballach  <sab@openoffice.org>  [3d0a906c54174a38ade88e5732f8ceb68593d1b1]

start of export change tracking information


2000-12-19  Niklas Nebel  <nn@openoffice.org>  [e4d9af9e1f060b2aa9a32e7a7efb1556bed21279]

#81031# GetEditUrlOrError: use ScHideTextCursor to restore text cursor


2000-12-19  Niklas Nebel  <nn@openoffice.org>  [ddaeaecb633c016dc73577ad8ae55fcb64eb8ea0]

#81031# ScHideTextCursor, use before GetEditArea


2000-12-19  Niklas Nebel  <nn@openoffice.org>  [8ee508d001a4936a2251288f95d0f44c91b1abfa]

#81031# ScHideTextCursor


2000-12-19  Sascha Ballach  <sab@openoffice.org>  [1540cfd0a19899ff629a44671ead03c2f60c5fc3]

remove the most compiler warnings


2000-12-19  Niklas Nebel  <nn@openoffice.org>  [1963fcf11d6d497e50bffd5c31006ae00813a1f9]

casts to avoid warnings


2000-12-18  Niklas Nebel  <nn@openoffice.org>  [1c165edb9af266d696e4842431b57361d8a176cf]

#80606# pass this to ScCellTextCursor ctor


2000-12-18  Niklas Nebel  <nn@openoffice.org>  [70dc897f9e9a9e5f7a3d9317510094a457fbf19b]

#80606# TextCursor: use own objects for getText/getStart/getEnd


2000-12-18  Niklas Nebel  <nn@openoffice.org>  [50e1e896ae5f66bb9ccd3bbcab416fd6782c9119]

#80606# GetUnoText public


2000-12-18  Sander Vesik  <svesik@openoffice.org>  [fb817a2900cce4c50393e6010c6c97472647d047]

Merge needed NOOPT settings from OpenOffice609-FU


2000-12-18  Sascha Ballach  <sab@openoffice.org>  [6c2aa37d2e4454ed6d47c69e0c4c60ad0c377352]

some problems with merged ranges fixed; remove the most warnings


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [ddb8cfb8572fff0a8557d7552f027ff89092d13a]

add: export of accept flag


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [c66c14264e06a5cd5701c425235ce6c8dcbeba55]

add: GetDocumentName() and GetTableName() (for change track export) rmv: class ExcTabid8 (new class XclExpChTrTabId in XclExpChangeTrack.hxx) fix: #81924# handling of wrong table refs in externsheet list


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [2f6990b207b2ac9b36e4b4f671c448d36a889fed]

add: handling of continue records add: class XclImpChTrFmlConverter for special 3D ref handling


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [3b80d0078ac3c8b2353d8c81f9d92d9305dc6360]

add: main functionality of change track export


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [b1bbb543cab98f051785f7fa43f223328f276ea4]

add: ImportTyp::CreateContinueStream()


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [18f35f50c2662190b8139528ee9e4c93f5a6bdde]

chg: ReadStringDirect(), ReadString(), SkipString() -> spstring.cxx add: change track pointers in RootData


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [1eda858848dd36d8501b574414e369c82aefb638]

add: logging of 3D ref tab nums in class ExcETabNumBuffer (for change track export)


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [25d07e23cc75b90555289c5f419749d07257b449]

chg: class names


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [26ba6ebbeccb5d0f8eb202b2e60829c3d3055d92]

chg: ImportExcel8::CreateContinueStream() -> ImportTyp::CreateContinueStream() add: XclImpSupbook::ReadDocName(), XclImpSupbook::ReadTabName() chg: class names


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [b948eef0f3870ee60f34f03ee3496dce54e52a01]

add: ExcelToSc8::Read3DTabReference()


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [6e1391ad119bbae5b3cbc2f3bea66ada77fdd3a3]

add: change track export chg: use GetExcRKValue() to create an RK value


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [997427337993466c468828add3e1bbb68f8c5563]

fix: record overflow (change track dump)


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [dbd8a9d0401129ee8ae7718e2a03742884f448bd]

add: GetDocumentName() and GetTableName() (for change track export) rmv: class ExcTabid8 (new class XclExpChTrTabId in XclExpChangeTrack.hxx)


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [d04153cd00d75d39d259015c52a7fca05505ab78]

add: change track pointers in RootData chg: class names


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [efc1196974893089b757de642531a7eb52edfad5]

add: ReadDocName(), ReadTabName() chg: class names


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [8f461c7a2557d016b47488b8db04c0cb9acbe759]

add: handling of continue records add: class XclImpChTrFmlConverter for special 3D ref handling


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [964ccbc8303e4fa47f82d609f499b9c77f6aca7d]

add: main functionality of change track export


2000-12-18  Sascha Ballach  <sab@openoffice.org>  [677aa6d5ab93c77058fcd3b7baa66708dcced6f8]

change from a vector to in this special cases faster list


2000-12-18  Daniel Rentz  <dr@openoffice.org>  [6b093a97f187fdd04b2958f3644ab77eaf8649ee]

chg: renamed ScChangeTrack::GetFixDateTimeUTC() to ScChangeTrack::GetFixDateTime()


2000-12-15  Niklas Nebel  <nn@openoffice.org>  [a03c8ec4bd7b3d7e2b425fd483df2d291eb53577]

#82195# UpdateInputHandler: pass this as pSourceSh


2000-12-15  Niklas Nebel  <nn@openoffice.org>  [947eb3deba467b695354896ec8a9cf5c0594e744]

#82195# NotifyChange: if pSourceSh set, use as active view


2000-12-15  Niklas Nebel  <nn@openoffice.org>  [87758babca29d201a8a7c98e62add844897c76ca]

#82195# NotifyChange: pSourceSh


2000-12-15  Sascha Ballach  <sab@openoffice.org>  [b19e1a0ead3ef992e40299cb19679c5869402f5b]

put all kind of styles in the base class and get the styles from there


2000-12-15  Sascha Ballach  <sab@openoffice.org>  [5d1baffac62ee1cceaa5ed1fe98c81a64a13f581]

now use the XPropertySet on a XRows or XColumns so the performance is much better


2000-12-14  Niklas Nebel  <nn@openoffice.org>  [9ee773fa26dd14adbe3ad8d76935bd241d34b5f2]

EETextObjEqual: first test for equal text content


2000-12-14  Niklas Nebel  <nn@openoffice.org>  [d3acbb18e4791da5bc5b701a64e3b1f859d788c2]

#81067# StoreDrawLayer: SetFileFormatVersion


2000-12-14  Sascha Ballach  <sab@openoffice.org>  [67dfeded31bbb4557cef735e79886f18cdd59164]

#82093#; Chain to often the TextMapper to the CellMapper


2000-12-14  Niklas Nebel  <nn@openoffice.org>  [ee55caaaa9750f7c115d10137366e7363ec043a2]

call SetDBCollection with bRemoveAutoFilter=TRUE


2000-12-14  Niklas Nebel  <nn@openoffice.org>  [aff359a0b223d28e6c9c74e929e642a46cac5f67]

SetDBCollection: bRemoveAutoFilter


2000-12-14  Sascha Ballach  <sab@openoffice.org>  [194567da7db1849efffbc4acbf6672989c05c444]

fix a little problem; the Y position of the shape is not correct


2000-12-13  Niklas Nebel  <nn@openoffice.org>  [b23ae998fb2b236aa2c205d5521dab827f7dfe90]

Columns/Rows: column/row properties


2000-12-13  Niklas Nebel  <nn@openoffice.org>  [435b67b98f038fb4f7032f4f6caafee7888acc05]

Columns/Rows: XPropertySet


2000-12-13  Sascha Ballach  <sab@openoffice.org>  [6e9e3f91cffbef631c869189e7023cf29dca97bc]

#81841#; the size of the shape is now set after read the complete table


2000-12-13  Sascha Ballach  <sab@openoffice.org>  [c88016d032b2117e669ac8f89e0b2a2126bf156d]

set only the row properties if thea are different to the defaults


2000-12-13  Eike Rathke  <er@openoffice.org>  [81173093adae0173d649230fddd1baa27582fe0e]

#81844# scheduled series ranges update


2000-12-13  Niklas Nebel  <nn@openoffice.org>  [9523465287acbef80d7e8fa29d97f1e6cfe77e6b]

#81733# undo/redo: execute in both views


2000-12-13  Niklas Nebel  <nn@openoffice.org>  [9cfcca3e822d45cacd1f5cd06c172a278b900053]

#81733# handle undo/redo in edit shell


2000-12-13  gt  <gt@openoffice.org>  [5e72dff101b2058104b1cc44afd86ba5539ffb57]

#81901# lcl_ExportBackgroundGraphic(): ReleaseAccess() only one time


2000-12-12  Niklas Nebel  <nn@openoffice.org>  [2ff9d03e5dcceb877071b2122cd689dad405cec2]

#81860# executeWithCompletion


2000-12-12  Niklas Nebel  <nn@openoffice.org>  [401acdac47310447c865c03418bd93bd3ea8c8e6]

#81860# get databases from DatabaseContext, tables from connection


2000-12-12  Niklas Nebel  <nn@openoffice.org>  [0d1c171408ab6696f3ef768e074529cb378428b9]

#80491# InitAddIns: no assertion if AddIn directory doesnt exist


2000-12-11  Sascha Ballach  <sab@openoffice.org>  [342b8e7f48a17fcd4bcb2c11fd1041fa190d28e3]

#79771#; use my own text:p context until a formated text comes


2000-12-11  Niklas Nebel  <nn@openoffice.org>  [72deeb1ccf4ba51d5771c9252511917d0fb6850f]

#80788# dont create basic before it is needed


2000-12-11  Niklas Nebel  <nn@openoffice.org>  [09b614639689547b2bec33f3ef96a64df3fe70c3]

#80998# CharStrikeout


2000-12-11  Sven Jacobi  <sj@openoffice.org>  [507fb8c22b1bac6bdcbd7e71a621bdd745115f3c]

now using EscherPropertyContainer to create the ESCHER_OPT atom


2000-12-11  Niklas Nebel  <nn@openoffice.org>  [2f7889fe06146479dd6f6d641fa6f354d460f541]

#81155# DataChanged: keep old area string


2000-12-10  Jens-Heiner Rechtien  <hr@openoffice.org>  [7f59a30de642c3b75a9ecca2f195fc123b8607fd]

#81699#. #65293# const


2000-12-10  Niklas Nebel  <nn@openoffice.org>  [f40d15a346afaaacab3bf562d7721a685dc80b5c]

#81525# UpdateChartListenerCollection: create series ranges if not set


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [ead965bf9126213ea5b4431e619b86b07c5136a5]

Merge SRC614: 12/08/00 - 19:30:58


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [bcdc9bba8a21f203b1bd36978b661f71fdcd99ed]

Merge SRC614: 12/08/00 - 19:29:39


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [0205a696d10d341af838a3df5dc93be586028a87]

Merge SRC614: 12/08/00 - 19:28:24


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [31b88a3f10eb7e74d6fa6feaffc802b1683f9201]

Merge SRC614: 12/08/00 - 19:27:00


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [80498d69cbb2840cab93ce87420cced9e294f182]

Merge SRC614: 12/08/00 - 19:18:36


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [fb413b09af0c3ff5298b6e71007f60c5cca1b6d7]

Merge SRC614: 12/08/00 - 19:16:24


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [6941f2804a71954b99e74d03cadc2684d087e56f]

Merge SRC614: 12/08/00 - 19:15:01


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [4c79a526a0ba1b5a514b16594745538f59040b8d]

Merge SRC614: 12/08/00 - 19:13:29


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [5c08492156bed55888592af9d1651d733cb20204]

Merge SRC614: 12/08/00 - 19:11:53


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [0b0ba3643908ff89d25697a80220a885da22eb8f]

Merge SRC614: 12/08/00 - 19:07:42


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [b0d2723b07643a247498d69e86958adc8f7bb309]

Merge SRC614: 12/08/00 - 19:05:12


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [102f9cb562cedbfd378dd92488c95e10ddcb034d]

Merge SRC614: 08.12.00 - 19:04:38


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [d172c4b9988557af0afa68078b11d877b085c535]

Merge SRC614: 08.12.00 - 19:03:43


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [646a4003e16e0116209594d27a945c09861c7152]

Merge SRC614: 08.12.00 - 19:03:07


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [8c5459f74aaea680dac65dc613efcef997f0f132]

Merge SRC614: 08.12.00 - 19:02:29


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [659f6aac30edb964b95dd31975a9f90e71a45b4c]

Merge SRC614: 12/08/00 - 19:02:27


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [ca2864d979c6d3aaa3127bde548d96faf559d864]

Merge SRC614: 08.12.00 - 19:02:05


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [7446754ba77dc0c9ecf2d904b70e06f4dcdd6ecf]

Merge SRC614: 08.12.00 - 19:01:12


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [b1692a4cd10627de45cd5c6ba868db07972f5c98]

Merge SRC614: 08.12.00 - 19:01:14


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [e0e6e9a4cb545147d19ecd49b960118ee704604c]

Merge SRC614: 12/08/00 - 19:00:31


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [a03cce2419645b7d32f7c64220cb735ab5ff9cf2]

Merge SRC614: 08.12.00 - 19:00:41


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [27d66ce72d2bdcf9ec15a7d8a3d149ef05a2d3a9]

Merge SRC614: 08.12.00 - 18:59:47


2000-12-08  Sascha Ballach  <sab@openoffice.org>  [6620e208763904643b776a7f72a9c6936146a927]

#81312#; add a new Service for NumRules


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [667d6df7cc2d6e8378a373c2fff97ded013ac48a]

Merge SRC614: 08.12.00 - 18:58:53


2000-12-08  Kurt Zenker  <kz@openoffice.org>  [ca73297ed57e174eebdc63b0a311c0b5b338ddaa]

Merge SRC614: 08.12.00 - 18:58:35


2000-12-08  Sascha Ballach  <sab@openoffice.org>  [184fa557a6d3cb78b4a3347801d0ca1528595254]

#81341#; add UpdateLinks to the XML Import filter


2000-12-08  Sascha Ballach  <sab@openoffice.org>  [651ad97e902d82bf8d1e3581dc3caafa0886b913]

#81341#; add TableSource Export and Import


2000-12-08  Sascha Ballach  <sab@openoffice.org>  [63d35df21a881c16a752a10fdc6fb9a7e76c4151]

a little performance optimation


2000-12-08  Sascha Ballach  <sab@openoffice.org>  [ce899c10c411dded1cd6dfe65713305160cf8556]

set on all repeated rows the properties


2000-12-08  Eike Rathke  <er@openoffice.org>  [65fe1b1035822ec46242750e04a996d5ba514f91]

#81625# SetExtraStrings: (re)create series ranges if needed


2000-12-08  Sascha Ballach  <sab@openoffice.org>  [89cf354ba4a5244c73b2bb02b76fed2c6f5e740c]

#81602#; give the chart import the auto styles


2000-12-08  Daniel Rentz  <dr@openoffice.org>  [163fa6a1bcc2eb9b65801d4364e0783eda015336]

chg: starcalcteam


2000-12-07  Kurt Zenker  <kz@openoffice.org>  [34f721e641f2a274811be98a25ff342add4ac110]

Merge SRC614: 12/07/00 - 17:05:40


2000-12-07  Sascha Ballach  <sab@openoffice.org>  [0cd6b5159cd49b3da623c35bf10c76ac81fafc68]

#80755#; did the should changing to import basic


2000-12-07  Martin Hollmichel  <mh@openoffice.org>  [c2b44d7800e909f05d3fb276b8f767c075f7df7c]

delete obsolete scsbx.lib


2000-12-07  Martin Hollmichel  <mh@openoffice.org>  [441cc9072d855dcaa6472aaf1f99a6a58bc1c7c5]

cleanup of old stuff


2000-12-07  Martin Hollmichel  <mh@openoffice.org>  [b18ca449f4fb2d7a0980930209b55aade21bb2e5]

delete old files


2000-12-07  Martin Hollmichel  <mh@openoffice.org>  [15f9af815e1ad3c53696a1efebad589b4fc797d8]

code from drawsh1.cxx and drawsh3.cxx integrated


2000-12-07  Martin Hollmichel  <mh@openoffice.org>  [ea1fd8eca09e541c70c805ac6fd55b3684a1db55]

cleared up


2000-12-07  Martin Hollmichel  <mh@openoffice.org>  [0725185f91b400ee49d1bbb6c68084e7b611b5cc]

delete old stuff


2000-12-06  Daniel Rentz  <dr@openoffice.org>  [0218b17058d2c8d82b7df5ab7cef2acee6f6287d]

add: defines for pivot tables


2000-12-06  Daniel Rentz  <dr@openoffice.org>  [bc9a3c2d37633bff947399b2457c9f68de0e0ceb]

add: nColMax in RootData - maximum excel column


2000-12-06  Daniel Rentz  <dr@openoffice.org>  [b199a7f3a56d38d192eb02778b667fafcd614769]

add: GetExcRKValue()


2000-12-06  Daniel Rentz  <dr@openoffice.org>  [68bda06cd0359b4ec458fe11e2f2dd7703fe125f]

add: ScChangeActionContent::GetOldCell() for excel export


2000-12-06  Daniel Rentz  <dr@openoffice.org>  [c2b319db2a2e57f4419ff9c5d510e51c6736af82]

chg: missing data in change track rec


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [c24adcecb629d6f6b5f8fa338bc3ba0a0a46622b]

Merge SRC614: 06.12.00 - 16:24:18


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [776d4d669daca87d57a7e9ec6ff6e0b399dc4134]

Merge SRC614: 06.12.00 - 16:23:10


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [57972220a22c9d6275e4c2f9736628e5f5a55cc0]

Merge SRC614: 06.12.00 - 16:21:41


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [e1790c89a2d3222a23592aa27df5fbe377e0a21f]

Merge SRC614: 06.12.00 - 16:14:25


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [1abdf513470b497fc6d8a1cb38d44b421cdd2676]

Merge SRC614: 06.12.00 - 16:11:32


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [afaf449026765207929d57ce825ff616f9fddb79]

Merge SRC614: 06.12.00 - 16:10:20


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [5d9614cf9e52b90011dec825ce4f52a6a1145b2a]

Merge SRC614: 06.12.00 - 16:08:58


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [f3801af16d4925584a883ab8e07d65f7d98288be]

Merge SRC614: 06.12.00 - 16:03:49


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [69e050313970ea631bdfaf73ea8f844eb6e7299a]

Merge SRC614: 06.12.00 - 16:02:04


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [367439ec0c1a16ee5e2e9044f18127dbd391cfc5]

Merge SRC614: 06.12.00 - 16:00:48


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [ca933475fcca337e4fac3a65020bdfe114675ebe]

Merge SRC614: 06.12.00 - 15:58:45


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [c051a2ec7c9a79e4423b01abc7198a43ae760249]

Merge SRC614: 06.12.00 - 15:56:17


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [dc44e9ade753ad101ecccaa29fa4542fc2292d28]

Merge SRC614: 06.12.00 - 15:55:56


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [23191c03cb4dbda0f1f79687eedfded07ed460a4]

Merge SRC614: 12/06/00 - 15:55:08


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [0526f8606ef3a12592df34b29803969f0067d227]

Merge SRC614: 06.12.00 - 15:55:28


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [a79cace256af1caf8adaa55ffbf6b5c20484c836]

Merge SRC614: 06.12.00 - 15:55:02


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [70f33fccc0217b223169b8598ca7ae6ca65f4431]

Merge SRC614: 06.12.00 - 15:54:52


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [f38462f5767fb3984a326d8160ca4358c21cf856]

Merge SRC614: 06.12.00 - 15:54:53


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [52f2d38f33a5cccd47d6c5c3bb8cc0eef3a33e44]

Merge SRC614: 06.12.00 - 15:27:55


2000-12-06  Kurt Zenker  <kz@openoffice.org>  [aa9e183ca2226a7595fff769de3377ac18a395a1]

Merge SRC614: 06.12.00 - 15:26:05


2000-12-06  Niklas Nebel  <nn@openoffice.org>  [22f93b924691d1e79183fe3b2a45c302e4bc31f4]

#80866# ScConditionEntry dtor: delete token arrays


2000-12-06  Niklas Nebel  <nn@openoffice.org>  [206e47fed99ac5798fcfd47da9f501bab086ee67]

#81388# XML Content stream is now Content.xml


2000-12-06  Niklas Nebel  <nn@openoffice.org>  [4fd248ccc157080381c00d25d26ecb1f2159cf18]

#81166# use app font for scenario titles


2000-12-05  Niklas Nebel  <nn@openoffice.org>  [05ae7236d4acdbff8c191209c5a1ed3677c61308]

#81355# dbtoolslib


2000-12-05  Niklas Nebel  <nn@openoffice.org>  [7c1465cfdd183c4cdc23cae4b856e1ec82c0a8c3]

#81355# DBaseImport/Export: set CharSet as string


2000-12-05  Daniel Rentz  <dr@openoffice.org>  [53d83c86745e90523e7c90abef9202ad43e6af38]

add: ScChangeTrack::GetFixDateTimeUTC() for excel export


2000-12-05  Eike Rathke  <er@openoffice.org>  [cc4e57450067a95ebc0eb880c291fb1f6596a8dd]

#79618# get series, category and label addresses from new chart format


2000-12-05  Sascha Ballach  <sab@openoffice.org>  [7e7e18f39156e33daa06e9140d67ecd908f0f3e5]

#80679#; export of the z-index added


2000-12-05  Sascha Ballach  <sab@openoffice.org>  [1e1afb625be6ba0795ad0ffb222e99d0c8d72d9c]

#80679#; export of the z-index added


2000-12-04  Sascha Ballach  <sab@openoffice.org>  [4046d7b85a5f7afab3f563e818efd1632488cd45]

#81174#


2000-12-04  Sascha Ballach  <sab@openoffice.org>  [ee792dc9823ed266e63690c4fffa577dd5256aa7]

#78961#; the celltype will be only corrected if it is not a scintific or a fraction


2000-12-04  Sascha Ballach  <sab@openoffice.org>  [08c836572d6f9b795f0eab7e3f2a26fa28b36e3b]

#81158#


2000-12-04  Sascha Ballach  <sab@openoffice.org>  [340fedd0da5fc04b1ee7450ab6902356189d344c]

#79771#; disable the undo of row height in XML import


2000-12-03  Kai Ahrens  <ka@openoffice.org>  [366009e8c208a498b13f65d2e242465adbdd116a]

#80795#: new document stream handling


2000-12-03  Kai Ahrens  <ka@openoffice.org>  [07e7c86db694e0112d9e77fbefed9ba826778d54]

#80795#: added SvxXMLGraphicHelper/Graphic container


2000-12-03  Kai Ahrens  <ka@openoffice.org>  [c22fc6c07f5e1f8593d188c166f10256ed0153e2]

#80795#: added SvxXMLGraphicHelper/Graphic container


2000-12-03  Michael Brauer  <mib@openoffice.org>  [09d08e31dc5f35c048916b2102070f8e7d7b0169]

#80795#: Create Package instead of OLE storage


2000-12-02  Niklas Nebel  <nn@openoffice.org>  [3dd67328016d03700384fd4a902c250866cf21dd]

#80795# open content stream in XML packages


2000-12-02  gt  <gt@openoffice.org>  [4b400e6fd6c96da0745756618b48d115f818d454]

#78686# ExcScenario::ExcScenario(): init dummy variable


2000-12-01  Niklas Nebel  <nn@openoffice.org>  [eecdad172c65f218c7c0cae53e46897f02ab309d]

#81148# Command handler for ScEditWindow


2000-12-01  Sascha Ballach  <sab@openoffice.org>  [f6d385633ac115aa63cf115c64cf8e9018d01304]

#79771#, set the OptimalHeight Property only if necessary.


2000-12-01  Niklas Nebel  <nn@openoffice.org>  [c3c95d4aa9bd3097947f70272ff78a4b0c265b3c]

#81017# executeWithCompletion


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [d67ebe20349a0474ac74a8cd2951b9b06b7112b5]

Merge SRC614: 12/01/00 - 12:32:30


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [b5b87b9e05423bce23be5428d7793488f5076248]

Merge SRC614: 12/01/00 - 12:30:54


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [5f8dd074a23f19b2737142b0450d8b77e6987e6d]

Merge SRC614: 01.12.00 - 12:30:36


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [ff528a0e42d5cd6a8e096dc4f3e2f3aee9f06170]

Merge SRC614: 01.12.00 - 12:27:43


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [3d1e8d0a6482be65f49882ae73919cf90a7aeb5f]

Merge SRC614: 01.12.00 - 12:27:13


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [52a8c42fa39619a24a7dfe29e6b91e65b3d7490e]

Merge SRC614: 01.12.00 - 10:12:06


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [082c54a91ffddfe2bfea1a9bc7a126caada37543]

Merge SRC614: 01.12.00 - 10:10:46


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [0c24e9da9bd3deb37979844a1eb1d782a1e30d0e]

Merge SRC614: 01.12.00 - 10:08:44


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [b14a943c666310487fbba0bac485ab0ce4d7a3c4]

Merge SRC614: 01.12.00 - 10:07:30


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [8ab4b577e3f9f19e3901cec1373dd45fadc15cbc]

Merge SRC614: 01.12.00 - 10:05:56


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [8d200eb4f3a75c4ae298e8e25d368ec427481c65]

Merge SRC614: 01.12.00 - 09:46:05


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [9ea694e3127cd84cf6f68effbb85700d53f7e470]

Merge SRC614: 01.12.00 - 09:41:21


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [26f3ab9ba289c20580294f56d2759d3c0612f6ce]

Merge SRC614: 01.12.00 - 09:32:21


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [1ce4bb00b29b1c2099b838c6c0a06e4da92f3191]

Merge SRC614: 01.12.00 - 09:28:34


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [6b372b90546f57d31b703f5efd599da4e9244847]

Merge SRC614: 01.12.00 - 09:21:54


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [4bd43cc20edeacf6c3bbc0d68c34ab72a939a0a9]

Merge SRC614: 01.12.00 - 09:20:21


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [380f3f56b2cc682373697cbd1288ff76928c2e81]

Merge SRC614: 12/01/00 - 09:17:09


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [f9372c246f4aa60ba427bd3c388fbc2a6fa2fce1]

Merge SRC614: 01.12.00 - 09:17:20


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [ff4ef438229c96b2f7526ebcb643a0cfab8a9556]

Merge SRC614: 01.12.00 - 09:16:23


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [81937c066215e2267e06abbac8441e5d8ecd7198]

Merge SRC614: 01.12.00 - 09:16:06


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [683033d775dc67261a42ec5d2281a063dae5381c]

Merge SRC614: 01.12.00 - 09:15:57


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [c56826a436c62509cd9e2994a06961d16cb7330e]

Merge SRC614: 01.12.00 - 09:13:58


2000-12-01  Kurt Zenker  <kz@openoffice.org>  [a1440bafc3a9fd9b38b49df9ab957b596466ad13]

Merge SRC614: 12/01/00 - 09:12:45


2000-12-01  Kai Sommerfeld  <kso@openoffice.org>  [3121be980e01c535ecc9ac08db9454a83aa2e1f4]

#80644# - ::ucb::ContentCreationException -> ::com::sun::star::ucb::ContentCreationException


2000-11-30  Niklas Nebel  <nn@openoffice.org>  [c0ffd0a07a42eeb89bd569a95a9841588fdd53d1]

#80913# FillEditItemSet: forbidden rules


2000-11-30  Niklas Nebel  <nn@openoffice.org>  [b0074a2e9aa227fa6f1b3413089f4d0f02c14509]

#80913# slot ids only for the items that work in the EditEngine


2000-11-30  Niklas Nebel  <nn@openoffice.org>  [e4180b2ba7bad56a5a7639acb35705d519914178]

#80913# asian typography properties


2000-11-30  Niklas Nebel  <nn@openoffice.org>  [0639a97bf573ebd19ba189513b3771fea18845ef]

#80913# asian typography page


2000-11-30  Niklas Nebel  <nn@openoffice.org>  [6fad62f2ad6a55673d257df30768ce20cd827962]

#80913# SetFileFormatVersion


2000-11-30  Niklas Nebel  <nn@openoffice.org>  [fdb8a8fbb9923487df240add1694e4bdd4f0d342]

#80913# asian typography items


2000-11-30  Niklas Nebel  <nn@openoffice.org>  [65dfcbfdb33d900c5e1e89600e9a2368251133a4]

#80913# new version map (asian typography items)


2000-11-30  Sascha Ballach  <sab@openoffice.org>  [4971cec667bf462448813cd8f27f92f36855a291]

#79771#; fix little bugs in the performance optimation


2000-11-30  Sascha Ballach  <sab@openoffice.org>  [2dcbe063ebe5c4045c2cee92f4fe545b14c59eb3]

#80362#; create a Paragraph Context only if the cell contains text.


2000-11-30  gt  <gt@openoffice.org>  [11a072d666538d58ce9a71c7661c112e1cf89027]

#79561# class ExcNameList: derived from ExcRecord


2000-11-30  Sascha Ballach  <sab@openoffice.org>  [9a143c246e71ea3045f038dd0c44b21cbdef10b4]

#80956#; I did all must changes.


2000-11-30  Daniel Rentz  <dr@openoffice.org>  [a585df366b2a25310623214880529caebdf00dfa]

add: export of change tracking data


2000-11-30  gt  <gt@openoffice.org>  [14c55fe8502b1462e1dc45da78343278e50a346d]

#80982# unnecessary assertion removed


2000-11-30  gt  <gt@openoffice.org>  [927de3d400ad483c5994706164197a44df20eeb6]

#79227# ImportExcel::Setup(): default paper size for unknown


2000-11-30  Sascha Ballach  <sab@openoffice.org>  [7193cde9d716e1272f5bead219292f15a4598e41]

#79771#; some little changes to increase the performance a little bit


2000-11-29  Niklas Nebel  <nn@openoffice.org>  [da92ed6a78de97e027c4031cf0ac19ca639b59d8]

#80632# also put default font in cjk/ctl items for EditEngine


2000-11-29  Niklas Nebel  <nn@openoffice.org>  [a17e5da2046faf59d71060a9b414bda035fcb61f]

#80688# FillEditItemSet instead of GetFont for headers/footers (3 fonts)


2000-11-29  Niklas Nebel  <nn@openoffice.org>  [b32db257da51a5e6c3e024925944f571f2c8709a]

#80688# SetFont with PatternAttr (for 3 fonts)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [a700455fe609bbee09826d9934960debf1ea2edc]

Merge SRC614: 29.11.00 - 21:10:25 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [5a27df202cc88043f4b914825c6d3c525b9de29e]

Merge SRC614: 29.11.00 - 14:00:19 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [7aeeef6884d2b559555f0dacbb705afe5387719a]

Merge SRC614: 29.11.00 - 13:57:21 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [f9eefbbac329b842af4499d605533ac1228614e3]

Merge SRC614: 29.11.00 - 13:54:49 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [04bfd3d6fc6598d4029f6fb5b7412f1e7fa3265a]

Merge SRC614: 29.11.00 - 13:44:28 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [b04aa34f5da70cc70254dd9dc5932eb33250a47e]

Merge SRC614: 29.11.00 - 13:39:54 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [78f1d9d80b45fd64b059d6659add17b82e160284]

Merge SRC614: 29.11.00 - 13:36:05 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [59f039b06eada3f3187ead534d6311ce6e91eb2a]

Merge SRC614: 29.11.00 - 12:54:06 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [a483fe2adbdf25097bce82133b588455074d7323]

Merge SRC614: 29.11.00 - 11:51:41 (NoBranch)


2000-11-29  Daniel Rentz  <dr@openoffice.org>  [19841b1929a8b0315202bc55aea11b89a31bf88a]

fix: wrong define


2000-11-29  Daniel Rentz  <dr@openoffice.org>  [f86eba12bdb566587e6bc35b4dfdafb023f52b80]

initial revision, no functionality


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [6be50aff5f8df2da4d8772775647493df9f8a423]

Merge SRC614: 29.11.00 - 11:46:16 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [69eb8b08868f0899065105dacfb188b96f56ec08]

Merge SRC614: 29.11.00 - 11:43:35 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [5a7c550c9186ff161f91ef5373448e029540d77d]

Merge SRC614: 29.11.00 - 11:39:01 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [11f3ab42c3d09ff967f16ff7526ea0be5d02c6e8]

Merge SRC614: 29.11.00 - 11:23:04 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [aad043db4a5d796ea2954309f17e1836f78266d2]

Merge SRC614: 29.11.00 - 11:19:59 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [093a69bfdaf5cd06618d378d52b4dcb91bb23343]

Merge SRC614: 29.11.00 - 11:16:07 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [80aa3b90d0d64b56ad080dc4e514a2d5870e985e]

Merge SRC614: 29.11.00 - 11:17:08 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [037d593ea5a6ca7fd58dddb0327123d8f901dcfb]

Merge SRC614: 29.11.00 - 11:11:28 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [7495754a0d1302bb56f202257cd633505271a676]

Merge SRC614: 29.11.00 - 11:11:49 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [836cd88e6df361a8893c873d75951c32c5584e2e]

Merge SRC614: 11/29/00 - 11:11:11 (NoBranch)


2000-11-29  Rüdiger Timm  <rt@openoffice.org>  [53757d44451b7334d2b63d36f8c92cb917777f85]

Merge SRC614: 29.11.00 - 11:09:14 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [5abb6b9e47f2748b30325e82c92bd4638738a698]

Merge SRC614: 29.11.00 - 11:09:11 (NoBranch)


2000-11-29  Rüdiger Timm  <rt@openoffice.org>  [db92b52b780372b7ca7d52f7d1945b9d05139b0c]

Merge SRC614: 29.11.00 - 11:06:32 (NoBranch)


2000-11-29  Kurt Zenker  <kz@openoffice.org>  [3a53a663a66251a95e51e7346d7cbba7605c1bcd]

Merge SRC614: 11/29/00 - 11:03:09 (NoBranch)


2000-11-29  Rüdiger Timm  <rt@openoffice.org>  [1fffe92ce3afe5faec60c3c80a424841292bfbda]

Merge SRC614: 29.11.00 - 11:02:50 (NoBranch)


2000-11-29  Daniel Rentz  <dr@openoffice.org>  [525568499b743f61ba86e421f25ea4338686c5ae]

fix: wrong defines


2000-11-29  Daniel Rentz  <dr@openoffice.org>  [bb3f172edd8c7d8829ef34f58b76869d8d04cb0e]

chg: moved pivot table exp/imp to xcl97


2000-11-28  Sascha Ballach  <sab@openoffice.org>  [fd341286d90679a344c7498a9bcc5c9aa37b6d82]

#80874#; the mergerange on a ScMyCell is now the right


2000-11-28  Sascha Ballach  <sab@openoffice.org>  [d889970e6d24851eacdace2d7b47c15d8af2bd91]

#79771#; use new methods of ScDocument


2000-11-28  Sascha Ballach  <sab@openoffice.org>  [0d3021bcdfcfc2b26b05bbe0870109eb9fdd2111]

#80679#; must changes done


2000-11-28  Sascha Ballach  <sab@openoffice.org>  [9155894d7159ef56db9f812ec384af4d6d121ff1]

#79771#; methods added, which the next different row or column return


2000-11-28  Thomas Benisch  <tbe@openoffice.org>  [35779bc89de9687771ae62f3c0cab3e98019146a]

removed obsolete include file svx/vcsbxdef.hxx


2000-11-28  Niklas Nebel  <nn@openoffice.org>  [785b1f07cef6d851a4c2bb38f60442cb0bd4a876]

#80627# Command: use InputCommand for ExtText commands


2000-11-28  Niklas Nebel  <nn@openoffice.org>  [07e7c47c3d4f0042315c87bb5577447d1072a263]

#80627# InputCommand


2000-11-28  Daniel Rentz  <dr@openoffice.org>  [31de44e346534bc7d8d6e082d034b6ee3acb8bf2]

add: change tracking import


2000-11-28  Daniel Rentz  <dr@openoffice.org>  [d76f679ffcae0c199a9a85baab85d439aea62cbe]

add: change tracking import


2000-11-28  Daniel Rentz  <dr@openoffice.org>  [98090ef53b713f2f7bf8b2a3beb43e44c27a20b7]

chg: change tracking dump


2000-11-27  Niklas Nebel  <nn@openoffice.org>  [ef67675f75cb1d997136cb63b27678943e96c72b]

#79096# always use app font for input line


2000-11-27  gt  <gt@openoffice.org>  [3860ee1484312ddf1ea241f8ef908be3c4fa5b29]

explicit castings to avoid compiler warnings


2000-11-27  Niklas Nebel  <nn@openoffice.org>  [c5f2486d16994cdba9f60342f38feb9d45d61663]

#80425# new character tab pages


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [3fdc7005deb8e5fae79eef36d5587aa636ad54e7]

Merge SRC614: 11/27/00 - 09:38:43 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [dc172ac975a74b330b65e80317a3bcfb21f4502f]

Merge SRC614: 11/27/00 - 09:24:41 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [e2b33eca0d1622ed1d79e9bbe4cc4cdb1a2bf6f1]

Merge SRC614: 11/27/00 - 09:22:01 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [193aa700c1788bf225ebbbc9f9ef8795101aedc6]

Merge SRC614: 11/27/00 - 09:19:58 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [5ede0946c91dccd8c67045fa9a9a15232ef08ff4]

Merge SRC614: 11/27/00 - 09:16:58 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [aea67066fe3afe034a8595b4a1735f518bda20ab]

Merge SRC614: 11/27/00 - 09:15:23 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [744b5f0cca2d753113dba2c22dd1b02e769c349f]

Merge SRC614: 11/27/00 - 09:12:30 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [2207191a9cd2a7c855d9abaf8a7e3794fdd23b24]

Merge SRC614: 11/27/00 - 09:07:35 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [53e8db529debdf4ef0dd58793e6aa6ebbbdc6678]

Merge SRC614: 11/27/00 - 09:05:08 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [7d81e48d5457c5458ca03b5560d053e7b268c305]

Merge SRC614: 11/27/00 - 09:01:16 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [5076733ead95f0877c714df83026a4dfec46c099]

Merge SRC614: 27.11.00 - 08:58:14 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [7d95e3864907943221d3d33d0363e69e2939f4e9]

Merge SRC614: 11/27/00 - 08:58:01 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [707754c0181ee4a5dbb247c86cced59ecd734ed1]

Merge SRC614: 11/27/00 - 08:56:41 (NoBranch)


2000-11-27  Rüdiger Timm  <rt@openoffice.org>  [f8573925aba9827205fd3d318591e6f449d327cb]

Merge SRC614: 27.11.00 - 08:54:40 (NoBranch)


2000-11-27  Rüdiger Timm  <rt@openoffice.org>  [18afd492ba6fd3b2cc03c47cc35fa97737322431]

Merge SRC614: 27.11.00 - 08:54:13 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [fa63cbfb34f875ad38ee468a460b351bffc4a015]

Merge SRC614: 27.11.00 - 08:54:05 (NoBranch)


2000-11-27  Rüdiger Timm  <rt@openoffice.org>  [95366552916146e6fe59368d5d9e1662ba079cee]

Merge SRC614: 27.11.00 - 08:52:56 (NoBranch)


2000-11-27  Rüdiger Timm  <rt@openoffice.org>  [8b314609d56b33900834cade019106f3dad67ed6]

Merge SRC614: 27.11.00 - 08:52:59 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [6e46226ed2b332d391d4ce60f933eb6961456ac6]

Merge SRC614: 11/27/00 - 08:52:32 (NoBranch)


2000-11-27  Kurt Zenker  <kz@openoffice.org>  [7ee4463dd9e7725918fa027ac5b2457538265d3c]

Merge SRC614: 11/27/00 - 08:50:24 (NoBranch)


2000-11-26  Christian Lippka  <cl@openoffice.org>  [10aa437f8d28abc9cf77077180ada263af1befd9]

#80699# do not use _createShape anymore


2000-11-26  Christian Lippka  <cl@openoffice.org>  [6ab39a4b932df0103c852aa86660b9319702a391]

#80699# do not use _createShape anymore


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [e4ac921d67ac4c7fa826cd7cbce3ebd7f41715e4]

#80688# pScriptTypeData


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [c9423197c66a691ce435ac5544ca214b279b93c9]

#80688# use ScriptTypeData


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [93bdfda2822b7de59558fd7c38cb535606089b1d]

#80688# ScriptTypeData


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [0a4af0ecdf5f1a1d36dbbcc2429216eaaa2ca1e4]

#80753# image list: SID_ATTR_GRAF_CROP


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [42f686438fcf1b66ebd3acb16b1a5fa985ea6952]

#80753# use SvxGrafAttrHelper


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [73f052d4aa045c6b688ba59c5e3e2ef618a853a2]

#80753# SID_ATTR_GRAF_CROP


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [4df473602163f37bd173fa0a4aee30bb53f5dd37]

#80747# FillEditItemSet: language items


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [5597496f82d280ebe83bca92a7a7500fce33cbc8]

#80747# document has 3 languages


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [d2456fe824eb3407c38f2c345d66a08d5c35be8d]

#80747# initialize languages from options before loading


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [85598cf1299827e3f6846997b5195a0c6d0f8754]

#80747# Export: GetLanguage not needed


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [0164bab4b12ad2678720962c9d2d7de578b71a32]

#80747# slots for cjk/ctl default language


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [233a88c53010dd84c366e9ecb077b03089969626]

#80747# document has 3 languages


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [20f0bfdb067a919aead700c9efde51c0c1d5325e]

#80747# language for thesaurus depends on script type


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [33fe3503b1339e0efba8b2e68cd0db5a36e9f8e4]

#80747# GetEffLanguage


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [b42bbe28539d6c0d336f52f25f8efa5c88484c52]

#80747# document has 3 languages


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [05722ee200b687e71e06b4d93df70e48db208c81]

#80747# GetSpellSettings: 3 languages


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [0ef039489683caeb983a87f1269fb41c667cbed5]

#80747# slots for cjk/ctl default language


2000-11-26  Niklas Nebel  <nn@openoffice.org>  [e80cba93f19f3fd114396fbae441423ffc452ecb]

#80753# graphic filter slots


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [e82cc010a50402f2671658d0588dd35923a72059]

#80753# InvalidateAttribs: graphic filter slots


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [6c74eac62e327d3618ee8ec9e77f31de93214cbc]

#80753# SID_GRFFILTER


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [755e6512636672883781759df29c48aba795009d]

#80753# graphic filter integration


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [e3620f8cca099595fe0ca484a4d95b4ace7ac47c]

#80753# SCSTR_UNDO_GRAFFILTER


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [ecd278fc61e768bdad2aad1573f3d4b572c64e75]

#80753# ExecuteFilter/GetFilterState


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [05a19dea2953caaf829fdd495dc59fc5795a226f]

#80753# include grafctrl


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [ac3b908f3b2b2421ac74b5f449a409e810547d43]

#80753# register graphic filter toolbox controller


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [1fba01b7acb1f8e64528ce31976cbba10f32ba8a]

#80688# CheckWidthInvalidate: cjk/ctl font items


2000-11-25  Niklas Nebel  <nn@openoffice.org>  [b6c968c9e75e9b8962fd654461edf36ddc5135dc]

#80688# get default font for cjk/ctl with GetDefaultFonts


2000-11-24  Niklas Nebel  <nn@openoffice.org>  [1f2630677794a9f0f1482c6606e74f47b9c0ced7]

#80688# map toolbox controller font items according to script type


2000-11-24  Niklas Nebel  <nn@openoffice.org>  [35f50569071b4ccd2829635621cfb1fdf47c102b]

#80688# InvalidateDrawTextAttrs: cjk/ctl font slots


2000-11-24  Niklas Nebel  <nn@openoffice.org>  [781db937a0713b1e4a9a9d85071be2b0705fb309]

#80688# Slot-IDs for cjk/ctl font items


2000-11-24  Niklas Nebel  <nn@openoffice.org>  [d1590ad7448adcc5515abedca09074ea4a5de215]

#80688# PutItemScript


2000-11-24  Niklas Nebel  <nn@openoffice.org>  [1c5a99c9c24b901361e4daacf4f7bab044dec707]

#80688# GetSelectionScriptType, ApplyUserItemSet


2000-11-24  Daniel Rentz  <dr@openoffice.org>  [d5fc9bb828d0c7c8c544d02507d82b0b5cf2846a]

chg: dump change tracking


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [5eab5573009b9cd271df9235c89593646aa45e5b]

#80688# use cell script type for optimal width/height


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [5efaeea0dc4799e96e6958aa2fc64cba98d2af97]

#80688# reset cell's script type at changes


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [f06968a200a30a100885c67249183e3be214ab6a]

#80688# use items for cjk/ctl fonts


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [6d0e8922b8707d3a77d542ba2fd71e7b4cd6fb9e]

#80688# GetScriptType / GetCellScriptType


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [73f0bf244241d1b723a600bbbf4de04600964b37]

#80688# member nScriptType


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [d67ce422412d6a59c29dfcfb55acc8bc23f6eca7]

#80688# use items for cjk/ctl fonts


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [3c123e68202348f682787e65333209365f811209]

#80688# GetFont: nScript


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [e64b479292e2ba5b9b40b6d391ddf705f1929517]

#80688# properties for cjk/ctl fonts


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [ddef14a5d588ef9de13b0c8797c123d821b43e98]

#80688# items for cjk/ctl fonts


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [9fc4a45ad7cfae84fb2d3feb54c30fb016443bb6]

#80688# new version map (items for cjk/ctl fonts)


2000-11-23  Sascha Ballach  <sab@openoffice.org>  [ab1ff9773d6420576d040dd8072c401f04855b7d]

#80363#; it is now possible to save all settings in the calculate dialog


2000-11-23  Niklas Nebel  <nn@openoffice.org>  [407793c1e171448582ae8c67b186afedc1cad716]

#79088# image list bitmaps for CJK


2000-11-23  Sander Vesik  <svesik@openoffice.org>  [8009dad75de77a72a1fdb57b01a3ce80f72c1488]

Remove stl/ from #include statement


2000-11-22  Sascha Ballach  <sab@openoffice.org>  [b64f8464caae5ebd29855d3eea7975bd0d6479a0]

#80069#; add a possibility to say whether to export paragraphs and his styles or not


2000-11-22  Sascha Ballach  <sab@openoffice.org>  [35114eeec04e2cf6b1c65f94a4990808d8347a08]

#80598#; catch the exception, this is only a hack. The original bug is #80606# .


2000-11-22  Niklas Nebel  <nn@openoffice.org>  [905ee82c961f56f6e3c4d941177ae280c5addced]

#80595# FillEditItemSet: put font in CJK and CTL items


2000-11-22  Oliver Bolte  <obo@openoffice.org>  [e3508f77a07c85f00b90fb896f9cd92d4e878791]

#65293# parse error linux


2000-11-21  Niklas Nebel  <nn@openoffice.org>  [cbaeb1e215d0f0bd3afe8597ce0d0d502e8b5fc3]

#80136# don't call GetGraphic during paint


2000-11-21  Jens-Heiner Rechtien  <hr@openoffice.org>  [df2db34507c15892208812e02127f3589ee72db1]

#65293#: typo


2000-11-21  Jens-Heiner Rechtien  <hr@openoffice.org>  [2de7709708da4495be5c6dee6b8fbdf196aca1bf]

#65293#: required change SvtModuleOptions().IsChart()


2000-11-21  Niklas Nebel  <nn@openoffice.org>  [772147ae50141cb3b42515363894589cc4ac3999]

old includes removed


2000-11-21  Sascha Ballach  <sab@openoffice.org>  [bae38f45e7fbfdd3f55f5ae7c828ca266274725e]

#80364#; it's now possible to Export/Import DDE Links in XML


2000-11-21  Sascha Ballach  <sab@openoffice.org>  [47f3974f3970b68dc2ce43c5d973bc6721d7ceb3]

#80364#; it's now possible to Export/Import DDE Links in XML


2000-11-21  Eike Rathke  <er@openoffice.org>  [aa4048718544b9742bff6e9b25889958a670c05f]

add: SetFixDateTimeLocal


2000-11-21  Niklas Nebel  <nn@openoffice.org>  [fd2e1aa4065ad514062035a3a4bd0580e72e68f3]

#80518# missing font properties


2000-11-21  Eike Rathke  <er@openoffice.org>  [cac1db67c83d2f6c49a53adc163e9732d2df2af8]

SetCell: NULL pointer is allowed


2000-11-21  Eike Rathke  <er@openoffice.org>  [11c2fe9655fe115137a2bbecaa3a455bd3a2e0ec]

add: AppendContentOnTheFly, SetOldNewCells, SetCell for import filter


2000-11-21  Eike Rathke  <er@openoffice.org>  [264dbad959b9155c46c8610ff74e5eac4d3f2949]

add: SetChangeTrack for import filter


2000-11-21  Daniel Rentz  <dr@openoffice.org>  [d1c24af37c41063ba4dc81bd932d4e78124cd741]

add: dumping change tracking substreams


2000-11-20  Sascha Ballach  <sab@openoffice.org>  [91b87c476bd9cdeba97bf36a3c0ab61fb37a85ac]

#80518#; it si now possible to get the mode of a dde link


2000-11-20  Sascha Ballach  <sab@openoffice.org>  [391171e09586f070479d7c708cf4dca234054006]

use the official text style map and no longer my one


2000-11-20  Sascha Ballach  <sab@openoffice.org>  [303e5cd2db8c743d3a21f3fdaad1d5fca63ecf5a]

move dde link mode defines to document.hxx


2000-11-20  Sascha Ballach  <sab@openoffice.org>  [0e7b0ae93568060104bafccacd70028efcbb923a]

now you can get the dde link mode


2000-11-20  Sascha Ballach  <sab@openoffice.org>  [27633731bbeb2db45b01bee2c5f0416012b91c6f]

DDE-Links Import added


2000-11-20  Niklas Nebel  <nn@openoffice.org>  [7e4401d2ce6be0102a5c6e406db196843bb5bda1]

change for 614: SearchText -> TextSearch


2000-11-17  Sascha Ballach  <sab@openoffice.org>  [9c3b46482aef64cfdaa142c7afbe9742f3f62333]

makes the ScMatrix Pointer changeable


2000-11-17  Sascha Ballach  <sab@openoffice.org>  [8d217282141ee1fc789a615bb2f946d5bcefb7f6]

fix two little bugs


2000-11-17  Sascha Ballach  <sab@openoffice.org>  [d5065c8802249a7072613be9b12d81bc0497024e]

makes the export of dde links possible


2000-11-17  Sascha Ballach  <sab@openoffice.org>  [0b73635ccd5c26d781d8bcc850f03547dccc1920]

makes the xml export of dde links possible


2000-11-17  Sascha Ballach  <sab@openoffice.org>  [a736c8a21acc8b351b2cc5b87d0e362e00efd381]

make the export of dde links source possible


2000-11-17  gt  <gt@openoffice.org>  [871196136dc5a711c39d87170c42ef5bb2b8ded4]

misc preparations because of weird merge probs


2000-11-17  gt  <gt@openoffice.org>  [47fc04e27219c9a2344bc8242ebc6ea855afac82]

misc preparations because of weird merge probs


2000-11-17  gt  <gt@openoffice.org>  [231568055a8994bf163b56e2712866edd346e5b4]

OLE export flags for export


2000-11-17  gt  <gt@openoffice.org>  [ce86469a11b0f58feaa4a9907a55741eeb13cfd6]

OLE import flags for import (math, word, ppt)


2000-11-17  Sascha Ballach  <sab@openoffice.org>  [17af6598026f3cb04f16353470d2418215341b65]

set the start of DDE Links export


2000-11-17  Sascha Ballach  <sab@openoffice.org>  [dacf7875a202390bf31da9c66ab1841511b56824]

remove some unnecessary lines


2000-11-16  Niklas Nebel  <nn@openoffice.org>  [22b60ec24876e87ca16fd8bcb8a1abeee2165952]

#80394# color listboxes resized to fit in dialog


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [c3891d4a1be2fbb3a1c2bf6af9c39cbf9cb71f5b]

move the validations from the iterator to the cellstyles


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [6999c1f03d10a8074b874975c51d77a8123bdca3]

change the include ustring statements


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [48a894d2e677a99ebdee3ee6a55ee1b56b713814]

change the include ustring and vector statements


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [21d50792b491b2709293c6b9b432feb93cef54b9]

try whether the XTextCursor is and then use him


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [b989be825a1d7402cb299f92aedcb0d4507535f8]

add the method SetStatisticAttributes


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [4e3d3ff270f360360f6dae1c14894555f8d14876]

change the include ustring and vector statements


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [399ada9fa509a2a4e5f27e96f6b081bc63dbb753]

change the include vector statement


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [a2820c90711002cfd78ff321f62d30da0c438f6e]

change the include debug statement


2000-11-16  Rüdiger Timm  <rt@openoffice.org>  [0d9dbd7bccb1f90725fdeb9ad64ddb181681d33f]

Merge SRC613: 16.11.00 - 16:38:36 (NoBranch)


2000-11-16  Niklas Nebel  <nn@openoffice.org>  [5786de4cfa86bd52edf975101022356503a56b35]

NavipiCfg changes


2000-11-16  Niklas Nebel  <nn@openoffice.org>  [8c55690406da6797cee4f18549805fcd87c3b398]

no ConfigItem


2000-11-16  Niklas Nebel  <nn@openoffice.org>  [0cef03631ec00d23ac697a4eac03a20aacd86ed9]

#75222# UndoWidthOrHeight: allow several sheets


2000-11-16  Niklas Nebel  <nn@openoffice.org>  [4d3e8f96e5ce30989938dc76091ccc1ead91d58a]

#75222# SetWidthOrHeight: allow several sheets


2000-11-16  Niklas Nebel  <nn@openoffice.org>  [9c0cf9e5caffc3d74f78b2555b91b1fca9a9f94a]

#75222# SetWidthOrHeight: pMarkData


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [ea7ca98f731a9fc38232bc569136394ace5a29f7]

store and set old textcursor


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [2ef7f9012c5a9f0b75e84441bc6ce7e88a67c917]

add Progressbar


2000-11-16  Sascha Ballach  <sab@openoffice.org>  [cc97641c812dd7bdb912f8944de92950a3dbd2ea]

set the autofilter flag


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [90401b7be2e7cc4d775e117d9d8b6b05f49e96eb]

Merge SRC613: 15.11.00 - 22:51:47 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [06da1819712a7b01e8afbdaffb0f6c19c47b6948]

Merge SRC613: 15.11.00 - 22:49:25 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [c6c0eade296e28459e270ec34286320c8dbddadf]

Merge SRC613: 15.11.00 - 22:38:54 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [79bbff5c6e8256e947c30ef3cd3d1204a3e76cde]

Merge SRC613: 15.11.00 - 22:36:58 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [9e7d4b59a9c363d0f0bf4db3cb745b3dc632be3a]

Merge SRC613: 15.11.00 - 22:34:09 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [1507b8157e976b92c17695f08effbfd82b9c5d7c]

Merge SRC613: 15.11.00 - 22:32:19 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [3dcfcccbdbc30266b694d9584c027b773c82984d]

Merge SRC613: 15.11.00 - 22:28:24 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [a5459fa933ae6050a06f72b5b2872344eb1e36c9]

Merge SRC613: 15.11.00 - 22:26:35 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [81b3e17ff9b234ec02435b9b426e59672be5b531]

Merge SRC613: 15.11.00 - 22:25:09 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [61c41f348f779f976201ae42bf47f45103d50026]

Merge SRC613: 15.11.00 - 22:23:44 (NoBranch)


2000-11-15  Kurt Zenker  <kz@openoffice.org>  [c911ad2dd709a6dd9bd6b5a28caa9b215eacae77]

Merge SRC613: 15.11.00 - 22:22:15 (NoBranch)


2000-11-15  Kurt Zenker  <kz@openoffice.org>  [4f421812fe2d3341cfd5320e66f48457c2a88c3f]

Merge SRC613: 11/15/00 - 22:22:03 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [221a8b2fdb91beb47a8f1da5b0c71f6888bf8bc7]

Merge SRC613: 15.11.00 - 22:21:30 (NoBranch)


2000-11-15  Kurt Zenker  <kz@openoffice.org>  [ceb8d61d1898228022a21b0a23a2060ea26f32d4]

Merge SRC613: 15.11.00 - 22:21:14 (NoBranch)


2000-11-15  Kurt Zenker  <kz@openoffice.org>  [8a865230028da10eca68b3c633e62d1c169a5ba6]

Merge SRC613: 11/15/00 - 22:20:53 (NoBranch)


2000-11-15  Rüdiger Timm  <rt@openoffice.org>  [419b16d243617b016bf260a0fb732c2963f61425]

Merge SRC613: 15.11.00 - 22:20:24 (NoBranch)


2000-11-15  Niklas Nebel  <nn@openoffice.org>  [943b3e92e3a2ec019f9a3322759d75aa4661e9b6]

#78799# allow change of print ranges for multiple sheets


2000-11-15  Sascha Ballach  <sab@openoffice.org>  [3e59708470260dbe2a64b950bab457cefa869016]

exportAutoDataStyles added, Celltext export changed


2000-11-15  Sascha Ballach  <sab@openoffice.org>  [ca6c55f777937245c2e00aa712d55f514ea95372]

make the import of shapes with a end position possible


2000-11-15  Sascha Ballach  <sab@openoffice.org>  [cb13e1643c2fd0df34ad5dcca21abdac21fad637]

move the include of global.hxx from cxx to hxx


2000-11-15  Jens-Heiner Rechtien  <hr@openoffice.org>  [1fb547756dec9c0b88deae8b16dc1338655bc584]

#65293#: includes


2000-11-15  Niklas Nebel  <nn@openoffice.org>  [923697d271b4882804cb65e746f6c3c8e6283a2a]

#80309# Command: start edit mode for COMMAND_CURSORPOS


2000-11-15  Daniel Rentz  <dr@openoffice.org>  [29c1128eda674b72a8cfc67febc77ece921d446d]

fix: operator<


2000-11-14  Sascha Ballach  <sab@openoffice.org>  [f5784f15d50bdab5b44ea2050e3e8425551ad0da]

Export/Import Shapes with a Endposition and with a anchor on a table


2000-11-14  Sascha Ballach  <sab@openoffice.org>  [6146002722c4301a64b895e0f2535492c5c07452]

remove static operator


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [8092e63ee569a9ee52c96a3daefe0dc4a0207666]

#65293#: MUST: soffice.ini change


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [8f7a3bafd00dac5b6339a8b66fcc320d3357bcc6]

#65293#: MUST: soffice.ini change


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [b1559b14365496a5e36df919696c2da207f4b906]

#65293#: included <sfx2/app.hxx>


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [391d53ae273837aada9d1712cb9146b5d18129fd]

#65293#: MUST: soffice.ini change


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [70dbfce49eef3e8fe06e523ee7fa16e4068f59c9]

#65293#: new implementation missing


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [dc262d13797dc4b9036f835e584dc320019e2fc9]

#65293#: included <sfx2/app.hxx>


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [8268bf7c1b2c96cf666cb4e747449f28d1d097db]

#65293#: MUST: soffice.ini change


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [1e820d4809dc3a918546d3455ae3239fba67c5ac]

#65293#: included <sfx2/app.hxx>


2000-11-14  Niklas Nebel  <nn@openoffice.org>  [b1171538aec05cde0cdd51ebe31cee53295544a5]

#80274# gallery child window


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [c6e9e989ef3be47659a4763cc35114236224f48c]

#65293#: MUST: soffice.ini change


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [faeffb2fa7be0a8b3aacb0d903743f01083056a1]

#65293#: removed COMMAND_EXTTEXTINPUTPOS


2000-11-14  Jens-Heiner Rechtien  <hr@openoffice.org>  [826b9f86d62e8636104f3f3ace94ee03ad484bc9]

#65293#: MUST: soffice.ini change


2000-11-14  Sascha Ballach  <sab@openoffice.org>  [e4667688d197418676bdb1cdc44602ca835d0a4e]

end position of a shape added


2000-11-14  Martin Hollmichel  <mh@openoffice.org>  [f906bc6f58f0719b147e0196e199503a29be8617]

add: header sfx2/app.hxx


2000-11-13  Niklas Nebel  <nn@openoffice.org>  [baf66c8d2f081772166f5f533ee731d413893033]

#80222# less and greater added to RefFinder delimiters


2000-11-13  Niklas Nebel  <nn@openoffice.org>  [0628d7f1b047da5fb00f18f88f8c33bf55db2056]

create DispatchProviderInterceptor


2000-11-13  Niklas Nebel  <nn@openoffice.org>  [505a5458c8863d37d31261790ccea1308807ec21]

dispuno


2000-11-13  Niklas Nebel  <nn@openoffice.org>  [bc8a0b7d89ce775f9555b4f81313604690f5f4b5]

DoImportUno


2000-11-13  Niklas Nebel  <nn@openoffice.org>  [c1eb528cdbc3b8082de5a21d1f94af42e7dd0e47]

dispatch object


2000-11-10  Niklas Nebel  <nn@openoffice.org>  [71b6d52904a6024a34b485f77f2d580f797812ca]

#76477# StartQuerySh removed


2000-11-10  Niklas Nebel  <nn@openoffice.org>  [85776491c52cfb34d35d43137b7b06dd6bf8a107]

#76477# call ShowInBeamer instead of StartQuerySh


2000-11-10  Niklas Nebel  <nn@openoffice.org>  [101343eeddf19a9ecea6cad431ec2e8a3a636a2d]

#76477# ShowInBeamer


2000-11-10  Daniel Rentz  <dr@openoffice.org>  [1cd896f6ffbc70e2115b78c93ff3b3c8be11a6d8]

add: import of table:detective (global function list)


2000-11-10  Sascha Ballach  <sab@openoffice.org>  [e7eee14c903542e93039afe5f51e384b52e85e25]

use one XSpreadsheet instead of create on every case a new one


2000-11-10  Sascha Ballach  <sab@openoffice.org>  [d8b435bd448bab5c085dc6feee98fce8d4bd520f]

make modules of the xml export


2000-11-10  Daniel Rentz  <dr@openoffice.org>  [f018eb9824d80fee7674428c1a6ef39aa45a0cdb]

add: import of table:detective fix: misc.


2000-11-10  Thomas Benisch  <tbe@openoffice.org>  [9885d77eb5bba9745de5eafb230f7ddeb282f301]

removed outcommented basctl include file basicide.hrc


2000-11-10  Thomas Benisch  <tbe@openoffice.org>  [85746804230d07075af70edce0fb70dbc680bfc8]

removed outcommented basctl include file basicide.hrc


2000-11-10  Daniel Rentz  <dr@openoffice.org>  [d2d112988e7110516810be48a4b800238867346e]

add: import of table:detective


2000-11-10  Niklas Nebel  <nn@openoffice.org>  [09df5731e501db0951dc0a5cc6d6c166d33fc309]

#78889# SearchCell: preserve line breaks


2000-11-10  Niklas Nebel  <nn@openoffice.org>  [7d7ab9ec8f5651174bc20ba30c597d63b261e3a1]

#78889# UndoReplace: undo string may contain line breaks


2000-11-10  Daniel Rentz  <dr@openoffice.org>  [0d669d6b5f4f5fcbe111b60f7391d7740aae45d1]

add: export of table:detective


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [7335bcba1b5f96f04badecaf09f832662b8c8d08]

#79533# use HidePrint flag in DrawToDev


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [d640ff3f66cab655db82dc8a9b6dbec3737ef4bf]

#78913# descriptions


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [186cef12ef60f487594c15fb4e297fc3c71e0432]

#80142# service names corrected


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [60f282812eade38a8fd88d2225d76b3c776382fd]

#80170# support XRangeSelection


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [85464ef17244f9b5c50e33c6e3d77108ded7970c]

#80170# range selection properties


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [79836128b3afd2746a4757de30bcaad06c2e389d]

#80170# StartSimpleRefDialog / StopSimpleRefDialog


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [ef53df7edc976cf7fd2437bbc2afafee79b0152d]

#80170# SimpleRefDlgWrapper: links / flags for use with api


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [c2286ff7c48fee124e45fc2cb3c053315ed6fd39]

#80170# links / flags for use with api


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [8414af72eed198607efddef8116a6b0f253cae9a]

#80170# use right view for document title / SetRefDialog


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [29f31e0ab16e9f9355f5bb85db0178d5fa137c5d]

#80170# SetRefDialog: pass view frame


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [0011c596e6293bdd9c1498de338e013849214a9d]

InsertObject


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [7d1ecb9afe8452f2e84ce7affbefeebce6164e29]

Merge SRC612: 09.11.00 - 14:20:33 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [47d12006bc3ec3e3a0bf4f30bbc10f5176ad956e]

Merge SRC612: 09.11.00 - 14:19:07 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [4caa657a4c211b50af8ab030fe401f8a5f6ed7fb]

Merge SRC612: 09.11.00 - 14:17:52 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [c3709ffd5eda0f38357e7d28d1d3b3a718bd404b]

Merge SRC612: 09.11.00 - 14:14:48 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [f520b2b640a3d124c041754dec4092e8efc4c2f4]

Merge SRC612: 09.11.00 - 14:04:23 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [e84bb7a1e4314945b1729611422dd93a4502e454]

Merge SRC612: 09.11.00 - 14:00:38 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [742926ba16a18aa8bf59e83e3b61e377ec4458ce]

Merge SRC612: 09.11.00 - 13:58:32 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [f08bf88cb84af14533d9093476d6d321ad310edd]

Merge SRC612: 09.11.00 - 13:55:21 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [8225bea8a56f5b0679bf1820198f50f299909e75]

Merge SRC612: 09.11.00 - 13:48:46 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [79b907ec1a1186e2fd61e0afa0590d4c246b3593]

Merge SRC612: 09.11.00 - 13:46:27 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [6c210a51a822d598376d4d969a7fd0e23454426a]

Merge SRC612: 09.11.00 - 13:43:08 (NoBranch)


2000-11-09  Rüdiger Timm  <rt@openoffice.org>  [067342c6a099ba1aeb7e0570c1f75e924cb5bace]

Merge SRC612: 09.11.00 - 13:42:04 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [4ed2f067bfb12a8f646f9d91a16fe1555cb3fb6e]

Merge SRC612: 09.11.00 - 13:41:27 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [5ff419bc98596e541d4333f524721d518028da5f]

Merge SRC612: 09.11.00 - 13:41:03 (NoBranch)


2000-11-09  Rüdiger Timm  <rt@openoffice.org>  [69a4e456dfa08226acc9dbc03fd0f2971b280223]

Merge SRC612: 09.11.00 - 13:40:41 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [4d6eed7d2fa24541aa09a8a04434754d4d97f5a8]

Merge SRC612: 09.11.00 - 13:40:06 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [434c17ec3e20847e48acb39b068a0e42dd4ee0a6]

Merge SRC612: 09.11.00 - 13:39:58 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [42d864d77b8316b7003dd6281f09387d7612e922]

Merge SRC612: 09.11.00 - 13:39:28 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [09d935d37fcdff45927dd92bcf3893be9545a596]

Merge SRC612: 09.11.00 - 13:39:24 (NoBranch)


2000-11-09  Kurt Zenker  <kz@openoffice.org>  [0f181bd5f3bbd78d5876c443dda1df10ca79feba]

Merge SRC612: 09.11.00 - 13:38:48 (NoBranch)


2000-11-09  Niklas Nebel  <nn@openoffice.org>  [bce8e83da4a2e6b103539d87fd2b82cc671a04c2]

inimgr include removed


2000-11-09  Daniel Rentz  <dr@openoffice.org>  [ec8630f2868830bbad27fb68ed54d60357dc5c12]

chg: address/range converter routines


2000-11-09  Daniel Rentz  <dr@openoffice.org>  [abdb56e97677ecdcae413fd3d5f2eb32b5d4f23c]

add/chg: address/range converter routines


2000-11-09  Daniel Rentz  <dr@openoffice.org>  [51ea647f115a072bbee92d8f415956d268ef69b9]

add/chg: address/range converter routines


2000-11-08  Kai Ahrens  <ka@openoffice.org>  [231b78843e4ddbaf9674227e9bce00d98b8297ce]

replaced XOutBitmap::GetBitmapFromGraphic with Graphic::GetBitmap


2000-11-08  Daniel Rentz  <dr@openoffice.org>  [b940a0b0497d5cb26fae0b880f9bf071bf2c0b92]

chg: improved export cell iterator


2000-11-07  Sascha Ballach  <sab@openoffice.org>  [153c140bf2990ac123a03d874af55185ded837fd]

must changes of Michael Brauer (XMLPropertySetMapper, SvXMLExportPropertySetMapper and SvXMLImportPropertySetMapper)


2000-11-07  Jens-Heiner Rechtien  <hr@openoffice.org>  [0b7bdcf907a7799ecf68ec57240351a2345237bc]

#65293#: unotools -> comphelper


2000-11-07  Hans-Joachim Lankenau  <hjs@openoffice.org>  [5b80521532da797e182ff70fa50a33bfa420b8f4]

use min/max from stl


2000-11-06  Niklas Nebel  <nn@openoffice.org>  [185e8f328feeb3d503cacbe65774e7af39446eb8]

GetDetectiveObjectType


2000-11-06  Sascha Ballach  <sab@openoffice.org>  [26a3dee42aa3b9871cb61123ee35823c4c097259]

catch exception if the name of the new table isn't correct


2000-11-06  Niklas Nebel  <nn@openoffice.org>  [b2328f31a2b31f770d3358c6e1d3559868a82ca1]

SaveTableAutoFmtNameId ini file entry disabled


2000-11-06  Niklas Nebel  <nn@openoffice.org>  [26638959516dbeb652c8cc40ac08ba765a485738]

get palette path from SvtPathOptions


2000-11-06  Niklas Nebel  <nn@openoffice.org>  [71aff125b27c52afddd3a54e12a1178649147dfa]

iniman include removed


2000-11-06  Niklas Nebel  <nn@openoffice.org>  [f2e7e711c39451a570d63572062df8298fae7ab7]

read wk3 flag from configuration


2000-11-03  Niklas Nebel  <nn@openoffice.org>  [088c7c0e6137c52d297c8cf675f9491d71f743c8]

dont use DirEntries for dBase export


2000-11-03  Niklas Nebel  <nn@openoffice.org>  [94de31c8c7ed3e025f574e6d8ed581b2f9ebca7a]

MoveFile/KillFile/IsDocument


2000-11-03  Niklas Nebel  <nn@openoffice.org>  [0f75e2744c65d3069b04dea238668f2b6c0b581e]

PutData: no string cells for empty strings


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [abcdd11c92ce92f1c9980482e47ffe11a5bd4ef6]

Merge SRC610: 03.11.00 - 17:49:48 (NoBranch)


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [1cc60e51d1091b2bfc6079d55577f4e4636461a9]

Merge SRC610: 03.11.00 - 17:36:54 (NoBranch)


2000-11-03  Daniel Rentz  <dr@openoffice.org>  [fd6ff4db4263556e167008fcde144a3d479a63de]

chg: ScXMLConverter integrated


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [7c4d4c7ae22f3c5849910fb69017765cc9bf49f2]

Merge SRC610: 03.11.00 - 17:30:10 (NoBranch)


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [08327f8226ca932f1fd0fdd989c20d49f113906a]

Merge SRC610: 03.11.00 - 17:25:57 (NoBranch)


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [68e150797e1be4de39b6eb908cd7505b60a56518]

Merge SRC610: 03.11.00 - 17:26:20 (NoBranch)


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [6aaa091790045ecaea2539974bbff7410e742d41]

Merge SRC610: 03.11.00 - 17:24:34 (NoBranch)


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [6df89f6d361b10d6412995a26c7b1d1aa93364d3]

Merge SRC610: 03.11.00 - 17:23:26 (NoBranch)


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [84bae25cb2e8d06e07fd89f35c2b75cecabe1e80]

Merge SRC610: 03.11.00 - 17:23:24 (NoBranch)


2000-11-03  Kurt Zenker  <kz@openoffice.org>  [0bb6dac16360925a6556ea1444de473db32bbe60]

Merge SRC610: 03.11.00 - 17:23:22 (NoBranch)


2000-11-03  Daniel Rentz  <dr@openoffice.org>  [31d7858e1e06cb720a8be690ce0e5437fe145aac]

fix: allow single cell addresses in consolidation dialog


2000-11-03  Niklas Nebel  <nn@openoffice.org>  [3b614e947a8dd14337bad1b758db8bc9ebb27573]

dispose RowSet after im-/export


2000-11-03  Daniel Rentz  <dr@openoffice.org>  [c311e290a7f6675b9e7e23de53cf6f4b24b9a229]

chg: ScXMLConverter integrated


2000-11-03  Daniel Rentz  <dr@openoffice.org>  [0b92df4611b1edb9149c94bcf50a6cc8fa307dd9]

add: GetStringFromOrientation()/GetOrientationFromString()


2000-11-03  Niklas Nebel  <nn@openoffice.org>  [30bcbac421ba904749055d317534d08f7b9a53a2]

libcall include removed


2000-11-03  Sascha Ballach  <sab@openoffice.org>  [0a76278929e820854bde8c6cacffa07419197e13]

the defines were wrong. they all were 0. now they are right.


2000-11-02  Niklas Nebel  <nn@openoffice.org>  [c0e6caf777552592e59ac60e5657e206703c82ea]

#79817# use measurement system dependent config items


2000-11-02  Niklas Nebel  <nn@openoffice.org>  [8e109a8977e91cded245e47b3950ff96a9911063]

#79817# ScLinkConfigItem is now in optutil


2000-11-02  Niklas Nebel  <nn@openoffice.org>  [13b05b8dfd7b4e09b8aa0015101e2678e53916dd]

#79817# optutil


2000-11-02  Niklas Nebel  <nn@openoffice.org>  [158aeda74703d5d54cd94b324c436b8f29d94c25]

#79817# ScOptionsUtil and ScLinkConfigItem


2000-11-02  Daniel Rentz  <dr@openoffice.org>  [c4dd2be6b95b33463a0a3af01ac64c0968e3272e]

add: table:consolidation


2000-11-02  Daniel Rentz  <dr@openoffice.org>  [ef4b194dd5b94c78b3f3c3d4434a039bde497162]

add: table:consolidation chg: ScXMLConverter integrated


2000-11-02  Daniel Rentz  <dr@openoffice.org>  [973209b3f27363465cac7085d180753348e63db7]

chg: ScXMLConverter integrated


2000-11-02  Daniel Rentz  <dr@openoffice.org>  [833b361a55ca9b7516e1da17da5d39b9c72d6474]

add: table:consolidation


2000-11-02  Daniel Rentz  <dr@openoffice.org>  [5592bf71e2b56d360c6bf05f4655af7cfb57d394]

add: XMLConverter.cxx add: XMLConsolidationContext.cxx


2000-11-02  Daniel Rentz  <dr@openoffice.org>  [ab19f965b62f5ab2600b2924dbd39992ab7d5643]

chg: ScXMLConverter integrated


2000-11-02  Sascha Ballach  <sab@openoffice.org>  [6cba519c64b0d2e24e447ba54cb020b82f8c27a8]

remove gotoEnd() before remove last paragraph


2000-11-02  Daniel Rentz  <dr@openoffice.org>  [ab08fd7d842dbe7f610140976d58664b63bf17db]

fix: im/export of ScSubTotalFunc add: GetTokenCount() add: GetSubTotalFuncFromString()


2000-11-02  Sascha Ballach  <sab@openoffice.org>  [01395539041053670a0a4206bb5fb9e055e9658a]

use ParseFormula with the Formulas of the Condition


2000-11-02  Sascha Ballach  <sab@openoffice.org>  [0aadbd8000d9d97856852a3d1f21e61623844457]

ParseFormula moved to XMLConverter


2000-11-02  Daniel Rentz  <dr@openoffice.org>  [44024d3c3356448c3f7988eef630068cff16b757]

XML import/export helper routines


2000-11-02  Sascha Ballach  <sab@openoffice.org>  [09988b5a51c598b4e2b9e1a817d3da036f259852]

gets the new properties, which allow a XML Export of formulas in validations and conditions


2000-11-02  Sascha Ballach  <sab@openoffice.org>  [e1d57c6361e213488f8544d336ace33930970e8d]

Open Row Group in Header Rows now possible


2000-11-01  Niklas Nebel  <nn@openoffice.org>  [d122b095ca3b3d54faacf90ecc2c5a8a4a696f30]

ConditionalFormatXML, ValidationXML


2000-11-01  Niklas Nebel  <nn@openoffice.org>  [76ff50489eb3a60bc6584b0cad7aec2e1f67934d]

allow XML style references in formulas


2000-11-01  Niklas Nebel  <nn@openoffice.org>  [cd07ca23a1f252a417764061bee13ff2726e099f]

allow XML style references in formulas


2000-11-01  Niklas Nebel  <nn@openoffice.org>  [1410f39688220172a064cb38c27e348253d0b7a5]

ConditionalFormatXML, ValidationXML


2000-11-01  Niklas Nebel  <nn@openoffice.org>  [e2ea0feeec9483c0de3112923f9203dc33768ab3]

allow XML style references in formulas


2000-11-01  Sascha Ballach  <sab@openoffice.org>  [164bfc42e2376a40b6a33fdb74d3ca86d0ee1d9e]

catch exception on getByKey on a NumberFormatter


2000-11-01  Daniel Rentz  <dr@openoffice.org>  [354fde734c1e8f4e731d274133f6e9e5aaf2d8c7]

add: export of table:consolidation


2000-11-01  Sascha Ballach  <sab@openoffice.org>  [0ac26b0810c659fa0bce46066492f07fa64a30b5]

Outline Import/Export completed


2000-10-31  Niklas Nebel  <nn@openoffice.org>  [9f68a81e14b66871de96364d72086c4ae30ca73d]

#79918# better handling of errors in goal seek


2000-10-31  Niklas Nebel  <nn@openoffice.org>  [d5f6009d9ba2802e73d46f2cb1c5fe223ff14dd7]

#79918# use GetValueAlways for goal seek


2000-10-31  Niklas Nebel  <nn@openoffice.org>  [9148710a8a32dd05b18ab15f960bccbe8f7ce1ee]

#79918# GetValueAlways (for goal seek)


2000-10-31  Armin Weiss  <aw@openoffice.org>  [299e49a407d9d83857a5b45322a845af7dc7cf6b]

added PreSave() and PostSave() calls to PrepareStore()


2000-10-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [6df07084403096e4a11613e35e06fef62dd9ecc0]

#65293#: comment out more selectively


2000-10-31  Jens-Heiner Rechtien  <hr@openoffice.org>  [fa9d5a024eda3e5ce42c94e37585c7a303faa673]

#65293#: out comment invader game


2000-10-31  Kai Sommerfeld  <kso@openoffice.org>  [0ccb8b176185dc6b02f00f634125365dd30e0bf5]

Fixed: Typo in XContentAccess::queryContentIdentifierString() - the        second 'i' was missing ( SUPD>611 ).


2000-10-30  gt  <gt@openoffice.org>  [a19ade00f5e21641866cb0b19e89cf9a9b7f56da]

#79561# ReadString(): string cut after flags treated seperately


2000-10-30  gt  <gt@openoffice.org>  [67fb486188e6fe1661b84b428a258ef72f80e058]

#77024# ImportExcel::EndSheet(): reset of extern name buffer only for < Buff8


2000-10-30  Armin Weiss  <aw@openoffice.org>  [df61361a5c99c9256e6b3403385788cc7478ab95]

change SdrObjects to use SfxItemSet instead of SfxSetItems. Removed TakeAttributes() and SetAttributes(), new ItemSet modification methods (GetItem[Set], SetItem[Set], ClearItem,...)


2000-10-30  Niklas Nebel  <nn@openoffice.org>  [d3d41109109b4bcdd2df31ed76c9f3991f122293]

write data rows


2000-10-30  Niklas Nebel  <nn@openoffice.org>  [1328612f048c3928c5334d50f4d1d007ba63ad72]

#79769# store area link destination ranges


2000-10-30  Niklas Nebel  <nn@openoffice.org>  [cef6e4915b8df1c315eb360e72c562984b08878e]

#79769# areasave


2000-10-30  Niklas Nebel  <nn@openoffice.org>  [a36e8701250d70ad90aee4ccd21cf4e4a0335ab7]

#79769# object to store AreaLink destination area


2000-10-30  Niklas Nebel  <nn@openoffice.org>  [55f70e5470dc69b77dc7360cdf0f3ab9c171fbb2]

#79769# UpdateRefAreaLinks


2000-10-30  Niklas Nebel  <nn@openoffice.org>  [5db3c34a97befffd52a72d760d4225c47aef3116]

#79769# UpdateRefAreaLinks


2000-10-30  Armin Weiss  <aw@openoffice.org>  [77c7564ccdeecf08a040d29d819023549b465a9c]

change SdrObjects to use SfxItemSet instead of SfxSetItems. Removed TakeAttributes() and SetAttributes(), new ItemSet modification methods (GetItem[Set], SetItem[Set], ClearItem,...)


2000-10-29  Eike Rathke  <er@openoffice.org>  [5553df76bdfa4a945bd20cc5ba3c70296ed71ee0]

i18n API moved from com.sun.star.lang to com.sun.star.i18n


2000-10-27  Niklas Nebel  <nn@openoffice.org>  [c984a03f4f56a78ca98d965ca2a22ce45c23f482]

dBase export: exceptions


2000-10-27  Niklas Nebel  <nn@openoffice.org>  [c6aaabbae70036ff7beea4aa16ab2e2189b54acc]

dBase export: don't set warning errorcodes


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [c2222c8a06426642b7d0aba8afacd714d945a7c4]

Merge SRC610: 27.10.00 - 18:18:20 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [d1695e9b18df525b59080603681c42f0fedee8a8]

Merge SRC610: 27.10.00 - 18:17:15 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [0011cf847aea04235daddecef549da84677cf0bf]

Merge SRC610: 27.10.00 - 18:15:24 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [33638fff0c8637df392743448ccb3e0d922ae451]

Merge SRC610: 27.10.00 - 18:14:10 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [1ee639375db3727f4b94f838a7ae801af3c419fb]

Merge SRC610: 27.10.00 - 18:06:10 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [b36ac88a09d3ef776585f02e82b0d641c8001fd7]

Merge SRC610: 27.10.00 - 18:04:23 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [2d8c087ed4756ef858fedbb002b92cdd27b7bace]

Merge SRC610: 27.10.00 - 18:02:42 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [ce4ee86d2e8c0a4fcb65ef058f74b6439101a186]

Merge SRC610: 27.10.00 - 18:00:24 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [76b7b970ebaf30af6256d580995d29c71ba87fa6]

Merge SRC610: 27.10.00 - 17:58:11 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [75984c6ce3bbdbace404563241852a31216c5998]

Merge SRC610: 27.10.00 - 17:55:13 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [6f5db0bcb64bc91dba48edb757129379f0844bb0]

Merge SRC610: 27.10.00 - 17:53:04 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [52b794281a1a538f763c8f8a6ed8cb2db2008f4b]

Merge SRC610: 27.10.00 - 17:51:42 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [4b4cd7538e1ccf394810fddffaa59f5f2aa70475]

Merge SRC610: 27.10.00 - 17:50:34 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [00cb1b765f2b4e91e24176dcd9bb9fc2ee48ea71]

Merge SRC610: 27.10.00 - 17:49:38 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [c274586b876a24a2b1d2d4dc751ca5f346f475bd]

Merge SRC610: 27.10.00 - 17:48:36 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [dd18c55552823a61db7a8439fe38305c66bae6b3]

Merge SRC610: 27.10.00 - 17:48:34 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [a3296bb888522ee79c60c617508300f5b45a0f9e]

Merge SRC610: 27.10.00 - 17:46:48 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [a69fda9bd6d5ba51ae38117bc582c744b73ccc93]

Merge SRC610: 27.10.00 - 17:46:42 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [25a51ebf117cfe3bb075d95ca637ac40f29f8194]

Merge SRC610: 27.10.00 - 17:45:44 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [40482d14c80eca86c4f06bd5a9d0abadaea20422]

Merge SRC610: 27.10.00 - 17:45:02 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [06af36364f8ebb3f36497edbed33e0a81ad7b7c5]

Merge SRC610: 27.10.00 - 17:44:30 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [6cd2aec0fe4ba2911aa0e2faa6670c1d116773ff]

Merge SRC610: 27.10.00 - 17:44:07 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [ae21c57dbcfa9df19de3cefb1e4d05d0d3605342]

Merge SRC610: 27.10.00 - 17:44:03 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [bcdd55c4acf7fc73b4fc77de4871738ad7525825]

Merge SRC610: 27.10.00 - 17:43:28 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [753232230f22157eb5a97ffefd63e1b171418b72]

Merge SRC610: 27.10.00 - 17:42:53 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [f544e285198542e0beb8903aecc24e4c1c333d8f]

Merge SRC610: 27.10.00 - 17:42:51 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [c288fbd3a89de2478885e21af6b05ea219d28924]

Merge SRC610: 27.10.00 - 17:42:05 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [d0b10cf078f499b6204bdfda1c58dc81db0b2e69]

Merge SRC610: 27.10.00 - 17:41:20 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [b870df13cba4c8ab373039f20c53c8a406a9e8ab]

Merge SRC610: 27.10.00 - 17:41:17 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [ecc5df0fbeb583c2735396acccf23a5baf69c159]

Merge SRC610: 27.10.00 - 17:40:22 (NoBranch)


2000-10-27  Kurt Zenker  <kz@openoffice.org>  [9f4702e169494e67a162ca9b7e2ac80149bfcc40]

Merge SRC610: 27.10.00 - 17:40:07 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [4ef77b738a8c2f246ba6423ee5f5450b0b4d65d9]

Merge SRC610: 27.10.00 - 17:40:07 (NoBranch)


2000-10-27  Oliver Bolte  <obo@openoffice.org>  [8d4662eb5c4aa26681fdb1542fc6951e9a334bfc]

Merge SRC610: 27.10.00 - 17:39:11 (NoBranch)


2000-10-27  Sascha Ballach  <sab@openoffice.org>  [9a9eb43930925c58a31bb4939c6931b77d716923]

beginn of Outline Export


2000-10-27  Niklas Nebel  <nn@openoffice.org>  [f85813383c34017b0b729a37420e2b96b3d1dca6]

#79720# InitGridOpt: also select grid color entry on subsequent calls


2000-10-27  Niklas Nebel  <nn@openoffice.org>  [2767ece491d7cbe5905115999062c85184d56435]

old (sba) implementation of StartQuerySh removed


2000-10-27  gt  <gt@openoffice.org>  [cf8fc97f5a703dc1bb5e55c11113fc979d452b3d]

ImportExcel8::BGPic(): completed


2000-10-27  Niklas Nebel  <nn@openoffice.org>  [aebfb1951582bf3077c3458ad252aa20a745649d]

#79752# SID_FONTWORK needs state value


2000-10-27  Niklas Nebel  <nn@openoffice.org>  [b81b663581e8e2a0dd176f0653bfcf36a899beec]

change for 611: new linguistic interfaces


2000-10-27  Niklas Nebel  <nn@openoffice.org>  [47e5a0636ecca8ab01b9f6b895cdd8d7983504d5]

ifdef ONE_LINGU removed


2000-10-27  Sascha Ballach  <sab@openoffice.org>  [83287904e38cc393135c5b2a650509bc3207b242]

call FinishStyles in the EndElement of MasterStylesContext and increase the Performance of the ImportMapper and merge Border with BorderWidth in the ImportMapper


2000-10-26  Niklas Nebel  <nn@openoffice.org>  [a8abbebcd310afff894a9be9f4dfd36cc94db516]

PutVariable removed


2000-10-26  Niklas Nebel  <nn@openoffice.org>  [6b9e8c7afff8f7b33a2c7318a9de2319eb3385ad]

PutData moved to ScDatabaseDocUtil


2000-10-26  Niklas Nebel  <nn@openoffice.org>  [774d66a6e1b15ee6afec0fc4487062f96cbc81fa]

DBaseImport/Export (uses api) instead of SbaSdbImport/Export


2000-10-26  Niklas Nebel  <nn@openoffice.org>  [61a5bbf975d2100830748480a7238ec46413b778]

docsh8 needs exceptions


2000-10-26  Niklas Nebel  <nn@openoffice.org>  [6b82abe0c8b76a7d1945f58a426b8a284bcad109]

use enum ScDBObject instead of DBObject from sdb


2000-10-26  Niklas Nebel  <nn@openoffice.org>  [87e9c6239ae285e6c061daf4859b6723c2cbc065]

dbdocutl


2000-10-26  Niklas Nebel  <nn@openoffice.org>  [50e383719b26725ea1b768a5c7e1c1672a3b3fd5]

helper to import from sdbc::XRow into document


2000-10-26  Niklas Nebel  <nn@openoffice.org>  [90f4777c45f6ca7d686abb6dd92530bc8a8aec2a]

enum ScDBObject (to replace DBObject from sdb)


2000-10-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [009825b41f1628f13b22f9812327a1336967e0f0]

#65293#: add include <algorithm>


2000-10-26  Jens-Heiner Rechtien  <hr@openoffice.org>  [99563c121f9807b8a5747d8f5fb914682aeb4dee]

#65293#: add C52


2000-10-26  Daniel Rentz  <dr@openoffice.org>  [9034828cdca998306600c753762c38824e540df4]

rmv: unnecessary comments


2000-10-26  Daniel Rentz  <dr@openoffice.org>  [b544a0edeec1f7550253733404b15a5adb5fcf83]

add: import of table:cell-range-source (area links)


2000-10-26  Daniel Rentz  <dr@openoffice.org>  [2c93447cc6713fa4e91f1991fb7feece7b4b0140]

rmv: unnecessary includes


2000-10-26  Daniel Rentz  <dr@openoffice.org>  [ae0fdeddd3e4f45d6a4bb72e91127fa5558d009e]

chg: table:cell-range-source table:filter-options from #REQUIRED to #IMPLIED


2000-10-26  Sascha Ballach  <sab@openoffice.org>  [48e8312e522d26c8da9c62ba8c72d423c236aa12]

change call of finished method


2000-10-26  gt  <gt@openoffice.org>  [9520025697a0dfed580c165e281827463706c177]

#76250# bit #15 not used in row hight


2000-10-26  gt  <gt@openoffice.org>  [4f49901491cb90fccb17a9978741fdbdaa150093]

add tab protection


2000-10-26  Sascha Ballach  <sab@openoffice.org>  [4210ab897f8ec775c2aa9bf415c96be19aebb40c]

to finished method StartIndex and EndIndex added


2000-10-25  Sascha Ballach  <sab@openoffice.org>  [dbfe17f6a62026915a1156d270397eb93573666c]

Header/Footer content Import/Export added


2000-10-25  Daniel Rentz  <dr@openoffice.org>  [22a77bf1c64a75f26d1d4de51a51bb17a22f3ebd]

add: export of table:cell-range-source


2000-10-25  gt  <gt@openoffice.org>  [85a6112489984d5986bdd0b15745794f48c599f9]

cut revision comments


2000-10-25  gt  <gt@openoffice.org>  [328f06f510a7e333b03eb5e890e96c009dd4000a]

#79534# XclCf::XclCf(): pointer initialize


2000-10-24  Niklas Nebel  <nn@openoffice.org>  [6cfd2a177f11762d5be83f967e0e7c5714241e7a]

UpdateDrawPrinter: always use printer


2000-10-24  Niklas Nebel  <nn@openoffice.org>  [4230adf2234fc5f1935739cbb88eeefc057cffb6]

support old page property names for compatibility


2000-10-24  Sascha Ballach  <sab@openoffice.org>  [5be60a540db2701e7a2cdfc9bdc32211c22de4d5]

little bugs fixed


2000-10-24  Sascha Ballach  <sab@openoffice.org>  [3da47d4ed81174a3a6af1f0fe69c9ce70166982b]

Header Footer export added


2000-10-24  Sascha Ballach  <sab@openoffice.org>  [f0090606b7ca2cd94190a071a6a1ce91dee0ddac]

Export Header, Footer added


2000-10-24  Sascha Ballach  <sab@openoffice.org>  [297f39e3a7908cd6a1b4ec8ade908ad74fb2980b]

MaxRow, MaxCol; catch exception


2000-10-24  Daniel Rentz  <dr@openoffice.org>  [0abea0a52943bd88235c203c3c62642b87e0ca95]

add: import of table:label-ranges, table:label-range


2000-10-24  Niklas Nebel  <nn@openoffice.org>  [b1504af3c0e4084ca048dcc862fcaa08b8fa9e25]

increment/decrement were moved from utl to comphelper


2000-10-24  Niklas Nebel  <nn@openoffice.org>  [9200e4a0e027f4483a99e2d42b01cb98376298f9]

include for PropertyAttribute


2000-10-24  Daniel Rentz  <dr@openoffice.org>  [0f517d562eb8d61279b967059021372b62c8989e]

add: export of table:label-ranges


2000-10-23  Sascha Ballach  <sab@openoffice.org>  [247a333e0cbda4179eebdb0db39bfe58fdbb0794]

catch exception added


2000-10-23  Niklas Nebel  <nn@openoffice.org>  [be3dbd5f2a28e67558e62a0a30e6ad70e403f1e0]

#79578# set WB_NOLABEL for Source/Operations FixText


2000-10-23  Sascha Ballach  <sab@openoffice.org>  [be0a6f1b7ee0bb64495d6ec8c8eba8b198807b6a]

makes the Page Master and Master Page Import work


2000-10-23  Niklas Nebel  <nn@openoffice.org>  [e1150e02ead0307ec72192b31a9f07f531b31e47]

page style properties changed to match service description


2000-10-23  Thomas Benisch  <tbe@openoffice.org>  [f632afd7a12dc6b54e3cf7fc4bf13261a3f7e62f]

basicide.hrc include removed


2000-10-23  Thomas Benisch  <tbe@openoffice.org>  [78eacab59fc4b1986f6daebbf8093aea5c837b0e]

basicide.hrc include removed


2000-10-23  Sascha Ballach  <sab@openoffice.org>  [066d0cb272529554b616ed2ecd5ec4139b146520]

PageMaster and MasterPage Import added


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [50e3870297ab810b32821d9ef38fdc57b60f34fd]

new object bar for graphic objects


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [b7e86f98f3198701bbfb31ef60f9187043943958]

graphic shell also for several objects, invalidate graphic object slots


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [a09450beff3a594572cdbc5e97d89cbe7abef6a3]

slots for graphic object functions


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [a4665f5a7cde23e527454f79370aa1aeb4bc8090]

different object bar for graphic objects


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [de4b1d15d6ab96bd96f0799560fc067d755ed436]

Execute/GetAttrState for graphic object functions


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [01d67e555f488b9c414c4b016303fd8d237cbfa1]

register graphic toolbox controller


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [03a555d6a5621d6faa2d9ccdc788a4fc041398ce]

GetViewData (for GraphicShell)


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [4a7b7d0733482dbcf267ad9254c108b10f979451]

object bar for graphic object shell


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [156bc777a48c093da1be228f2c610dbbea699566]

old includes removed


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [b8c142a483b423b8685849114862e64c600120d6]

old include removed


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [e884514a2b410f5d4f91c6d6ea8287cff1d75007]

unotools -> comphelper changes


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [d666e98ceb1837c8e7aab6c6bc29788eff181e23]

unotools -> comphelper changes


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [8a939026629727693eb0577ab33a1005d30a6bea]

pragma hdrstop added


2000-10-20  Niklas Nebel  <nn@openoffice.org>  [c56a52900c657a93eccb4c20beb0dcfb26f0adb8]

COMPHELPERLIB added


2000-10-20  Sascha Ballach  <sab@openoffice.org>  [dd220fcc708e8d06653261a352eb3ed1ac186404]

must changes in handleSpecialItem


2000-10-20  Sascha Ballach  <sab@openoffice.org>  [fe153471ce5768250a65f3036c217dddee89a999]

changes in export Page Export


2000-10-19  Niklas Nebel  <nn@openoffice.org>  [41cec1662001203a70c29a4e8f3f333fcfa72ee4]

fuconctl removed


2000-10-19  Niklas Nebel  <nn@openoffice.org>  [0148b222ae6f4255bf0f53138fdcda21dc382d9f]

old include removed


2000-10-19  Niklas Nebel  <nn@openoffice.org>  [646a95903663e9fe16beade4e795812d05627510]

handling of slots for old si controls removed


2000-10-19  Niklas Nebel  <nn@openoffice.org>  [6bcaeed6292a68aa2680fcca54b3f724a2dc14aa]

registration for tbx controller with old si controls removed


2000-10-19  Sascha Ballach  <sab@openoffice.org>  [63423d72cc9edf836735abf7578b3d4af98f67c7]

Import Header Rows and Columns added


2000-10-19  Sascha Ballach  <sab@openoffice.org>  [256157f8a5b2758c9687d6e90dedca6d3f99f9aa]

Import Header Rows added


2000-10-19  Sascha Ballach  <sab@openoffice.org>  [2ae36964d7db47b747cd79ada3a76a8f9fa6796c]

Import Header Columns added


2000-10-19  Sascha Ballach  <sab@openoffice.org>  [0f7370815c11da983a014eda10abd7b39395af48]

little changes in ExportFormatRanges


2000-10-19  Eike Rathke  <er@openoffice.org>  [17a99718bbd97857e0119540f820b740b6a2318c]

create number formatter with service manager


2000-10-19  Sascha Ballach  <sab@openoffice.org>  [e19f85d4a6655f81170f28fd84f3836358de2a31]

change the Page Export


2000-10-19  Niklas Nebel  <nn@openoffice.org>  [2b5e0e0d68b2de934e50b58dbb9617c5d60a5588]

change for 610: call PrepareStore before storing


2000-10-19  Daniel Rentz  <dr@openoffice.org>  [81d42d46ccc8f0fc8da0de775f5c79802bb89177]

get names of data styles from map, removed background color entries from context filter


2000-10-19  Sascha Ballach  <sab@openoffice.org>  [e3653cf89e7bf82db2207fa14582ddaed6419100]

fix bug in Shape sort


2000-10-19  Sascha Ballach  <sab@openoffice.org>  [c0397671c19c4e517c5a99d1ab127a1bc185e91b]

Master Page Export added


2000-10-18  Niklas Nebel  <nn@openoffice.org>  [9faf7a7f1a36d737fcf6b0dc65354b2f6148fbf4]

#79625# implementation of interface XCellRangeData


2000-10-18  Niklas Nebel  <nn@openoffice.org>  [e6252a33fc1e37bdf0dee7382ce81b6df0764a6f]

#79625# ScCellRangeObj: interface XCellRangeData


2000-10-18  Niklas Nebel  <nn@openoffice.org>  [bb77583d469eb43a056fc7d6c79e467752442a78]

#79625# FillMixedArray: handling of formula errors


2000-10-18  Niklas Nebel  <nn@openoffice.org>  [d27d06c157cb920df31d9c6bba9e8c04ad39228c]

#79625# FillMixedArray: argument bAllowNV


2000-10-18  Sascha Ballach  <sab@openoffice.org>  [504f7f37bef01340f8b635c1f3c68d9d0e9d9753]

#79613#


2000-10-18  Sascha Ballach  <sab@openoffice.org>  [ff1708b85c282aec169e602c990c7ba5192494e9]

create-date-string to annotation added


2000-10-18  Sascha Ballach  <sab@openoffice.org>  [a8999e0e44bffcc6de13464274279a8146ba5a71]

create-date-string added


2000-10-18  Niklas Nebel  <nn@openoffice.org>  [1c902fe7f6963665ba7f47404762f1095adf6394]

#78541# call InvalidateSource when refreshing data pilot from database data


2000-10-18  Niklas Nebel  <nn@openoffice.org>  [5fef3950001605aaf6de3d9921695b0b65f6d614]

#79594# ListenersGone: don't use pDoc member after removing the link


2000-10-18  Daniel Rentz  <dr@openoffice.org>  [519f55620d0a9535e00ade813b1ccec0593ff615]

add: export of page-master styles


2000-10-18  Daniel Rentz  <dr@openoffice.org>  [0931a7a646eec5ca7c3305ab0f0ddea15a3c7ee5]

add: parameter rPropExp in function exportStyleContent()


2000-10-18  Sascha Ballach  <sab@openoffice.org>  [2887ac88eae4d3cf89e521ecc81f2117f7140032]

Export Header Rows and Header Columns added


2000-10-17  Niklas Nebel  <nn@openoffice.org>  [3df320146adad774f2215cabbdd22e44ff018853]

#79562# create formula cell for ref-update-undo with correct matrix flag


2000-10-17  Sascha Ballach  <sab@openoffice.org>  [e701cde6b452869d6233950a45dd901f51df73a1]

remove my own ColorBackround and ColorTransparent Handler and use the standard hanler


2000-10-17  Eike Rathke  <er@openoffice.org>  [fdc13c02c4228270562d7f387698ecedce9f496c]

#79405# KeyInput: recognize '-' as number intro in percent formatted cell input


2000-10-17  Sascha Ballach  <sab@openoffice.org>  [658ad81a17bd0a7580e3146327219e6483305bf6]

in the context filter should not compare the color for the borderwidth property


2000-10-17  Sascha Ballach  <sab@openoffice.org>  [2f6ed6e9d2f5edb9e2a783d4be979d571d00d8ac]

remove my own page style Export/Import


2000-10-16  csaba  <csaba@openoffice.org>  [241d08e4e8c146bc5ede3fc0a7c3bb956333163c]

mhids in if-condition with BUILD_SOSL


2000-10-16  Niklas Nebel  <nn@openoffice.org>  [fe055c0080382172ba6cad258d585363c79858f0]

Refresh: delete pClipDoc after use


2000-10-13  Niklas Nebel  <nn@openoffice.org>  [815f107948f1db77c9213f32f24905c0b287658f]

also allow XCellRange parameters


2000-10-13  Niklas Nebel  <nn@openoffice.org>  [2f1c7a50f50496c4432c6ef033b4e46f9aefd236]

change for 609: SfxMedium ctor changed


2000-10-13  Niklas Nebel  <nn@openoffice.org>  [961edd7cf785a9674d3300e9497f4ea4ae84c4c1]

#78528# EnterData(EditTextObject): recognize formulas even if formatted


2000-10-13  Niklas Nebel  <nn@openoffice.org>  [3276ff43936823b5760809e04d3e39a6f6808569]

#79379# no bindings update in SetRefDialog


2000-10-12  Niklas Nebel  <nn@openoffice.org>  [8a4153898960ee4bc40b96b80edac38e928a6388]

uno addins: use ScDocOptionsObj as caller if no ObjectShell available


2000-10-12  Niklas Nebel  <nn@openoffice.org>  [ab29b3a8add1d58d751d92ad27f57123849999f7]

optuno


2000-10-12  Niklas Nebel  <nn@openoffice.org>  [ef3519d33bd260461425a3fbbf1e5bd823b092b7]

allow ScModelObj without document, use ScDocOptionsHelper


2000-10-12  Niklas Nebel  <nn@openoffice.org>  [6af4c93583da19351caa99891775105f177f889d]

helper and derived ScModelObj for document options


2000-10-12  Niklas Nebel  <nn@openoffice.org>  [62dd1514e54a3a83932b0b201ee1130ca39d1f64]

support XPropertySet / SpreadsheetDocumentSettings


2000-10-12  Sascha Ballach  <sab@openoffice.org>  [bcae9a6066efaec328912b85dc56dea5e6e97d83]

Import Content Validation completed


2000-10-12  Sascha Ballach  <sab@openoffice.org>  [7e1d47f07ec3afa4e370242323b41641890a6035]

calculate the PrintAreas only if the table has printranges


2000-10-12  Sascha Ballach  <sab@openoffice.org>  [4297a9b41a96686a8b0dd4c032cdb670f2c4966f]

Import Content Validation added


2000-10-11  Niklas Nebel  <nn@openoffice.org>  [a7bdecd15893c11982e6d682b95be23b3c04f9d8]

#79429# SvtSaveOptions instead of SfxOptions


2000-10-11  Sascha Ballach  <sab@openoffice.org>  [7e7c35b1a0af4ceed7a899185a89dd3240b2b72f]

Import Content Validation completed


2000-10-11  Sascha Ballach  <sab@openoffice.org>  [ee7103a933ab2b3c663e8ea2c36e9d42da69a6a9]

Import Content Validations added


2000-10-10  Daniel Rentz  <dr@openoffice.org>  [fa848fb37187588291ef3db261009e5ccc924424]

import of print ranges


2000-10-10  Niklas Nebel  <nn@openoffice.org>  [e7ef83a6e8888e899bff0e7a946f82ebd825815f]

#79335# Command: ext.Text input also for drawing objects


2000-10-10  Daniel Rentz  <dr@openoffice.org>  [95474dc6e2b80d50499170f1fd79428d6932b649]

export print ranges


2000-10-10  Sascha Ballach  <sab@openoffice.org>  [375027f3fa8973515df1d571d63a1a5568e042ef]

push_back a shape only if the cell has a shape (CellsItr::GetNext).


2000-10-10  Sascha Ballach  <sab@openoffice.org>  [65a7786ff50a099e535d66fb467b224dfd9221d9]

#79280#


2000-10-10  Daniel Rentz  <dr@openoffice.org>  [5f278d64e2fc2be594e7d5d111fbec50ee3b378b]

import/export of scenarios


2000-10-10  Sascha Ballach  <sab@openoffice.org>  [900ce1ea3ecb6cfb5deb6e75a0c63cd606fab93e]

#79174#


2000-10-10  Sascha Ballach  <sab@openoffice.org>  [391c9f9fc02f52e76d2a13e6c16fedd951af993d]

#79351#; #79174#


2000-10-10  Sascha Ballach  <sab@openoffice.org>  [12eae4530212132f693a9d1a88cefe6382c0b6c3]

#79314#


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [f5b869f3df0dc9f6ad1dd09bff29ad52274d1a1a]

unnecessary includes removed


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [b77799e591ae65b9b730c79b83cc2e20758bf23a]

at uno calls, catch only uno exceptions


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [fd8e1f70d44f1cfa2408a3812c35e93a2fb81f74]

at uno calls, catch only uno exceptions


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [ecbf3417c4e3d309e93e99bd1da8136ec448e660]

at uno calls, catch only uno exceptions


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [64b305c53fdab53fec0fd341438f96f9b395f740]

#79175# test GetStorage return value instead of IsStorage


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [336489c5c0d57cee188b12c075af1cb1ad39a087]

#79224# replaceAll: IsEditable instead of IsReadOnly


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [38cd93a9bc5f66c4c1e31320937e43a00039a0d9]

#79224# Is...Editable: allow import into read-only document


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [988a313af0c0e187cf7e52c092804bdbbb2f72f9]

#79224# DataPilotUpdate: IsEditable instead of IsReadOnly


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [883c0fa605b86eba15689d63ab9f73925935052f]

#79224# SetWidthOrHeight: IsEditable instead of IsReadOnly


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [5f5d515afc03783ff2854b13cf074efc8b5d6f83]

#79224# IsEditable (allow import into read-only document)


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [2afa71b71eecc227b9c76f729cee058644187703]

#79224# IsEditable


2000-10-09  Niklas Nebel  <nn@openoffice.org>  [e93c602382831dc3fc37756af3db807cb48e844f]

#79288# #79289# #79290# Exceptions in ScFunctionListObj


2000-10-06  Niklas Nebel  <nn@openoffice.org>  [2c84b11b4434e4c88cb582c102e2d8c3a51438b2]

handling of cached document corrected


2000-10-06  Niklas Nebel  <nn@openoffice.org>  [d3c82ece96154717295f569dfeff2d7e67322269]

ScDde: check if LinkManager is available


2000-10-06  Niklas Nebel  <nn@openoffice.org>  [932c8a7a08a4fcc38b72c74a6ebb1c5ecbd758c4]

no more CATCH_ALL


2000-10-06  Niklas Nebel  <nn@openoffice.org>  [7ce51f2d0ae4c6572dbdaad7dd1ace9cebbd8ea6]

UpdateSymbol: flags for english/xml


2000-10-05  Niklas Nebel  <nn@openoffice.org>  [ab7ff94fa0b896c1965d1059b31d50a234dfdce8]

include urlobj.hxx


2000-10-05  Niklas Nebel  <nn@openoffice.org>  [a6f620cfbe94aa0902e1d28896c4c433037c33a5]

include urlobj.hxx


2000-10-05  Niklas Nebel  <nn@openoffice.org>  [7adfb374bbe992e820dc908a87e91c5becbbb168]

SID_INSERT_SIMAGE removed


2000-10-05  Niklas Nebel  <nn@openoffice.org>  [fcc6b20f1bfc79ff334e8c834973e014ee3deace]

image calls disabled


2000-10-05  Niklas Nebel  <nn@openoffice.org>  [5edffa9fb8a790622bdc427d7e8b4166014ca764]

UndoDeleteTab: store table visibility


2000-10-05  Sascha Ballach  <sab@openoffice.org>  [ced8d4018bee73530bd3d9f0daf37ad6c6270ff9]

Scenario Export added


2000-10-04  Niklas Nebel  <nn@openoffice.org>  [ef901e25996c3f3bb01c38ef2af8757653c43bc5]

#79193# generate entry name from index


2000-10-04  Niklas Nebel  <nn@openoffice.org>  [4d1961a0d3bc6e2a91d2c6ddd1db893d8a1466e1]

#79191# GetObjectByName: no assertion on wrong name


2000-10-04  Niklas Nebel  <nn@openoffice.org>  [e65b6e3a42f61cf9166456839510edf35cbdb4d6]

#79167# clearContents: EDITATTR is only used if no contents are deleted


2000-10-04  Niklas Nebel  <nn@openoffice.org>  [54b18196a99b42c660492ea04df23d017730a52f]

#79161# #79162# #79163# #79169# exceptions, service names


2000-10-04  Niklas Nebel  <nn@openoffice.org>  [f93cd078bb9c9b4b2f4f1a87ae85d5b5ebded44e]

#79159# #79160# throw right exceptions on errors


2000-10-04  Niklas Nebel  <nn@openoffice.org>  [3233bc8f7715a7024d80616a78a0f558c851f18c]

#79068# right order of controls


2000-09-29  Niklas Nebel  <nn@openoffice.org>  [76b8011457740f230b564a248cbadbb120585d9e]

#79095# DoSubTotals: use bCaseSens flag from SubTotalParam


2000-09-29  John Marmion  <john.marmion@openoffice.org>  [0ef05978c20ffb8cb94d1c245acc051b095a485a]

corrected for OpenOffice


2000-09-29  Niklas Nebel  <nn@openoffice.org>  [11eebba31f8a1a18c572c1aefcacae5a71237308]

read filter options from configuration service


2000-09-29  Niklas Nebel  <nn@openoffice.org>  [a3975ac2d96481339080e0ed0f5bf13e7ce51edc]

filtopt


2000-09-29  Niklas Nebel  <nn@openoffice.org>  [86de1c0b7ba0cf6218d8b46ff6e456cb0a9f92ce]

filter options


2000-09-29  Sascha Ballach  <sab@openoffice.org>  [9f0e61f888d6e8581db5923f49cd4a60c32dc00e]

Text Wrap Property added


2000-09-29  gt  <gt@openoffice.org>  [da6a12f0eb095dec284af5e19bd9c13bd1c58d7d]

ini file is located without SfxIni-manager


2000-09-29  Niklas Nebel  <nn@openoffice.org>  [5daff64a60571893ccbe3ee7ac0f0f817b84a30d]

insertControlCharacter is handled by SvxUnoText


2000-09-29  Niklas Nebel  <nn@openoffice.org>  [d20df0077f365cf4a74868c4a359c75c9d468723]

get config path from SvtPathOptions


2000-09-29  Niklas Nebel  <nn@openoffice.org>  [5b62de93a08a0e29a9c8de8e0afdee89d9d86e30]

ini manager replaced by options


2000-09-28  Niklas Nebel  <nn@openoffice.org>  [0efd440b39df9d16a1e749ef3b590f00544f5f8b]

funcuno


2000-09-28  Niklas Nebel  <nn@openoffice.org>  [619628e3ffd7c767798ba22bd6d90894212d71b0]

API access to functions


2000-09-28  Sascha Ballach  <sab@openoffice.org>  [79a72d6e1c8434bc8e88a85a5842511c00b798cf]

#79067#; Export Content Validation added


2000-09-28  Sascha Ballach  <sab@openoffice.org>  [81dbf3869ebb130b8386963be7505dd21224c39e]

#79071#


2000-09-28  Sascha Ballach  <sab@openoffice.org>  [719c8503433ab15b568f5bb198a80a6cb5ac95c8]

Conditional Formating Import, Export added


2000-09-28  John Marmion  <john.marmion@openoffice.org>  [8ec361fad5f49a251627a810ab5fe6b1e19a282b]

updated for OpenOffice 605


2000-09-28  gt  <gt@openoffice.org>  [8967b0e352d2047915d1708a4bc37f6ba27261c1]

#78988# no assertion if embedded and no storage id


2000-09-28  Daniel Rentz  <dr@openoffice.org>  [375e1887e5e02a8c6643362ca38d2f358b77b60c]

chart import: formats and properties of several chart types


2000-09-28  gt  <gt@openoffice.org>  [20d279ca180d9ae93fabcfca8f25fd50db99cf70]

additional col-scale


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [8e4dea5828da80b5d529ac3c28343d7b26eb043c]

Merge SRC605: 27.09.00 - 22:53:15 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [6e1f5a64b597535eb816ce0ab1e0d62b449cadb9]

Merge SRC605: 27.09.00 - 22:51:42 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [a0cfdb69091acc6cd48edf32e455e507798cc707]

Merge SRC605: 27.09.00 - 22:50:28 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [aebf9a97a172d93db61083d91956e409e426dafa]

Merge SRC605: 27.09.00 - 22:48:55 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [bba992056cfd359116985769b5af4c5c4b3e0d15]

Merge SRC605: 27.09.00 - 22:47:57 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [6fe276d621087dbb7ff070b771c347db2f89e594]

Merge SRC605: 27.09.00 - 22:45:52 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [c199cc21c7798ca005cec9b0d4d89ecb07157986]

Merge SRC605: 27.09.00 - 22:44:43 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [a370a37363d50254fa4999dd61147a5dcfc15098]

Merge SRC605: 09/27/00 - 22:44:13 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [8f29ee704bc5578ccee4d80aaf357bc9de3fc668]

Merge SRC605: 27.09.00 - 22:43:11 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [0cb266febbff7dfee5c85313bb7192a5eae0908a]

Merge SRC605: 09/27/00 - 22:43:14 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [95fabde25ccdfa184ca60a86cf97010e13af011b]

Merge SRC605: 27.09.00 - 22:41:08 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [8f1359afcc217e43f9a14f35b3636171c7a2089a]

Merge SRC605: 27.09.00 - 22:40:13 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [efd8a30427178ce9c1b5f061d8355b9603ad9bcc]

Merge SRC605: 09/27/00 - 22:40:19 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [10f9e5465818490b6987675b77ff33a97e3a063f]

Merge SRC605: 27.09.00 - 22:37:30 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [6df4c60823df883bd16ce467e88118cf74ce773c]

Merge SRC605: 09/27/00 - 22:37:06 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [0972e5af8b6e439b86dc4107fce2ee4f80c21a16]

Merge SRC605: 27.09.00 - 22:36:38 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [165fa1d3ccec3f5a7c955280d483e046248d5ba2]

Merge SRC605: 09/27/00 - 22:36:17 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [72f35b530d64376a03635a32e12f20bc7a1e0a25]

Merge SRC605: 27.09.00 - 22:35:28 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [84b16a4567fdfebd1f911e888e2e1825fc6a6b67]

Merge SRC605: 09/27/00 - 22:34:49 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [b2346716c533e74ade1d133155faf398178486a4]

Merge SRC605: 27.09.00 - 22:34:06 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [488a22eeee55742ab6a9705c71cb77ace1406982]

Merge SRC605: 09/27/00 - 22:34:01 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [db6890ef6d40606c0d19effe0a163f7c14007462]

Merge SRC605: 27.09.00 - 22:33:19 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [9353561c61e6f21808d5811e51f98c6a6c0facb0]

Merge SRC605: 09/27/00 - 22:33:15 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [e3f578e6cd3fa312c794521b2eb6d2b02e9c4031]

Merge SRC605: 27.09.00 - 22:32:29 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [16ffaa7c923636bcf628153ee9aa71df5fd81c9f]

Merge SRC605: 09/27/00 - 22:32:26 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [2c9be222c09273180dc9bfec2aa64b96c7128be4]

Merge SRC605: 09/27/00 - 22:31:38 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [b2076b00fbe11995088515d3982466cc0726a94a]

Merge SRC605: 09/27/00 - 22:30:48 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [98c8b2266ee64684cd089f0c6206606624b84a6b]

Merge SRC605: 27.09.00 - 22:30:24 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [3e7bfe836af4eef6bd7705a99f424a34c9fcfa44]

Merge SRC605: 09/27/00 - 22:29:59 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [fad97629c557ca7bd1b30ad8dcb4c2f2ee0ff861]

Merge SRC605: 27.09.00 - 22:29:36 (NoBranch)


2000-09-27  Nils Fuhrmann  <nf@openoffice.org>  [43d42447074926e1ccfd406b12d933bc6bad40e4]

Merge SRC605: 09/27/00 - 22:29:07 (NoBranch)


2000-09-26  Niklas Nebel  <nn@openoffice.org>  [0b5df18524e11290a62b38d16aacc19a8b00f0ed]

#79008# MakeColStr: right length for AllocBuffer


2000-09-26  Martin Hollmichel  <mh@openoffice.org>  [c96396599da408f9bd1f903b938aae985714e7d1]

chg: mkdir command


2000-09-25  Niklas Nebel  <nn@openoffice.org>  [434798293b38046f1ac7b9200dc0c24a469b4154]

#78963# bForceToTop: treat like oversized text


2000-09-25  Niklas Nebel  <nn@openoffice.org>  [73a079fedaa61b75dd5104d584050c85307fe155]

#78963# GetEditArea: bForceToTop


2000-09-25  Sascha Ballach  <sab@openoffice.org>  [ae520bc5f22f24bd9ab43efca810979da8fad173]

#78974#


2000-09-25  Niklas Nebel  <nn@openoffice.org>  [0b70b7d978ddb64e0742ecff16a08c6a507d687e]

#78631# #78943# RefreshNoteFlags: UpdateAllComments


2000-09-25  Niklas Nebel  <nn@openoffice.org>  [04fa92256507511aaacba51e43dd1abf0c1d8769]

#78631# #78943# StyleSheetChanged: UpdateAllComments if default style


2000-09-25  Niklas Nebel  <nn@openoffice.org>  [161ce0df83f59fa0f8ed4634a1dc29c3733e9f27]

#78631# #78943# UpdateAllComments, SpecialTextBoxShadow, default font


2000-09-25  Niklas Nebel  <nn@openoffice.org>  [d020ca29eeef879625eb25b324c804bb0316f0fa]

#78631# #78943# UpdateAllComments


2000-09-25  Sascha Ballach  <sab@openoffice.org>  [c75bcc0eb87486bbdecd3b952d16901bc51cc786]

#78962#


2000-09-22  Niklas Nebel  <nn@openoffice.org>  [785a8c02e13299cff087250939680bffd033a6db]

bindings / dispatcher changes


2000-09-22  gt  <gt@openoffice.org>  [73c6926ee72e2d1d52a45c376ffc50eec47fe633]

import natural language formulas


2000-09-22  gt  <gt@openoffice.org>  [7dddebeddf22fafeadf01048f339d7228781aa32]

 +  ScTokenArray::AddColRowName()


2000-09-22  Sascha Ballach  <sab@openoffice.org>  [a2d9c734cb99ee1cd2540878878f5783f89ef9e5]

#78732#


2000-09-22  Sascha Ballach  <sab@openoffice.org>  [431ba28c7259bb30a67518f1ed1c60f241fe4e42]

export style:map added


2000-09-22  Sascha Ballach  <sab@openoffice.org>  [dccdf24bffd51e472e475649a278bbe9fe320df3]

#78938#; #78941#; #78732#


2000-09-22  Niklas Nebel  <nn@openoffice.org>  [a123cdb0dd172dc853753c9b44e8512187f0373c]

app options / doc options use configuration service


2000-09-22  Niklas Nebel  <nn@openoffice.org>  [98058bdae26ef8e55cfe67542cf1d1aae3ae43f5]

use configuration service


2000-09-22  Niklas Nebel  <nn@openoffice.org>  [4d3193a9b76597a976e255b7433d5f96f4259618]

GetNodeNames


2000-09-21  Niklas Nebel  <nn@openoffice.org>  [f1d3f40480593f97803e61dc8e36efef84f19160]

still no SetUpdateMode in ScCellEditSource::GetTextForwarder


2000-09-21  mm  <mm@openoffice.org>  [46c9f3931257d9b4579a6d16bc04db3e8586c7fd]

validation work correct


2000-09-21  Niklas Nebel  <nn@openoffice.org>  [20add96dc61a8f09f4effaaf810d70d03279dc37]

style name in conditional formats is programmatic name


2000-09-19  Niklas Nebel  <nn@openoffice.org>  [fb510865f09221761d47767df87ffcc0d6a4a72b]

ScLinkConfigItem: parent methods reimplemented


2000-09-18  Jens-Heiner Rechtien  <hr@openoffice.org>  [83051eb264d6e3f5724a62daa6a40896159e5909]

initial import


2000-09-18  Jens-Heiner Rechtien  <hr@openoffice.org>  [2e4c9d94bf86211c8af01a03eb5ccfb6dfc604b5]

initial import


  Andre Fischer  <andre.f.fischer <Andre Fischer<andre.f.fischer@oracle.com>  [5bf271a630f50c69646c91f50e3db7b5adaf199a]

impress200: merge


2010-08-26  Philipp Lohmann [pl]  <Philipp.Lohmann@Oracle.COM>  [7a86940efec79bdf7e8c696f250c1a67378d3667]

merge


2010-08-26  Niklas Nebel  <nn@openoffice.org>  [8ea1de30f486a26ff46a7ccdfc66742680125716]

impress200: #i113884# check for overflow in ScTable::SetDrawPageSize

