mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Fix extraneous parentheses warning
This commit is contained in:
parent
6e3c89c217
commit
3f87271ea6
3 changed files with 3 additions and 3 deletions
|
@ -2074,7 +2074,7 @@ extern int unzReadCurrentFile (unzFile file, void *buf, unsigned len)
|
|||
return UNZ_PARAMERROR;
|
||||
|
||||
|
||||
if ((pfile_in_zip_read_info->read_buffer == NULL))
|
||||
if (pfile_in_zip_read_info->read_buffer == NULL)
|
||||
return UNZ_END_OF_LIST_OF_FILE;
|
||||
if (len==0)
|
||||
return 0;
|
||||
|
|
|
@ -2071,7 +2071,7 @@ extern int unzReadCurrentFile (unzFile file, void *buf, unsigned len)
|
|||
return UNZ_PARAMERROR;
|
||||
|
||||
|
||||
if ((pfile_in_zip_read_info->read_buffer == NULL))
|
||||
if (pfile_in_zip_read_info->read_buffer == NULL)
|
||||
return UNZ_END_OF_LIST_OF_FILE;
|
||||
if (len==0)
|
||||
return 0;
|
||||
|
|
|
@ -1010,7 +1010,7 @@ rectangle_t rectangle_from_area_xy(){
|
|||
|
||||
void update_xor_rectangle_xy( XORRectangle& xor_rectangle ){
|
||||
rectangle_t rectangle;
|
||||
if ( ( g_qeglobals.d_select_mode == sel_area ) ) {
|
||||
if ( g_qeglobals.d_select_mode == sel_area ) {
|
||||
rectangle = rectangle_from_area_xy();
|
||||
}
|
||||
xor_rectangle.set( rectangle );
|
||||
|
|
Loading…
Reference in a new issue