Clipped S/H variable name capitalization change for readability

This commit is contained in:
Morgan Hardwood
2017-09-01 15:05:06 +02:00
parent 1e36c564a7
commit 64116d88c1
2 changed files with 28 additions and 28 deletions

View File

@@ -27,8 +27,8 @@ class IndicateClippedPanel : public Gtk::HBox
protected:
Gtk::Image* iFon, *iFoff;
Gtk::ToggleButton* previewFocusMask;
Gtk::ToggleButton* indclippedh;
Gtk::ToggleButton* indclippeds;
Gtk::ToggleButton* indClippedH;
Gtk::ToggleButton* indClippedS;
ImageArea* imageArea;
public:
@@ -48,11 +48,11 @@ public:
}
bool showClippedShadows()
{
return indclippeds->get_active();
return indClippedS->get_active();
}
bool showClippedHighlights()
{
return indclippedh->get_active();
return indClippedH->get_active();
}
};