summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorJoren De Cuyper <joren.libreoffice@telenet.be>2013-03-25 22:11:59 +0100
committerPetr Mladek <pmladek@suse.cz>2013-03-26 09:26:09 +0000
commit64a3b58a9ace11c6a01708e8de14712e27e02043 (patch)
treec21d7b1ae8cc6b565fa41bcd51fb355d7f72f5a5 /sw
parent6f9b1eb8611ad706725388b15038a6673143fe34 (diff)
fix fdo#62670 - TABLE: Splitting a table options are mixed
Change-Id: I1ba647844aaae3a57ee91d5785c82ca082d3e10b Reviewed-on: https://gerrit.libreoffice.org/3042 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/table/splittbl.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sw/source/ui/table/splittbl.cxx b/sw/source/ui/table/splittbl.cxx
index f82d642a8100..d85bb957b4f7 100644
--- a/sw/source/ui/table/splittbl.cxx
+++ b/sw/source/ui/table/splittbl.cxx
@@ -30,7 +30,7 @@ SwSplitTblDlg::SwSplitTblDlg( Window *pParent, SwWrtShell &rSh )
get(mpCntntCopyRB, "copyheading");
get(mpBoxAttrCopyWithParaRB, "customheadingapplystyle");
get(mpBoxAttrCopyNoParaRB, "customheading");
- get(mpBorderCopyRB, "customheading");
+ get(mpBorderCopyRB, "noheading");
}
void SwSplitTblDlg::Apply()
@@ -38,7 +38,7 @@ void SwSplitTblDlg::Apply()
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;
@@ -46,6 +46,4 @@ void SwSplitTblDlg::Apply()
rShell.SplitTable(m_nSplit);
}
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */