author | mickeyl <mickeyl> | 2004-03-08 16:35:56 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-03-08 16:35:56 (UTC) |
commit | 82fb70f4e5d8582185da89264e1a1e3b2517f459 (patch) (side-by-side diff) | |
tree | 12dfcfee4c95d3c96809397197c2b09e6e09cea6 /library/lnkproperties.cpp | |
parent | 15a9a86fbec54292a82663e1b01c93450f3fbbf8 (diff) | |
download | opie-82fb70f4e5d8582185da89264e1a1e3b2517f459.zip opie-82fb70f4e5d8582185da89264e1a1e3b2517f459.tar.gz opie-82fb70f4e5d8582185da89264e1a1e3b2517f459.tar.bz2 |
add a line where the user can insert command line arguments for the AppLnk
-rw-r--r-- | library/lnkproperties.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp index 0661423..865f590 100644 --- a/library/lnkproperties.cpp +++ b/library/lnkproperties.cpp @@ -113,32 +113,35 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) // possibly read-only. d->categoryEdit->hide(); d->docname->setReadOnly( TRUE ); if ( l->property("CanFastload") == "0" ) d->preload->hide(); if ( !l->property("Rotation"). isEmpty ()) { d->rotate->setChecked ( true ); //don't use rotate buttons for now (see comment above) //d->rotateButtons->setButton((l->rotation().toInt()%360)/90); } else { d->rotateButtons->setEnabled(false); } + if ( !l->property( "Arguments" ).isEmpty() ) + d->arguments->setText( l->property( "Arguments" ) ); + Config cfg("Launcher"); cfg.setGroup("Preload"); QStringList apps = cfg.readListEntry("Apps",','); d->preload->setChecked( apps.contains(l->exec()) ); if ( Global::isBuiltinCommand(lnk->exec()) ) d->preload->hide(); // builtins are always fast currentLocation = 0; // apps not movable (yet) } } LnkProperties::~LnkProperties() { } void LnkProperties::unlinkLnk() |