bahadirdogan
unread,Nov 3, 2008, 9:56:43 AM11/3/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Qt Türkiye
merhaba,
dokumentasyonu incelerken soyle seyler gordum fakat ne ifade ettigini
anlayamadim.
bool TableModel::insertRows(int position, int rows, const QModelIndex
&index)
{
Q_UNUSED(index); //<---------------------- bu nedir?
beginInsertRows(QModelIndex(), position, position+rows-1);
for (int row=0; row < rows; row++) {
QPair<QString, QString> pair(" ", " ");
listOfPairs.insert(position, pair);
}
endInsertRows();
return true;
}
burada bu Q_UNUSED ne is gorur?
tesekkurler.