# HG changeset patch # User Chris Cannam # Date 1294314536 0 # Node ID cb8ccbff8f8428a27952f954a4cde3293496408f # Parent 31bde6405ebd4b543778da7ad79f4fdf5f4fdb67 * Sensible (i.e. smaller) font size for About box on OS/X diff -r 31bde6405ebd -r cb8ccbff8f84 mainwindow.cpp --- a/mainwindow.cpp Thu Jan 06 11:09:47 2011 +0000 +++ b/mainwindow.cpp Thu Jan 06 11:48:56 2011 +0000 @@ -155,6 +155,9 @@ { QMessageBox::about(this, tr("About EasyMercurial"), tr("

About EasyMercurial

" +#ifdef Q_OS_MAC + "" +#endif "

EasyMercurial is a simple user interface for the " "Mercurial version control system.

" "

Credits and Copyright

" @@ -181,7 +184,11 @@ "modify it under the terms of the GNU General Public License as " "published by the Free Software Foundation; either version 2 of the " "License, or (at your option) any later version. See the file " - "COPYING included with this distribution for more information.

")); + "COPYING included with this distribution for more information.

" +#ifdef Q_OS_MAC + "
" +#endif + )); } void MainWindow::clearSelections()