[PATCH libreoffice-4-0] fix fdo#62670 - TABLE: Splitting a table options are mixed
Joren De Cuyper (via Code Review)
gerrit at gerrit.libreoffice.org
Mon Mar 25 14:14:27 PDT 2013
Hi,
I have submitted a patch for review:
https://gerrit.libreoffice.org/3042
To pull it, you can do:
git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/42/3042/1
fix fdo#62670 - TABLE: Splitting a table options are mixed
Change-Id: I1ba647844aaae3a57ee91d5785c82ca082d3e10b
---
M sw/source/ui/table/splittbl.cxx
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/sw/source/ui/table/splittbl.cxx b/sw/source/ui/table/splittbl.cxx
index f82d642..d85bb95 100644
--- a/sw/source/ui/table/splittbl.cxx
+++ b/sw/source/ui/table/splittbl.cxx
@@ -30,7 +30,7 @@
get(mpCntntCopyRB, "copyheading");
get(mpBoxAttrCopyWithParaRB, "customheadingapplystyle");
get(mpBoxAttrCopyNoParaRB, "customheading");
- get(mpBorderCopyRB, "customheading");
+ get(mpBorderCopyRB, "noheading");
}
void SwSplitTblDlg::Apply()
@@ -38,14 +38,12 @@
m_nSplit = HEADLINE_CNTNTCOPY;
if(mpBoxAttrCopyWithParaRB->IsChecked())
m_nSplit = HEADLINE_BOXATRCOLLCOPY;
- if(mpBoxAttrCopyNoParaRB->IsChecked())
+ else if(mpBoxAttrCopyNoParaRB->IsChecked())
m_nSplit = HEADLINE_BOXATTRCOPY;
else if(mpBorderCopyRB->IsChecked())
m_nSplit = HEADLINE_BORDERCOPY;
rShell.SplitTable(m_nSplit);
}
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
--
To view, visit https://gerrit.libreoffice.org/3042
To unsubscribe, visit https://gerrit.libreoffice.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I1ba647844aaae3a57ee91d5785c82ca082d3e10b
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: Joren De Cuyper <joren.libreoffice at telenet.be>
More information about the LibreOffice
mailing list