1. 25 Şub, 2015 29 kayıt (commit)
  2. 24 Şub, 2015 11 kayıt (commit)
    • Julien Nabet's avatar
      Typo: curently->currently · 98444584
      Julien Nabet yazdı
      Change-Id: I2362c2c7a1c637b02eeebcae8ee1e3c0fc2b2422
      98444584
    • Julien Nabet's avatar
      Typo: feture->feature · b4b9b94e
      Julien Nabet yazdı
      Change-Id: Ie1c92ff5f65b019d3f1306917cd924036eea7909
      b4b9b94e
    • Julien Nabet's avatar
      Typo: alludpatelastsequences->allupdatelastsequences · 03d145d8
      Julien Nabet yazdı
      Change-Id: I902fcb3fef7100279c34494e95cacfd3e5caf153
      03d145d8
    • Julien Nabet's avatar
      Typos · 8577f2f3
      Julien Nabet yazdı
      Change-Id: I5f2577dd1f047331a58d33e05684b673e6dbd11e
      8577f2f3
    • Julien Nabet's avatar
      Typo: increse->increase · aec4088c
      Julien Nabet yazdı
      Change-Id: I4942a9ef4d3805865896c83cd9efa66437857ba1
      aec4088c
    • Yousuf Philips's avatar
      Changed tooltips for boder buttons in Calc's toolbar · 1df9fb01
      Yousuf Philips yazdı
      Change-Id: I0e6c0900d28e7f01ebf88bcabc7dc6d5bbdb1b6a
      Reviewed-on: https://gerrit.libreoffice.org/14594Reviewed-by: 's avatarAdolfo Jayme Barrientos <fitojb@ubuntu.com>
      Tested-by: 's avatarAdolfo Jayme Barrientos <fitojb@ubuntu.com>
      1df9fb01
    • Eike Rathke's avatar
      Resolves: tdf#89484 check that sheet reference is within selected sheets · 5803c76f
      Eike Rathke yazdı
      Change-Id: I88f1d0a134ffa3fbb9a5b5abdabbd4774f457e81
      5803c76f
    • Caolán McNamara's avatar
      32 times larger than necessary · 6a37123f
      Caolán McNamara yazdı
      bit/byte thinko I imagine
      
      Change-Id: I85ef6de4a4e6cffcd9c593eb15da692a2617736e
      6a37123f
    • Caolán McNamara's avatar
      make ScanlineStride an argument to createBitmapDevice · efe28833
      Caolán McNamara yazdı
      so we could create bitmap devices that have the same stride that cairo expects,
      provide getBitmapDeviceStrideForWidth to get a default value
      
      Change-Id: I7ecc6f54a734b3f6bed59c699ac3b482c4ad7c47
      efe28833
    • Caolán McNamara's avatar
      Revert "Simplify loops and reduce scope of some variables" · 28f909df
      Caolán McNamara yazdı
      doesn't appear to be equivalent, first continue now skips
      second GetBound assign that original code would have done
      
      This reverts commit b56614c6.
      
      Change-Id: I113670064fd285795234ae9c9e09be0cc0697cd0
      28f909df
    • Stephan Bergmann's avatar
      Avoid bad downcasts to VclBox · 6c7b85c2
      Stephan Bergmann yazdı
      At least in CppunitTest_smoektest there is a case where
      SystemWindow::setOptimalLayoutSize tries to downcast a VclGrid as a VclBox
      (stack top below), and that even appears to be unnecessary as the only place
      that requires the downcast is the Dialog::settingOptimalLayoutSize override.  So
      maybe it is guaranteed that GetWindow(WINDOW_FIRSTCHILD) is a VclBox if this is
      a Dialog, but need not be the case if this is not a Dialog?  Or the real bug is
      elsewhere...
      
      SystemWindow::setOptimalLayoutSize()
      SystemWindow::DoInitialLayout()
      FloatingWindow::StateChanged(StateChangedType)
      SfxFloatingWindow::StateChanged(StateChangedType)
      SmToolBoxWindow::StateChanged(StateChangedType)
      vcl::Window::ImplCallInitShow()
      vcl::Window::Show(bool, unsigned short)
      SfxChildWindow::Show(unsigned short)
      SfxWorkWindow::HidePopups_Impl(bool, bool, unsigned short)
      SfxDispatcher::DoActivate_Impl(bool, SfxViewFrame*)
      SfxViewFrame::DoActivate(bool, SfxViewFrame*)
      SfxApplication::SetViewFrame_Impl(SfxViewFrame*)
      SfxViewFrame::SetViewFrame(SfxViewFrame*)
      SfxViewFrame::MakeActive_Impl(bool)
      SfxBaseController::ConnectSfxFrame_Impl(SfxBaseController::ConnectSfxFrame)
      SfxBaseController::attachFrame(com::sun::star::uno::Reference<com::sun::star::frame::XFrame> const&)
      (anonymous namespace)::SfxFrameLoader_Impl::impl_createDocumentView(com::sun::star::uno::Reference<com::sun::star::frame::XModel2> const&, com::sun::star::uno::Reference<com::sun::star::frame::XFrame> const&, comphelper::NamedValueCollection const&, rtl::OUString const&)
      (anonymous namespace)::SfxFrameLoader_Impl::load(com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&, com::sun::star::uno::Reference<com::sun::star::frame::XFrame> const&)
      framework::LoadEnv::impl_loadContent()
      framework::LoadEnv::startLoading()
      framework::LoadEnv::loadComponentFromURL(com::sun::star::uno::Reference<com::sun::star::frame::XComponentLoader> const&, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&, rtl::OUString const&, rtl::OUString const&, int, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&)
      ...
      
      Change-Id: I786ad451fdf73eca22860695a614ee5b889a83cd
      6c7b85c2