summaryrefslogtreecommitdiff
path: root/svx
AgeCommit message (Collapse)Author
2011-10-07WaE: unreferenced local variableTor Lillqvist
2011-10-07WaE: signed/unsigned mismatchTor Lillqvist
2011-10-07WaE: bool/sal_Bool mismatchTor Lillqvist
2011-10-07WaE: unreachable codeTor Lillqvist
2011-10-05added ARCANGLETO command implementation, optimization, fixes, debugRadek Doulik
- added new ARCANGLETO command needed for PPTX custom shapes import - added added placeholder for unimplemented QUADRATICCURVETO command, skip it's data at least so that we don't break other things for now - cache equations results to optimize custom shapes calculation PPTX import creates such equations that made system busy for long time, this removes that issue - added lot of debug output to help with debugging of complex imported custom shapes
2011-10-05remove const sal_Char * casts of rtl::OUStringToOString results, fixes ucbMichael Meeks
2011-10-05simplfy dmake to gbuild bridgefileBjoern Michaelsen
2011-10-04callcatcher: update listCaolán McNamara
2011-10-04regenerate listCaolán McNamara
2011-10-04callcatcher: various unused methodsCaolán McNamara
2011-10-02d.lst should be empty in gbuildized modulesMatúš Kukan
2011-10-01comment typosCaolán McNamara
2011-10-01callcatcher: freshly unused codeCaolán McNamara
2011-10-01callcatcher: unused CreateDrawOutlinerCaolán McNamara
2011-09-30Cleaned up DGColorNameLookUp.Stephan Bergmann
2011-09-30temp fix to issues stemming from 979e2c8f8b9325a5c75bfc1f388aa8f69b988d2cNorbert Thiebaud
2011-09-29add modelinesCaolán McNamara
2011-09-29callcatcher: unused codeCaolán McNamara
2011-09-29Replace SvULongs with std::vector in sfx2Maciej Rumianowski
Bug 38831, replace SvULongs with std::vector in sfx2 and related svtools
2011-09-29Replace SvULongs and SVUShorts with std::vectorMaciej Rumianowski
Replace SvULongs with std::vector<sal_uIntPtr> and SvUShorts with std::vector<sal_uInt16>
2011-09-28nothing initializes pDefaultExt anymoreCaolán McNamara
2011-09-28callcatcher: unused codeCaolán McNamara
2011-09-28re-work XPropertyList default extension handling to increase re-useMichael Meeks
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann
2011-09-27callcatcher: some unused methodsCaolán McNamara
2011-09-26only allowed to create these via factory methods nowCaolán McNamara
2011-09-26ByteString->rtl::OStringBufferCaolán McNamara
2011-09-26remove bogus visibility annotation on template classMichael Meeks
2011-09-26remove empty destructors in-lined on Mac, causing build errorsMichael Meeks
2011-09-26more post colortable cleanupMichael Meeks
2011-09-25WaE hide unused parameterNorbert Thiebaud
2011-09-24cleanup debug build pointer -> ref migration issuesMichael Meeks
2011-09-24WaE unused debug-printf static variableNorbert Thiebaud
2011-09-24remove some stray debug fprintfsMichael Meeks
2011-09-24re-factor XPropertyList derivatives to use a rtl::ReferenceMichael Meeks
This cleans up a lot of lifecycle nasties and cleans up some serious cut/paste code duplication issues at the same time. Cleanup the naming of ColorTable -> ColorList to match the impl. too
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara
2011-09-22ByteString->rtl::OString[Buffer]Caolán McNamara
2011-09-21fdo#39430: Implement improved Saving Information Icon in the Status BarDmitry Ashkadov
2011-09-21Removed unused some code related to fdo#39430Dmitry Ashkadov
2011-09-21OSL_TRACE: Remove trailing newlinesThomas Arnhold
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
2011-09-16Revert "Trying to chop out the uwinapi library"Fridrich Štrba
This reverts commit 2dea0dab4fafda3c10a5bd03ad15ed39a4658b51.
2011-09-16Trying to chop out the uwinapi libraryFridrich Štrba
2011-09-15drop some more unused codeCaolán McNamara
2011-09-15callcatcher: some unused codeCaolán McNamara
2011-09-15Header/Footer: add the Border and Background... menu itemCédric Bosdonnat
2011-09-14callcatcher: remove unused codeCaolán McNamara
2011-09-13try better template friend class syntaxCaolán McNamara
2011-09-13I believe the src charset pragma is archaic and unusedCaolán McNamara
2011-09-12cleanup BrowseBox, DbGridControl & friends handle & invalid column handlingLionel Elie Mamane
- BrowseBox: Check Handle column-related invariants when adding a column: # only one handle column # it is the first - BrowseBox: Check column id-related invariants when adding a column: # Id is not the special "handle column" value # Id is not the special "invalid ID" value # unicity of the ID among columns - GetColumnId: return BROWSER_INVALIDID, not 0 (== id of handle column) for an invalid column; adapt code calling GetColumnId to this change. - Use the correct const or #define'd symbol instead of magic constants; introduce such a symbol if needed - General other miscellaneous cleanups: # Translation of comments # typo/spelling in comments, error messages and the like # parenthesise #define'd value # use SAL_MAX_UINT16 instead of USHRT_MAX where a sal_uInt16 is expected # BrowseBox::SetColumnTitle: nItemId is checked to be non-zero, so don't test if for zeroness again.
2011-09-12stylisticLionel Elie Mamane
make it clearer that DbGridControl_Base::RemoveColumn is meant to be called unconditionally