Branch: master

bfecdb99 2014-10-13 15:43:50 Timothy Pearson
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
M apps/ktorrent/filterbar.cpp
M apps/ktorrent/groups/groupview.cpp
M plugins/infowidget/fileview.cpp
diff --git a/apps/ktorrent/filterbar.cpp b/apps/ktorrent/filterbar.cpp
index 1c05b51..79bf686 100644
--- a/apps/ktorrent/filterbar.cpp
+++ b/apps/ktorrent/filterbar.cpp
@@ -45,7 +45,7 @@
 	TQHBoxLayout* layout = new TQHBoxLayout(foo);
 	layout->addSpacing(gap);
 	
-	m_close = new TDEToolBarButton("fileclose",0,this);
+	m_close = new TDEToolBarButton("window-close",0,this);
 	connect(m_close,TQT_SIGNAL(clicked()),this,TQT_SLOT(hide()));
 	layout->addWidget(m_close);
 	
diff --git a/apps/ktorrent/groups/groupview.cpp b/apps/ktorrent/groups/groupview.cpp
index 2ed8682..25cf9f2 100644
--- a/apps/ktorrent/groups/groupview.cpp
+++ b/apps/ktorrent/groups/groupview.cpp
@@ -135,7 +135,7 @@
 	{
 		menu = new TDEPopupMenu(this);
 		
-		new_group = new TDEAction(i18n("New Group"),"filenew",0,
+		new_group = new TDEAction(i18n("New Group"),"document-new",0,
 							 TQT_TQOBJECT(this), TQT_SLOT(addGroup()),col, "New Group");
 		
 		edit_group = new TDEAction(i18n("Edit Name"),"edit",0,
@@ -144,7 +144,7 @@
 		remove_group = new TDEAction(i18n("Remove Group"),"remove",0,
 							 TQT_TQOBJECT(this), TQT_SLOT(removeGroup()),col,"Remove Group");
 		
-		open_in_new_tab = new TDEAction(i18n("Open Tab"),"fileopen",0,
+		open_in_new_tab = new TDEAction(i18n("Open Tab"),"document-open",0,
 							 TQT_TQOBJECT(this) ,TQT_SLOT(openView()),col,"Open Tab");
 		
 		open_in_new_tab->plug(menu);
diff --git a/plugins/infowidget/fileview.cpp b/plugins/infowidget/fileview.cpp
index c0e9d72..c7bd470 100644
--- a/plugins/infowidget/fileview.cpp
+++ b/plugins/infowidget/fileview.cpp
@@ -52,7 +52,7 @@
 		setShowSortIndicator(true);
 		
 		context_menu = new TDEPopupMenu(this);
-		preview_id = context_menu->insertItem(SmallIcon("fileopen"),i18n("Open"));
+		preview_id = context_menu->insertItem(SmallIcon("document-open"),i18n("Open"));
 	    context_menu->insertSeparator();
 		first_id = context_menu->insertItem(i18n("Download First"));
 		normal_id = context_menu->insertItem(i18n("Download Normally"));