diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-10 00:37:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-11 09:04:33 +0100 |
commit | 93d2740ffbbea577f8d64680eddcd8d1bf22ff3f (patch) | |
tree | 6b41d08ad12a81b8c47f8b35479b3e11dc169240 /svx/source/dialog | |
parent | d3b0920ed2f0d4e5a219a34a96391100cfab4976 (diff) |
callcatcher: unused lcl_MoveBox
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/rubydialog.cxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/svx/source/dialog/rubydialog.cxx b/svx/source/dialog/rubydialog.cxx index 75d3a8dca672..6b29963fd8b9 100644 --- a/svx/source/dialog/rubydialog.cxx +++ b/svx/source/dialog/rubydialog.cxx @@ -772,19 +772,6 @@ void SvxRubyDialog::DataChanged( const DataChangedEvent& rDCEvt ) UpdateColors(); } -void lcl_MoveBox(long nOffset, Edit& rLeft, Edit& rRight) -{ - Size aLeftSz(rLeft.GetSizePixel()); - Point aRightPos(rRight.GetPosPixel()); - Size aRightSz(rRight.GetSizePixel()); - aLeftSz.Width() += nOffset; - aRightSz.Width() -= nOffset; - aRightPos.X() += nOffset; - rLeft.SetSizePixel(aLeftSz); - rRight.SetPosSizePixel(aRightPos, aRightSz); - -} - RubyPreview::RubyPreview(SvxRubyDialog& rParent, const ResId& rResId) : Window(&rParent, rResId), rParentDlg(rParent) |