I have a char array of "some size" and i want my user to change its values thru a GUI(widget). I was looking for like Q3MultiLineEdit equivalent in Qt4 of some sort . I would like to limit the input to "some size" so that i don't have worry about memory pointers on the loose when i convert my QString to my char arrays,

Is there such a thing that i can limit the number of inputs in QLineEdit or QTextBrowser?

baray98