Mixxx

/home/maxime/Projets/Mixxx/1.10/mixxx/src/widget/wskincolor.cpp

Go to the documentation of this file.
00001 #include "wskincolor.h"
00002 
00003 QSharedPointer<ImgSource> WSkinColor::loader = QSharedPointer<ImgSource>();
00004 
00005 void WSkinColor::setLoader(QSharedPointer<ImgSource> ld) {
00006     loader = ld;
00007 }
00008 
00009 QColor WSkinColor::getCorrectColor(QColor c) {
00010     if (loader) {
00011         return loader->getCorrectColor(c);
00012     } else {
00013         return c;
00014     }
00015 }
00016 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines