diff options
author | Benoit Foucher <benoit@zeroc.com> | 2003-04-09 19:15:34 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2003-04-09 19:15:34 +0000 |
commit | 6ab1b28971d38da0803a13c7fe476467ef1143cd (patch) | |
tree | f5b244c045a73a2f23f8823812681c291a19f033 /cpp/src | |
parent | fixes for RH9 (diff) | |
download | ice-6ab1b28971d38da0803a13c7fe476467ef1143cd.tar.bz2 ice-6ab1b28971d38da0803a13c7fe476467ef1143cd.tar.xz ice-6ab1b28971d38da0803a13c7fe476467ef1143cd.zip |
Win32 Fix
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Glacier/Request.cpp | 4 | ||||
-rw-r--r-- | cpp/src/Glacier/glacierrouter.dsp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Glacier/Request.cpp b/cpp/src/Glacier/Request.cpp index 553b3b9f065..221be673f2b 100644 --- a/cpp/src/Glacier/Request.cpp +++ b/cpp/src/Glacier/Request.cpp @@ -284,9 +284,9 @@ Glacier::RequestQueue::run() // // sort(proxies.begin(), proxies.end()); // proxies.erase(unique(proxies.begin(), proxies.end()), proxies.end()); - for(vector<ObjectPrx>::const_iterator p = proxies.begin(); p != proxies.end(); ++p) + for(vector<ObjectPrx>::const_iterator q = proxies.begin(); q != proxies.end(); ++q) { - (*p)->ice_flush(); + (*q)->ice_flush(); } } catch(const Ice::Exception& ex) diff --git a/cpp/src/Glacier/glacierrouter.dsp b/cpp/src/Glacier/glacierrouter.dsp index 197e2128c76..5ba67d20224 100644 --- a/cpp/src/Glacier/glacierrouter.dsp +++ b/cpp/src/Glacier/glacierrouter.dsp @@ -103,7 +103,7 @@ SOURCE=.\GlacierRouter.cpp # End Source File
# Begin Source File
-SOURCE=.\Missive.cpp
+SOURCE=.\Request.cpp
# End Source File
# Begin Source File
@@ -127,7 +127,7 @@ SOURCE=.\ClientBlobject.h # End Source File
# Begin Source File
-SOURCE=.\Missive.h
+SOURCE=.\Request.h
# End Source File
# Begin Source File
|