1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 16:29:43 +01:00

* Remove obsolete filepath picker method.

This commit is contained in:
Christian Muehlhaeuser 2011-09-11 08:46:36 +02:00
parent e4918e777e
commit 8f61715b6d
2 changed files with 0 additions and 19 deletions

View File

@ -161,7 +161,6 @@ SettingsDialog::SettingsDialog( QWidget *parent )
foreach ( const QString& dir, TomahawkSettings::instance()->scannerPaths() )
{
tDebug() << "FOO:" << dir;
ui->dirTree->checkPath( dir, Qt::Checked );
}
@ -341,22 +340,6 @@ SettingsDialog::changePage( QListWidgetItem* current, QListWidgetItem* previous
}
void
SettingsDialog::showPathSelector()
{
QString path = QFileDialog::getExistingDirectory(
this,
tr( "Select Music Folder" ),
QDesktopServices::storageLocation( QDesktopServices::MusicLocation )
);
if ( path.isEmpty() )
return;
// ui->lineEditMusicPath_2->setText( path );
}
void
SettingsDialog::onRejected()
{

View File

@ -73,8 +73,6 @@ protected:
private slots:
void onRejected();
void showPathSelector();
void toggleUpnp( bool preferStaticEnabled );
void showProxySettings();