more final fixes
This commit is contained in:
@@ -113,10 +113,10 @@ protected:
|
||||
void updateBackBuffer();
|
||||
|
||||
Gtk::SizeRequestMode get_request_mode_vfunc () const override;
|
||||
void get_preferred_height_vfunc (int& minimum_height, int& natural_height) const override final;
|
||||
void get_preferred_width_vfunc (int &minimum_width, int &natural_width) const override final;
|
||||
void get_preferred_height_for_width_vfunc (int width, int &minimum_height, int &natural_height) const override final;
|
||||
void get_preferred_width_for_height_vfunc (int height, int &minimum_width, int &natural_width) const override final;
|
||||
void get_preferred_height_vfunc (int& minimum_height, int& natural_height) const final;
|
||||
void get_preferred_width_vfunc (int &minimum_width, int &natural_width) const final;
|
||||
void get_preferred_height_for_width_vfunc (int width, int &minimum_height, int &natural_height) const final;
|
||||
void get_preferred_width_for_height_vfunc (int height, int &minimum_width, int &natural_width) const final;
|
||||
void on_realize () override;
|
||||
bool on_draw(const ::Cairo::RefPtr< Cairo::Context> &cr) override;
|
||||
bool on_button_press_event (GdkEventButton* event) override;
|
||||
|
@@ -60,10 +60,10 @@ class ThumbBrowserBase :
|
||||
bool on_draw(const ::Cairo::RefPtr< Cairo::Context> &cr) override;
|
||||
|
||||
Gtk::SizeRequestMode get_request_mode_vfunc () const override;
|
||||
void get_preferred_height_vfunc (int &minimum_height, int &natural_height) const override final;
|
||||
void get_preferred_width_vfunc (int &minimum_width, int &natural_width) const override final;
|
||||
void get_preferred_height_for_width_vfunc (int width, int &minimum_height, int &natural_height) const override final;
|
||||
void get_preferred_width_for_height_vfunc (int height, int &minimum_width, int &natural_width) const override final;
|
||||
void get_preferred_height_vfunc (int &minimum_height, int &natural_height) const final;
|
||||
void get_preferred_width_vfunc (int &minimum_width, int &natural_width) const final;
|
||||
void get_preferred_height_for_width_vfunc (int width, int &minimum_height, int &natural_height) const final;
|
||||
void get_preferred_width_for_height_vfunc (int height, int &minimum_width, int &natural_width) const final;
|
||||
|
||||
bool on_button_press_event (GdkEventButton* event) override;
|
||||
bool on_button_release_event (GdkEventButton* event) override;
|
||||
|
@@ -164,11 +164,11 @@ public:
|
||||
|
||||
FoldableToolPanel(Gtk::Box* content, Glib::ustring toolName, Glib::ustring UILabel, bool need11 = false, bool useEnabled = false);
|
||||
|
||||
MyExpander* getExpander() override final
|
||||
MyExpander* getExpander() final
|
||||
{
|
||||
return exp;
|
||||
}
|
||||
void setExpanded (bool expanded) override final
|
||||
void setExpanded (bool expanded) final
|
||||
{
|
||||
if (exp) {
|
||||
exp->set_expanded( expanded );
|
||||
@@ -186,7 +186,7 @@ public:
|
||||
exp->show();
|
||||
}
|
||||
}
|
||||
bool getExpanded () override final
|
||||
bool getExpanded () final
|
||||
{
|
||||
if (exp) {
|
||||
return exp->get_expanded();
|
||||
@@ -194,11 +194,11 @@ public:
|
||||
|
||||
return false;
|
||||
}
|
||||
void setParent (Gtk::Box* parent) override final
|
||||
void setParent (Gtk::Box* parent) final
|
||||
{
|
||||
parentContainer = parent;
|
||||
}
|
||||
Gtk::Box* getParent () override final
|
||||
Gtk::Box* getParent () final
|
||||
{
|
||||
return parentContainer;
|
||||
}
|
||||
|
@@ -314,11 +314,11 @@ public:
|
||||
|
||||
// imageareatoollistener interface
|
||||
void spotWBselected(int x, int y, Thumbnail* thm = nullptr) override;
|
||||
void sharpMaskSelected(bool sharpMask) override;
|
||||
void sharpMaskSelected(bool sharpMask) override final;
|
||||
int getSpotWBRectSize() const override;
|
||||
void cropSelectionReady() override;
|
||||
void rotateSelectionReady(double rotate_deg, Thumbnail* thm = nullptr) override;
|
||||
ToolBar* getToolBar() const override final;
|
||||
ToolBar* getToolBar() const final;
|
||||
CropGUIListener* startCropEditing(Thumbnail* thm = nullptr) override;
|
||||
|
||||
void updateTPVScrollbar (bool hide);
|
||||
@@ -326,7 +326,7 @@ public:
|
||||
|
||||
// ToolBarListener interface
|
||||
void toolSelected (ToolMode tool) override;
|
||||
void editModeSwitchedOff () override final;
|
||||
void editModeSwitchedOff () final;
|
||||
|
||||
void setEditProvider (EditDataProvider *provider);
|
||||
|
||||
|
Reference in New Issue
Block a user