History log of /trunk/main/sc/ (Results 101 - 125 of 418)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
3d28333a01-Sep-2016 truckman

Fix -Wunused-private-field errors in sc/inc/compiler.hxx. The structure
ScDoubleRawToken contains four unused private fields. Mark these as
unused to eliminate the warning message. We can'

Fix -Wunused-private-field errors in sc/inc/compiler.hxx. The structure
ScDoubleRawToken contains four unused private fields. Mark these as
unused to eliminate the warning message. We can't delete these fields
because we want the layout of this structure to match ScRawToken.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758709 13f79535-47bb-0310-9956-ffa450edef68

show more ...

b63233d807-Aug-2016 damjan

Merge branches/gbuild-reintegration to trunk.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1755455 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO4121
5dfc2e7331-May-2016 pfg

RAND(): Destroy the random pool after seeding.

We are using rtl_random() only for seeding, we can save some memory here.


git-svn-id: https://svn.apache.org/repos/asf/openoffice

RAND(): Destroy the random pool after seeding.

We are using rtl_random() only for seeding, we can save some memory here.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1746363 13f79535-47bb-0310-9956-ffa450edef68

show more ...

30acf5e822-May-2016 pfg

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535-47bb-0310-9956-ffa450edef68

show more ...

c32d42b504-Apr-2016 damjan

#i126901# CSV import: values with + or - followed by thousand separator and
3 digits (eg. +,123) are imported as a number

Do not allow numbers parsed from CVS files when "Detect special

#i126901# CSV import: values with + or - followed by thousand separator and
3 digits (eg. +,123) are imported as a number

Do not allow numbers parsed from CVS files when "Detect special numbers" is
off, to contain thousand separators before digits, even if after a +/- sign
(eg. -,123 or +,789). Treat these as strings instead.

Also added unit tests for this and exported the ScStringUtil class so it
can be tested.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1737624 13f79535-47bb-0310-9956-ffa450edef68

show more ...

faa11fa317-Feb-2016 Damjan Jovanovic

#i118023# Calc: Cut-and-paste between spreadsheets causes incorrect cell reference changes

When pasting cut cells, Calc updates references to their old positions
to instead refer to thei

#i118023# Calc: Cut-and-paste between spreadsheets causes incorrect cell reference changes

When pasting cut cells, Calc updates references to their old positions
to instead refer to their new positions. This is done using the tab index,
row and column, however the document is not taken into account. As a result,
when cutting and pasting between documents, cells in the target document
end up getting changed instead of in the source, potentially leading to
formula corruption, which is undoable but could easily go unnoticed,
causing data loss when the document is saved.

We don't really support inter-document reference updates anyway, so fix
this bug by restricting reference updates to the intra-document cut and
paste case only.

Patch by: me
Reviewed by: kschenk



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1730772 13f79535-47bb-0310-9956-ffa450edef68

show more ...

a940b7f506-Dec-2015 asf-sync-process

#i126701# Patch for adding bit shift functions to calc

Patch by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>
Review by: me




git-svn

#i126701# Patch for adding bit shift functions to calc

Patch by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>
Review by: me




git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1718196 13f79535-47bb-0310-9956-ffa450edef68

show more ...

0f94c4d722-Nov-2015 Damjan Jovanovic

#i126668# Addition of Bitwise Arithmetic Operations (BITAND, BITOR and BITXOR) in calc

Patch by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>
Review by: me

#i126668# Addition of Bitwise Arithmetic Operations (BITAND, BITOR and BITXOR) in calc

Patch by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>
Review by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1715605 13f79535-47bb-0310-9956-ffa450edef68

show more ...

c5c7750d12-Nov-2015 Damjan Jovanovic

#i35093# Find (and replace) on selected cells is misleading

When any cellc in Calc are selected at the time the "Find & Replace" dialog is opened,
automatically check the "Current select

#i35093# Find (and replace) on selected cells is misleading

When any cellc in Calc are selected at the time the "Find & Replace" dialog is opened,
automatically check the "Current selection only" checkbox, just like Writer does when
multiple lines of text are selected when this dialog opens. Users expect this from
Writer and other spreadsheets, and not doing it can even lead to wrong cells
being changed when "Replace" is used!

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1714091 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO412
2e4d233503-Nov-2015 Damjan Jovanovic

#i60307# search for strings in date formats fails.
When "Search in" is set to "Values", search the formatted values
instead of just the raw input. This fixes a 9 year old
bug that's been

