-rw-r--r-- | libopie/ofileselector.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/ofileselector.cc b/libopie/ofileselector.cc index 968541a..ea19143 100644 --- a/libopie/ofileselector.cc +++ b/libopie/ofileselector.cc | |||
@@ -328,9 +328,9 @@ QString OFileSelector::selectedName( )const | |||
328 | string = lnk->file(); | 328 | string = lnk->file(); |
329 | }else if(m_selector == EXTENDED || m_selector == EXTENDED_ALL ) { | 329 | }else if(m_selector == EXTENDED || m_selector == EXTENDED_ALL ) { |
330 | QListViewItem *item = m_View->currentItem(); | 330 | QListViewItem *item = m_View->currentItem(); |
331 | if(item != 0 ){ | 331 | if(item != 0 ){ |
332 | string = item->text( 1 ); | 332 | string = m_currentDir + "/" + item->text( 1 ); |
333 | } | 333 | } |
334 | } | 334 | } |
335 | return string; | 335 | return string; |
336 | } | 336 | } |