Added ability to select language in SettingsDlg

Redesigned SettingsDlg

git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@232 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
sniperbeamer
2008-10-07 14:46:07 +00:00
parent ef92de215c
commit f88ca3f4c0
14 changed files with 1870 additions and 1373 deletions

View File

@@ -132,7 +132,8 @@ bool Import_PwManager::parseXmlContent(char* content){
if(!groups.elementsByTagName("c"+QString::number(i)).item(0).isElement())return false;
CurrGroup=groups.elementsByTagName("c"+QString::number(i)).item(0).toElement();
if(!CurrGroup.hasAttribute("n"))return false;
IGroupHandle* NewGroup=database->addGroup(&CGroup(),NULL);
CGroup tmpGroup;
IGroupHandle* NewGroup=database->addGroup(&tmpGroup,NULL);
NewGroup->setTitle(CurrGroup.attribute("n"));
int j=0;
while(1){