Fixed error messages that appeared when KHexEdit was started from CLI.

This resolves bug 1810.
pull/1/head
Michele Calgaro 10 years ago
parent ddf4ccdfc6
commit 62b21ffc2e

@ -57,7 +57,7 @@ CHexToolWidget::CHexToolWidget( TQWidget *parent, const char *name )
i18n("Binary:"), i18n("Text:")
};
TQGridLayout *ValuesBox = new TQGridLayout( this, 4, 6, 0, KDialog::spacingHint() );
TQGridLayout *ValuesBox = new TQGridLayout( NULL, 4, 6, 0, KDialog::spacingHint() );
ValuesBox->setColStretch( 2, 10 );
ValuesBox->setColStretch( 5, 10 );
@ -91,7 +91,7 @@ CHexToolWidget::CHexToolWidget( TQWidget *parent, const char *name )
mUtilBox->addWidget( mText3[i], i, 2 );
}
TQBoxLayout * SettingsBox = new TQHBoxLayout( this, 0, KDialog::spacingHint() );
TQBoxLayout * SettingsBox = new TQHBoxLayout( NULL, 0, KDialog::spacingHint() );
text = i18n("Show little endian decoding");
mCheckIntelFormat = new TQCheckBox( text, this );

Loading…
Cancel
Save