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 /examples/X11 | |
parent | 223bb0b0aa1a50e38f546af5d0e7d38cede5a09f (diff) | |
download | sword-sf-cvs-eb328cd14563269c4c2df8ba4260b859f800001e.tar.gz |
sync with crosswire 20020814-1047
Diffstat (limited to 'examples/X11')
-rw-r--r-- | examples/X11/gtk--/simplefrontend/simplefrontend.cpp | 2 | ||||
-rw-r--r-- | examples/X11/qt/simplefrontend/SimpleFrontEndProject.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/X11/gtk--/simplefrontend/simplefrontend.cpp b/examples/X11/gtk--/simplefrontend/simplefrontend.cpp index ed5192a..b43e17e 100644 --- a/examples/X11/gtk--/simplefrontend/simplefrontend.cpp +++ b/examples/X11/gtk--/simplefrontend/simplefrontend.cpp @@ -61,7 +61,7 @@ public: it = manager.Modules.find(modName.c_str()); if (it != manager.Modules.end()) { - it->second->SetKey(keyText.c_str()); + it->second->setKey(keyText.c_str()); text->delete_text(0, text->get_length()); text->insert_text((const char *)*it->second, strlen(*it->second), &position); l3.set(it->second->KeyText()); diff --git a/examples/X11/qt/simplefrontend/SimpleFrontEndProject.cpp b/examples/X11/qt/simplefrontend/SimpleFrontEndProject.cpp index 3ddc77d..691a026 100644 --- a/examples/X11/qt/simplefrontend/SimpleFrontEndProject.cpp +++ b/examples/X11/qt/simplefrontend/SimpleFrontEndProject.cpp @@ -66,7 +66,7 @@ SimpleFrontEndProject::lookup(const char *) it = manager.Modules.find(modName.c_str()); if (it != manager.Modules.end()) { - it->second->SetKey(keyText.c_str()); + it->second->setKey(keyText.c_str()); mlined1->setText(*it->second); label3->setText(it->second->KeyText()); } |