author | mickeyl <mickeyl> | 2004-04-23 12:20:13 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-23 12:20:13 (UTC) |
commit | 33666eb31ae6d35aa527cf7bf22c2c2e0dcd6824 (patch) (unidiff) | |
tree | c05204f0ed7f02a522ded2aaf9121e1976612f15 | |
parent | 85bfee8e542805ff7df67d9786bb291f7d2b34f3 (diff) | |
download | opie-33666eb31ae6d35aa527cf7bf22c2c2e0dcd6824.zip opie-33666eb31ae6d35aa527cf7bf22c2c2e0dcd6824.tar.gz opie-33666eb31ae6d35aa527cf7bf22c2c2e0dcd6824.tar.bz2 |
gcc3.4 fixlet
-rw-r--r-- | noncore/settings/appearance2/appearance.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/noncore/settings/appearance2/appearance.cpp b/noncore/settings/appearance2/appearance.cpp index 6b9fe4d..f918767 100644 --- a/noncore/settings/appearance2/appearance.cpp +++ b/noncore/settings/appearance2/appearance.cpp | |||
@@ -679,5 +679,5 @@ void Appearance::editSchemeClicked ( ) | |||
679 | 679 | ||
680 | for ( QColorGroup::ColorRole role = (QColorGroup::ColorRole) 0; role != QColorGroup::NColorRoles; ((int) role )++ ) | 680 | for ( int role = 0; role < (int) QColorGroup::NColorRoles; ++role ) |
681 | { | 681 | { |
682 | QColor col = item-> color ( role ); | 682 | QColor col = item->color( static_cast<QColorGroup::ColorRole>( role ) ); |
683 | 683 | ||
@@ -685,4 +685,4 @@ void Appearance::editSchemeClicked ( ) | |||
685 | { | 685 | { |
686 | labels [cnt] = item-> label ( role ); | 686 | labels[cnt] = item->label( static_cast<QColorGroup::ColorRole>( role ) ); |
687 | colors [cnt] = col; | 687 | colors[cnt] = col; |
688 | 688 | ||
@@ -698,7 +698,7 @@ void Appearance::editSchemeClicked ( ) | |||
698 | 698 | ||
699 | for ( QColorGroup::ColorRole role = (QColorGroup::ColorRole) 0; role != QColorGroup::NColorRoles; ((int) role )++ ) | 699 | for ( int role = 0; role < (int) QColorGroup::NColorRoles; ++role ) |
700 | { | 700 | { |
701 | if ( item-> color ( role ). isValid ( )) | 701 | if ( item->color( static_cast<QColorGroup::ColorRole>( role ) ).isValid() ) |
702 | { | 702 | { |
703 | citem-> setColor ( role, colors [cnt] ); | 703 | citem->setColor( static_cast<QColorGroup::ColorRole>( role ), colors[cnt] ); |
704 | cnt++; | 704 | cnt++; |