Home > Enterprise >  error: ‘SkipEmptyParts’ is not a member of ‘Qt’
error: ‘SkipEmptyParts’ is not a member of ‘Qt’

Time:11-16

I am randomly encountering this error without updating the code using qt5:

error: ‘SkipEmptyParts’ is not a member of ‘Qt’

CodePudding user response:

I solved replacing Qt::SkipEmptyParts with QString::SkipEmptyParts because Qt::SkipEmptyParts has been deprecated.

  • Related