MCPcopy Create free account
hub / github.com/KDE/labplot / setLayoutRowCount

Method setLayoutRowCount

src/backend/worksheet/Worksheet.cpp:778–785  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

776
777STD_SETTER_CMD_IMPL_M_F_S(Worksheet, SetLayoutRowCount, int, layoutRowCount, updateLayout)
778void 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
787STD_SETTER_CMD_IMPL_M_F_S(Worksheet, SetLayoutColumnCount, int, layoutColumnCount, updateLayout)
788void Worksheet::setLayoutColumnCount(int count) {

Callers 1

layoutRowCountChangedMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected