aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/selection.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-13 20:05:59 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commita2104deb4cefdcf0cd6bb3a66ef09bb46cba3f66 (patch)
tree802a8abed7a2f97aa9fa0d7f467054a9e0ab79b8 /engines/glk/selection.cpp
parent1fb931fbd950324754536ee0b33ed0b91f68c9a2 (diff)
downloadscummvm-rg350-a2104deb4cefdcf0cd6bb3a66ef09bb46cba3f66.tar.gz
scummvm-rg350-a2104deb4cefdcf0cd6bb3a66ef09bb46cba3f66.tar.bz2
scummvm-rg350-a2104deb4cefdcf0cd6bb3a66ef09bb46cba3f66.zip
GLK: Changing class and namespaces from Gargoyle to Glk
Diffstat (limited to 'engines/glk/selection.cpp')
-rw-r--r--engines/glk/selection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/glk/selection.cpp b/engines/glk/selection.cpp
index f1c5bb86dc..2bc4fb81cb 100644
--- a/engines/glk/selection.cpp
+++ b/engines/glk/selection.cpp
@@ -22,11 +22,11 @@
#include "glk/selection.h"
#include "glk/conf.h"
-#include "glk/gargoyle.h"
+#include "glk/glk.h"
#include "glk/windows.h"
#include "common/system.h"
-namespace Gargoyle {
+namespace Glk {
void Clipboard::clipboardStore(const Common::U32String &text) {
_text = text;
@@ -318,4 +318,4 @@ bool Selection::getSelection(const Rect &r, int *rx0, int *rx1) const {
return (rx0 && rx1);
}
-} // End of namespace Gargoyle
+} // End of namespace Glk