Sélectionner une révision Git
-
Kubat a rédigé
Two main folders: Lib and UI. The Lib is specialized in Document and Ass, the UI is specialized for private DocumentViews (private document views) and others (future ScriptViews, etc)
Kubat a rédigéTwo main folders: Lib and UI. The Lib is specialized in Document and Ass, the UI is specialized for private DocumentViews (private document views) and others (future ScriptViews, etc)
Line.cc 279 o
#include "Line.hh"
using namespace Vivy::Ass;
Line::Line(const QString & /*unused*/)
{
}
void
Line::setStart(quint64 s) noexcept
{
start = s;
if (s > end)
end = s;
}
void
Line::setEnd(quint64 s) noexcept
{
end = s;
if (start > s)
start = s;
}