diff options
Diffstat (limited to 'tdehtml/css/css_valueimpl.cpp')
-rw-r--r-- | tdehtml/css/css_valueimpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tdehtml/css/css_valueimpl.cpp b/tdehtml/css/css_valueimpl.cpp index 94cca8840..b515388dc 100644 --- a/tdehtml/css/css_valueimpl.cpp +++ b/tdehtml/css/css_valueimpl.cpp @@ -308,9 +308,10 @@ bool CSSStyleDeclarationImpl::setProperty(int id, const DOMString &value, bool i CSSParser parser( strictParsing ); bool success = parser.parseValue( this, id, value, important, nonCSSHint ); - if(!success) + if(!success) { kdDebug( 6080 ) << "CSSStyleDeclarationImpl::setProperty invalid property: [" << getPropertyName(id).string() << "] value: [" << value.string() << "]"<< endl; + } else setChanged(); return success; |