summaryrefslogtreecommitdiffstats
path: root/svx
Commit message (Collapse)AuthorAgeFilesLines
* Missing newline at end of fileStephan Bergmann2012-02-081-1/+1
| | | | | ...needed by simplified l10ntools programs to be pushed shortly (that no longer translate line endings, and hopefully get away with it).
* changes to "tools/table.hxx to std::map conversion"Eike Rathke2012-02-082-14/+11
| | | | | | | | | | | | | | | | | | * use consistent indenting with 4 spaces (instead of tabs (plus one space)) * use erase(it++) instead of erase(it); ++it to not access invalidated iterator * for First(); Remove(); Next() loops over entire Table use map::clear() at the end if it isn't in a dtor * use existing typedef SvNumberFormatTable in numfmtsh.hxx instead of redefining, which means include zforlist.hxx now and some other forward declarations can be removed * removed inlined duplicated code of GetEntry(), implemented it in zforlist.cxx instead and made const GetFormatEntry() just call GetEntry() * removed the temporary sal_uIntPtr nFormat to be used as key, the sal_uIntPtr was only used because Table effectively had pointer size as keys. * made initial assignments of nDefaultFormat and nDefaultCurrencyFormat use the ternary conditional operator
* tools/table.hxx to std::map conversion in SV, SVL and SVX modulesNoel Grandin2012-02-082-17/+22
| | | | | This patch converts one use of tools/table.hxx in svl/inc/svl/zforlist.hxx, whose use in turn spans 3 modules.
* callcatcher: update list, ByteString is on the ropesCaolán McNamara2012-02-082-6/+0
|
* Added READMEs for modules which used to be in libs-coreJosh Heidenreich2012-02-081-0/+9
|
* Attempt to disable database connectivity for iOS for nowTor Lillqvist2012-02-061-1/+1
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* Fixed cppcheck messages about rethrowing copy of exception.PKEuS2012-02-051-2/+2
|
* Some cppcheck cleaningJulien Nabet2012-02-051-2/+2
|
* extract max legal dff length to headerCaolán McNamara2012-02-041-0/+3
|
* Some cppcheck cleaningJulien Nabet2012-02-021-2/+2
|
* InsertData to AppendData, to hide the insert position.Kohei Yoshida2012-02-015-23/+17
| | | | | Only a few places in sc specified insert position, and those were not strictly necessary.
* callcatcher: update listCaolán McNamara2012-02-011-1/+1
|
* fdo#34425: [Feature] Persist bgcolor toolbar button.Winfried Donkers2012-02-012-24/+39
| | | | This is to avoid background color selection evertime.
* German comments translations.Winfried Donkers2012-02-011-64/+67
|
* More on string conversion.Kohei Yoshida2012-01-318-41/+41
|
* XubString to rtl::OUString.Kohei Yoshida2012-01-317-66/+72
|
* Re-organized boolean data members.Kohei Yoshida2012-01-311-19/+19
|
* One more method to non-inline. I guess this is the last one...Kohei Yoshida2012-01-312-1/+7
|
* Simplified & non-inlined setUnoShape().Kohei Yoshida2012-01-313-17/+10
|
* More implicit inline methods to non-inline.Kohei Yoshida2012-01-312-37/+214
|
* XubString to rtl::OUString.Kohei Yoshida2012-01-316-10/+10
|
* More implicit inline method to hide.Kohei Yoshida2012-01-312-10/+10
|
* Container to ptr_vector.Kohei Yoshida2012-01-312-28/+39
|
* One less method that nobody uses.Kohei Yoshida2012-01-312-7/+1
|
* No implicit inlining in the header file.Kohei Yoshida2012-01-312-26/+64
|
* Make these data members private.Kohei Yoshida2012-01-313-3/+9
|
* Use bool & prefer rtl::OUString.Kohei Yoshida2012-01-313-257/+259
|
* Simplify code by making getProcessComponentContext() implicit.Stephan Bergmann2012-01-312-5/+4
|
* callcatcher: update listCaolán McNamara2012-01-312-12/+0
|
* SvxColumnItem: fix buggy STL conversion:Michael Stahl2012-01-271-1/+0
| | | | | | | | | | | In the copy ctor, the vector must not be initialized with the constructor that takes an integer, because that causes it to have that many elements, which together with the loop that copies all source elements leads to a vector with twice as many elements. This causes a crash in writer when dragging the row separator line in a table, because that code doesn't expect the item to have more elements than the table has rows. (regression from d319387526870f34c49b3ef337b1b0d55767f3fe)
* Revert "Removed list and numbering paragraph styles and related option page"Cédric Bosdonnat2012-01-272-0/+6
| | | | | | | | This reverts commits 359d0fbd03a68d9131e8fb25e7dac9f19ddf6dcb, 6a15a2898b7f822ddfba23553dd127e25af15fff and 21352f88caba9dee73d5a87c8e3724d17ac6b428. This change is not mature enought: needs more work
* Replace SvtCacheOptions with (simplified) direct configuration access.Stephan Bergmann2012-01-261-4/+5
|
* WaE: int and long confusionTor Lillqvist2012-01-251-2/+2
|
* optimized zoom to use more common intervalsTim Hardeck2012-01-252-8/+3
| | | | | | Round zoom values beginning with 50 to a multiple of 5, with 100 to one of 10, with 500 to one of 50 and with 1000 to one of 100. The step 100 is enforced to have one fixed point.
* callcatcher: update list, remove newly unused methodsCaolán McNamara2012-01-242-30/+0
|
* Comments Translations.Stefan Knorr2012-01-2423-592/+583
|
* Removal of commented code.Stefan Knorr2012-01-2425-181/+27
|
* Replaced diagnore ENSURE_OR_CONTINUE with regular code.Marcel Metz2012-01-232-4/+21
|
* Replaced diagnore ENSURE_OR_BREAK with regular code.Marcel Metz2012-01-231-1/+5
|
* Let's use 2^(1/4) as the zoom factor, instead of 1.2 (thanks, Tor!)Jan Holesovsky2012-01-231-2/+3
|
* make svx ByteString freeCaolán McNamara2012-01-232-14/+31
|
* Improve checking for emptinessThomas Arnhold2012-01-211-1/+1
|
* unused methodsThomas Arnhold2012-01-212-25/+0
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-215-7/+7
| | | | | | | | | SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
* String to rtl::OUString.Kohei Yoshida2012-01-202-14/+28
|
* sal_Bool to bool.Kohei Yoshida2012-01-203-77/+92
|
* Make this a private member (to make it easier to keep track of its usage).Kohei Yoshida2012-01-193-16/+5
|
* No class derives from SdrPageView. No sense using protected visibility.Kohei Yoshida2012-01-191-4/+3
|
* Don't be a listener if you aren't interested in listening.Kohei Yoshida2012-01-192-10/+1
|