-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 @@ -15,7 +15,6 @@ #include <kfiledialog.h> #include <kdialog.h> -#include <qpe/config.h> #include <qpe/qpeapplication.h> /* QT */ @@ -26,6 +25,7 @@ #include <qpopupmenu.h> #include <qfile.h> #include <qlayout.h> +#include "koprefs.h" //using namespace Opie::Ui; //using namespace Opie::Core; @@ -326,9 +326,9 @@ 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 ); } @@ -362,7 +362,7 @@ void ViewMail::setText() "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" + 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 ) { |