diff options
author | danglassey <danglassey> | 2002-08-14 10:47:42 +0000 |
---|---|---|
committer | danglassey <danglassey> | 2002-08-14 10:47:42 +0000 |
commit | eb328cd14563269c4c2df8ba4260b859f800001e (patch) | |
tree | 7d778370e8b030b695bd578fc1ccba76d03c056b /apps/windoze/CBuilder5/BibleCS/vrslstfrm.cpp | |
parent | 223bb0b0aa1a50e38f546af5d0e7d38cede5a09f (diff) | |
download | sword-sf-cvs-eb328cd14563269c4c2df8ba4260b859f800001e.tar.gz |
sync with crosswire 20020814-1047
Diffstat (limited to 'apps/windoze/CBuilder5/BibleCS/vrslstfrm.cpp')
-rw-r--r-- | apps/windoze/CBuilder5/BibleCS/vrslstfrm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/windoze/CBuilder5/BibleCS/vrslstfrm.cpp b/apps/windoze/CBuilder5/BibleCS/vrslstfrm.cpp index ac0f3b9..48d0aa0 100644 --- a/apps/windoze/CBuilder5/BibleCS/vrslstfrm.cpp +++ b/apps/windoze/CBuilder5/BibleCS/vrslstfrm.cpp @@ -24,9 +24,9 @@ void __fastcall TVerseListFrm::ListBox1Click(TObject *Sender) { target = Form1->mainmgr->Modules.find(Form1->TextPageControl->ActivePage->Caption.c_str()); if (target != Form1->mainmgr->Modules.end()) { SWKey *savekey = *(*target).second; - (*target).second->SetKey(ListBox1->Items->Strings[ListBox1->ItemIndex].c_str()); + target->second->setKey(ListBox1->Items->Strings[ListBox1->ItemIndex].c_str()); pvrtf->Display(*(*target).second); - (*target).second->SetKey(*savekey); + (*target).second->setKey(*savekey); } } //--------------------------------------------------------------------------- |