]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/sharedptr.h
Use wxCOMPtr throughout wxWebViewIE to simplify the code and reduce the chance of...
[wxWidgets.git] / interface / wx / sharedptr.h
index 2b18e2a4713c95793280a25249e5a7927eb731d9..92e94a8759f6c7531ccdbb5eaa10435fcd16c139 100644 (file)
@@ -9,7 +9,7 @@
 /**
     A smart pointer with non-intrusive reference counting.
 
-    It is modeled after @c boost::shared_ptr<> and can be used with STL
+    It is modelled after @c boost::shared_ptr<> and can be used with STL
     containers and wxVector<T> unlike @c std::auto_ptr<> and wxScopedPtr<T>.
 
     @library{wxbase}
@@ -61,7 +61,9 @@ public:
     T operator*() const;
 
     /**
-        Returns pointer to its object or @NULL.
+        Smart pointer member access. Returns pointer to its object.
+
+        If the internal pointer is @NULL this method will cause an assert in debug mode.
     */
     T* operator->() const;