Rename KIcon to enhance compatibility with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent b2c2c2b762
commit e07fc3cb5d

@ -82,10 +82,10 @@ CollectionFieldsDialog::CollectionFieldsDialog(Data::CollPtr coll_, TQWidget* pa
TQHBox* hb1 = new TQHBox(fieldsGroup); TQHBox* hb1 = new TQHBox(fieldsGroup);
hb1->setSpacing(KDialog::spacingHint()); hb1->setSpacing(KDialog::spacingHint());
m_btnNew = new KPushButton(i18n("New Field", "&New"), hb1); m_btnNew = new KPushButton(i18n("New Field", "&New"), hb1);
m_btnNew->setIconSet(BarIcon(TQString::fromLatin1("filenew"), KIcon::SizeSmall)); m_btnNew->setIconSet(BarIcon(TQString::fromLatin1("filenew"), TDEIcon::SizeSmall));
TQWhatsThis::add(m_btnNew, i18n("Add a new field to the collection")); TQWhatsThis::add(m_btnNew, i18n("Add a new field to the collection"));
m_btnDelete = new KPushButton(i18n("Delete Field", "&Delete"), hb1); m_btnDelete = new KPushButton(i18n("Delete Field", "&Delete"), hb1);
m_btnDelete->setIconSet(BarIconSet(TQString::fromLatin1("editdelete"), KIcon::SizeSmall)); m_btnDelete->setIconSet(BarIconSet(TQString::fromLatin1("editdelete"), TDEIcon::SizeSmall));
TQWhatsThis::add(m_btnDelete, i18n("Remove a field from the collection")); TQWhatsThis::add(m_btnDelete, i18n("Remove a field from the collection"));
connect(m_btnNew, TQT_SIGNAL(clicked()), TQT_SLOT(slotNew()) ); connect(m_btnNew, TQT_SIGNAL(clicked()), TQT_SLOT(slotNew()) );
@ -94,11 +94,11 @@ CollectionFieldsDialog::CollectionFieldsDialog(Data::CollPtr coll_, TQWidget* pa
TQHBox* hb2 = new TQHBox(fieldsGroup); TQHBox* hb2 = new TQHBox(fieldsGroup);
hb2->setSpacing(KDialog::spacingHint()); hb2->setSpacing(KDialog::spacingHint());
m_btnUp = new KPushButton(hb2); m_btnUp = new KPushButton(hb2);
m_btnUp->setPixmap(BarIcon(TQString::fromLatin1("up"), KIcon::SizeSmall)); m_btnUp->setPixmap(BarIcon(TQString::fromLatin1("up"), TDEIcon::SizeSmall));
TQWhatsThis::add(m_btnUp, i18n("Move this field up in the list. The list order is important " TQWhatsThis::add(m_btnUp, i18n("Move this field up in the list. The list order is important "
"for the layout of the entry editor.")); "for the layout of the entry editor."));
m_btnDown = new KPushButton(hb2); m_btnDown = new KPushButton(hb2);
m_btnDown->setPixmap(BarIcon(TQString::fromLatin1("down"), KIcon::SizeSmall)); m_btnDown->setPixmap(BarIcon(TQString::fromLatin1("down"), TDEIcon::SizeSmall));
TQWhatsThis::add(m_btnDown, i18n("Move this field down in the list. The list order is important " TQWhatsThis::add(m_btnDown, i18n("Move this field down in the list. The list order is important "
"for the layout of the entry editor.")); "for the layout of the entry editor."));
@ -215,7 +215,7 @@ CollectionFieldsDialog::CollectionFieldsDialog(Data::CollPtr coll_, TQWidget* pa
label = new TQLabel(i18n("Extended &properties:"), grid); label = new TQLabel(i18n("Extended &properties:"), grid);
layout->addWidget(label, ++row, 0); layout->addWidget(label, ++row, 0);
m_btnExtended = new KPushButton(i18n("&Set..."), grid); m_btnExtended = new KPushButton(i18n("&Set..."), grid);
m_btnExtended->setIconSet(BarIcon(TQString::fromLatin1("bookmark"), KIcon::SizeSmall)); m_btnExtended->setIconSet(BarIcon(TQString::fromLatin1("bookmark"), TDEIcon::SizeSmall));
layout->addWidget(m_btnExtended, row, 1); layout->addWidget(m_btnExtended, row, 1);
label->setBuddy(m_btnExtended); label->setBuddy(m_btnExtended);
whats = i18n("Extended field properties are used to specify things such as the corresponding bibtex field."); whats = i18n("Extended field properties are used to specify things such as the corresponding bibtex field.");

@ -194,7 +194,7 @@ void ConfigDialog::slotDefault() {
} }
void ConfigDialog::setupGeneralPage() { void ConfigDialog::setupGeneralPage() {
TQPixmap pix = DesktopIcon(TQString::fromLatin1("tellico"), KIcon::SizeMedium); TQPixmap pix = DesktopIcon(TQString::fromLatin1("tellico"), TDEIcon::SizeMedium);
TQFrame* frame = addPage(i18n("General"), i18n("General Options"), pix); TQFrame* frame = addPage(i18n("General"), i18n("General Options"), pix);
TQVBoxLayout* l = new TQVBoxLayout(frame, KDialog::marginHint(), KDialog::spacingHint()); TQVBoxLayout* l = new TQVBoxLayout(frame, KDialog::marginHint(), KDialog::spacingHint());
@ -281,16 +281,16 @@ void ConfigDialog::setupGeneralPage() {
void ConfigDialog::setupPrintingPage() { void ConfigDialog::setupPrintingPage() {
// SuSE changed the icon name on me // SuSE changed the icon name on me
TQPixmap pix; TQPixmap pix;
KIconLoader* loader = TDEGlobal::iconLoader(); TDEIconLoader* loader = TDEGlobal::iconLoader();
if(loader) { if(loader) {
pix = loader->loadIcon(TQString::fromLatin1("printer1"), KIcon::Desktop, KIcon::SizeMedium, pix = loader->loadIcon(TQString::fromLatin1("printer1"), TDEIcon::Desktop, TDEIcon::SizeMedium,
KIcon::DefaultState, 0, true /*canReturnNull */); TDEIcon::DefaultState, 0, true /*canReturnNull */);
if(pix.isNull()) { if(pix.isNull()) {
pix = loader->loadIcon(TQString::fromLatin1("printer2"), KIcon::Desktop, KIcon::SizeMedium, pix = loader->loadIcon(TQString::fromLatin1("printer2"), TDEIcon::Desktop, TDEIcon::SizeMedium,
KIcon::DefaultState, 0, true /*canReturnNull */); TDEIcon::DefaultState, 0, true /*canReturnNull */);
} }
if(pix.isNull()) { if(pix.isNull()) {
pix = loader->loadIcon(TQString::fromLatin1("print_printer"), KIcon::Desktop, KIcon::SizeMedium); pix = loader->loadIcon(TQString::fromLatin1("print_printer"), TDEIcon::Desktop, TDEIcon::SizeMedium);
} }
} }
TQFrame* frame = addPage(i18n("Printing"), i18n("Printing Options"), pix); TQFrame* frame = addPage(i18n("Printing"), i18n("Printing Options"), pix);
@ -351,7 +351,7 @@ void ConfigDialog::setupPrintingPage() {
} }
void ConfigDialog::setupTemplatePage() { void ConfigDialog::setupTemplatePage() {
TQPixmap pix = DesktopIcon(TQString::fromLatin1("looknfeel"), KIcon::SizeMedium); TQPixmap pix = DesktopIcon(TQString::fromLatin1("looknfeel"), TDEIcon::SizeMedium);
TQFrame* frame = addPage(i18n("Templates"), i18n("Template Options"), pix); TQFrame* frame = addPage(i18n("Templates"), i18n("Template Options"), pix);
TQVBoxLayout* l = new TQVBoxLayout(frame, KDialog::marginHint(), KDialog::spacingHint()); TQVBoxLayout* l = new TQVBoxLayout(frame, KDialog::marginHint(), KDialog::spacingHint());
@ -497,7 +497,7 @@ void ConfigDialog::setupTemplatePage() {
} }
void ConfigDialog::setupFetchPage() { void ConfigDialog::setupFetchPage() {
TQPixmap pix = DesktopIcon(TQString::fromLatin1("network"), KIcon::SizeMedium); TQPixmap pix = DesktopIcon(TQString::fromLatin1("network"), TDEIcon::SizeMedium);
TQFrame* frame = addPage(i18n("Data Sources"), i18n("Data Source Options"), pix); TQFrame* frame = addPage(i18n("Data Sources"), i18n("Data Source Options"), pix);
TQHBoxLayout* l = new TQHBoxLayout(frame, KDialog::marginHint(), KDialog::spacingHint()); TQHBoxLayout* l = new TQHBoxLayout(frame, KDialog::marginHint(), KDialog::spacingHint());

@ -43,7 +43,7 @@ using Tellico::EntryIconView;
using Tellico::EntryIconViewItem; using Tellico::EntryIconViewItem;
EntryIconView::EntryIconView(TQWidget* parent_, const char* name_/*=0*/) EntryIconView::EntryIconView(TQWidget* parent_, const char* name_/*=0*/)
: KIconView(parent_, name_), m_coll(0), m_maxAllowedIconWidth(MAX_ENTRY_ICON_SIZE), : TDEIconView(parent_, name_), m_coll(0), m_maxAllowedIconWidth(MAX_ENTRY_ICON_SIZE),
m_maxIconWidth(MIN_ENTRY_ICON_SIZE), m_maxIconHeight(MIN_ENTRY_ICON_SIZE), m_maxIconWidth(MIN_ENTRY_ICON_SIZE), m_maxIconHeight(MIN_ENTRY_ICON_SIZE),
m_comparison(0) { m_comparison(0) {
setAutoArrange(true); setAutoArrange(true);
@ -51,7 +51,7 @@ EntryIconView::EntryIconView(TQWidget* parent_, const char* name_/*=0*/)
setItemsMovable(false); setItemsMovable(false);
setSelectionMode(TQIconView::Extended); setSelectionMode(TQIconView::Extended);
setResizeMode(TQIconView::Adjust); setResizeMode(TQIconView::Adjust);
setMode(KIconView::Select); setMode(TDEIconView::Select);
setSpacing(4); setSpacing(4);
// setWordWrapIconText(false); // setWordWrapIconText(false);
@ -69,7 +69,7 @@ EntryIconView::~EntryIconView() {
} }
EntryIconViewItem* EntryIconView::firstItem() const { EntryIconViewItem* EntryIconView::firstItem() const {
return static_cast<EntryIconViewItem*>(KIconView::firstItem()); return static_cast<EntryIconViewItem*>(TDEIconView::firstItem());
} }
void EntryIconView::findImageField() { void EntryIconView::findImageField() {
@ -97,9 +97,9 @@ const TQPixmap& EntryIconView::defaultPixmap() {
if(pix) { if(pix) {
return *pix; return *pix;
} }
KIconLoader* loader = TDEGlobal::instance()->iconLoader(); TDEIconLoader* loader = TDEGlobal::instance()->iconLoader();
TQPixmap tmp = loader->loadIcon(TQString::fromLatin1("nocover_") + CollectionFactory::typeName(m_coll->type()), TQPixmap tmp = loader->loadIcon(TQString::fromLatin1("nocover_") + CollectionFactory::typeName(m_coll->type()),
KIcon::User, 0, KIcon::DefaultState, 0, true /*canReturnNull */); TDEIcon::User, 0, TDEIcon::DefaultState, 0, true /*canReturnNull */);
if(tmp.isNull()) { if(tmp.isNull()) {
myLog() << "EntryIconView::defaultPixmap() - null nocover image, loading tellico.png" << endl; myLog() << "EntryIconView::defaultPixmap() - null nocover image, loading tellico.png" << endl;
tmp = UserIcon(TQString::fromLatin1("tellico")); tmp = UserIcon(TQString::fromLatin1("tellico"));
@ -163,7 +163,7 @@ void EntryIconView::refresh() {
} }
void EntryIconView::clear() { void EntryIconView::clear() {
KIconView::clear(); TDEIconView::clear();
m_coll = 0; m_coll = 0;
m_entries.clear(); m_entries.clear();
m_imageField.truncate(0); m_imageField.truncate(0);
@ -171,7 +171,7 @@ void EntryIconView::clear() {
void EntryIconView::showEntries(const Data::EntryVec& entries_) { void EntryIconView::showEntries(const Data::EntryVec& entries_) {
setUpdatesEnabled(false); setUpdatesEnabled(false);
KIconView::clear(); // don't call EntryIconView::clear() since that clears the entries_ ref TDEIconView::clear(); // don't call EntryIconView::clear() since that clears the entries_ ref
if(entries_.isEmpty()) { if(entries_.isEmpty()) {
return; return;
} }
@ -311,7 +311,7 @@ int EntryIconView::compare(const EntryIconViewItem* item1, EntryIconViewItem* it
/* *********************************************************** */ /* *********************************************************** */
EntryIconViewItem::EntryIconViewItem(EntryIconView* parent_, Data::EntryPtr entry_) EntryIconViewItem::EntryIconViewItem(EntryIconView* parent_, Data::EntryPtr entry_)
: KIconViewItem(parent_, entry_->title()), m_entry(entry_), m_usesImage(false) { : TDEIconViewItem(parent_, entry_->title()), m_entry(entry_), m_usesImage(false) {
setDragEnabled(false); setDragEnabled(false);
const TQString& imageField = parent_->imageField(); const TQString& imageField = parent_->imageField();
if(!imageField.isEmpty()) { if(!imageField.isEmpty()) {
@ -344,7 +344,7 @@ void EntryIconViewItem::setSelected(bool s_, bool cb_) {
} }
if(s_ != isSelected()) { if(s_ != isSelected()) {
view->updateSelected(this, s_); view->updateSelected(this, s_);
KIconViewItem::setSelected(s_, cb_); TDEIconViewItem::setSelected(s_, cb_);
} }
} }
@ -375,7 +375,7 @@ void EntryIconViewItem::update() {
} }
void EntryIconViewItem::calcRect(const TQString& text_) { void EntryIconViewItem::calcRect(const TQString& text_) {
KIconViewItem::calcRect(text_); TDEIconViewItem::calcRect(text_);
TQRect r = pixmapRect(); TQRect r = pixmapRect();
r.rRight() += ENTRY_ICON_SHADOW_RIGHT; r.rRight() += ENTRY_ICON_SHADOW_RIGHT;
r.rBottom() += ENTRY_ICON_SHADOW_BOTTOM; r.rBottom() += ENTRY_ICON_SHADOW_BOTTOM;
@ -404,7 +404,7 @@ void EntryIconViewItem::paintPixmap(TQPainter* p_, const TQColorGroup& cg_) {
TQColor c = Tellico::blendColors(iconView()->backgroundColor(), TQt::black, 10); TQColor c = Tellico::blendColors(iconView()->backgroundColor(), TQt::black, 10);
p_->fillRect(r, c); p_->fillRect(r, c);
} }
KIconViewItem::paintPixmap(p_, cg_); TDEIconViewItem::paintPixmap(p_, cg_);
} }
void EntryIconViewItem::paintText(TQPainter* p_, const TQColorGroup &cg_) { void EntryIconViewItem::paintText(TQPainter* p_, const TQColorGroup &cg_) {
@ -431,14 +431,14 @@ void EntryIconViewItem::paintText(TQPainter* p_, const TQColorGroup &cg_) {
TQString EntryIconViewItem::key() const { TQString EntryIconViewItem::key() const {
const TQString& sortField = iconView()->sortField(); const TQString& sortField = iconView()->sortField();
if(sortField.isEmpty()) { if(sortField.isEmpty()) {
return KIconViewItem::key(); return TDEIconViewItem::key();
} }
return m_entry->field(sortField); return m_entry->field(sortField);
} }
int EntryIconViewItem::compare(TQIconViewItem* item_) const { int EntryIconViewItem::compare(TQIconViewItem* item_) const {
int res = iconView()->compare(this, static_cast<EntryIconViewItem*>(item_)); int res = iconView()->compare(this, static_cast<EntryIconViewItem*>(item_));
return res == 0 ? KIconViewItem::compare(item_) : res; return res == 0 ? TDEIconViewItem::compare(item_) : res;
} }
#include "entryiconview.moc" #include "entryiconview.moc"

@ -31,7 +31,7 @@ namespace Tellico {
/** /**
* @author Robby Stephenson * @author Robby Stephenson
*/ */
class EntryIconView : public KIconView, public Observer { class EntryIconView : public TDEIconView, public Observer {
Q_OBJECT Q_OBJECT
@ -99,13 +99,13 @@ private:
ListViewComparison* m_comparison; ListViewComparison* m_comparison;
}; };
class EntryIconViewItem : public KIconViewItem { class EntryIconViewItem : public TDEIconViewItem {
public: public:
EntryIconViewItem(EntryIconView* parent, Data::EntryPtr entry); EntryIconViewItem(EntryIconView* parent, Data::EntryPtr entry);
~EntryIconViewItem(); ~EntryIconViewItem();
EntryIconView* iconView() const { return static_cast<EntryIconView*>(KIconViewItem::iconView()); } EntryIconView* iconView() const { return static_cast<EntryIconView*>(TDEIconViewItem::iconView()); }
EntryIconViewItem* nextItem() const { return static_cast<EntryIconViewItem*>(KIconViewItem::nextItem()); } EntryIconViewItem* nextItem() const { return static_cast<EntryIconViewItem*>(TDEIconViewItem::nextItem()); }
Data::EntryPtr entry() const { return m_entry; } Data::EntryPtr entry() const { return m_entry; }
virtual void setSelected(bool s, bool cb); virtual void setSelected(bool s, bool cb);

@ -213,7 +213,7 @@ Tellico::EntryUpdater::UpdateResult EntryUpdater::askUser(ResultList results) {
TQHBox* hbox = new TQHBox(box); TQHBox* hbox = new TQHBox(box);
hbox->setSpacing(10); hbox->setSpacing(10);
TQLabel* icon = new TQLabel(hbox); TQLabel* icon = new TQLabel(hbox);
icon->setPixmap(TDEGlobal::iconLoader()->loadIcon(TQString::fromLatin1("network"), KIcon::Panel, 64)); icon->setPixmap(TDEGlobal::iconLoader()->loadIcon(TQString::fromLatin1("network"), TDEIcon::Panel, 64));
TQString s = i18n("<qt><b>%1</b> returned multiple results which could match <b>%2</b>, " TQString s = i18n("<qt><b>%1</b> returned multiple results which could match <b>%2</b>, "
"the entry currently in the collection. Please select the correct match.</qt>") "the entry currently in the collection. Please select the correct match.</qt>")
.arg(m_fetchers[m_fetchIndex]->source()) .arg(m_fetchers[m_fetchIndex]->source())

@ -60,7 +60,7 @@
#include <tqdir.h> #include <tqdir.h>
#define LOAD_ICON(name, group, size) \ #define LOAD_ICON(name, group, size) \
TDEGlobal::iconLoader()->loadIcon(name, static_cast<KIcon::Group>(group), size_) TDEGlobal::iconLoader()->loadIcon(name, static_cast<TDEIcon::Group>(group), size_)
using Tellico::Fetch::Manager; using Tellico::Fetch::Manager;
Manager* Manager::s_self = 0; Manager* Manager::s_self = 0;

@ -408,8 +408,8 @@ void FetchDialog::slotFetchDone(bool checkISBN /* = true */) {
TQHBoxLayout* lay2 = new TQHBoxLayout(lay); TQHBoxLayout* lay2 = new TQHBoxLayout(lay);
TQLabel* lab = new TQLabel(box); TQLabel* lab = new TQLabel(box);
lab->setPixmap(TDEGlobal::iconLoader()->loadIcon(TQString::fromLatin1("messagebox_info"), lab->setPixmap(TDEGlobal::iconLoader()->loadIcon(TQString::fromLatin1("messagebox_info"),
KIcon::NoGroup, TDEIcon::NoGroup,
KIcon::SizeMedium)); TDEIcon::SizeMedium));
lay2->addWidget(lab); lay2->addWidget(lab);
TQString s = i18n("No results were found for the following ISBN values:"); TQString s = i18n("No results were found for the following ISBN values:");
lay2->addWidget(new TQLabel(s, box), 10); lay2->addWidget(new TQLabel(s, box), 10);

@ -66,9 +66,9 @@ void FetcherConfigDialog::init(Fetch::Type type_) {
TQBoxLayout* vlay1 = new TQVBoxLayout(topLayout, KDialog::spacingHint()); TQBoxLayout* vlay1 = new TQVBoxLayout(topLayout, KDialog::spacingHint());
m_iconLabel = new TQLabel(widget); m_iconLabel = new TQLabel(widget);
if(type_ == Fetch::Unknown) { if(type_ == Fetch::Unknown) {
m_iconLabel->setPixmap(TDEGlobal::iconLoader()->loadIcon(TQString::fromLatin1("network"), KIcon::Panel, 64)); m_iconLabel->setPixmap(TDEGlobal::iconLoader()->loadIcon(TQString::fromLatin1("network"), TDEIcon::Panel, 64));
} else { } else {
m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type_, KIcon::Panel, 64)); m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type_, TDEIcon::Panel, 64));
} }
vlay1->addWidget(m_iconLabel); vlay1->addWidget(m_iconLabel);
vlay1->addStretch(1); vlay1->addStretch(1);
@ -191,7 +191,7 @@ void FetcherConfigDialog::slotNewSourceSelected(int idx_) {
kdWarning() << "FetcherConfigDialog::slotNewSourceSelected() - unknown source type" << endl; kdWarning() << "FetcherConfigDialog::slotNewSourceSelected() - unknown source type" << endl;
return; return;
} }
m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type, KIcon::Panel, 64)); m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type, TDEIcon::Panel, 64));
cw = Fetch::Manager::self()->configWidget(m_stack, type, m_typeCombo->currentText()); cw = Fetch::Manager::self()->configWidget(m_stack, type, m_typeCombo->currentText());
if(!cw) { if(!cw) {
// bad bad bad! // bad bad bad!

@ -55,9 +55,9 @@ StringMapDialog::StringMapDialog(const TQMap<TQString, TQString>& map_, TQWidget
KButtonBox* bb = new KButtonBox(box); KButtonBox* bb = new KButtonBox(box);
bb->addStretch(); bb->addStretch();
TQPushButton* btn = bb->addButton(i18n("&Set"), TQT_TQOBJECT(this), TQT_SLOT(slotAdd())); TQPushButton* btn = bb->addButton(i18n("&Set"), TQT_TQOBJECT(this), TQT_SLOT(slotAdd()));
btn->setIconSet(BarIcon(TQString::fromLatin1("filenew"), KIcon::SizeSmall)); btn->setIconSet(BarIcon(TQString::fromLatin1("filenew"), TDEIcon::SizeSmall));
btn = bb->addButton(i18n("&Delete"), TQT_TQOBJECT(this), TQT_SLOT(slotDelete())); btn = bb->addButton(i18n("&Delete"), TQT_TQOBJECT(this), TQT_SLOT(slotDelete()));
btn->setIconSet(BarIcon(TQString::fromLatin1("editdelete"), KIcon::SizeSmall)); btn->setIconSet(BarIcon(TQString::fromLatin1("editdelete"), TDEIcon::SizeSmall));
l->addWidget(box); l->addWidget(box);
l->addStretch(1); l->addStretch(1);

@ -157,7 +157,7 @@ Dialog::Dialog(NewStuff::DataType type_, TQWidget* parent_)
TQPixmap pix; TQPixmap pix;
if(m_type == EntryTemplate) { if(m_type == EntryTemplate) {
pix = DesktopIcon(TQString::fromLatin1("looknfeel"), KIcon::SizeLarge); pix = DesktopIcon(TQString::fromLatin1("looknfeel"), TDEIcon::SizeLarge);
TQWhatsThis::add(m_install, i18n("Download and install the selected template.")); TQWhatsThis::add(m_install, i18n("Download and install the selected template."));
} else { } else {
pix = UserIcon(TQString::fromLatin1("script")); pix = UserIcon(TQString::fromLatin1("script"));
@ -371,7 +371,7 @@ void Dialog::slotSelected(TQListViewItem* item_) {
m_lastPreviewItem = item_; m_lastPreviewItem = item_;
} }
TQPixmap pix = m_type == EntryTemplate TQPixmap pix = m_type == EntryTemplate
? DesktopIcon(TQString::fromLatin1("looknfeel"), KIcon::SizeLarge) ? DesktopIcon(TQString::fromLatin1("looknfeel"), TDEIcon::SizeLarge)
: UserIcon(TQString::fromLatin1("script")); : UserIcon(TQString::fromLatin1("script"));
m_iconLabel->setPixmap(pix); m_iconLabel->setPixmap(pix);

Loading…
Cancel
Save