I get this error when I am trying to use a vector with values that are a custom class. The custom class inherits QLabel.
I have:
class SomeClass
: public QLabel {.
.
};
class SomeClass : public QLabel {
.
.
};
To copy to clipboard, switch view to plain text mode
I create a vector of SomeClass:
vector<SomeClass> foo;
vector<SomeClass> foo;
To copy to clipboard, switch view to plain text mode
and then when I do:
foo.push_back(NULL);
foo.push_back(NULL);
To copy to clipboard, switch view to plain text mode
I get this error. In eclipse there is a red underline under "class SomeClass : public QLabel {"
Bookmarks