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
This commit is contained in:
marian 2008-07-02 14:49:21 +00:00
parent 18aca97d72
commit 6184ff5849
2 changed files with 2 additions and 0 deletions

View File

@ -1394,6 +1394,7 @@ void* NamedPointer::getObject(const String& name) const
void NamedPointer::changed()
{
userData(0);
NamedString::changed();
}

View File

@ -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