head	1.2;
access;
symbols
	RELEASE_8_3_0:1.1
	RELEASE_9_0_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2012.04.27.17.46.04;	author nox;	state dead;
branches;
next	1.1;

1.1
date	2011.06.22.22.57.16;	author nox;	state Exp;
branches;
next	;


desc
@@


1.2
log
@- Update devel/cxxtools and www/tntnet to 2.1 .
- Bump PORTREVISION for www/vdr-plugin-live that depends on tntnet.
@
text
@--- a/framework/common/tnt/object.h
+++ b/framework/common/tnt/object.h
@@@@ -57,9 +57,9 @@@@ namespace tnt
         : ptr(ptr_)
         { }
       ~PointerObject()
-        { destroy(ptr); }
+        { this->destroy(ptr); }
       void set(data_type* ptr_)
-        { destroy(ptr); ptr = ptr_; }
+        { this->destroy(ptr); ptr = ptr_; }
       data_type* get()  { return ptr; }
   };
 
--- a/framework/common/tnt/compident.h
+++ b/framework/common/tnt/compident.h
@@@@ -39,8 +39,9 @@@@ namespace tnt
 /// tntnet components are identified by the library, where they reside and a name
 /// inside the library. The name is actually a string constant, which was passed
 /// to the component factory ctor.
-struct Compident
+class Compident
 {
+public:
   std::string libname;
   std::string compname;
 
@


1.1
log
@Fix build with clang.
@
text
@@

