mLocalizer.msg("noConnection.message", "No connection to the Internet established.\n\nThe channel list can only be updated if a connection\nto the Internet is available."),
mLocalizer.msg("noConnection.title", "No connection!"),
JOptionPane.ERROR_MESSAGE);
return;
}
final ProgressWindow win = new ProgressWindow(
tvbrowser.ui.mainframe.MainFrame.getInstance());
win.run(new Progress() {
public void run() {
Channel[] channels = mChannelListModel.getAvailableChannels();
// make a copy of the channel list
final ArrayList<Channel> before = new ArrayList<Channel>();
for (Channel channel : channels) {