##// END OF EJS Templates
Replaced 'Bar' with 'BarSet' in BarModelMapper functions and member variables
Replaced 'Bar' with 'BarSet' in BarModelMapper functions and member variables

File last commit:

r1312:0b557819e7a2
r1312:0b557819e7a2
Show More
qhbarmodelmapper.cpp
43 lines | 962 B | text/x-c | CppLexer
#include "qhbarmodelmapper.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
QHBarModelMapper::QHBarModelMapper(QObject *parent) :
QBarModelMapper(parent)
{
QBarModelMapper::setOrientation(Qt::Horizontal);
}
int QHBarModelMapper::firstBarSetRow() const
{
return QBarModelMapper::firstBarSetSection();
}
void QHBarModelMapper::setFirstBarSetRow(int firstBarSetRow)
{
return QBarModelMapper::setFirstBarSetSection(firstBarSetRow);
}
int QHBarModelMapper::lastBarSetRow() const
{
return QBarModelMapper::lastBarSetSection();
}
void QHBarModelMapper::setLastBarSetRow(int lastBarSetRow)
{
return QBarModelMapper::setLastBarSetSection(lastBarSetRow);
}
int QHBarModelMapper::categoriesRow() const
{
return QBarModelMapper::categoriesSection();
}
void QHBarModelMapper::setCategoriesRow(int categoriesRow)
{
return QBarModelMapper::setCategoriesSection(categoriesRow);
}
#include "moc_qhbarmodelmapper.cpp"
QTCOMMERCIALCHART_END_NAMESPACE