summaryrefslogtreecommitdiff
path: root/src/utils/copynpaste.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-08-21 14:37:03 +0300
committerAndrei Karas <akaras@inbox.ru>2013-08-24 21:08:14 +0300
commitec1beaa2ee07368368e9bd45fe400eedc57419eb (patch)
treec8f4792dc2316c7cc852bcf6738dff7557d9b872 /src/utils/copynpaste.cpp
parent8d4af08b165e10d7e82380074ce733ee9d068c6a (diff)
downloadplus-ec1beaa2ee07368368e9bd45fe400eedc57419eb.tar.gz
plus-ec1beaa2ee07368368e9bd45fe400eedc57419eb.tar.bz2
plus-ec1beaa2ee07368368e9bd45fe400eedc57419eb.tar.xz
plus-ec1beaa2ee07368368e9bd45fe400eedc57419eb.zip
first part of fixes for compilation with SDL2
Diffstat (limited to 'src/utils/copynpaste.cpp')
-rw-r--r--src/utils/copynpaste.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp
index b2d241f16..1d4297fd5 100644
--- a/src/utils/copynpaste.cpp
+++ b/src/utils/copynpaste.cpp
@@ -339,6 +339,8 @@ static char* getSelection(Display *const dpy, Window us, Atom selection)
bool retrieveBuffer(std::string& text, size_t& pos)
{
+// +++ need use SDL_GetWindowWMInfo
+#ifndef USE_SDL2
SDL_SysWMinfo info;
SDL_VERSION(&info.version);
@@ -376,6 +378,7 @@ bool retrieveBuffer(std::string& text, size_t& pos)
return true;
}
}
+#endif
return false;
}