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

« back to all changes in this revision

Viewing changes to src/lib/marble/geodata/handlers/kml/KmlLineStyleTagHandler.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:
24
24
#include "MarbleDebug.h"
25
25
 
26
26
#include "KmlElementDictionary.h"
 
27
#include "KmlObjectTagHandler.h"
27
28
#include "GeoDataStyle.h"
28
29
#include "GeoDataLineStyle.h"
29
30
#include "GeoParser.h"
42
43
    
43
44
    if ( parentItem.represents( kmlTag_Style ) ) {
44
45
        GeoDataLineStyle style;
 
46
        KmlObjectTagHandler::parseIdentifiers( parser, &style );
45
47
        parentItem.nodeAs<GeoDataStyle>()->setLineStyle( style );
46
48
        return &parentItem.nodeAs<GeoDataStyle>()->lineStyle();
47
49
    }