mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-13 10:32:11 +01:00
[Fix:] Windows crash
This commit is contained in:
parent
c8544c7804
commit
4ebab625e4
|
@ -27,9 +27,6 @@ DownloadItem::DownloadItem(QListWidgetItem* item, QNetworkReply* reply, QString
|
||||||
,m_fileName(fileName)
|
,m_fileName(fileName)
|
||||||
,m_downloading(false)
|
,m_downloading(false)
|
||||||
{
|
{
|
||||||
#ifdef Q_WS_WIN
|
|
||||||
ui->progressBar->setStyleSheet("QProgressBar {border: 1px solid;}");
|
|
||||||
#endif
|
|
||||||
QString fullPath = path+fileName;
|
QString fullPath = path+fileName;
|
||||||
if (QFile::exists(fullPath))
|
if (QFile::exists(fullPath))
|
||||||
QFile::remove(fullPath);
|
QFile::remove(fullPath);
|
||||||
|
@ -37,6 +34,9 @@ DownloadItem::DownloadItem(QListWidgetItem* item, QNetworkReply* reply, QString
|
||||||
m_outputFile.setFileName(fullPath);
|
m_outputFile.setFileName(fullPath);
|
||||||
|
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
#ifdef Q_WS_WIN
|
||||||
|
ui->progressBar->setStyleSheet("QProgressBar {border: 1px solid;}");
|
||||||
|
#endif
|
||||||
ui->button->setPixmap(
|
ui->button->setPixmap(
|
||||||
#ifdef Q_WS_X11
|
#ifdef Q_WS_X11
|
||||||
style()->standardIcon(QStyle::SP_BrowserStop).pixmap(20,20)
|
style()->standardIcon(QStyle::SP_BrowserStop).pixmap(20,20)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user