]> git.saurik.com Git - cycript.git/blobdiff - Location.hpp
Call rl_newline instead of attempting to simulate.
[cycript.git] / Location.hpp
index a53e932d5d5f659ca61078b6a543a2db540707d0..b2d71ae9c3a41781468839c5a1eb650ccac7ebed 100644 (file)
@@ -37,12 +37,12 @@ class CYPosition {
     {
     }
 
-    void lines(unsigned count = 1) {
+    void Lines(unsigned count = 1) {
         column = 0;
         line += count;
     }
 
-    void columns(unsigned count = 1) {
+    void Columns(unsigned count = 1) {
         column += count;
     }
 };