[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r3450: GeoDataFeature's visual category needs to be initialized to (marble/trunk/src/lib/geodata/data)



Author: edmanm
Date: 2009-01-17 20:19:13 -0500 (Sat, 17 Jan 2009)
New Revision: 3450

Modified:
   marble/trunk/src/lib/geodata/data/GeoDataFeature.cpp
Log:
GeoDataFeature's visual category needs to be initialized to None, rather than
Unknown, otherwise it is impossible to use a KML-specified placemark Style or
StyleMap.


Modified: marble/trunk/src/lib/geodata/data/GeoDataFeature.cpp
===================================================================
--- marble/trunk/src/lib/geodata/data/GeoDataFeature.cpp	2009-01-17 22:56:16 UTC (rev 3449)
+++ marble/trunk/src/lib/geodata/data/GeoDataFeature.cpp	2009-01-18 01:19:13 UTC (rev 3450)
@@ -39,7 +39,7 @@
         m_role(' '),
         m_style( 0 ),
         m_styleMap( 0 ),
-        m_visualCategory( GeoDataFeature::Unknown )
+        m_visualCategory( GeoDataFeature::None )
     {
     }