comparison libgui/qterminal/libqterminal/unix/TerminalView.cpp @ 19630:0e1f5a750d00

maint: Periodic merge of gui-release to default.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Jan 2015 10:24:46 -0500
parents dcb260e7a648 be7ac98fab43
children bd1369a2a651
comparison
equal deleted inserted replaced
19626:37d37297acf8 19630:0e1f5a750d00
2629 2629
2630 if (event->mimeData ()->hasUrls ()) 2630 if (event->mimeData ()->hasUrls ())
2631 { 2631 {
2632 foreach (QUrl url, event->mimeData ()->urls ()) 2632 foreach (QUrl url, event->mimeData ()->urls ())
2633 { 2633 {
2634 if(dropText.length () > 0) 2634 if(dropText.length () > 0)
2635 dropText += "\n"; 2635 dropText += "\n";
2636 dropText += url.toLocalFile (); 2636 dropText += url.toLocalFile ();
2637 } 2637 }
2638 } 2638 }
2639 2639