#i60307# search for strings in date formats fails.
When "Search in" is set to "Values", search the formatted values
instead of just the raw input. This fixes a 9 year old
bug that's been duplicated at least 6 times, and matches what Excel
does. Tests show even "Replace" works, and works well: if
"October" is replaced by "November", it converts the original
month from 10 to 11; it only converts the cell type to text if the
resulting text is no longer a valid date. Also added BVT tests
for the expected behaviour.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1712367 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: SNAPSHOT
9ecfe28e06-Oct-2015 Andrea Pescetti

#i126572# Use correct priority when updating links.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1707169 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO411
dfadc01f12-Sep-2015 Damjan Jovanovic

#i126516# Document the return values for the TYPE() formula function in the online help too.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1702604 13f79535-47bb-031

#i126516# Document the return values for the TYPE() formula function in the online help too.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1702604 13f79535-47bb-0310-9956-ffa450edef68

show more ...

3de57b8709-Sep-2015 Damjan Jovanovic

#i123901# formula DGET() gives #VALUE! error when fetching calculation resulting in string
Gets ScDBQueryDataIterator::DataAccessInternal::getCurrent() to handle formulas returning strings.
A

#i123901# formula DGET() gives #VALUE! error when fetching calculation resulting in string
Gets ScDBQueryDataIterator::DataAccessInternal::getCurrent() to handle formulas returning strings.
Added a spreadsheet test for this behaviour.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1702107 13f79535-47bb-0310-9956-ffa450edef68

show more ...

c64f2bbd06-Sep-2015 Pedro Giffuni

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis


git-svn-id: https://svn.apache.org/repos/as

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1701535 13f79535-47bb-0310-9956-ffa450edef68

show more ...

c667dd4702-Sep-2015 Pedro Giffuni

Fix some perl shebangs.

Mosrt important perl scripts already use a portable method
but fix these nevertheless.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk

Fix some perl shebangs.

Mosrt important perl scripts already use a portable method
but fix these nevertheless.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1700845 13f79535-47bb-0310-9956-ffa450edef68

show more ...

c9b8e80621-Apr-2015 Pedro Giffuni

Minor cleanups in the random generator code.

Drop unused variables.
Enhance slightly the naming of static variables.


git-svn-id: https://svn.apache.org/repos/asf/openoffice

Minor cleanups in the random generator code.

Drop unused variables.
Enhance slightly the naming of static variables.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1675168 13f79535-47bb-0310-9956-ffa450edef68

show more ...

b54ae67226-Mar-2015 Pedro Giffuni

Re-implement Calc's RAND() function using a variant of KISS PRNG.

George Marsaglia's KISS algorithm is a rather simple implementation
of a random number generator but it has interesting

Re-implement Calc's RAND() function using a variant of KISS PRNG.

George Marsaglia's KISS algorithm is a rather simple implementation
of a random number generator but it has interesting properties with
respect ot the traditional Mersenne Twister.

I used the 2011 32 bit Multiply-with-carry variant, with an
undetermined period which is known to be not less than 10^40000000;
it is known to pass all the statistical tests.

The Apache OpenOffice implementation uses an aggressive seeding
scheme based on the internal rtl_random functions, rendering the
function basically unpredictable. As a side effect it is also not
possible to specify a seed for repeatability. No claims are made
concerning crypto-safeness.

The specific adaption for Apache OpenOffice is:

Copyright 2015 Pedro Giffuni
All rights reserved.

Huge thanks to Steve Kargl for pointing me to the algorithm and
the late George Marsaglia for creating it in the first place.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1669455 13f79535-47bb-0310-9956-ffa450edef68

show more ...

32bb723130-Jan-2015 Tsutomu Uchino

#i105692# rearrange the order of the controls and fix name of type

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1656067 13f79535-47bb-0310-9956-ffa450edef68

b7caab4027-Jan-2015 Tsutomu Uchino

#i85241# store settings about value highlighting in document

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1655033 13f79535-47bb-0310-9956-ffa450edef68

641e855f22-Jan-2015 Tsutomu Uchino

#i107619# update search result while repeating search

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1653973 13f79535-47bb-0310-9956-ffa450edef68

69c4a2ec15-Jan-2015 Tsutomu Uchino

#i117843# avoid shrinking the range from external file until the matrix supports gap from the original range

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1652207 13f79535-47

#i117843# avoid shrinking the range from external file until the matrix supports gap from the original range

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1652207 13f79535-47bb-0310-9956-ffa450edef68

