Api function refactor

This commit is contained in:
Debao Zhang
2013-10-18 14:14:26 +08:00
parent 895a30524d
commit 7f218898b6
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -161,13 +161,13 @@ Worksheet *Workbook::insertWorkSheet(int index, const QString &name)
return sheet;
}
int Workbook::activedWorksheet() const
int Workbook::activeWorksheet() const
{
Q_D(const Workbook);
return d->activesheet;
}
void Workbook::setActivedWorksheet(int index)
void Workbook::setActiveWorksheet(int index)
{
Q_D(Workbook);
if (index < 0 || index >= d->worksheets.size()) {