Browse Source

Code clean up

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
f9f3642116
  1. 6
      src/mainwindow.cpp
  2. 6
      src/mainwindow.ui

6
src/mainwindow.cpp

@ -84,7 +84,6 @@ void qt_mac_set_dock_menu(QMenu *menu); @@ -84,7 +84,6 @@ void qt_mac_set_dock_menu(QMenu *menu);
using namespace libtorrent;
#define TIME_TRAY_BALLOON 5000
#define TOOLBAR_SPACING 0
/*****************************************************
* *
@ -137,8 +136,6 @@ MainWindow::MainWindow(QWidget *parent, QStringList torrentCmdLine) : QMainWindo @@ -137,8 +136,6 @@ MainWindow::MainWindow(QWidget *parent, QStringList torrentCmdLine) : QMainWindo
QAction *defineUiLockPasswdAct = lockMenu->addAction(tr("Set the password..."));
connect(defineUiLockPasswdAct, SIGNAL(triggered()), this, SLOT(defineUILockPassword()));
actionLock_qBittorrent->setMenu(lockMenu);
// Fix Tool bar layout
toolBar->layout()->setSpacing(TOOLBAR_SPACING);
// Creating Bittorrent session
connect(QBtSession::instance(), SIGNAL(fullDiskError(QTorrentHandle, QString)), this, SLOT(fullDiskError(QTorrentHandle, QString)));
connect(QBtSession::instance(), SIGNAL(finishedTorrent(QTorrentHandle)), this, SLOT(finishedTorrent(QTorrentHandle)));
@ -971,7 +968,6 @@ void MainWindow::loadPreferences(bool configure_session) { @@ -971,7 +968,6 @@ void MainWindow::loadPreferences(bool configure_session) {
// General
if(pref.isToolbarDisplayed()) {
toolBar->setVisible(true);
toolBar->layout()->setSpacing(TOOLBAR_SPACING);
} else {
// Clear search filter before hiding the top toolbar
search_filter->clear();
@ -991,7 +987,6 @@ void MainWindow::loadPreferences(bool configure_session) { @@ -991,7 +987,6 @@ void MainWindow::loadPreferences(bool configure_session) {
actionIncreasePriority->setVisible(true);
prioSeparator->setVisible(true);
prioSeparatorMenu->setVisible(true);
toolBar->layout()->setSpacing(TOOLBAR_SPACING);
}
} else {
if(actionDecreasePriority->isVisible()) {
@ -1000,7 +995,6 @@ void MainWindow::loadPreferences(bool configure_session) { @@ -1000,7 +995,6 @@ void MainWindow::loadPreferences(bool configure_session) {
actionIncreasePriority->setVisible(false);
prioSeparator->setVisible(false);
prioSeparatorMenu->setVisible(false);
toolBar->layout()->setSpacing(TOOLBAR_SPACING);
}
}

6
src/mainwindow.ui

@ -103,12 +103,6 @@ @@ -103,12 +103,6 @@
<addaction name="menu_Help"/>
</widget>
<widget class="QToolBar" name="toolBar">
<property name="enabled">
<bool>true</bool>
</property>
<property name="contextMenuPolicy">
<enum>Qt::NoContextMenu</enum>
</property>
<property name="movable">
<bool>false</bool>
</property>

Loading…
Cancel
Save