Kaydet (Commit) 84676d50 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Clean up C-style casts from pointers to void

Change-Id: Iaae87d77ea48207c3277e7107b339296f6a99772
üst 65e9940d
......@@ -261,7 +261,7 @@ uno::Any translateToOOo( const ConfigurationValue &rValue, GConfValue *pGconfVal
GSList * list = gconf_value_get_list(pGconfValue);
for(; list; list = g_slist_next(list))
{
aBuffer.append(gconf_value_get_string((GConfValue *) list->data) + OString(";"));
aBuffer.append(gconf_value_get_string(static_cast<GConfValue *>(list->data)) + OString(";"));
}
// Remove trailing ";"
aBuffer.setLength(aBuffer.getLength()-1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment