summaryrefslogtreecommitdiff
path: root/cui/source/inc
AgeCommit message (Collapse)Author
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-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-23Adapted SearchThread/TakeThread to safer-to-use salhelper::ThreadStephan Bergmann
2012-02-20WaE: msvc:C4099Caolán McNamara
2012-02-18Fix typos in commentsElton Chung
2012-02-17Cleanup inludesMatteo Casalin
2012-02-14Some more comphelper/configurationhelper clean upStephan Bergmann
2012-02-10add back close button to the about dialogPetr Mladek
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.
2012-02-02I added some links and removed the ok buttondbarisakkurt
2012-01-31callcatcher: update listCaolán McNamara
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann
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.
2012-01-13remove some tools/string.hxxCaolán McNamara
2012-01-11SvStringsISort->std::setAugust Sodora
2012-01-10Remove unnecessary forward declarationsAugust Sodora
2012-01-10Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora
2012-01-10callcatcher: update listCaolán McNamara
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-04Easyhack fdo#38831 remove SvStringsBrad Sowden
------ With the for loop below Insert(x,nPos) was previously applied but nPos is initialised to the end of vector and is always incremented in every loop iteration i.e. Insert(x,nPos) is effectively a push_back(x). Agree? In "short SvxNumberFormatShell::FillEListWithUserCurrencys(....)" Also get rid of SvxDelStrgs (variant of SvStrings)
2011-12-21callcatcher: remove unused classesMatúš Kukan
2011-12-20Fix for fdo43460 Part XI getLength() to isEmpty()Olivier Hallot
Part XI Module cui
2011-12-20SelectHdl_Impl doesn't need to be an [IMPL|DECL]Link nowCaolán McNamara
2011-12-19Remove unnecessary includesAugust Sodora
2011-12-19Clean up treeopt select handler locking hackAugust Sodora
2011-12-19Simplify treeopt select handlerAugust Sodora
2011-12-15Removed extra semicolonsJesse
2011-12-12now with an STL map we don't have to do our own mem allocationCaolán McNamara
2011-12-12Related: fdo#38832 Replace Table with std::mapMarcel Metz
2011-12-08childs -> childrenMichael T. Whiteley
2011-12-07Remove oooimprovementAugust Sodora
2011-12-01This data member is no longer used. Remove it.Kohei Yoshida
2011-11-17remove obsolete layout codeFelix Zhang
2011-11-15remove obsolete layout macrosFelix Zhang
2011-11-15removing obsolete layout codeFelix Zhang
2011-11-11callcatcher: remove some unused codeCaolán McNamara
2011-11-10callcatcher: remove unused methodsCaolán McNamara
2011-11-08callcatcher: some unused methodsCaolán McNamara
2011-11-02Grammar checking dialog: reworked how explanations are shownCédric Bosdonnat
2011-11-01eliminate SvUShorts typeDaniel Di Marco
2011-11-01WaE: various sillies flagged by MSVC++Michael Meeks
2011-10-29Display original resolution in PPI in Writer's Picture/Crop tabLászló Németh
2011-10-17Resolves: fdo#39347 changeall strips periods of sentences ending in errorCaolán McNamara
It's really dubious to do this, but we're doing it already for "Replace", just not for "Replace All". Might as well be equally wrong everywhere.
2011-10-11fix XColorList related crasher in tools->options, and try to clean moreMichael Meeks
2011-09-27add GetParentDialog to VCL's Window, and remove DLGWIN & cut/pasteMichael Meeks
2011-09-27more ColorTable to List cleanup, and abstraction of load/saveMichael Meeks
2011-09-24re-factor XPropertyList derivatives to use a rtl::ReferenceMichael Meeks
This cleans up a lot of lifecycle nasties and cleans up some serious cut/paste code duplication issues at the same time. Cleanup the naming of ColorTable -> ColorList to match the impl. too