ebab3f2307
- While here: - Take maintainership - Fix QT_COMPONENTS (doesn't really need designer, only needs qmake-rcc-uic-moc for build) - call qmake in do-configure PR: 132690 Submitted by: Maxim Ignatenko <gelraen dot ua at gmail dot com>
11 lines
465 B
C++
11 lines
465 B
C++
--- src/mainwindow.cpp.orig 2006-01-13 12:56:45.000000000 +0300
|
|
+++ src/mainwindow.cpp 2009-03-17 20:10:37.000000000 +0300
|
|
@@ -123,7 +123,7 @@
|
|
// Load a RFC number
|
|
bool bOK;
|
|
int iRFCNum = QInputDialog::getInteger(this, tr("Please enter a RFC number"),
|
|
- tr("RFC#:"), 0, 1, 5000, 1, &bOK);
|
|
+ tr("RFC#:"), 0, 1, 100000, 1, &bOK);
|
|
if (bOK)
|
|
RFCLoad( iRFCNum );
|
|
}
|