Subversion Repositories svn1

Rev

Rev 387 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 387 Rev 389
Line 556... Line 556...
556
    //qDebug("NoteFile:%s",qPrintable(noteFileName));
556
    //qDebug("NoteFile:%s",qPrintable(noteFileName));
557
 
557
 
558
    //  Clear combobox before we add text
558
    //  Clear combobox before we add text
559
    ui->noteText->clear();
559
    ui->noteText->clear();
560
 
560
 
561
    QFile noteFile(QString(filepath) + noteFileName);
561
    QFile noteFile(FilePath + noteFileName);
562
    if ( noteFile.open( QIODevice::ReadOnly ) )
562
    if ( noteFile.open( QIODevice::ReadOnly ) )
563
    {
563
    {
564
        QTextStream stream( &noteFile );
564
        QTextStream stream( &noteFile );
565
        QString line;
565
        QString line;
566
        do {
566
        do {