Home
last modified time | relevance | path

Searched refs:baseUrlStart (Results 1 – 1 of 1) sorted by relevance

/haiku/src/apps/webpositive/
H A DURLInputGroup.cpp366 int32 baseUrlStart = text.FindFirst("://"); in InsertText() local
367 if (baseUrlStart >= 0) in InsertText()
368 baseUrlStart += 3; in InsertText()
370 baseUrlStart = 0; in InsertText()
371 int32 baseUrlEnd = text.FindFirst("/", baseUrlStart); in InsertText()
380 if (baseUrlStart > 0) in InsertText()
381 SetFontAndColor(0, baseUrlStart, &font, B_FONT_ALL, &urlColor); in InsertText()
382 if (baseUrlEnd > baseUrlStart) { in InsertText()
384 SetFontAndColor(baseUrlStart, baseUrlEnd, &font, B_FONT_ALL, in InsertText()