tr
("select the photos to display Min=5s Max=60s"),
QLineEdit::Normal,
"10", &ok);
QString text = QInputDialog::getText(this, tr("select photots"),
tr("select the photos to display Min=5s Max=60s"), QLineEdit::Normal,
"10", &ok);
To copy to clipboard, switch view to plain text mode
i have doubt in above code..it executing properly..my doubt,,i need to split the label text in two line
present output:
"select the photots to display Min=5s Max=60s
"select the photots to display Min=5s Max=60s
To copy to clipboard, switch view to plain text mode
i need output is:
"select the photos to display"
"Min=5s Max=60s"
"select the photos to display"
"Min=5s Max=60s"
To copy to clipboard, switch view to plain text mode
what changes i have to make?? please give some suggestion for this
Thanks in advance
Bookmarks