cc_item_picture.h: remove virtual declaration from setPicture()

Is not really required.
Avoids possible compile/linker errors like "...no reference..." for some
coming changes.


Origin commit data
------------------
Branch: ni/coolstream
Commit: e9883cbd2d
Author: Thilo Graf <dbt@novatux.de>
Date: 2017-12-03 (Sun, 03 Dec 2017)



------------------
This commit was generated by Migit
This commit is contained in:
2017-12-03 18:07:12 +01:00
parent 3fbcb943e7
commit 1bd8340f14

View File

@@ -141,9 +141,9 @@ class CComponentsPicture : public CComponentsItem
}
///sets an image name (unscaled icons only), full image path or url to an image file
virtual void setPicture(const std::string& picture_name);
void setPicture(const std::string& picture_name);
///sets an image name (unscaled icons only), full image path or url to an image file
virtual void setPicture(const char* picture_name);
void setPicture(const char* picture_name);
///returns current assigned image name
std::string getPictureName(){return pic_name;}