Commit Graph

5653 Commits

Author SHA1 Message Date
3ad7d198a6 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 15:05:33 +00:00
e0d7a9fda4 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-03 11:39:43 +00:00
2ae3df202e 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 15:39:54 +00:00
3036f2ff80 CWS-TOOLING: integrate CWS fwk99
2009-01-20 17:39:31 +0100 pb  r266605 : fix: #i98280# new 'More templates'-URL
2009-01-15 20:17:58 +0100 mst  r266391 : #i95702# convert wizards to DocumentProperties (partially based on patch by cmc)
2009-01-12 07:35:44 +0100 pb  r266131 : fix: #i96851# HID_PASTE_DLG and HID_LINKDLG_TABLB added
2009-01-09 10:40:48 +0100 pb  r266061 : fix: #i97386# Execute_Impl() while sub-dialog is open this could be deleted; #i68415# patch from cmc
2009-01-09 10:35:24 +0100 pb  r266059 : fix: #i97386# struct Deleted added
2009-01-09 10:05:17 +0100 pb  r266057 : fix: #i97365# ModalDialog RID_SVXPAGE_IMPROVEMENT removed
2009-01-09 10:02:39 +0100 pb  r266056 : fix: #i97841# new: set InfoURL and HandleHyperLink()
2009-01-09 09:59:13 +0100 pb  r266053 : fix: #i97391# MinWidth re-calculated; #i97365# SvxImprovementDialog2 removed
2009-01-09 09:55:00 +0100 pb  r266051 : fix: #i97841# new: HandleHyperLink(); #i97365# SvxImprovementDialog2 removed
2009-01-06 14:24:24 +0100 cd  r265921 : #i96831# Fix build problem with gcc 4.3.2 using the return value of link correctly.
2009-01-06 12:18:41 +0100 cd  r265907 : #i96831# Fix build problem with gcc 4.3.2
2009-01-06 12:02:59 +0100 mst  r265905 : fix #i97775#
- xmloff/source/core/nmspmap.cxx:
  + SvXMLNamespaceMap::GetQNameByKey does not handle default namespace
    correctly
