File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -248,17 +248,16 @@ namespace matplotlibcpp {
248
248
Py_DECREF (res);
249
249
}
250
250
251
- inline void title (const std::string &titlestr)
251
+ inline void title (const std::string &titlestr)
252
252
{
253
253
PyObject* pytitlestr = PyString_FromString (titlestr.c_str ());
254
254
PyObject* args = PyTuple_New (1 );
255
255
PyTuple_SetItem (args, 0 , pytitlestr);
256
256
257
- PyObject* res = PyObject_CallObject (detail::_interpreter::get ().s_python_function_title ,
258
- args);
257
+ PyObject* res = PyObject_CallObject (detail::_interpreter::get ().s_python_function_title , args);
259
258
if (!res) throw std::runtime_error (" Call to title() failed." );
260
259
261
- // if PyDeCRFF, the show function doesn't wook on Mac OS
260
+ // if PyDeCRFF, the show function doesn't wook on Mac OS
262
261
}
263
262
264
263
inline void show ()
You can’t perform that action at this time.
0 commit comments