From 6184ff58496735b31c885e2663e124847252531c Mon Sep 17 00:00:00 2001 From: marian Date: Wed, 2 Jul 2008 14:49:21 +0000 Subject: [PATCH] Fixed bug: String descendants are now calling the parent's changed() method to allow the String to update its data. git-svn-id: http://yate.null.ro/svn/yate/trunk@2049 acf43c95-373e-0410-b603-e72c3f656dc1 --- engine/String.cpp | 1 + engine/URI.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/engine/String.cpp b/engine/String.cpp index 64fa9557..f26fa1b4 100644 --- a/engine/String.cpp +++ b/engine/String.cpp @@ -1394,6 +1394,7 @@ void* NamedPointer::getObject(const String& name) const void NamedPointer::changed() { userData(0); + NamedString::changed(); } diff --git a/engine/URI.cpp b/engine/URI.cpp index ca0167e9..8646f3e6 100644 --- a/engine/URI.cpp +++ b/engine/URI.cpp @@ -72,6 +72,7 @@ URI::URI(const char* proto, const char* user, const char* host, int port, const void URI::changed() { m_parsed = false; + String::changed(); } void URI::parse() const