// the array elements correspond to the parameters of the ctor above in
// the same order
- %name(FileTypeInfoSequence)wxFileTypeInfo(const wxArrayString& sArray);
+ %Rename(FileTypeInfoSequence,, wxFileTypeInfo(const wxArrayString& sArray));
// invalid item - use this to terminate the array passed to
// wxMimeTypesManager::AddFallbacks
- %name(NullFileTypeInfo)wxFileTypeInfo();
+ %Rename(NullFileTypeInfo,, wxFileTypeInfo());
// test if this object can be used
iconIndex = loc.GetIndex();
#endif
// Make a tuple and put the values in it
- wxPyBeginBlockThreads();
+ wxPyBlock_t blocked = wxPyBeginBlockThreads();
PyObject* tuple = PyTuple_New(3);
PyTuple_SetItem(tuple, 0, wxPyConstructObject(new wxIcon(loc),
- wxT("wxIcon"), True));
+ wxT("wxIcon"), true));
PyTuple_SetItem(tuple, 1, wx2PyString(iconFile));
PyTuple_SetItem(tuple, 2, PyInt_FromLong(iconIndex));
- wxPyEndBlockThreads();
+ wxPyEndBlockThreads(blocked);
return tuple;
}
else
wxArrayString commands;
if (self->GetAllCommands(&verbs, &commands,
wxFileType::MessageParameters(filename, mimetype))) {
- wxPyBeginBlockThreads();
+ wxPyBlock_t blocked = wxPyBeginBlockThreads();
PyObject* tuple = PyTuple_New(2);
PyTuple_SetItem(tuple, 0, wxArrayString2PyList_helper(verbs));
PyTuple_SetItem(tuple, 1, wxArrayString2PyList_helper(commands));
- wxPyEndBlockThreads();
+ wxPyEndBlockThreads(blocked);
return tuple;
}
else
// set an arbitrary command, ask confirmation if it already exists and
// overwriteprompt is True
bool SetCommand(const wxString& cmd, const wxString& verb,
- bool overwriteprompt = True);
+ bool overwriteprompt = true);
bool SetDefaultIcon(const wxString& cmd = wxPyEmptyString, int index = 0);
// settings from other, previously parsed, files by this one: normally,
// the files read most recently would override the older files, but with
// fallback == True this won't happen
- bool ReadMailcap(const wxString& filename, bool fallback = False);
+ bool ReadMailcap(const wxString& filename, bool fallback = false);
// read in additional file in mime.types format
bool ReadMimeTypes(const wxString& filename);