2009-02-12 14:03:59 +00:00
520f0e3413 CWS-TOOLING: integrate CWS impress166
2009-01-27 11:42:29 +0100 af  r266972 : #i98508# Handle non DrawViewShell view shells correctly.
2009-01-21 10:41:32 +0100 af  r266635 : #i98069# Do not call PreModelChange() for every ModelLock.
2009-01-20 15:25:41 +0100 af  r266588 : #i98069# Added friend declaration that became necessary on Solaris after recent changes.
2009-01-19 13:48:47 +0100 af  r266493 : #i97478# Prevent SID_PARASPACE_(DE|IN)CREASE from crashing when style sheet is missing.
2009-01-16 11:52:37 +0100 af  r266411 : #i97338# Check the dispatcher before using it to show a context menu.
2009-01-15 14:33:55 +0100 sj  r266373 : #153716# taking care of font-independent line spacing (editmode and hittest)
2009-01-15 14:29:46 +0100 sj  r266372 : #153716# taking care of font-independent line spacing also in presentation styles
2009-01-14 14:04:16 +0100 af  r266301 : #i97634# Do view change synchronously.  Use shared pointers for view shells.
2009-01-14 14:01:27 +0100 af  r266300 : #i97634# Added non-API methods that update the configuration synchronously.
2009-01-14 13:34:40 +0100 af  r266295 : #i98069# Be more carefull with handling model updates to avoid assertion regarding number of selected pages.
2009-01-14 11:34:57 +0100 cl  r266270 : #i97261# force outliner para oibject after text edit
2009-01-14 10:49:08 +0100 cl  r266269 : #i97413# dispose cell undo action if shape dies
2009-01-13 18:50:05 +0100 cl  r266247 : #i97347# fixed cell undo crash
2009-01-12 14:16:56 +0100 af  r266156 : #i97296# Using is() method to check WeakReference for validity.
2009-01-12 13:52:00 +0100 af  r266155 : #i97190# Turned static_cast to dynamic_cast in CreateChildList.
2009-01-12 13:06:57 +0100 af  r266153 : #i97552# Catching Exceptions caught while accessing OLE-Object that is to be inserted.
2009-01-12 13:06:37 +0100 cl  r266152 : #i96164# applied patch to fix ambiguous operation
2009-02-12 12:44:26 +00:00
25dad84813 CWS-TOOLING: integrate CWS cmcfixes52
2009-01-05 10:49:04 +0100 cmc  r265860 : #i97763# remove low-hanging warnings
2009-01-29 10:02:54 +00:00
da2cac30aa CWS-TOOLING: integrate CWS sjfixes10
2009-01-15 14:02:24 +0100 af  r266369 : #i88851# Finding the right font size is now an iterative process.
2009-01-15 11:01:59 +0100 wg  r266354 : i97985
2009-01-15 10:57:33 +0100 wg  r266353 : i97985
2009-01-15 10:48:53 +0100 wg  r266347 : i97985
2009-01-15 10:48:23 +0100 wg  r266346 : i97985
2009-01-15 10:46:47 +0100 wg  r266345 : i97985
2009-01-15 10:45:43 +0100 wg  r266344 : i97985
2009-01-15 10:45:14 +0100 wg  r266343 : i97985
2009-01-15 10:44:38 +0100 wg  r266342 : i97985
2009-01-15 10:43:56 +0100 wg  r266341 : i97985
2009-01-15 10:42:50 +0100 wg  r266340 : i97985
2009-01-15 10:41:40 +0100 wg  r266339 : i97985
2009-01-15 10:39:46 +0100 wg  r266337 : i97985
2009-01-15 10:00:09 +0100 hde  r266336 : i98065
2009-01-13 15:48:20 +0100 wg  r266232 : i97985
2009-01-13 13:22:05 +0100 wg  r266217 : i97985
2009-01-13 12:34:05 +0100 wg  r266210 : i97985
2009-01-13 12:30:56 +0100 wg  r266209 : i97985
2009-01-13 12:26:56 +0100 wg  r266208 : i97985
2009-01-12 15:58:06 +0100 wg  r266165 : i97985
2009-01-12 15:43:24 +0100 wg  r266163 : i97985
2009-01-08 16:21:47 +0100 sj  r266023 : fixed warning
2009-01-08 15:33:34 +0100 sj  r266017 : fixed warning
2009-01-06 18:13:42 +0100 sj  r265935 : CWS-TOOLING: rebase CWS sjfixes10 to trunk@265758 (milestone: DEV300:m38)
2008-12-10 16:54:02 +0100 af  r265206 : #i43354# Do not delete all unused master pages automatically.
2008-12-04 13:12:50 +0100 af  r264836 : #i92795# Use BitmapEx for icons to allow transparency.
2008-12-02 17:01:49 +0100 af  r264723 : #i93082# Fixed SID_INSERTPAGE_LAYOUT_MENU.
2008-11-28 14:37:28 +0100 af  r264555 : #i88851# Changed association of Ctrl-'?' to views.
2008-11-28 11:38:52 +0100 af  r264535 : #i96681# Set version to 1.0.2
2008-11-28 11:30:04 +0100 af  r264533 : #i88851# Ctrl-1,2,3 switch to slide overview, notes, normal view.
2008-11-27 16:41:25 +0100 af  r264505 : #i92144# Removed unused code.
2008-11-26 15:29:56 +0100 af  r264401 : #i92574# Do not lock configuration controller when main pane is not available.
2008-11-21 10:13:40 +0100 sj  r264112 : #i96146# applied patch (ambiguous && ||)
2008-11-20 20:12:06 +0100 sj  r264097 : #i96083# applied patch (ambigous && ||)
2008-11-20 19:13:53 +0100 sj  r264096 : #i96163# applied patch (ambigous && ||)
2008-11-20 18:39:10 +0100 sj  r264093 : #i96165# applied patch (ambigous && ||)
2008-11-03 18:12:29 +0100 sj  r263303 : #i93996# fixed word wrapping problem
2008-11-03 18:11:02 +0100 sj  r263302 : #i93996# fixed word wrapping problem
2008-11-03 18:08:41 +0100 sj  r263301 : #i93996# fixed word wrapping problem
2008-11-03 18:06:45 +0100 sj  r263300 : #i93996# fixed word wrapping problem
2008-11-03 18:05:00 +0100 sj  r263299 : #i94831,i93616# fixed crash when importing diagonal cell border lines, fixed table import
2008-11-03 18:00:43 +0100 sj  r263298 : #i93718# spellchecking is no longer triggering the autolayout of connector objects
2009-01-21 14:22:27 +00:00
4e93b7d7f5 CWS-TOOLING: integrate CWS outlinelevel
2008-12-19 10:32:51 +0100 od  r265718 : #i70748# method <SwWW8Writer::StartTOX(..)>
	 - correction for custom to outline style
	   assigned paragraph styles
2008-12-19 09:24:41 +0100 od  r265715 : #i70748# method <HandleModifyAtTxtNode(..)>
	 - retrieve former applied list style before potential
	   reset of empty list style due to set outline level
2008-12-17 15:33:57 +0100 hde  r265608 : #i97013#
2008-12-17 14:43:42 +0100 od  r265603 : #i70748# adjust fix i44177 - adjustment of to outline style assigned
	 paragraph styles only for OOo-Templates.
