mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 13:34:44 -04:00
Replace potentially unterminated std::string::data() for pre-c++11
This commit is contained in:
21
YACReaderLibrary/comic_vine/search_volume.h
Normal file
21
YACReaderLibrary/comic_vine/search_volume.h
Normal file
@ -0,0 +1,21 @@
|
||||
#ifndef SEARCH_VOLUME_H
|
||||
#define SEARCH_VOLUME_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class ScraperLineEdit;
|
||||
|
||||
|
||||
class SearchVolume : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
SearchVolume(QWidget * parent = 0);
|
||||
void clean();
|
||||
public slots:
|
||||
QString getVolumeInfo();
|
||||
private:
|
||||
ScraperLineEdit * volumeEdit;
|
||||
};
|
||||
|
||||
#endif // SEARCH_VOLUME_H
|
Reference in New Issue
Block a user