summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2012-08-05 20:29:20 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-08-05 20:31:00 +0400
commitc4486f247891cefe6222262dae0f5ef6581ebdca (patch)
tree8dd732461158e9301ffa1c6f02375b23a6c6e4ac /starmath
parentd1501aa5e8f40b6016753f9fb34181a4f914a1d5 (diff)
SmCmdBoxWindow: use single-line frame
Change-Id: I527ae337a9e445d911dba956daf9d76f9d7572de
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/view.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx
index ad6c23213900..5707439852fe 100644
--- a/starmath/source/view.cxx
+++ b/starmath/source/view.cxx
@@ -730,7 +730,7 @@ void SmCmdBoxWindow::Resize()
aRect.Bottom() -= CMD_BOX_PADDING;
DecorationView aView(this);
- aRect = aView.DrawFrame( aRect, FRAME_DRAW_DOUBLEIN | FRAME_DRAW_NODRAW );
+ aRect = aView.DrawFrame( aRect, FRAME_DRAW_IN | FRAME_DRAW_NODRAW );
aEdit.SetPosSizePixel(aRect.TopLeft(), aRect.GetSize());
SfxDockingWindow::Resize();
@@ -747,7 +747,7 @@ void SmCmdBoxWindow::Paint(const Rectangle& /*rRect*/)
aRect.Bottom() -= CMD_BOX_PADDING;
DecorationView aView(this);
- aView.DrawFrame( aRect, FRAME_DRAW_DOUBLEIN );
+ aView.DrawFrame( aRect, FRAME_DRAW_IN );
}