diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-04-07 00:30:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-04-07 00:30:12 +0300 |
commit | dbe1294f640a7ab1328381a43f711043210842f5 (patch) | |
tree | 13ccd9e9ecc0ca66f442de2932b1deaefb84881a /src/gui/widgets/browserbox.cpp | |
parent | aa413701e451e0adc7b9887d1f45d06d19d684f1 (diff) | |
download | plus-dbe1294f640a7ab1328381a43f711043210842f5.tar.gz plus-dbe1294f640a7ab1328381a43f711043210842f5.tar.bz2 plus-dbe1294f640a7ab1328381a43f711043210842f5.tar.xz plus-dbe1294f640a7ab1328381a43f711043210842f5.zip |
Add client version as special constant to help window.
Diffstat (limited to 'src/gui/widgets/browserbox.cpp')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 20d1803f8..a925c0712 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -51,7 +51,8 @@ BrowserBox::BrowserBox(unsigned int mode, bool opaque): mWidth(0), mYStart(0), mUpdateTime(-1), - mAlwaysUpdate(true) + mAlwaysUpdate(true), + mProcessVersion(false) { setFocusable(true); addMouseListener(this); @@ -136,6 +137,9 @@ void BrowserBox::addRow(const std::string &row, bool atTop) newRow = row; } + if (mProcessVersion) + newRow = replaceAll(newRow, "%VER%", SMALL_VERSION); + if (atTop) mTextRows.push_front(newRow); else |