2008-12-17 12:59:42 +0100 od  r265598 : #i70748# method <XMLTextImportHelper::SetStyleAndAttrs(..)>
	 - special handling of OOo 2.x document regarding
	   outline numbering of headings.
2008-12-17 12:45:53 +0100 od  r265597 : #i70748# method <HandleModifyAtTxtNode(..)>
	 - correct determination of new and former applied list style
2008-12-17 10:18:41 +0100 od  r265581 : #i97312# method <XMLTextNumRuleInfo::Set(..)>
	 - check, if numbering rules instance contains any numbering rule.
2008-12-16 14:34:22 +0100 hde  r265542 : #i97013
2008-12-16 14:20:24 +0100 od  r265541 : #i70748# adjust documentation of "Which"-ID numbers
2008-12-16 14:19:49 +0100 od  r265539 : #i70748# Adjust Attribute-Function-Mapping table due to new attribute
2008-12-16 14:06:24 +0100 od  r265538 : #i70748# - Correct handling of to outline style assigned paragraph styles
	   on reset of all paragraph style attributes
	 - WW8 import: Consider refactoring of paragraph style's outline
	   level attribute - NO_NUMBERING define no longer exsits.
2008-12-16 10:37:19 +0100 od  r265530 : #i70478# Correction on moving outline paragraph up respectively down
	 in its outline level:
	 - Check also outline paragraph, which are not an outline via
	   a to outline style assigned paragraph style, if action is applicable.
2008-12-16 09:10:13 +0100 hde  r265523 : #i97277
2008-12-16 09:09:30 +0100 hde  r265522 : #i97277
2008-12-16 09:07:40 +0100 hde  r265521 : Added control and purged obsolete id's
2008-12-10 13:09:36 +0100 od  r265174 : #i70748# correction of previous fix due to warning-free code
2008-12-10 13:03:30 +0100 od  r265172 : #i70748# method <XMLTextImportHelper::SetStyleAndAttrs(..)>
	 - Due to performance issues avoid retrieving outline level value from paragraph's paragraph
	   style for each paragraph. Instead retrieve current outline level value from paragraph, 
           which is the inherited value from its paragraph style, and only when it is needed.
2008-12-09 16:50:36 +0100 ufi  r265117 : help
2008-12-09 16:49:50 +0100 ufi  r265116 : help
2008-12-09 15:45:05 +0100 od  r265107 : #i70748# method <XMLTextImportHelper::SetStyleAndAttrs(..)>
	 - some minor rework and check access to paragraph styles
