Skip to content

Commit

Permalink
type naming by project convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Cervenak committed Jan 15, 2016
1 parent a116021 commit b5b9c83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions NETMapnik/mapnik_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ namespace NETMapnik
(*_layer)->set_srs(msclr::interop::marshal_as<std::string>(value));
}

bool Layer::CacheFeatures::get()
System::Boolean Layer::CacheFeatures::get()
{
return (*_layer)->cache_features();
}
void Layer::CacheFeatures::set(bool value)
void Layer::CacheFeatures::set(System::Boolean value)
{
(*_layer)->set_cache_features(value);
}
Expand Down
6 changes: 3 additions & 3 deletions NETMapnik/mapnik_layer.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ namespace NETMapnik
void set(System::String^ value);
}

property bool CacheFeatures
property System::Boolean CacheFeatures
{
bool get();
void set(bool value);
System::Boolean get();
void set(System::Boolean value);
}

property System::Collections::Generic::IEnumerable<System::String^>^ Styles
Expand Down

0 comments on commit b5b9c83

Please sign in to comment.