diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-17 22:11:51 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-17 22:11:59 +0300 |
commit | 3ad5334f17119c9ae010d5059f5cfb1831c9ddbd (patch) | |
tree | 1d76618499baee7cf217c97dfe2045b467d20a0a /plugins/Quotes | |
parent | f632783f27da5dd0ed3513bbee6182ea8af30afe (diff) |
more warning fixes
Diffstat (limited to 'plugins/Quotes')
-rw-r--r-- | plugins/Quotes/src/ImportExport.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Quotes/src/ImportExport.cpp b/plugins/Quotes/src/ImportExport.cpp index 081023b6a2..b68cc67103 100644 --- a/plugins/Quotes/src/ImportExport.cpp +++ b/plugins/Quotes/src/ImportExport.cpp @@ -222,10 +222,10 @@ INT_PTR Quotes_Export(WPARAM wp, LPARAM lp) }
}
else {
- for (auto &hContact : Contacts(QUOTES_MODULE_NAME)) {
- CQuotesProviders::TQuotesProviderPtr pProvider = pProviders->GetContactProviderPtr(hContact);
+ for (auto &cc : Contacts(QUOTES_MODULE_NAME)) {
+ CQuotesProviders::TQuotesProviderPtr pProvider = pProviders->GetContactProviderPtr(cc);
if (pProvider) {
- IXMLNode::TXMLNodePtr pNode = export_contact(hContact, pXmlEngine);
+ IXMLNode::TXMLNodePtr pNode = export_contact(cc, pXmlEngine);
if (pNode)
pRoot->AddChild(pNode);
}
|