aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer-attachment.h
Commit message (Expand)AuthorAgeFilesLines
* Update the licensing information to require version 2 of the GPLEttore Perazzoli2001-10-271-2/+2
* If the attachment fails, report the error to the user.Jeffrey Stedfast2001-10-101-2/+4
* Update the copyrights, replacing Helix Code with Ximian andEttore Perazzoli2001-06-231-1/+1
* Replace the disposition option menu with a checkbox.Dan Winship2001-06-131-1/+2
* Replace #include <gtk/gtk.h> Replace #include <gnome.h> Remove #includeKjartan Maraas2001-03-301-2/+1
* new function (destroy): use e_msg_composer_clear_inlined_table, destroyRadek Doulik2000-11-081-1/+1
* use inline images hash tableRadek Doulik2000-11-041-1/+1
* The big eye-candy commit.Iain Holmes2000-10-011-0/+3
* New convenience function.Dan Winship2000-06-061-4/+4
* More work:Ettore Perazzoli1999-11-171-0/+72
ines'>
--- kxkb/rules.cpp  (revision 504758)
+++ kxkb/rules.cpp  (working copy)
@@ -300,7 +300,7 @@
  */
 const QString KeyRules::getLayout(const QString &layvar) const
 {
-  static const char* LAYOUT_PATTERN = "[a-z0-9_-]*";
+  static const char* LAYOUT_PATTERN = "[a-zA-Z0-9_-]*";
   QString varLine = layvar.stripWhiteSpace();
   QRegExp rx(LAYOUT_PATTERN);
   int pos = rx.search(varLine, 0);
@@ -318,7 +318,7 @@
  */
 const QString KeyRules::getVariant(const QString &layvar) const
 {
-  static const char* VARIANT_PATTERN = "\\([a-z0-9_-]*\\)";
+  static const char* VARIANT_PATTERN = "\\([a-zA-Z0-9_-]*\\)";
   QString varLine = layvar.stripWhiteSpace();
   QRegExp rx(VARIANT_PATTERN);
   int pos = rx.search(varLine, 0);