# HG changeset patch # User rubidium # Date 1261419223 0 # Node ID d7bb77a690b4ba0564285df697c353ddbfe526bf # Parent 014650278d9e2e7a09ed9554f433e65dd1c1d862 (svn r18592) -Fix (r18591): argh... save after starting the commit :( diff --git a/src/widget.cpp b/src/widget.cpp --- a/src/widget.cpp +++ b/src/widget.cpp @@ -1605,7 +1605,7 @@ * As we might have cases where the next widget in the array * is a non-Core widget (e.g. NWID_SELECTION) we first get * the base class and then dynamic_cast that. */ - const NWidgetCore *next_wid = dynamic_cast(w->GetWidget(this->index + 1)); + const NWidgetCore *next_wid = dynamic_cast(w->GetWidget(this->index + 1)); if (next_wid != NULL) return next_wid->FindScrollbar(w, false); } return NULL;