summaryrefslogtreecommitdiffstats
path: root/fpicker
Commit message (Collapse)AuthorAgeFilesLines
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-211-1/+1
| | | | | | | | | 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.
* Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz2012-01-173-7/+7
|
* Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz2012-01-163-8/+7
|
* SvStringsDtor->std::vectorAugust Sodora2012-01-112-47/+8
|
* SvStringsDtor->std::vectorAugust Sodora2012-01-114-78/+22
|
* Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora2012-01-105-19/+0
|
* simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara2012-01-101-2/+2
|
* use custom target for generated sourceDavid Tardon2012-01-074-4/+76
|
* split module targets' registrationDavid Tardon2012-01-071-20/+32
|
* use custom target for generated sourceDavid Tardon2012-01-074-4/+76
|
* Removed unnecessary tools/debug.hxx includes.Marcel Metz2012-01-061-2/+0
|
* workaround for LO namespace pollution breaking KDE4 fpicker buildLuboš Luňák2012-01-061-0/+8
|
* Removed unnecessary tools includes.Marcel Metz2012-01-051-1/+0
|
* Removed unnecessary tools includes.Marcel Metz2012-01-053-4/+0
|
* Removed unnecessary tools includes.Marcel Metz2012-01-053-3/+0
|
* fpicker: add missing comphelperMichael Stahl2012-01-051-0/+1
|
* add a comphelper::string::getTokenCountCaolán McNamara2012-01-051-25/+24
| | | | | | suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
* fpicker: fix makefile typoMichael Stahl2012-01-041-1/+1
|
* EasyHack fdo#42454, remove code associated with unused iconsGustavo Buzzatti Pacheco2011-12-292-23/+5
|
* add the needed -framework for fps_aquaNorbert Thiebaud2011-12-271-0/+5
|
* WaE unused variablesNorbert Thiebaud2011-12-272-19/+43
|
* WaE: unused variablesMatúš Kukan2011-12-271-0/+8
|
* fpicker: convert to gbuildMatúš Kukan2011-12-2729-921/+777
|
* fpicker: aqua: move source files .cxx -> .mmMatúš Kukan2011-12-278-0/+0
|
* Fix for fdo43460 Part XIX getLength() to isEmpty()Olivier Hallot2011-12-266-16/+16
| | | | | | Part XIX Module formula and fpicker
* "*.*" is not "all files" (bnc#738021)Luboš Luňák2011-12-222-1/+4
| | | | | | | Not on any Unix, at least. I have no idea how deep entrenched is this mistake all over the code, so I'll play safe and just fix the KDE4 fpicker (GNOME/KDE3 seem to handle it fine), but at least in the UI show just "All files" instead of "All files (*.*)").
* make KDE4FilePicker::appendFilterGroup() simply use appendFilter()Luboš Luňák2011-12-221-7/+1
|
* shrinked useless constants/definesTakeshi Abe2011-12-141-4/+0
|
* catch exception by constant referenceTakeshi Abe2011-12-143-7/+7
|
* remove precompiled_xxx.hxx/cxxNorbert Thiebaud2011-11-272-64/+0
|
* remove include of pch header from fpickerNorbert Thiebaud2011-11-2748-94/+0
|
* remove PCH support in dmake-moduleNorbert Thiebaud2011-11-271-8/+0
|
* gtk: fix issue with built-in file/folder picker settingsMichael Meeks2011-11-071-8/+7
|
* gtk: move the file-picker into vcl/ and add Application:: factory hooksMichael Meeks2011-11-0716-4090/+56
| | | | | | | drop un-necessary uno service related fluff, and component instantiation. nominal move to XMultiComponentFactory from XMultiServiceFactory Include fpicker in compilation for gtk3, but more work required here Simplify setting up transient parents for picker dialogs
* more fpicker related gtk cleanupMichael Meeks2011-11-022-11/+10
|
* cleanup gtk / gdk locking situation to use the SolarMutex insteadMichael Stahl2011-11-025-80/+98
| | | | | The SolarMutex is integrated with native gtk+ toolkit locking so this is semantically equivalent and rather less problematic.
* eliminate SvUShorts typeDaniel Di Marco2011-11-011-1/+0
|
* WaE: misc. windows related fixesMichael Meeks2011-10-252-4/+2
|
* Undo basis/brand split: removed RPATH BRAND (same as OOO now).Stephan Bergmann2011-10-241-1/+1
|
* Argument to setTitle cannot be constKristian Rietveld2011-10-242-4/+4
|
* WaE: unreachable codeTor Lillqvist2011-10-051-1/+2
|
* Use OUString::getStr()Tor Lillqvist2011-10-051-2/+2
|
* Fix fpicker windows buildFridrich Štrba2011-10-052-5/+5
|
* Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const ↵Stephan Bergmann2011-09-291-13/+9
| | | | *() in Mac OS X only code.
* WaE: 'fileAttributesAtPath:traverseLink:' is deprecatedTor Lillqvist2011-09-291-0/+15
|
* Add mode linesTor Lillqvist2011-09-293-0/+9
|
* WaE: class 'AquaFilePickerDelegate' does not implement the ↵Tor Lillqvist2011-09-291-1/+8
| | | | 'NSOpenSavePanelDelegate' protocol
* Avoid "jump to case label crosses initialization" errors with gcc 4.2.1Tor Lillqvist2011-09-293-36/+46
| | | | | | | | | | | | | | | Reduce scope of variables declared inside a switch statement. OK, so make those code snippets into blocks then, to reduce the scope of those variables. Workaround for weird errors as reported by gcc 4.2.1 in the 10.6 SDK: SalAquaPicker.cxx: In member function 'void SalAquaPicker::implInitialize()': SalAquaPicker.cxx:134: error: jump to case label SalAquaPicker.cxx:127: error: crosses initialization of 'NSNumber* pExtn' SalAquaPicker.cxx:126: error: crosses initialization of 'NSUserDefaults* pDefaults' SalAquaPicker.cxx:141: error: jump to case label SalAquaPicker.cxx:127: error: crosses initialization of 'NSNumber* pExtn' SalAquaPicker.cxx:126: error: crosses initialization of 'NSUserDefaults* pDefaults'
* Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann2011-09-271-2/+2
|
* OSL_TRACE: Remove trailing newlinesThomas Arnhold2011-09-213-34/+34
| | | | | | | Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines