1. 28 Mar, 2013 8 kayıt (commit)
  2. 27 Mar, 2013 6 kayıt (commit)
  3. 26 Mar, 2013 8 kayıt (commit)
  4. 25 Mar, 2013 7 kayıt (commit)
  5. 24 Mar, 2013 2 kayıt (commit)
  6. 23 Mar, 2013 2 kayıt (commit)
    • Tor Lillqvist's avatar
      Allow installation on external storage (SD card) · 5f0d6ff9
      Tor Lillqvist yazdı
      Change-Id: I532f27aee60a2e60110e9edea75e7cbe7d614b1e
      Reviewed-on: https://gerrit.libreoffice.org/2940Reviewed-by: 's avatarThorsten Behrens <tbehrens@suse.com>
      Tested-by: 's avatarThorsten Behrens <tbehrens@suse.com>
      5f0d6ff9
    • David Tardon's avatar
      rhbz#876742 speed up table manipulation in Impress · ea34a742
      David Tardon yazdı
      It turns out this is not actually a performance problem but an oversight
      in implementation (or a bug, if you want .-)
      
      Every manipulation with a table (e.g., move, resize; actually even a
      selection of the table) leads to creation of a full copy of the table
      (SdrObject::getFullDragClone()). One of the actions the table copy impl.
      does is to call sdr::CellProperties::SetStyleSheet() on every cell of
      the new table. CellProperties is derived from
      sdr::properties::TextProperties and CellProperties::SetStyleSheet() just
      passes the call to TextProperties::SetStyleSheet(). This is where the
      trouble begins :-)
      
      The SDR representation of a table, SdrTableObj, is derived from
      SdrTextObj. Because of that, SdrTextObj needs to be able to contain more
      than one SdrText (because a table needs one for every cell). This is
      handled correctly by TextProperties. But, because there is no SDR
      representation of a single cell, CellProperties uses the SdrTableObj as
      the SDR object it works on. Therefore TextProperties::SetStyleSheet()
      processes all SdrText objects of the _whole table_, not just a single
      cell. And this is repeated for every other cell...
      
      Change-Id: Iab2e2d0e1e8038710645c0bd24666e6032b0a003
      (cherry picked from commit 91864e19)
      Reviewed-on: https://gerrit.libreoffice.org/2925Reviewed-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
      Tested-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
      ea34a742
  7. 22 Mar, 2013 6 kayıt (commit)
  8. 21 Mar, 2013 1 kayıt (commit)