Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 48003
Collapse All | Expand All

(-)gnome-phonemgr-0.2.1/src/gsm.cc (-3 / +3 lines)
Lines 260-270 Link Here
260
	} // while (1)
260
	} // while (1)
261
261
262
  } catch (gsmlib::GsmException &ge) {
262
  } catch (gsmlib::GsmException &ge) {
263
	cerr << ("[ERROR]: ") << ge.what() << endl;
263
	std::cerr << ("[ERROR]: ") << ge.what() << std::endl;
264
	if (ge.getErrorClass() == gsmlib::MeTaCapabilityError)
264
	if (ge.getErrorClass() == gsmlib::MeTaCapabilityError)
265
	  cerr << ("[ERROR]: ")
265
	  std::cerr << ("[ERROR]: ")
266
		   << ("(try setting sms_type, please refer to gsmsmsd manpage)")
266
		   << ("(try setting sms_type, please refer to gsmsmsd manpage)")
267
		   << endl;
267
		   << std::endl;
268
268
269
	m_signal_status.emit(PHONELISTENER_ERROR);
269
	m_signal_status.emit(PHONELISTENER_ERROR);
270
270
(-)gnome-phonemgr-0.2.1/src/gsm.h (-1 / +5 lines)
Lines 2-11 Link Here
2
#define _PHONEMGR_GSM_H
2
#define _PHONEMGR_GSM_H
3
3
4
#include <glibmm.h>
4
#include <glibmm.h>
5
5
#include <vector>
6
#include <string>
6
#include <gsmlib/gsm_me_ta.h>
7
#include <gsmlib/gsm_me_ta.h>
7
#include <gsmlib/gsm_event.h>
8
#include <gsmlib/gsm_event.h>
8
9
10
using std::vector;
11
using std::string;
12
9
// local class to handle SMS events
13
// local class to handle SMS events
10
14
11
struct IncomingMessage
15
struct IncomingMessage
(-)gnome-phonemgr-0.2.1/src/phonemgr.cc (-1 / +1 lines)
Lines 362-367 Link Here
362
									  phonemgr_applet_factory,
362
									  phonemgr_applet_factory,
363
									  NULL);
363
									  NULL);
364
  } catch(const Glib::Error& ex) {
364
  } catch(const Glib::Error& ex) {
365
	cout << ex.what() << endl;
365
	std::cout << ex.what() << std::endl;
366
  }
366
  }
367
}
367
}

Return to bug 48003