diff options
Diffstat (limited to 'kkbswitch/pathlistboxitem.cpp')
-rw-r--r-- | kkbswitch/pathlistboxitem.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/kkbswitch/pathlistboxitem.cpp b/kkbswitch/pathlistboxitem.cpp new file mode 100644 index 0000000..256b843 --- /dev/null +++ b/kkbswitch/pathlistboxitem.cpp @@ -0,0 +1,28 @@ +/*************************************************************************** + pathlistboxitem.cpp - description + ------------------- + begin : ??? ??? 17 2004 + copyright : (C) 2004 by Leonid Zeitlin + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include "pathlistboxitem.h" + +PathListBoxItem::PathListBoxItem(QListBox *listbox, const QPixmap &pix, + const QString &text, const QString &a_path) : QListBoxPixmap(listbox, pix, text), + path(a_path) +{ +} + +PathListBoxItem::~PathListBoxItem() +{ +} |