summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qgridlayout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/kernel/qgridlayout.cpp')
-rw-r--r--src/widgets/kernel/qgridlayout.cpp100
1 files changed, 0 insertions, 100 deletions
diff --git a/src/widgets/kernel/qgridlayout.cpp b/src/widgets/kernel/qgridlayout.cpp
index c81158e0cd..59c0db0236 100644
--- a/src/widgets/kernel/qgridlayout.cpp
+++ b/src/widgets/kernel/qgridlayout.cpp
@@ -1682,104 +1682,4 @@ void QGridLayout::invalidate()
QLayout::invalidate();
}
-/*!
- \fn void QGridLayout::addRowSpacing(int row, int minsize)
-
- Use addItem(new QSpacerItem(0, minsize), row, 0) instead.
-*/
-
-/*!
- \fn void QGridLayout::addColSpacing(int col, int minsize)
-
- Use addItem(new QSpacerItem(minsize, 0), 0, col) instead.
-*/
-
-/*!
- \fn void QGridLayout::addMultiCellWidget(QWidget *widget, int fromRow, int toRow, int fromCol, int toCol, Qt::Alignment align = 0)
-
- Use an addWidget() overload that allows you to specify row and
- column spans instead.
-*/
-
-/*!
- \fn void QGridLayout::addMultiCell(QLayoutItem *l, int fromRow, int toRow, int fromCol, int toCol, Qt::Alignment align = 0)
-
- Use an addItem() overload that allows you to specify row and
- column spans instead.
-*/
-
-/*!
- \fn void QGridLayout::addMultiCellLayout(QLayout *layout, int fromRow, int toRow, int fromCol, int toCol, Qt::Alignment align = 0)
-
- Use an addLayout() overload that allows you to specify row and
- column spans instead.
-*/
-
-/*!
- \fn int QGridLayout::numRows() const
-
- Use rowCount() instead.
-*/
-
-/*!
- \fn int QGridLayout::numCols() const
-
- Use columnCount() instead.
-*/
-
-/*!
- \fn void QGridLayout::setColStretch(int col, int stretch)
-
- Use setColumnStretch() instead.
-*/
-
-/*!
- \fn int QGridLayout::colStretch(int col) const
-
- Use columnStretch() instead.
-*/
-
-/*!
- \fn void QGridLayout::setColSpacing(int col, int minSize)
-
- Use setColumnMinimumWidth() instead.
-*/
-
-/*!
- \fn int QGridLayout::colSpacing(int col) const
-
- Use columnMinimumWidth() instead.
-*/
-
-/*!
- \fn void QGridLayout::setRowSpacing(int row, int minSize)
-
- Use setRowMinimumHeight(\a row, \a minSize) instead.
-*/
-
-/*!
- \fn int QGridLayout::rowSpacing(int row) const
-
- Use rowMinimumHeight(\a row) instead.
-*/
-
-/*!
- \fn QRect QGridLayout::cellGeometry(int row, int column) const
-
- Use cellRect(\a row, \a column) instead.
-*/
-
-/*!
- \fn void QGridLayout::setOrigin(Qt::Corner corner)
-
- Use setOriginCorner(\a corner) instead.
-*/
-
-/*!
- \fn Qt::Corner QGridLayout::origin() const
-
- Use originCorner() instead.
-*/
-
-
QT_END_NAMESPACE