Browse Source

Remove unused destructor

master
Krisjanis Rijnieks 8 years ago
parent
commit
f985af3644
  1. 2
      src/Sources/VideoSource.cpp
  2. 1
      src/Sources/VideoSource.h

2
src/Sources/VideoSource.cpp

@ -18,8 +18,6 @@ VideoSource::VideoSource(){
#endif #endif
} }
VideoSource::~VideoSource(){}
void VideoSource::loadVideo(string & filePath){ void VideoSource::loadVideo(string & filePath){
path = filePath; path = filePath;
setNameFromPath(filePath); setNameFromPath(filePath);

1
src/Sources/VideoSource.h

@ -21,7 +21,6 @@ class VideoSource : public BaseSource {
static bool useHDMIForAudio; static bool useHDMIForAudio;
VideoSource(); VideoSource();
~VideoSource();
string & getPath(); string & getPath();
void loadVideo(string & path); void loadVideo(string & path);

Loading…
Cancel
Save