SVN commit 542424 by amantia: Exception object should be exported, otherwise they cannot be used from another application/library. See http://gcc.gnu.org/wiki/Visibility . M +2 -2 dom_exception.h --- branches/KDE/3.5/kdelibs/khtml/dom/dom_exception.h #542423:542424 @@ -21,7 +21,7 @@ * This file includes excerpts from the Document Object Model (DOM) * Level 1 Specification (Recommendation) * http://www.w3.org/TR/REC-DOM-Level-1/ - * Copyright © World Wide Web Consortium , (Massachusetts Institute of + * Copyright World Wide Web Consortium , (Massachusetts Institute of * Technology , Institut National de Recherche en Informatique et en * Automatique , Keio University ). All Rights Reserved. * @@ -54,7 +54,7 @@ * the corresponding method descriptions. * */ -class DOMException +class KHTML_EXPORT DOMException { public: DOMException(unsigned short _code) { code = _code; }