summaryrefslogtreecommitdiff
path: root/sd
AgeCommit message (Collapse)Author
2012-01-23add the "Send Feedback..." help menu itemIvan Timofeev
2012-01-23drop tools/string.hxx includeCaolán McNamara
2012-01-22fdo#43705: fix incomplete updating of the page preview pane in DrawIvan Timofeev
This regression was introduced in f215333002882872129066828228d3343a903331. As stated in PageObjectPainter::PaintPageObject: "The page object layouter is quite volatile." The rest of usages of mpPageObjectLayouter looks sane, but who knows...
2012-01-20Disable sd_regression_test until "do not embed font config" is fixed.Stephan Bergmann
2012-01-19enable sd's regression test in the subsequenttest targetMarkus Mohrhard
2012-01-19finish sd's regression testMarkus Mohrhard
Implemented a simple character based comparison of the exported file and the reference file
2012-01-19WaE: ongoing stream operator cleanup, persuade ints they are sal_Int32sMichael Meeks
2012-01-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz
2012-01-17sd: remove some unused definesIvan Timofeev
2012-01-17sd: remove unused templatesIvan Timofeev
2012-01-17Use platform-independent ::rtl::math::round to fix msvc buildKorrawit Pruegsanusak
2012-01-16Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz
2012-01-15WaE: ordered comparison of pointer with integer zeroDavid Tardon
2012-01-15these are not old component files anymoreMatúš Kukan
2012-01-15vcl: rename ambiguous IsMultiDisplay to IsUnifiedDisplay, and simplifyMichael Meeks
2012-01-14fix for gcc 4.7: unable to find string literal operatorMatúš Kukan
2012-01-13fdo#44173: use a geometric progression for zoomingTim Hardeck
Zooming does now base on a geometric progression instead of an arithmetic one. Since the zoom factor is not only used in Draw but for all other applications 1.2 seems like a good choice.
2012-01-13just return the read string here instead of passing one in by refCaolán McNamara
2012-01-13add test concept for draw/impress, import file and export to svgMarkus Mohrhard
the idea behind this concept: * have a file containing some test data * import file without UI * export file to svg through XStorable::storeToURL * compare exported svg file to a reference file and complain if they * differ advantages: * easy to create test cases, even for non coders * no special handling of sd internal code needed * svg is showing differences in the representation and not in the model * external programs that can be used to check the output * can be used for all input formats disadvantages: * changes to svg filter code might break test cases while the change is correct * slow test, import + export * might need external program for xml diff
2012-01-10Fix for fdo43460 Part XXXI getLength() to isEmpty()Olivier Hallot
Part XXXI Modules sd
2012-01-10Tools container rework regression fix (for fdo#41657)Thorsten Behrens
Don't de-reference invalid iterator (and no point in doing anything with an empty style sheet list anyway).
2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara
2012-01-08Kill SvNullStream duplicationMiklos Vajna
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz
2012-01-06Removed unnecessary tools/ref.hxx includes.Marcel Metz
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz
2012-01-06Merge branch 'feature/gbuild_extensions'Michael Stahl
Conflicts: extensions/source/ole/servreg.cxx extensions/source/plugin/util/makefile.mk postprocess/packcomponents/makefile.mk postprocess/prj/build.lst tail_build/prj/build.lst
2012-01-06fdo#44294: overlapped controlsIvan Timofeev
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz
2012-01-05add a comphelper::string::getTokenCountCaolán McNamara
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2012-01-05WaE and build fixes for OSL_DEBUG_LEVEL == 2Caolán McNamara
2012-01-04fix dep to svx/globlmn.hrc inside of tail_buildNorbert Thiebaud
2012-01-02Clean non English strings in the codeLior Kaplan
we do translation differently.
2011-12-28option to export hidden slides to pdf filesPierre-André Jacquod
This add the checkbox hidden pages to the PDF export general tab and if checked, export also to PDF the hidden slides
2011-12-28fdo43033 do not export to PDF hidden slidesPierre-André Jacquod
2011-12-25catch exception by constant referenceTakeshi Abe
2011-12-24Merge remote-tracking branch 'origin/master' into feature/gbuild_extensionsPeter Foley
Conflicts: Module_tail_build.mk Repository.mk extensions/util/makefile.pmk postprocess/prj/build.lst svx/AllLangResTarget_svx.mk
2011-12-22"*.*" is not "all files" (bnc#738021)Luboš Luňák
Not on any Unix, at least. I have no idea how deep entrenched is this mistake all over the code, so I'll play safe and just fix the KDE4 fpicker (GNOME/KDE3 seem to handle it fine), but at least in the UI show just "All files" instead of "All files (*.*)").
2011-12-22unusedcode: remove various unused classesMatúš Kukan
2011-12-22remove some unused codeCaolán McNamara
2011-12-21tweak for pre language-defect #77Caolán McNamara
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara
The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery
2011-12-21convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara
Nobody ever used the return values anyway, so for reading just return the string and for writing the number of bytes written Doesn't need to be members, make standalone functions Rename to read_lenPrefixed_uInt8s_ToO[U]String and write_lenPrefixed_uInt8s_FromO[U]String, lengthy, but much less unambiguous, seeing as a lot of users of it don't seem to be aware that they read/write pascal-style length prefixed strings, which isn't surprising given the apparent simplicity of their original name. added a unit test
2011-12-21needs more work firstCaolán McNamara
This reverts commit 92f396733ebc518bcb7a9eae2dd3169d333b82b9.
2011-12-21bah, need to tweak for pre c++0xCaolán McNamara
This reverts commit d00fc0e293852cfc019ffaffa65bee327397677b.
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara
The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery