<rdar://problem/11852100>

The "stop-line-count-after" and "stop-line-count-before" settings are broken. This fixes them.

llvm-svn: 160071
diff --git a/lldb/source/Target/StackFrameList.cpp b/lldb/source/Target/StackFrameList.cpp
index 84fce4a..6fd410d 100644
--- a/lldb/source/Target/StackFrameList.cpp
+++ b/lldb/source/Target/StackFrameList.cpp
@@ -587,9 +587,7 @@
                            uint32_t first_frame,
                            uint32_t num_frames,
                            bool show_frame_info,
-                           uint32_t num_frames_with_source,
-                           uint32_t source_lines_before,
-                           uint32_t source_lines_after)
+                           uint32_t num_frames_with_source)
 {
     size_t num_frames_displayed = 0;
     
@@ -614,9 +612,7 @@
         
         if (!frame_sp->GetStatus (strm,
                                   show_frame_info,
-                                  num_frames_with_source > first_frame - frame_idx,
-                                  source_lines_before,
-                                  source_lines_after))
+                                  num_frames_with_source > (first_frame - frame_idx)))
             break;
         ++num_frames_displayed;
     }