summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj
AgeCommit message (Collapse)AuthorFilesLines
2013-11-25add methods to enable and disable automatic device selectionMarkus Mohrhard1-0/+23
Change-Id: I7136ad48ad3f20c60b77838225ce6c927514acff
2013-11-25add API to retrieve all available OpenCL platforms and devicesMarkus Mohrhard1-1/+28
Change-Id: I2475961ae315ee7193ca2cedd5943b663bfee7a0
2013-11-25provide UNO API for OpenCL selectionMarkus Mohrhard1-0/+56
Change-Id: If5eb71e9298cefdac3dda98cb1ff67fe913ad3c3
2013-11-20avmedia: Implement "block untrusted referer links" featureStephan Bergmann1-6/+16
See f0a9ca24fd4bf79cac908bf0d6fdb8905dc504db "rhbz#887420 Implement 'block untrusted referer links' feature" for details. This adds some further /*TODO?*/ comments, and one known problem (marked /*TODO!*/) is that movies/sounds are not blocked during a slideshow presentation. Change-Id: Ib2d0c7e4f7b02c4bdec0d8a90cee5e7e1bee8325
2013-11-20convert equalsAsciiL calls to startsWith callsNoel Grandin3-7/+6
Convert code like: aStr.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ActiveConnection" ) ) to aStr.startsWith( "ActiveConnection" ) which compiles down to the same machine code. Change-Id: Id4b0c5e0f9afe716a468d3afc70374699848dc33
2013-11-19remove unnecessary use of OUString constructor when assigningNoel Grandin6-12/+12
change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
2013-11-19remove most use of RTL_CONSTASCII_USTRINGPARAM macroNoel Grandin1-1/+1
This is largely unnecessary when working with OUString Change-Id: I3cf4d68357a43665d01162ef4a2d5346a45da9be
2013-11-14Move MediaDescriptor from comphelper to unotoolsStephan Bergmann1-2/+2
...so it will be able to use SvtSecurityOptions internally. Change-Id: Id7433247e8fc53651935578510bedbcca5aa2ac9
2013-11-14-Werror,-Wunused-member-functionStephan Bergmann1-12/+0
Change-Id: Icd677dcdbc1748da2fcd1dc37db9c4885f505ac9
2013-11-14remove unnecessary sal_Unicode casts in SC moduleNoel Grandin2-3/+3
Change-Id: Iee7688ea60b4d45d3e6725afd46e9cbb5ebe26c5
2013-11-11convert OUString compareToAscii == 0 to equalsAsciiNoel Grandin4-67/+67
Convert code like aStr.compareToAscii("XXX") == 0 to aStr.equalsAscii("XXX") which is both easier to read and faster. Change-Id: I448abf58f2fa0e7715dba53f8e8825ca0587c83f
2013-11-11convert OUString !compareToAscii to equalsAsciiNoel Grandin1-5/+5
Convert code like if( ! aStr.compareToAscii("XXX") ) to if( aStr.equalsAscii("XXX") ) which is both clearer and faster. Change-Id: I267511bccab52f5225b291acbfa4e388b5a5302b
2013-11-11remove unnecessary use of OUString constructorNoel Grandin1-9/+8
Change-Id: Ifb220af71857ddacd64e8204fb6d3e4aad8eef71
2013-11-11remove unnecessary use of OUString constructor in SC moduleNoel Grandin2-8/+7
Change-Id: I2d40c589eb3b5c99300f36cd705c32cf824b2a98
2013-11-06Modify ScFormulaCell's ctor to take a const reference to ScTokenArray.Kohei Yoshida2-3/+4
Instead of a pointer to ScTokenArray, and then clone its instance. If the token array gets cloned in ctor, take a const reference. Change-Id: I280fd7eb9eaea9905dbf954a1ace904ab0814dfe
2013-11-04Populate raw cell values using ScDocumentImport.Kohei Yoshida1-1/+1
Also fix incorrect const methods. Methods that populate the document model should not be marked const even if the compiler allows it. Change-Id: Ic5d1670ce93c166d0f44ace04494fccab6eac275
2013-11-04remove redundant calls to OUString constructor in if expressionNoel Grandin1-1/+1
Convert code like: if( aStr == OUString("xxxx") ) to this: if( aStr == "xxxx" ) Change-Id: I8d201f048477731eff590fb988259ef0935c080c
2013-10-30Use enum for table op mode.Kohei Yoshida1-5/+6
Change-Id: I51e110fb0a2b72689f529d7094389cc3e20dfbe0
2013-10-28fdo#70100 Detect single stream excel files with BOF ID 5Maxim Monastirsky1-0/+1
Change-Id: I321b7a08e0436a9c33878acd1ce2f98c497040b5 Reviewed-on: https://gerrit.libreoffice.org/6447 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2013-10-23Avoid exposing the internal cell note storage outside ScDocument.Kohei Yoshida1-35/+6
Let's try to avoid including mtvelements.hxx in document.hxx... mtvelements.hxx is very parser-heavy, and document.hxx is included everywhere... Change-Id: I2768ba6e25f8ff10f61f9cfd4a7cbc4844230630
2013-10-23remove warning [-Wsign-compare]Laurent Godard1-2/+3
Change-Id: I1a131294a7ea6e55a97394caf10aeea1e55e0e00
2013-10-23Re-implement cell note storage using mdds::multi_type_vector.Laurent Godard3-10/+28
Change-Id: I34ea91e360e2a6b85d65f970c6e43db687d213ca
2013-10-22Bin comments that claim to say why some header is includedTor Lillqvist5-7/+7
They are practically always useless, often misleading or obsolete. Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
2013-10-20drop unnecessary tools/string includesCaolán McNamara1-1/+1
Change-Id: I4278999b9b7d184c26036bbe9e3b98420f461e8c
2013-10-19CID#1103761 uninit memberCaolán McNamara1-1/+2
Change-Id: I4212adb9c0cb8e1693df8725801188bc2154fffe
2013-10-18convert remaining String in SC to OUStringNoel Grandin2-7/+6
Change-Id: I3ee8c3b59bf9d6ef6516f1da64cbe5f0b35af2d0
2013-10-11Formula tokens, formula cells and formula interpreters to use shared strings.Kohei Yoshida4-13/+19
Change-Id: I5da99869fc7f61ce698180fa5daa9be9db9ac132
2013-10-11GetString() from ScMatrix to return SharedString.Kohei Yoshida1-1/+2
And adjust all its call sites. Change-Id: Ibb0c754e8fa105bd1a6035f2e0df5cee2d8491c4
2013-10-11Store svl::SharedString in query entry items, and adjust all call sites.Kohei Yoshida2-15/+36
Change-Id: Ifd3bbb84c7abbe983a017a169c7e05914ef33450
2013-10-08-Werror,-Wunused-variableStephan Bergmann1-1/+0
Change-Id: I50b99a129f6a102be7120da318533cbbdd0af105
2013-10-08convert sc/source/ui/unoobj/*.cxx from String to OUStringNoel Grandin26-730/+713
Change-Id: If3d93c94b4a07a79585987a5d8a83344c088e805
2013-10-08convert sc/inc/addruno.hxx from String to OUStringNoel Grandin1-1/+1
Change-Id: Ie5a8d1e08edcb8805f21c34cc3bb320c1b78b086
2013-10-08convert sc/inc/cellsuno.hxx from String to OUStringNoel Grandin1-1/+1
Change-Id: Ifd3ccb29b24e3ee8a2a2f140418250e0eac40acc
2013-10-08convert sc/inc/chartuno.hxx from String to OUStringNoel Grandin1-1/+1
Change-Id: Idd784c7e6663e7e662fe4767211fc83905641786
2013-10-08convert sc/inc/dapiuno.hxx from String to OUStringNoel Grandin1-1/+1
Change-Id: I114cb0840ddaf2d3631dedb5d2bed65ef3e84f3c
2013-10-08convert sc/inc/datauno.hxx from String to OUStringNoel Grandin1-1/+1
Change-Id: I17b0ef3bf04cf4a524c1301bfc8a6003436429f3
2013-10-08convert sc/inc/doc*.hxx from String to OUStringNoel Grandin1-6/+6
Change-Id: If62c5761c326841d1e3ab35dfdf1601d9713095b
2013-10-04convert sc/inc/fmtuno.hxx from String to OUStringNoel Grandin1-10/+10
Change-Id: Ia8fccd5d062ed27bebf87a46f774fff589c1076b
2013-10-04convert sc/inc/l*.hxx from String to OUStringNoel Grandin1-3/+3
Change-Id: I52f9989cead1fc84e659fe0e4180a9c85388355d
2013-10-04convert sc/inc/nameuno.hxx from String to OUStringNoel Grandin1-4/+4
Change-Id: I99faf0c59c890a1de0e038053e2d97bf1a017270
2013-10-04convert sc/inc/r*.hxx from String to OUStringNoel Grandin3-8/+8
Change-Id: Iaae69c0914917d9d5851f227be28ff5cd098da8b
2013-10-04convert sc/inc/s*.hxx from String to OUStringNoel Grandin1-2/+2
Change-Id: Ie5e439ac664e9725bad9366d31990279b411c475
2013-10-04convert sc/inc/t*.hxx from String to OUStringNoel Grandin1-1/+1
Change-Id: I23838bc08a625ebf438f0c6352a1bf86c728713b
2013-10-04convert sc/inc/view*.hxx from String to OUStringNoel Grandin2-4/+4
Change-Id: I15930932205fc39322a9e88b1739a741781a0e96
2013-10-04convert sc/source/ui/inc/a*.hxx from String to OUStringNoel Grandin1-3/+3
Change-Id: Ia127776aed43eb634b4a7b87d03000d0d53c3b64
2013-10-04convert sc/source/ui/inc/sc*.hxx from String to OUStringNoel Grandin1-1/+1
Change-Id: I7994cf3916bc34876ae838dd7158c03dd732074e
2013-10-02WaE: unused variableTor Lillqvist1-1/+0
Change-Id: Ibed22b6d96da85684034f9c498aaed75ea48c883
2013-10-02More SAL_WNODEPRECATED_DECLARATIONS_PUSH/POP around std::auto_ptrStephan Bergmann1-0/+2
...as needed by Clang trunk towards 3.4. Change-Id: Ibbfe9cb0ec03e0aed939d769feee9e046af4741f
2013-10-02remove some UniString::GetBufferCaolán McNamara1-2/+1
Change-Id: I808026a6f593b0251ee107d27e7ca12d55b2d0a0
2013-10-01convert remains of String to OUString in formula moduleNoel Grandin1-3/+3
Change-Id: Ieca67b54535a6e11ba8fc20f6d02c501f6b7affd