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
{
private:
class GammaCorrectionTable: public lout::object::Object
struct GammaCorrectionTable
{
public:
double gamma;
uchar map[256];
};
+1 -2
View File
@@ -123,9 +123,8 @@ private:
FltkResourceFactory resourceFactory;
class IdleFunc: public lout::object::Object
struct IdleFunc
{
public:
int id;
void (core::Layout::*func) ();
};