[0.2.x] fixed : set version to 0.2.0.22

git-svn-id: https://pykd.svn.codeplex.com/svn@84686 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\kernelnet_cp 2013-08-13 15:45:14 +00:00 committed by Mikhail I. Izmestev
parent 1fb1f483dd
commit 95d1365233
2 changed files with 3 additions and 3 deletions

View File

@ -198,8 +198,8 @@ SymbolPtr DiaSymbol::getChildByName(const std::string &name)
SymbolPtr DiaSymbol::getChildBySelected(const SelectedChilds &selected, const std::string &name) SymbolPtr DiaSymbol::getChildBySelected(const SelectedChilds &selected, const std::string &name)
{ {
if (selected.second > 1) if (selected.second == 0)
throw SymbolException(name + "is ambiguous"); throw SymbolException(name + " is not found");
DiaSymbolPtr child; DiaSymbolPtr child;
HRESULT hres = selected.first->Item(0, &child); HRESULT hres = selected.first->Item(0, &child);

View File

@ -2,7 +2,7 @@
#define PYKD_VERSION_MAJOR 0 #define PYKD_VERSION_MAJOR 0
#define PYKD_VERSION_MINOR 2 #define PYKD_VERSION_MINOR 2
#define PYKD_VERSION_SUBVERSION 0 #define PYKD_VERSION_SUBVERSION 0
#define PYKD_VERSION_BUILDNO 21 #define PYKD_VERSION_BUILDNO 22
#define __VER_STR2__(x) #x #define __VER_STR2__(x) #x