summaryrefslogtreecommitdiff
path: root/cui
AgeCommit message (Collapse)Author
2012-04-25Resolves: fdo#48659 force BUILDID placeholder in if missing from translationCaolán McNamara
2012-04-25removed unused typedefTakeshi Abe
2012-04-23fdo#42986 Add Presentationsize 16:9 WidescreenRob Snelders
2012-04-22removed unused static dataTakeshi Abe
2012-04-22removed unused definesTakeshi Abe
2012-04-21cui: fix position of ED_LINEDISTMETRICMiklos Vajna
I broke that when I added CB_CONTEXTUALSPACING
2012-04-21Replace css macro with namespace for nicer namespacingThomas Arnhold
2012-04-20removed unused definesTakeshi Abe
2012-04-20removed unused const/static dataTakeshi Abe
2012-04-17fdo#40778 Remove dictionary choice when adding new entry to the spellcheckerRob Snelders
2012-04-17translated or removed german comments in connectivity, cppuhelper and cuiFlorian Allmann-Rahn
2012-04-17String::ToInt32->rtl::OUString::toInt32Caolán McNamara
2012-04-16Resolves: fdo#48723 add a (hidden) CancelButton so ESC closes about dialogCaolán McNamara
2012-04-16Resolves: fdo#48659 about dialog misses BuildIDAndrew Higginson
2012-04-11UniString->rtl::OUStringCaolán McNamara
2012-04-11String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara
2012-04-10Resolves: fdo#31022 about dialog is suboptimalAndrew Higginson
2012-04-09add package deps for resourcesDavid Tardon
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-08gbuild: "use" vs. "add":Michael Stahl
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
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