ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/util.cpp
(Generate patch)

Comparing Vago/trunk/Vago/util.cpp (file contents):
Revision 897 by s10k, Wed Jan 8 11:32:55 2014 UTC vs.
Revision 998 by s10k, Fri Apr 25 21:05:54 2014 UTC

# Line 67 | Line 67 | void showRichErrorPopUp(QString message)
67      msgBox.exec();
68   }
69  
70 < bool showQuestionPopUp(QWidget * parent, QString message){
71 <    return QMessageBox::question (parent, "Are you sure?", message, QMessageBox::Yes, QMessageBox::No)==QMessageBox::Yes;
70 > bool showQuestionPopUp(QWidget * parent, QString message, QMessageBox::StandardButton standardButton){
71 >    return QMessageBox::question (parent, "Are you sure?", message, QMessageBox::Yes | QMessageBox::No, standardButton)==QMessageBox::Yes;
72   }
73  
74   QStringList multipleDirDialog(QString title){
# Line 161 | Line 161 | bool cpDir(const QString &srcPath, const
161                  return false;
162              }
163          } else {
164 <            qDebug("Unhandled item" + info.filePath().toAscii() + "in cpDir");
164 >            qDebug("Unhandled item" + info.filePath().toUtf8() + "in cpDir");
165          }
166      }
167      return true;

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)