summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-01-05 22:10:30 +0000
committerBram Moolenaar <Bram@vim.org>2005-01-05 22:10:30 +0000
commit06fb435a1c43a1ba114370bc59d8362830885513 (patch)
tree64740b2f0f93da57902fcd631905c69709c91c35 /src
parentf4c01101e749eb2602c9102eabe866445a742e70 (diff)
updated for version 7.0031
Diffstat (limited to 'src')
-rw-r--r--src/gui_kde_wid.cc2
-rw-r--r--src/proto/ex_eval.pro2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_kde_wid.cc b/src/gui_kde_wid.cc
index 52d1c9eadc..abaaa50277 100644
--- a/src/gui_kde_wid.cc
+++ b/src/gui_kde_wid.cc
@@ -1540,7 +1540,7 @@ SBPool::create(GuiScrollbar * sb, int orient)//{{{
}
connect(sb->w, SIGNAL(valueChanged(int)), &mapper, SLOT(map()));
- mapper.setMapping(sb->w, (int)sb);
+ mapper.setMapping(sb->w, (long)sb);
}//}}}
diff --git a/src/proto/ex_eval.pro b/src/proto/ex_eval.pro
index 8156c7aa74..5bf22fa04b 100644
--- a/src/proto/ex_eval.pro
+++ b/src/proto/ex_eval.pro
@@ -27,5 +27,5 @@ void enter_cleanup __ARGS((cleanup_T *csp));
void leave_cleanup __ARGS((cleanup_T *csp));
int cleanup_conditionals __ARGS((struct condstack *cstack, int searched_cond, int inclusive));
void ex_endfunction __ARGS((exarg_T *eap));
-int has_while_cmd __ARGS((char_u *p));
+int has_loop_cmd __ARGS((char_u *p));
/* vim: set ft=c : */