summaryrefslogtreecommitdiff
path: root/cui
AgeCommit message (Collapse)Author
2012-04-06reduce overzealous namingLuboš Luňák
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
2012-04-03Cleanup some unnecessary #includeMatteo Casalin
2012-04-02Remove unused HTMLMODE_FIRSTLINEHarri Pitkänen
HTMLMODE_FIRSTLINE was disabled in all HTML export modes. It seems to have been used to add first line indent for paragraphs in Netscape version 3 but all currently available export modes use CSS for that.
2012-04-02show synchronized checked only if all margins are the same, related fdo#44337Markus Mohrhard
2012-03-30removed duplicate includes in cppcanvas / cppuhelper / cuiTakeshi Abe
2012-03-27Translate German commentsPhilipp Weissenbacher
2012-03-27Translate German comments, fix some English onesPhilipp Weissenbacher
2012-03-26fdo#46942: Fix a regression caused by List removal.Kohei Yoshida
3236c2c3af9355157c62f68fcbd429498f7f747b accidentally removed the gallery item count which was used to differentiate the gallery symbols from normal ones.
2012-03-26Move this into a real method also.Kohei Yoshida
2012-03-26This string is assigned but not used.Kohei Yoshida
2012-03-26bool and string.Kohei Yoshida
2012-03-26Move the fat handler code into a real method.Kohei Yoshida
To allow my editor to do static analysis correctly. Those IMPL_LINK macros screw it up.
2012-03-26UniString to rtl::OUString.Kohei Yoshida
2012-03-26Attempt to translate some German comments, but not all.Kohei Yoshida
2012-03-26readUnicodeString can just return the stringCaolán McNamara
seeing as no-one checks the return value, we don't need the intermediate temporary string
2012-03-26need seen for seperate CUI_RESSSTRCaolán McNamara
2012-03-23.hrc files don't need executable bitsMichael Stahl
2012-03-21chmod -xTor Lillqvist
2012-03-20reduce UniStringsCaolán McNamara
2012-03-16Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann
2012-03-14add 'Japanese Postcard' paper size to both Paper format and Print dialogTakeshi Abe
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
2012-03-14fixed pointer to the paper.hxx in commentTakeshi Abe
2012-03-12cui: implement contextual spacing UIMiklos Vajna
2012-03-12SvxStdParagraphTabPage::Reset: no need to have two SvxULSpaceItem hereMiklos Vajna
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-09add an explicit Cancel handlerCaolán McNamara
2012-03-08Convert from tools/table.hxx to std::map in SvxMacroTableDtorNoel Grandin
In this case, we also convert from storing pointers to storing the items directly because SvxMacroTableDtor completely controls the lifecycle of the SvxMacro objects it contains. Also add an operator== to SvxMacroTableDtor and remove the out-of-line implementations of equals from two other places.
2012-03-08fold i18npaper into i18nutilCaolán McNamara
It's too small to justify standalone existence. We can accumulate i18n things we link to directly into i18nutil and rework i18npool uno implementions in terms of thin wrappers over i18nutil and prefer linking to i18nutil internally and leave the uno forwarders for use by external components and scripting
2012-03-07These methods don't need to be implemented as LinksCaolán McNamara
2012-03-02Convert tools/table to std::vector and std::map in cuiNoel Grandin
Convert DoubleStringArray to std::vector Convert DoubleStringTable to std::map Convert StringsTable to std::map
2012-03-02WNT-only IMPL_LINK_NOARG fixesStephan Bergmann
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-27fdo#46531: Fixed SpellCheck dialog display issuesCédric Bosdonnat
More robust, handling of the explanations message and link display.
2012-02-27Reduced loadtime of autocorrect tablesSzabolcs Dezsi
2012-02-23Adapted SearchThread/TakeThread to safer-to-use salhelper::ThreadStephan Bergmann
2012-02-21catch by referenceCaolán McNamara
2012-02-21WaE: unused variableCaolán McNamara
2012-02-20WaE: msvc:C4099Caolán McNamara
2012-02-18Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe
to equalsIgnoreAsciiCaseAscii("...")
2012-02-18Fix typos in commentsElton Chung
2012-02-17Cleanup inludesMatteo Casalin
2012-02-14Some more comphelper/configurationhelper clean upStephan Bergmann
2012-02-13Use "Close" instead of "Cancel" button in the about dialogPetr Mladek
Thanks to Stefan Knorr (Astron) for hint.
2012-02-13WaE: unreferenced local variableTor Lillqvist
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan