mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Last edits for before releasing 0.9.8 version
This commit is contained in:
parent
989fb92d4a
commit
a29bfcf847
5
README
5
README
|
@ -3,7 +3,8 @@
|
|||
#################################
|
||||
Version: 0.9.8
|
||||
|
||||
QupZilla is new and very fast browser based on WebKit core http://www.webkit.org
|
||||
QupZilla is new and very fast open source browser based on WebKit core http://www.webkit.org
|
||||
Written in Qt Framework http://qt.nokia.com
|
||||
|
||||
More informations at http://www.qupzilla.ic.cz (Czech only)
|
||||
English wiki at https://github.com/nowrep/QupZilla/wiki
|
||||
More informations and download at http://www.qupzilla.ic.cz (Czech only)
|
||||
|
|
2
src/3rdparty/qtlocalpeer.cpp
vendored
2
src/3rdparty/qtlocalpeer.cpp
vendored
|
@ -191,7 +191,7 @@ void QtLocalPeer::receiveConnection()
|
|||
uMsgBuf += got;
|
||||
} while (remaining && got >= 0 && socket->waitForReadyRead(2000));
|
||||
if (got < 0) {
|
||||
qWarning() << "QtLocalPeer: Message reception failed" << socket->errorString();
|
||||
qWarning(QString("QtLocalPeer: Message reception failed "+socket->errorString()).toLocal8Bit());
|
||||
delete socket;
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -17,7 +17,9 @@ MOC_DIR = ../build
|
|||
RCC_DIR = ../build
|
||||
UI_DIR = ../build
|
||||
|
||||
!CONFIG(debug, debug|release): DEFINES += QT_NO_DEBUG_OUTPUT
|
||||
##It won't compile on windows with this define
|
||||
##Some bug in qtsingleapp / qvector template
|
||||
!win32: !CONFIG(debug, debug|release): DEFINES += QT_NO_DEBUG_OUTPUT
|
||||
|
||||
INCLUDEPATH += 3rdparty\
|
||||
app\
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#define QUPZILLA_H
|
||||
|
||||
//Comment for release building
|
||||
#define DEVELOPING
|
||||
//#define DEVELOPING
|
||||
//Check if i don't fuck anything
|
||||
|
||||
#ifdef QT_NO_DEBUG
|
||||
|
|
|
@ -67,9 +67,6 @@
|
|||
</property>
|
||||
<item>
|
||||
<widget class="QProgressBar" name="progressBar">
|
||||
<property name="styleSheet">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>0</number>
|
||||
</property>
|
||||
|
@ -97,16 +94,16 @@
|
|||
</layout>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>SqueezeLabel</class>
|
||||
<extends>QLabel</extends>
|
||||
<header>squeezelabel.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>ClickableLabel</class>
|
||||
<extends>QLabel</extends>
|
||||
<header>clickablelabel.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>SqueezeLabel</class>
|
||||
<extends>QLabel</extends>
|
||||
<header>squeezelabel.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources/>
|
||||
<connections/>
|
||||
|
|
|
@ -50,7 +50,7 @@ void ClearPrivateData::dialogAccepted()
|
|||
if (ui->history->isChecked()) {
|
||||
QDateTime dateTime = QDateTime::currentDateTime();
|
||||
qint64 nowMS = QDateTime::currentMSecsSinceEpoch();
|
||||
qint64 date;
|
||||
qint64 date = 0;
|
||||
|
||||
switch (ui->historyLength->currentIndex()) {
|
||||
case 0: //Later Today
|
||||
|
|
Loading…
Reference in New Issue
Block a user