# HG changeset patch # User Chris Cannam # Date 1201542224 0 # Node ID 722bc705775a86ad54f07a90429cdd8f9dc4b5ec # Parent 4bb19132da237ce5aa3da09ca6cc0fd51e436ff4 * Ensure plugin version is updated when a transform is re-run using a newer plugin -- so that the plugin version saved in the session corresponds with the one that was actually used, not the one previously specified * Fix uninitialised font size in preferences -- was causing all sorts of grief diff -r 4bb19132da23 -r 722bc705775a base/Preferences.cpp --- a/base/Preferences.cpp Fri Jan 25 18:15:57 2008 +0000 +++ b/base/Preferences.cpp Mon Jan 28 17:43:44 2008 +0000 @@ -62,7 +62,8 @@ m_backgroundMode = BackgroundMode (settings.value("background-mode", int(BackgroundFromTheme)).toInt()); m_viewFontSize = settings.value - ("view-font-size", QApplication::font().pointSize() * 0.9).toInt(); + ("view-font-size", int(QApplication::font().pointSize() * 0.9)) + .toInt(); settings.endGroup(); settings.beginGroup("TempDirectory");