diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-29 23:36:57 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-30 11:22:09 +0100 |
commit | 8a0685d49f679d6f98de2f357f1ec74590573852 (patch) | |
tree | 97eb05105a45186049c1c3dad20233c29747ed9c /uui | |
parent | b18cfdc7cd3755c147970f86d23973f337be01a7 (diff) |
make ResId::toString a non-static member
Change-Id: I756c0a19bea7b1cc0e290d9f382a04d655819bfb
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/logindlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uui/source/logindlg.cxx b/uui/source/logindlg.cxx index 8a15dfe7a8ba..89b86de79058 100644 --- a/uui/source/logindlg.cxx +++ b/uui/source/logindlg.cxx @@ -282,7 +282,7 @@ LoginDialog::LoginDialog UniString aRequest; if ((nFlags & LF_NO_ACCOUNT) != 0 && !rRealm.isEmpty()) { - aRequest = ResId::toString(ResId(STR_LOGIN_REALM, *pResMgr)); + aRequest = ResId(STR_LOGIN_REALM, *pResMgr).toString(); aRequest.SearchAndReplaceAscii("%2", rRealm); } else |