Re: pgAdmin III commit: Fix selection of objects in backup/restore dialogs - Mailing list pgadmin-hackers

From Thom Brown
Subject Re: pgAdmin III commit: Fix selection of objects in backup/restore dialogs
Date
Msg-id AANLkTinnbiAhSVxu7w95vZdrgidDw2-USk+pnFCKJxwZ@mail.gmail.com
Whole thread Raw
In response to pgAdmin III commit: Fix selection of objects in backup/restore dialogs  (Guillaume Lelarge <guillaume@lelarge.info>)
Responses Re: pgAdmin III commit: Fix selection of objects in backup/restore dialogs
List pgadmin-hackers
On 12 March 2011 09:27, Guillaume Lelarge <guillaume@lelarge.info> wrote:
> Fix selection of objects in backup/restore dialogs
>
> When a user selects a table, the schema and the database should be selected as
> well. This patch handles this automatically.
>
> Report from Melvin Davidson.
>
> Branch
> ------
> REL-1_12_0_PATCHES
>
> Details
> -------
> http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=cbf2e0765ebf18da6256852bf53021d26287630a
>
> Modified Files
> --------------
> CHANGELOG                              |    2 ++
> pgadmin/ctl/ctlCheckTreeView.cpp       |   15 ++++++++++++---
> pgadmin/include/ctl/ctlCheckTreeView.h |    1 +
> 3 files changed, 15 insertions(+), 3 deletions(-)

Sorry for the following bit of noise, but...

Is there any need for this line?:

if (newimage == 0 || newimage == 1)

newimage is initialised as 0, and can only otherwise be set to 1, so
I'm not sure where this logic comes in.

Also, I'm not clear as to why if, when newimage = 1, the parent image
is seemingly set twice.  I'm referring to the function being called
suggesting both the parent and child image is being set, followed by
the parent image.  Shouldn't there at least be an "else if" in there,
or is one of them misnamed?

Cheers

--
Thom Brown
Twitter: @darkixion
IRC (freenode): dark_ixion
Registered Linux user: #516935

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

pgadmin-hackers by date:

Previous
From: Dave Page
Date:
Subject: Re: [pgadmin-hackers] Re: [pgadmin-hackers] Re: [pgadmin-hackers] error: expected initializer before ‘!’ token
Next
From: Guillaume Lelarge
Date:
Subject: Re: pgAdmin III commit: Fix selection of objects in backup/restore dialogs