show more ...

56b35d8602-Jun-2014 Armin Le Grand

i124638 Second step of DrawingLayer FillAttributes for Writer objects, now added support for Paragraph and PageStyle (including Header and Footer) for direct attributes and style attributes

i124638 Second step of DrawingLayer FillAttributes for Writer objects, now added support for Paragraph and PageStyle (including Header and Footer) for direct attributes and style attributes

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1599233 13f79535-47bb-0310-9956-ffa450edef68

show more ...

4d40bd3415-May-2014 Herbert Dürr

#i124422# fix implicit conversions to pointer from bool/int32

implicit conversions from bool or int32 to pointer types are not a good idea
and clang>=3.4 or xcode>=5.1 now report errors

#i124422# fix implicit conversions to pointer from bool/int32

implicit conversions from bool or int32 to pointer types are not a good idea
and clang>=3.4 or xcode>=5.1 now report errors for such code. The errors break
the build and so they have to be fixed.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594864 13f79535-47bb-0310-9956-ffa450edef68

show more ...

86e1cf3429-Apr-2014 Pedro Giffuni

Many spelling fixes: directories r* - z*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame

Many spelling fixes: directories r* - z*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame the international nature of the code but
it is somewhat shameful that this wasn't done before.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591062 13f79535-47bb-0310-9956-ffa450edef68

show more ...


addin/datefunc/dfa.cl
addin/datefunc/dfa.src
addin/rot13/rot13.cl
addin/rot13/rot13.src
inc/attarray.hxx
inc/chgtrack.hxx
inc/column.hxx
inc/compressedarray.hxx
inc/document.hxx
inc/table.hxx
qa/complex/dataPilot/_XPropertySet.java
qa/complex/sc/CalcRTL.java
source/core/data/column.cxx
source/core/data/dpobject.cxx
source/core/data/dptablecache.cxx
source/core/data/dptabres.cxx
source/core/data/dptabsrc.cxx
source/core/data/global.cxx
source/core/data/validat.cxx
source/core/tool/chgtrack.cxx
source/core/tool/compiler.cxx
source/core/tool/interpr1.cxx
source/core/tool/interpr2.cxx
source/core/tool/interpr5.cxx
source/filter/excel/ooxml-export-TODO.txt
source/filter/excel/xeformula.cxx
source/filter/excel/xepivot.cxx
source/filter/excel/xestyle.cxx
source/filter/excel/xichart.cxx
source/filter/excel/xipivot.cxx
source/filter/excel/xlpivot.cxx
source/filter/inc/fapihelper.hxx
source/filter/inc/xehelper.hxx
source/filter/inc/xestream.hxx
source/filter/inc/xistream.hxx
source/filter/inc/xistyle.hxx
source/filter/xml/xmlimprt.cxx
source/filter/xml/xmlsubti.cxx
source/ui/Accessibility/AccessibleCell.cxx
source/ui/Accessibility/AccessibleContextBase.cxx
source/ui/Accessibility/AccessibleDataPilotControl.cxx
source/ui/Accessibility/AccessibleDocument.cxx
source/ui/Accessibility/AccessibleDocumentPagePreview.cxx
source/ui/Accessibility/AccessibleEditObject.cxx
source/ui/Accessibility/AccessiblePreviewCell.cxx
source/ui/app/inputwin.cxx
source/ui/app/scmod.cxx
source/ui/docshell/docfunc.cxx
source/ui/docshell/docsh8.cxx
source/ui/drawfunc/fupoor.cxx
source/ui/miscdlgs/linkarea.cxx
source/ui/unoobj/chart2uno.cxx
source/ui/unoobj/dapiuno.cxx
source/ui/unoobj/dispuno.cxx
source/ui/unoobj/docuno.cxx
source/ui/unoobj/nameuno.cxx
source/ui/vba/vbacharacters.hxx
source/ui/vba/vbachartobject.cxx
source/ui/vba/vbaformatconditions.cxx
source/ui/vba/vbarange.cxx
source/ui/vba/vbarange.hxx
source/ui/vba/vbawindow.cxx
source/ui/vba/vbaworksheet.cxx
Revision tags: AOO410
0bfedac219-Mar-2014 Armin Le Grand

Resync/update with trunk as preparation to integration

git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/alg_writerframes@1579184 13f79535-47bb-0310-9956-ffa450edef68


12345678910>>...17