2008-12-09 15:42:04 +0100 od  r265106 : #i70748# adjust name of local variable to avoid hiding of class variable
2008-12-09 15:40:51 +0100 od  r265105 : #i70748# correct initialization order
2008-12-09 15:35:07 +0100 od  r265101 : #i70748# remove duplicate entry in certain property map
2008-12-09 15:33:39 +0100 od  r265100 : #i70748# add end of file token
2008-12-07 15:11:54 +0100 zhaojianwei  r264952 : conflicts left not to be resolved when cws rebase
2008-12-04 14:52:21 +0100 zhaojianwei  r264846 : CWS-TOOLING: rebase CWS outlinelevel to trunk@264325 (milestone: DEV300:m36)
2008-11-28 03:42:09 +0100 zhaojianwei  r264525 : #i70748#: migrate CWS outlinelevel to SVN
2008-11-28 03:41:39 +0100 zhaojianwei  r264524 : #i70748#: migrate CWS outlinelevel to SVN
2008-11-28 03:41:11 +0100 zhaojianwei  r264523 : #i70748#: migrate CWS outlinelevel to SVN
2009-01-07 11:57:24 +00:00
661a180119 CWS-TOOLING: integrate CWS impress147
2008-12-16 15:51:15 +0100 wg  r265553 : i96805
2008-12-03 12:32:33 +0100 wg  r264766 : 96805
2008-12-03 11:40:11 +0100 wg  r264761 : 96805
2008-11-20 15:39:56 +0100 cl  r264062 : migrated cws from cvs to svn
2008-11-19 14:16:40 +0100 cl  r263992 : CWS-TOOLING: rebase CWS impress147 to trunk@263288 (milestone: DEV300:m35)
2009-01-06 08:40:41 +00:00
305c3ee0d0 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 17:49:45 +00:00
ba13251d79 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-16 13:30:53 +00:00
1f9f07c848 CWS-TOOLING: integrate CWS rtlchart02 2008-12-12 12:17:17 +00:00
9c684781b3 CWS-TOOLING: integrate CWS impressfontsize
2008-12-11 14:15:16 +0100 wg  r265298 : i97125
2008-12-11 12:54:53 +0100 wg  r265288 : i97125
2008-12-11 12:53:03 +0100 wg  r265287 : i97125
2008-12-11 11:25:42 +0100 wg  r265270 : i97125
2008-12-11 10:22:13 +0100 wg  r265253 : i97125
2008-12-11 09:22:47 +0100 wg  r265247 : i97125
2008-12-09 15:28:51 +0100 cl  r265097 : added missing toolbar buttons for inc/dec font size
2008-12-08 17:39:46 +0100 cl  r265012 : #i80257# added autolayout text only
2008-12-08 17:32:07 +0100 cl  r265011 : #i80257# added autolayout text only
2008-12-08 16:42:19 +0100 cl  r265008 : #i94459# fixed a bug in insertByName and replaceByName
2008-12-08 16:25:26 +0100 cl  r265007 : #i80257# new image for text only auto layout in impress
2008-12-08 16:24:01 +0100 cl  r265006 : #i80257# new image for text only auto layout in impress
2008-12-08 16:01:46 +0100 cl  r265003 : #i88855# changed wording from Monitor to Display
2008-12-08 15:57:24 +0100 cl  r265002 : #i91904# applied patch to fix a wrong index access
2008-12-05 12:51:47 +0100 cl  r264900 : #i8824# allow setting of text properties at shape without reformating text
2008-12-05 11:09:21 +0100 cl  r264895 : fixed build problem
2008-12-04 12:04:09 +0100 cl  r264829 : fixed build issue
2008-12-04 11:03:58 +0100 cl  r264823 : #i8824# set new fontsize at shape
2008-12-02 22:39:22 +0100 cl  r264732 : fixed build problem
2008-12-02 22:38:42 +0100 cl  r264731 : fixed build problem
2008-12-01 17:44:29 +0100 cl  r264623 : CWS-TOOLING: rebase CWS impressfontsize to trunk@264325 (milestone: DEV300:m36)
2008-11-07 11:38:13 +0100 cl  r263418 : #i95920# fixed an OpenSolaris build breaker
2008-11-06 14:56:04 +0100 cl  r263386 : #i40730# added support to supress export of hidden slides to html
2008-11-06 14:55:41 +0100 cl  r263385 : #i40730# added support to supress export of hidden slides to html
2008-11-06 14:03:59 +0100 cl  r263384 : #158530# allow editing of interaction links with hyperlink editor
2008-10-20 15:34:13 +0200 cl  r262322 : #i8824# migrate cws impressfontsize to subversion.
2008-12-11 15:25:59 +00:00
9ae05952b0 CWS-TOOLING: integrate CWS sw301bf04_DEV300 2008-12-11 09:52:14 +00:00
7545436c5b 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-11 07:05:03 +00:00
cad36daba4 CWS-TOOLING: integrate CWS os2port04
2008-11-27 13:22:38 +0100 ydario  r264480 : #i96439#: fix build for unix platforms.
2008-11-26 18:32:42 +0100 ydario  r264433 : #i96439#: os2 systemshell code (dummy code).
2008-11-26 16:33:48 +0100 ydario  r264421 : #i96439#: vcl fix for pdf export of truetype fonts.
2008-11-26 15:04:44 +0100 ydario  r264399 : #i96439#: build macros fix scripts, gcc specific flags.
2008-11-26 15:00:15 +0100 ydario  r264398 : #i96439#: vcl source code updates.
2008-11-26 13:21:37 +0100 ydario  r264378 : #i96439#: os2 build system fixes.
2008-11-26 13:20:27 +0100 ydario  r264377 : #i96439#: configuration and build macros updates.
2008-11-26 13:16:35 +0100 ydario  r264375 : #i96439#: new launcher code, build system updates.
2008-11-26 13:12:49 +0100 ydario  r264373 : #i96439#: use OSL endian macro.
2008-11-26 12:54:50 +0100 ydario  r264371 : #i96439#: os2 build system fixes.
2008-11-26 12:30:46 +0100 ydario  r264367 : #i96439#: os2 build system fixes.
2008-11-26 12:09:33 +0100 ydario  r264365 : #i96439#: _Export is a reserved keyword under gcc for os2.
2008-11-26 12:08:12 +0100 ydario  r264364 : #i96439#: new libpath handling.
2008-11-26 11:57:51 +0100 ydario  r264363 : #i96439#: use C call, generates proper stabs; fix rtti names.
2008-12-09 08:43:20 +00:00
1845694485 CWS-TOOLING: integrate CWS os121
2008-11-28 13:44:51 +0100 os  r264551 : Copy Hyperlink Location added
2008-11-28 13:36:20 +0100 os  r264547 : Copy Hyperlink Location added
2008-11-25 15:43:53 +0100 os  r264311 : label of EditHyperlink fixed
2008-11-25 15:42:42 +0100 os  r264310 : use ResetAttr to remove hyperlink
2008-11-25 10:08:02 +0100 os  r264276 : edit/remove hyperlink names fixed
2008-11-11 15:47:22 +0100 os  r263565 : typo fixed
2008-11-10 18:46:00 +0100 os  r263536 : CWS-TOOLING: rebase CWS os121 to trunk@263288 (milestone: DEV300:m35)
2008-11-07 15:34:41 +0100 os  r263422 : #i6191# accept/reject changes;#i7311# remove hyperlink
2008-11-07 15:34:05 +0100 os  r263421 : #i6191# accept/reject changes;#i7311# remove hyperlink
2008-11-06 17:26:18 +0100 os  r263402 : #i43971# words from online help documents must not be added to AutoCompletion
2008-11-06 16:08:27 +0100 os  r263397 : #i6191# accept/reject changes added to context menu
2008-11-06 16:07:49 +0100 os  r263396 : #i6191# accept/reject changes added to context menu
2008-11-06 16:07:16 +0100 os  r263395 : #i6191# accept/reject changes added to context menu
2008-11-06 16:06:18 +0100 os  r263394 : #i6191# accept/reject changes added to context menu
2008-10-30 14:31:32 +0100 os  r262826 : #i84980# less options changed to fewer options
2008-10-30 11:44:41 +0100 os  r262824 : #i95624# don't add paragraph numbering in getString() 
2008-10-27 10:46:04 +0100 os  r262665 : #i88235# SvCheckListBox::SelectEntryPos() paints a CheckBox to the wrong device if page is not visible, yet - call moved to ::Reset()
2008-10-24 15:49:27 +0200 os  r262648 : #i77230# make repeating headers the default
2008-10-23 16:49:42 +0200 os  r262625 : #i95350# RTL output of table window fixed
2008-10-23 15:37:40 +0200 os  r262623 : #i76723# RTL related patch removed - it is now done by vcl
2008-10-22 14:05:58 +0200 os  r262601 : #b6297019#,#i49754# LoadStyles: restore outline settings
2008-10-22 14:05:17 +0200 os  r262600 : #b6297019#,#i49754# LoadStyles: restore outline settings
2008-10-20 15:39:18 +0200 os  r262323 : #i95059# border attribute: which id of SID_ATTR_BORDER_INNER fixed
2008-10-20 09:30:28 +0200 os  r262305 : #i95123# conflict css::util::Color and ::Color solved
2008-10-17 11:44:16 +0200 os  r262280 : #i93714# merge to PDF: convert fields to text before export
2008-10-17 10:30:11 +0200 os  r262275 : #i94364# 
2008-10-17 10:11:56 +0200 os  r262274 : +i94536# default font ListBoxes: prevent entry duplication if 'Back' button is pressed
2008-12-09 07:49:49 +00:00
7a5d79f229 CWS-TOOLING: integrate CWS dba31e
2008-11-19 12:36:23 +0100 msc  r263980 : i96104
2008-11-19 12:31:19 +0100 msc  r263979 : i96104
2008-11-19 12:21:55 +0100 msc  r263977 : i96104
2008-11-19 12:18:53 +0100 msc  r263976 : i96104
2008-11-18 09:09:45 +0100 oj  r263746 : disable color entry when area is set
2008-11-18 08:37:52 +0100 oj  r263741 : #remove sub report entry
2008-11-17 11:20:25 +0100 fs  r263708 : #i10000#
2008-11-17 11:06:52 +0100 fs  r263706 : minimal version now is 3.1
2008-11-12 22:25:59 +0100 fs  r263621 : #i96150#
2008-11-12 22:20:02 +0100 fs  r263620 : rebased to m34
2008-11-12 21:39:41 +0100 fs  r263618 : MANUAL REBASE: rebase CWS dba31d to DEV300_m34
2008-11-12 13:54:58 +0100 fs  r263597 : #i96134# MediaDescriptor.URL is to be preferred over MediaDescriptor.FileName. Nonetheless, ensure both are handled
2008-11-12 13:53:40 +0100 fs  r263596 : #i96134# re-enabled the code for #i41897#, a better fix is to come
2008-11-12 12:48:21 +0100 fs  r263585 : #i96134# disable saving URLs of file-base databases relatively
2008-11-11 16:11:11 +0100 msc  r263566 : #i96104#
2008-11-05 09:09:47 +0100 oj  r263342 : #i88727# color noe added
2008-11-05 08:41:43 +0100 oj  r263341 : #i77916# zoom added
2008-11-04 21:24:15 +0100 fs  r263339 : disposing: call disposeAndClear without own mutex locked - some of our listeners insist on locking the SolarMutex, which sometimes led to deadlocks on the complex test cases
2008-11-04 21:23:15 +0100 fs  r263338 : remove SolarMutex locking - this happned in CWS dba31c (in the CVS version), which this CWS was created from, but seems to got lost during resync
2008-11-04 20:49:50 +0100 fs  r263335 : docu formatting
2008-11-04 20:06:39 +0100 fs  r263334 : #i95826# use m_aMutex, not a DocumentGuard (wrongly resolved merge conflicts)
2008-11-04 17:36:29 +0100 fs  r263332 : #i92688# properly revoke as XEventListener from m_xActiveController when disposing
2008-11-04 14:49:34 +0100 fs  r263324 : #i92322# enable Input Required if EmptyIsNULL does not exist at the control
2008-10-31 11:10:04 +0100 oj  r262857 : merge from cvs to svn
2008-10-31 09:46:45 +0100 oj  r262853 : merge from cvs to svn
2008-10-31 08:46:37 +0100 oj  r262849 : merge from cvs to svn
2008-10-31 08:44:24 +0100 oj  r262848 : merge from cvs to svn
2008-10-31 08:43:33 +0100 oj  r262847 : merge from cvs to svn
2008-10-31 08:42:28 +0100 oj  r262846 : merge from cvs to svn
2008-10-31 08:41:58 +0100 oj  r262845 : merge from cvs to svn
2008-10-31 08:41:32 +0100 oj  r262844 : merge from cvs to svn
2008-10-28 12:19:50 +0100 oj  r262733 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:42 +0100 oj  r262732 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:36 +0100 oj  r262731 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:31 +0100 oj  r262730 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:22 +0100 oj  r262729 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:18 +0100 oj  r262728 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:10 +0100 oj  r262727 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:06 +0100 oj  r262726 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:05 +0100 oj  r262725 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:19:01 +0100 oj  r262724 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:18:50 +0100 oj  r262723 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:18:41 +0100 oj  r262722 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:18:40 +0100 oj  r262721 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:18:27 +0100 oj  r262720 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:18:10 +0100 oj  r262719 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:18:01 +0100 oj  r262718 : #iXXXXX#: migrate CWS dba31e to SVN
2008-10-28 12:17:39 +0100 oj  r262717 : #iXXXXX#: migrate CWS dba31e to SVN
2008-12-01 12:31:27 +00:00
8ae52b16ca CWS-TOOLING: integrate CWS rtlchart01 2008-11-26 15:19:48 +00:00
7e6737cc86 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-10 15:06:12 +00:00
ba71b1135c #i94947# broken hasProperty check (by MST) 2008-10-17 09:24:18 +00:00
ae562e931a CWS-TOOLING: integrate CWS odbmacros3 2008-10-16 06:57:26 +00:00
7bf29c44ef CWS-TOOLING: integrate CWS mba30fixes02 2008-10-14 05:23:43 +00:00
a3458db24d CWS-TOOLING: integrate CWS cmcfixes49 2008-10-10 13:02:43 +00:00
c717c57260 CWS-TOOLING: integrate CWS chart30 2008-10-01 07:35:04 +00:00
530897d64b CWS-TOOLING: integrate CWS swlists02 2008-10-01 06:34:11 +00:00
f22a3f50ef CWS-TOOLING: integrate CWS impress159_DEV300 2008-09-29 11:29:16 +00:00
c653a7b3c4 INTEGRATION: CWS swenhancedfields2 (1.66.8); FILE MERGED
2008/08/04 12:37:49 b_michaelsen 1.66.8.2: RESYNC: (1.66-1.68); FILE MERGED
2008/04/23 09:01:55 ama 1.66.8.1: #i33737#: Enhanced fields
2008-09-04 09:09:48 +00:00
3b9308ea0f INTEGRATION: CWS swenhancedfields2 (1.142.8); FILE MERGED
2008/08/04 15:18:37 b_michaelsen 1.142.8.3: RESYNC: (1.142-1.150); FILE MERGED
2008/05/07 09:56:44 ama 1.142.8.2: Patch #i33737#: Enhanced fields
2008/04/23 09:01:55 ama 1.142.8.1: #i33737#: Enhanced fields
2008-09-04 09:09:34 +00:00
723d095301 INTEGRATION: CWS swenhancedfields2 (1.138.8); FILE MERGED
2008/08/05 15:25:25 b_michaelsen 1.138.8.5: post resync merge fixes
2008/08/04 15:11:24 b_michaelsen 1.138.8.4: RESYNC: (1.138-1.143); FILE MERGED
2008/04/24 09:04:31 ama 1.138.8.3: #i33737#: Enhanced fields
2008/04/24 07:47:39 ama 1.138.8.2: #i33737#: Enhanced fields
2008/04/23 09:01:55 ama 1.138.8.1: #i33737#: Enhanced fields
2008-09-04 09:09:15 +00:00
ebc1c6cd7e INTEGRATION: CWS swenhancedfields2 (1.5.140); FILE MERGED
2008/08/05 15:25:25 b_michaelsen 1.5.140.3: post resync merge fixes
2008/08/04 12:37:52 b_michaelsen 1.5.140.2: RESYNC: (1.5-1.7); FILE MERGED
2008/04/23 09:01:55 ama 1.5.140.1: #i33737#: Enhanced fields
2008-09-04 09:09:01 +00:00
92e6717195 INTEGRATION: CWS swenhancedfields2 (1.12.8); FILE MERGED
2008/08/05 15:25:25 b_michaelsen 1.12.8.5: post resync merge fixes
2008/08/04 15:03:51 b_michaelsen 1.12.8.4: RESYNC: (1.12-1.14); FILE MERGED
2008/05/07 09:57:12 ama 1.12.8.3: Patch #i33737#: Enhanced fields
2008/04/24 07:43:35 ama 1.12.8.2: #i33737#: Enhanced fields
2008/04/23 09:01:55 ama 1.12.8.1: #i33737#: Enhanced fields
2008-09-04 09:08:48 +00:00
10ff676cb2 INTEGRATION: CWS swenhancedfields2 (1.123.22); FILE MERGED
2008/08/04 15:02:41 b_michaelsen 1.123.22.3: RESYNC: (1.123-1.131); FILE MERGED
2008/05/07 09:54:57 ama 1.123.22.2: Patch #i33737#: Enhanced fields
2008/04/23 08:21:05 ama 1.123.22.1: #i33737#: Enhanced fields
2008-09-04 09:08:34 +00:00
47e17e87ee INTEGRATION: CWS swenhancedfields2 (1.106.8); FILE MERGED
2008/08/04 14:57:09 b_michaelsen 1.106.8.2: RESYNC: (1.106-1.112); FILE MERGED
2008/05/07 09:54:00 ama 1.106.8.1: Patch #i33737#: Enhanced fields
2008-09-04 09:08:19 +00:00
f4dc928b31 INTEGRATION: CWS swenhancedfields2 (1.136.8); FILE MERGED
2008/08/04 14:55:34 b_michaelsen 1.136.8.2: RESYNC: (1.136-1.142); FILE MERGED
2008/04/23 08:21:05 ama 1.136.8.1: #i33737#: Enhanced fields
2008-09-04 09:08:05 +00:00
69a59448e5 INTEGRATION: CWS sw30bf13_DEV300 (1.150.12.1.2); FILE MERGED
2008/08/15 14:04:37 od 1.150.12.1.2.1: #i92811# - import of lists:
	 -- assure that the first list with a certain list style uses
	    the internal list style's default list id as its list id
	 - export of lists:
	 -- correct export of property text::continue-numbering
