Commit graph

200 commits

Author SHA1 Message Date
Stephen Kelly ed2872074e Simplify some Qt module style includes.
This is the easiest way to transition to Qt5.
2012-04-10 00:20:22 +02:00
Montel Laurent d592f31cde normalize signals/slots 2011-07-31 13:33:56 +02:00
Burkhard Lück 65efab66e9 add context to message to avoid wrong translations
for as single message is nearly impossible to translate properly as happened in the german team
adding some context helps to avoid such mistakes
2011-07-12 22:23:28 +02:00
Sebastian Sauer e194f67ae1 * make pressing return in dirBox do startSearch() too (same as with nameBox and containingText)
* proper redirect the tabwidget's startSearch with the dialogs startSearch. This fixes the before unused connect(nameBox,SIGNAL(activated(int)) which got removed and makes using user3 not needed any longer cause we are handling returnPressed() direct now (same like it was done at containingText).


svn path=/trunk/KDE/kdebase/apps/; revision=1196288
2010-11-12 22:55:58 +00:00
Laurent Montel ac2789981a Use QLatin1String in setObjectName (added with a script)
svn path=/trunk/KDE/kdebase/apps/; revision=1178049
2010-09-22 07:35:22 +00:00
Bernhard Beschow 11e30e184b autocomplete directories
svn path=/trunk/KDE/kdebase/apps/; revision=1134823
2010-06-05 12:18:46 +00:00
Bernhard Beschow a0a95f3e5d cleanup
svn path=/trunk/KDE/kdebase/apps/; revision=1134822
2010-06-05 12:18:43 +00:00
Darío Andrés Rodríguez 18f276948c - QString::isNull -> QString::isEmpty
svn path=/trunk/KDE/kdebase/apps/; revision=1092333
2010-02-18 18:31:09 +00:00
Chusslove Illich 5a8a89b731 i18n: added dynamic contexts (label 'during the previous' may needs to match units as well, not only number).
svn path=/trunk/KDE/kdebase/apps/; revision=1063866
2009-12-19 13:07:27 +00:00
Andrius Štikonas af01183d32 i18n: Make comboBoxes plural aware.
svn path=/trunk/KDE/kdebase/apps/; revision=1025570
2009-09-19 06:19:51 +00:00
Andrius Štikonas b537b844ea Use KIntSpinBox instead of QSpinBox for better integration with KDE. As a bonus this allows to use plural suffix in spinboxes since KDE 4.3 if necessary.
svn path=/trunk/KDE/kdebase/apps/; revision=989742
2009-06-30 20:09:04 +00:00
Raphael Kubo da Costa 3f39acbf43 Fix some Krazy issues with postfix increments.
svn path=/trunk/KDE/kdebase/apps/; revision=966350
2009-05-11 03:03:54 +00:00
Albert Astals Cid 2a18f8c043 const & for foreach
svn path=/trunk/KDE/kdebase/apps/; revision=952188
2009-04-11 11:20:13 +00:00
Darío Andrés Rodríguez 8bd2f963c9 Fix krazy2 reported issues
svn path=/trunk/KDE/kdebase/apps/; revision=947602
2009-03-31 21:06:56 +00:00
Darío Andrés Rodríguez b38f69b859 Rename Kfwin -> KFindTreeView
svn path=/trunk/KDE/kdebase/apps/; revision=947590
2009-03-31 20:23:05 +00:00
Darío Andrés Rodríguez 1f279b7d18 Implement optional "Show Hidden Files" (disabled by default)
It will be on KDE4.3

BUG: 165312

svn path=/trunk/KDE/kdebase/apps/; revision=945608
2009-03-27 19:48:03 +00:00
Urs Wolfer 168456daa8 No more Qt3 support required.
svn path=/trunk/KDE/kdebase/apps/; revision=944895
2009-03-26 12:59:45 +00:00
Laurent Montel b7a278c4bf Fix iterator
svn path=/trunk/KDE/kdebase/apps/; revision=883014
2008-11-11 21:46:50 +00:00
Laurent Montel aa68df43eb It's a klineedit not necessary to use dynamic_cast etc...
svn path=/trunk/KDE/kdebase/apps/; revision=878988
2008-11-02 11:31:29 +00:00
Percy Camilo Triveño Aucahuasi 13f7d16e6e Why this LineEdit had disabled the clear button? ... fixed ;)
svn path=/trunk/KDE/kdebase/apps/; revision=878790
2008-11-01 19:47:04 +00:00
Harald Sitter 64b2d1646d Don't load mimetype icons at startup, they decrease the startup time by 6-10x
OPTIMIZE

