Q3ValueVector -> QVector
svn path=/trunk/KDE/kdebase/workspace/; revision=463843
This commit is contained in:
parent
3a34ab6a10
commit
1f4228252c
2 changed files with 4 additions and 4 deletions
|
@ -54,7 +54,7 @@ KCMRulesList::KCMRulesList( QWidget* parent, const char* name )
|
|||
|
||||
KCMRulesList::~KCMRulesList()
|
||||
{
|
||||
for( Q3ValueVector< Rules* >::Iterator it = rules.begin();
|
||||
for( QVector< Rules* >::Iterator it = rules.begin();
|
||||
it != rules.end();
|
||||
++it )
|
||||
delete *it;
|
||||
|
@ -145,7 +145,7 @@ void KCMRulesList::movedownClicked()
|
|||
void KCMRulesList::load()
|
||||
{
|
||||
rules_listbox->clear();
|
||||
for( Q3ValueVector< Rules* >::Iterator it = rules.begin();
|
||||
for( QVector< Rules* >::Iterator it = rules.begin();
|
||||
it != rules.end();
|
||||
++it )
|
||||
delete *it;
|
||||
|
@ -175,7 +175,7 @@ void KCMRulesList::save()
|
|||
cfg.setGroup( "General" );
|
||||
cfg.writeEntry( "count", rules.count());
|
||||
int i = 1;
|
||||
for( Q3ValueVector< Rules* >::ConstIterator it = rules.begin();
|
||||
for( QVector< Rules* >::ConstIterator it = rules.begin();
|
||||
it != rules.end();
|
||||
++it )
|
||||
{
|
||||
|
|
|
@ -51,7 +51,7 @@ class KCMRulesList
|
|||
void movedownClicked();
|
||||
void activeChanged( Q3ListBoxItem* );
|
||||
private:
|
||||
Q3ValueVector< Rules* > rules;
|
||||
QVector< Rules* > rules;
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
|
Loading…
Reference in a new issue