summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2001-05-11 08:07:24 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2001-05-11 08:07:24 +0000
commit984e3cd83ce075c3ac1e47c5507fdcbdd0df892f (patch)
tree8b71471674d8a19be28acccb538722db9f9475b3
parent9b7b5a5006c76c7b1c9d945e6bde12061ed3f568 (diff)
#65293# fix for gcc (needs temporary variable for Point() )
-rw-r--r--svtools/source/misc/helpagentwindow.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/svtools/source/misc/helpagentwindow.cxx b/svtools/source/misc/helpagentwindow.cxx
index d7a0d0417541..0046679b3935 100644
--- a/svtools/source/misc/helpagentwindow.cxx
+++ b/svtools/source/misc/helpagentwindow.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: helpagentwindow.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2001-05-07 15:18:58 $
+ * last change: $Author: rt $ $Date: 2001-05-11 09:07:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -142,7 +142,8 @@ namespace svt
FloatingWindow::Paint(rRect);
Size aOutputSize( GetOutputSizePixel() );
- Rectangle aOutputRect( Point(), aOutputSize );
+ Point aPoint=Point();
+ Rectangle aOutputRect( aPoint, aOutputSize );
Rectangle aInnerRect( aOutputRect );
// paint the background
@@ -205,6 +206,9 @@ namespace svt
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.1 2001/05/07 15:18:58 fs
+ * initial checkin - window for the new help agent
+ *
* Revision 1.1 2001/05/07 13:42:30 fs
* initial checkin - help agent window
*