[Pyxine-checkins] pyxine/pxlib Geometry.cc,1.1.1.1,1.2 XDisplay.cc,1.1.1.1,1.2
Status: Pre-Alpha
Brought to you by:
dairiki
|
From: <da...@us...> - 2003-02-12 18:06:24
|
Update of /cvsroot/pyxine/pyxine/pxlib
In directory sc8-pr-cvs1:/tmp/cvs-serv8069/pxlib
Modified Files:
Geometry.cc XDisplay.cc
Log Message:
A couple more typo/bug fixes.
(Thanks to gabor for the reports.)
Index: Geometry.cc
===================================================================
RCS file: /cvsroot/pyxine/pyxine/pxlib/Geometry.cc,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Geometry.cc 8 Feb 2003 00:42:21 -0000 1.1.1.1
+++ Geometry.cc 12 Feb 2003 18:06:18 -0000 1.2
@@ -82,7 +82,7 @@
std::string
Traits<WindowGeometry>::to_string(const WindowGeometry& g)
{
- ostringstream buf;
+ std::ostringstream buf;
buf << "<" << typeid(g).name() << ": "
<< g.width << "x" << g.height
Index: XDisplay.cc
===================================================================
RCS file: /cvsroot/pyxine/pyxine/pxlib/XDisplay.cc,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- XDisplay.cc 8 Feb 2003 00:42:21 -0000 1.1.1.1
+++ XDisplay.cc 12 Feb 2003 18:06:19 -0000 1.2
@@ -160,7 +160,7 @@
return g;
}
-inline void
+void
XDisplay::select_input(Window w, long event_mask)
{
XDisplayLock xlock(display);
|