copy the image into the application path..(the same path that contains the debug folder)
Then if you didn't change the prefix while you added the image in My_Resource.qrc
replace the line 
	
	
        QAction* actNew = new QAction( QIcon("imageOne_1.png") , "&New File ..", this);
To copy to clipboard, switch view to plain text mode 
  
with this
	
	
        QAction* actNew = new QAction( QIcon(":/imageOne_1.png") , "&New File ..", this);
To copy to clipboard, switch view to plain text mode 
  
Please note that the name of the file has to be exact (it is case sentitive) 
Even .PNG is different from .png...so pay attention..
at the end ..compile again and let us know 
CU
				
			
Bookmarks