svn path=/trunk/KDE/kdebase/apps/; revision=867629
2008-10-04 01:12:10 +00:00
Malcolm Hunter 62b677724c Typo fix
svn path=/trunk/KDE/kdebase/apps/; revision=794192
2008-04-06 21:06:20 +00:00
Urs Wolfer c558ce95c9 Fix: Wrong style of 'during the previous' field.
Patch by FiNeX. Thanks!
BUG: 152976

svn path=/trunk/KDE/kdebase/apps/; revision=744176
2007-12-02 21:18:46 +00:00
Enrique Matías Sánchez 31ea479174 According to the International System of Units standards:
lowercase k stands for kilo (10^3)
       uppercase K stands for Kelvin

According to IEC 60027-2 and IEEE 1541:
    the prefix Ki (kibi) stands for 2^10
    the prefix Mi (mebi) stands for 2^20


svn path=/trunk/KDE/kdebase/apps/; revision=736049
2007-11-13 11:33:38 +00:00
Oswald Buddenhagen f0a2014528 KConfig* API overhaul. only cosmetics, so don't panic.
KConfigBase:
- remove separator argument from list entry reading/writing functions
- introduce {read,write}XdgListEntry()
- kill readPathListEntry(), add readPathEntry() overload
  instead. the default value is not optional any more, as it defines the
  return type. this is consistent with the readEntry() functions.
- rename clean() => markAsClean(), remove rollback()
- rename ConfigState => AccessMode, getConfigState() => accessMode()
- rename {entry,group}IsImmutable() => is{Entry,Group}Immutable()
- remove NLS alias to Localized

KConfig:
- remove setGroup() & group()
- reshuffle OpenFlag enum, introduce NoCascade for symmetry
- remove setExtraConfigFiles() alias to addConfigSources()

KConfigGroup:
- inherit KConfigBase::deleteGroup() overloads
- make convertToQVariant() private, it will probably change somehow

- KConfig & KConfigGroup: deprecate entryMap()
- remove bogus declarations: KConfigGroup::setReadDefaults(),
  KConfig::readEntryUntranslated()
- apidox
- reshuffle the declarations in the headers


