[Libreoffice-commits] .: sc/source solenv/bin
Noel Power
noelp at kemper.freedesktop.org
Tue Jan 24 03:10:44 PST 2012
sc/source/ui/app/inputwin.cxx | 15 +++++++++++----
sc/source/ui/inc/inputwin.hxx | 1 +
solenv/bin/ooinstall | 2 +-
3 files changed, 13 insertions(+), 5 deletions(-)
New commits:
commit 1f0ba007489e77e4145fc840cc3a878772494fd7
Author: Noel Power <noel.power at novell.com>
Date: Tue Jan 24 10:40:21 2012 +0000
fix ( hopefully ) viewing artifacts in input line fdo#44391
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index f6404a7..1ae727c 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1125,7 +1125,8 @@ ScMultiTextWnd::ScMultiTextWnd( ScInputBarGroup* pParen, ScTabViewShell* pViewSh
ScTextWnd( pParen, pViewSh ),
mrGroupBar(* pParen ),
mnLines( 1 ),
- mnLastExpandedLines( INPUTWIN_MULTILINES )
+ mnLastExpandedLines( INPUTWIN_MULTILINES ),
+ mbInvalidate( false )
{
nTextStartPos = TEXT_MULTI_STARTPOS;
}
@@ -1138,7 +1139,14 @@ void ScMultiTextWnd::Paint( const Rectangle& rRec )
{
EditView* pView = GetEditView();
if ( pView )
- pView->Paint( rRec );
+ {
+ if ( mbInvalidate )
+ {
+ pView->Invalidate();
+ mbInvalidate = false;
+ }
+ pEditView->Paint( rRec );
+ }
}
EditView* ScMultiTextWnd::GetEditView()
@@ -1403,8 +1411,7 @@ void ScMultiTextWnd::SetTextString( const String& rNewString )
// inputbar window scrolled to the bottom if we do that here ( because the tableview and topview
// are synced I guess ).
// should fix that I suppose :-/ need to look a bit further into that
- if ( pEditView )
- pEditView->Invalidate();
+ mbInvalidate = true; // ensure next Paint ( that uses editengine ) call will call Invalidate first
ScTextWnd::SetTextString( rNewString );
SetScrollBarRange();
DoScroll();
diff --git a/sc/source/ui/inc/inputwin.hxx b/sc/source/ui/inc/inputwin.hxx
index 7b5bc28..eec7fed 100644
--- a/sc/source/ui/inc/inputwin.hxx
+++ b/sc/source/ui/inc/inputwin.hxx
@@ -204,6 +204,7 @@ private:
ScInputBarGroup& mrGroupBar;
long mnLines;
long mnLastExpandedLines;
+ bool mbInvalidate;
};
class ScInputBarGroup : public ScTextWndBase
diff --git a/solenv/bin/ooinstall b/solenv/bin/ooinstall
index 794e81b..3b60909 100755
--- a/solenv/bin/ooinstall
+++ b/solenv/bin/ooinstall
@@ -50,7 +50,7 @@ for $arg (@ARGV) {
$path = Cwd::realpath( $ENV{DESTDIR} . $arg );
if (!$do_link) {
my $destdir = Cwd::realpath( $ENV{DESTDIR} );
- $path =~ s|$destdir||;
+# $path =~ s|$destdir||;
}
}
}
More information about the Libreoffice-commits
mailing list