| 776 | |
| 777 | STD_SETTER_CMD_IMPL_M_F_S(Worksheet, SetLayoutRowCount, int, layoutRowCount, updateLayout) |
| 778 | void Worksheet::setLayoutRowCount(int count) { |
| 779 | Q_D(Worksheet); |
| 780 | if (count != d->layoutRowCount) { |
| 781 | beginMacro(i18n("%1: set layout row count", name())); |
| 782 | exec(new WorksheetSetLayoutRowCountCmd(d, count, ki18n("%1: set layout row count"))); |
| 783 | endMacro(); |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | STD_SETTER_CMD_IMPL_M_F_S(Worksheet, SetLayoutColumnCount, int, layoutColumnCount, updateLayout) |
| 788 | void Worksheet::setLayoutColumnCount(int count) { |
no outgoing calls
no test coverage detected