[Marble-commits] KDE/kdeedu/marble/src/lib/geodata/scene
Jens-Michael Hoffmann
jensmh at gmx.de
Fri Jul 10 17:15:59 CEST 2009
SVN commit 994433 by jmhoffmann:
Just use QString default ctor.
M +3 -4 GeoSceneLayer.cpp
--- trunk/KDE/kdeedu/marble/src/lib/geodata/scene/GeoSceneLayer.cpp #994432:994433
@@ -30,7 +30,7 @@
GeoSceneAbstractDataset::GeoSceneAbstractDataset( const QString& name )
: m_name( name ),
- m_fileFormat( "" ),
+ m_fileFormat(),
m_expire( std::numeric_limits<int>::max() )
{
}
@@ -63,11 +63,10 @@
GeoSceneLayer::GeoSceneLayer( const QString& name )
: m_filter( 0 ),
m_name( name ),
- m_backend( "" ),
- m_role( "" ),
+ m_backend(),
+ m_role(),
m_tiled( true )
{
- /* NOOP */
}
GeoSceneLayer::~GeoSceneLayer()
More information about the Marble-commits
mailing list