Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/djeedjay/DebugViewPP
Browse files Browse the repository at this point in the history
  • Loading branch information
janwilmans committed Aug 30, 2018
2 parents bc951b2 + c61a024 commit aa09469
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions DebugView++/LogView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1602,13 +1602,13 @@ int CLogView::FindLine(Predicate pred, int direction) const
SetCursor(::LoadCursor(nullptr, IDC_ARROW));
Win32::ScopedCursor cursor(::LoadCursor(nullptr, IDC_WAIT));

size_t begin = std::max(GetNextItem(-1, LVNI_FOCUSED), 0);
size_t line = begin;
int begin = std::max(GetNextItem(-1, LVNI_FOCUSED), 0);
int line = begin;

if (m_logLines.empty())
return -1;

auto size = m_logLines.size();
auto size = static_cast<int> (m_logLines.size());
do
{
line += direction;
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ Debugview++, currently at v1.8

[![Build status](https://ci.appveyor.com/api/projects/status/ho962elp8chrdga0/branch/master?svg=true)](https://ci.appveyor.com/project/janwilmans/debugview/branch/master)

[Download latest here](https://github.com/djeedjay/DebugViewPP/releases), I would really like to hear what you think! Leave any [**comments here**](https://github.com/djeedjay/DebugViewPP/issues/283)
[Download latest release](https://github.com/djeedjay/DebugViewPP/releases), I would really like to hear what you think! Leave any [**comments here**](https://github.com/djeedjay/DebugViewPP/issues/283)

[Download head version ](https://ci.appveyor.com/project/janwilmans/debugview/build/artifacts) ** only pick this if your feeling lucky and want to try the latest commits **

Questions? Tweet me at [**@janwilmans**](https://twitter.com/janwilmans) or chat on skype at 'janwilmans'.
There is also a [slack channel](https://cpplang.slack.com/messages/debugviewpp)
Expand Down

0 comments on commit aa09469

Please sign in to comment.