1. 28 Eki, 2015 35 kayıt (commit)
  2. 27 Eki, 2015 5 kayıt (commit)
    • László Németh's avatar
      Updated core · 048bc383
      László Németh yazdı
      Project: dictionaries  b4f9255af01dcc24f263fdb0cd4544db35153d9d
      
      tdf#95024 update Hungarian spelling dictionary
      
      Change-Id: I5fd5bd203aead86126be8ab585a4be616470f01e
      Reviewed-on: https://gerrit.libreoffice.org/19620Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
      Tested-by: 's avatarAndras Timar <andras.timar@collabora.com>
      048bc383
    • David Ostrovsky's avatar
      Support universal C runtime, SDK 10 and .NET 4.6 · 21250262
      David Ostrovsky yazdı
      Starting with MSVC 14.0 (aka VS 2015) C Runtime (CRT) was divided in
      two logical parts: The VCRuntime, which contained the compiler support
      functionality required for things like process startup and exception
      handling, and a "stable" part that contained all of the purely library
      parts of the CRT.
      
      Previously, all of the CRT headers, sources, and libraries were
      distributed as part of the Visual C++ SDK, installed in the VC
      subdirectory of Visual Studio installation (generally C:\Program
      Files (x86)\Microsoft Visual Studio 14.0\VC). The files for the
      VCRuntime are still part of the Visual C++ SDK. The headers, sources,
      and libraries are now distributed as part of a separate Universal CRT
      SDK. This SDK is included with Visual Studio; it is installed to
      C:\Program Files (x86)\Windows Kits\10. The debug ucrtbased.dll is
      also included as part of this SDK and is installed to the system
      directory.
      
      In I0ef8cda7b initial support was added to suport VS 2015. In this
      change support for universal CRT, .NET 4.6 and SDK 10 is added. UCRT
      dirs are added to CFLAG, CXXFLAG and ILIB. SDK 10 include path is
      added to SOLARINC. .NET Framework 4.6 was splitted from SDK 10 and
      needs to be discovered separately.
      
      Change-Id: I2c484b6b1debab0d71523385021abb8fc8e6027f
      Reviewed-on: https://gerrit.libreoffice.org/16642Tested-by: 's avatarJenkins <ci@libreoffice.org>
      Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
      21250262
    • Christian Lohmaier's avatar
      update credits · 32d2fb8e
      Christian Lohmaier yazdı
      Change-Id: If58fdc2eaf1b7b2148e3db2ebba6f8c0f2e9c92b
      32d2fb8e
    • Matteo Casalin's avatar
      sal_uLong to sal_uInt64/sal_Size · 51bc0594
      Matteo Casalin yazdı
      Change-Id: I4032b08225f1b530a43f1a8c09c5fc3515f45ced
      51bc0594
    • Stephan Bergmann's avatar
      Remove unncessary, wrong downcast · 58993431
      Stephan Bergmann yazdı
      ...which caused
      
      > sw/source/uibase/docvw/edtwin.cxx:4280:47: runtime error: downcast of address 0x6060015556a0 which does not point to an object of type 'SwDrawContact'
      > 0x6060015556a0: note: object is of type 'SwFlyDrawContact'
      >  11 07 80 2c  50 26 83 79 65 7f 00 00  d0 26 83 79 65 7f 00 00  80 63 a6 01 20 61 00 00  00 00 00 00
      >               ^~~~~~~~~~~~~~~~~~~~~~~
      >               vptr for 'SwFlyDrawContact'
      >  SwEditWin::MouseButtonUp(MouseEvent const&) sw/source/uibase/docvw/edtwin.cxx:4280:47
      >  ImplHandleMouseEvent(vcl::Window*, MouseNotifyEvent, bool, long, long, unsigned long, unsigned short, MouseEventModifiers) vcl/source/window/winproc.cxx:736:17
      >  ImplHandleSalMouseButtonUp(vcl::Window*, SalMouseEvent*) vcl/source/window/winproc.cxx:2082:12
      >  ImplWindowFrameProc(vcl::Window*, SalFrame*, unsigned short, void const*) vcl/source/window/winproc.cxx:2425:20
      >  SalFrame::CallCallback(unsigned short, void const*) const vcl/inc/salframe.hxx:255:33
      >  GtkSalFrame::signalButton(_GtkWidget*, _GdkEventButton*, void*) vcl/unx/gtk3/window/../../gtk/window/gtksalframe.cxx:3176:5
      >  [...]
      
      Change-Id: Ib9013eb3ff7546ee6534d5148d2505608a9d70f9
      58993431