Converting servers information to a Linux file format.

Для переноса информации на линукс версию можно выполнить pgAdmin3.exe с
ключем -el. В логе будет информацио а о файле где была сохранена информация.
This commit is contained in:
lsv 2025-03-17 14:29:56 +05:00 committed by lsv
parent f7c7729eff
commit 431017de6b
2 changed files with 68 additions and 0 deletions

View file

@ -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()
{