summaryrefslogtreecommitdiff
path: root/src/utils/stringutils.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-08-02 22:58:25 +0300
committerAndrei Karas <akaras@inbox.ru>2011-08-02 22:58:25 +0300
commite1ec49e1934dfc25f21af7b9fa0a8f06fbea8aa3 (patch)
tree90ba22726db9411255afa5d878fe2b47702c9427 /src/utils/stringutils.cpp
parent82194116950eb6977eca992df48fb265e4b5df6c (diff)
downloadplus-e1ec49e1934dfc25f21af7b9fa0a8f06fbea8aa3.tar.gz
plus-e1ec49e1934dfc25f21af7b9fa0a8f06fbea8aa3.tar.bz2
plus-e1ec49e1934dfc25f21af7b9fa0a8f06fbea8aa3.tar.xz
plus-e1ec49e1934dfc25f21af7b9fa0a8f06fbea8aa3.zip
Add ctrl key combination to all text fields.
New keys: Ctrl+b,d,e,f,h,k,u,w Working like in most text editors.
Diffstat (limited to 'src/utils/stringutils.cpp')
-rw-r--r--src/utils/stringutils.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/utils/stringutils.cpp b/src/utils/stringutils.cpp
index ad2e52965..13170092e 100644
--- a/src/utils/stringutils.cpp
+++ b/src/utils/stringutils.cpp
@@ -499,3 +499,15 @@ std::string stringToHexPath(const std::string &str)
hex += strprintf("%%%2x", (int)str[f]);
return hex;
}
+
+void deleteCharLeft(std::string &str, unsigned *pos)
+{
+ while (*pos > 0)
+ {
+ (*pos)--;
+ int v = str[*pos];
+ str.erase(*pos, 1);
+ if ((v & 192) != 128)
+ break;
+ }
+}