diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2015-05-20 13:05:49 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2015-05-20 13:05:49 +0200 |
commit | ab465b90f6c6da5595393a0ba73f33a1e71a2b65 (patch) | |
tree | 36b77192de2799a11b4bf0b269cb3f74d0a0bb1f /sw/source/uibase/web | |
parent | 0db96caf0fcce09b87621c11b584a6d81cc7df86 (diff) |
bin/rename-sw-abbreviations.sh
libreoffice-5-0-branch-point
renames the most annoying abbreviations in Writer (and partially
in the shared code too).
Change-Id: I9a62759138126c1537cc5c985ba05cf54d6132d9
Diffstat (limited to 'sw/source/uibase/web')
-rw-r--r-- | sw/source/uibase/web/wview.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/web/wview.cxx b/sw/source/uibase/web/wview.cxx index 1a4e702ec1a8..66736a832595 100644 --- a/sw/source/uibase/web/wview.cxx +++ b/sw/source/uibase/web/wview.cxx @@ -102,12 +102,12 @@ void SwWebView::SelectShell() #if HAVE_FEATURE_DESKTOP // Decision whether UpdateTable must be called bool bUpdateTable = false; - const SwFrmFmt* pCurTableFmt = GetWrtShell().GetTableFmt(); - if(pCurTableFmt && pCurTableFmt != GetLastTblFrmFmt()) + const SwFrameFormat* pCurTableFormat = GetWrtShell().GetTableFormat(); + if(pCurTableFormat && pCurTableFormat != GetLastTableFrameFormat()) { bUpdateTable = true; // can only be executed later } - SetLastTblFrmFmt(pCurTableFmt); + SetLastTableFrameFormat(pCurTableFormat); //SEL_TBL and SEL_TBL_CELLS can be ored! int nNewSelectionType = (GetWrtShell().GetSelectionType() & ~nsSelectionType::SEL_TBL_CELLS); |