Author: hwright
Date: Tue Sep 21 12:19:03 2010
New Revision: 999372
URL: http://svn.apache.org/viewvc?rev=999372&view=rev
Log:
On the object-model branch:
Consistify references to the SVN namespace with other code (namely, don't use
the SVN:: prefix).
* subversion/bindings/c++/Pool.cpp
(Pool, Pool): As above.
Modified:
subversion/branches/object-model/subversion/bindings/c++/Pool.cpp
Modified: subversion/branches/object-model/subversion/bindings/c++/Pool.cpp
URL:
http://svn.apache.org/viewvc/subversion/branches/object-model/subversion/bindings/c%2B%2B/Pool.cpp?rev=999372&r1=999371&r2=999372&view=diff
==============================================================================
--- subversion/branches/object-model/subversion/bindings/c++/Pool.cpp (original)
+++ subversion/branches/object-model/subversion/bindings/c++/Pool.cpp Tue Sep
21 12:19:03 2010
@@ -33,10 +33,10 @@ namespace SVN {
Pool::Pool()
{
- m_pool = svn_pool_create(SVN::Private::Core::getCore()->getGlobalPool());
+ m_pool = svn_pool_create(Private::Core::getCore()->getGlobalPool());
}
-Pool::Pool(SVN::Pool &parent)
+Pool::Pool(Pool &parent)
{
m_pool = svn_pool_create(parent.pool());
}