~ubuntu-branches/ubuntu/wily/marble/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/marble/geodata/handlers/kml/KmlListStyleTagHandler.cpp

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark, Jonathan Riddell, Scarlett Clark
  • Date: 2014-07-24 23:38:32 UTC
  • mfrom: (1.5.2)
  • Revision ID: package-import@ubuntu.com-20140724233832-7v4421t4khrhw487
Tags: 4:4.13.90-0ubuntu1
[ Jonathan Riddell ]
* Switch to libmarblewidget19 for new soversion

[ Scarlett Clark ]
* New upstream beta release
* Update: do_not_install_private_headers. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#include "GeoDataStyle.h"
17
17
#include "GeoDataParser.h"
18
18
#include "KmlElementDictionary.h"
 
19
#include "KmlObjectTagHandler.h"
19
20
 
20
21
namespace Marble
21
22
{
31
32
 
32
33
    if ( parentItem.represents( kmlTag_Style ) ) {
33
34
        GeoDataListStyle style;
 
35
        KmlObjectTagHandler::parseIdentifiers( parser, &style );
34
36
 
35
37
        parentItem.nodeAs<GeoDataStyle>()->setListStyle( style );
36
38
        return &parentItem.nodeAs<GeoDataStyle>()->listStyle();