summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/today/plugins/addressbook/addresspluginconfig.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginconfig.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
index 8c55937..81bb8fd 100644
--- a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
@@ -83,31 +83,31 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char*
// colorLabel->setText( tr( "To activate settings: Restart application !" ) );
QHBox *box5 = new QHBox( this );
QLabel* colorLabel2 = new QLabel( box5, "" );
colorLabel2->setText( tr( "Set Headline Color: " ) );
- headlineColor = new OColorButton( box5, black , "headlineColor" );
+ headlineColor = new Opie::OColorButton( box5, black , "headlineColor" );
QWhatsThis::add( headlineColor , tr( "Colors for the headlines !" ) );
QHBox *box6 = new QHBox( this );
// Entry color settings
QLabel* colorLabel3= new QLabel( box6, "" );
colorLabel3->setText( tr( "Set Entry Color: " ) );
- entryColor = new OColorButton( box6, black , "entryColor" );
+ entryColor = new Opie::OColorButton( box6, black , "entryColor" );
QWhatsThis::add( entryColor , tr( "This color will be used for shown birthdays/anniversaries !" ) );
// Urgent color settings
QHBox *box7 = new QHBox( this );
QLabel* colorLabel5 = new QLabel( box7, "" );
colorLabel5->setText( tr( "Set Urgent\nColor if below " ) );
SpinUrgentClip = new QSpinBox( box7, "SpinDays" );
SpinUrgentClip->setMaxValue( 200 );
QLabel* colorLabel6 = new QLabel( box7, "" );
colorLabel6->setText( tr( " days: " ) );
- urgentColor = new OColorButton( box7, red , "urgentColor" );
+ urgentColor = new Opie::OColorButton( box7, red , "urgentColor" );
QWhatsThis::add( urgentColor , tr( "This urgent color will be used if we are close to the event !" ) );
QWhatsThis::add( SpinUrgentClip , tr( "The urgent color will be used if the birthday/anniversary is closer than given days !" ) );
//layout->addWidget( box4 );
layout->addWidget( box1 );
@@ -139,13 +139,13 @@ void AddressBookPluginConfig::readConfig() {
headlineColor->setColor( QColor( m_headlineColor ) );
m_urgentColor = cfg.readEntry( "urgentcolor", Qt::red.name() );
urgentColor->setColor( QColor( m_urgentColor ) );
m_showBirthdayButton->setChecked( cfg.readBoolEntry( "showBirthdays", true ) );
m_showAnniversaryButton->setChecked( cfg.readBoolEntry( "showAnniversaries", true ) );
-
+
}
void AddressBookPluginConfig::writeConfig() {
Config cfg( "todayaddressplugin" );
cfg.setGroup( "config" );
@@ -154,13 +154,13 @@ void AddressBookPluginConfig::writeConfig() {
// m_maxCharClip = SpinBoxClip->value();
// cfg.writeEntry( "maxcharclip", m_maxCharClip );
m_daysLookAhead = SpinDaysClip->value();
cfg.writeEntry( "dayslookahead", m_daysLookAhead );
m_urgentDays = SpinUrgentClip->value();
if ( m_urgentDays > m_daysLookAhead )
- m_urgentDays = m_daysLookAhead;
+ m_urgentDays = m_daysLookAhead;
cfg.writeEntry( "urgentdays", m_urgentDays );
m_entryColor = entryColor->color().name();
cfg.writeEntry( "entrycolor", m_entryColor );
m_headlineColor = headlineColor->color().name();
cfg.writeEntry( "headlinecolor", m_headlineColor );