X-Git-Url: http://git.maemo.org/git/?p=colorflood;a=blobdiff_plain;f=colorflood%2Fsrc%2Fcolorscheme.cpp;h=62f0eeab8afe1d5ba05563f7dc035189ff63a7e6;hp=c7cd4bed449eaf5d088383863786d36d925d623b;hb=79829f32441be520b96f26c5a689ab3f83e68890;hpb=db8d1f914e28f871adee8a7efbe16c7a6861c6a6 diff --git a/colorflood/src/colorscheme.cpp b/colorflood/src/colorscheme.cpp index c7cd4be..62f0eea 100644 --- a/colorflood/src/colorscheme.cpp +++ b/colorflood/src/colorscheme.cpp @@ -29,6 +29,7 @@ ColorScheme::ColorScheme () s << QColor(0xff, 0xff, 0x00); // yellow s << QColor(0xff, 0x00, 0xff); // magenta s << QColor(0x80, 0x00, 0x80); // purple + /*: default color scheme name */ schemes << QPair >(QObject::tr("Default"), s); s.clear(); @@ -38,6 +39,7 @@ ColorScheme::ColorScheme () s << QBrush(QColor(0x99, 0x99, 0x99), Qt::SolidPattern); s << QBrush(QColor(0xcc, 0xcc, 0xcc), Qt::CrossPattern); s << QBrush(QColor(0xff, 0xff, 0xff), Qt::SolidPattern); + /*: black-and-white color scheme name */ schemes << QPair >(QObject::tr("Black-and-white"), s); QSettings settings;