Searched defs:numVal (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/ui/dialog/
H A Dcolor-item.cpp170 static bool popVal( guint64& numVal, std::string& str ) argument
182 numVal = g_ascii_strtoull( ptr, &endPtr, 10 );
183 if ( (numVal == G_MAXUINT64) && (ERANGE == errno) ) {
185 } else if ( (numVal == 0) && (endPtr == ptr) ) {
H A Dswatches.cpp476 guint64 numVal = g_ascii_strtoull( val, &endPtr, 10 ); local
477 if ( (numVal == G_MAXUINT64) && (ERANGE == errno) ) {
479 } else if ( (numVal == 0) && (endPtr == val) ) {
482 onceMore->_prefWidth = numVal;

Completed in 14 milliseconds