0
我使用qt5與大理石,並在執行這些代碼行時收到此錯誤消息。任何想法?(可以是我錯過任何包?) 謝謝!錯誤:使用GeoDataPlacemark :: setStyle時調用沒有匹配函數
styleArch = new Marble::GeoDataStyle;
styleArch->setIconStyle(*icon);
place->setStyle(styleArch);
我使用qt5與大理石,並在執行這些代碼行時收到此錯誤消息。任何想法?(可以是我錯過任何包?) 謝謝!錯誤:使用GeoDataPlacemark :: setStyle時調用沒有匹配函數
styleArch = new Marble::GeoDataStyle;
styleArch->setIconStyle(*icon);
place->setStyle(styleArch);
的API從指針到共享指針改變。這應該工作:
styleArch = new Marble::GeoDataStyle;
styleArch->setIconStyle(*icon);
place->setStyle(Marble::GeoDataStyle::Ptr(styleArch));