X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fwidgets%2Fpatternbox.h;h=6464906f1d576d646160031e63c932e34256833c;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=dcc9b770966af0cc5a7c2f0e886531c74f21e762;hpb=48105dec9198cf5a81dd9286010d0d45e28f70c3;p=architektonas diff --git a/src/widgets/patternbox.h b/src/widgets/patternbox.h index dcc9b77..6464906 100644 --- a/src/widgets/patternbox.h +++ b/src/widgets/patternbox.h @@ -3,7 +3,7 @@ #include -class RS_Pattern; +class Pattern; /** * A combobox for choosing a pattern name. @@ -17,17 +17,17 @@ class PatternBox: public QComboBox virtual ~PatternBox(); void init(); - RS_Pattern * getPattern(); + Pattern * getPattern(); void setPattern(const QString & pName); private slots: void slotPatternChanged(int index); signals: - void patternChanged(RS_Pattern * pattern); + void patternChanged(Pattern * pattern); private: - RS_Pattern * currentPattern; + Pattern * currentPattern; }; #endif // __PATTERNBOX_H__