diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:08:08 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:43:08 +0100 |
commit | fda57050d3c82d191d09edfd3cea4dea572edd5e (patch) | |
tree | fc67d339c703ebca9bf6663763ccd961829b1b45 /quanta/components/tableeditor/tableeditor.cpp | |
parent | a7e4d6e8223e423cba980c32ee6981de7e502a44 (diff) | |
download | tdewebdev-fda57050d3c82d191d09edfd3cea4dea572edd5e.tar.gz tdewebdev-fda57050d3c82d191d09edfd3cea4dea572edd5e.zip |
Fix incorrectly renamed strings
(cherry picked from commit 69975e8e2ce57a37a587a1e4c76bac82895b0117)
Diffstat (limited to 'quanta/components/tableeditor/tableeditor.cpp')
-rw-r--r-- | quanta/components/tableeditor/tableeditor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/components/tableeditor/tableeditor.cpp b/quanta/components/tableeditor/tableeditor.cpp index f5f6ec31..258f7783 100644 --- a/quanta/components/tableeditor/tableeditor.cpp +++ b/quanta/components/tableeditor/tableeditor.cpp @@ -424,7 +424,7 @@ bool TableEditor::setTableArea( int bLine, int bCol, int eLine, int eCol, Parser if ((uint)nCol >= mergeMatrix[0].size()) // Check if there are enough cols for (uint i=0; i<mergeMatrix.size(); i++) mergeMatrix[i].resize(2 * mergeMatrix[i].size()); - + } else { tableNode.node = new Node(0L); @@ -1271,7 +1271,7 @@ void TableEditor::configureCell(int row, int col, Node * node) return; // Header (TH) or standard cell? item->setHeader(node->tag->name.lower() == "th"); - //Qt::Horizontal alignment + // Horizontal alignment TQt::AlignmentFlags flags; TQString align = node->tag->attributeValue("align", true); if (align == "right") @@ -1285,7 +1285,7 @@ void TableEditor::configureCell(int row, int col, Node * node) else flags = TQt::AlignLeft; item->setAlignment(flags); - //Qt::Vertical alignment + // Vertical alignment TQString valign = node->tag->attributeValue("valign", true); if (valign == "top") flags = TQt::AlignTop; |