Skip to content

Commit d706e8c

Browse files
authored
Merge pull request #7171 from gudeh/gpl-rename-variables
gpl: rename variables
2 parents 00c78a4 + b0e0b98 commit d706e8c

7 files changed

Lines changed: 107 additions & 110 deletions

File tree

src/gpl/src/graphics.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Graphics::Graphics(utl::Logger* logger,
5959
gui::Gui::get()->registerRenderer(this);
6060
initHeatmap();
6161
if (inst) {
62-
for (GCell* cell : nbc_->gCells()) {
62+
for (GCell* cell : nbc_->getGCells()) {
6363
if (cell->contains(inst)) {
6464
selected_ = cell;
6565
break;
@@ -249,9 +249,9 @@ void Graphics::drawNesterov(gui::Painter& painter)
249249

250250
// Draw the placeable objects
251251
painter.setPen(gui::Painter::white);
252-
drawCells(nbc_->gCells(), painter);
252+
drawCells(nbc_->getGCells(), painter);
253253
for (const auto& nb : nbVec_) {
254-
drawCells(nb->gCells(), painter);
254+
drawCells(nb->getGCells(), painter);
255255
}
256256

257257
painter.setBrush(gui::Painter::Color(gui::Painter::light_gray, 50));
@@ -387,7 +387,7 @@ gui::SelectionSet Graphics::select(odb::dbTechLayer* layer,
387387
return gui::SelectionSet();
388388
}
389389

390-
for (GCell* cell : nbc_->gCells()) {
390+
for (GCell* cell : nbc_->getGCells()) {
391391
const int gcx = cell->dCx();
392392
const int gcy = cell->dCy();
393393

0 commit comments

Comments
 (0)