34 lines
1,020 B
Text
34 lines
1,020 B
Text
$NetBSD: patch-ay,v 1.3 2001/09/10 08:23:19 skrll Exp $
|
|
|
|
--- kfm/kfmprops.cpp.orig Wed Aug 18 17:15:38 1999
|
|
+++ kfm/kfmprops.cpp
|
|
@@ -2156,14 +2156,18 @@
|
|
mountpoint = new QLineEdit( this, "LineEdit_2" );
|
|
mountpoint->setGeometry( 10, 110, 180, 30 );
|
|
mountpoint->setText( "" );
|
|
+#ifndef __NetBSD__
|
|
if ( !IamRoot )
|
|
mountpoint->setEnabled( false );
|
|
+#endif
|
|
|
|
readonly = new QCheckBox( this, "CheckBox_1" );
|
|
readonly->setGeometry( 220, 40, 130, 30 );
|
|
readonly->setText( klocale->translate("Readonly") );
|
|
+#ifndef __NetBSD__
|
|
if ( !IamRoot )
|
|
readonly->setEnabled( false );
|
|
+#endif
|
|
|
|
tmpQLabel = new QLabel( this, "Label_4" );
|
|
tmpQLabel->move( 10, 150 );
|
|
@@ -2173,8 +2177,10 @@
|
|
fstype = new QLineEdit( this, "LineEdit_3" );
|
|
fstype->setGeometry( 10, 180, 280, 30 );
|
|
fstype->setText( "" );
|
|
+#ifndef __NetBSD__
|
|
if ( !IamRoot )
|
|
fstype->setEnabled( false );
|
|
+#endif
|
|
|
|
tmpQLabel = new QLabel( this, "Label_5" );
|
|
tmpQLabel->move( 10, 220 );
|