gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r12273: Fixes to visibility: bug #30


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r12273: Fixes to visibility: bug #30241.
Date: Thu, 24 Jun 2010 14:14:36 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 12273
author: Bernhard Rosenkraenzer <address@hidden>
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Thu 2010-06-24 14:14:36 +0200
message:
  Fixes to visibility: bug #30241.
modified:
  libcore/as_value.h
=== modified file 'libcore/as_value.h'
--- a/libcore/as_value.h        2010-05-18 08:00:19 +0000
+++ b/libcore/as_value.h        2010-06-24 12:14:36 +0000
@@ -131,8 +131,8 @@
     DSOEXPORT as_value();
     
     /// Construct a primitive String value 
-    as_value(const char* str);
-    as_value(const std::string& str);
+    DSOEXPORT as_value(const char* str);
+    DSOEXPORT as_value(const std::string& str);
     
     /// Construct a primitive Boolean value
     template <typename T>
@@ -152,7 +152,7 @@
     as_value(as_object* obj);
     
     /// Copy constructor.
-    as_value(const as_value& value);
+    DSOEXPORT as_value(const as_value& value);
     
     /// Return the primitive type of this value as a string.
     const char* typeOf() const;
@@ -293,7 +293,7 @@
     /// Set this value to the NULL value
     void set_null();
     
-    void operator=(const as_value& v);
+    DSOEXPORT void operator=(const as_value& v);
     
     bool is_undefined() const {
         return (_type == UNDEFINED);


reply via email to

[Prev in Thread] Current Thread [Next in Thread]