bugzilla-daemon | 15 Aug 2007 01:21
Picon

[Bug 928] add "downloads" window

http://zeitlin.homeunix.com/cgi-bin/mbugs/show_bug.cgi?id=928

vadim <at> wxwindows.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|blocker                     |enhancement
             Status|NEW                         |ASSIGNED
   Target Milestone|0.68                        |0.75

--

-- 
Configure bugmail: http://zeitlin.homeunix.com/cgi-bin/mbugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
Nerijus Baliunas | 29 Aug 2007 18:08
Picon

M with wx 2.8.4

Hello,

a warning and error:

.src/adb/AdbFrame.cpp: In constructor
'wxADBPropertiesDialog::wxADBPropertiesDialog(wxWindow*, AdbTreeBook*)':
.src/adb/AdbFrame.cpp:3102: warning: cannot pass objects of non-POD type 'class wxString' through
'...'; call will abort at runtime

.src/mail/SendMessageCC.cpp: In member function 'virtual void SendMessageCC::SetSubject(const String&)':
.src/mail/SendMessageCC.cpp:672: error: operands to ?: have different types

I silenced it like this:
--- SendMessageCC.cpp	(revision 7350)
+++ SendMessageCC.cpp	(working copy)
 <at>  <at>  -669,7 +669,7  <at>  <at> 
    // if headers are already encoded, don't do anything, they must be already
    // in ASCII
    wxCharBuffer buf(m_encodeHeaders ? MIME::EncodeHeader(subject, m_encHeaders)
-                                    : subject.ToAscii());
+                                    : (wxCharBuffer)subject.ToAscii());
    m_Envelope->subject = cpystr(buf);
 }

is it ok? Then next one:

.src/modules/HtmlViewer.cpp: In member function 'virtual void
HtmlViewer::InsertRawContents(const String&)':
.src/modules/HtmlViewer.cpp:1115: error: cannot declare variable 'parser' to be of abstract type
'HtmlViewer::InsertRawContents(const String&)::BodyParser'
(Continue reading)

Nerijus Baliunas | 30 Aug 2007 03:17
Picon

focus after selecting

Hello,

when I select a folder (an Imap one), I used to have focus already in
the message list, so I could press D, arrow up/down and they worked
on the messages. Now, when I select a folder and press D, it asks if I
want to delete the folder. It happens both with latest wx 2.8 and svn head.

Regards,
Nerijus

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
Nerijus Baliunas | 31 Aug 2007 14:47
Picon

clipboard

Hello,

ClickURL.cpp:
#ifdef DEBUG_nerijus
               wxTheClipboard->UsePrimarySelection();
               wxTheClipboard->SetData(new wxTextDataObject(m_clickableURL->GetUrl()));
#endif
               wxURLDataObject *dobj = new wxURLDataObject;
               dobj->SetURL(m_clickableURL->GetUrl());
               wxTheClipboard->SetData(dobj);

I use it because then I can paste URL by pressing middle mouse button anywhere
in a browser window. It works with wx 2.8.4, but doesn't with head. Why?

Regards,
Nerijus

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/

Gmane