From 4de2b402e4843145107c9a283075960b5f4d828a401314db1d4291749cc39da7 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Tue, 5 May 2026 17:23:38 -0400 Subject: [PATCH] No need for item in list to be `Object`. --- dw/fltkimgbuf.hh | 3 +-- dw/fltkplatform.hh | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/dw/fltkimgbuf.hh b/dw/fltkimgbuf.hh index c3cc356..b4be04d 100644 --- a/dw/fltkimgbuf.hh +++ b/dw/fltkimgbuf.hh @@ -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]; }; diff --git a/dw/fltkplatform.hh b/dw/fltkplatform.hh index 49a9240..4590e06 100644 --- a/dw/fltkplatform.hh +++ b/dw/fltkplatform.hh @@ -123,9 +123,8 @@ private: FltkResourceFactory resourceFactory; - class IdleFunc: public lout::object::Object + struct IdleFunc { - public: int id; void (core::Layout::*func) (); };