2008-08-27 07:57:58 +00:00
d17a2dc30b INTEGRATION: CWS sw30bf13_DEV300 (1.2.60); FILE MERGED
2008/08/15 14:04:37 od 1.2.60.1: #i92811# - import of lists:
	 -- assure that the first list with a certain list style uses
	    the internal list style's default list id as its list id
	 - export of lists:
	 -- correct export of property text::continue-numbering
2008-08-27 07:57:34 +00:00
b6914fce81 INTEGRATION: CWS sw30bf13_DEV300 (1.143.22.1.2); FILE MERGED
2008/08/15 14:04:37 od 1.143.22.1.2.1: #i92811# - import of lists:
	 -- assure that the first list with a certain list style uses
	    the internal list style's default list id as its list id
	 - export of lists:
	 -- correct export of property text::continue-numbering
2008-08-27 07:57:19 +00:00
867d2b9a2c INTEGRATION: CWS sw30bf13_DEV300 (1.13.24.1.2); FILE MERGED
2008/08/15 14:04:37 od 1.13.24.1.2.1: #i92811# - import of lists:
	 -- assure that the first list with a certain list style uses
	    the internal list style's default list id as its list id
	 - export of lists:
	 -- correct export of property text::continue-numbering
2008-08-27 07:57:03 +00:00
1117a34cc5 INTEGRATION: CWS aw033 (1.87.28); FILE MERGED
2008/07/11 11:39:15 aw 1.87.28.9: RESYNC: (1.99-1.100); FILE MERGED
2008/06/25 13:04:11 aw 1.87.28.8: RESYNC: (1.98-1.99); FILE MERGED
2008/05/14 14:47:30 aw 1.87.28.7: RESYNC: (1.97-1.98); FILE MERGED
2008/03/14 13:56:46 cl 1.87.28.6: RESYNC: (1.93-1.97); FILE MERGED
2008/01/29 13:13:44 aw 1.87.28.5: RESYNC: (1.92-1.93); FILE MERGED
2007/12/03 16:32:53 aw 1.87.28.4: RESYNC: (1.90-1.92); FILE MERGED
2007/10/08 14:37:05 aw 1.87.28.3: RESYNC: (1.89-1.90); FILE MERGED
2007/08/09 13:54:25 aw 1.87.28.2: RESYNC: (1.87-1.89); FILE MERGED
2007/06/29 17:09:05 aw 1.87.28.1: changes after resync
2008-08-19 23:09:56 +00:00
9dfb08b240 INTEGRATION: CWS dba31a (1.8.64); FILE MERGED
2008/07/03 10:36:07 fs 1.8.64.1: work around some strange duplicate symbols when compiling with debug
2008-08-19 08:28:52 +00:00
506c8667c0 INTEGRATION: CWS sw30bf11 (1.150.14); FILE MERGED
2008/07/31 08:15:16 od 1.150.14.1: #i92221# text:id in element <text:list> replaced by xml:id
2008-08-18 09:47:46 +00:00
7e3207988e INTEGRATION: CWS sw30bf11 (1.143.24); FILE MERGED
2008/07/31 08:15:16 od 1.143.24.1: #i92221# text:id in element <text:list> replaced by xml:id
2008-08-18 09:47:25 +00:00
21bed68dc9 INTEGRATION: CWS sw30bf11 (1.13.26); FILE MERGED
2008/07/31 08:15:16 od 1.13.26.1: #i92221# text:id in element <text:list> replaced by xml:id
2008-08-18 09:47:10 +00:00
e3f02751b0 INTEGRATION: CWS tl58 (1.2.52); FILE MERGED
2008/08/06 10:17:43 od 1.2.52.1: #i92478# method <XMLTextListsHelper::GenerateNewListId()>
	 - created list id now starts with "list" to conform to ID type
