Skip to content
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.

Commit

Permalink
fix pg_dump option, some TODO updates
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.pgadmin.org/trunk@3859 a7884b65-44f6-0310-8a51-81a127f17b15
  • Loading branch information
Andreas Pflug committed Nov 17, 2004
1 parent bb2c70d commit 02b5970
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions BUGS.txt
Expand Up @@ -11,6 +11,7 @@
<li>[gtk] combobox positioning when height is not specified; current workaround: fixed 12d height
<li>[Edit Grid] several platform-dependent misbehaviours when
starting editing a cell (F2 or any key): waiting for new wxGrid implementation
<li>[gtk] Crash with some themes; probably gtk issue.
</ul><br>
<b>Known issues, but might stay unfixed</b>
<ul>
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.txt
Expand Up @@ -17,6 +17,7 @@ The following list contains all changes to pgAdmin3, as present in cvs.
</ul>
<br>
<ul>
<li>2004-11-16 AP 1.2RC3 fix pg_dump option
<li>2004-11-10 AP 1.2RC2 Remove tablespace from schema (pgsql post-beta4 change)
<li>2004-11-10 AP 1.2RC2 Fix properties for multiply inherited tables (r: Riccardo G. Facchini)
<li>2004-11-10 AP 1.2RC2 Fix OSX issue (r: Patrick Hatcher)
Expand Down
1 change: 1 addition & 0 deletions TODO.txt
Expand Up @@ -8,6 +8,7 @@
<ul>
<li>recreate views after column type change
<li>add MATCH support for triggers
<li>interpret pg_dump listing output as Unicode
</ul>

<li>Refactoring
Expand Down
2 changes: 1 addition & 1 deletion src/ui/frmBackup.cpp
Expand Up @@ -139,7 +139,7 @@ void frmBackup::OnChangePlain(wxCommandEvent &ev)
chkNoOwner->Enable(isPlain);
chkDropDb->Enable(isPlain);
chkCreateDb->Enable(isPlain);
chkDisableTrigger->Enable(isPlain);
chkDisableTrigger->Enable(chkOnlyData->GetValue());
}


Expand Down

0 comments on commit 02b5970

Please sign in to comment.