Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-30 | make ResId::toString a non-static member | Caolán McNamara | |
Change-Id: I756c0a19bea7b1cc0e290d9f382a04d655819bfb | |||
2012-04-29 | make gbuild the default assumption of build.pl | Bjoern Michaelsen | |
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b | |||
2012-04-27 | NOINITIALSELECTION important for Save As | Stephan Bergmann | |
...as otherwise the initial selection would overwrite the passed-in directory where to save to. Change-Id: Iafb3aa8a120a777f9bf15c00ab3b9c0379bd3b2c | |||
2012-04-25 | refactor ImpSvtData | Caolán McNamara | |
2012-04-24 | WaE: extra tokens at end of #endif directive | Tor Lillqvist | |
2012-04-24 | OSL_DEBUG_LEVEL > 0 -> defined DBG_UTIL | Stephan Bergmann | |
2012-04-21 | Partially revert: "Replace css macro with namespace for nicer namespacing" | Thomas Arnhold | |
To fix the build. I can't test it on win32, thought it would work... | |||
2012-04-21 | Replace css macro with namespace for nicer namespacing | Thomas Arnhold | |
2012-04-16 | WaE: declaration of 'size' shadows a member of 'this' | David Tardon | |
2012-04-16 | WaE: passing NULL to non-pointer argument | David Tardon | |
2012-04-16 | WaE: deprecated conversion from string constant to 'LPTSTR' | David Tardon | |
2012-04-16 | WaE: 'auto_ptr' is deprecated | David Tardon | |
2012-04-16 | WaE: deprecated conversion from string constant to 'LPTSTR' | David Tardon | |
2012-04-16 | WaE: "_WIN32_WINNT" redefined | David Tardon | |
2012-04-16 | WaE: variable 'GDIError' set but not used | David Tardon | |
2012-04-16 | WaE: deprecated conversion from string constant to 'LPTSTR' | David Tardon | |
2012-04-16 | WaE: deprecated conversion from string constant to 'LPSTR' | David Tardon | |
2012-04-10 | fdo#48496 Decode file URL path segment dispalyed as "place" name | Stephan Bergmann | |
2012-04-09 | add package deps for resources | David Tardon | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-08 | gbuild: "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-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||
2012-04-05 | SvtFileDialogURLSelector::OpenURL can go apparently | Caolán McNamara | |
2012-04-05 | callcatcher: update list, add README, remove some newly unused code | Caolán McNamara | |
2012-04-02 | KDE3 file picker moved from fpicker to vcl | Cédric Bosdonnat | |
2012-04-02 | KDE4 file picker moved from fpicker to vcl | Cédric Bosdonnat | |
2012-04-02 | Internal fpicker cleanup and rework | Cédric Bosdonnat | |
Changes: * Use SvHeaderTabListBox for the places list to get a nicer list * Remove the "Default Directory" button: it's in the places * Remove the Up and New Folder icons: look ugly beside the edit field * Added proper icons for places | |||
2012-04-02 | fpicker: a list of bookmarks in the file picker | Martin Richard | |
under dual licences MPLv1+/LGPLv3+ Authors: Martin Richard <martius@martiusweb.net> Julien Levesy <jlevesy@gmail.com> | |||
2012-03-21 | Bin a few more 16-bit Windows leftovers | Tor Lillqvist | |
2012-03-20 | remove ToDouble/ToFloat | Caolán McNamara | |
2012-03-16 | kde4 fpicker doesn't use Q_OBJECT, no need for moc | Luboš Luňák | |
2012-03-15 | fdo#47246: fpicker: merge fop into fps: remove Fopentry.cxx | Michael Stahl | |
Forgot that in 095528351c3c916ef3c79f7275113ec628b4d473. | |||
2012-03-15 | error: 'XFolderPicker' was not declared in this scope | David Tardon | |
2012-03-14 | fdo#47246: fpicker: merge fop library into fps: | Michael Stahl | |
Since nobody seems to know why these are separate, merge fop into fps. In case this untested change doesn't work out it should be reverted :) | |||
2012-03-14 | Enable -Wnon-virtual-dtor for GCC 4.6 | Stephan 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-09 | change vcl's SETTINGS_* #define's to const int | Luboš Luňák | |
They pollute not only the global namespace, but all namespaces, given they're are #define's. I bet they'd eventually all conflict with the namespaced enum in kdelibs headers. | |||
2012-03-08 | yet another clash with macro name | David Tardon | |
2012-03-01 | New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problem | Stephan Bergmann | |
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem. | |||
2012-02-27 | Typo | Stephan Bergmann | |
2012-02-27 | disable warnigns as errors for KDE3 code | Luboš Luňák | |
Too old codebase, there simply have to be warnings. | |||
2012-02-27 | disable -Wshadow for KDE backends | Luboš Luňák | |
KDE/Qt consider -Wshadow not worth the trouble, and the qhash workaround shows why. | |||
2012-02-24 | Disable WaE in fpicker/source/unx/kde | Stephan Bergmann | |
...as the included kde headers produce lots of warnings. | |||
2012-02-24 | MinGW: IFileDialog is present, but IFileDialogCustomize is still missing. | Jan Holesovsky | |
2012-02-24 | Rewrite fix to use the same SimpleResMgr ctor as it did before | Stephan Bergmann | |
...as the two actually behave subtly differently. | |||
2012-02-23 | Get rid of CREATEVERSIONRESMGR[_NAME] | Stephan Bergmann | |
2012-02-23 | fix build on Windows: use OUString | Matus Kukan | |
2012-02-19 | Get rid of size() == 0 | Elton Chung | |
2012-02-18 | Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) | Takeshi Abe | |
to equalsIgnoreAsciiCaseAscii("...") | |||
2012-02-17 | Possible inefficient checking for 'm_EventList' emptiness. | Mariusz Dykierek | |