Spreadsheet: Removed setPosition() function.

This commit is contained in:
Eivind Kvedalen
2015-11-08 11:58:46 +01:00
committed by wmayer
parent b7480210fd
commit 87c6af3547
7 changed files with 0 additions and 67 deletions

View File

@@ -759,25 +759,6 @@ PyObject* SheetPy::getBackground(PyObject *args)
}
}
PyObject* SheetPy::setPosition(PyObject *args)
{
const char * strAddress;
CellAddress address;
if (!PyArg_ParseTuple(args, "s:setPosition", &strAddress))
return 0;
try {
address = stringToAddress(strAddress);
getSheetPtr()->setPosition(address);
Py_Return;
}
catch (const Base::Exception & e) {
PyErr_SetString(PyExc_ValueError, e.what());
return 0;
}
}
PyObject* SheetPy::setColumnWidth(PyObject *args)
{
const char * columnStr;