No need for item in list to be Object.

This commit is contained in:
2026-05-05 17:23:38 -04:00
parent dc5b173788
commit 4de2b402e4
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -14,9 +14,8 @@ namespace fltk {
class FltkImgbuf: public core::Imgbuf class FltkImgbuf: public core::Imgbuf
{ {
private: private:
class GammaCorrectionTable: public lout::object::Object struct GammaCorrectionTable
{ {
public:
double gamma; double gamma;
uchar map[256]; uchar map[256];
}; };
+1 -2
View File
@@ -123,9 +123,8 @@ private:
FltkResourceFactory resourceFactory; FltkResourceFactory resourceFactory;
class IdleFunc: public lout::object::Object struct IdleFunc
{ {
public:
int id; int id;
void (core::Layout::*func) (); void (core::Layout::*func) ();
}; };