convert tab to spaces

This commit is contained in:
Mark Ganson TheMarkster
2020-07-17 20:42:14 -05:00
committed by Yorik van Havre
parent 488e8e4e6a
commit 4e70a108f4

View File

@@ -1347,7 +1347,7 @@ PyObject* Application::sGetCommandInfo(PyObject * /*self*/, PyObject *args)
std::string shortcutTxt = action->shortcut().toString().toStdString();
#if PY_MAJOR_VERSION >= 3
PyObject* strMenuTxt = PyUnicode_FromString(menuTxt ? menuTxt : "");
PyObject* strMenuTxt = PyUnicode_FromString(menuTxt ? menuTxt : "");
PyObject* strTooltipTxt = PyUnicode_FromString(tooltipTxt ? tooltipTxt : "");
PyObject* strWhatsThisTxt = PyUnicode_FromString(whatsThisTxt ? whatsThisTxt : "");
PyObject* strStatustipTxt = PyUnicode_FromString(statustipTxt ? statustipTxt : "");