diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:03:48 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:03:48 +0000 |
commit | 67c96a9e5f81252788073af51835eafae433f9e4 (patch) | |
tree | 8d645c8823f129298e7871fbdb28c88524541340 /pyuno | |
parent | 888beec4edbd4fc9899ec29df51e30ec726db4ef (diff) |
INTEGRATION: CWS warnings01 (1.3.16); FILE MERGED
2005/09/23 02:08:41 sb 1.3.16.2: RESYNC: (1.3-1.4); FILE MERGED
2005/09/09 15:31:19 sb 1.3.16.1: #i53898# Made code warning-free.
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_gc.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyuno/source/module/pyuno_gc.cxx b/pyuno/source/module/pyuno_gc.cxx index 2ef1275f4108..d3009b2d6e51 100644 --- a/pyuno/source/module/pyuno_gc.cxx +++ b/pyuno/source/module/pyuno_gc.cxx @@ -4,9 +4,9 @@ * * $RCSfile: pyuno_gc.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-08 16:52:36 $ + * last change: $Author: hr $ $Date: 2006-06-20 05:03:48 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -32,8 +32,8 @@ * MA 02111-1307 USA * ************************************************************************/ -#include <osl/thread.hxx> #include <pyuno_impl.hxx> +#include <osl/thread.hxx> namespace pyuno { @@ -63,7 +63,7 @@ public: GCThread::GCThread( PyInterpreterState *interpreter, PyObject * object ) : - mPyInterpreter( interpreter ), mPyObject( object ) + mPyObject( object ), mPyInterpreter( interpreter ) {} void GCThread::run() @@ -73,7 +73,7 @@ void GCThread::run() return; try { - PyThreadAttach guard( (PyInterpreterState*)mPyInterpreter ); + PyThreadAttach g( (PyInterpreterState*)mPyInterpreter ); { Runtime runtime; |