Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Windows/Control/ComboBox.cpp')
-rw-r--r--[-rwxr-xr-x]CPP/Windows/Control/ComboBox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/CPP/Windows/Control/ComboBox.cpp b/CPP/Windows/Control/ComboBox.cpp
index 40d2f865..9b458fe4 100755..100644
--- a/CPP/Windows/Control/ComboBox.cpp
+++ b/CPP/Windows/Control/ComboBox.cpp
@@ -3,10 +3,10 @@
#include "StdAfx.h"
#ifndef _UNICODE
-#include "Common/StringConvert.h"
+#include "../../Common/StringConvert.h"
#endif
-#include "Windows/Control/ComboBox.h"
+#include "ComboBox.h"
#ifndef _UNICODE
extern bool g_IsNT;
@@ -51,7 +51,7 @@ LRESULT CComboBox::GetLBText(int index, UString &s)
if (len == CB_ERR)
return len;
s = GetUnicodeString(sa);
- return s.Length();
+ return s.Len();
}
#endif