Minor update
This commit is contained in:
parent
c0e9a324f5
commit
9a51678d09
|
@ -1420,7 +1420,7 @@ void MainWindow::updateStatusbarForLineCol(const Editor* e, bool clear)
|
||||||
int col = e->charToColumn(e->caretY(),e->caretX());
|
int col = e->charToColumn(e->caretY(),e->caretX());
|
||||||
QString msg;
|
QString msg;
|
||||||
if (e->selAvail()) {
|
if (e->selAvail()) {
|
||||||
msg = tr("Line: %1 Col: %2 (%3 chars) Lines: %4")
|
msg = tr("Line: %1 Col: %2 Sel:%3 Lines: %4")
|
||||||
.arg(e->caretY())
|
.arg(e->caretY())
|
||||||
.arg(col)
|
.arg(col)
|
||||||
.arg(e->selText().length())
|
.arg(e->selText().length())
|
||||||
|
|
|
@ -36,6 +36,7 @@ public:
|
||||||
const StatementMap& childrenStatements(const PStatement& statement = PStatement()) const;
|
const StatementMap& childrenStatements(const PStatement& statement = PStatement()) const;
|
||||||
const StatementMap& childrenStatements(std::weak_ptr<Statement> statement) const;
|
const StatementMap& childrenStatements(std::weak_ptr<Statement> statement) const;
|
||||||
void clear();
|
void clear();
|
||||||
|
int count() const { return mCount; }
|
||||||
#ifdef QT_DEBUG
|
#ifdef QT_DEBUG
|
||||||
void dump(const QString& logFile);
|
void dump(const QString& logFile);
|
||||||
void dumpAll(const QString& logFile);
|
void dumpAll(const QString& logFile);
|
||||||
|
|
|
@ -5388,7 +5388,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Line: %1 Col: %2 (%3 chars) Lines: %4</source>
|
<source>Line: %1 Col: %2 Sel:%3 Lines: %4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -5109,7 +5109,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Line: %1 Col: %2 (%3 chars) Lines: %4</source>
|
<source>Line: %1 Col: %2 Sel:%3 Lines: %4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
|
Loading…
Reference in New Issue