summaryrefslogtreecommitdiffstats
path: root/cui/source
Commit message (Collapse)AuthorAgeFilesLines
* Adapted SearchThread/TakeThread to safer-to-use salhelper::ThreadStephan Bergmann2012-02-232-30/+40
|
* catch by referenceCaolán McNamara2012-02-211-1/+1
|
* WaE: unused variableCaolán McNamara2012-02-211-19/+20
|
* WaE: msvc:C4099Caolán McNamara2012-02-201-1/+1
|
* Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe2012-02-181-2/+2
| | | | to equalsIgnoreAsciiCaseAscii("...")
* Fix typos in commentsElton Chung2012-02-182-2/+2
|
* Cleanup inludesMatteo Casalin2012-02-171-0/+10
|
* Some more comphelper/configurationhelper clean upStephan Bergmann2012-02-143-183/+159
|
* Use "Close" instead of "Cancel" button in the about dialogPetr Mladek2012-02-131-0/+1
| | | | Thanks to Stefan Knorr (Astron) for hint.
* WaE: unreferenced local variableTor Lillqvist2012-02-131-6/+6
|
* add back close button to the about dialogPetr Mladek2012-02-104-2/+36
| | | | | | | | | Some windowmanagers on small devides do not have the close window button, so all dialogs should have its own way how to diappear. It is now done like in other application. They use "Close" button instead of "OK". They put it into the right side and delimit it by a line, so it looks like another dialog in the application.
* Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) to equalsAscii(...)Takeshi Abe2012-02-101-1/+1
|
* Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) to equalsAscii("...")Takeshi Abe2012-02-101-4/+4
|
* another improvement of the about dialogPetr Mladek2012-02-092-4/+7
| | | | | | | | | * put back "supplied by %OOOVENDOR" instead of "developed by %OOOVENDOR" * remove "LibreOffice is" from the copyright line. It has affect only when the product is called "LibreOffice" * center version and buildid line * remove the confusing branch-point from buildid; it is not longer necessary when we have the version suffix, e.g. beta1+
* Replaced String by rtl::OUString in SvxMacroTakeshi Abe2012-02-091-1/+1
|
* correct TDF linkIvan Timofeev2012-02-061-1/+1
|
* fix coordinates on Options - Load/Save - General panelAndras Timar2012-02-051-4/+4
|
* Fixed cppcheck messages about rethrowing copy of exception.PKEuS2012-02-051-2/+2
|
* Some cppcheck cleaningJulien Nabet2012-02-051-12/+12
|
* fix various overlapped controls in the Options dialogIvan Timofeev2012-02-053-6/+5
|
* cui: about.cxx: nSpace was not declared in this scopeMichael Stahl2012-02-021-1/+1
|
* Replaced String by rtl::OUStringTakeshi Abe2012-02-031-2/+2
|
* I added some links and removed the ok buttondbarisakkurt2012-02-024-34/+75
|
* Fix "Throwing a copy of the caught exception instead of rethrowing"Julien Nabet2012-01-311-6/+6
|
* Simplify code by making getProcessComponentContext() implicit.Stephan Bergmann2012-01-312-40/+25
|
* Move unotools/configuration.hxx to comphelperStephan Bergmann2012-01-312-4/+4
| | | | ...so that other code in comphelper can use it.
* callcatcher: update listCaolán McNamara2012-01-312-18/+0
|
* MaxTextLength apparently needs to take comma in "1,000" into account.Stephan Bergmann2012-01-301-1/+1
| | | | Otherwise, max undo steps field gets reset to 100 (?) for inputs > 9999.
* refactor ConvertLineEndCaolán McNamara2012-01-302-4/+6
|
* Fixed cppheader.xsl nillable treatment.Stephan Bergmann2012-01-301-2/+4
| | | | | | | | | | | | | | | | | * cppheader.xsl had initially been written under the false assumption that a missing oor:nillable attribute defaults to "false" instead of "true". That has been fixed. * As a result, many places that use the new simplified officecfg/*.hxx headers broke as they did not expect value types to be wrapped boost::optional. To keep the code simple, I decided to change all occurrences in officecfg/registry/schema/ of properties that specify a default <value> and do not explicitly specify oor:nillable="true" to oor:nillable="false". Strictly speaking, this is an incompatible change, but in many cases it should be what was intended, anyway. * Some places that use the new simplified officecfg/*.hxx headers still had to be adapted to boost::optional wrapping. * This showed that unotools/configuration.hxx did not yet work for those wrapped properties and needed fixing, too.
* SvxBorderTabPage: the minimal border width is 1 twipMichael Stahl2012-01-271-1/+1
|
* Replace SvtUndoOptions with (simplified) direct configuration access.Stephan Bergmann2012-01-271-6/+9
| | | | | Also, code in sw can be simplified under the premise that always /org.openoffice.Office.Common/Undo/Steps > 0.
* Revert "Removed list and numbering paragraph styles and related option page"Cédric Bosdonnat2012-01-272-1/+9
| | | | | | | | 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-263-24/+55
|
* Replace SvtInetOptions with (simplified) direct configuration access.Stephan Bergmann2012-01-261-1/+0
|
* Replace SourceViewConfig with (simplified) direct configuration access.Stephan Bergmann2012-01-252-19/+30
|
* Improve checking for emptinessThomas Arnhold2012-01-212-4/+4
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-215-5/+5
| | | | | | | | | 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.
* add missing semicolons. *blush*David Tardon2012-01-201-2/+2
|
* make these strings localizable again (fdo#44947)David Tardon2012-01-201-57/+148
| | | | | | Our translation tools read the src files literally, line by line, only reacting on specific patterns (e.g., 'Text [en-US] = "...";'). Therefore use of macros like this cannot work.
* fdo#44402: make keyboard navigation work again in Tools->OptionsAugust Sodora2012-01-171-49/+0
|
* Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz2012-01-1713-26/+26
|
* Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz2012-01-1613-35/+24
|
* remove some tools/string.hxxCaolán McNamara2012-01-132-18/+8
|
* move overlapped controlsIvan Timofeev2012-01-121-1/+1
|
* SvStringsISort->std::setAugust Sodora2012-01-112-20/+9
|
* SvStringsDtor->std::vectorAugust Sodora2012-01-111-6/+5
|
* SvStringsDtor->std::vectorAugust Sodora2012-01-101-42/+28
|
* Remove unnecessary forward declarationsAugust Sodora2012-01-102-2/+0
|
* Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora2012-01-1012-33/+0
|