Skip to content

Commit aa09469

Browse files
committed
2 parents bc951b2 + c61a024 commit aa09469

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

DebugView++/LogView.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1602,13 +1602,13 @@ int CLogView::FindLine(Predicate pred, int direction) const
16021602
SetCursor(::LoadCursor(nullptr, IDC_ARROW));
16031603
Win32::ScopedCursor cursor(::LoadCursor(nullptr, IDC_WAIT));
16041604

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

16081608
if (m_logLines.empty())
16091609
return -1;
16101610

1611-
auto size = m_logLines.size();
1611+
auto size = static_cast<int> (m_logLines.size());
16121612
do
16131613
{
16141614
line += direction;

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ Debugview++, currently at v1.8
55

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

8-
[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)
8+
[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)
9+
10+
[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 **
911

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

0 commit comments

Comments
 (0)