Skip to content
Snippets Groups Projects
Commit ac8603b2 authored by Andreas Schenk's avatar Andreas Schenk
Browse files

changed wrapper for InfoHandle::Remove to accept strings

parent fa854e3c
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,7 @@ void info_handle_apply2b(InfoHandle* h, InfoConstVisitor& v, bool b)
h->Apply(v,b);
}
void info_handle_remove1(InfoHandle* h, InfoPath& path )
void info_handle_remove1(InfoHandle* h, const String& path )
{
h->Remove(path);
}
......@@ -101,7 +101,7 @@ void info_handle_remove2(InfoHandle* h, InfoGroup& group )
{
h->Remove(group);
}
void info_handle_remove3(InfoHandle* h, InfoPath& path, bool use_defaults )
void info_handle_remove3(InfoHandle* h, const String& path, bool use_defaults )
{
h->Remove(path,use_defaults);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment