diff options
author | Michele Calgaro <[email protected]> | 2023-11-04 23:32:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-04 23:32:44 +0900 |
commit | 1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6 (patch) | |
tree | 7cd9102a8ca3bcb3ffaa566d7302ad15e580d757 /src/gui/editors/matrix/QCanvasMatrixDiamond.cpp | |
parent | 3d3dc041a570cd26154510785f50ffcd8cf56005 (diff) | |
download | rosegarden-1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6.tar.gz rosegarden-1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/gui/editors/matrix/QCanvasMatrixDiamond.cpp')
-rw-r--r-- | src/gui/editors/matrix/QCanvasMatrixDiamond.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/editors/matrix/QCanvasMatrixDiamond.cpp b/src/gui/editors/matrix/QCanvasMatrixDiamond.cpp index d20d3b4..b434cf0 100644 --- a/src/gui/editors/matrix/QCanvasMatrixDiamond.cpp +++ b/src/gui/editors/matrix/QCanvasMatrixDiamond.cpp @@ -50,7 +50,7 @@ TQPointArray QCanvasMatrixDiamond::areaPoints() const int pw = (pen().width() + 1) / 2; if ( pw < 1 ) pw = 1; - if ( pen() == Qt::NoPen ) + if ( pen() == TQt::NoPen ) pw = 0; pa[0] = TQPoint((int)x() - height() / 2 - pw, (int)y() - pw); pa[1] = pa[0] + TQPoint(height() + pw * 2, 0); |