1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

Create helper function to get boost version

This commit is contained in:
Chocobo1 2016-02-27 08:27:56 +08:00
parent 498f5e3877
commit 12627bbc10
4 changed files with 18 additions and 12 deletions

View File

@ -32,7 +32,6 @@
#include <QString>
#include <QDialog>
#include "boost/version.hpp"
#include "libtorrent/version.hpp"
#include "base/utils/misc.h"
#include "ui_stacktrace_win_dlg.h"
@ -51,9 +50,6 @@ public:
void setStacktraceString(const QString& trace)
{
// try to call Qt function as less as possible
const int boostVerMajor = BOOST_VERSION / 100000;
const int boostVerMinor = ((BOOST_VERSION / 100) % 1000);
const int boostVerSubMin = BOOST_VERSION % 100;
QString htmlStr = QString(
"<p align=center><b><font size=7 color=red>"
"qBittorrent has crashed"
@ -68,14 +64,12 @@ public:
"qBittorrent version: " VERSION "<br/>"
"Libtorrent version: " LIBTORRENT_VERSION "<br/>"
"Qt version: " QT_VERSION_STR "<br/>"
"Boost version: %1.%2.%3<br/>"
"OS version: %4"
"Boost version: %1<br/>"
"OS version: %2"
"</font></p><br/>"
"<pre><code>%5</code></pre>"
"<pre><code>%3</code></pre>"
"<br/><hr><br/><br/>")
.arg(boostVerMajor)
.arg(boostVerMinor)
.arg(boostVerSubMin)
.arg(Utils::Misc::boostVersionString())
.arg(Utils::Misc::osName())
.arg(trace);

View File

@ -38,6 +38,7 @@
#include <QSettings>
#include <QThread>
#include <QSysInfo>
#include <boost/version.hpp>
#ifdef DISABLE_GUI
#include <QCoreApplication>
@ -650,3 +651,13 @@ QString Utils::Misc::osName()
#endif
return name;
}
QString Utils::Misc::boostVersionString()
{
// static initialization for usage in signal handler
static const QString ver = QString("%1.%2.%3")
.arg(BOOST_VERSION / 100000)
.arg((BOOST_VERSION / 100) % 1000)
.arg(BOOST_VERSION % 100);
return ver;
}

View File

@ -57,6 +57,7 @@ namespace Utils
QSize smallIconSize();
#endif
QString osName();
QString boostVersionString();
int pythonVersion();
QString pythonExecutable();

View File

@ -34,7 +34,7 @@
#include "ui_about.h"
#include <QFile>
#include <libtorrent/version.hpp>
#include <boost/version.hpp>
#include "base/utils/misc.h"
#include "base/unicodestrings.h"
class about: public QDialog, private Ui::AboutDlg
@ -92,7 +92,7 @@ public:
// Libraries
label_11->setText(QT_VERSION_STR);
label_12->setText(LIBTORRENT_VERSION);
label_13->setText(QString::number(BOOST_VERSION / 100000) + "." + QString::number((BOOST_VERSION / 100) % 1000) + "." + QString::number(BOOST_VERSION % 100));
label_13->setText(Utils::Misc::boostVersionString());
show();
}