Skip to content

Commit

Permalink
Update file(s): 2024-07-04
Browse files Browse the repository at this point in the history
  • Loading branch information
horsicq committed Jul 4, 2024
1 parent 20ffd12 commit d2dd67f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions formatwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 76,7 @@ void FormatWidget::adjustView()
{
QList<QTreeWidget *> listWidgets = this->findChildren<QTreeWidget *>();

qint32 nNumberOfWidgets= listWidgets.count();
qint32 nNumberOfWidgets = listWidgets.count();

for (qint32 i = 0; i < nNumberOfWidgets; i ) {
QTreeWidget *pChild = dynamic_cast<QTreeWidget *>(listWidgets.at(i));
Expand All @@ -89,7 89,7 @@ void FormatWidget::adjustView()
{
QList<QTreeView *> listWidgets = this->findChildren<QTreeView *>();

qint32 nNumberOfWidgets= listWidgets.count();
qint32 nNumberOfWidgets = listWidgets.count();

for (qint32 i = 0; i < nNumberOfWidgets; i ) {
QTreeView *pChild = dynamic_cast<QTreeView *>(listWidgets.at(i));
Expand All @@ -102,7 102,7 @@ void FormatWidget::adjustView()
{
QList<QTableWidget *> listWidgets = this->findChildren<QTableWidget *>();

qint32 nNumberOfWidgets= listWidgets.count();
qint32 nNumberOfWidgets = listWidgets.count();

for (qint32 i = 0; i < nNumberOfWidgets; i ) {
QTableWidget *pChild = dynamic_cast<QTableWidget *>(listWidgets.at(i));
Expand All @@ -115,7 115,7 @@ void FormatWidget::adjustView()
{
QList<QTableView *> listWidgets = this->findChildren<QTableView *>();

qint32 nNumberOfWidgets= listWidgets.count();
qint32 nNumberOfWidgets = listWidgets.count();

for (qint32 i = 0; i < nNumberOfWidgets; i ) {
QTableView *pChild = dynamic_cast<QTableView *>(listWidgets.at(i));
Expand All @@ -128,7 128,7 @@ void FormatWidget::adjustView()
{
QList<QTextEdit *> listWidgets = this->findChildren<QTextEdit *>();

qint32 nNumberOfWidgets= listWidgets.count();
qint32 nNumberOfWidgets = listWidgets.count();

for (qint32 i = 0; i < nNumberOfWidgets; i ) {
QTextEdit *pChild = dynamic_cast<QTextEdit *>(listWidgets.at(i));
Expand All @@ -141,7 141,7 @@ void FormatWidget::adjustView()
{
QList<QPlainTextEdit *> listWidgets = this->findChildren<QPlainTextEdit *>();

qint32 nNumberOfWidgets= listWidgets.count();
qint32 nNumberOfWidgets = listWidgets.count();

for (qint32 i = 0; i < nNumberOfWidgets; i ) {
QPlainTextEdit *pChild = dynamic_cast<QPlainTextEdit *>(listWidgets.at(i));
Expand All @@ -151,7 151,6 @@ void FormatWidget::adjustView()
}
}
}

}

void FormatWidget::setData(QIODevice *pDevice, FW_DEF::OPTIONS options, quint32 nNumber, qint64 nOffset, qint32 nType)
Expand Down

0 comments on commit d2dd67f

Please sign in to comment.