mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
11 lines
414 B
C++
11 lines
414 B
C++
--- src/kernel/cobject.cc.orig 2009-09-11 12:02:56 UTC
|
|
+++ src/kernel/cobject.cc
|
|
@@ -60,7 +60,7 @@ objHasParent (const IProperty& ip, boost
|
|
if (!hasValidPdf (ip))
|
|
throw CObjInvalidOperation ();
|
|
|
|
- shared_ptr<CPdf> pdf = ip.getPdf ().lock ();
|
|
+ boost::shared_ptr<CPdf> pdf = ip.getPdf ().lock ();
|
|
IndiRef ref = ip.getIndiRef();
|
|
if ( &ip == (indiObj=pdf->getIndirectProperty(ref)).get() )
|
|
return false;
|