Changeset 8629 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 6, 2008 3:54:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/QIWidgetValidator.cpp
r8170 r8629 225 225 continue; 226 226 /* disconnect to avoid duplicate connections */ 227 disconnect (le, SIGNAL (editingFinished ()), 228 this, SLOT (doRevalidate())); 229 disconnect (le, SIGNAL (cursorPositionChanged (int, int)), 230 this, SLOT (doRevalidate())); 227 231 disconnect (le, SIGNAL (textChanged (const QString &)), 228 232 this, SLOT (doRevalidate())); 233 /* Use all signals which indicate some change in the text. The 234 * textChanged signal isn't sufficient in Qt4. */ 229 235 connect (le, SIGNAL (textChanged (const QString &)), 236 this, SLOT (doRevalidate())); 237 connect (le, SIGNAL (cursorPositionChanged (int, int)), 238 this, SLOT (doRevalidate())); 239 connect (le, SIGNAL (editingFinished ()), 230 240 this, SLOT (doRevalidate())); 231 241 }
Note:
See TracChangeset
for help on using the changeset viewer.