diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:50 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:50 -0500 |
commit | 8b77ddccbca9763e45f50c20e7604120c39afb3a (patch) | |
tree | a53c042bd97a8ed7cd8d9e2883f7ffecff067318 /src/common/gui | |
parent | c473c81cc8bb5ad0d7459ab037f988656030268d (diff) | |
download | piklab-8b77ddccbca9763e45f50c20e7604120c39afb3a.tar.gz piklab-8b77ddccbca9763e45f50c20e7604120c39afb3a.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'src/common/gui')
-rw-r--r-- | src/common/gui/purl_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/gui/purl_gui.cpp b/src/common/gui/purl_gui.cpp index 3f5a742..fb7aacc 100644 --- a/src/common/gui/purl_gui.cpp +++ b/src/common/gui/purl_gui.cpp @@ -106,7 +106,7 @@ void PURL::BaseWidget::init() connect(_edit, TQT_SIGNAL(textChanged(const TQString &)), TQT_SIGNAL(changed())); top->addWidget(_edit); TDEIconLoader loader; - TQIconSet iconset = loader.loadIcon("fileopen", TDEIcon::Toolbar); + TQIconSet iconset = loader.loadIcon("document-open", TDEIcon::Toolbar); TQPushButton *button = new KPushButton(iconset, TQString(), this); connect(button, TQT_SIGNAL(clicked()), TQT_SLOT(buttonClicked())); top->addWidget(button); |