mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
code cleanup: remove 2 unused structs
Luckily these 2 structs in this ugly code are not used. Remove them. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
parent
816863dccf
commit
db39f1a847
2 changed files with 0 additions and 26 deletions
|
@ -86,20 +86,6 @@ private:
|
||||||
DCDeviceData *m_data;
|
DCDeviceData *m_data;
|
||||||
};
|
};
|
||||||
|
|
||||||
//TODO: QList<product> ?
|
|
||||||
struct product {
|
|
||||||
const char *product;
|
|
||||||
dc_descriptor_t *descriptor;
|
|
||||||
struct product *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
//TODO: QList<vendor> ?
|
|
||||||
struct vendor {
|
|
||||||
const char *vendor;
|
|
||||||
struct product *productlist;
|
|
||||||
struct vendor *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
//TODO: C++ify descriptor?
|
//TODO: C++ify descriptor?
|
||||||
struct mydescriptor {
|
struct mydescriptor {
|
||||||
const char *vendor;
|
const char *vendor;
|
||||||
|
|
|
@ -12,18 +12,6 @@
|
||||||
#include <QNetworkReply>
|
#include <QNetworkReply>
|
||||||
#include <QProgressDialog>
|
#include <QProgressDialog>
|
||||||
|
|
||||||
struct product {
|
|
||||||
const char *product;
|
|
||||||
dc_descriptor_t *descriptor;
|
|
||||||
struct product *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct vendor {
|
|
||||||
const char *vendor;
|
|
||||||
struct product *productlist;
|
|
||||||
struct vendor *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct mydescriptor {
|
struct mydescriptor {
|
||||||
const char *vendor;
|
const char *vendor;
|
||||||
const char *product;
|
const char *product;
|
||||||
|
|
Loading…
Add table
Reference in a new issue