diff options
author | SeokYeon Hwang <syeon.hwang@samsung.com> | 2016-01-06 15:49:53 +0900 |
---|---|---|
committer | SeokYeon Hwang <syeon.hwang@samsung.com> | 2016-01-07 20:02:03 +0900 |
commit | 3f28ca342f5ad70b47bec1509aa6ae071686c880 (patch) | |
tree | fc16a62f005e6812c840f57c4e4a404803a07ee9 /tizen/src/ui | |
parent | db6ac640e4958f917718f53133b84e0cc66b05b1 (diff) | |
download | qemu-3f28ca342f5ad70b47bec1509aa6ae071686c880.tar.gz qemu-3f28ca342f5ad70b47bec1509aa6ae071686c880.tar.bz2 qemu-3f28ca342f5ad70b47bec1509aa6ae071686c880.zip |
emul_state: guest IP and host IP getters/setters are refined
Change-Id: I2a7b3bed1fb653855c21e61da79a85b35dfae524
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
Diffstat (limited to 'tizen/src/ui')
-rw-r--r-- | tizen/src/ui/menu/shellopener.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tizen/src/ui/menu/shellopener.cpp b/tizen/src/ui/menu/shellopener.cpp index c4f52492f6..20a95a4dce 100644 --- a/tizen/src/ui/menu/shellopener.cpp +++ b/tizen/src/ui/menu/shellopener.cpp @@ -60,7 +60,7 @@ void ShellOpener::openShell(QString title) QString sdbPort = QString::number(get_vm_device_serial_number()); QString sdbSerialName; if (is_netclient_tap_attached()) { - sdbSerialName = QString(get_emul_guest_ip()); + sdbSerialName = QString(get_guest_ip()); } else { sdbSerialName = "emulator-" + sdbPort; } |