diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2008-01-14 13:49:36 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2008-01-14 13:49:36 +0000 |
commit | b41a7e4f5969025ed30ccac63f9be31ad7285594 (patch) | |
tree | 609c0b652793eb61f53be7627971a7c9dc525b6c /extensions/source/plugin/aqua | |
parent | f8266c95e55541fd5f849c5bef1cc6a3ef58d839 (diff) |
INTEGRATION: CWS wae4extensions (1.2.44); FILE MERGED
2007/10/04 15:40:09 ericb 1.2.44.1: #i81612# fix warning (missing type)
Diffstat (limited to 'extensions/source/plugin/aqua')
-rw-r--r-- | extensions/source/plugin/aqua/macmgr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/plugin/aqua/macmgr.cxx b/extensions/source/plugin/aqua/macmgr.cxx index 1940e07a0f31..75f57be3f711 100644 --- a/extensions/source/plugin/aqua/macmgr.cxx +++ b/extensions/source/plugin/aqua/macmgr.cxx @@ -4,9 +4,9 @@ * * $RCSfile: macmgr.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2007-07-05 08:48:59 $ + * last change: $Author: ihi $ $Date: 2008-01-14 14:49:36 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -97,7 +97,7 @@ static bool CheckPlugin( const ByteString& rPath, list< PluginDescription* >& rD char buf[256]; while( fgets( buf, sizeof( buf ), pResult ) ) { - for( int i = 0; i < sizeof(buf) && buf[i]; ++i ) + for( size_t i = 0; i < sizeof(buf) && buf[i]; ++i ) { if( buf[i] == '\n' ) buf[i] = ';'; |