author | sandman <sandman> | 2002-09-25 00:37:33 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-09-25 00:37:33 (UTC) |
commit | b4c23347000668cc111418cce4ec2822977e5c9d (patch) (side-by-side diff) | |
tree | 7fbbe6a3e3150c6398b25cf6d1fa97e5cb6dae63 | |
parent | 65c19fe339246fd60c09a577d1feb88818fcf735 (diff) | |
download | opie-b4c23347000668cc111418cce4ec2822977e5c9d.zip opie-b4c23347000668cc111418cce4ec2822977e5c9d.tar.gz opie-b4c23347000668cc111418cce4ec2822977e5c9d.tar.bz2 |
forgot to remove obsoleted file (now in OFontSelector/libopie)
-rw-r--r-- | noncore/settings/appearance2/fontlistitem.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/noncore/settings/appearance2/fontlistitem.h b/noncore/settings/appearance2/fontlistitem.h deleted file mode 100644 index 73f1d54..0000000 --- a/noncore/settings/appearance2/fontlistitem.h +++ b/dev/null @@ -1,40 +0,0 @@ -#ifndef FONTLISTITEM_H -#define FONTLISTITEM_H - -#include <qlistbox.h> - -class FontListItem : public QListBoxText { -public: - FontListItem ( const QString &t, const QStringList &styles, const QValueList<int> &sizes ) : QListBoxText ( ) - { - m_name = t; - m_styles = styles; - m_sizes = sizes; - - QString str = t; - str [0] = str [0]. upper ( ); - setText ( str ); - } - - QString family ( ) const - { - return m_name; - } - - const QStringList &styles ( ) const - { - return m_styles; - } - - const QValueList<int> &sizes ( ) const - { - return m_sizes; - } - -private: - QStringList m_styles; - QValueList<int> m_sizes; - QString m_name; -}; - -#endif
\ No newline at end of file |