summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog
AgeCommit message (Collapse)AuthorFilesLines
2012-04-12removed dead codeTakeshi Abe1-41/+0
2012-04-10Resolves: fdo#31022 about dialog is suboptimalAndrew Higginson1-1/+1
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi1-2/+2
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-1/+1
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 Dezsi3-3/+3
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-05fdo#43895 lp#905355: fix the fix so it doesn't crashMichael Stahl1-1/+10
rtl::OUString rtl::OUString::copy(sal_Int32) const: Assertion `beginIndex >= 0 && beginIndex <= getLength()' failed. (regression from dd2fe95cce75f1157bd1c75d286a0047b2e4175e)
2012-03-30removed duplicate includes in sfx2Takeshi Abe4-5/+0
2012-03-27fdo#43895 lp#905355: Never let users save in /tmp by defaultAndrzej J. R. Hunt2-0/+25
2012-03-23.hrc files don't need executable bitsMichael Stahl12-0/+0
2012-03-14we just want to know if its a directory/folder or notCaolán McNamara1-14/+1
2012-03-09fix semantic error in layout calculationAndras Timar1-29/+12
2012-03-05Fix indentationWilliam Gathoye1-94/+56
2012-03-05Fix controls size and position on the document information dialogWilliam Gathoye1-35/+60
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann11-31/+31
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-18Fix typos in commentsElton Chung1-2/+2
2012-02-10fdo#45330 Improving layout of Confirm File Format dialogTomcsik Bence1-25/+33
Although fdo#45330 was a duplicate of fdo#45117 which was fixed earlier, this patch makes the layout look better when the button text is very long, because it resizes the boundary boxes of fixed text and ruler, too. I've changed the sequence of the functions in InitSize() and the size calculations.
2012-02-08Fix fdo#45117 - Alien save dialog buttons run off the edgeJosh Heidenreich1-0/+4
Adjusts the width of the dialog to be wider, if required.
2012-02-05Remove unused codeElton Chung3-25/+0
2012-01-23Replaced diagnore ENSURE_OR_CONTINUE with regular code.Marcel Metz1-1/+6
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2-3/+3
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-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz5-24/+24
2012-01-16Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz5-50/+24
2012-01-11SvStringsDtor->std::vectorAugust Sodora1-13/+11
2012-01-11SvStringsDtor->std::vectorAugust Sodora2-38/+20
2012-01-10Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora3-8/+0
2012-01-10Fix for fdo43460 Part XXXIII getLength() to isEmpty()Olivier Hallot10-67/+67
Part XXXIII Modules sfx2
2012-01-10Removed unused DBG_WARNING{4, 5} macros, replaced DBG_WARNINGFILEMarcel Metz1-2/+2
2012-01-09revert text change in alienwarn.srcAndras Timar1-1/+1
2012-01-09autoresize 'Use ODF format' button, tooAndras Timar1-5/+11
2012-01-09Make the title of foreign file format warning translatableStefan Knorr (astron)1-3/+2
Also, change the contained text slightly. Thanks to William Gathoye for noticing and producing a first patch
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
2012-01-05add a comphelper::string::getTokenCountCaolán McNamara3-3/+4
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2011-12-13m_pInfoImage never constructed or usedCaolán McNamara1-1/+0
2011-12-09callcatcher: remove unused code post automation removalCaolán McNamara1-104/+0
2011-12-08childs -> childrenMichael T. Whiteley2-24/+24
2011-12-03WaE : missing return value on one code pathNorbert Thiebaud1-1/+2
2011-12-03sfx2::FileDialogHelper: the punchline:Michael Stahl2-5/+5
Now that we have removed all the pointless clutter, we can finally make it possible to create a file dialog that has a link checkbox but not dozens of graphic filters pre-registered: only add them if SFXWB_GRAPHIC is given.
2011-12-03sfx2::FileDialogHelper: refactor construction:Michael Stahl1-68/+4
There are currently 2 different ways to specify what kind of file dialog should be created: the nDialogType and nFlags ctor parameters. Simplify that by using the nDialogType for the API specified variety, and the nFlags only for options that cannot be specified by the API. This allows to get rid of 3 constructors, and the following constants: WB_OPEN, WB_SAVEAS, WB_PASSWORD, SFXWB_PASSWORD, SFXWB_SHOWSTYLES
2011-12-03sfx2::FileDialogHelper: remove use of WB_OPENMichael Stahl3-13/+39
This can really be derived from the dialog type, don't duplicate it.
2011-12-03remove unused #include sfx2/filedlghelper.hxxMichael Stahl1-1/+0
2011-12-01get rid of class Date and Time default ctor with system time penaltyEike Rathke2-3/+5
2011-11-29Install a Cancel callback, don't rely on vcl searching for a parent to closeCaolán McNamara1-4/+3
If there is no cancel callback for a Cancel button, it's monstrous to dig around the hierarchy looking for a parent to call EndDialog/Close on. Really messes up attempts to refactor dialogs.
2011-11-27remove include of pch header from sfx2Norbert Thiebaud29-56/+0
2011-11-19implEnsureURLExtension just returns the first argument, remove itCaolán McNamara2-13/+3
2011-11-19remove [Byte]String::EraseAllCharsCaolán McNamara4-15/+21
2011-11-16add RTL_CONSTASCII_STRINGPARAM to appendAscii on string literalsCaolán McNamara2-12/+12
2011-11-15remove obsolete layout macrosFelix Zhang1-4/+2
2011-11-15removing obsolete layout codeFelix Zhang1-91/+1
2011-11-07gtk: cleanup to make the vcl file-picker interface work.Michael Meeks1-5/+5