mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
Converting servers information to a Linux file format.
Для переноса информации на линукс версию можно выполнить pgAdmin3.exe с ключем -el. В логе будет информацио а о файле где была сохранена информация.
This commit is contained in:
parent
f7c7729eff
commit
431017de6b
2 changed files with 68 additions and 0 deletions
|
|
@ -29,6 +29,12 @@ public:
|
|||
// Display options
|
||||
bool GetDisplayOption(const wxString &objtype, bool GetDefault = false);
|
||||
void SetDisplayOption(const wxString &objtype, bool display);
|
||||
bool GetFirstGroup(wxString& str, long& lIndex) { return wxConfig::GetFirstGroup(str,lIndex); };
|
||||
bool GetNextGroup(wxString& str, long& lIndex) { return wxConfig::GetNextGroup(str, lIndex); };
|
||||
bool GetFirstEntry(wxString& str, long& lIndex) { return wxConfig::GetFirstEntry(str, lIndex); };
|
||||
bool GetNextEntry(wxString& str, long& lIndex) { return wxConfig::GetNextEntry(str, lIndex); };
|
||||
EntryType GetEntryType(wxString& str) { return wxConfig::GetEntryType(str); };
|
||||
void SetPath(wxString& str) { return wxConfig::SetPath(str); };
|
||||
|
||||
void FlushChanges()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue