From kde-commits Fri May 19 10:03:51 2006 From: Andras Mantia Date: Fri, 19 May 2006 10:03:51 +0000 To: kde-commits Subject: branches/KDE/3.5/kdelibs/khtml/dom Message-Id: <1148033031.730360.30820.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=114803307301362 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; }