Wojciech Sura
Wojciech Sura
I have suggestion to modify the API header in the following way: ``` #ifndef UNIT_TESTS #ifdef LIBRARY_EXPORTS #define LIBRARY_EXPORT EXTERN_C #else #define LIBRARY_EXPORT EXTERN_C __declspec(dllimport) #endif // LIBRARY_EXPORTS #define PLUGIN_EXPORT...
I have the following code: ```java public Operation getLocalOperation(int mostRecentOperation, int skip) { try { Operation operation = databaseHelper.getOperationDao().queryBuilder() .orderBy(Operation.ID_FIELD, true) .offset((long)skip) .where() .isNull(Operation.FOREIGN_USER_FIELD) .and() .ge(Operation.ID_FIELD, mostRecentOperation) .queryForFirst(); return operation;...
#### Description In the rendered image, one of the paths, which are on the image, is missing. #### Example data Open the attached SVGs in an editor (e.g. Inkscape). You...
I created and stored a number of `KeyImage` images to improve performance during switching screens. However, during using such images, I ran into an exception: ```csharp Type: System.ArgumentNullException Message: Value...
Occasionally, when button image is replaced with `KeyImage.Black`, it does not get replaced at all, leaving images from previous screen. This happens when all buttons are replaced in sequence (e.g....