1. 11 Mar, 2015 35 kayıt (commit)
  2. 10 Mar, 2015 5 kayıt (commit)
    • Michael Stahl's avatar
      tdf#89867: editeng: fix crash on shutdown after changing AutoCorrect options · d1698027
      Michael Stahl yazdı
      Since commit 5bff4b01 the
      SvxAutoCorrCfg::pAutoCorrect is cleared by one terminate() listener but
      then another terminate() listener calls Commit() on all modified
      utl::ConfigItem and these two have a Commit() that does not clear the
      modified flag so they are always modified.
      
      Sadly there's no non-virtual Commit() wrapper that
      calls ClearModified() on the base class...
      
      Change-Id: I9ae220d78bb109c7bf0fdc544754a0686b357115
      d1698027
    • Michael Stahl's avatar
      i18npool: fix spurious regex ^ matching in TextSearch::searchForward() · 9aae521b
      Michael Stahl yazdı
      Thanks to Eike for finding this:
      
      The anchors ^ and $ now anchor at the selection boundary because the
      only text the regex matcher gets passed is the selected text. This in
      two paragraphs
      
       aaa bbb aaa bbb
       aaa bbb aaa bbb
      
      when the selection spans from the second aaa to the third bbb, for
      "^aaa" finds the second aaa, where previously it found the third aaa at
      the real paragraph start.
      
      This may not be expected by the user, because the behavior of ^ is
      described as "Match at the beginning of a line" (or paragraph in our
      case), which the previous implementation did.
      
      (regression from 806ced87)
      
      Unfortunately it's not obvious how to implement the same in
      searchBackward().
      
      Change-Id: I07f7a8476b672d9511fa74ca473c32eea427698f
      9aae521b
    • Michael Stahl's avatar
      sw: s/eEnde/eEnd/ · df1c65b8
      Michael Stahl yazdı
      Change-Id: I9ea963d09c2975b8e40856e3ba2d3896be9a1876
      df1c65b8
    • Eike Rathke's avatar
      virtual ScTableRefToken::SetIndex(); of course.. · a408811f
      Eike Rathke yazdı
      Change-Id: I4a43ea664e9db2bb44e0e7f089a71abf6f572b1e
      a408811f
    • Eike Rathke's avatar
      replace an OSL_ENSURE() with assert(), tdf#89319 related · 71b630e5
      Eike Rathke yazdı
      Commit 8e2293e0 changed
      STREAM_SEEK_TO_END logic, ensure that in a dbgutil build we catch
      unnoticed corner cases with assert() instead of just another fly-by
      warning.
      
      Change-Id: If6c4fb4d2467f7dc7b8177caf7353d0b0e56ed0d
      71b630e5