merge with dev - I hope no error

This commit is contained in:
Desmis
2018-11-24 14:18:37 +01:00
208 changed files with 2982 additions and 2150 deletions

View File

@@ -74,12 +74,12 @@ protected:
public:
Crop(ImProcCoordinator* parent, EditDataProvider *editDataProvider, bool isDetailWindow);
virtual ~Crop();
~Crop () override;
// MyMutex* locMutex;
void setEditSubscriber(EditSubscriber* newSubscriber);
bool hasListener();
void update(int todo);
void setWindow(int cropX, int cropY, int cropW, int cropH, int skip)
void setWindow (int cropX, int cropY, int cropW, int cropH, int skip) override
{
setCropSizes(cropX, cropY, cropW, cropH, skip, false);
}
@@ -87,12 +87,12 @@ public:
/** @brief Synchronously look out if a full update is necessary
* First try, only make fullUpdate if this returns false
*/
bool tryUpdate();
bool tryUpdate () override;
/** @brief Asynchronously reprocess the detailed crop */
void fullUpdate(); // called via thread
void fullUpdate () override; // called via thread
void setListener(DetailedCropListener* il);
void destroy();
void setListener (DetailedCropListener* il) override;
void destroy () override;
int get_skip();
int getLeftBorder();
int getUpperBorder();