2008-08-14 18:39:26 +00:00
16f2bc7eaa INTEGRATION: CWS impress151 (1.31.84); FILE MERGED
2008/07/30 12:13:39 cl 1.31.84.1: #i92279# detect NeoOffice/2 documents as OOo 2.2 release
2008-08-01 12:27:24 +00:00
63cae6eb1c INTEGRATION: CWS chart22 (1.116.2); FILE MERGED
2008/07/30 10:11:59 iha 1.116.2.6: RESYNC: (1.127-1.130); FILE MERGED
2008/06/10 11:07:52 iha 1.116.2.5: RESYNC: (1.125-1.127); FILE MERGED
2008/04/17 10:12:42 iha 1.116.2.4: RESYNC: (1.123-1.125); FILE MERGED
2008/03/19 14:19:43 iha 1.116.2.3: RESYNC: (1.122-1.123); FILE MERGED
2008/03/12 13:17:48 iha 1.116.2.2: RESYNC: (1.116-1.122); FILE MERGED
2008/02/21 12:23:54 iha 1.116.2.1: #i65549# Plotting of missing values
2008-07-30 10:45:44 +00:00
a78affca61 INTEGRATION: CWS chart22 (1.51.70); FILE MERGED
2008/07/30 10:12:07 iha 1.51.70.5: RESYNC: (1.54-1.55); FILE MERGED
2008/06/10 11:07:24 iha 1.51.70.4: RESYNC: (1.53-1.54); FILE MERGED
2008/04/17 10:12:54 iha 1.51.70.3: RESYNC: (1.52-1.53); FILE MERGED
2008/03/12 13:17:38 iha 1.51.70.2: RESYNC: (1.51-1.52); FILE MERGED
2008/02/21 16:50:04 iha 1.51.70.1: #i65549# Plotting of missing values
2008-07-30 10:45:31 +00:00
bd01e1b963 INTEGRATION: CWS chart22 (1.30.2); FILE MERGED
2008/07/30 10:12:04 iha 1.30.2.5: RESYNC: (1.33-1.34); FILE MERGED
2008/06/10 11:07:32 iha 1.30.2.4: RESYNC: (1.32-1.33); FILE MERGED
2008/04/17 10:12:49 iha 1.30.2.3: RESYNC: (1.31-1.32); FILE MERGED
2008/03/12 13:17:34 iha 1.30.2.2: RESYNC: (1.30-1.31); FILE MERGED
2008/02/21 16:49:33 iha 1.30.2.1: #i65549# Plotting of missing values
2008-07-30 10:45:17 +00:00
c78f0775dc INTEGRATION: CWS impress148 (1.19.68); FILE MERGED
2008/07/11 08:09:43 cl 1.19.68.1: #i91470# failure of assigning a fill style now leads to a warning, not an error
2008-07-25 05:56:21 +00:00