summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/imgcntrl.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-04-19 15:06:07 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-04-19 15:06:07 +0200
commit7e1f926b941b4e5a571093e2202caeaa72009708 (patch)
tree1b28051ad8aef37fea6b1b7243a494222207603d /src/emu/ui/imgcntrl.h
parent2f095e71f13487dbecce6a49895b03250b284b64 (diff)
more astring -> std::string (nw)
Diffstat (limited to 'src/emu/ui/imgcntrl.h')
-rw-r--r--src/emu/ui/imgcntrl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/ui/imgcntrl.h b/src/emu/ui/imgcntrl.h
index 62912ce6922..d2db9404187 100644
--- a/src/emu/ui/imgcntrl.h
+++ b/src/emu/ui/imgcntrl.h
@@ -37,11 +37,11 @@ protected:
int state;
device_image_interface *image;
int submenu_result;
- astring current_directory;
- astring current_file;
+ std::string current_directory;
+ std::string current_file;
// methods
- virtual void hook_load(astring filename, bool softlist);
+ virtual void hook_load(std::string filename, bool softlist);
bool create_ok;
@@ -52,7 +52,7 @@ private:
const software_info *swi;
const software_part *swp;
class software_list_device *sld;
- astring software_info_name;
+ std::string software_info_name;
// methods
void test_create(bool &can_create, bool &need_confirm);