aboutsummaryrefslogtreecommitdiffstats
path: root/examples/X11
diff options
context:
space:
mode:
Diffstat (limited to 'examples/X11')
-rw-r--r--examples/X11/gtk--/simplefrontend/simplefrontend.cpp2
-rw-r--r--examples/X11/qt/simplefrontend/SimpleFrontEndProject.cpp2
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());
}