[Bug 27562] New: Autocomplete is case sensitive
http://bugs.winehq.org/show_bug.cgi?id=27562 Summary: Autocomplete is case sensitive Product: Wine Version: 1.3.22 Platform: x86 URL: http://netikka.net/dev/autoc.exe OS/Version: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: ocean04(a)suomi24.fi Example: http://netikka.net/dev/autoc.exe Press "s" Windows give options: Second, Sixth, stest Wine only gives: stest Minor, but could affect something else too, depending where is it.. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #1 from ocean04(a)suomi24.fi 2011-07-06 05:49:41 CDT --- Same problem is also in standard ComboBoxEx (ComCtrls) Example: http://netikka.net/dev/autoc2.exe Winetricks comctl32 does not help. ComboBox (StdCtrls) works fine. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #2 from Nikolay Sivov <bunglehead(a)gmail.com> 2011-07-06 05:53:34 CDT --- Please, attach sources. If you're familiar with Delphi, it's preferable to have Lazarus-compatible version to use it with opensource IDE/compiler. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #3 from ocean04(a)suomi24.fi 2011-07-06 07:08:32 CDT --- I did not find ComboBoxEx component in Lazarus. There is no extra code in autoc2, just dropped components to form and inserted few items. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #4 from Nikolay Sivov <bunglehead(a)gmail.com> 2011-07-06 07:37:48 CDT --- (In reply to comment #3)
I did not find ComboBoxEx component in Lazarus. There is no extra code in autoc2, just dropped components to form and inserted few items.
Ok, what about first test program? (In reply to comment #3)
There is no extra code in autoc2, just dropped components to form and inserted few items.
It doesn't matter is there any user code or not. If you're an author of a test app just provide sources, I just don't get it why anyone should run any downloaded binaries from untrusted hosting without any knowledge of its contents. Also, VCL components are not-so-thin wrappers over comctl32 sometimes, it's always necessary to check if a control is subclassed, when if it does and so. VCL code doesn't come free, but Lazarus (LCL, if I'm not mistaken) does. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #5 from ocean04(a)suomi24.fi 2011-07-06 09:15:32 CDT --- First progam source: http://delphi-faq.zoxt.net/1313.htm And create component: var Form1: TForm1; s: TACEdit; implementation {$R *.dfm} procedure TForm1.FormShow(Sender: TObject); begin s:=TACEdit.create(form1); s.parent:=form1; s.Width:=200; s.Top:=50; s.Left:=50; s.ACStrings.Add('Zero'); s.ACStrings.Add('First'); s.ACStrings.Add('Second'); s.ACStrings.Add('Third'); s.ACStrings.Add('Fourth'); s.ACStrings.Add('Fifth'); s.ACStrings.Add('Sixth'); s.ACStrings.Add('stest'); end; -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #6 from Nikolay Sivov <bunglehead(a)gmail.com> 2011-07-06 15:13:18 CDT --- It's all about IAutoComplete it seems, you could try to alter string compare call in shell32/autocomplete.c (strstrW seems to be the only place). -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #7 from ocean04(a)suomi24.fi 2011-07-07 03:15:27 CDT --- Yes, changing strstrW -> StrStrIW works here. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 ocean04(a)suomi24.fi changed: What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |shell32 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 Nikolay Sivov <bunglehead(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW AssignedTo|wine-bugs(a)winehq.org |bunglehead(a)gmail.com Ever Confirmed|0 |1 --- Comment #8 from Nikolay Sivov <bunglehead(a)gmail.com> 2011-07-09 11:34:26 CDT --- Ok, I'll work on that. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #9 from Nikolay Sivov <bunglehead(a)gmail.com> 2011-07-25 12:04:42 CDT --- Should be fixed with 2210e9bbf01a0d7758e2afa17dbf4338e1407e4a. Please retest. Feel free to file new bugs with autocompletion problems, I'll take a look while I'm at it. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 ocean04(a)suomi24.fi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #10 from ocean04(a)suomi24.fi 2011-07-25 14:10:35 CDT --- Works fine thanks! Maybe bug 27855 is some sort of autocomplete issue? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #11 from Nikolay Sivov <bunglehead(a)gmail.com> 2011-07-25 14:30:01 CDT --- (In reply to comment #10)
Maybe bug 27855 is some sort of autocomplete issue?
Could be, I need to try it. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #12 from Alexandre Julliard <julliard(a)winehq.org> 2011-08-05 12:39:36 CDT --- Closing bugs fixed in 1.3.26. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27562 Nikolay Sivov <bunglehead(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |2210e9bbf01a0d7758e2afa17db | |f4338e1407e4a -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=27562 Nikolay Sivov <bunglehead(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|bunglehead(a)gmail.com |wine-bugs(a)winehq.org -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
participants (1)
-
wine-bugs@winehq.org