diff --git a/src/gui/about_dialog/about_dialog.ui b/src/gui/about_dialog/about_dialog.ui index abfd1bc5cf0e063d23b5cb91ba07e6dd878285e3..c843d538c998ac16b6efb1344caf468821d29c85 100644 --- a/src/gui/about_dialog/about_dialog.ui +++ b/src/gui/about_dialog/about_dialog.ui @@ -59,7 +59,7 @@ <item> <widget class="QLabel" name="label"> <property name="text"> - <string>X!Tandem Pipeline C++</string> + <string>X!TandemPipeline C++</string> </property> <property name="scaledContents"> <bool>true</bool> @@ -75,7 +75,7 @@ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">X!Tandem Pipeline C++ is developped by PAPPSO team (<a href="http://pappso.inra.fr"><span style=" text-decoration: underline; color:#0000ff;">http://pappso.inra.fr</span></a>).</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">X!TandemPipeline C++ is developped by PAPPSO team (<a href="http://pappso.inra.fr"><span style=" text-decoration: underline; color:#0000ff;">http://pappso.inra.fr</span></a>).</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This software is distributed under the terms of the GNU General Public License.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> diff --git a/src/gui/load_results_dialog/loadresultsdialog.cpp b/src/gui/load_results_dialog/loadresultsdialog.cpp index cbaaa9d683335ecdbcc670b9e1df69eae11a21f7..3a34fc5410a16c34c720718c276d0b99f2104e7b 100644 --- a/src/gui/load_results_dialog/loadresultsdialog.cpp +++ b/src/gui/load_results_dialog/loadresultsdialog.cpp @@ -96,7 +96,7 @@ void LoadResultsDialog::chooseFiles() { QString default_location = settings.value("path/identificationfiles", "").toString(); QStringList filenames = QFileDialog::getOpenFileNames(this,tr("identification files"),default_location, - tr("X!Tandem files (*.xml);;mzIdentML files (*.mzid);;pepxml files (*.pep);;all files (*)") ); + tr("X!Tandem, mzIdentML or pepxml files (*.xml *.mzid *.pep);;all files (*)") ); if (filenames.size() > 0) { settings.setValue("path/identificationfiles", QFileInfo(filenames[0]).absolutePath());