svn path=/trunk/KDE/kdebase/apps/; revision=728852
2007-10-24 13:08:37 +00:00
Rafael Fernández López 59283c43c1 Code adaptation because of changes on libraries related to revision 719630
svn path=/trunk/KDE/kdebase/apps/; revision=719642
2007-10-01 15:09:41 +00:00
Arto Hytönen 15458e880d a lot of i18n tags and other small krazy issues fixed, nothing major
svn path=/trunk/KDE/kdebase/apps/; revision=702784
2007-08-21 07:02:04 +00:00
Rafael Fernández López cf55674128 Porting issues. This code needs a general review
svn path=/trunk/KDE/kdebase/apps/; revision=700093
2007-08-14 20:12:19 +00:00
Max Blazejak a30ce8ff31 EBN fixes (includes, typos etc.
svn path=/trunk/KDE/kdebase/apps/; revision=669964
2007-05-30 22:06:49 +00:00
Laurent Montel 186bbaddde Fix load dialog
svn path=/trunk/KDE/kdebase/apps/; revision=667705
2007-05-23 17:18:49 +00:00
Dirk Mueller 52d6d2f9ce include cleanup
svn path=/trunk/KDE/kdebase/apps/; revision=663054
2007-05-09 22:23:52 +00:00
Laurent Montel e66f2c7b48 Include fix
svn path=/trunk/KDE/kdebase/apps/; revision=656565
2007-04-21 18:28:47 +00:00
Dirk Mueller 0b5a5f290c include cleanup
svn path=/trunk/KDE/kdebase/konqueror/; revision=652987
2007-04-12 13:02:58 +00:00
David Jarvie 15e500cf08 Add fancy date option to KLocale::formatDate(), KLocale::formatDateTime()
svn path=/trunk/KDE/kdebase/apps/; revision=652027
2007-04-09 22:28:48 +00:00
Stephan Kulow 64dda4865c merged kconfiggroup_port branch
svn path=/trunk/KDE/kdebase/konqueror/; revision=635490
2007-02-20 07:00:30 +00:00
David Faure 0775eb726d KMimeType::pixmap -> KIconLoader::loadMimeTypeIcon with the help of convert-kmimetype-pixmap.pl
svn path=/trunk/KDE/kdebase/apps/; revision=631256
2007-02-07 14:46:08 +00:00
Matthias Kretz 979dfb806a merge the kinstance-redesign branch back to trunk.
svn path=/trunk/KDE/kdebase/konqueror/; revision=628276
2007-01-29 17:14:20 +00:00
Martin Koller 0a56b0ac56 forwardport of 90953
use prettyUrl() instead of url() in "Look in:" field

svn path=/trunk/KDE/kdebase/apps/; revision=607847
2006-11-25 22:59:22 +00:00
Stephan Kulow b7b0385435 replacing openURL with openUrl unless it's about kfmclient
svn path=/trunk/KDE/kdebase/konqueror/; revision=580680
2006-09-04 08:34:26 +00:00
Urs Wolfer 59e4afe8ca * Work on layout. It looks now like the KDE3 one.
* cleanups: remove unused and outdated files, source-cleanups

svn path=/trunk/KDE/kdebase/apps/; revision=572747
2006-08-13 20:14:25 +00:00
Laurent Montel 2931d6a7ce Fix layout warning
svn path=/trunk/KDE/kdebase/apps/; revision=571461
2006-08-09 15:37:08 +00:00
Laurent Montel d36a65a937 Fix enable/disable item when we just activate it.
(Before highlighted was emit when we use the weel button perhaps 
a bug into qt)

svn path=/trunk/KDE/kdebase/apps/; revision=564617
2006-07-20 16:16:21 +00:00
Thiago Macieira b7a8a5cce7 Merge in all changes from the kdebase4-dbus branch
svn path=/trunk/KDE/kdebase/apps/; revision=548390
2006-06-05 13:03:49 +00:00
Aaron J. Seigo edf4c37c2c port to new snapshot
move kicer kcm while we're at it

svn path=/trunk/KDE/kdebase/apps/; revision=543485
2006-05-22 07:59:05 +00:00
Laurent Montel 55a304e0d9 Rename KUrl function
svn path=/trunk/KDE/kdebase/apps/; revision=543471
2006-05-22 07:01:23 +00:00
David Faure 0f87163674 fix compilation
svn path=/trunk/KDE/kdebase/apps/; revision=541605
2006-05-16 18:28:46 +00:00
David Faure a3b03240fc Fix 16th most hated bug (#44662): "kfind window too large", using code similar to minicli's.
svn path=/trunk/KDE/kdebase/apps/; revision=541604
2006-05-16 18:23:23 +00:00
Laurent Montel a0b412c7fd #include <q...h> -> #include <Q...>
svn path=/trunk/KDE/kdebase/nsplugins/; revision=540496
2006-05-13 16:33:18 +00:00
Laurent Montel 49ebc2ce72 #include <q...h> -> #include <Q...>
svn path=/trunk/KDE/kdebase/nsplugins/; revision=539617
2006-05-11 08:04:23 +00:00
Thorsten Roeder e2a3786d8e - Allow kfind to search for files greater
than 2GB (INT_MAX), if a size range is specified.
- Allow size ranges greater than 2GB to be entered
into the search form.

Okay to backport this to 3.5.3 ?
(without breaking the message freeze)

CCBUG: 123838

svn path=/trunk/KDE/kdebase/kfind/; revision=539481
2006-05-10 19:22:30 +00:00