-rw-r--r-- | kmicromail/viewmail.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmicromail/viewmail.cpp b/kmicromail/viewmail.cpp index 67b77f8..6e560d7 100644 --- a/kmicromail/viewmail.cpp +++ b/kmicromail/viewmail.cpp @@ -16,5 +16,4 @@ #include <kdialog.h> -#include <qpe/config.h> #include <qpe/qpeapplication.h> @@ -27,4 +26,5 @@ #include <qfile.h> #include <qlayout.h> +#include "koprefs.h" //using namespace Opie::Ui; @@ -327,7 +327,7 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl) void ViewMail::readConfig() { - Config cfg( "mail" ); - cfg.setGroup( "Settings" ); - m_showHtml = cfg.readBoolEntry( "showHtml", false ); + + setFont ( KOPrefs::instance()->mReadFont ); + m_showHtml = KOPrefs::instance()->mViewAsHtml; showHtml->setOn( m_showHtml ); } @@ -363,5 +363,5 @@ void ViewMail::setText() tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>" "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] + - "</td></tr></table><font face=fixed>"; + "</td></tr></table><font>"; if ( !m_showHtml ) |