dl5di / OpenDV

Open Digital Voice software for Amateur Radio based on Jonathan Naylor's (G4KLX) "ircDDBGateway" and "PCRepeaterController" for D-Star
GNU General Public License v2.0
106 stars 63 forks source link

Multiple ircDDB Networks #56

Closed F4FXL closed 8 years ago

F4FXL commented 8 years ago

Hi,

This is the pull request for multiple ircDDB networks connection ability. The program will query the routing networks in the order they are configured. This allows to report to both ircDDB and Openquad.

73 Geoffrey F4FXL / KC3FRA

mcdermj commented 8 years ago

Geoffrey, I'm working on getting ircDDBGateway moved to GNU Autoconf and am trying to get things compiled up. It appears as though you're using the Clone() method of the wxString class. It's not compiling on my Ubuntu 15.10 system because it looks like according to the wxWidgets docs, the Clone() method was only added in wxWidgets v2.9. I know it's suboptimal, but can we change these to wxString(c_str()) instead? For example: repeaterCallsign = new wxString(item->getRepeater().c_str())

mcdermj commented 8 years ago

I pushed proposed changes into pull request #73 for your review.

F4FXL commented 8 years ago

Hi! All the code is to be compiled against wx 3.0. Wx 2.x is considered obsolete.