summaryrefslogtreecommitdiff
path: root/noncore/apps/advancedfm/advancedfm.cpp
Unidiff
Diffstat (limited to 'noncore/apps/advancedfm/advancedfm.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/advancedfm/advancedfm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp
index 1a5e131..41e83c7 100644
--- a/noncore/apps/advancedfm/advancedfm.cpp
+++ b/noncore/apps/advancedfm/advancedfm.cpp
@@ -338,25 +338,25 @@ void AdvancedFm::currentPathComboChanged()
338 { 338 {
339 CurrentDir()->setPath( currentPathCombo->lineEdit()->text() ); 339 CurrentDir()->setPath( currentPathCombo->lineEdit()->text() );
340 populateView(); 340 populateView();
341 } 341 }
342 else 342 else
343 { 343 {
344 QMessageBox::message(tr("Note"),tr("That directory does not exist")); 344 QMessageBox::message(tr("Note"),tr("That directory does not exist"));
345 } 345 }
346} 346}
347 347
348void AdvancedFm::fillCombo(const QString &currentPath) 348void AdvancedFm::fillCombo(const QString &currentPath)
349{ 349{
350// qDebug("%d",TabWidget->getCurrentTab()); 350// qDebug("%d",TabWidget->currentTab());
351 if ( whichTab == 1) 351 if ( whichTab == 1)
352 { 352 {
353 currentPathCombo->lineEdit()->setText( currentPath); 353 currentPathCombo->lineEdit()->setText( currentPath);
354 if( localDirPathStringList.grep( currentPath,TRUE).isEmpty() ) 354 if( localDirPathStringList.grep( currentPath,TRUE).isEmpty() )
355 { 355 {
356 currentPathCombo->clear(); 356 currentPathCombo->clear();
357 localDirPathStringList.prepend( currentPath ); 357 localDirPathStringList.prepend( currentPath );
358 currentPathCombo->insertStringList( localDirPathStringList,-1); 358 currentPathCombo->insertStringList( localDirPathStringList,-1);
359 } 359 }
360 } 360 }
361 else 361 else
362 { 362 {