Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-04 | fdo#46808, Adapt UNO services to new style, Part 7, updating ::create | Noel Grandin | |
Update calls to factories to use new ::create methods Change-Id: I01d4417820f52718836c92faf3c2fae0dc96b30d Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks. | |||
2012-05-29 | targeted string re-work | Norbert Thiebaud | |
Change-Id: I6ce76c22118586b213161a0e307a53b22b318004 | |||
2012-05-24 | Removed unused SfxMedium::bDirect | Stephan Bergmann | |
See the TODO comment in sfx2/inc/sfx2/docfile.hxx about a temporary SfxMedium ctor overload to find not yet adapted uses of another overload, to be removed again in due time. Change-Id: Ie22c33c32f8870ce6ebf6d500abc7a4e33d97183 | |||
2012-05-18 | removed unused const rtl::OUString | Takeshi Abe | |
Change-Id: If02be864f958de96ae1c54fe575b1828410390b1 | |||
2012-05-17 | merge the 5 ConstAsciiString duplicate classes together | Caolán McNamara | |
a) merge them together and move it into comphelper b) turn it into a POD rather than having vast amounts of destructors registered into the cxa_atexit chain Change-Id: I04d3b9d7804f8e233013c916df9d617a0f84f96a | |||
2012-05-15 | ditch UniString | Caolán McNamara | |
Change-Id: I0671f0acf5a53a1c7f442f721bb058a3760ca18c | |||
2012-05-15 | convert GetUndoActionComment family to rtl::OUString | Caolán McNamara | |
Change-Id: I36ccf62ee2e2769bcf1aef6d26d96bce6c7078f0 | |||
2012-05-04 | fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CAST | Thomas Arnhold | |
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382 | |||
2012-04-16 | mingw: avoid weird build error and -Werror | David Tardon | |
The error message is: "'*((void*)& aBoundColumn +2)' may be used uninitialized in this function" using gcc 4.7.0 in gnu++11 mode and boost 1.48.0 . | |||
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
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-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 | UniString::CreateFromInt32 -> rtl::OUString::valueOf | Caolán McNamara | |
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-07 | Translate German comments | Philipp Weissenbacher | |
2012-03-06 | Translate German comments, fix some whitespace and bad translations | Philipp Weissenbacher | |
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-23 | Adapted AsyncEventNotifier to safer-to-use salhelper::Thread | Stephan Bergmann | |
2012-02-19 | Get rid of size() == 0 | Elton Chung | |
2012-02-18 | Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) | Takeshi Abe | |
to equalsIgnoreAsciiCaseAscii("...") | |||
2012-02-16 | Forgotten German word in translated comment | Lionel Elie Mamane | |
2012-02-16 | fdo#46163 convert bound values to bound column's type | Lionel Elie Mamane | |
2012-02-16 | correct indentation | Lionel Elie Mamane | |
2012-02-16 | Translate German comments | Philipp Weissenbacher | |
2012-01-30 | refactor ConvertLineEnd | Caolán McNamara | |
2012-01-15 | WaE: deleting object of abstract class type with non-virtual destructor | David Tardon | |
2012-01-06 | Removed unnecessary tools/debug.hxx includes. | Marcel Metz | |
2012-01-06 | Removed unnecessary tools/link.hxx includes. | Marcel Metz | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz | |||
2012-01-02 | Temporary hack around cppu_detail_getCppuType variants violating ODR. | Stephan Bergmann | |
Which causes cppuhelper to pick wrong variant from other library, now that its own symbols are no longer reduced to private on Mac OS X. As a temporary hack, emit cppu_detail_getCppuType for the relevant types always as fully comprehensive; should be revisited when improving types.rdb format (routinely generating C++ information for certain UNO types into a dedicated library?). Requires a fix to xmlreader and a fix to forms that looks like a Mac OS X GCC bug. | |||
2011-12-30 | Fix for fdo43460 Part XVIII getLength() to isEmpty() | Gustavo Buzzatti Pacheco | |
Part XVIII module form | |||
2011-12-15 | Removed extra semicolons | Jesse | |
2011-12-12 | WaE: NULL used in arithmetic | Tor Lillqvist | |
2011-12-12 | catch exception by constant reference | Takeshi Abe | |
2011-12-08 | childs -> children | Michael T. Whiteley | |
2011-12-01 | get rid of class Date and Time default ctor with system time penalty | Eike Rathke | |
2011-11-27 | remove include of pch header from forms | Norbert Thiebaud | |
2011-11-26 | Remove some uses of OUString::setCharAt | August Sodora | |
2011-11-25 | gsl_getSystemTextEncoding -> osl_getThreadTextEncoding | David Tardon | |
2011-11-14 | Removed comphelper -> unotools processfactory.hxx duplication. | Stephan Bergmann | |
2011-10-24 | fdo#42157: fix deadlock | Michael Stahl | |
WindowStateGuard_Impl::impl_ensureEnabledState_nothrow_nolck: drop own mutex while calling XWindow method that locks SolarMutex. | |||
2011-10-07 | cppcheck reduce scope of var in forms/...convert.cxx | Pierre-André Jacquod | |
2011-10-07 | cppcheck scope reduction in forms/...DatabaseForm.cxx | Pierre-André Jacquod | |
2011-09-26 | WaE: unused e | Caolán McNamara | |
2011-09-22 | just silence the auto_ptr deprecations in isolation | Caolán McNamara | |
2011-09-15 | make forms ByteString free | Caolán McNamara | |
2011-09-12 | ditch distracting CHARSET_ANSI comment | Caolán McNamara | |